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

#include <toolkit/awt/vclxtabpagemodel.hxx>
#include <vcl/tabpage.hxx>
#include <vcl/tabctrl.hxx>
#include <toolkit/helper/property.hxx>
#include <toolkit/helper/vclunohelper.hxx>
#include <toolkit/helper/unopropertyarrayhelper.hxx>
#include <cppuhelper/typeprovider.hxx>
//  ----------------------------------------------------
//  class VCLXDialog
//  ----------------------------------------------------

VCLXTabPageModel::VCLXTabPageModel()
{
}

VCLXTabPageModel::~VCLXTabPageModel()
{
    OSL_TRACE ("%s", __FUNCTION__);
}

void SAL_CALL VCLXTabPageModel::draw( sal_Int32 nX, sal_Int32 nY ) throw(::com::sun::star::uno::RuntimeException)
{
    ::osl::MutexGuard aGuard( GetMutex() );
    Window* pWindow = GetWindow();

    if ( pWindow )
    {
        OutputDevice* pDev = VCLUnoHelper::GetOutputDevice( getGraphics() );
        if ( !pDev )
            pDev = pWindow->GetParent();

        Size aSize = pDev->PixelToLogic( pWindow->GetSizePixel() );
        Point aPos = pDev->PixelToLogic( Point( nX, nY ) );

        pWindow->Draw( pDev, aPos, aSize, WINDOW_DRAW_NOCONTROLS );
    }
}

::com::sun::star::awt::DeviceInfo VCLXTabPageModel::getInfo() throw(::com::sun::star::uno::RuntimeException)
{
    ::com::sun::star::awt::DeviceInfo aInfo;// = VCLXDevice::getInfo();
    return aInfo;
}


void SAL_CALL VCLXTabPageModel::setProperty(
    const OUString& /*PropertyName*/,
    const ::com::sun::star::uno::Any& /*Value*/ )
throw(::com::sun::star::uno::RuntimeException)
{
    ::osl::MutexGuard aGuard( GetMutex() );

    /*TabPage* pTabPage = (TabPage*)GetWindow();
    if ( pTabPage )
    {
        VCLXWindow::setProperty( PropertyName, Value );
    }*/
}
//XTabPageModel
::sal_Int16 SAL_CALL VCLXTabPageModel::getTabPageID() throw (::com::sun::star::uno::RuntimeException)
{
    return 0;
}
::sal_Bool SAL_CALL VCLXTabPageModel::getEnabled() throw (::com::sun::star::uno::RuntimeException)
{
    return false;
}
void SAL_CALL VCLXTabPageModel::setEnabled( ::sal_Bool _enabled ) throw (::com::sun::star::uno::RuntimeException)
{
    //TabControl* pTabControl = (TabControl*)GetWindow();
    //if ( pTabControl )
    //  pTabControl->EnablePage(0, true);
}
OUString SAL_CALL VCLXTabPageModel::getTitle() throw (::com::sun::star::uno::RuntimeException)
{
    //TabControl* pTabControl = (TabControl*)GetWindow();
    //if ( pTabControl )
    //  return pTabControl->GetPageText(0);
    //else
        return OUString();
}
void SAL_CALL VCLXTabPageModel::setTitle( const OUString& _title ) throw (::com::sun::star::uno::RuntimeException)
{
    //TabControl* pTabControl = (TabControl*)GetWindow();
    //if ( pTabControl )
    //  pTabControl->SetPageText(0, _title);

}
OUString SAL_CALL VCLXTabPageModel::getImageURL() throw (::com::sun::star::uno::RuntimeException)
{
    return OUString();
}
void SAL_CALL VCLXTabPageModel::setImageURL( const OUString& /*_imageurl*/ ) throw (::com::sun::star::uno::RuntimeException)
{
    //m_sImageURL = _imageurl;
}
OUString SAL_CALL VCLXTabPageModel::getToolTip() throw (::com::sun::star::uno::RuntimeException)
{
    //return m_sTooltip;
    return OUString();
}
void SAL_CALL VCLXTabPageModel::setToolTip( const OUString& _tooltip ) throw (::com::sun::star::uno::RuntimeException)
{
    (void)_tooltip;
}
::cppu::IPropertyArrayHelper& VCLXTabPageModel::getInfoHelper()
{
     static UnoPropertyArrayHelper* pHelper = NULL;
     if ( !pHelper )
     {
        com::sun::star::uno::Sequence<sal_Int32>    aIDs = ImplGetPropertyIds();
         pHelper = new UnoPropertyArrayHelper( aIDs );
    }
     return *pHelper;
}
::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySetInfo > VCLXTabPageModel::getPropertySetInfo(  ) throw(::com::sun::star::uno::RuntimeException)
{
    static ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySetInfo > xInfo( createPropertySetInfo( getInfoHelper() ) );
    return xInfo;
}

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
div class='add'>+msgstr "Referency"
+
+#. ELC6F
+#: scalc.tree
+msgctxt ""
+"scalc.tree\n"
+"0812\n"
+"node.text"
+msgid "Viewing, Selecting, Copying"
+msgstr "Pokazać, wubrać, kopěrować"
+
+#. VFHig
+#: scalc.tree
+msgctxt ""
+"scalc.tree\n"
+"0813\n"
+"node.text"
+msgid "Formulas and Calculations"
+msgstr "Formle a wobličenja"
+
+#. bCMSS
+#: scalc.tree
+msgctxt ""
+"scalc.tree\n"
+"0814\n"
+"node.text"
+msgid "Protection"
+msgstr "Škit"
+
+#. m2Dpj
+#: scalc.tree
+msgctxt ""
+"scalc.tree\n"
+"0815\n"
+"node.text"
+msgid "Writing Calc Macros"
+msgstr "Makra Calc pisać"
+
+#. vBXqp
+#: scalc.tree
+msgctxt ""
+"scalc.tree\n"
+"0816\n"
+"node.text"
+msgid "Miscellaneous"
+msgstr "Wšelake"
+
+#. 6Saoi
+#: schart.tree
+msgctxt ""
+"schart.tree\n"
+"05\n"
+"help_section.text"
+msgid "Charts and Diagrams"
+msgstr "Diagramy a zwobraznjenja"
+
+#. gu6pZ
+#: schart.tree
+msgctxt ""
+"schart.tree\n"
+"0501\n"
+"node.text"
+msgid "General Information"
+msgstr "Powšitkowne informacije"
+
+#. Q5EUA
+#: sdatabase.tree
+msgctxt ""
+"sdatabase.tree\n"
+"09\n"
+"help_section.text"
+msgid "Database Functionality (Base)"
+msgstr "Funkcionalnosć datoweje banki (Base)"
+
+#. tLWiE
+#: sdatabase.tree
+msgctxt ""
+"sdatabase.tree\n"
+"0901\n"
+"node.text"
+msgid "General Information"
+msgstr "Powšitkowne informacije"
+
+#. xU49Q
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11\n"
+"help_section.text"
+msgid "Drawings (Draw)"
+msgstr "Rysowanki (Draw)"
+
+#. UcMAA
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1101\n"
+"node.text"
+msgid "General Information and User Interface Usage"
+msgstr "Powšitkowne informacije a wužiwanje wužiwarskeho powjercha"
+
+#. ZDeBD
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1102\n"
+"node.text"
+msgid "Command and Menu Reference"
+msgstr "Referenca přikazow a menijow"
+
+#. kq7Az
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020201\n"
+"node.text"
+msgid "Menus"
+msgstr "Menije"
+
+#. SFgJ7
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020202\n"
+"node.text"
+msgid "Toolbars"
+msgstr "Symbolowe lajsty"
+
+#. 9ojH7
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1103\n"
+"node.text"
+msgid "Loading, Saving, Importing, and Exporting"
+msgstr "Začitanje, składowanje, importowanje a eksportowanje"
+
+#. fJYHX
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1104\n"
+"node.text"
+msgid "Formatting"
+msgstr "Formatowanje"
+
+#. HkVUY
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1105\n"
+"node.text"
+msgid "Printing"
+msgstr "Ćišćenje"
+
+#. G8GoF
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1106\n"
+"node.text"
+msgid "Effects"
+msgstr "Efekty"
+
+#. fd9tS
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1107\n"
+"node.text"
+msgid "Objects, Graphics, and Bitmaps"
+msgstr "Objekty, grafiki a bitmapy"
+
+#. crdMY
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1108\n"
+"node.text"
+msgid "Groups and Layers"
+msgstr "Skupiny a runiny"
+
+#. G3s8n
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1109\n"
+"node.text"
+msgid "Text in Drawings"
+msgstr "Tekst w rysowankach"
+
+#. rxRmL
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1110\n"
+"node.text"
+msgid "Viewing"
+msgstr "Pokazać"
+
+#. 4zaCG
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"01\n"
+"help_section.text"
+msgid "%PRODUCTNAME Installation"
+msgstr "Instalacija %PRODUCTNAME"
+
+#. 3EUAC
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"10\n"
+"help_section.text"
+msgid "Common Help Topics"
+msgstr "Powšitkowne temy pomocy"
+
+#. 3GoWS
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"1001\n"
+"node.text"
+msgid "General Information"
+msgstr "Powšitkowne informacije"
+
+#. vFfKE
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"1002\n"
+"node.text"
+msgid "%PRODUCTNAME and Microsoft Office"
+msgstr "%PRODUCTNAME a Microsoft Office"
+
+#. GBR3F
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"1004\n"
+"node.text"
+msgid "%PRODUCTNAME Options"
+msgstr "Nastajenja %PRODUCTNAME"
+
+#. d4gAD
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"1005\n"
+"node.text"
+msgid "Wizards"
+msgstr "Asistenty"
+
+#. aXMeh
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"100501\n"
+"node.text"
+msgid "Letter Wizard"
+msgstr "Listowy asistent"
+
+#. 6qzVL
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"100502\n"
+"node.text"
+msgid "Fax Wizard"
+msgstr "Faksowy asistent"
+
+#. GMiKt
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"100504\n"
+"node.text"
+msgid "Agenda Wizard"
+msgstr "Asistent dnjoweho porjada"
+
+#. gvsML
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"100506\n"
+"node.text"
+msgid "HTML Export Wizard"
+msgstr "Eksportowy asistent HTML"
+
+#. 8tHJK
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"100510\n"
+"node.text"
+msgid "Document Converter Wizard"
+msgstr "Asistent dokumentoweho konwertera"
+
+#. zhnAF
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"1006\n"
+"node.text"
+msgid "Configuring %PRODUCTNAME"
+msgstr "%PRODUCTNAME konfigurować"
+
+#. 2rp8T
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"1007\n"
+"node.text"
+msgid "Working with the User Interface"
+msgstr "Z wužiwarskim powjerchom dźěłać"
+
+#. mFuDH
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"10071\n"
+"node.text"
+msgid "Digital Signatures"
+msgstr "Digitalne signatury"
+
+#. drtXn
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"1008\n"
+"node.text"
+msgid "Printing, Faxing, Sending"
+msgstr "Ćišćeć, faksować, słać"
+
+#. ZJbym
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"1009\n"
+"node.text"
+msgid "Drag & Drop"
+msgstr "Ćahnyć a pušćić"
+
+#. DFzj6
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"1010\n"
+"node.text"
+msgid "Copy and Paste"
+msgstr "Kopěrować a zasadźić"
+
+#. hQXmX
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"1012\n"
+"node.text"
+msgid "Charts and Diagrams"
+msgstr "Diagramy a zwobraznjenja"
+
+#. GVohQ
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"1013\n"
+"node.text"
+msgid "Load, Save, Import, Export, PDF"
+msgstr "Začitać, składować, importować, eksportować, PDF"
+
+#. Ty8Du
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"1014\n"
+"node.text"
+msgid "Links and References"
+msgstr "Zwjazanja a referency"
+
+#. nDFsH
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"1015\n"
+"node.text"
+msgid "Document Version Tracking"
+msgstr "Dokumentowej wersiji slědować"
+
+#. AnvYc
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"1016\n"
+"node.text"
+msgid "Labels and Business Cards"
+msgstr "Etikety a wizitki"
+
+#. tEYBw
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"1018\n"
+"node.text"
+msgid "Inserting External Data"
+msgstr "Eksterne daty zasadźić"
+
+#. X2KH4
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"1019\n"
+"node.text"
+msgid "Automatic Functions"
+msgstr "Awtomatiske funkcije"
+
+#. EGqAp
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"1020\n"
+"node.text"
+msgid "Searching and Replacing"
+msgstr "Pytać a wuměnić"
+
+#. 4GGhC
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"1021\n"
+"node.text"
+msgid "Guides"
+msgstr "Nawody"
+
+#. BjDNf
+#: simpress.tree
+msgctxt ""
+"simpress.tree\n"
+"04\n"
+"help_section.text"
+msgid "Presentations (Impress)"
+msgstr "Prezentacije (Impress)"
+
+#. hBFX8
+#: simpress.tree
+msgctxt ""
+"simpress.tree\n"
+"0401\n"
+"node.text"
+msgid "General Information and User Interface Usage"
+msgstr "Powšitkowne informacije a wužiwanje wužiwarskeho powjercha"
+
+#. XaGTA
+#: simpress.tree
+msgctxt ""
+"simpress.tree\n"
+"0402\n"
+"node.text"
+msgid "Command and Menu Reference"
+msgstr "Referenca přikazow a menijow"
+
+#. ADAgH
+#: simpress.tree
+msgctxt ""
+"simpress.tree\n"
+"04020101\n"
+"node.text"
+msgid "Menus"
+msgstr "Menije"
+
+#. fqLWR
+#: simpress.tree
+msgctxt ""
+"simpress.tree\n"
+"04020102\n"
+"node.text"
+msgid "Toolbars"
+msgstr "Symbolowe lajsty"
+
+#. fiLDS
+#: simpress.tree
+msgctxt ""
+"simpress.tree\n"
+"0403\n"
+"node.text"
+msgid "Loading, Saving, Importing, Exporting and Redacting"
+msgstr "Začitanje, składowanje, importowanje, eksportowanje a redigowanje"
+
+#. jMBsp
+#: simpress.tree
+msgctxt ""
+"simpress.tree\n"
+"0404\n"
+"node.text"
+msgid "Formatting"
+msgstr "Formatowanje"
+
+#. HtUGZ
+#: simpress.tree
+msgctxt ""
+"simpress.tree\n"
+"0405\n"
+"node.text"
+msgid "Printing"
+msgstr "Ćišćenje"
+
+#. FxREt
+#: simpress.tree
+msgctxt ""
+"simpress.tree\n"
+"0406\n"
+"node.text"
+msgid "Effects"
+msgstr "Efekty"
+
+#. RX5V8
+#: simpress.tree
+msgctxt ""
+"simpress.tree\n"
+"0407\n"
+"node.text"
+msgid "Objects, Graphics, and Bitmaps"
+msgstr "Objekty, grafiki a bitmapy"
+
+#. aDbFG
+#: simpress.tree
+msgctxt ""
+"simpress.tree\n"
+"0409\n"
+"node.text"
+msgid "Text in Presentations"
+msgstr "Tekst w prezentacijach"
+
+#. s8GCo
+#: simpress.tree
+msgctxt ""
+"simpress.tree\n"
+"0410\n"
+"node.text"
+msgid "Viewing"
+msgstr "Pokazać"
+
+#. Lo4YZ
+#: simpress.tree
+msgctxt ""
+"simpress.tree\n"
+"0411\n"
+"node.text"
+msgid "Slide Shows"
+msgstr "Prezentacije"
+
+#. m5CkC
+#: smath.tree
+msgctxt ""
+"smath.tree\n"
+"03\n"
+"help_section.text"
+msgid "Formulas (Math)"
+msgstr "Formle (Math)"
+
+#. kAkAL
+#: smath.tree
+msgctxt ""
+"smath.tree\n"
+"0301\n"
+"node.text"
+msgid "General Information and User Interface Usage"
+msgstr "Powšitkowne informacije a wužiwanje wužiwarskeho powjercha"
+
+#. 3BZ8j
+#: smath.tree
+msgctxt ""
+"smath.tree\n"
+"030101\n"
+"node.text"
+msgid "%PRODUCTNAME Formula Elements"
+msgstr "Formlowe elementy %PRODUCTNAME"
+
+#. V99im
+#: smath.tree
+msgctxt ""
+"smath.tree\n"
+"0302\n"
+"node.text"
+msgid "Command and Menu Reference"
+msgstr "Referenca přikazow a menijow"
+
+#. CGoih
+#: smath.tree
+msgctxt ""
+"smath.tree\n"
+"0303\n"
+"node.text"
+msgid "Working with Formulas"
+msgstr "Z formlemi dźěłać"
+
+#. FxCSV
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"02\n"
+"help_section.text"
+msgid "Text Documents (Writer)"
+msgstr "Tekstowe dokumenty (Writer)"
+
+#. jWyEV
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0201\n"
+"node.text"
+msgid "General Information and User Interface Usage"
+msgstr "Powšitkowne informacije a wužiwanje wužiwarskeho powjercha"
+
+#. mT2iu
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0202\n"
+"node.text"
+msgid "Command and Menu Reference"
+msgstr "Referenca přikazow a menijow"
+
+#. 4RREa
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"020201\n"
+"node.text"
+msgid "Menus"
+msgstr "Menije"
+
+#. SQkvD
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"020202\n"
+"node.text"
+msgid "Toolbars"
+msgstr "Symbolowe lajsty"
+
+#. AExWW
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0210\n"
+"node.text"
+msgid "Navigating Text Documents"
+msgstr "W tekstowych dokumentach nawigować"
+
+#. hjKKD
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0212\n"
+"node.text"
+msgid "Formatting Text Documents"
+msgstr "Tekstowe dokumenty formatować"
+
+#. 6gFto
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"021201\n"
+"node.text"
+msgid "Templates and Styles"
+msgstr "Předłohi a stile"
+
+#. 7BQES
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0204\n"
+"node.text"
+msgid "Graphics in Text Documents"
+msgstr "Grafiki w tekstowych dokumentach"
+
+#. QsiTB
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0205\n"
+"node.text"
+msgid "Tables in Text Documents"
+msgstr "Tabele w tekstowych dokumentach"
+
+#. Xx5Fp
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0206\n"
+"node.text"
+msgid "Objects in Text Documents"
+msgstr "Objekty w tekstowych dokumentach"
+
+#. 47SjN
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0207\n"
+"node.text"
+msgid "Sections and Frames in Text Documents"
+msgstr "Wotrěžki a wobłuki w tekstowych dokumentach"
+
+#. E2N9E
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0208\n"
+"node.text"
+msgid "Tables of Contents and Indexes"
+msgstr "Zapisy wobsaha a hesłarje"
+
+#. yi6ro
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0209\n"
+"node.text"
+msgid "Fields in Text Documents"
+msgstr "Pola w tekstowych dokumentach"
+
+#. ZgfjA
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0211\n"
+"node.text"
+msgid "Calculating in Text Documents"
+msgstr "Wobličenja w tekstowych dokumentach"
+
+#. wVGdF
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0213\n"
+"node.text"
+msgid "Special Text Elements"
+msgstr "Wosebite tekstowe elementy"
+
+#. FxdVR
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0214\n"
+"node.text"
+msgid "Automatic Functions"
+msgstr "Awtomatiske funkcije"
+
+#. hi36Q
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0215\n"
+"node.text"
+msgid "Numbering and Lists"
+msgstr "Čisłowanje a lisćiny"
+
+#. 2FPcB
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0216\n"
+"node.text"
+msgid "Spellchecking, Thesaurus, and Languages"
+msgstr "Prawopisna kontrola, tezawrus a rěče"
+
+#. vDffD
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0218\n"
+"node.text"
+msgid "Troubleshooting Tips"
+msgstr "Pokiwy wo rozrisowanju problemow"
+
+#. qLMLk
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0219\n"
+"node.text"
+msgid "Loading, Saving, Importing, Exporting and Redacting"
+msgstr "Začitanje, składowanje, importowanje, eksportowanje a redigowanje"
+
+#. 8GC4J
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0220\n"
+"node.text"
+msgid "Master Documents"
+msgstr "Globalne dokumenty"
+
+#. wbJh4
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0221\n"
+"node.text"
+msgid "Links and References"
+msgstr "Zwjazanja a referency"
+
+#. vHzyn
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0222\n"
+"node.text"
+msgid "Printing"
+msgstr "Ćišćenje"
+
+#. F4LCk
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0223\n"
+"node.text"
+msgid "Searching and Replacing"
+msgstr "Pytać a wuměnić"
+
+#. CYQr2
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"06\n"
+"help_section.text"
+msgid "HTML Documents (Writer Web)"
+msgstr "HTML-dokumenty (Writer Web)"
diff --git a/source/hsb/helpcontent2/source/text/sbasic/guide.po b/source/hsb/helpcontent2/source/text/sbasic/guide.po
new file mode 100644
index 00000000000..865005b607c
--- /dev/null
+++ b/source/hsb/helpcontent2/source/text/sbasic/guide.po
@@ -0,0 +1,2176 @@
+#. extracted from helpcontent2/source/text/sbasic/guide
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2022-07-04 18:04+0200\n"
+"PO-Revision-Date: 2022-09-21 09:55+0000\n"
+"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
+"Language-Team: Upper Sorbian <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicguide/hsb/>\n"
+"Language: hsb\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: Weblate 4.12.2\n"
+
+#. WcTKB
+#: access2base.xhp
+msgctxt ""
+"access2base.xhp\n"
+"tit\n"
+"help.text"
+msgid "Access2Base"
+msgstr "Access2Base"
+
+#. bFKah
+#: access2base.xhp
+msgctxt ""
+"access2base.xhp\n"
+"bm_idA2B001\n"
+"help.text"
+msgid "<bookmark_value>Access2Base</bookmark_value><bookmark_value>Microsoft Access; Access2Base</bookmark_value><bookmark_value>Access databases; run in Base</bookmark_value>"
+msgstr "<bookmark_value>Access2Base</bookmark_value><bookmark_value>Microsoft Access; Access2Base</bookmark_value><bookmark_value>datowe banki Access; w Base wuwjesć</bookmark_value>"
+
+#. V4kCb
+#: access2base.xhp
+msgctxt ""
+"access2base.xhp\n"
+"hd_idA2B002\n"
+"help.text"
+msgid "Access2Base"
+msgstr "Access2Base"
+
+#. BDoqs
+#: access2base.xhp
+msgctxt ""
+"access2base.xhp\n"
+"hd_idA2B003\n"
+"help.text"
+msgid "What is Access2Base?"
+msgstr "Što Access2Base je?"
+
+#. CfYuM
+#: access2base.xhp
+msgctxt ""
+"access2base.xhp\n"
+"par_idA2B004\n"
+"help.text"
+msgid "Access2Base is a %PRODUCTNAME BASIC library of macros for (business or personal) application developers and advanced users. It is one of the libraries stored in \"Application macros and dialogs\"."
+msgstr "Access2Base je biblioteka makrow %PRODUCTNAME za (wobchodniskich abo priwatnych) wuwiwarjow nałoženjow a pokročenych wužiwarjow. Je jedna z bibliotekow, kotrež su w „Nałoženske makra a dialogi“ składowane."
+
+#. CE5QB
+#: access2base.xhp
+msgctxt ""
+"access2base.xhp\n"
+"par_idA2B005\n"
+"help.text"
+msgid "The functionalities provided by the implemented macros are all directly inspired by Microsoft Access. The macros are callable mainly from a %PRODUCTNAME <emph>Base</emph> application, but also from <emph>any</emph> %PRODUCTNAME document (Writer, Calc, ...) where access to data stored in a database makes sense."
+msgstr "Funkcionalnosć, kotruž implementowane makra skića, su direktnje wot Microsoft Access inspirowane. Makra su předewšěm z nałoženja %PRODUCTNAME <emph>Base</emph> wuwołujomne, ale tež z <emph>někajkeho</emph> dokumenta %PRODUCTNAME (Writer, Calc …), hdźež je zmysłapolnje, přistup k datam dóstać, kotrež su w datowej bance składowane."
+
+#. tmNkV
+#: access2base.xhp
+msgctxt ""
+"access2base.xhp\n"
+"par_idA2B006\n"
+"help.text"
+msgid "The API provided by Access2Base is intended to be more concise, intuitive and easy to learn than the standard UNO API (API = Application Programming Interface)."
+msgstr "API, kotryž Access2Base k dispoziciji staja, ma kompaktniši, intuitiwniši a lóšo nawuknjomny być hač UNO API (API = Application Programming Interface; hornjoserbsce: Tykačka programowanja nałoženjow)."
+
+#. DHfDb
+#: access2base.xhp
+msgctxt ""
+"access2base.xhp\n"
+"par_idA2B007\n"
+"help.text"
+msgid "<emph>The library is documented online on </emph><link href=\"http://www.access2base.com\" name=\"http://www.access2base.com\"><emph>http://www.access2base.com</emph></link>."
+msgstr "<emph>Biblioteka je online dokumentowana na </emph><link href=\"http://www.access2base.com\" name=\"http://www.access2base.com\"><emph>http://www.access2base.com (jendźelsce)</emph></link>."
+
+#. fGJgF
+#: access2base.xhp
+msgctxt ""
+"access2base.xhp\n"
+"hd_idA2B008\n"
+"help.text"
+msgid "The implemented macros include:"
+msgstr "Implementowane makra wobsahuja:"
+
+#. UFhFo
+#: access2base.xhp
+msgctxt ""
+"access2base.xhp\n"
+"par_idA2B009\n"
+"help.text"
+msgid "a simplified and extensible API for <emph>forms</emph>, <emph>dialogs</emph> and <emph>controls</emph> manipulations similar with the Microsoft Access object model,"
+msgstr "zjednorjeny a rozšěrjomny API za wobchadźenje z <emph>formularami</emph>, <emph>dialogami</emph> a <emph>wodźenskimi elementami</emph>, podobne na objektowy model Microsoft Access."
+
+#. ZTQD8
+#: access2base.xhp
+msgctxt ""
+"access2base.xhp\n"
+"par_idA2B010\n"
+"help.text"
+msgid "an API for database access with the <emph>table</emph>, <emph>query</emph>, <emph>recordset</emph> and <emph>field</emph> objects,"
+msgstr "API za přistup k datowej bance na objekty <emph>tabela</emph>, <emph>wotprašowanje</emph>, <emph>datowa sadźba</emph> a <emph>polo</emph>,"
+
+#. z3ZS9
+#: access2base.xhp
+msgctxt ""
+"access2base.xhp\n"
+"par_idA2B011\n"
+"help.text"
+msgid "a number of <emph>actions</emph> with a syntax identical to their corresponding Microsoft Access macros/actions,"
+msgstr "rjad <emph>akcijow</emph> ze syntaksu, kotraž je identiska z wotpowědnymi makrami/akcijemi Microsoft Access,"
+
+#. GQaLp
+#: access2base.xhp
+msgctxt ""
+"access2base.xhp\n"
+"par_idA2B012\n"
+"help.text"
+msgid "the <emph>DLookup</emph>, <emph>DSum</emph>, ... database functions,"
+msgstr "funkcije datoweje banki <emph>DLookup</emph>, <emph>DSum</emph> …,"
+
+#. jeLAg
+#: access2base.xhp
+msgctxt ""
+"access2base.xhp\n"
+"par_idA2B013\n"
+"help.text"
+msgid "the support of the shortcut notations like <item type=\"literal\">Forms!myForm!myControl</item>"
+msgstr "podpěru krótkeho pisanja kaž <item type=\"literal\">Forms!myForm!myControl</item>"
+
+#. QDQtE
+#: access2base.xhp
+msgctxt ""
+"access2base.xhp\n"
+"par_idA2B014\n"
+"help.text"
+msgid "in addition"
+msgstr "a nimo toho"
+
+#. 9EyMt
+#: access2base.xhp
+msgctxt ""
+"access2base.xhp\n"
+"par_idA2B015\n"
+"help.text"
+msgid "a consistent errors and exceptions handler,"
+msgstr "konsequentny wodźenski program za zmylki a wuwzaća,"
+
+#. 72jo7
+#: access2base.xhp
+msgctxt ""
+"access2base.xhp\n"
+"par_idA2B016\n"
+"help.text"
+msgid "facilities for programming form, dialog and control <emph>events</emph> and"
+msgstr "móžnosće, <emph>podawki</emph> za formulary, dialogi a wodźenske elementy programować a"
+
+#. ByZAC
+#: access2base.xhp
+msgctxt ""
+"access2base.xhp\n"
+"par_idA2B017\n"
+"help.text"
+msgid "the support of both embedded forms and standalone (Writer) forms."
+msgstr "podpěru za zasadźene formulary kaž tež samostatne formulary (Writer)."
+
+#. tmq7c
+#: access2base.xhp
+msgctxt ""
+"access2base.xhp\n"
+"hd_idA2B018\n"
+"help.text"
+msgid "Compare Access2Base with Microsoft Access VBA"
+msgstr "Přirunanje Access2Base z Microsoft Access VBA"
+
+#. 4eXWf
+#: basic_2_python.xhp
+msgctxt ""
+"basic_2_python.xhp\n"
+"tit\n"
+"help.text"
+msgid "Basic to Python"
+msgstr "Basic w Python"
+
+#. eoGBT
+#: basic_2_python.xhp
+msgctxt ""
+"basic_2_python.xhp\n"
+"N0430\n"
+"help.text"
+msgid "<bookmark_value>Basic;Calling Python</bookmark_value> <bookmark_value>API;SimpleFileAccess</bookmark_value> <bookmark_value>API;PathSettings</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
+msgstr "<bookmark_value>Basic; Python wuwołać</bookmark_value><bookmark_value>API;SimpleFileAccess</bookmark_value> <bookmark_value>API;PathSettings</bookmark_value><bookmark_value>API;XScript</bookmark_value>"
+
+#. 8tB4f
+#: basic_2_python.xhp
+msgctxt ""
+"basic_2_python.xhp\n"
+"hd_id811571848401485\n"
+"help.text"
+msgid "<variable id=\"basic2python\"><link href=\"text/sbasic/guide/basic_2_python.xhp\" name=\"Basic Programming Examples\">Calling Python Scripts from Basic</link></variable>"
+msgstr "<variable id=\"basic2python\"><link href=\"text/sbasic/guide/basic_2_python.xhp\" name=\"Basic Programming Examples\">Skripty Python z Basic wuwołać</link></variable>"
+
+#. P7E4G
+#: basic_2_python.xhp
+msgctxt ""
+"basic_2_python.xhp\n"
+"N0432\n"
+"help.text"
+msgid "Calling Python scripts from %PRODUCTNAME Basic macros is possible, and valuable features can be obtained such as:"
+msgstr "Wuwołanje skriptow Python z makrow %PRODUCTNAME je móžne, a wužitne funkcije su k dispoziciji, na přikład:"
+
+#. ZKSB3
+#: basic_2_python.xhp
+msgctxt ""
+"basic_2_python.xhp\n"
+"N0433\n"
+"help.text"
+msgid "<literal>ComputerName</literal> identification or <literal>OSName</literal> detection are possible,"
+msgstr "Identifikacija <literal>ComputerName</literal> abo wotkryće <literal>OSName</literal> stej móžnej,"
+
+#. AW7Lr
+#: basic_2_python.xhp
+msgctxt ""
+"basic_2_python.xhp\n"
+"N0434\n"
+"help.text"
+msgid "Basic <literal>FileLen()</literal> function and <link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1ucb_1_1SimpleFileAccess.html\" name=\"ucb.SimpleFileAccess\">com.sun.star.ucb.SimpleFileAccess.</link><literal>getSize()</literal> API function exhibit a 2 Gigabytes file size upper limit that Python helps to overcome,"
+msgstr "Funkcija Basic <literal>FileLen()</literal>a <link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1ucb_1_1SimpleFileAccess.html\" name=\"ucb.SimpleFileAccess\">com.sun.star.ucb.SimpleFileAccess. API-funkcija </link><literal>getSize()</literal> ma hornju hranicu 2 gigabajtow datajoweje wulkosće, kotruž Python pospytuje zmištrować,"
+
+#. At8D2
+#: basic_2_python.xhp
+msgctxt ""
+"basic_2_python.xhp\n"
+"N0435\n"
+"help.text"
+msgid "<link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1util_1_1PathSettings.html\" name=\"util.PathSettings\">com.sun.star.util.PathSettings</link> can be normalized,"
+msgstr "<link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1util_1_1PathSettings.html\" name=\"util.PathSettings\">com.sun.star.util.PathSettings</link> da so normalizować,"
+
+#. CPd9K
+#: basic_2_python.xhp
+msgctxt ""
+"basic_2_python.xhp\n"
+"N0436\n"
+"help.text"
+msgid "and many more."
+msgstr "a wjele wjace."
+
+#. JvzSR
+#: basic_2_python.xhp
+msgctxt ""
+"basic_2_python.xhp\n"
+"N0437\n"
+"help.text"
+msgid "A reasonable exposure to %PRODUCTNAME Basic and to <link href=\"https://api.libreoffice.org/\" name=\"Application Programming Interface\">Application Programming Interface (API)</link> features is recommended prior to perform inter-language calls from Basic to Python, to JavaScript or any other script engine."
+msgstr "Přisprawny wobchad z %PRODUCTNAME Basic a z funkcijemi <link href=\"https://api.libreoffice.org/\" name=\"Application Programming Interface\">tykačku programowanja nałoženjow (API)</link> je poručomny, prjedy hač so wuwołanja mjez rěčemi wot Basic do Python, do JavaScript abo do druheje skriptoweje rěče wuwjedu."
+
+#. 4jY8s
+#: basic_2_python.xhp
+msgctxt ""
+"basic_2_python.xhp\n"
+"N0438\n"
+"help.text"
+msgid "Retrieving Python Scripts"
+msgstr "Skripty Python wotwołać"
+
+#. bBTqb
+#: basic_2_python.xhp
+msgctxt ""
+"basic_2_python.xhp\n"
+"N0439\n"
+"help.text"
+msgid "Python scripts can be personal, shared, or embedded in documents. In order to execute them, %PRODUCTNAME Basic needs to be provided with Python script locations. Locating <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1script_1_1provider_1_1XScript.html\" name=\"script.provider.XScript\">com.sun.star.script.provider.XScript</link> interface compliant UNO objects allows the execution of Python scripts:"
+msgstr "Skripty Python móža wosobinske, wozjewjene abo do dokumentow zasadźene być. Zo by je wuwjedł, %PRODUCTNAME Basic městna skriptow Python trjeba. Pytanje za UNO-objektami, kotrež su kompatibelne z <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1script_1_1provider_1_1XScript.html\" name=\"script.provider.XScript\">com.sun.star.script.provider.XScript</link> wam zmóžnja, skripty Python wuwjesć:"
+
+#. AZwVA
+#: basic_2_python.xhp
+msgctxt ""
+"basic_2_python.xhp\n"
+"N0444\n"
+"help.text"
+msgid "''' Grab Python script object before execution"
+msgstr "''' Skriptowy objekt Python sej do wuwjedźenja wobstarać"
+
+#. woGvx
+#: basic_2_python.xhp
+msgctxt ""
+"basic_2_python.xhp\n"
+"N0445\n"
+"help.text"
+msgid "' Arguments:"
+msgstr "' Argumenty:"
+
+#. nvnTr
+#: basic_2_python.xhp
+msgctxt ""
+"basic_2_python.xhp\n"
+"N0446\n"
+"help.text"
+msgid "' macro : as \"library/module.py$macro\" or \"module.py$macro\""
+msgstr "' Makro: jako \"library/module.py$macro\" abo \"module.py$macro\""
+
+#. Au674
+#: basic_2_python.xhp
+msgctxt ""
+"basic_2_python.xhp\n"
+"N0447\n"
+"help.text"
+msgid "' location: as \"document\", \"share\", \"user\" or ENUM(eration)"
+msgstr "' Městno: jako \"document\", \"share\", \"user\" abo ENUM(eracija)"
+
+#. u5hgy
+#: basic_2_python.xhp
+msgctxt ""
+"basic_2_python.xhp\n"
+"N0448\n"
+"help.text"
+msgid "' Result:"
+msgstr "' Wuslědk:"
+
+#. kskTS
+#: basic_2_python.xhp
+msgctxt ""
+"basic_2_python.xhp\n"
+"N0449\n"
+"help.text"
+msgid "' located com.sun.star.script.provider.XScript UNO service'''"
+msgstr "' pyta słužbu com.sun.star.script.provider.XScript-UNO'''"
+
+#. F9Hvi
+#: basic_2_python.xhp
+msgctxt ""
+"basic_2_python.xhp\n"
+"N0452\n"
+"help.text"
+msgid "Dim sp As Object ' com.sun.star.script.provider.XScriptProvider compatible"
+msgstr "Dim sp As Object ' kompatibelny z com.sun.star.script.provider.XScriptProvider"
+
+#. osCpU
+#: basic_2_python.xhp
+msgctxt ""
+"basic_2_python.xhp\n"
+"N0463\n"
+"help.text"
+msgid "Executing Python Scripts"
+msgstr "Skripty Python wuwjesć"
+
+#. pAfKa
+#: basic_2_python.xhp
+msgctxt ""
+"basic_2_python.xhp\n"
+"N0464\n"
+"help.text"
+msgid "Syntax"
+msgstr "Syntaksa"
+
+#. gVpsb
+#: basic_2_python.xhp
+msgctxt ""
+"basic_2_python.xhp\n"
+"N0466\n"
+"help.text"
+msgid "<literal>opSysName = script.invoke(Array(), in_outs, Array())</literal> ' in_out is an Array"
+msgstr "<literal>opSysName = script.invoke(Matrix(), in_outs, Matrix())</literal> ' in_out je pólna wariabla"
+
+#. jiU2w
+#: basic_2_python.xhp
+msgctxt ""
+"basic_2_python.xhp\n"
+"N0469\n"
+"help.text"
+msgid "Embedded Scripts Examples"
+msgstr "Přikłady za zasadźene skripty"
+
+#. FadCx
+#: basic_2_python.xhp
+msgctxt ""
+"basic_2_python.xhp\n"
+"N0470\n"
+"help.text"
+msgid "Below <literal>ComputerName</literal>, and <literal>GetFilelen</literal> routines are calling their Python counterparts, using aforementioned <literal>GetPythonScript</literal> function. Exception handling is not detailed."
+msgstr "Pod rutinami <literal>ComputerName</literal> a <literal>GetFilelen</literal> so jeju pendantaj Python wuwołujetej, z pomocu do toho naspomnjeneje funkcije <literal>GetPythonScript</literal>. Wobchadźenje z wuwzaćom datailěrowane njeje."
+
+#. YbMbS
+#: basic_2_python.xhp
+msgctxt ""
+"basic_2_python.xhp\n"
+"N0472\n"
+"help.text"
+msgid "Option Compatible ' Properties are supported"
+msgstr "Kompatibelne nastajenje ' Kajkosće so podpěruja"
+
+#. KVNHH
+#: basic_2_python.xhp
+msgctxt ""
+"basic_2_python.xhp\n"
+"N0477\n"
+"help.text"
+msgid "'''Workstation name'''"
+msgstr "'''Mjeno dźěłoweje stacije'''"
+
+#. FCaBa
+#: basic_2_python.xhp
+msgctxt ""
+"basic_2_python.xhp\n"
+"N0483\n"
+"help.text"
+msgid "'''File size in bytes'''"
+msgstr "'''Datajowa wulkosć w bajtach'''"
+
+#. D9Cbu
+#: basic_2_python.xhp
+msgctxt ""
+"basic_2_python.xhp\n"
+"N0489\n"
+"help.text"
+msgid "ISEMBEDDED As String ' document script"
+msgstr "ISEMBEDDED As String ' dokumentowy skript"
+
+#. bD77H
+#: basic_2_python.xhp
+msgctxt ""
+"basic_2_python.xhp\n"
+"N0490\n"
+"help.text"
+msgid "ISPERSONAL As String ' user script"
+msgstr "ISPERSONAL As String ' wužiwarski skript"
+
+#. TEbDh
+#: basic_2_python.xhp
+msgctxt ""
+"basic_2_python.xhp\n"
+"N0491\n"
+"help.text"
+msgid "ISSHARED As String ' %PRODUCTNAME macro"
+msgstr "ISSHARED As String ' makro %PRODUCTNAME"
+
+#. CHTxq
+#: basic_2_python.xhp
+msgctxt ""
+"basic_2_python.xhp\n"
+"N0497\n"
+"help.text"
+msgid ".ISEMBEDDED = \"document\" ' document script"
+msgstr ".ISEMBEDDED = \"document\" ' dokumentowy skript"
+
+#. GGD4G
+#: basic_2_python.xhp
+msgctxt ""
+"basic_2_python.xhp\n"
+"N0498\n"
+"help.text"
+msgid ".ISPERSONAL = \"user\" ' user scripts"
+msgstr ".ISPERSONAL = \"user\" ' wužiwarske skripty"
+
+#. hz9VR
+#: basic_2_python.xhp
+msgctxt ""
+"basic_2_python.xhp\n"
+"N0499\n"
+"help.text"
+msgid ".ISSHARED = \"share\" ' %PRODUCTNAME macro"
+msgstr ".ISSHARED = \"share\" ' makro %PRODUCTNAME"
+
+#. KfKCA
+#: basic_2_python.xhp
+msgctxt ""
+"basic_2_python.xhp\n"
+"N0503\n"
+"help.text"
+msgid "Two different Python modules are called. They can either be embedded in the current document, either be stored on the file system. Argument type checking is skipped for clarity:"
+msgstr "Dwaj rozdźělnej modulej Python so wuwołujetej. Hodźitej so pak do aktualneho dokumenta zasadźić pak w datajowym systemje składować. Přepruwowanje argumentoweho typa so z přičinow přehladnosće přeskakuje:"
+
+#. igPCi
+#: basic_2_python.xhp
+msgctxt ""
+"basic_2_python.xhp\n"
+"N0526\n"
+"help.text"
+msgid "Personal or Shared Scripts Examples"
+msgstr "Přikłady za priwatne abo zhromadnje wužite skripty"
+
+#. EPVTC
+#: basic_2_python.xhp
+msgctxt ""
+"basic_2_python.xhp\n"
+"N0527\n"
+"help.text"
+msgid "The calling mechanism for personal or shared Python scripts is identical to that of embedded scripts. Library names are mapped to folders. Computing %PRODUCTNAME user profile and shared modules system file paths can be performed as detailed in <link href=\"text/sbasic/python/python_session.xhp\">Getting session information</link>. Below <literal>OSName</literal>, <literal>HelloWorld</literal> and <literal>NormalizePath</literal> routines are calling their Python counterparts, using aforementioned <literal>GetPythonScript</literal> function. Exception handling is not detailed."
+msgstr "Wuwołanski mechanizm za priwatne abo zhromadnje wužite skripty Python je identiski z tym zasadźenych skriptow. Mjena bibliotekow so rjadowakam přirjaduja. Wobličenje systemowych šćežkow wužiwarskich profilow a zhromadnje wužitych modulow da so kaž w <link href=\"text/sbasic/python/python_session.xhp\">Posedźenske informacije wotwołać</link> wopisane přewjesć. Pod rutinami <literal>OSName</literal>, <literal>HelloWorld</literal> a <literal>NormalizePath</literal> swoje pendanty Python wuwołuja, z pomocu horjeka naspomnjeneje funkcije <literal>GetPythonScript</literal>. Wobchadźenje z wuwzaćom detailěrowane njeje."
+
+#. bwkSJ
+#: basic_2_python.xhp
+msgctxt ""
+"basic_2_python.xhp\n"
+"N0529\n"
+"help.text"
+msgid "Option Compatible ' Properties are supported"
+msgstr "Kompatibelne nastajenje ' Kajkosće so podpěruja"
+
+#. 3W9xB
+#: basic_2_python.xhp
+msgctxt ""
+"basic_2_python.xhp\n"
+"N0534\n"
+"help.text"
+msgid "'''Platform name as \"Linux\", \"Darwin\" or \"Windows\"'''"
+msgstr "'''Platformowe mjeno \"Linux\", \"Darwin\" abo \"Windows\"'''"
+
+#. WAE7X
+#: basic_2_python.xhp
+msgctxt ""
+"basic_2_python.xhp\n"
+"N0540\n"
+"help.text"
+msgid "'''%PRODUCTNAME Python shared sample'''"
+msgstr "'''Přikład za zhromadny %PRODUCTNAME Python'''"
+
+#. MYSSL
+#: basic_2_python.xhp
+msgctxt ""
+"basic_2_python.xhp\n"
+"N0546\n"
+"help.text"
+msgid "'''Strip superfluous '\\..' in path'''"
+msgstr "'''Njetrjebawši wotrězk '\\..' w šćežce'''"
+
+#. yTqsy
+#: basic_2_python.xhp
+msgctxt ""
+"basic_2_python.xhp\n"
+"N0550\n"
+"help.text"
+msgid "Python standard modules"
+msgstr "Standardne module Python"
+
+#. 3F9RQ
+#: basic_2_python.xhp
+msgctxt ""
+"basic_2_python.xhp\n"
+"N0551\n"
+"help.text"
+msgid "%PRODUCTNAME embedded Python contains many standard libraries to benefit from. They bear a rich feature set, such as but not limited to:"
+msgstr "Do %PRODUCTNAME zasadźeny Python wjele standardnych bibliotekow wobsahuje, z kotrychž móžeće wužitk ćahnyć. Wobsahuja wjele funkcijow, mjez druhim:"
+
+#. aPbV7
+#: basic_2_python.xhp
+msgctxt ""
+"basic_2_python.xhp\n"
+"N0552\n"
+"help.text"
+msgid "<emph>argparse</emph> Parser for command-line options, arguments and sub-commands"
+msgstr "<emph>argparse</emph> Parser za opcije přikazoweje linki, argumenty a podpřikazy"
+
+#. zBD3c
+#: basic_2_python.xhp
+msgctxt ""
+"basic_2_python.xhp\n"
+"N0553\n"
+"help.text"
+msgid "<emph>cmath</emph> Mathematical functions for complex numbers"
+msgstr "<emph>cmath</emph> Matematiske funkcije za kompleksne ličby"
+
+#. GDXVa
+#: basic_2_python.xhp
+msgctxt ""
+"basic_2_python.xhp\n"
+"N0554\n"
+"help.text"
+msgid "<emph>csv</emph> CSV files reading and writing"
+msgstr "<emph>csv</emph>CSV-dataje čitać a pisać"
+
+#. FnCu8
+#: basic_2_python.xhp
+msgctxt ""
+"basic_2_python.xhp\n"
+"N0555\n"
+"help.text"
+msgid "<emph>datetime</emph> Genuine date and time types"
+msgstr "<emph>datetime</emph> Woprawdźite datumowe a časowe typy"
+
+#. GQCwa
+#: basic_2_python.xhp
+msgctxt ""
+"basic_2_python.xhp\n"
+"N0556\n"
+"help.text"
+msgid "<emph>json</emph> JSON encoder and decoder"
+msgstr "<emph>json</emph> Enkoder a dekoder JSON"
+
+#. JmFZK
+#: basic_2_python.xhp
+msgctxt ""
+"basic_2_python.xhp\n"
+"N0557\n"
+"help.text"
+msgid "<emph>math</emph> Mathematical functions"
+msgstr "<emph>math</emph> Matematiske funkcije"
+
+#. PRGHi
+#: basic_2_python.xhp
+msgctxt ""
+"basic_2_python.xhp\n"
+"N0558\n"
+"help.text"
+msgid "<emph>re</emph> Regular expression operations"
+msgstr "<emph>re</emph> Operacije z regularnymi wurazami"
+
+#. XVbzW
+#: basic_2_python.xhp
+msgctxt ""
+"basic_2_python.xhp\n"
+"N0559\n"
+"help.text"
+msgid "<emph>socket</emph> Low-level networking interface"
+msgstr "<emph>socket</emph> Syćowa tykačka niskeje runiny"
+
+#. VehtJ
+#: basic_2_python.xhp
+msgctxt ""
+"basic_2_python.xhp\n"
+"N0560\n"
+"help.text"
+msgid "<emph>sys</emph> System-specific parameters and functions"
+msgstr "<emph>sys</emph> Specifiske parametry a funkcije systema"
+
+#. RWzWY
+#: basic_2_python.xhp
+msgctxt ""
+"basic_2_python.xhp\n"
+"N0561\n"
+"help.text"
+msgid "<emph>unittest</emph> and <emph>trace</emph> Unit testing framework and Track Python execution"
+msgstr "<emph>unittest</emph> a <emph>trace</emph> Wokolina za testowanje jednotkow a slědowanje wuwjedźenjow Python"
+
+#. JG3VZ
+#: basic_2_python.xhp
+msgctxt ""
+"basic_2_python.xhp\n"
+"N0562\n"
+"help.text"
+msgid "<emph>xml.etree.ElementTree</emph> ElementTree XML API"
+msgstr "<emph>xml.etree.ElementTree</emph> API ElementTree XML"
+
+#. CwBFN
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"tit\n"
+"help.text"
+msgid "Basic Programming Examples"
+msgstr "Programowanske přikłady Basic"
+
+#. eBci4
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"bm_id171559140731329\n"
+"help.text"
+msgid "<bookmark_value>Basic;programming examples</bookmark_value>"
+msgstr "<bookmark_value>Basic;programowanske přikłady</bookmark_value>"
+
+#. DdPKY
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"hd_id471559139063621\n"
+"help.text"
+msgid "<variable id=\"basicexamplestit\"><link href=\"text/sbasic/guide/basic_examples.xhp\" name=\"Basic Programming Examples\">Basic Programming Examples</link></variable>"
+msgstr "<variable id=\"basicexamplestit\"><link href=\"text/sbasic/guide/basic_examples.xhp\" name=\"Basic Programming Examples\">Programowanske přikłady Basic</link></variable>"
+
+#. GKzpN
+#: calc_borders.xhp
+msgctxt ""
+"calc_borders.xhp\n"
+"tit\n"
+"help.text"
+msgid "Formatting Borders in Calc with Macros"
+msgstr "Ramiki w Calc z makrami formatować"
+
+#. gDaEd
+#: calc_borders.xhp
+msgctxt ""
+"calc_borders.xhp\n"
+"hd_id461623364876507\n"
+"help.text"
+msgid "<variable id=\"title\"><link href=\"text/sbasic/guide/calc_borders.xhp\" name=\"Calc_Borders_h1\">Formatting Borders in Calc with Macros</link></variable>"
+msgstr "<variable id=\"title\"><link href=\"text/sbasic/guide/calc_borders.xhp\" name=\"Calc_Borders_h1\">Ramiki w Calc z makrami formatować</link></variable>"
+
+#. JyRxe
+#: calc_borders.xhp
+msgctxt ""
+"calc_borders.xhp\n"
+"par_id461630536347127\n"
+"help.text"
+msgid "By using Basic or Python programming languages it is possible to write macros that apply formats to ranges of cells in Calc."
+msgstr "Z pomocu programowanskich rěčow Basic abo Python dadźa so makra pisać, kotrež formaty na celowe wobłuki w Calc nałožuja."
+
+#. 7FCuQ
+#: calc_borders.xhp
+msgctxt ""
+"calc_borders.xhp\n"
+"hd_id81630536486560\n"
+"help.text"
+msgid "Formatting Borders in Ranges of Cells"
+msgstr "Ramiki w celowych wobłukach formatować"
+
+#. jZniv
+#: calc_borders.xhp
+msgctxt ""
+"calc_borders.xhp\n"
+"par_id871630536518700\n"
+"help.text"
+msgid "The code snippet below creates a <literal>Sub</literal> called <literal>FormatCellBorder</literal> that applies new border formats to a given range address in the current Calc sheet."
+msgstr "Slědowacy kodowy wotrězk <literal>Sub</literal> z mjenom <literal>FormatCellBorder</literal> wutwori, kotryž nowe ramikowe formaty na datu wobłukowu adresu w aktualnej tabeli Calc nałožuje."
+
+#. Xzm6Q
+#: calc_borders.xhp
+msgctxt ""
+"calc_borders.xhp\n"
+"bas_id131630537785605\n"
+"help.text"
+msgid "' Creates the UNO struct that will store the new line format"
+msgstr "' Wutwori UNO-strukturu, kotraž nowy linkowy format składuje"
+
+#. qpADJ
+#: calc_borders.xhp
+msgctxt ""
+"calc_borders.xhp\n"
+"bas_id971630537786724\n"
+"help.text"
+msgid "' Gets the target cell"
+msgstr "' Wuwołuje cilowu celu"
+
+#. jXfEv
+#: calc_borders.xhp
+msgctxt ""
+"calc_borders.xhp\n"
+"bas_id791630537787373\n"
+"help.text"
+msgid "' Applies the new format to all borders"
+msgstr "' Nałožuje nowy format na wšě ramiki"
+
+#. 3csnz
+#: calc_borders.xhp
+msgctxt ""
+"calc_borders.xhp\n"
+"par_id141630537941393\n"
+"help.text"
+msgid "The <literal>Sub</literal> described above takes in four arguments:"
+msgstr "Horjeka wopisany <literal>Sub</literal> štyri argumenty přijima:"
+
+#. kA3Uj
+#: calc_borders.xhp
+msgctxt ""
+"calc_borders.xhp\n"
+"par_id841630538209958\n"
+"help.text"
+msgid "<emph>cellAddress</emph> is a string denoting the range to be formatted in the format \"A1\"."
+msgstr "<emph>cellAdress</emph> je znamješkowy rjećazk, kotryž wobłuk podawa, kotryž so ma w formaće „A1“ formatować."
+
+#. dfuE6
+#: calc_borders.xhp
+msgctxt ""
+"calc_borders.xhp\n"
+"par_id821630538210271\n"
+"help.text"
+msgid "<emph>newStyle</emph> is an integer value that corresponds to the border line style (see <link href=\"text/sbasic/guide/calc_borders.xhp#LineStyles_h2\" name=\"LineStyles_link\">Line Styles</link> below)."
+msgstr "<emph>newStyle</emph> je cyłoličbna hódnota, kotraž stilej ramikoweje linije wotpowěduje (hlejće <link href=\"text/sbasic/guide/calc_borders.xhp#LineStyles_h2\" name=\"LineStyles_link\">Linijowe stile</link> deleka)."
+
+#. gKaYD
+#: calc_borders.xhp
+msgctxt ""
+"calc_borders.xhp\n"
+"par_id191630538210607\n"
+"help.text"
+msgid "<emph>newWidth</emph> is an integer value that defines the line width."
+msgstr "<emph>newWidth</emph> je cyłoličbna hódnota, kotraž linijowu šěrokosć definuje."
+
+#. wVnmn
+#: calc_borders.xhp
+msgctxt ""
+"calc_borders.xhp\n"
+"par_id71630538211142\n"
+"help.text"
+msgid "<emph>newColor</emph> is an integer value corresponding to a color defined using the <link href=\"text/sbasic/shared/03010305.xhp\" name=\"RGB_link\">RGB</link> function."
+msgstr "<emph>newColor</emph> je cyłoličbna hódnota, kotraž barbje wotpowěduje, kotraž so z pomocu funkcije <link href=\"text/sbasic/shared/03010305.xhp\" name=\"RGB_link\">RGB</link> definuje."
+
+#. 3gYJs
+#: calc_borders.xhp
+msgctxt ""
+"calc_borders.xhp\n"
+"par_id201630538522838\n"
+"help.text"
+msgid "To call <literal>FormatCellBorder</literal> create a new macro and pass the desired arguments, as shown below:"
+msgstr "Zo byšće <literal>FormatCellBorder</literal> wuwołał, wutworće nowe makro a přepodajće požadane argumenty, kaž so deleka pokazuje:"
+
+#. XpcA7
+#: calc_borders.xhp
+msgctxt ""
+"calc_borders.xhp\n"
+"bas_id651630603779228\n"
+"help.text"
+msgid "' Gives access to the line style constants"
+msgstr "' Zmóžnja přistup ke konstantam linijoweho stila"
+
+#. 44Cm4
+#: calc_borders.xhp
+msgctxt ""
+"calc_borders.xhp\n"
+"bas_id321630538931144\n"
+"help.text"
+msgid "' Formats \"B5\" with solid blue borders"
+msgstr "' Formatuje \"B5\" z přećehnjenymi módrymi ramikami"
+
+#. m5WA7
+#: calc_borders.xhp
+msgctxt ""
+"calc_borders.xhp\n"
+"bas_id91630538931686\n"
+"help.text"
+msgid "' Formats all borders in the range \"D2:F6\" with red dotted borders"
+msgstr "' Formatuje wšě ramiki we wobłuku \"D2:F6\" z čerwjenymi dypkowanymi ramikami"
+
+#. yt8qz
+#: calc_borders.xhp
+msgctxt ""
+"calc_borders.xhp\n"
+"par_id31630540159114\n"
+"help.text"
+msgid "It is possible to implement the same functionality in Python:"
+msgstr "Je móžno, samsnu funkcionalnosć w Python implementować:"
+
+#. FEQGU
+#: calc_borders.xhp
+msgctxt ""
+"calc_borders.xhp\n"
+"pyc_id411630540777672\n"
+"help.text"
+msgid "# Defines the new line format"
+msgstr "# Definuje nowy linijowy format"
+
+#. cxBAF
+#: calc_borders.xhp
+msgctxt ""
+"calc_borders.xhp\n"
+"pyc_id361630540778786\n"
+"help.text"
+msgid "# Scriptforge service to access cell ranges"
+msgstr "# Słužba Scriptforge za přistup k celowym wobłukam"
+
+#. hUVfn
+#: calc_borders.xhp
+msgctxt ""
+"calc_borders.xhp\n"
+"par_id931630541661889\n"
+"help.text"
+msgid "The code snippet below implements a macro named <literal>myMacro</literal> that calls <literal>formatCellBorder</literal>:"
+msgstr "Slědowacy kodowy wurězk makro z mjenom <literal>myMacro</literal> implementuje, kotrež <literal>formatCellBorder</literal> wuwołuje:"
+
+#. zmvzf
+#: calc_borders.xhp
+msgctxt ""
+"calc_borders.xhp\n"
+"par_id261630541889040\n"
+"help.text"
+msgid "The Python code presented above uses the <link href=\"text/sbasic/shared/03/lib_ScriptForge.xhp\" name=\"SF_link\">ScriptForge library</link> that is available since %PRODUCTNAME 7.2."
+msgstr "Horjeka předstajeny kod Python <link href=\"text/sbasic/shared/03/lib_ScriptForge.xhp\" name=\"SF_link\">biblioteku ScriptForge</link> wužiwa, kotraž je wot wersije %PRODUCTNAME 7.2 k dispoziciji."
+
+#. FfECT
+#: calc_borders.xhp
+msgctxt ""
+"calc_borders.xhp\n"
+"hd_id361630539136798\n"
+"help.text"
+msgid "Line Styles"
+msgstr "Linijowe stile"
+
+#. Qt5gG
+#: calc_borders.xhp
+msgctxt ""
+"calc_borders.xhp\n"
+"par_id501630539147234\n"
+"help.text"
+msgid "Line styles are defined as integer constants. The table below lists the constants for the line styles available in <menuitem>Format - Cells - Borders</menuitem>:"
+msgstr "Linijowe stile su jako cyłoličbne konstanty definowane. Slědowaca tabela konstanty za linijowe stile nalistuje, kotrež su w <menuitem>Format – Cele – Rajtark: Ramiki</menuitem> k dispoziciji:"
+
+#. X2WVp
+#: calc_borders.xhp
+msgctxt ""
+"calc_borders.xhp\n"
+"par_id651630604006712\n"
+"help.text"
+msgid "Constant name"
+msgstr "Mjeno konstanty"
+
+#. JTgFF
+#: calc_borders.xhp
+msgctxt ""
+"calc_borders.xhp\n"
+"par_id501630539273987\n"
+"help.text"
+msgid "Integer value"
+msgstr "Cyłoličbna hódnota"
+
+#. GZPBL
+#: calc_borders.xhp
+msgctxt ""
+"calc_borders.xhp\n"
+"par_id191630539273987\n"
+"help.text"
+msgid "Line style name"
+msgstr "Mjeno linijoweho stila"
+
+#. cGhRo
+#: calc_borders.xhp
+msgctxt ""
+"calc_borders.xhp\n"
+"par_id691630539273987\n"
+"help.text"
+msgid "Solid"
+msgstr "Přezcyłny"
+
+#. aFDHe
+#: calc_borders.xhp
+msgctxt ""
+"calc_borders.xhp\n"
+"par_id591630539325162\n"
+"help.text"
+msgid "Dotted"
+msgstr "Dypkowany"
+
+#. XJZxB
+#: calc_borders.xhp
+msgctxt ""
+"calc_borders.xhp\n"
+"par_id881630539433260\n"
+"help.text"
+msgid "Dashed"
+msgstr "Smužkowany"
+
+#. VeExq
+#: calc_borders.xhp
+msgctxt ""
+"calc_borders.xhp\n"
+"par_id111630539463634\n"
+"help.text"
+msgid "Fine dashed"
+msgstr "Drobnje smužkowany"
+
+#. n9ZFA
+#: calc_borders.xhp
+msgctxt ""
+"calc_borders.xhp\n"
+"par_id261630539471483\n"
+"help.text"
+msgid "Double thin"
+msgstr "Dwójny ćeńki"
+
+#. ydBcG
+#: calc_borders.xhp
+msgctxt ""
+"calc_borders.xhp\n"
+"par_id671630539478101\n"
+"help.text"
+msgid "Dash dot"
+msgstr "Smužkowy dypk"
+
+#. a4wFd
+#: calc_borders.xhp
+msgctxt ""
+"calc_borders.xhp\n"
+"par_id701630539484498\n"
+"help.text"
+msgid "Dash dot dot"
+msgstr "Smužkowy dypkowy dypk"
+
+#. A9PVK
+#: calc_borders.xhp
+msgctxt ""
+"calc_borders.xhp\n"
+"par_id751630539680866\n"
+"help.text"
+msgid "Refer to the <link href=\"https://api.libreoffice.org/docs/idl/ref/namespacecom_1_1sun_1_1star_1_1table_1_1BorderLineStyle.html\" name=\"BorderLineStyle_link\">BorderLineStyle Constant Reference</link> in the LibreOffice API documentation to learn more about line style constants."
+msgstr "Čitajće <link href=\"https://api.libreoffice.org/docs/idl/ref/namespacecom_1_1sun_1_1star_1_1table_1_1BorderLineStyle.html\" name=\"BorderLineStyle_link\">BorderLineStyle Constant Reference (jendźelsce)</link> w dokumentaciji API LibreOffice, zo byšće wjace wo konstantach linijoweho stila zhonił."
+
+#. aJTNw
+#: calc_borders.xhp
+msgctxt ""
+"calc_borders.xhp\n"
+"hd_id31630542361666\n"
+"help.text"
+msgid "Formatting Borders Using TableBorder2"
+msgstr "Z TableBorder2 ramiki formatować"
+
+#. vukYu
+#: calc_borders.xhp
+msgctxt ""
+"calc_borders.xhp\n"
+"par_id11630542436346\n"
+"help.text"
+msgid "Range objects have a property named <literal>TableBorder2</literal> that can be used to format range borders as it is done in the <menuitem>Format - Cells - Borders</menuitem> dialog in the <emph>Line Arrangement</emph> section."
+msgstr "Wobłukowe objekty maja kajkosć z mjenom <literal>TableBorder2</literal>, kotruž móžeće wužiwać, zo byšće wobłukowe ramiki formatował, runje tak kaž w dialogu <menuitem>Format – Cele… – Ramiki</menuitem> we wotrězku <emph>Linijowy porjad</emph>."
+
+#. A25aA
+#: calc_borders.xhp
+msgctxt ""
+"calc_borders.xhp\n"
+"par_id641630542724480\n"
+"help.text"
+msgid "In addition to top, bottom, left and right borders, <literal>TableBorder2</literal> also defines vertical and horizontal borders. The macro below applies only the top and bottom borders to the range \"B2:E5\"."
+msgstr "Nimo hornich, delnich, lěwych a prawych ramikow <literal>TableBorder2</literal> tež wertikalne a horicontalne ramiki definuje. Slědowace makro jenož horni a delni ramik na wobłuk \"B2:E5\" nałožuje."
+
+#. k7afV
+#: calc_borders.xhp
+msgctxt ""
+"calc_borders.xhp\n"
+"bas_id191630543332073\n"
+"help.text"
+msgid "' Defines the new line format"
+msgstr "' Definuje nowy linijowy format"
+
+#. hSdDm
+#: calc_borders.xhp
+msgctxt ""
+"calc_borders.xhp\n"
+"bas_id281630543333061\n"
+"help.text"
+msgid "' Struct that stores the new TableBorder2 definition"
+msgstr "' Struktura, kotraž nowu definiciju TableBorder2 składuje"
+
+#. SFrJL
+#: calc_borders.xhp
+msgctxt ""
+"calc_borders.xhp\n"
+"bas_id11630543334395\n"
+"help.text"
+msgid "' Applies the table format to the range \"B2:E5\""
+msgstr "' Nałožuje tabelowy format na wobłuk \"B2:E5\""
+
+#. cSa4U
+#: calc_borders.xhp
+msgctxt ""
+"calc_borders.xhp\n"
+"par_id401630544066231\n"
+"help.text"
+msgid "The macro can be implemented in Python as follows:"
+msgstr "Makro da so w Python takle implementować:"
+
+#. aipfb
+#: calc_borders.xhp
+msgctxt ""
+"calc_borders.xhp\n"
+"par_id751630539680102\n"
+"help.text"
+msgid "Refer to the <link href=\"https://api.libreoffice.org/docs/idl/ref/structcom_1_1sun_1_1star_1_1table_1_1TableBorder2.html\" name=\"BorderLineStyle_link\">TableBorder2 Struct Reference</link> in the LibreOffice API documentation to learn more about its attributes."
+msgstr "Čitajće <link href=\"https://api.libreoffice.org/docs/idl/ref/structcom_1_1sun_1_1star_1_1table_1_1TableBorder2.html\" name=\"BorderLineStyle_link\">TableBorder2 Struct Reference (jendźelsce)</link> w dokumentaciji API LibreOffice, zo byšće wjace wo jeho atributach zhonił."
+
+#. YLjtF
+#: control_properties.xhp
+msgctxt ""
+"control_properties.xhp\n"
+"tit\n"
+"help.text"
+msgid "Changing the Properties of Controls in the Dialog Editor"
+msgstr "Kajkosće wodźenskich elementow w dialogowym editorje změnić"
+
+#. PDQCc
+#: control_properties.xhp
+msgctxt ""
+"control_properties.xhp\n"
+"bm_id3145786\n"
+"help.text"
+msgid "<bookmark_value>properties; controls in dialog editor</bookmark_value><bookmark_value>changing;control properties</bookmark_value><bookmark_value>controls;changing properties</bookmark_value><bookmark_value>dialog editor;changing control properties</bookmark_value>"
+msgstr "<bookmark_value>kajkosće; wodźenske elementy w dialogowym editorje</bookmark_value><bookmark_value>změnić;kajkosće wodźenskeho elementa</bookmark_value><bookmark_value>wodźenske elementy;kajkosće změnić</bookmark_value><bookmark_value>dialogowy editor;kajkosće wodźenskeho elementa změnić</bookmark_value>"
+
+#. NFh5G
+#: control_properties.xhp
+msgctxt ""
+"control_properties.xhp\n"
+"hd_id3145786\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\">Kajkosće wodźenskich elementow w dialogowym editorje změnić</link></variable>"
+
+#. Es8Xy
+#: control_properties.xhp
+msgctxt ""
+"control_properties.xhp\n"
+"par_id3147317\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 "Móžeće za wodźenski symbol kajkosće nastajiće, kotrež dialogej přidawaće. Móžeće na přikład barbu, mjeno a wulkosć tłóčatka změnić, kotrež sće přidał. Móžeće najwjace kajkosćow wodźenskeho elementa změnić, hdyž dialog wutworjeće abo wobdźěłujeće. Móžeće jenož někotre kajkosće za čas fungowanja změnić."
+
+#. vFBh4
+#: control_properties.xhp
+msgctxt ""
+"control_properties.xhp\n"
+"par_id3145749\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 "Zo byšće kajkosće wodźenskeho elementa w naćiskowym modusu změnił, klikńće z prawej tastu na wodźenski element a wubjerće potom <emph>Kajkosće</emph>."
+
+#. KPeke
+#: create_dialog.xhp
+msgctxt ""
+"create_dialog.xhp\n"
+"tit\n"
+"help.text"
+msgid "Creating a Basic Dialog"
+msgstr "Dialog Basic wutworić"
+
+#. MV4Pg
+#: create_dialog.xhp
+msgctxt ""
+"create_dialog.xhp\n"
+"bm_id3149346\n"
+"help.text"
+msgid "<bookmark_value>dialogs;creating Basic dialogs</bookmark_value>"
+msgstr "<bookmark_value>dialogi;dialogi Basic wutworić</bookmark_value>"
+
+#. TKtFE
+#: create_dialog.xhp
+msgctxt ""
+"create_dialog.xhp\n"
+"hd_id3149346\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\">Dialog Basic wutworić</link></variable>"
+
+#. xBcR4
+#: create_dialog.xhp
+msgctxt ""
+"create_dialog.xhp\n"
+"par_id3163802\n"
+"help.text"
+msgid "Choose <emph>Tools - Macros - Organize Dialogs</emph>, and then click <emph>New</emph>."
+msgstr "Wubjerće <emph>Nastroje – Makro – Dialogi rjadować…</emph> a klikńće potom na <emph>Nowy…</emph>."
+
+#. FkRCE
+#: create_dialog.xhp
+msgctxt ""
+"create_dialog.xhp\n"
+"par_id3150447\n"
+"help.text"
+msgid "Enter a name for the dialog and click <emph>OK</emph>. To rename the dialog later, right-click the name on the tab and choose <emph>Rename</emph>."
+msgstr "Zapodajće mjeno za dialog a klikńće na <emph>W porjadku</emph>. Zo byšće dialog pozdźišo přemjenował, klikńće z prawej tastu na rajtark a wubjerće <emph>Přemjenować</emph>."
+
+#. qFeYH
+#: create_dialog.xhp
+msgctxt ""
+"create_dialog.xhp\n"
+"par_idN1065F\n"
+"help.text"
+msgid "Click <emph>Edit</emph>. The Basic dialog editor opens and contains a blank dialog."
+msgstr "Klikńće na <emph>Wobdźěłać</emph>. Dialogowy editor Basic so z prózdnym dialogom wočinja."
+
+#. To7nC
+#: create_dialog.xhp
+msgctxt ""
+"create_dialog.xhp\n"
+"par_id3153726\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 "Jeli lajstu <emph>nastrojow</emph> njewidźiće, klikńće na šipk pódla symbola <emph>Wodźenske elementy zasadźić</emph>, zo byšće lajstu <emph>nastrojow</emph> wočinił."
+
+#. cBdmB
+#: create_dialog.xhp
+msgctxt ""
+"create_dialog.xhp\n"
+"par_id3148455\n"
+"help.text"
+msgid "Click a tool and then drag in the dialog to create the control."
+msgstr "Klikńće na nastroj a ćehńće potom w dialogu, zo byšće wodźenski element wutworił."
+
+#. 99Bfa
+#: insert_control.xhp
+msgctxt ""
+"insert_control.xhp\n"
+"tit\n"
+"help.text"
+msgid "Creating Controls in the Dialog Editor"
+msgstr "Wodźenske elementy w dialogowym editorje wutworić"
+
+#. yeHTt
+#: insert_control.xhp
+msgctxt ""
+"insert_control.xhp\n"
+"bm_id3149182\n"
+"help.text"
+msgid "<bookmark_value>controls; creating in the dialog editor</bookmark_value><bookmark_value>dialog editor;creating controls</bookmark_value>"
+msgstr "<bookmark_value>wodźenske elementy; w dialogowym editorje wutworić</bookmark_value><bookmark_value>dialogowy editor;wodźenske elementy wutworić</bookmark_value>"
+
+#. UAc5k
+#: insert_control.xhp
+msgctxt ""
+"insert_control.xhp\n"
+"hd_id3149182\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\">Wodźenske elementy w dialogowym editorje wutworić</link></variable>"
+
+#. rCdw2
+#: insert_control.xhp
+msgctxt ""
+"insert_control.xhp\n"
+"par_id3146797\n"
+"help.text"
+msgid "Use the tools on the <emph>Toolbox </emph>of the BASIC dialog editor to add controls to your dialog."
+msgstr "Wužiwajće nastroje na <emph>lajsće nastrojow</emph> dialogoweho editora BASIC, zo byšće swojemu dialogej wodźenske elementy přidał."
+
+#. bDK4t
+#: insert_control.xhp
+msgctxt ""
+"insert_control.xhp\n"
+"par_id3150276\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 "Zo byšće lajstu <emph>nastrojow</emph> wočinił, klikńće na šipk pódla symbola <emph>Wodźenske elementy zasadźić</emph> na symbolowej lajsće <emph>Makro</emph>."
+
+#. HAqwy
+#: insert_control.xhp
+msgctxt ""
+"insert_control.xhp\n"
+"par_id3145068\n"
+"help.text"
+msgid "Click a tool on the toolbar, for example, <emph>Button</emph>."
+msgstr "Klikńće w symbolowej lajsće na nastroj, na přikład <emph>Tłóčatko</emph>."
+
+#. BxDGH
+#: insert_control.xhp
+msgctxt ""
+"insert_control.xhp\n"
+"par_id3153360\n"
+"help.text"
+msgid "On the dialog, drag the button to the size you want."
+msgstr "Ćehńće w dialogu tłóčatko na požadanu wulkosć."
+
+#. fRi68
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"tit\n"
+"help.text"
+msgid "Reading and Writing values to Ranges"
+msgstr "Hódnoty do wobłukow čitać a pisać"
+
+#. 3hH3s
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"hd_id461623364876507\n"
+"help.text"
+msgid "<variable id=\"title\"><link href=\"text/sbasic/guide/read_write_values.xhp\" name=\"ReadWriteValues_h1\">Reading and Writing values to Ranges</link></variable>"
+msgstr "<variable id=\"title\"><link href=\"text/sbasic/guide/read_write_values.xhp\" name=\"ReadWriteValues_h1\">Hódnoty do wobłukow čitać a pisać</link></variable>"
+
+#. ZKUBE
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id781633210592228\n"
+"help.text"
+msgid "Macros in %PRODUCTNAME Calc often need to read and write values from/to sheets. This help page describes the various approaches to accessing sheets and ranges to read or write their values."
+msgstr "Makra w %PRODUCTNAME Calc husto dyrbja hódnoty z/do tabelow čitać a pisać. Tuta strona pomocy wšelake wašnja postupowanja wopisuje, přistup k tabelam a wobłukam dóstać, zo byšće jich hódnoty čitał abo pisał."
+
+#. D4ZJu
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id191633214565965\n"
+"help.text"
+msgid "All examples presented in this page can be implemented both in Basic and Python."
+msgstr "Wšě přikłady, kotrež so na tutej stronje předstajeja, dadźa so do Basic kaž tež do Python implementować."
+
+#. LfNCy
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"hd_id331633213558740\n"
+"help.text"
+msgid "Accessing a Single Cell"
+msgstr "Přistup k jednotliwej celi"
+
+#. A5M3f
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id731633213581386\n"
+"help.text"
+msgid "The example below enters the numeric value 123 into cell \"A1\" of the current sheet."
+msgstr "Slědowacy přikład numerisku hódnotu 123 do cele \"A1\" aktualneje tabele zapodawa."
+
+#. G6yWX
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id131633213887433\n"
+"help.text"
+msgid "The same can be accomplished with Python:"
+msgstr "Samsne da so z Python docpěć:"
+
+#. CDmg6
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id861633214219511\n"
+"help.text"
+msgid "Note that in the previous examples the cell is accessed using its range name \"A1\". It is also possible to access cells using indices as though the sheet were a matrix where columns and rows are indexed starting from zero."
+msgstr "Dźiwajće na to, zo předchadne přikłady z pomocu wobłukoweho mjena \"A1\" přistup k celi maja. Přistup k celam je tež móžny, hdyž indeksy wužiwaće, kaž by tabela matriks była, hdźež špalty a linki su wot nul indikowane."
+
+#. Jja4D
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id161633214461067\n"
+"help.text"
+msgid "This can be done using the <literal>getCellByPosition(colIndex, rowIndex)</literal> method, that takes in a column and a row index. The example below in Basic changes the text value in cell \"C1\" (column 2, row 0)."
+msgstr "Móžeće to z pomocu metody <literal>getCellByPosition(colIndex, rowIndex)</literal> činić, kotraž špaltowy a linkowy indeks přijima. Slědowacy přikład w Basic tekstowu hódnotu w celi \"C1\" (špalta 2, linka 0) měnja."
+
+#. 5tsZR
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id221633214713436\n"
+"help.text"
+msgid "This example can also be implemented in Python as follows:"
+msgstr "Tutón přikład da so tež w Python takle implementować:"
+
+#. h6eq5
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id101633215142970\n"
+"help.text"
+msgid "The main difference between Python and Basic scripts lies on how to get access to the sheet object by using the <literal>XSCRIPTCONTEXT</literal> context variable. After that, all methods and properties are identical in Basic and Python."
+msgstr "Hłowny rozdźěl mjez skriptami Python a Basic w tym wobsteji, kak móžeće přistup k tabelowemu objektej z pomocu kontekstoweje wariable <literal>XSCRIPTCONTEXT</literal> dóstać. Po tym su wšě metody a kajkosće w Basic a Python identiske."
+
+#. PmETF
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"hd_id411633215666257\n"
+"help.text"
+msgid "Values, Strings and Formulas"
+msgstr "Hódnoty, znamješkowe rjećazki a formle"
+
+#. MBHDg
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id861633215682610\n"
+"help.text"
+msgid "Calc cells can have three types of values: numeric, strings and formulas. Each type has its own set and get methods:"
+msgstr "Cele Calc móža tři typy hódnotow měć: numeriske, znamješkowe rjećazki a formle. Kóždy typ ma swoje metody set a get:"
+
+#. RXE76
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id191633215791905\n"
+"help.text"
+msgid "Type"
+msgstr "Typ"
+
+#. rYCuZ
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id181633215791905\n"
+"help.text"
+msgid "Numeric"
+msgstr "Numeriski"
+
+#. ywHfC
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id961633215932180\n"
+"help.text"
+msgid "Text"
+msgstr "Tekst"
+
+#. KH9Ya
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id651633215984116\n"
+"help.text"
+msgid "Formula"
+msgstr "Formla"
+
+#. nGhov
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id21633215845395\n"
+"help.text"
+msgid "Dates and currency values are considered as numeric values in Calc."
+msgstr "W Calc maja datumowe a měnowe hódnoty za numeriske hódnoty."
+
+#. t87Qx
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id221633216111353\n"
+"help.text"
+msgid "The following example enters numeric values into cells \"A1\" and \"A2\" and inserts a formula in cell \"A3\" that returns the multiplication of these values."
+msgstr "Slědowace přikład numeriskej hódnoće do celeju \"A1\" a \"A2\" zapodawa a zasadźuje formlu do cele \"A3\", kotraž multiplikaciju tuteju hódnotow wróća."
+
+#. r6BG6
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"hd_id321633216630043\n"
+"help.text"
+msgid "Accessing Ranges in Different Sheets"
+msgstr "Přistup k wobłukam w rozdźělnych tabelach"
+
+#. TFU8U
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id371633216672570\n"
+"help.text"
+msgid "The previous examples used only the active sheet to perform operations. It is possible to access cell ranges in different sheets by their indices or names."
+msgstr "Předchadne přikłady jenož aktiwnu tabelu wužiwaja, zo bychu operacije wuwjedli. Z pomocu jich indeksow abo mjenow je přistup k celowym wobłukam w rozdźělnych tabelach móžny."
+
+#. c3yhF
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id861633216843382\n"
+"help.text"
+msgid "The example below enters a numeric value into cell \"A1\" of the sheet named \"Sheet2\"."
+msgstr "Slědowacy přikład numerisku hódnotu do cele \"A1\" tabele z mjenom „Sheet2“ zapodawa."
+
+#. GpnNS
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id611633217090743\n"
+"help.text"
+msgid "This example can also be implemented in Python as follows:"
+msgstr "Tutón přikład da so tež w Python takle implementować:"
+
+#. xGQ3k
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id631633217279518\n"
+"help.text"
+msgid "Sheets can also be accessed using zero-based indices indicating which sheet considering the order they appear in the Calc file."
+msgstr "Přistup k tabelam je tež z pomocu nulobazowanych indeksow móžny, kotrež podawaja, kotra tabela so dźiwajo na porjad, w kotrymž so w dataji Calc jewja, pokazuje."
+
+#. tSo3e
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id291633264880172\n"
+"help.text"
+msgid "In Basic, instead of using the <literal>getByName</literal> method, use <literal>Sheets(sheetIndex)</literal> as shown next:"
+msgstr "Wužiwajće w Basic metodu <literal>Sheets(sheetIndex)</literal> město metody <literal>getByName</literal>, kaž so deleka pokazuje:"
+
+#. svDuj
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id891633265000047\n"
+"help.text"
+msgid "This can be done in a similar fashion in Python:"
+msgstr "To da so na podobne wašnje w Python přewjesć:"
+
+#. 6qHAn
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"hd_id451633265241066\n"
+"help.text"
+msgid "Using the ScriptForge Library"
+msgstr "Biblioteku ScriptForge wužiwać"
+
+#. 8CkSe
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id731633265268585\n"
+"help.text"
+msgid "The Calc service of the ScriptForge library can be used to get and set cell values as follows:"
+msgstr "Słužba Calc biblioteki ScriptForge da so wužiwać, zo by celowe hódnoty takle dóstała a stajiła:"
+
+#. DCJ2E
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id551633265526538\n"
+"help.text"
+msgid "' Loads the ScriptForge library"
+msgstr "' Začita biblioteku ScriptForge"
+
+#. hgDyM
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id581633265527001\n"
+"help.text"
+msgid "' Gets access to the current Calc document"
+msgstr "' Dóstawa přistup k aktualnemu dokumentej Calc"
+
+#. Gw4KG
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id751633265527427\n"
+"help.text"
+msgid "' Sets the value of cells A1 and A2"
+msgstr "' Staja hódnotu celow A1 a A2"
+
+#. VUWVE
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id781633267324929\n"
+"help.text"
+msgid "The <literal>setValue</literal> method can be used to set both numeric and text values. To set a cell formula, use the <literal>setFormula</literal> method."
+msgstr "Metoda <literal>setValue</literal> da so wužiwać, zo by numeriske kaž tež tekstowe hódnoty stajiła. Zo byšće celowu formlu postajił, wužiwajće metodu <literal>setFormula</literal>."
+
+#. jPRii
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id251633265634883\n"
+"help.text"
+msgid "With the Calc service, getting and setting cell values can be done with a single line of code. The example below gets the value from cell \"A1\" and shows it on a message box."
+msgstr "Ze słužbu Calc móžeće z jeničkej kodowej linku celowe hódnoty wotwołać a stajić. Slědowacy přikład hódnotu ze cele \"A1\" wotwołuje a pokazuje ju w zdźělenskim polu."
+
+#. NzUg4
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id521633608223310\n"
+"help.text"
+msgid "The ScriptForge library also makes it simpler to access ranges in different sheets, as demonstrated in the example below:"
+msgstr "Biblioteka ScriptForge přistup k wobłukam w rozdźělnych tabelach wosnadnja, kaž so w slědowacym přikładźe pokazuje:"
+
+#. CCeEh
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"bas_id521633608366292\n"
+"help.text"
+msgid "' Gets cell \"A1\" from the sheet named \"Sheet1\""
+msgstr "' Wotwołuje celu \"A1\" z tabele z mjenom \"Sheet1\""
+
+#. qUTqA
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"bas_id661633608366484\n"
+"help.text"
+msgid "' Gets cell \"B3\" from the sheet named \"Sheet2\""
+msgstr "' Wotwołuje celu \"B3\" z tabele z mjenom \"Sheet2\""
+
+#. mCX5W
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"bas_id501633608516381\n"
+"help.text"
+msgid "' Places the result into cell \"A1\" of sheet \"Report\""
+msgstr "' Placěruje wuslědk do cele \"A1\" tabele \"Report\""
+
+#. ZdkEz
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id431633266057163\n"
+"help.text"
+msgid "The examples above can also be implemented in Python as follows:"
+msgstr "Přikłady horjeka dadźa so tež w Python takle implementować:"
+
+#. ayg6P
+#: sample_code.xhp
+msgctxt ""
+"sample_code.xhp\n"
+"tit\n"
+"help.text"
+msgid "Programming Examples for Controls in the Dialog Editor"
+msgstr "Programowanske přikłady za wodźenske elementy w dialogowym editorje"
+
+#. 2mwgE
+#: sample_code.xhp
+msgctxt ""
+"sample_code.xhp\n"
+"bm_id3155338\n"
+"help.text"
+msgid "<bookmark_value>programming examples for controls</bookmark_value> <bookmark_value>dialogs;loading (example)</bookmark_value> <bookmark_value>dialogs;displaying (example)</bookmark_value> <bookmark_value>controls;reading or editing properties (example)</bookmark_value> <bookmark_value>list boxes;removing entries from (example)</bookmark_value> <bookmark_value>list boxes;adding entries to (example)</bookmark_value> <bookmark_value>examples; programming controls</bookmark_value> <bookmark_value>dialog editor;programming examples for controls</bookmark_value> <bookmark_value>Tools;LoadDialog</bookmark_value>"
+msgstr "<bookmark_value>programowanske přikłady za wodźenske elementy</bookmark_value><bookmark_value>dialogi;začitanje (přikład)</bookmark_value><bookmark_value>dialogi;pokazać (přikład)</bookmark_value><bookmark_value>wodźenske elementy;kajkosće čitać abo wobdźěłować (přikład)</bookmark_value><bookmark_value>lisćinowe pola;zapiski wotstronić (přikład)</bookmark_value><bookmark_value>lisćinowe pola;zapiski přidać (přikład)</bookmark_value><bookmark_value>přikłady; programowanje wodźenskich elementow</bookmark_value><bookmark_value>dialogowy editor;programowanske přikłady za wodźenske elementy</bookmark_value><bookmark_value>Nastroje;LoadDialog</bookmark_value>"
+
+#. XFqTD
+#: sample_code.xhp
+msgctxt ""
+"sample_code.xhp\n"
+"hd_id3155338\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\">Programowanske přikłady za wodźenske elementy w dialogowym editorje</link> </variable>"
+
+#. uFxhk
+#: sample_code.xhp
+msgctxt ""
+"sample_code.xhp\n"
+"par_id3153031\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 "Slědowace přikłady su nowy <link href=\"text/sbasic/guide/create_dialog.xhp\" name=\"dialog\">dialog</link> z mjenom \"Dialog1\". Wužiwajće nastroje w symbolowej <emph>lajsće nastrojow</emph> w dialogowym editorje, zo byšće dialog wutworił a slědowace wodźenske elementy přidał: <emph>kontrolny kašćik</emph> z mjenom \"Kontrolny kašćik 1\", <emph>popisowe polo</emph> z mjenom \"Popisanske polo 1\", <emph>Tłóčatko</emph> z mjenom \"Tłóčatko 1\" a <emph>lisćinowe polo</emph> z mjenom \"Lisćinowe polo 1\"."
+
+#. bfDTG
+#: sample_code.xhp
+msgctxt ""
+"sample_code.xhp\n"
+"par_id3154141\n"
+"help.text"
+msgid "Be consistent with uppercase and lowercase letter when you attach a control to an object variable."
+msgstr "Dźiwajće přeco na wulkopisanje a małopisanje, hdyž objektowej wariabli wodźenski element připokazujeće."
+
+#. TxP4F
+#: sample_code.xhp
+msgctxt ""
+"sample_code.xhp\n"
+"hd_id3154909\n"
+"help.text"
+msgid "Global Function for Loading Dialogs"
+msgstr "Globalna funkcija za začitanje dialogow"
+
+#. uREk8
+#: sample_code.xhp
+msgctxt ""
+"sample_code.xhp\n"
+"par_id3153032\n"
+"help.text"
+msgid "<literal>LoadDialog</literal> function is stored in <literal>Tools.ModuleControls</literal> available from Application Macros and Dialogs."
+msgstr "Funkcija <literal>LoadDialog</literal> so w <literal>Tools.ModuleControls</literal> składuje, kotryž je w Nałoženske makra a dialogi k dispoziciji."
+
+#. kBLFU
+#: sample_code.xhp
+msgctxt ""
+"sample_code.xhp\n"
+"hd_id3149412\n"
+"help.text"
+msgid "Displaying a Dialog"
+msgstr "Dialog pokazać"
+
+#. E6rrB
+#: sample_code.xhp
+msgctxt ""
+"sample_code.xhp\n"
+"par_id3145801\n"
+"help.text"
+msgid "REM global definition of variables"
+msgstr "REM globalna definicija wariblow"
+
+#. FQCDq
+#: sample_code.xhp
+msgctxt ""
+"sample_code.xhp\n"
+"hd_id3150042\n"
+"help.text"
+msgid "Read or Edit Properties of Controls in the Program"
+msgstr "Kajkosće wodźenskich elementow w programje čitać abo wobdźěłać"
+
+#. SahL8
+#: sample_code.xhp
+msgctxt ""
+"sample_code.xhp\n"
+"par_id3145232\n"
+"help.text"
+msgid "REM get dialog model"
+msgstr "REM Model dialoga wobstarać"
+
+#. VWD2t
+#: sample_code.xhp
+msgctxt ""
+"sample_code.xhp\n"
+"par_id3154021\n"
+"help.text"
+msgid "REM display text of Label1"
+msgstr "REM tekst pola Popisanske polo 1 pokazać"
+
+#. aAmMT
+#: sample_code.xhp
+msgctxt ""
+"sample_code.xhp\n"
+"par_id3151277\n"
+"help.text"
+msgid "REM set new text for control Label1"
+msgstr "REM nowy tekst za wodźenski element Popisanske polo 1 nastajić"
+
+#. DZEpD
+#: sample_code.xhp
+msgctxt ""
+"sample_code.xhp\n"
+"par_id3154119\n"
+"help.text"
+msgid "oLabel1.Text = \"New Files\""
+msgstr "oLabel1.Text = \"Nowe dataje\""
+
+#. 5uRRo
+#: sample_code.xhp
+msgctxt ""
+"sample_code.xhp\n"
+"par_id3155115\n"
+"help.text"
+msgid "REM display model properties for the control CheckBox1"
+msgstr "REM modelowe kajkosće za wodźenski element Kontrolny kašćik 1 pokazać"
+
+#. 9FejL
+#: sample_code.xhp
+msgctxt ""
+"sample_code.xhp\n"
+"par_id3149817\n"
+"help.text"
+msgid "REM set new state for CheckBox1 for model of control"
+msgstr "REM nowy status za Kontrolny kašćik 1 za model wodźenskeho elementa nastajić"
+
+#. JkUUZ
+#: sample_code.xhp
+msgctxt ""
+"sample_code.xhp\n"
+"par_id3159102\n"
+"help.text"
+msgid "REM display model properties for control CommandButton1"
+msgstr "REM modelowe kajkosće za wodźenski element Tłóčatko 1 pokazać"
+
+#. vS9pR
+#: sample_code.xhp
+msgctxt ""
+"sample_code.xhp\n"
+"par_id3150368\n"
+"help.text"
+msgid "REM display properties of control CommandButton1"
+msgstr "REM kajkosće wodźenskeho elementa Tłóčatko 1 pokazać"
+
+#. CVE7H
+#: sample_code.xhp
+msgctxt ""
+"sample_code.xhp\n"
+"par_id3150201\n"
+"help.text"
+msgid "REM execute dialog"
+msgstr "REM dialog wuwjesć"
+
+#. EFJQU
+#: sample_code.xhp
+msgctxt ""
+"sample_code.xhp\n"
+"hd_id3145387\n"
+"help.text"
+msgid "Add an Entry to a ListBox"
+msgstr "Lisćinowemu polu zapisk přidać"
+
+#. JUfaR
+#: sample_code.xhp
+msgctxt ""
+"sample_code.xhp\n"
+"par_id3148700\n"
+"help.text"
+msgid "REM adds a new entry to the ListBox"
+msgstr "REM přidawa lisćinowemu polu nowy zapisk"
+
+#. A2XGR
+#: sample_code.xhp
+msgctxt ""
+"sample_code.xhp\n"
+"par_id3144504\n"
+"help.text"
+msgid "oListbox.additem(\"New Item\" & iCount,0)"
+msgstr "oListbox.additem(\"New Item\" & iCount,0)"
+
+#. FKzdb
+#: sample_code.xhp
+msgctxt ""
+"sample_code.xhp\n"
+"hd_id3147071\n"
+"help.text"
+msgid "Remove an Entry from a ListBox"
+msgstr "Zapisk z lisćinoweho pola wotstronić"
+
+#. CmCcv
+#: sample_code.xhp
+msgctxt ""
+"sample_code.xhp\n"
+"par_id3153247\n"
+"help.text"
+msgid "REM remove the first entry from the ListBox"
+msgstr "REM prěni zapisk z lisćinoweho pola wotstronić"
+
+#. EYDQU
+#: show_dialog.xhp
+msgctxt ""
+"show_dialog.xhp\n"
+"tit\n"
+"help.text"
+msgid "Opening a Dialog With Basic"
+msgstr "Dialog z Basic wočinić"
+
+#. biDaS
+#: show_dialog.xhp
+msgctxt ""
+"show_dialog.xhp\n"
+"bm_id3154140\n"
+"help.text"
+msgid "<bookmark_value>module/dialog toggle</bookmark_value> <bookmark_value>dialogs;using Basic to show (example)</bookmark_value> <bookmark_value>examples; showing a dialog with Basic</bookmark_value> <bookmark_value>Tools;LoadDialog</bookmark_value>"
+msgstr "<bookmark_value>modul/dialog přepinać</bookmark_value><bookmark_value>dialogi;Basic za pokazowanje wužiwać (přikład)</bookmark_value> <bookmark_value>přikłady; dialog z Basic pokazać</bookmark_value><bookmark_value>Nastroje;dialog začitać</bookmark_value>"
+
+#. 7KfDE
+#: show_dialog.xhp
+msgctxt ""
+"show_dialog.xhp\n"
+"hd_id3154140\n"
+"help.text"
+msgid "<variable id=\"show_dialog\"><link href=\"text/sbasic/guide/show_dialog.xhp\" name=\"Opening a Dialog With Basic\">Opening a Dialog With Basic</link></variable>"
+msgstr "<variable id=\"show_dialog\"><link href=\"text/sbasic/guide/show_dialog.xhp\" name=\"Dialog z Basic wočinić\">Dialog z Basic wočinić</link></variable>"
+
+#. PXLvB
+#: show_dialog.xhp
+msgctxt ""
+"show_dialog.xhp\n"
+"par_id3145171\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 "Po tym zo sće dialog we woknje <item type=\"productname\">%PRODUCTNAME</item> BASIC wutworił, klikńće na mjenowy rajtark modula, kotremuž dialog je so připokazał, zo byšće dialogowy editor wopušćił. Mjenowy rajtark je deleka we woknje."
+
+#. SyMUQ
+#: show_dialog.xhp
+msgctxt ""
+"show_dialog.xhp\n"
+"par_id3153968\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 "Zapodajće slědowacy kod za podrutinu z mjenom <emph>Dialog1Show</emph>. W tutym přikładźe je mjeno dialoga, kotryž sće wutworił, \"Dialog1\":"
+
+#. ytWYo
+#: show_dialog.xhp
+msgctxt ""
+"show_dialog.xhp\n"
+"par_id3152596\n"
+"help.text"
+msgid "Without using \"LoadDialog\" you can call the code as follows:"
+msgstr "Bjez \"LoadDialog\" móžeće kod kaž sćěhuje wuwołać:"
+
+#. DtP6k
+#: show_dialog.xhp
+msgctxt ""
+"show_dialog.xhp\n"
+"par_id3153157\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 "Hdyž tutón kod wuwjedźeće, so \"Dialog1\" wočinja. Zo byšće dialog začinił, klikńće na tłóčatko Začinić (x) na jeho titulnej lajsće."
+
+#. s79uv
+#: translation.xhp
+msgctxt ""
+"translation.xhp\n"
+"tit\n"
+"help.text"
+msgid "Translation of Controls in the Dialog Editor"
+msgstr "Přełožowanje wodźenskich elementow w dialogowym editorje"
+
+#. 76okP
+#: translation.xhp
+msgctxt ""
+"translation.xhp\n"
+"bm_id8915372\n"
+"help.text"
+msgid "<bookmark_value>dialogs;translating</bookmark_value><bookmark_value>localizing dialogs</bookmark_value><bookmark_value>translating dialogs</bookmark_value>"
+msgstr "<bookmark_value>dialogi;přełožić</bookmark_value><bookmark_value>lokalizaciske dialogi</bookmark_value><bookmark_value>dialogi přełožić</bookmark_value>"
+
+#. cTb7F
+#: translation.xhp
+msgctxt ""
+"translation.xhp\n"
+"hd_id3574896\n"
+"help.text"
+msgid "<variable id=\"translation\"><link href=\"text/sbasic/guide/translation.xhp\">Translation of Controls in the Dialog Editor</link></variable>"
+msgstr "<variable id=\"translation\"><link href=\"text/sbasic/guide/translation.xhp\">Přełožowanje wodźenskich elementow w dialogowym editorje</link></variable>"
+
+#. FsUBB
+#: translation.xhp
+msgctxt ""
+"translation.xhp\n"
+"par_id4601940\n"
+"help.text"
+msgid "The Language toolbar in the Basic IDE dialog editor shows controls to enable and manage localizable dialogs."
+msgstr "Symbolowa lajsta Rěč w dialogowym editorje Basic IDE wodźenske elementy pokazuje, z kotrymiž móžeće lokalizujomne dialogi zmóžnić a rjadować."
+
+#. eGsqR
+#: translation.xhp
+msgctxt ""
+"translation.xhp\n"
+"par_id9538560\n"
+"help.text"
+msgid "By default, any dialog that you create only contains string resources for one language. You may want to create dialogs that automatically show localized strings according to the user's language settings."
+msgstr "Po standardźe so dialog, kotryž wutworiće, jenož rěčne resursy za jednu rěč wobsahuje. Móžeće pak tež dialogi wutworić, kotrež po rěčnych nastajenjach wužiwarja awtomatisce lokalizowane znamješkowe rjećazki pokazuja."
+
+#. DP4Qb
+#: translation.xhp
+msgctxt ""
+"translation.xhp\n"
+"par_id6998809\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the language for the strings that you want to edit. Click the Manage Languages icon to add languages.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Wubjerće rěč za znamješkowe rjećazki, kotrež chceće wobdźěłować. Klikńće na symbol Rěče rjadować, zo byšće rěče přidał.</ahelp>"
+
+#. KQ48Z
+#: translation.xhp
+msgctxt ""
+"translation.xhp\n"
+"par_id71413\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Click a language, then click Default to set the language as default, or click Delete to remove the language from the list.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Klikńće na rěč a potom na Standard, zo byšće rěč jako standard nastajił, abo klikńće na Zhašeć, zo byšće rěč z lisćiny wotstronił.</ahelp>"
+
+#. gGdez
+#: translation.xhp
+msgctxt ""
+"translation.xhp\n"
+"par_id2924283\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens a dialog where you can add a language to the list.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Wočinja dialog, hdźež móžeće lisćinje rěč přidać.</ahelp>"
+
+#. VtLMy
+#: translation.xhp
+msgctxt ""
+"translation.xhp\n"
+"par_id5781731\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a language in the list and click Delete to remove that language. When you remove all languages, the string resources for localizable dialogs are removed from all dialogs in the current library.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Wubjerće rěč w lisćinje a klikńće na Zhašeć, zo byšće tutu rěč wotstronił. Hdyž wšě rěče wotstronjeće, so rěčne resursy za lokalizujomne dialogi ze wšěch dialogow w aktualnej bibliotece wotstronjeja.</ahelp>"
+
+#. UyizF
+#: translation.xhp
+msgctxt ""
+"translation.xhp\n"
+"par_id6942045\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a language in the list and click Default to set the language as default language.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Wubjerće rěč w lisćinje a klikńće na Standard, zo byšće rěč jako standardnu rěč nastajił.</ahelp>"
+
+#. VaSvA
+#: translation.xhp
+msgctxt ""
+"translation.xhp\n"
+"par_id4721823\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">The default language will be used as a source for all other language strings.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Standardna rěč so jako žórło za znamješkowe rjećazki wšěch druhich rěčow wužiwa.</ahelp>"
+
+#. bJz7U
+#: translation.xhp
+msgctxt ""
+"translation.xhp\n"
+"par_id5806756\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Add UI languages for your dialog strings.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Přidajće rěče wužiwarskeho powjercha za dialogowe znamješkowe rjećazki.</ahelp>"
+
+#. Aa3HD
+#: translation.xhp
+msgctxt ""
+"translation.xhp\n"
+"hd_id6596881\n"
+"help.text"
+msgid "To enable localizable dialogs"
+msgstr "Zo byšće lokalizujomne dialogi zmóžnił"
+
+#. uS4tc
+#: translation.xhp
+msgctxt ""
+"translation.xhp\n"
+"par_id8750572\n"
+"help.text"
+msgid "In the Basic IDE dialog editor, open the Language toolbar choosing <item type=\"menuitem\">View - Toolbars - Language</item>."
+msgstr "Wubjerće <item type=\"menuitem\">Napohlad – Symbolowe lajsty – Rěč</item>, zo byšće symbolowu lajstu Rěč w dialogowym editorje Basic IDE wočinił."
+
+#. df3mU
+#: translation.xhp
+msgctxt ""
+"translation.xhp\n"
+"par_id2224494\n"
+"help.text"
+msgid "If the current library already contains a localizable dialog, the Language toolbar is shown automatically."
+msgstr "Jeli aktualna biblioteka hižo lokalizujomny dialog wobsahuje, so symbolowa lajsta Rěč awtomatisce pokazuje."
+
+#. 8TG4p
+#: translation.xhp
+msgctxt ""
+"translation.xhp\n"
+"par_id7359233\n"
+"help.text"
+msgid "Click the <emph>Manage Languages</emph> icon<image id=\"img_id2526017\" src=\"cmd/sc_managelanguage.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id2526017\">Manage Language icon</alt></image> on the Language toolbar or on the Toolbox bar."
+msgstr "Klikńće na symbol <emph>Rěče rjadować</emph> <image id=\"img_id2526017\" src=\"cmd/sc_managelanguage.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id2526017\">Symbol Rěč rjadować</alt></image> na symbolowej lajsće Rěč abo w lajsće Nastroje."
+
+#. MHDVd
+#: translation.xhp
+msgctxt ""
+"translation.xhp\n"
+"par_id6549272\n"
+"help.text"
+msgid "You see the Manage User Interface Language dialog. The dialog manages languages for the current library. The name of the current library is shown on the title bar."
+msgstr "Widźiće dialog Rěče wužiwarskeho powjercha rjadować. Dialog rěče za aktualnu biblioteku rjaduje. Mjeno aktualneje biblioteki so w titulnej lajsće pokazuje."
+
+#. AbvXT
+#: translation.xhp
+msgctxt ""
+"translation.xhp\n"
+"par_id6529740\n"
+"help.text"
+msgid "Click Add in the dialog to add a language entry."
+msgstr "Klikńće w dialogu na Přidać, zo byšće rěčny zapisk přidał."
+
+#. xFFkk
+#: translation.xhp
+msgctxt ""
+"translation.xhp\n"
+"par_id7811822\n"
+"help.text"
+msgid "This step enables all new dialogs to contain localizable string resources."
+msgstr "Tutón krok rěčne resursy za wšě nowe dialogi zmóžnja."
+
+#. 3FvoR
+#: translation.xhp
+msgctxt ""
+"translation.xhp\n"
+"par_id9121982\n"
+"help.text"
+msgid "The first time you click Add, you see the Set Default User Interface Language dialog. The following times you click Add, this dialog has the name Add User Interface Language."
+msgstr "Prěni raz, hdyž na Přidać klikaće, budźeće dialog Standardnu rěč wužiwarskeho powjercha nastajić. Přichodne razy, hdyž na Přidać klikaće, tutón dialog mjeno Rěč za wužiwarski powjerch přidać změje."
+
+#. iPpFn
+#: translation.xhp
+msgctxt ""
+"translation.xhp\n"
+"par_id3640247\n"
+"help.text"
+msgid "You can also change the default language in the Manage User Interface Language dialog."
+msgstr "Móžeće tež standardnu rěč w dialogu Rěče wužiwarskeho powjercha rjadować změnić."
+
+#. LBJMN
+#: translation.xhp
+msgctxt ""
+"translation.xhp\n"
+"par_id3808404\n"
+"help.text"
+msgid "Select a language."
+msgstr "Wubjerće rěč."
+
+#. EzFFM
+#: translation.xhp
+msgctxt ""
+"translation.xhp\n"
+"par_id4585100\n"
+"help.text"
+msgid "This adds string resources to contain the translated versions of all strings to the dialog properties. The set of dialog strings of the default language is copied to the new set of strings. Later, you can switch to the new language and then translate the strings."
+msgstr "To rěčne resursy, kotrež přełožene wersije wšěch znamješkowych rjećazkow wobsahuja, dialogowym kajkosćam přidawa. Sadźba dialogowych znamješkowych rjećazkow standardneje rěče so do noweje sadźby znamješkowych rjećazkow kopěruje. Pozdźišo móžeće k nowej rěči přeńć a potom znamješkowe rjećazki přełožić."
+
+#. cfjJ8
+#: translation.xhp
+msgctxt ""
+"translation.xhp\n"
+"par_id2394482\n"
+"help.text"
+msgid "Close the dialog or add additional languages."
+msgstr "Začińće dialog abo přidajće přidatne rěče."
+
+#. B5tJ2
+#: translation.xhp
+msgctxt ""
+"translation.xhp\n"
+"hd_id631733\n"
+"help.text"
+msgid "To edit localizable controls in your dialog"
+msgstr "Zo byšće lokalizujomne wodźenske elementy w swojim dialogu wobdźěłował"
+
+#. hrvxW
+#: translation.xhp
+msgctxt ""
+"translation.xhp\n"
+"par_id2334665\n"
+"help.text"
+msgid "Once you have added the resources for localizable strings in your dialogs, you can select the current language from the Current Language listbox on the Language toolbar."
+msgstr "Hdyž sće w swojich dialogach rěčne resursy přidał, móžeće aktualnu rěč z lisćinoweho pola Aktualna rěč na symbolowej lajsće wubrać."
+
+#. igvyu
+#: translation.xhp
+msgctxt ""
+"translation.xhp\n"
+"par_id8956572\n"
+"help.text"
+msgid "Switch the Current Language listbox to display the default language."
+msgstr "Wubjerće standardnu rěč w lisćinowym polu Aktualna rěč."
+
+#. N6mRS
+#: translation.xhp
+msgctxt ""
+"translation.xhp\n"
+"par_id500808\n"
+"help.text"
+msgid "Insert any number of controls to your dialog and enter all strings you want."
+msgstr "Zasadźće někajkužkuli ličbu wodźenskich elementow do swojeho dialoga a zapodajće wšě požadane znamješkowe rjećazki."
+
+#. CWNb6
+#: translation.xhp
+msgctxt ""
+"translation.xhp\n"
+"par_id8366649\n"
+"help.text"
+msgid "Select another language in the Current Language listbox."
+msgstr "Wubjerće druhu rěč w lisćinowym polu Aktualna rěč."
+
+#. x82BH
+#: translation.xhp
+msgctxt ""
+"translation.xhp\n"
+"par_id476393\n"
+"help.text"
+msgid "Using the control's property dialogs, edit all strings to the other language."
+msgstr "Wužiwajće dialogi Kajkosće wodźenskeho elementa, zo byšće wšě znamješkowe rjećazki w druhej rěči wobdźěłował."
+
+#. C5qAe
+#: translation.xhp
+msgctxt ""
+"translation.xhp\n"
+"par_id2655720\n"
+"help.text"
+msgid "Repeat for all languages that you added."
+msgstr "Wospjetujće to za wšě rěče, kotrež sće přidał."
+
+#. GXnCr
+#: translation.xhp
+msgctxt ""
+"translation.xhp\n"
+"par_id3682058\n"
+"help.text"
+msgid "The user of your dialog will see the strings of the user interface language of the user's version of %PRODUCTNAME, if you did provide strings in that language."
+msgstr "Wužiwar wašeho dialoga budźe znamješkowe rjećazki rěče wužiwarskeho powjercha wersije %PRODUCTNAME wužiwarja widźeć, jeli sće znamješkowe rjećazki w tutej rěči k dispoziciji stajił."
+
+#. BGLJn
+#: translation.xhp
+msgctxt ""
+"translation.xhp\n"
+"par_id5977965\n"
+"help.text"
+msgid "If no language matches the user's version, the user will see the default language strings."
+msgstr "Jeli žana rěč wersiji wužiwarja wotpowěduje, budźe wužiwar znamješkowe rjećazki standardneje rěče widźeć."
+
+#. ckw8S
+#: translation.xhp
+msgctxt ""
+"translation.xhp\n"
+"par_id3050325\n"
+"help.text"
+msgid "If the user has an older version of %PRODUCTNAME that does not know localizable string resources for Basic dialogs, the user will see the default language strings."
+msgstr "Jeli wužiwar staršu wersiju %PRODUCTNAME wužiwa, kotraž rěčne resursy za dialogi Basic njeznaje, budźe wužiwar znamješkowe rjećazki standardneje rěče widźeć."
diff --git a/source/hsb/helpcontent2/source/text/sbasic/python.po b/source/hsb/helpcontent2/source/text/sbasic/python.po
new file mode 100644
index 00000000000..9965063b11d
--- /dev/null
+++ b/source/hsb/helpcontent2/source/text/sbasic/python.po
@@ -0,0 +1,3679 @@
+#. extracted from helpcontent2/source/text/sbasic/python
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2022-10-10 13:35+0200\n"
+"PO-Revision-Date: 2022-08-10 13:23+0000\n"
+"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
+"Language-Team: Upper Sorbian <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicpython/hsb/>\n"
+"Language: hsb\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#. naSFZ
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Python Scripts"
+msgstr "Skripty w rěči Python"
+
+#. 9RJv6
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"bm_id491543348147708\n"
+"help.text"
+msgid "<bookmark_value>macros;Python scripts</bookmark_value> <bookmark_value>Python;macros</bookmark_value> <bookmark_value>scripts;Python</bookmark_value>"
+msgstr ""
+
+#. vAoRU
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"hd_id3154232\n"
+"help.text"
+msgid "<variable id=\"pythonscriptshelp\"><link href=\"text/sbasic/python/main0000.xhp\" name=\"mainpython\">%PRODUCTNAME Python Scripts Help</link></variable>"
+msgstr ""
+
+#. snE38
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"par_id3153894\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=\"https://api.libreoffice.org/\" name=\"api.libreoffice.org\">https://api.libreoffice.org</link>"
+msgstr ""
+
+#. 9EUoJ
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"par_id3147226\n"
+"help.text"
+msgid "This help section explains the most common Python script functions for %PRODUCTNAME. For more in-depth information please refer to the <link href=\"https://wiki.documentfoundation.org/Macros/Python_Design_Guide\" name=\"wiki.documentfoundation.org PYTHON Guide\">Designing & Developing Python Applications</link> on the Wiki."
+msgstr ""
+
+#. FjaiD
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"hd_id3146957\n"
+"help.text"
+msgid "Working with Python Scripts in %PRODUCTNAME"
+msgstr ""
+
+#. mQFKb
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"N0102\n"
+"help.text"
+msgid "You can execute Python scripts choosing <menuitem>Tools - Macros - Run Macro</menuitem>. Editing scripts can be done with your preferred text editor. Python scripts are present in various locations detailed hereafter. You can refer to Programming examples for macros illustrating how to run the Python interactive console from %PRODUCTNAME."
+msgstr ""
+
+#. nytCF
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"par_id131568902936659\n"
+"help.text"
+msgid "The %PRODUCTNAME scripting framework for Python is optional on some GNU/Linux distributions. If it is installed, selecting <menuitem>Tools - Macros - Run Macro</menuitem> and checking <literal>Application Macros</literal> for the presence of <literal>HelloWorld – HelloWorldPython</literal> macro is sufficient. If absent, please refer to your distribution documentation in order to install the %PRODUCTNAME scripting framework for Python."
+msgstr ""
+
+#. STRqN
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"hd_id901655365903313\n"
+"help.text"
+msgid "%PRODUCTNAME Python Modules"
+msgstr ""
+
+#. XUBsA
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"par_id21655367848705\n"
+"help.text"
+msgid "<link href=\"text/sbasic/python/python_screen.xhp\" name=\"msgbox module\"><literal>msgbox</literal> module</link>"
+msgstr ""
+
+#. 9tiEm
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"par_id801655368030968\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03/lib_ScriptForge.xhp\" name=\"scriptforge module\"><literal>scriptforge</literal> module</link>"
+msgstr ""
+
+#. GBraq
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"par_id12655637848750\n"
+"help.text"
+msgid "<link href=\"text/sbasic/python/python_programming.xhp#uno\" name=\"uno module\"><literal>uno</literal> module</link>"
+msgstr ""
+
+#. naZBV
+#: python_2_basic.xhp
+msgctxt ""
+"python_2_basic.xhp\n"
+"tit\n"
+"help.text"
+msgid "Python to Basic"
+msgstr ""
+
+#. dkYtk
+#: python_2_basic.xhp
+msgctxt ""
+"python_2_basic.xhp\n"
+"N0330\n"
+"help.text"
+msgid "<bookmark_value>Python;Calling Basic</bookmark_value> <bookmark_value>ParamArray</bookmark_value>"
+msgstr ""
+
+#. rGfKE
+#: python_2_basic.xhp
+msgctxt ""
+"python_2_basic.xhp\n"
+"N0331\n"
+"help.text"
+msgid "<variable id=\"py2ba_h1\"><link href=\"text/sbasic/python/python_2_basic.xhp\" name=\"Calling Basic macros from Python\">Calling Basic Macros from Python</link></variable>"
+msgstr ""
+
+#. XzJcA
+#: python_2_basic.xhp
+msgctxt ""
+"python_2_basic.xhp\n"
+"N0332\n"
+"help.text"
+msgid "You can call %PRODUCTNAME Basic macros from Python scripts, and notable features can be obtained in return such as:"
+msgstr ""
+
+#. ehCg3
+#: python_2_basic.xhp
+msgctxt ""
+"python_2_basic.xhp\n"
+"N0333\n"
+"help.text"
+msgid "Simple logging facilities out of <literal>Access2Base</literal> library Trace console,"
+msgstr ""
+
+#. HhDdS
+#: python_2_basic.xhp
+msgctxt ""
+"python_2_basic.xhp\n"
+"N0334\n"
+"help.text"
+msgid "<literal>InputBox</literal> and <literal>MsgBox</literal> screen I/O functions based on Basic to ease Python development,"
+msgstr ""
+
+#. DzFBB
+#: python_2_basic.xhp
+msgctxt ""
+"python_2_basic.xhp\n"
+"N0335\n"
+"help.text"
+msgid "<literal>Xray</literal> calls interrupting Python script execution to help inspect variables."
+msgstr ""
+
+#. fDXhz
+#: python_2_basic.xhp
+msgctxt ""
+"python_2_basic.xhp\n"
+"N0336\n"
+"help.text"
+msgid "The %PRODUCTNAME Application Programming Interface (API) Scripting Framework supports inter-language script execution between Python and Basic, or other supported programming languages for that matter. Arguments can be passed back and forth across calls, provided that they represent primitive data types that both languages recognize, and assuming that the Scripting Framework converts them appropriately."
+msgstr ""
+
+#. Gn9Bv
+#: python_2_basic.xhp
+msgctxt ""
+"python_2_basic.xhp\n"
+"N0337\n"
+"help.text"
+msgid "It is recommended to have knowledge of Python standard modules and %PRODUCTNAME API features prior to perform inter-language calls from Python to Basic, JavaScript or any other script engine."
+msgstr ""
+
+#. Sffwq
+#: python_2_basic.xhp
+msgctxt ""
+"python_2_basic.xhp\n"
+"N0338\n"
+"help.text"
+msgid "When running Python scripts from an Integrated Development Environment (IDE), the %PRODUCTNAME-embedded Basic engine may be absent. Avoid Python-to-%PRODUCTNAME Basic calls in such contexts. However Python environment and Universal Networks Objects (UNO) are fully available. Refer to <link href=\"text/sbasic/python/python_ide.xhp\" name=\"Setting Up an Integrated IDE for Python\">Setting Up an Integrated IDE for Python</link> for more information."
+msgstr ""
+
+#. NcuDF
+#: python_2_basic.xhp
+msgctxt ""
+"python_2_basic.xhp\n"
+"N0339\n"
+"help.text"
+msgid "Retrieving %PRODUCTNAME Basic Scripts"
+msgstr ""
+
+#. yiTqz
+#: python_2_basic.xhp
+msgctxt ""
+"python_2_basic.xhp\n"
+"N0340\n"
+"help.text"
+msgid "%PRODUCTNAME Basic macros can be personal, shared, or embedded in documents. In order to execute them, Python run time needs to be provided with Basic macro locations. Implementing the <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1script_1_1provider_1_1XScript.html\" name=\"XScriptProvider interface\">com.sun.star.script.provider.XScriptProvider</link> interface allows the retrieval of executable scripts:"
+msgstr ""
+
+#. w4UAs
+#: python_2_basic.xhp
+msgctxt ""
+"python_2_basic.xhp\n"
+"N0341\n"
+"help.text"
+msgid "<bookmark_value>API;script.provider.MasterScriptProviderFactory: Retrieving Basic scripts</bookmark_value><bookmark_value>API;script.provider.XScript: Executing Basic scripts</bookmark_value><bookmark_value>API;XScriptProvider: Retrieving Basic scripts</bookmark_value>"
+msgstr ""
+
+#. iu5YW
+#: python_2_basic.xhp
+msgctxt ""
+"python_2_basic.xhp\n"
+"N0347\n"
+"help.text"
+msgid "'''Grab Basic script object before invocation.'''"
+msgstr ""
+
+#. PnPTm
+#: python_2_basic.xhp
+msgctxt ""
+"python_2_basic.xhp\n"
+"N0363\n"
+"help.text"
+msgid "Executing %PRODUCTNAME Basic Scripts"
+msgstr ""
+
+#. GNDbf
+#: python_2_basic.xhp
+msgctxt ""
+"python_2_basic.xhp\n"
+"N0364ndx\n"
+"help.text"
+msgid "<bookmark_value>API;script.provider.XScript : Executing Basic scripts</bookmark_value>"
+msgstr ""
+
+#. 7BfDh
+#: python_2_basic.xhp
+msgctxt ""
+"python_2_basic.xhp\n"
+"N0364\n"
+"help.text"
+msgid "The %PRODUCTNAME Software Development Kit (SDK) documentation for <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1script_1_1provider_1_1XScript.html#a11a551f5a2520f74c5109cd8c9f8c7b7\" name=\"XScript interface\">com.sun.star.script.provider.XScript</link> interface details the calling convention for inter-language calls. Invocation of functions requires three arrays:"
+msgstr ""
+
+#. UDhtt
+#: python_2_basic.xhp
+msgctxt ""
+"python_2_basic.xhp\n"
+"N0365\n"
+"help.text"
+msgid "the first lists the arguments of the called routine"
+msgstr ""
+
+#. A9CMY
+#: python_2_basic.xhp
+msgctxt ""
+"python_2_basic.xhp\n"
+"N0366\n"
+"help.text"
+msgid "the second identifies modified arguments"
+msgstr ""
+
+#. v3GcD
+#: python_2_basic.xhp
+msgctxt ""
+"python_2_basic.xhp\n"
+"N0367\n"
+"help.text"
+msgid "the third stores the return values"
+msgstr ""
+
+#. TeGwy
+#: python_2_basic.xhp
+msgctxt ""
+"python_2_basic.xhp\n"
+"N0368\n"
+"help.text"
+msgid "Python Syntax"
+msgstr ""
+
+#. oWBhX
+#: python_2_basic.xhp
+msgctxt ""
+"python_2_basic.xhp\n"
+"N0372\n"
+"help.text"
+msgid "Examples of Personal or Shared Scripts"
+msgstr ""
+
+#. nyNGG
+#: python_2_basic.xhp
+msgctxt ""
+"python_2_basic.xhp\n"
+"N0373\n"
+"help.text"
+msgid "Examples in <link href=\"text/sbasic/python/python_screen.xhp\" name=\"Input/Output to Screen\">Input/Output to Screen</link> detail Python to Basic invocation calls. <link href=\"text/sbasic/python/python_document_events.xhp\" name=\"Monitoring Document Events\">Monitoring Document Events</link> illustrates the usage of *args Python idiom to print a variable number of parameters to <literal>Access2Base</literal> logging console dialog."
+msgstr ""
+
+#. dt25D
+#: python_2_basic.xhp
+msgctxt ""
+"python_2_basic.xhp\n"
+"N0374\n"
+"help.text"
+msgid "At time of development you can interrupt Python script execution using <link href=\"https://berma.pagesperso-orange.fr/index2.html\" name=\"Xray extension\">Xray extension</link> in order to inspect properties and methods of UNO objects. The APSO extension debugger allows object introspection using either Xray either MRI extensions."
+msgstr ""
+
+#. F8dF9
+#: python_2_basic.xhp
+msgctxt ""
+"python_2_basic.xhp\n"
+"N0378\n"
+"help.text"
+msgid "Examples of Embedded Scripts in Documents"
+msgstr ""
+
+#. EmqHD
+#: python_2_basic.xhp
+msgctxt ""
+"python_2_basic.xhp\n"
+"N0379\n"
+"help.text"
+msgid "<literal>*args</literal>Python simplified syntax can be used in conjunction with %PRODUCTNAME Basic routines that accept a variable number of arguments. Below <literal>Print</literal> and <literal>SUM</literal> Python functions call their Basic <literal>Print</literal> and <literal>SUM</literal> counterparts, using aforementioned <literal>getBasicScript</literal> function. Exception handling is not detailed."
+msgstr ""
+
+#. ej8XP
+#: python_2_basic.xhp
+msgctxt ""
+"python_2_basic.xhp\n"
+"N0384\n"
+"help.text"
+msgid "\"\"\"Outputs the specified strings or numeric expressions in a dialog box.\"\"\""
+msgstr ""
+
+#. RJuGD
+#: python_2_basic.xhp
+msgctxt ""
+"python_2_basic.xhp\n"
+"N0389\n"
+"help.text"
+msgid "\"\"\"SUM the specified number expression.\"\"\""
+msgstr ""
+
+#. aPmSn
+#: python_2_basic.xhp
+msgctxt ""
+"python_2_basic.xhp\n"
+"N0402\n"
+"help.text"
+msgid "The %PRODUCTNAME Basic <literal>Print</literal> and <literal>SUM</literal> document-based routines accept a variable number of arguments. The <literal>Private</literal> or <literal>Public</literal> attributes have no effect. The arguments type checking is skipped for clarity."
+msgstr ""
+
+#. jHUxq
+#: python_2_basic.xhp
+msgctxt ""
+"python_2_basic.xhp\n"
+"N0407\n"
+"help.text"
+msgid "''' Print item list of variable number '''"
+msgstr ""
+
+#. 3pFAj
+#: python_2_basic.xhp
+msgctxt ""
+"python_2_basic.xhp\n"
+"N0408\n"
+"help.text"
+msgid "' all CStr() convertible args are accepted"
+msgstr ""
+
+#. G9n5d
+#: python_2_basic.xhp
+msgctxt ""
+"python_2_basic.xhp\n"
+"N0419\n"
+"help.text"
+msgid "''' SUM a variable list of numbers '''"
+msgstr ""
+
+#. CDJo4
+#: python_dialogs.xhp
+msgctxt ""
+"python_dialogs.xhp\n"
+"tit\n"
+"help.text"
+msgid "Opening a Dialog with Python"
+msgstr ""
+
+#. XWAwA
+#: python_dialogs.xhp
+msgctxt ""
+"python_dialogs.xhp\n"
+"N0334\n"
+"help.text"
+msgid "<bookmark_value>Python;dialogs</bookmark_value> <bookmark_value>dialog box;Python</bookmark_value> <bookmark_value>dialogs;Python</bookmark_value>"
+msgstr ""
+
+#. rXdUF
+#: python_dialogs.xhp
+msgctxt ""
+"python_dialogs.xhp\n"
+"N0336\n"
+"help.text"
+msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog with Python</link></variable>"
+msgstr ""
+
+#. MZJA9
+#: python_dialogs.xhp
+msgctxt ""
+"python_dialogs.xhp\n"
+"N0337\n"
+"help.text"
+msgid "%PRODUCTNAME static dialogs are created with the <link href=\"text/sbasic/guide/create_dialog.xhp\" name=\"dialog editor\">Dialog editor</link> and are stored in varying places according to their personal (My Macros), shared (Application Macros) or document-embedded nature. In reverse, dynamic dialogs are constructed at runtime, from Basic or Python scripts, or using any other <link href=\"text/shared/guide/scripting.xhp\">%PRODUCTNAME supported language</link> for that matter. Opening static dialogs with Python is illustrated herewith. Exception handling and internationalization are omitted for clarity."
+msgstr ""
+
+#. AbdfS
+#: python_dialogs.xhp
+msgctxt ""
+"python_dialogs.xhp\n"
+"N0338\n"
+"help.text"
+msgid "My Macros or Application Macros dialogs"
+msgstr ""
+
+#. pcUEy
+#: python_dialogs.xhp
+msgctxt ""
+"python_dialogs.xhp\n"
+"N0339\n"
+"help.text"
+msgid "The examples below open <literal>Access2Base Trace</literal> console or the imported <literal>TutorialsDialog</literal> dialog with <menuitem>Tools - Macros - Run Macro</menuitem> menu:"
+msgstr ""
+
+#. ChW9B
+#: python_dialogs.xhp
+msgctxt ""
+"python_dialogs.xhp\n"
+"N0364\n"
+"help.text"
+msgid "Document embedded dialogs"
+msgstr ""
+
+#. uHH6H
+#: python_dialogs.xhp
+msgctxt ""
+"python_dialogs.xhp\n"
+"N0365\n"
+"help.text"
+msgid "The example below opens a newly edited <literal>Dialog1</literal> dialog from a document with <menuitem>Tools - Macros - Run Macro</menuitem> menu:"
+msgstr ""
+
+#. mMo7w
+#: python_dialogs.xhp
+msgctxt ""
+"python_dialogs.xhp\n"
+"N0370\n"
+"help.text"
+msgid "\"\"\" Display a doc-based dialog \"\"\""
+msgstr ""
+
+#. txExG
+#: python_dialogs.xhp
+msgctxt ""
+"python_dialogs.xhp\n"
+"N0381\n"
+"help.text"
+msgid "Refer to <literal>msgbox.py</literal> in <literal>{installation}/program/</literal> directory for Python dynamic dialog examples."
+msgstr ""
+
+#. zNyQB
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"tit\n"
+"help.text"
+msgid "Monitoring Document Events"
+msgstr ""
+
+#. GyBAT
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"N0526\n"
+"help.text"
+msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>API;document.DocumentEvent: Monitoring Document Event</bookmark_value> <bookmark_value>API;document.XDocumentEventBroadcaster: Monitoring Document Event</bookmark_value> <bookmark_value>API;document.XDocumentEventListener: Monitoring Document Event</bookmark_value> <bookmark_value>API;lang.EventObject: Monitoring Document Event</bookmark_value>"
+msgstr ""
+
+#. D6i78
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"N0527\n"
+"help.text"
+msgid "<variable id=\"pythonmonitor\"><link href=\"text/sbasic/python/python_document_events.xhp\" name=\"Monitoring Document Events\">Listening to Document Events</link></variable>"
+msgstr ""
+
+#. 9kSGW
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"par_id641630582314861\n"
+"help.text"
+msgid "Listening to document events can help in the following situations:"
+msgstr ""
+
+#. NEQoZ
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"par_id431630582396327\n"
+"help.text"
+msgid "Identify a new document at opening time, as opposed to existing ones, and perform a dedicated setup."
+msgstr ""
+
+#. Tror9
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"par_id461630582396782\n"
+"help.text"
+msgid "Control the processing of document save, document copy, print or mailmerge requests."
+msgstr ""
+
+#. xrRHB
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"par_id631630582394790\n"
+"help.text"
+msgid "Recalculate table of contents, indexes or table entries of a Writer document when document is going to be closed"
+msgstr ""
+
+#. fCNvj
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"par_id601630582398998\n"
+"help.text"
+msgid "Import math Python packages before opening a Calc document. Release these packages when the document closes."
+msgstr ""
+
+#. bXprs
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"N0528\n"
+"help.text"
+msgid "Next to <link href=\"text/sbasic/shared/01040000.xhp\" name=\"assigning macros to events\">assigning macros to events</link>, one can monitor events raised by %PRODUCTNAME documents. Application Programming Interface (API) broadcasters are responsible for calling event scripts. Unlike listeners that require to define all supported methods, even if unused, document monitors require only two methods next to hooked event scripts."
+msgstr ""
+
+#. 6j5Bu
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"N0529\n"
+"help.text"
+msgid "Monitoring Document Events"
+msgstr ""
+
+#. VwSwW
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"N0530\n"
+"help.text"
+msgid "Monitoring is illustrated herewith for Basic and Python languages using object-oriented programming. Assigning <literal>OnLoad</literal> script, to the <menuitem>Open Document</menuitem> event, suffices to initiate and terminate document event monitoring. <menuitem>Tools - Customize</menuitem> menu <menuitem>Events</menuitem> tab is used to assign either scripts."
+msgstr ""
+
+#. KgWvt
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"N0531\n"
+"help.text"
+msgid "Intercepting events helps setting scripts pre- and post-conditions such as loading and unloading libraries or track script processing in the background. <literal>Access2Base.Trace</literal> module usage is illustrating that second context."
+msgstr ""
+
+#. BG7Xs
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"N0532\n"
+"help.text"
+msgid "With Python"
+msgstr ""
+
+#. B4G2y
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"bm_id721622446590963\n"
+"help.text"
+msgid "<bookmark_value>API;frame.Desktop: Monitoring Document Event</bookmark_value> <bookmark_value>API;script.provider.MasterScriptProviderFactory: Monitoring Document Event</bookmark_value> <bookmark_value>API;script.provider.XScript: Monitoring Document Event</bookmark_value>"
+msgstr ""
+
+#. eGKkK
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"N0533\n"
+"help.text"
+msgid "Events monitoring starts from object instantiation and ultimately stops when Python releases the object. Raised events are reported using <literal>Access2Base</literal> console."
+msgstr ""
+
+#. mCDwK
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"N0534\n"
+"help.text"
+msgid "<literal>OnLoad</literal> and <literal>OnUnload</literal> events can be used to respectively set and unset Python programs path. They are described as <menuitem>Open document</menuitem> and <menuitem>Document closed</menuitem>."
+msgstr ""
+
+#. i7waD
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"N0544\n"
+"help.text"
+msgid "\"\"\" Monitor document events \"\"\""
+msgstr ""
+
+#. 4k7DQ
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"N0546\n"
+"help.text"
+msgid "adapted from 'Python script to monitor OnSave event' at"
+msgstr ""
+
+#. AMBQD
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"N0550\n"
+"help.text"
+msgid "\"\"\" Document events monitor \"\"\""
+msgstr ""
+
+#. FNyTn
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"N0551\n"
+"help.text"
+msgid "''' report using Access2Base.Trace console OR"
+msgstr ""
+
+#. ops87
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"N0552\n"
+"help.text"
+msgid "report in 1st sheet, 1st column for Calc docs '''"
+msgstr ""
+
+#. SUrHQ
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"N0558\n"
+"help.text"
+msgid "#self.row = 0 # uncomment for Calc documents only"
+msgstr ""
+
+#. bdxDG
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"N0560\n"
+"help.text"
+msgid "self.listen() # Start monitoring doc. events"
+msgstr ""
+
+#. 8tXZv
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"N0569\n"
+"help.text"
+msgid "\"\"\" Output doc. events on 1st column of a Calc spreadsheet \"\"\""
+msgstr ""
+
+#. HEByB
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"N0575\n"
+"help.text"
+msgid "def listen(self, *args): # OnLoad/OnNew at the earliest"
+msgstr ""
+
+#. eq9UC
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"N0576\n"
+"help.text"
+msgid "\"\"\" Start doc. events monitoring \"\"\""
+msgstr ""
+
+#. o7xSw
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"N0578\n"
+"help.text"
+msgid "Console.log(\"INFO\", \"Document events are being logged\", True)"
+msgstr ""
+
+#. jnyCD
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"N0580\n"
+"help.text"
+msgid "def sleep(self, *args): # OnUnload at the latest (optional)"
+msgstr ""
+
+#. QiSAD
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"N0581\n"
+"help.text"
+msgid "\"\"\" Stop doc. events monitoring \"\"\""
+msgstr ""
+
+#. TyiYD
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"N0583\n"
+"help.text"
+msgid "Console.log(\"INFO\", \"Document events have been logged\", True)"
+msgstr ""
+
+#. utJGT
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"N0587\n"
+"help.text"
+msgid "\"\"\" Intercepts all doc. events \"\"\""
+msgstr ""
+
+#. Xwnsi
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"N0588\n"
+"help.text"
+msgid "#self.setCell(event.Source, event.EventName) # only for Calc docs"
+msgstr ""
+
+#. rE9Ep
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"N0595\n"
+"help.text"
+msgid "\"\"\" Release all activities \"\"\""
+msgstr ""
+
+#. XaEoP
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"N0601\n"
+"help.text"
+msgid "def OnLoad(*args): # 'Open Document' event"
+msgstr ""
+
+#. PmjAB
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"N0602\n"
+"help.text"
+msgid "listener = UiDocument() # Initiates listening"
+msgstr ""
+
+#. CkJg4
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"N0604\n"
+"help.text"
+msgid "def OnUnload(*args): # 'Document has been closed' event"
+msgstr ""
+
+#. KobNT
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"N0605\n"
+"help.text"
+msgid "pass # (optional) performed when disposed"
+msgstr ""
+
+#. xPosR
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"N0613\n"
+"help.text"
+msgid "(Back/Fore)ground console to report/log program execution."
+msgstr ""
+
+#. Qph5m
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"N0617\n"
+"help.text"
+msgid "\"\"\" Print free item list to console \"\"\""
+msgstr ""
+
+#. nzjHS
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"N0622\n"
+"help.text"
+msgid "\"\"\" Append log message to console, optional user prompt \"\"\""
+msgstr ""
+
+#. HDXPV
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"N0627\n"
+"help.text"
+msgid "\"\"\" Set log messages lower limit \"\"\""
+msgstr ""
+
+#. fXnMH
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"N0632\n"
+"help.text"
+msgid "\"\"\" Display console content/dialog \"\"\""
+msgstr ""
+
+#. mPJ3B
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"N0638\n"
+"help.text"
+msgid "''' Grab application-based Basic script '''"
+msgstr ""
+
+#. 2dfeg
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"N0647\n"
+"help.text"
+msgid "Mind the misspelled <literal>documentEventOccured</literal> method that inherits a typo from %PRODUCTNAME Application Programming Interface (API)."
+msgstr ""
+
+#. qNVD4
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"N0648\n"
+"help.text"
+msgid "<menuitem>Start application</menuitem> and <menuitem>Close application</menuitem> events can respectively be used to set and to unset Python path for user scripts or %PRODUCTNAME scripts. In a similar fashion, document based Python libraries or modules can be loaded and released using <menuitem>Open document</menuitem> and <menuitem>Document closed</menuitem> events. Refer to <link href=\"text/sbasic/python/python_import.xhp\" name=\"Importing Python Modules\">Importing Python Modules</link> for more information."
+msgstr ""
+
+#. 8pHCg
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"N0649\n"
+"help.text"
+msgid "With %PRODUCTNAME Basic"
+msgstr ""
+
+#. QpCjq
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"bm_id591622446367707\n"
+"help.text"
+msgid "<bookmark_value>API;GlobalScope.BasicLibraries</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value>"
+msgstr ""
+
+#. D5Lsi
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"N0650\n"
+"help.text"
+msgid "Using <menuitem>Tools - Customize</menuitem> menu <menuitem>Events</menuitem> tab, the <menuitem>Open document</menuitem> event fires a <literal>ConsoleLogger</literal> initialisation. <literal>_documentEventOccured</literal> routine - set by <literal>ConsoleLogger</literal> - serves as a unique entry point to trap all document events."
+msgstr ""
+
+#. gGpkW
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"hd_id421630510141729\n"
+"help.text"
+msgid "controller.Events module"
+msgstr ""
+
+#. rJX92
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"bas_id431630567378062\n"
+"help.text"
+msgid "Global _obj As Object ' controller.ConsoleLogger instance"
+msgstr ""
+
+#. PfRq6
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"N0655\n"
+"help.text"
+msgid "Sub OnLoad(evt As com.sun.star.document.DocumentEvent) ' >> Open Document <<"
+msgstr ""
+
+#. p8RfU
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"bas_id371630509596674\n"
+"help.text"
+msgid "''' ConsoleLogger unique entry point '''"
+msgstr ""
+
+#. upGWH
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"hd_id721630511986813\n"
+"help.text"
+msgid "controller.ConsoleLogger class module"
+msgstr ""
+
+#. AN8tn
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"par_id901630509435225\n"
+"help.text"
+msgid "Events monitoring starts from the moment a <literal>ConsoleLogger</literal> object is instantiated and ultimately stops upon document closure. <literal>StartAdapter</literal> routine loads necessary Basic libraries, while caught events are reported using <literal>Access2Base.Trace</literal> module."
+msgstr ""
+
+#. 2jXHB
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"N0664\n"
+"help.text"
+msgid "' ADAPTER design pattern object to be instantiated in the \"Open Document\" event"
+msgstr ""
+
+#. ueeGx
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"N0666\n"
+"help.text"
+msgid "Private Const UI_NOPROMPT = False ' Set it to True to visualise documents events"
+msgstr ""
+
+#. EQG8C
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"N0674\n"
+"help.text"
+msgid "' MEMBERS"
+msgstr ""
+
+#. r5AkD
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"bas_id131630510956418\n"
+"help.text"
+msgid "Private _txtMsg As String ' text message to log in console"
+msgstr ""
+
+#. JaEhY
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"N0677\n"
+"help.text"
+msgid "' PROPERTIES"
+msgstr ""
+
+#. aGuEg
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"N0679\n"
+"help.text"
+msgid "''' System-dependent filename '''"
+msgstr ""
+
+#. kEEgf
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"N0686\n"
+"help.text"
+msgid "' METHODS"
+msgstr ""
+
+#. YMAtN
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"N0688\n"
+"help.text"
+msgid "''' Monitor document events '''"
+msgstr ""
+
+#. cBx2G
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"N0701\n"
+"help.text"
+msgid "''' Initialize document events logging '''"
+msgstr ""
+
+#. hxzE4
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"N0705\n"
+"help.text"
+msgid "Access2Base.Trace.TraceLog(\"INFO\", _txtMsg & \"Document events are being logged\", UI_PROMPT)"
+msgstr ""
+
+#. NkHa4
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"N0714\n"
+"help.text"
+msgid "''' Terminate document events logging '''"
+msgstr ""
+
+#. JEve4
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"N0717\n"
+"help.text"
+msgid "Access2Base.Trace.TraceLog(\"INFO\", _txtMsg & \"Document events have been logged\", UI_PROMPT)"
+msgstr ""
+
+#. GAD2E
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"N0719\n"
+"help.text"
+msgid "Access2Base.Trace.TraceConsole() ' Captured events dialog"
+msgstr ""
+
+#. X8Kdh
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"N0722\n"
+"help.text"
+msgid "' EVENTS"
+msgstr ""
+
+#. uVpJf
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"N0723\n"
+"help.text"
+msgid "' Your code for handled events goes here"
+msgstr ""
+
+#. AJJDf
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"N0724\n"
+"help.text"
+msgid "Mind the misspelled <literal>_documentEventOccured</literal> method that inherits a typo from %PRODUCTNAME Application Programming Interface (API)."
+msgstr ""
+
+#. b3qae
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"N0725\n"
+"help.text"
+msgid "Discovering Documents Events"
+msgstr ""
+
+#. Ys35P
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"bm_id681622445958242\n"
+"help.text"
+msgid "<bookmark_value>API;frame.GlobalEventBroadcaster: Monitoring Document Event</bookmark_value>"
+msgstr ""
+
+#. BDj9Q
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"N0726\n"
+"help.text"
+msgid "The broadcaster API object provides the list of events it is responsible for:"
+msgstr ""
+
+#. Z2BhT
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"N0727\n"
+"help.text"
+msgid "With Python"
+msgstr ""
+
+#. 8PCHK
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"N0734\n"
+"help.text"
+msgid "\"\"\" Display document events \"\"\""
+msgstr ""
+
+#. SECnV
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"N0736\n"
+"help.text"
+msgid "adapted from DisplayAvailableEvents() by A. Pitonyak"
+msgstr ""
+
+#. wXN8p
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"N0747\n"
+"help.text"
+msgid "The <link href=\"https://extensions.libreoffice.org/extensions/apso-alternative-script-organizer-for-python\" name=\"Alternative Python Script Organizer\">Alternative Python Script Organizer (APSO)</link> extension is used to render events information on screen."
+msgstr ""
+
+#. kgY8m
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"N0748\n"
+"help.text"
+msgid "With %PRODUCTNAME Basic"
+msgstr ""
+
+#. KjotC
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"N0750\n"
+"help.text"
+msgid "''' Display document events '''"
+msgstr ""
+
+#. upkPP
+#: python_examples.xhp
+msgctxt ""
+"python_examples.xhp\n"
+"tit\n"
+"help.text"
+msgid "Python examples"
+msgstr ""
+
+#. Etrfb
+#: python_examples.xhp
+msgctxt ""
+"python_examples.xhp\n"
+"bm_id20191031405\n"
+"help.text"
+msgid "<bookmark_value>Python;examples</bookmark_value> <bookmark_value>Python;shell</bookmark_value> <bookmark_value>Python;platform</bookmark_value> <bookmark_value>Python;session</bookmark_value> <bookmark_value>Python;screen input/output</bookmark_value>"
+msgstr ""
+
+#. 2vmkq
+#: python_examples.xhp
+msgctxt ""
+"python_examples.xhp\n"
+"hd_id201901031407\n"
+"help.text"
+msgid "<variable id=\"pythonexamples2\"><link href=\"text/sbasic/python/python_examples.xhp\" name=\"python examples\">Python programming examples</link></variable>"
+msgstr ""
+
+#. xkeov
+#: python_handler.xhp
+msgctxt ""
+"python_handler.xhp\n"
+"tit\n"
+"help.text"
+msgid "Creating A Dialog Handler"
+msgstr ""
+
+#. WeSDk
+#: python_handler.xhp
+msgctxt ""
+"python_handler.xhp\n"
+"N0664\n"
+"help.text"
+msgid "<bookmark_value>Basic;Dialog Handler</bookmark_value> <bookmark_value>Python;Dialog Handler</bookmark_value> <bookmark_value>Access2Base;dlgTrace</bookmark_value> <bookmark_value>Access2Base;_DumpToFile</bookmark_value> <bookmark_value>API;DialogProvider2</bookmark_value> <bookmark_value>API;XDialogEventHandler</bookmark_value>"
+msgstr ""
+
+#. MQUtw
+#: python_handler.xhp
+msgctxt ""
+"python_handler.xhp\n"
+"N0665\n"
+"help.text"
+msgid "<variable id=\"pythonhandler_h1\"><link href=\"text/sbasic/python/python_handler.xhp\" name=\"Creating a Dialog Handler\">Creating a Dialog Handler</link></variable>"
+msgstr ""
+
+#. AxGAd
+#: python_handler.xhp
+msgctxt ""
+"python_handler.xhp\n"
+"N0666\n"
+"help.text"
+msgid "Next to <link href=\"text/sbasic/shared/01040000.xhp\" name=\"Assigning macros to events\">assigning macros to events</link> or <link href=\"text/sbasic/basic/python/python_listener\" name=\"creating event listeners\">creating event listeners</link>, one can use dialog handlers, whose principle is to define UNO keywords, or methods, that are mapped to events to watch for. The event handler is responsible for executing methods using the <literal>vnd.sun.star.UNO:<method_name></literal> protocol. Unlike listeners that require to define all supported methods, even if unused, dialog handlers require only two methods on top of intended control hook scripts."
+msgstr ""
+
+#. Waa56
+#: python_handler.xhp
+msgctxt ""
+"python_handler.xhp\n"
+"N0667\n"
+"help.text"
+msgid "The advantages of this approach are:"
+msgstr ""
+
+#. bBbcE
+#: python_handler.xhp
+msgctxt ""
+"python_handler.xhp\n"
+"N0668\n"
+"help.text"
+msgid "It packs the code that handles event-driven macros,"
+msgstr ""
+
+#. NCGBC
+#: python_handler.xhp
+msgctxt ""
+"python_handler.xhp\n"
+"N0669\n"
+"help.text"
+msgid "it decorrelates events from macros names which facilitates maintenance or updates, in particular when moving macros or modules."
+msgstr ""
+
+#. WETAj
+#: python_handler.xhp
+msgctxt ""
+"python_handler.xhp\n"
+"N0670\n"
+"help.text"
+msgid "This mechanism is illustrated herewith for Basic and Python languages using an imported copy of <literal>Access2Base</literal> <literal>dlgTrace</literal> dialog. Exception handling and localisation are omitted for clarity."
+msgstr ""
+
+#. qfJEk
+#: python_handler.xhp
+msgctxt ""
+"python_handler.xhp\n"
+"N0671\n"
+"help.text"
+msgid "Assigning Dialog methods"
+msgstr ""
+
+#. 46GAC
+#: python_handler.xhp
+msgctxt ""
+"python_handler.xhp\n"
+"N0672\n"
+"help.text"
+msgid "Export <literal>Access2Base</literal> <literal>dlgTrace</literal> dialog and import it into <literal>MyLib</literal> application library."
+msgstr ""
+
+#. QKmBa
+#: python_handler.xhp
+msgctxt ""
+"python_handler.xhp\n"
+"N0673\n"
+"help.text"
+msgid "Inside the control properties pane of the <link href=\"text/sbasic/guide/create_dialog.xhp\" name=\"Dialog Editor\">Dialog Editor</link>, use the Events tab to replace macro assignments by component assignments, and type in the intended method names:"
+msgstr ""
+
+#. qNEVD
+#: python_handler.xhp
+msgctxt ""
+"python_handler.xhp\n"
+"N0674\n"
+"help.text"
+msgid "Set <literal>Dump to file</literal> dialog button component method name to <literal>_dump2File</literal>"
+msgstr ""
+
+#. t65Et
+#: python_handler.xhp
+msgctxt ""
+"python_handler.xhp\n"
+"N0675\n"
+"help.text"
+msgid "Optionally define <literal>txtTracelog</literal> key pressed and mouse button pressed events component method names as <literal>_openHelp</literal>"
+msgstr ""
+
+#. WMZBj
+#: python_handler.xhp
+msgctxt ""
+"python_handler.xhp\n"
+"N0676\n"
+"help.text"
+msgid "Optionally define <literal>Ok</literal> button receiving focus event component method name as <literal>onOkHasfocus</literal>"
+msgstr ""
+
+#. Joqhs
+#: python_handler.xhp
+msgctxt ""
+"python_handler.xhp\n"
+"N0677\n"
+"help.text"
+msgid "Events assigned actions should mention the <literal>vnd.sun.star.UNO:</literal> protocol."
+msgstr ""
+
+#. BTnaF
+#: python_handler.xhp
+msgctxt ""
+"python_handler.xhp\n"
+"N0678\n"
+"help.text"
+msgid "Creating the handler"
+msgstr ""
+
+#. nHvEi
+#: python_handler.xhp
+msgctxt ""
+"python_handler.xhp\n"
+"N0679\n"
+"help.text"
+msgid "<literal>createDialogWithHandler</literal> method of <link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1awt_1_1DialogProvider2.html\" name=\"com.sun.star.awt.DialogProvider2\">com.sun.star.awt.DialogProvider2</link> service is used to set the dialog and its handler. The handler is responsible for implementing <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1awt_1_1XDialogEventHandler.html\" name=\"com.sun.star.awt.XDialogEventHandler\">com.sun.star.awt.XDialogEventHandler</link> interface."
+msgstr ""
+
+#. 2CCEz
+#: python_handler.xhp
+msgctxt ""
+"python_handler.xhp\n"
+"N0680\n"
+"help.text"
+msgid "All component method names must be explicitly declared when using a dialog handler."
+msgstr ""
+
+#. kBAiZ
+#: python_handler.xhp
+msgctxt ""
+"python_handler.xhp\n"
+"N0681\n"
+"help.text"
+msgid "With Python"
+msgstr ""
+
+#. rUiYd
+#: python_handler.xhp
+msgctxt ""
+"python_handler.xhp\n"
+"N0682\n"
+"help.text"
+msgid "In this example the dialog is located on the computer."
+msgstr ""
+
+#. FyaBp
+#: python_handler.xhp
+msgctxt ""
+"python_handler.xhp\n"
+"N0692\n"
+"help.text"
+msgid "\"\"\" Access2Base Console Handler \"\"\""
+msgstr ""
+
+#. dugqK
+#: python_handler.xhp
+msgctxt ""
+"python_handler.xhp\n"
+"N0693\n"
+"help.text"
+msgid "''' adapted from « Créer un dialogue avec gestionnaire d'événements » by JM Zambon"
+msgstr ""
+
+#. 5Cysb
+#: python_handler.xhp
+msgctxt ""
+"python_handler.xhp\n"
+"N0716\n"
+"help.text"
+msgid "\"\"\" Create a Dialog from its location \"\"\""
+msgstr ""
+
+#. C9pNa
+#: python_handler.xhp
+msgctxt ""
+"python_handler.xhp\n"
+"N0729\n"
+"help.text"
+msgid "''' Ugly MsgBox '''"
+msgstr ""
+
+#. zcjmD
+#: python_handler.xhp
+msgctxt ""
+"python_handler.xhp\n"
+"N0740\n"
+"help.text"
+msgid "As expected, <literal>onOkHasFocus</literal> missing method throws an exception."
+msgstr ""
+
+#. 63rxz
+#: python_handler.xhp
+msgctxt ""
+"python_handler.xhp\n"
+"N0741\n"
+"help.text"
+msgid "Refer to <link href=\"text/sbasic/python/python_2_basic.xhp\" name=\"Python calls to %PRODUCTNAME Basic\">Python calls to %PRODUCTNAME Basic</link> page for <literal>getBasicScript</literal> routine description and for details about cross-language scripting execution."
+msgstr ""
+
+#. b6xGw
+#: python_handler.xhp
+msgctxt ""
+"python_handler.xhp\n"
+"N0742\n"
+"help.text"
+msgid "With %PRODUCTNAME Basic"
+msgstr ""
+
+#. 5N3MV
+#: python_handler.xhp
+msgctxt ""
+"python_handler.xhp\n"
+"N0743\n"
+"help.text"
+msgid "In this example the dialog is embedded in a document, and can equally be located on the computer."
+msgstr ""
+
+#. Ahwda
+#: python_handler.xhp
+msgctxt ""
+"python_handler.xhp\n"
+"N0751\n"
+"help.text"
+msgid "dp.Initialize(Array(ThisComponent)) ' if doc-embedded dialog"
+msgstr ""
+
+#. Cf88b
+#: python_handler.xhp
+msgctxt ""
+"python_handler.xhp\n"
+"N0958c\n"
+"help.text"
+msgid "method As String) As Boolean"
+msgstr ""
+
+#. j4aLN
+#: python_handler.xhp
+msgctxt ""
+"python_handler.xhp\n"
+"N0770\n"
+"help.text"
+msgid "'dialog.endDialog(1) if computer-based dialog"
+msgstr ""
+
+#. EBBRf
+#: python_handler.xhp
+msgctxt ""
+"python_handler.xhp\n"
+"N0779\n"
+"help.text"
+msgid "' adapted from « Créer un dialogue avec gestionnaire d'événements » by JM Zambon"
+msgstr ""
+
+#. NF93B
+#: python_handler.xhp
+msgctxt ""
+"python_handler.xhp\n"
+"N0781\n"
+"help.text"
+msgid "As expected, <literal>onOkHasFocus</literal> missing method throws an exception."
+msgstr ""
+
+#. 4RevF
+#: python_handler.xhp
+msgctxt ""
+"python_handler.xhp\n"
+"N0505\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03132000.xhp\" name=\"CreateUnoListener Function\">CreateUnoListener Function</link>"
+msgstr ""
+
+#. Ur3DA
+#: python_ide.xhp
+msgctxt ""
+"python_ide.xhp\n"
+"tit\n"
+"help.text"
+msgid "IDE for Python"
+msgstr ""
+
+#. ETCU9
+#: python_ide.xhp
+msgctxt ""
+"python_ide.xhp\n"
+"bm_id761543349138561\n"
+"help.text"
+msgid "<bookmark_value>APSO</bookmark_value> <bookmark_value>Alternative Python Scripts Organizer</bookmark_value> <bookmark_value>python;IDE - integrated development environment</bookmark_value> <bookmark_value>python;editor</bookmark_value>"
+msgstr ""
+
+#. cANSA
+#: python_ide.xhp
+msgctxt ""
+"python_ide.xhp\n"
+"hd_id151543348965464\n"
+"help.text"
+msgid "<variable id=\"pythonideh1\"><link href=\"text/sbasic/python/python_ide.xhp\" name=\"Python IDE Setup\">Setting up an Integrated Development Environment (IDE) for Python</link></variable>"
+msgstr ""
+
+#. k7syF
+#: python_ide.xhp
+msgctxt ""
+"python_ide.xhp\n"
+"par_id541543348965465\n"
+"help.text"
+msgid "Writing Python macros requires extra configuration steps to set an IDE of choice."
+msgstr ""
+
+#. NGxNi
+#: python_ide.xhp
+msgctxt ""
+"python_ide.xhp\n"
+"N0106\n"
+"help.text"
+msgid "Unlike Basic language macros development in %PRODUCTNAME, developing Python scripts for %PRODUCTNAME requires to configure an external Integrated Development Environment (IDE). Multiple IDEs are available that range from beginners to advanced Python coders. While using a Python IDE programmers benefit from numerous features such as syntax highlighting, code folding, class browsing, code completion, coding standard enforcement, test driven development, debugging, version control and many more. You can refer to <link href=\"https://wiki.documentfoundation.org/Macros/Python_Design_Guide\" name=\"Designing & Developing Python Applications\">Designing & Developing Python Applications</link> on the Wiki for more in-depth information about the setup of a bridge between your IDE and a running instance %PRODUCTNAME."
+msgstr ""
+
+#. u2xio
+#: python_ide.xhp
+msgctxt ""
+"python_ide.xhp\n"
+"hd_id761544698669786\n"
+"help.text"
+msgid "The APSO Extension"
+msgstr ""
+
+#. 4isF2
+#: python_ide.xhp
+msgctxt ""
+"python_ide.xhp\n"
+"N0104\n"
+"help.text"
+msgid "The <link href=\"https://extensions.libreoffice.org/extensions/apso-alternative-script-organizer-for-python\" name=\"Alternative Python Script Organizer (APSO)\">Alternative Python Script Organizer (APSO)</link> extension eases the edition of Python scripts, in particular when embedded in a document. Using APSO you can configure your preferred source code editor, start the integrated Python shell and debug Python scripts. Extensions exist that help inspect arbitrary UNO objects, refer to <link href=\"https://wiki.documentfoundation.org/Macros/Python_Design_Guide\" name=\"eDesigning & Developing Python Applications\">Designing & Developing Python Applications</link> for additional details on such extensions."
+msgstr ""
+
+#. 5E2EV
+#: python_import.xhp
+msgctxt ""
+"python_import.xhp\n"
+"tit\n"
+"help.text"
+msgid "Python : Importing Modules"
+msgstr ""
+
+#. gFTth
+#: python_import.xhp
+msgctxt ""
+"python_import.xhp\n"
+"N0461\n"
+"help.text"
+msgid "<bookmark_value>Python;import</bookmark_value> <bookmark_value>Python;Modules</bookmark_value> <bookmark_value>Python;pythonpath</bookmark_value> <bookmark_value>PythonLibraries</bookmark_value>"
+msgstr ""
+
+#. 5QqdJ
+#: python_import.xhp
+msgctxt ""
+"python_import.xhp\n"
+"N0462\n"
+"help.text"
+msgid "<variable id=\"pythonimporth1\"><link href=\"text/sbasic/python/python_import.xhp\" name=\"python imports\">Importing Python Modules</link></variable>"
+msgstr ""
+
+#. VHAM5
+#: python_import.xhp
+msgctxt ""
+"python_import.xhp\n"
+"N0463\n"
+"help.text"
+msgid "%PRODUCTNAME Python scripts come in three distinct flavors, they can be personal, shared or embedded in documents. They are stored in varying places described in <link href=\"text/sbasic/python/python_locations.xhp\">Python Scripts Organization and Location</link>. In order to import Python modules, their locations must be known from Python at run time."
+msgstr ""
+
+#. zMSfx
+#: python_import.xhp
+msgctxt ""
+"python_import.xhp\n"
+"N0464\n"
+"help.text"
+msgid "This mechanism is illustrated for file system based modules and document based modules. Exception handling is omitted for clarity. The terms library or directory, scripts or modules are used interchangeably. A Python macro refers to a function inside a module."
+msgstr ""
+
+#. GUdHS
+#: python_import.xhp
+msgctxt ""
+"python_import.xhp\n"
+"N0465\n"
+"help.text"
+msgid "Note that <literal><User Profile>/Scripts/python/pythonpath</literal> local directory is always explored when running a Python macro from <literal><User Profile>/Scripts/python</literal>."
+msgstr ""
+
+#. fyFof
+#: python_import.xhp
+msgctxt ""
+"python_import.xhp\n"
+"N0466\n"
+"help.text"
+msgid "File System module import"
+msgstr ""
+
+#. SRZgQ
+#: python_import.xhp
+msgctxt ""
+"python_import.xhp\n"
+"N0467\n"
+"help.text"
+msgid "User or Shared Modules"
+msgstr ""
+
+#. NAJzP
+#: python_import.xhp
+msgctxt ""
+"python_import.xhp\n"
+"N0468\n"
+"help.text"
+msgid "Personal & shared Python scripts can be imported once their directories are included in Python run time path. Refer to <link href=\"text/sbasic/python/python_session.xhp\">Getting session information</link> page for more details regarding omitted Session Class."
+msgstr ""
+
+#. A4v4U
+#: python_import.xhp
+msgctxt ""
+"python_import.xhp\n"
+"N0473\n"
+"help.text"
+msgid "user_lib = Session().UserPythonScripts # User scripts location"
+msgstr ""
+
+#. AAJUq
+#: python_import.xhp
+msgctxt ""
+"python_import.xhp\n"
+"N0475\n"
+"help.text"
+msgid "sys.path.insert(0, user_lib) # Add to search path"
+msgstr ""
+
+#. yFcur
+#: python_import.xhp
+msgctxt ""
+"python_import.xhp\n"
+"N0476\n"
+"help.text"
+msgid "import screen_io as ui # 'screen_io.py' module resides in user_lib directory"
+msgstr ""
+
+#. 6KtvD
+#: python_import.xhp
+msgctxt ""
+"python_import.xhp\n"
+"N0477\n"
+"help.text"
+msgid "# Your code follows here"
+msgstr ""
+
+#. G8bHh
+#: python_import.xhp
+msgctxt ""
+"python_import.xhp\n"
+"N0478\n"
+"help.text"
+msgid "This Python example exposes a local XSCRIPTCONTEXT variable to an imported module:"
+msgstr ""
+
+#. uwiPp
+#: python_import.xhp
+msgctxt ""
+"python_import.xhp\n"
+"N0483\n"
+"help.text"
+msgid "share_lib = Session.SharedPythonScripts() # Shared scripts location"
+msgstr ""
+
+#. HugAN
+#: python_import.xhp
+msgctxt ""
+"python_import.xhp\n"
+"N0485\n"
+"help.text"
+msgid "sys.path.insert(0, share_lib) # Add to search path"
+msgstr ""
+
+#. zGybv
+#: python_import.xhp
+msgctxt ""
+"python_import.xhp\n"
+"N0486\n"
+"help.text"
+msgid "from IDE_utils import ScriptContext # 'IDE_utils.py' sits with shared Python scripts."
+msgstr ""
+
+#. VoPZU
+#: python_import.xhp
+msgctxt ""
+"python_import.xhp\n"
+"N0488\n"
+"help.text"
+msgid "# Your code follows here"
+msgstr ""
+
+#. AH3MT
+#: python_import.xhp
+msgctxt ""
+"python_import.xhp\n"
+"N0489\n"
+"help.text"
+msgid "Installation Modules for Applications"
+msgstr ""
+
+#. VFZdV
+#: python_import.xhp
+msgctxt ""
+"python_import.xhp\n"
+"N0490\n"
+"help.text"
+msgid "Unlike personal and shared scripts, %PRODUCTNAME installation scripts can be imported any time. Next to <literal>uno</literal> & <literal>unohelper</literal> %PRODUCTNAME Python modules, other scripts present in <literal><installation_path>/program</literal> directory can be imported directly, such as the <literal>msgbox</literal> module."
+msgstr ""
+
+#. TnQ2j
+#: python_import.xhp
+msgctxt ""
+"python_import.xhp\n"
+"N0491\n"
+"help.text"
+msgid "With Python shell:"
+msgstr ""
+
+#. DDinb
+#: python_import.xhp
+msgctxt ""
+"python_import.xhp\n"
+"N0534\n"
+"help.text"
+msgid "Document Module Import"
+msgstr ""
+
+#. AUzGt
+#: python_import.xhp
+msgctxt ""
+"python_import.xhp\n"
+"N0535\n"
+"help.text"
+msgid "Importing a Python document embedded module is illustrated below. Error handling is not detailed. Python run time path is updated when document has been opened and before closure. Refer to <link href=\"text/sbasic/shared/01040000.xhp\">Event-Driven Macros</link> to learn how to associate Python macros to document events."
+msgstr ""
+
+#. APbCX
+#: python_import.xhp
+msgctxt ""
+"python_import.xhp\n"
+"N0541\n"
+"help.text"
+msgid "\"\"\" Prepare Python modules import when doc. loaded \"\"\""
+msgstr ""
+
+#. DJStg
+#: python_import.xhp
+msgctxt ""
+"python_import.xhp\n"
+"N0542\n"
+"help.text"
+msgid "PythonLibraries.loadLibrary('lib/subdir') # Add directory to search path"
+msgstr ""
+
+#. tPsVb
+#: python_import.xhp
+msgctxt ""
+"python_import.xhp\n"
+"N0543\n"
+"help.text"
+msgid "PythonLibraries.loadLibrary('my_gui', 'screen_io') # Add dir. & import screen_io"
+msgstr ""
+
+#. KxLAs
+#: python_import.xhp
+msgctxt ""
+"python_import.xhp\n"
+"N0546\n"
+"help.text"
+msgid "\"\"\" Cleanup PYTHON_PATH when doc. Gets closed \"\"\""
+msgstr ""
+
+#. siAC7
+#: python_import.xhp
+msgctxt ""
+"python_import.xhp\n"
+"N0547\n"
+"help.text"
+msgid "PythonLibraries.unloadLibrary('my_gui') # Python runtime path cleanup"
+msgstr ""
+
+#. zajf5
+#: python_import.xhp
+msgctxt ""
+"python_import.xhp\n"
+"N0548\n"
+"help.text"
+msgid "# Note: imported modules remain loaded in this example."
+msgstr ""
+
+#. pKa7R
+#: python_import.xhp
+msgctxt ""
+"python_import.xhp\n"
+"N0553\n"
+"help.text"
+msgid "\"\"\" Python library loader and module importer"
+msgstr ""
+
+#. ruYCE
+#: python_import.xhp
+msgctxt ""
+"python_import.xhp\n"
+"N0555\n"
+"help.text"
+msgid "adapted from 'Bibliothèque de fonctions' by Hubert Lambert"
+msgstr ""
+
+#. 8gpRJ
+#: python_import.xhp
+msgctxt ""
+"python_import.xhp\n"
+"N0556\n"
+"help.text"
+msgid "at https://forum.openoffice.org/fr/forum/viewtopic.php?p=286213 \"\"\""
+msgstr ""
+
+#. T6bdz
+#: python_import.xhp
+msgctxt ""
+"python_import.xhp\n"
+"N0558\n"
+"help.text"
+msgid "\"\"\" Check run time module list \"\"\""
+msgstr ""
+
+#. EFaRv
+#: python_import.xhp
+msgctxt ""
+"python_import.xhp\n"
+"N0561\n"
+"help.text"
+msgid "\"\"\" Check PYTHON_PATH content \"\"\""
+msgstr ""
+
+#. fvFq9
+#: python_import.xhp
+msgctxt ""
+"python_import.xhp\n"
+"N0564\n"
+"help.text"
+msgid "\"\"\" add directory to PYTHON_PATH, import named module \"\"\""
+msgstr ""
+
+#. eCTGx
+#: python_import.xhp
+msgctxt ""
+"python_import.xhp\n"
+"N0573\n"
+"help.text"
+msgid "\"\"\" remove directory from PYTHON_PATH \"\"\""
+msgstr ""
+
+#. 5xScE
+#: python_import.xhp
+msgctxt ""
+"python_import.xhp\n"
+"N0580\n"
+"help.text"
+msgid "Refer to <link href=\"text/sbasic/python/python_listener.xhp\">Creating a Python Listener</link> for examples of event-driven macros."
+msgstr ""
+
+#. 9BBze
+#: python_listener.xhp
+msgctxt ""
+"python_listener.xhp\n"
+"tit\n"
+"help.text"
+msgid "Python Listeners : Creating Event Listeners"
+msgstr ""
+
+#. ouQd3
+#: python_listener.xhp
+msgctxt ""
+"python_listener.xhp\n"
+"N0385\n"
+"help.text"
+msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
+msgstr ""
+
+#. Pjc9z
+#: python_listener.xhp
+msgctxt ""
+"python_listener.xhp\n"
+"N0386\n"
+"help.text"
+msgid "<variable id=\"pythonlistener\"><link href=\"text/sbasic/python/python_listener.xhp\" name=\"python listeners\">Creating Event Listeners</link></variable>"
+msgstr ""
+
+#. DGgrp
+#: python_listener.xhp
+msgctxt ""
+"python_listener.xhp\n"
+"N0387\n"
+"help.text"
+msgid "Events raised by dialogs, documents, forms or graphical controls can be linked to macros, which is referred to as event-driven programming. The most common method to relate events to macros are the <literal>Events</literal> tab in <menuitem>Tools – Customize</menuitem> menu and the <link href=\"text/sbasic/guide/create_dialog.xhp\" name=\"Create dialog\">Dialog Editor</link> Control properties pane from <menuitem>Tools - Macros – Organise Dialogs...</menuitem> menu."
+msgstr ""
+
+#. Dd2YW
+#: python_listener.xhp
+msgctxt ""
+"python_listener.xhp\n"
+"N0388\n"
+"help.text"
+msgid "Graphical artifacts, keyboard inputs, mouse moves and other man/machine interactions can be controlled using UNO listeners that watch for the user’s behavior. Listeners are dynamic program code alternatives to macro assignments. One may create as many UNO listeners as events to watch for. A single listener can also handle multiple user interface controls."
+msgstr ""
+
+#. UVzsE
+#: python_listener.xhp
+msgctxt ""
+"python_listener.xhp\n"
+"N0389\n"
+"help.text"
+msgid "Creating an event listener"
+msgstr ""
+
+#. knF23
+#: python_listener.xhp
+msgctxt ""
+"python_listener.xhp\n"
+"N0390\n"
+"help.text"
+msgid "Listeners get attached to controls held in dialogs, as well as to document or form events. Listeners are also used when creating runtime dialogs or when adding controls to a dialog on the fly."
+msgstr ""
+
+#. DwE8A
+#: python_listener.xhp
+msgctxt ""
+"python_listener.xhp\n"
+"N0391\n"
+"help.text"
+msgid "This example creates a listener for <literal>Button1</literal> control of <literal>Dialog1</literal> dialog in <literal>Standard</literal> library."
+msgstr ""
+
+#. Wsp8E
+#: python_listener.xhp
+msgctxt ""
+"python_listener.xhp\n"
+"N0392\n"
+"help.text"
+msgid "With Python"
+msgstr ""
+
+#. pPjfw
+#: python_listener.xhp
+msgctxt ""
+"python_listener.xhp\n"
+"N0405\n"
+"help.text"
+msgid "_MY_LABEL = 'Python listens..'"
+msgstr ""
+
+#. UJrnb
+#: python_listener.xhp
+msgctxt ""
+"python_listener.xhp\n"
+"N0417\n"
+"help.text"
+msgid "MsgBox(\"The user acknowledged the dialog.\")"
+msgstr ""
+
+#. XVRK7
+#: python_listener.xhp
+msgctxt ""
+"python_listener.xhp\n"
+"N0419\n"
+"help.text"
+msgid "MsgBox(\"The user canceled the dialog.\")"
+msgstr ""
+
+#. FUuHB
+#: python_listener.xhp
+msgctxt ""
+"python_listener.xhp\n"
+"N0424\n"
+"help.text"
+msgid "\"\"\" Create a Dialog from its location \"\"\""
+msgstr ""
+
+#. NeZcJ
+#: python_listener.xhp
+msgctxt ""
+"python_listener.xhp\n"
+"N0437\n"
+"help.text"
+msgid "\"\"\" Listen to & count button clicks \"\"\""
+msgstr ""
+
+#. WK4DA
+#: python_listener.xhp
+msgctxt ""
+"python_listener.xhp\n"
+"N0448\n"
+"help.text"
+msgid "def disposing(self, evt: EventObject): # mandatory routine"
+msgstr ""
+
+#. 9mtTR
+#: python_listener.xhp
+msgctxt ""
+"python_listener.xhp\n"
+"N0457\n"
+"help.text"
+msgid "<emph>msgbox.py</emph> in <emph>{installation}/program/</emph> directory has some examples of button listeners."
+msgstr ""
+
+#. MgUyV
+#: python_listener.xhp
+msgctxt ""
+"python_listener.xhp\n"
+"N0458\n"
+"help.text"
+msgid "With %PRODUCTNAME Basic"
+msgstr ""
+
+#. CCUMV
+#: python_listener.xhp
+msgctxt ""
+"python_listener.xhp\n"
+"N0459d\n"
+"help.text"
+msgid "Const MY_LABEL = \"Basic listens..\""
+msgstr ""
+
+#. eJe7e
+#: python_listener.xhp
+msgctxt ""
+"python_listener.xhp\n"
+"N0478\n"
+"help.text"
+msgid "Case rc.OK : MsgBox \"The user acknowledged the dialog.\",, \"Basic\""
+msgstr ""
+
+#. KVrqd
+#: python_listener.xhp
+msgctxt ""
+"python_listener.xhp\n"
+"N0479\n"
+"help.text"
+msgid "Case rc.CANCEL : MsgBox \"The user canceled the dialog.\",, \"Basic\""
+msgstr ""
+
+#. 9AeGf
+#: python_listener.xhp
+msgctxt ""
+"python_listener.xhp\n"
+"N0486\n"
+"help.text"
+msgid "''' Listen to & count button clicks '''"
+msgstr ""
+
+#. 5Arxo
+#: python_listener.xhp
+msgctxt ""
+"python_listener.xhp\n"
+"N0496\n"
+"help.text"
+msgid "' your code goes here"
+msgstr ""
+
+#. AQA8b
+#: python_listener.xhp
+msgctxt ""
+"python_listener.xhp\n"
+"N0498\n"
+"help.text"
+msgid "Other Event Listeners"
+msgstr ""
+
+#. HsXBE
+#: python_listener.xhp
+msgctxt ""
+"python_listener.xhp\n"
+"N0499\n"
+"help.text"
+msgid "Listeners are usually coded along with <link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"dialog opening\">dialog opening</link>. Numerous listener approaches are possible such as event handlers for dialogs or event monitors for documents or forms."
+msgstr ""
+
+#. Xyv2b
+#: python_listener.xhp
+msgctxt ""
+"python_listener.xhp\n"
+"N0505\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03132000.xhp\" name=\"CreateUnoListener Function\">CreateUnoListener Function</link>"
+msgstr ""
+
+#. zKQhy
+#: python_listener.xhp
+msgctxt ""
+"python_listener.xhp\n"
+"N0506\n"
+"help.text"
+msgid "<link href=\"text/swriter/01/05060700.xhp\" name=\"Events mapping to objects\">Events mapping to objects</link>"
+msgstr ""
+
+#. Xbxfm
+#: python_listener.xhp
+msgctxt ""
+"python_listener.xhp\n"
+"N0509\n"
+"help.text"
+msgid "See also <link href=\"text/sbasic/shared/01040000.xhp\" name=\"Document events\">Document events</link>, <link href=\"text/shared/02/01170202.xhp\" name=\"Form events\">Form events</link>."
+msgstr ""
+
+#. GC8Ny
+#: python_locations.xhp
+msgctxt ""
+"python_locations.xhp\n"
+"tit\n"
+"help.text"
+msgid "Python Scripts Organization"
+msgstr ""
+
+#. KKGnc
+#: python_locations.xhp
+msgctxt ""
+"python_locations.xhp\n"
+"hd_id391543358231021\n"
+"help.text"
+msgid "<variable id=\"pythonlocations1\"><link href=\"text/sbasic/python/python_locations.xhp\" name=\"command_name\">Python Scripts Organization and Location</link></variable>"
+msgstr ""
+
+#. rRufi
+#: python_locations.xhp
+msgctxt ""
+"python_locations.xhp\n"
+"par_id481636114810038\n"
+"help.text"
+msgid "%PRODUCTNAME macros are grouped in module files, modules are usually grouped in library folders, and libraries are grouped in library containers although containers can contain modules too."
+msgstr ""
+
+#. wGWz9
+#: python_locations.xhp
+msgctxt ""
+"python_locations.xhp\n"
+"par_id771543358231022\n"
+"help.text"
+msgid "A library is used as a major grouping for either an entire category of macros, or for an entire application. Modules usually split functionality, such as user interaction and calculations. Individual macros are subroutines and functions. The Figure below shows an example of the hierarchical structure of macro libraries in %PRODUCTNAME."
+msgstr ""
+
+#. b8iEG
+#: python_locations.xhp
+msgctxt ""
+"python_locations.xhp\n"
+"par_id771636279690940\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sbasic/Library-Container.svg\" id=\"img_id121636285791637\" width=\"8cm\" height=\"5.5cm\"><alt id=\"alt_id471636279690940\">Library Container diagram</alt></image>"
+msgstr ""
+
+#. JqG95
+#: python_locations.xhp
+msgctxt ""
+"python_locations.xhp\n"
+"par_id171636114787810\n"
+"help.text"
+msgid "<emph>Figure:</emph> Macro Library hierarchy"
+msgstr ""
+
+#. dbwvM
+#: python_locations.xhp
+msgctxt ""
+"python_locations.xhp\n"
+"par_id801636114790638\n"
+"help.text"
+msgid "The containers are accessible in all %PRODUCTNAME programs through the user interface. Go to <menuitem>Tools > Macros > Organize Macros > Python</menuitem>, to open the Python Macros dialog."
+msgstr ""
+
+#. FU5EC
+#: python_locations.xhp
+msgctxt ""
+"python_locations.xhp\n"
+"par_id801636114808666\n"
+"help.text"
+msgid "Three library containers are shown in the Macro From list:"
+msgstr ""
+
+#. RnBRr
+#: python_locations.xhp
+msgctxt ""
+"python_locations.xhp\n"
+"par_id321636114854594\n"
+"help.text"
+msgid "<emph>My Macros:</emph> personal macros available for the %PRODUCTNAME user"
+msgstr ""
+
+#. bDXrr
+#: python_locations.xhp
+msgctxt ""
+"python_locations.xhp\n"
+"par_id471636114847530\n"
+"help.text"
+msgid "<emph>Application Macros:</emph> system macros distributed with %PRODUCTNAME for every computer user"
+msgstr ""
+
+#. kVY4C
+#: python_locations.xhp
+msgctxt ""
+"python_locations.xhp\n"
+"par_id191636114858218\n"
+"help.text"
+msgid "<emph>Document macros:</emph> every document can contain macro libraries available in that document for all users"
+msgstr ""
+
+#. iEtmS
+#: python_locations.xhp
+msgctxt ""
+"python_locations.xhp\n"
+"hd_id911544049584458\n"
+"help.text"
+msgid "Python Script Locations"
+msgstr ""
+
+#. cmghv
+#: python_locations.xhp
+msgctxt ""
+"python_locations.xhp\n"
+"par_id121551089455774\n"
+"help.text"
+msgid "Refer to <link href=\"text/sbasic/python/python_session.xhp\" name=\"Getting Session Information\">Getting Session Information</link> in order to get programmatic access to Python script locations."
+msgstr ""
+
+#. GDrUs
+#: python_locations.xhp
+msgctxt ""
+"python_locations.xhp\n"
+"hd_id591544049572647\n"
+"help.text"
+msgid "Application Macros"
+msgstr ""
+
+#. xBzRT
+#: python_locations.xhp
+msgctxt ""
+"python_locations.xhp\n"
+"par_id261544049064421\n"
+"help.text"
+msgid "Existing macros in this location (container) were copied by the installation program and are available to every computer user, and any open document can access macros stored the container. You need administrative rights to store or edit macros here."
+msgstr ""
+
+#. M8CGu
+#: python_locations.xhp
+msgctxt ""
+"python_locations.xhp\n"
+"par_id861544210028670\n"
+"help.text"
+msgid "The %PRODUCTNAME Macros container location in the file system depends on the operating system:"
+msgstr ""
+
+#. GMBSF
+#: python_locations.xhp
+msgctxt ""
+"python_locations.xhp\n"
+"par_id191544210072242\n"
+"help.text"
+msgid "For <emph>Windows</emph>: <literal>{Installation}\\share\\Scripts\\python</literal>."
+msgstr ""
+
+#. DV8TD
+#: python_locations.xhp
+msgctxt ""
+"python_locations.xhp\n"
+"par_id61544210078654\n"
+"help.text"
+msgid "For <emph>Linux</emph> and <emph>macOS</emph>: <literal>{Installation}/share/Scripts/python</literal>."
+msgstr ""
+
+#. 5sHwj
+#: python_locations.xhp
+msgctxt ""
+"python_locations.xhp\n"
+"hd_id861544049692222\n"
+"help.text"
+msgid "My Macros"
+msgstr ""
+
+#. aiMzD
+#: python_locations.xhp
+msgctxt ""
+"python_locations.xhp\n"
+"par_id981544049055996\n"
+"help.text"
+msgid "This container is accessible only by the %PRODUCTNAME user. Any open document can access macros stored the container. Macros in this location are stored in the %PRODUCTNAME user profile."
+msgstr ""
+
+#. wUjx4
+#: python_locations.xhp
+msgctxt ""
+"python_locations.xhp\n"
+"par_id341544210187846\n"
+"help.text"
+msgid "The My Macros container location is in the user space and depends on the operating system:"
+msgstr ""
+
+#. mhNtD
+#: python_locations.xhp
+msgctxt ""
+"python_locations.xhp\n"
+"par_id381544210213190\n"
+"help.text"
+msgid "For <emph>Windows</emph>,<br/><literal>%APPDATA%\\LibreOffice\\4\\user\\Scripts\\python</literal>."
+msgstr ""
+
+#. fQYPE
+#: python_locations.xhp
+msgctxt ""
+"python_locations.xhp\n"
+"par_id691544210219850\n"
+"help.text"
+msgid "For <emph>Linux</emph> and <emph>macOS</emph>,<br/><literal>$HOME/.config/libreoffice/4/user/Scripts/python</literal>."
+msgstr ""
+
+#. CSJC9
+#: python_locations.xhp
+msgctxt ""
+"python_locations.xhp\n"
+"hd_id101544049707712\n"
+"help.text"
+msgid "Document macros"
+msgstr ""
+
+#. FBmoB
+#: python_locations.xhp
+msgctxt ""
+"python_locations.xhp\n"
+"par_id31544049046497\n"
+"help.text"
+msgid "Document macros are embedded in the document and are accessible only when the document is open."
+msgstr ""
+
+#. qbVc9
+#: python_locations.xhp
+msgctxt ""
+"python_locations.xhp\n"
+"hd_id171544049715310\n"
+"help.text"
+msgid "Libraries, Modules and Macros"
+msgstr ""
+
+#. 24e7J
+#: python_locations.xhp
+msgctxt ""
+"python_locations.xhp\n"
+"par_id181544209916707\n"
+"help.text"
+msgid "Python macros can be organized in libraries, modules and macros. Use the Macro Library hierarchy as a guide when creating or installing new macros in module files, new module files in library folders or new library folders in containers."
+msgstr ""
+
+#. Zcfxg
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"tit\n"
+"help.text"
+msgid "Python : Platform class"
+msgstr ""
+
+#. jnNvg
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0508\n"
+"help.text"
+msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value> <bookmark_value>API;ConfigurationAccess</bookmark_value> <bookmark_value>Tools;GetRegistryContent</bookmark_value>"
+msgstr ""
+
+#. uMBGn
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0509\n"
+"help.text"
+msgid "<variable id=\"pythonplatform\"><link href=\"text/sbasic/python/python_platform.xhp\" name=\"platform01\">Identifying the operating system</link></variable>"
+msgstr ""
+
+#. vqduy
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0510\n"
+"help.text"
+msgid "Identifying the operating system can be performed with Python or Basic language."
+msgstr ""
+
+#. gZrHC
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0511\n"
+"help.text"
+msgid "ComputerName property is solely available for Windows. Basic calls to Python macros help overcome %PRODUCTNAME Basic limitations."
+msgstr ""
+
+#. sV6Fp
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0512\n"
+"help.text"
+msgid "Using a Python class:"
+msgstr ""
+
+#. ikwcW
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0529\n"
+"help.text"
+msgid "Using a Basic classmodule:"
+msgstr ""
+
+#. 7BpCv
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"NO529b\n"
+"help.text"
+msgid "%PRODUCTNAME Basic lacks MacOS X native recognition. Platform identification is possible using %PRODUCTNAME Application Programming Interface (API)."
+msgstr ""
+
+#. tTyE5
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0451\n"
+"help.text"
+msgid "' Return platform name as \"MAC\", \"UNIX\", \"WIN\""
+msgstr ""
+
+#. AwTGx
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0551\n"
+"help.text"
+msgid "' Inferred from \"Tools.UCB.ShowHelperDialog\" function"
+msgstr ""
+
+#. jtA2N
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0564\n"
+"help.text"
+msgid "Examples:"
+msgstr ""
+
+#. riK2q
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0565\n"
+"help.text"
+msgid "With Python"
+msgstr ""
+
+#. FELjZ
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0567\n"
+"help.text"
+msgid "<literal>>>> print(Platform().isMacOSX) # object property</literal>"
+msgstr ""
+
+#. dAWDs
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0569\n"
+"help.text"
+msgid "<literal>>>> input(Platform().OSName) # object property</literal>"
+msgstr ""
+
+#. MkpG4
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0571\n"
+"help.text"
+msgid "From <menuitem>Tools – Macros - Run Macro...</menuitem> menu."
+msgstr ""
+
+#. Qk6MM
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0576\n"
+"help.text"
+msgid "With %PRODUCTNAME Basic"
+msgstr ""
+
+#. Jkyqd
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0578\n"
+"help.text"
+msgid "Dim p As New Platform ' instance of Platform class"
+msgstr ""
+
+#. HWYHg
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0579\n"
+"help.text"
+msgid "MsgBox p.isLinux ' object property"
+msgstr ""
+
+#. 9FGEv
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0580\n"
+"help.text"
+msgid "Print p.isWindows, p.OSName ' object properties"
+msgstr ""
+
+#. ej5WE
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"tit\n"
+"help.text"
+msgid "Python : Programming with Python"
+msgstr ""
+
+#. BG8VW
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0218\n"
+"help.text"
+msgid "<bookmark_value>Python;Programming</bookmark_value> <bookmark_value>XSCRIPTCONTEXT;Python</bookmark_value> <bookmark_value>XSCRIPTCONTEXT;getComponentContext</bookmark_value> <bookmark_value>XSCRIPTCONTEXT;getDesktop</bookmark_value> <bookmark_value>XSCRIPTCONTEXT;getDocument</bookmark_value> <bookmark_value>uno.py;getComponentContext</bookmark_value> <bookmark_value>uno.py;getDesktop</bookmark_value> <bookmark_value>uno.py;getDocument</bookmark_value>"
+msgstr ""
+
+#. CU6JS
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"hd_id691546462755220\n"
+"help.text"
+msgid "<variable id=\"pythonprogrammingheading\"><link href=\"text/sbasic/python/python_programming.xhp\" name=\"python programming\">Programming with Python Scripts</link></variable>"
+msgstr ""
+
+#. BjiFe
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0220\n"
+"help.text"
+msgid "A Python macro is a function within a .py file, identified as a module. Unlike %PRODUCTNAME Basic and its dozen of <link href=\"text/sbasic/shared/uno_objects.xhp\" name=\"UNO objects functions or services\">UNO objects functions or services</link>, Python macros use the <literal>XSCRIPTCONTEXT</literal> UNO single object, shared with JavaScript and BeanShell. The <literal>g_exportedScripts</literal> global tuple explicitly lists selectable macros from a module. Python modules hold autonomous code logic, and are independent from one another."
+msgstr ""
+
+#. 8Ri8m
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0221\n"
+"help.text"
+msgid "XSCRIPTCONTEXT Global Variable"
+msgstr ""
+
+#. xnRGE
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0222\n"
+"help.text"
+msgid "Genuine Basic UNO facilities can be inferred from <literal>XSCRIPTCONTEXT</literal> global variable. Refer to %PRODUCTNAME API for a complete <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1script_1_1provider_1_1XScriptContext.html\" name=\"description of XSCRIPTCONTEXT\">description of XSCRIPTCONTEXT</link>. <literal>XSCRIPTCONTEXT</literal> methods summarize as:"
+msgstr ""
+
+#. U6KbS
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0224\n"
+"help.text"
+msgid "Methods"
+msgstr ""
+
+#. skMQF
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0225\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. onsBW
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0226\n"
+"help.text"
+msgid "Mapped in Basic as"
+msgstr ""
+
+#. 54Nun
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0228\n"
+"help.text"
+msgid "The document reference on which the script can operate."
+msgstr ""
+
+#. CR7pv
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0231\n"
+"help.text"
+msgid "The desktop reference on which the script can operate."
+msgstr ""
+
+#. rAVfx
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0234\n"
+"help.text"
+msgid "The component context which the script can use to create other uno components."
+msgstr ""
+
+#. 5wUcN
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0237\n"
+"help.text"
+msgid "<emph>HelloWorld</emph> and <emph>Capitalise</emph> installation shared scripts illustrate UNO-related macros making use of <literal>XSCRIPTCONTEXT</literal> global variable."
+msgstr ""
+
+#. RQgKR
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0238\n"
+"help.text"
+msgid "Python standard output file is not available when running Python macros from <menuitem>Tools - Macros - Run Macro</menuitem> menu. Refer to <emph>Input/Output to Screen</emph> for more information."
+msgstr ""
+
+#. WuGCs
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0239\n"
+"help.text"
+msgid "Module import"
+msgstr ""
+
+#. tBVP2
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0240\n"
+"help.text"
+msgid "<literal>XSCRIPTCONTEXT</literal> is not provided to imported modules."
+msgstr ""
+
+#. dURCV
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0241\n"
+"help.text"
+msgid "%PRODUCTNAME Basic libraries contain classes, routines and variables, Python modules contain classes, functions and variables. Common pieces of reusable Python or UNO features must be stored in <link href=\"text/sbasic/python/python_locations.xhp\" name=\"My macros\">My macros</link> within <literal>(User Profile)/Scripts/python/pythonpath</literal>. Python libraries help organize modules in order to prevent module name collisions. Import <literal>uno.py</literal> inside shared modules."
+msgstr ""
+
+#. a2xVe
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0242\n"
+"help.text"
+msgid "Genuine BASIC UNO facilities can be inferred using <literal>uno.py</literal> module. Use <link href=\"text/sbasic/python/python_shell.xhp\" name=\"Python interactive shell\">Python interactive shell</link> to get a complete module description using <literal>dir()</literal> and <literal>help()</literal> Python commands."
+msgstr ""
+
+#. SsAZa
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"bm_id391659034206678\n"
+"help.text"
+msgid "<bookmark_value>uno.py</bookmark_value> <bookmark_value>uno.py;absolutize</bookmark_value> <bookmark_value>uno.py;createUnoStruct</bookmark_value> <bookmark_value>uno.py;fileUrlToSystemPath</bookmark_value> <bookmark_value>uno.py;getClass</bookmark_value> <bookmark_value>uno.py;getComponentContext</bookmark_value> <bookmark_value>uno.py;Enum</bookmark_value> <bookmark_value>uno.py;getConstantByName</bookmark_value> <bookmark_value>uno.py;isInterface</bookmark_value> <bookmark_value>uno.py;systemPathToFileUrl</bookmark_value>"
+msgstr ""
+
+#. Gi6iz
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0244\n"
+"help.text"
+msgid "Functions"
+msgstr ""
+
+#. jFADb
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0245\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. 6wDQn
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0246\n"
+"help.text"
+msgid "Mapped in Basic as"
+msgstr ""
+
+#. 7prVF
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0248\n"
+"help.text"
+msgid "Returns an absolute file url from the given urls."
+msgstr ""
+
+#. PE7AD
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0251\n"
+"help.text"
+msgid "Creates a UNO struct or exception given by typeName."
+msgstr ""
+
+#. FNPMc
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0254\n"
+"help.text"
+msgid "Returns a system path."
+msgstr ""
+
+#. sFbd9
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0257\n"
+"help.text"
+msgid "Returns the class of a concrete UNO exception, struct, or interface."
+msgstr ""
+
+#. qAbMv
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0260\n"
+"help.text"
+msgid "Returns the UNO component context used to initialize the Python runtime."
+msgstr ""
+
+#. WQBzo
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0264\n"
+"help.text"
+msgid "Looks up the value of an IDL constant by giving its explicit name."
+msgstr ""
+
+#. VD2pr
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0265\n"
+"help.text"
+msgid "See API constant groups"
+msgstr ""
+
+#. RMBST
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0267\n"
+"help.text"
+msgid "Returns True, when obj is a class of a UNO interface."
+msgstr ""
+
+#. B84WF
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0270\n"
+"help.text"
+msgid "Returns a file URL for the given system path."
+msgstr ""
+
+#. GEMGY
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0272\n"
+"help.text"
+msgid "<emph>LibreLogo</emph> and <emph>TableSample</emph> installation shared scripts use <literal>uno.py</literal> module."
+msgstr ""
+
+#. 9NieC
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0273\n"
+"help.text"
+msgid "More Python-Basic samples"
+msgstr ""
+
+#. 6Yct5
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0275\n"
+"help.text"
+msgid "Python UNO"
+msgstr ""
+
+#. 8GvqG
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0276\n"
+"help.text"
+msgid "Basic UNO features"
+msgstr ""
+
+#. 8EWYh
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0284\n"
+"help.text"
+msgid "See <link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"Opening a Dialog\">Opening a Dialog</link>"
+msgstr ""
+
+#. F2cFF
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0286\n"
+"help.text"
+msgid "See <link href=\"text/sbasic/python/python_listener.xhp\" name=\"Creating a Listener\">Creating a Listener</link>"
+msgstr ""
+
+#. LNUaK
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0288\n"
+"help.text"
+msgid "See UNO data types"
+msgstr ""
+
+#. pFbcP
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N1297\n"
+"help.text"
+msgid "Importing an embedded Module"
+msgstr ""
+
+#. AngYv
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N1298\n"
+"help.text"
+msgid "Similarly to %PRODUCTNAME Basic that supports browsing and dynamic loading of libraries, Python libraries can be explored and imported on demand. For more information on library containers, visit <link href=\"https://api.libreoffice.org/\" name=\"API Documentation site\">%PRODUCTNAME Application Programming Interface</link> (API) or download <link href=\"https://www.libreoffice.org/download/download/\" name=\"SDK download page\">%PRODUCTNAME Software Development Kit</link> (SDK)."
+msgstr ""
+
+#. SEeXV
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N3299\n"
+"help.text"
+msgid "Importing a Python document embedded module is illustrated below, exception handling is not detailed:"
+msgstr ""
+
+#. P2R2D
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0303\n"
+"help.text"
+msgid "\"\"\" load library and import module"
+msgstr ""
+
+#. oBnkG
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0305\n"
+"help.text"
+msgid "Adapted from 'Bibliothèque de fonctions' by Hubert Lambert"
+msgstr ""
+
+#. FFxTV
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0306\n"
+"help.text"
+msgid "at https://forum.openoffice.org/fr/forum/viewtopic.php?p=286213\"\"\""
+msgstr ""
+
+#. A2Zvp
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0307\n"
+"help.text"
+msgid "doc = XSCRIPTCONTEXT.getDocument() # current document"
+msgstr ""
+
+#. qqpCF
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0310\n"
+"help.text"
+msgid "if not url in sys.path: # add path if necessary"
+msgstr ""
+
+#. HWoLC
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0311\n"
+"help.text"
+msgid "sys.path.insert(0, url) # doclib takes precedence"
+msgstr ""
+
+#. wBdYA
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0312\n"
+"help.text"
+msgid "if module_name: # import if requested"
+msgstr ""
+
+#. B9zJW
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0316\n"
+"help.text"
+msgid "ui = load_library(\"my_gui\",'screen_io') # add <lib> path + import <module>"
+msgstr ""
+
+#. HFcCm
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0321\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/uno_objects.xhp\" name=\"UNO objects page\">Basic UNO Objects, Functions and Services</link>"
+msgstr ""
+
+#. zRBRa
+#: python_screen.xhp
+msgctxt ""
+"python_screen.xhp\n"
+"tit\n"
+"help.text"
+msgid "Python : Screen Input/Output"
+msgstr ""
+
+#. tMEMB
+#: python_screen.xhp
+msgctxt ""
+"python_screen.xhp\n"
+"N0433\n"
+"help.text"
+msgid "<bookmark_value>Python;InputBox</bookmark_value> <bookmark_value>Python;MsgBox</bookmark_value> <bookmark_value>Python;Print</bookmark_value> <bookmark_value>API;script.provider.MasterScriptProvider: Screen Input/Output</bookmark_value> <bookmark_value>API;script.provider.XScript: Screen Input/Output</bookmark_value>"
+msgstr ""
+
+#. fovpz
+#: python_screen.xhp
+msgctxt ""
+"python_screen.xhp\n"
+"N0434\n"
+"help.text"
+msgid "<variable id=\"ioscreen\"><link href=\"text/sbasic/python/python_screen.xhp\" name=\"IO to screen\">Input/Output to Screen</link></variable>"
+msgstr ""
+
+#. qCLEs
+#: python_screen.xhp
+msgctxt ""
+"python_screen.xhp\n"
+"N0435\n"
+"help.text"
+msgid "Python standard output file is not available when running Python macros from <menuitem>Tools – Macros - Run Macro</menuitem>... menu. Presenting the output of a module requires the Python interactive console. Features such as <literal>input()</literal>, <literal>print()</literal>, <literal>repr()</literal> and <literal>str()</literal> are available from the Python shell."
+msgstr ""
+
+#. sqd5d
+#: python_screen.xhp
+msgctxt ""
+"python_screen.xhp\n"
+"msgbox_tip\n"
+"help.text"
+msgid "%PRODUCTNAME <literal>msgbox</literal> Python module proposes a <literal>msgbox()</literal> method that is illustrated in <link href=\"text/sbasic/python/python_handler.xhp\" name=\"msgbox example\">Creating Event Listeners</link> and <link href=\"text/sbasic/python/python_handler.xhp\" name=\"msgbox_example\">Creating a dialog handler</link> example pages."
+msgstr ""
+
+#. aPSDz
+#: python_screen.xhp
+msgctxt ""
+"python_screen.xhp\n"
+"N0437\n"
+"help.text"
+msgid "%PRODUCTNAME Basic proposes <literal>InputBox()</literal>, <literal>Msgbox()</literal> and <literal>Print()</literal> screen I/O functions. Python alternatives exist relying either on %PRODUCTNAME API Abstract Windowing Toolkit, either on Python to Basic function calls. The latter proposes a syntax that is intentionally close to that of Basic, and uses a Python module next to a Basic module. The API Scripting Framework is used to perform Basic, BeanShell, JavaScript and Python inter-languages function calls."
+msgstr ""
+
+#. hat4k
+#: python_screen.xhp
+msgctxt ""
+"python_screen.xhp\n"
+"N0438\n"
+"help.text"
+msgid "Python syntax:"
+msgstr ""
+
+#. QypFq
+#: python_screen.xhp
+msgctxt ""
+"python_screen.xhp\n"
+"N0442\n"
+"help.text"
+msgid "Examples:"
+msgstr ""
+
+#. DbZVx
+#: python_screen.xhp
+msgctxt ""
+"python_screen.xhp\n"
+"N0449\n"
+"help.text"
+msgid "Installation:"
+msgstr ""
+
+#. QDrDk
+#: python_screen.xhp
+msgctxt ""
+"python_screen.xhp\n"
+"N0450\n"
+"help.text"
+msgid "Copy <literal>screen_io</literal> Python module in <link href=\"text/sbasic/python/python_locations.xhp\" name=\"User macros\">My macros</link> within <UserProfile>/Scripts/python/pythonpath,"
+msgstr ""
+
+#. bckjW
+#: python_screen.xhp
+msgctxt ""
+"python_screen.xhp\n"
+"N0451\n"
+"help.text"
+msgid "Copy <literal>uiScripts</literal> Basic module in <link href=\"text/sbasic/python/python_locations.xhp\" name=\"User macros\">My macros</link> Standard Basic library,"
+msgstr ""
+
+#. XAthB
+#: python_screen.xhp
+msgctxt ""
+"python_screen.xhp\n"
+"N0452\n"
+"help.text"
+msgid "Restart %PRODUCTNAME."
+msgstr ""
+
+#. jGGGZ
+#: python_screen.xhp
+msgctxt ""
+"python_screen.xhp\n"
+"N0453\n"
+"help.text"
+msgid "<literal>screen_io</literal> Python module"
+msgstr ""
+
+#. EB2zZ
+#: python_screen.xhp
+msgctxt ""
+"python_screen.xhp\n"
+"N0467\n"
+"help.text"
+msgid "\"\"\" Displays a dialog box containing a message and returns a value.\"\"\""
+msgstr ""
+
+#. nUtxt
+#: python_screen.xhp
+msgctxt ""
+"python_screen.xhp\n"
+"N0473\n"
+"help.text"
+msgid "\"\"\" Displays a prompt in a dialog box at which the user can enter text.\"\"\""
+msgstr ""
+
+#. MFz5D
+#: python_screen.xhp
+msgctxt ""
+"python_screen.xhp\n"
+"N0479\n"
+"help.text"
+msgid "\"\"\"Outputs the specified strings or numeric expressions in a dialog box.\"\"\""
+msgstr ""
+
+#. qTYPW
+#: python_screen.xhp
+msgctxt ""
+"python_screen.xhp\n"
+"par_id161655364816553\n"
+"help.text"
+msgid "<literal>MsgBox</literal> and <literal>InputBox</literal> methods from the <link href=\"text/sbasic/shared/03/sf_basic.xhp\" name=\"Basic service\">Basic service</link> included in <link href=\"text/sbasic/shared/03/lib_ScriptForge.xhp\" name=\"scriptforge module\"> the ScriptForge libraries</link> call directly their native Basic counterparts."
+msgstr ""
+
+#. EYqxJ
+#: python_screen.xhp
+msgctxt ""
+"python_screen.xhp\n"
+"N0492\n"
+"help.text"
+msgid "<literal>uiScripts</literal> Basic module"
+msgstr ""
+
+#. DGYAX
+#: python_screen.xhp
+msgctxt ""
+"python_screen.xhp\n"
+"tip_APSO\n"
+"help.text"
+msgid "The <link href=\"https://extensions.libreoffice.org/extensions/apso-alternative-script-organizer-for-python\" name=\"apso\">Alternative Python Script Organizer</link> (APSO) extension offers a msgbox() function out of its <literal>apso_utils</literal> module."
+msgstr ""
+
+#. CGnPe
+#: python_session.xhp
+msgctxt ""
+"python_session.xhp\n"
+"tit\n"
+"help.text"
+msgid "Python_Session : Session class"
+msgstr ""
+
+#. vkS8P
+#: python_session.xhp
+msgctxt ""
+"python_session.xhp\n"
+"N0339\n"
+"help.text"
+msgid "<bookmark_value>Session;UserName</bookmark_value> <bookmark_value>Session;SharedScripts</bookmark_value> <bookmark_value>Session;SharedPythonScripts</bookmark_value> <bookmark_value>Session;UserProfile</bookmark_value> <bookmark_value>Session;UserScripts</bookmark_value> <bookmark_value>Session;UserPythonScripts</bookmark_value> <bookmark_value>API;PathSubstitution</bookmark_value>"
+msgstr ""
+
+#. EvmoA
+#: python_session.xhp
+msgctxt ""
+"python_session.xhp\n"
+"N0340\n"
+"help.text"
+msgid "<variable id=\"pythonsession\"><link href=\"text/sbasic/python/python_session.xhp\" name=\"session01\">Getting Session Information</link></variable>"
+msgstr ""
+
+#. nmTjF
+#: python_session.xhp
+msgctxt ""
+"python_session.xhp\n"
+"N0341\n"
+"help.text"
+msgid "Computing %PRODUCTNAME user profile and shared modules system file paths can be performed with Python or with Basic languages. BeanShell, Java, JavaScript and Python scripts locations can be derived from this information."
+msgstr ""
+
+#. gMnyC
+#: python_session.xhp
+msgctxt ""
+"python_session.xhp\n"
+"N0343\n"
+"help.text"
+msgid "Examples:"
+msgstr ""
+
+#. m498C
+#: python_session.xhp
+msgctxt ""
+"python_session.xhp\n"
+"N0344\n"
+"help.text"
+msgid "With Python shell."
+msgstr ""
+
+#. yziJv
+#: python_session.xhp
+msgctxt ""
+"python_session.xhp\n"
+"N0346\n"
+"help.text"
+msgid "<literal>>>> print(Session.SharedPythonScripts()) # static method</literal>"
+msgstr ""
+
+#. ezhbr
+#: python_session.xhp
+msgctxt ""
+"python_session.xhp\n"
+"N0347\n"
+"help.text"
+msgid "<literal>>>> print(Session().UserName) # object property</literal>"
+msgstr ""
+
+#. K4Cjj
+#: python_session.xhp
+msgctxt ""
+"python_session.xhp\n"
+"N0348\n"
+"help.text"
+msgid "<literal>>>> input(Session().UserProfile) # object property</literal>"
+msgstr ""
+
+#. CVdoK
+#: python_session.xhp
+msgctxt ""
+"python_session.xhp\n"
+"N0349\n"
+"help.text"
+msgid "From <menuitem>Tools – Macros - Run Macro</menuitem>... menu."
+msgstr ""
+
+#. k47pk
+#: python_session.xhp
+msgctxt ""
+"python_session.xhp\n"
+"N0354\n"
+"help.text"
+msgid "ui.MsgBox(Session.Share(),title='Installation Share') # static method"
+msgstr ""
+
+#. mFu9h
+#: python_session.xhp
+msgctxt ""
+"python_session.xhp\n"
+"N0355\n"
+"help.text"
+msgid "ui.Print(Session.SharedPythonScripts()) # static method"
+msgstr ""
+
+#. osmNG
+#: python_session.xhp
+msgctxt ""
+"python_session.xhp\n"
+"N0356\n"
+"help.text"
+msgid "s = Session() # instance creation"
+msgstr ""
+
+#. Gqz8J
+#: python_session.xhp
+msgctxt ""
+"python_session.xhp\n"
+"N0357\n"
+"help.text"
+msgid "ui.MsgBox(s.UserName,title='Hello') # object property"
+msgstr ""
+
+#. 8c4GN
+#: python_session.xhp
+msgctxt ""
+"python_session.xhp\n"
+"N0358\n"
+"help.text"
+msgid "ui.Print(s.UserPythonScripts) # object property"
+msgstr ""
+
+#. GAffb
+#: python_session.xhp
+msgctxt ""
+"python_session.xhp\n"
+"N0360\n"
+"help.text"
+msgid "g_exportedScripts = (demo_session,) # public macros"
+msgstr ""
+
+#. GfLEb
+#: python_session.xhp
+msgctxt ""
+"python_session.xhp\n"
+"N0361\n"
+"help.text"
+msgid "With %PRODUCTNAME Basic."
+msgstr ""
+
+#. CJAPH
+#: python_session.xhp
+msgctxt ""
+"python_session.xhp\n"
+"N0364\n"
+"help.text"
+msgid "Print \"Shared scripts location:\", s.SharedScripts"
+msgstr ""
+
+#. nKgLS
+#: python_session.xhp
+msgctxt ""
+"python_session.xhp\n"
+"N0365\n"
+"help.text"
+msgid "MsgBox s.UserName,,\"Hello\""
+msgstr ""
+
+#. Dvp2n
+#: python_session.xhp
+msgctxt ""
+"python_session.xhp\n"
+"N0368\n"
+"help.text"
+msgid "Using COM/OLE and Visual Basic Scripting language."
+msgstr ""
+
+#. u2czW
+#: python_session.xhp
+msgctxt ""
+"python_session.xhp\n"
+"N0369\n"
+"help.text"
+msgid "' The service manager is always the entry point"
+msgstr ""
+
+#. BiCRF
+#: python_session.xhp
+msgctxt ""
+"python_session.xhp\n"
+"N0370\n"
+"help.text"
+msgid "' If there is no office running then an office is started up"
+msgstr ""
+
+#. mepxA
+#: python_session.xhp
+msgctxt ""
+"python_session.xhp\n"
+"N0372\n"
+"help.text"
+msgid "' PathSubstitution service exhibits information to infer"
+msgstr ""
+
+#. njK5P
+#: python_session.xhp
+msgctxt ""
+"python_session.xhp\n"
+"N0373\n"
+"help.text"
+msgid "' <UserProfile|Share>/Scripts/python locations from"
+msgstr ""
+
+#. XPAGf
+#: python_session.xhp
+msgctxt ""
+"python_session.xhp\n"
+"N0381\n"
+"help.text"
+msgid "Python Session class:"
+msgstr ""
+
+#. ePFtK
+#: python_session.xhp
+msgctxt ""
+"python_session.xhp\n"
+"N0401\n"
+"help.text"
+msgid "@property # alternative to '$(username)' variable"
+msgstr ""
+
+#. CBvZv
+#: python_session.xhp
+msgctxt ""
+"python_session.xhp\n"
+"N0342\n"
+"help.text"
+msgid "Unlike Basic, pathname normalization is performed with Python inside Session class."
+msgstr ""
+
+#. 8zUvW
+#: python_session.xhp
+msgctxt ""
+"python_session.xhp\n"
+"N0412\n"
+"help.text"
+msgid "%PRODUCTNAME Basic Session class:"
+msgstr ""
+
+#. ivAG6
+#: python_session.xhp
+msgctxt ""
+"python_session.xhp\n"
+"N0417\n"
+"help.text"
+msgid "Private _ps As Object ' Private member"
+msgstr ""
+
+#. Q9sNs
+#: python_session.xhp
+msgctxt ""
+"python_session.xhp\n"
+"N0422\n"
+"help.text"
+msgid "End Sub ' Constructor"
+msgstr ""
+
+#. ELSQJ
+#: python_session.xhp
+msgctxt ""
+"python_session.xhp\n"
+"N0426\n"
+"help.text"
+msgid "End Sub ' Destructor"
+msgstr ""
+
+#. 7neVV
+#: python_session.xhp
+msgctxt ""
+"python_session.xhp\n"
+"N0439\n"
+"help.text"
+msgid "Public Property Get UserName() As String ' User account name"
+msgstr ""
+
+#. NsDBi
+#: python_session.xhp
+msgctxt ""
+"python_session.xhp\n"
+"N0443\n"
+"help.text"
+msgid "Public Property Get UserProfile() As String ' User profile system path"
+msgstr ""
+
+#. do2CY
+#: python_session.xhp
+msgctxt ""
+"python_session.xhp\n"
+"N0447\n"
+"help.text"
+msgid "Public Property Get UserScripts() As String ' User scripts system path"
+msgstr ""
+
+#. Gg3yg
+#: python_session.xhp
+msgctxt ""
+"python_session.xhp\n"
+"N0451\n"
+"help.text"
+msgid "Public Property Get UserPythonScripts() As String ' User Python scripts system path"
+msgstr ""
+
+#. DRC4A
+#: python_shell.xhp
+msgctxt ""
+"python_shell.xhp\n"
+"tit\n"
+"help.text"
+msgid "Python Interactive Shell"
+msgstr ""
+
+#. LUGZ7
+#: python_shell.xhp
+msgctxt ""
+"python_shell.xhp\n"
+"N0117\n"
+"help.text"
+msgid "<bookmark_value>Python console</bookmark_value> <bookmark_value>Python Interactive Shell</bookmark_value>"
+msgstr ""
+
+#. PmoqF
+#: python_shell.xhp
+msgctxt ""
+"python_shell.xhp\n"
+"N0118\n"
+"help.text"
+msgid "<variable id=\"pythonshell1\"><link href=\"text/sbasic/python/python_shell.xhp\" name=\"python shell\">Running Python Interactive Console</link></variable>"
+msgstr ""
+
+#. Met9b
+#: python_shell.xhp
+msgctxt ""
+"python_shell.xhp\n"
+"N0119\n"
+"help.text"
+msgid "The Python interactive console, also known as Python interpreter or Python shell, provides programmers with a quick way to execute commands and try out and test code without creating a file. UNO objects introspection as well as %PRODUCTNAME Python modules documentation can be obtained from the terminal."
+msgstr ""
+
+#. kFpxo
+#: python_shell.xhp
+msgctxt ""
+"python_shell.xhp\n"
+"par_id851633601202270\n"
+"help.text"
+msgid "From a full-featured %PRODUCTNAME installed package, use either Basic or Python:"
+msgstr ""
+
+#. 5HhXz
+#: python_shell.xhp
+msgctxt ""
+"python_shell.xhp\n"
+"N0121\n"
+"help.text"
+msgid "Using a Basic macro"
+msgstr ""
+
+#. KhWLk
+#: python_shell.xhp
+msgctxt ""
+"python_shell.xhp\n"
+"N0127\n"
+"help.text"
+msgid "Using a Python macro"
+msgstr ""
+
+#. 3FCJH
+#: python_shell.xhp
+msgctxt ""
+"python_shell.xhp\n"
+"N0141\n"
+"help.text"
+msgid "Example output"
+msgstr ""
+
+#. MxDtE
+#: python_shell.xhp
+msgctxt ""
+"python_shell.xhp\n"
+"N0142\n"
+"help.text"
+msgid "<image src=\"media/helpimg/python/python_interactive_console.png\" id=\"N0143\"><alt id=\"N0143\">Python Interactive Console</alt></image>"
+msgstr ""
+
+#. fk6sx
+#: python_shell.xhp
+msgctxt ""
+"python_shell.xhp\n"
+"hd_id381633446811095\n"
+"help.text"
+msgid "Using the Terminal"
+msgstr ""
+
+#. CNFdD
+#: python_shell.xhp
+msgctxt ""
+"python_shell.xhp\n"
+"par_id801633601715910\n"
+"help.text"
+msgid "From a %PRODUCTNAME copy included in a GNU/Linux platform, use the terminal as shown:"
+msgstr ""
+
+#. vWPwe
+#: python_shell.xhp
+msgctxt ""
+"python_shell.xhp\n"
+"par_id531633444780190\n"
+"help.text"
+msgid "<literal>whereis</literal> or <literal>type</literal> terminal commands help locate Python interactive console:"
+msgstr ""
+
+#. 8Ei5d
+#: python_shell.xhp
+msgctxt ""
+"python_shell.xhp\n"
+"hd_id311633513620803\n"
+"help.text"
+msgid "Alternative console"
+msgstr ""
+
+#. d8DCA
+#: python_shell.xhp
+msgctxt ""
+"python_shell.xhp\n"
+"par_id81632760673283\n"
+"help.text"
+msgid "Use <link href=\"https://extensions.libreoffice.org/extensions/apso-alternative-script-organizer-for-Python\" name=\"APSO extension\">APSO extension</link> console as an alternative:"
+msgstr ""
+
+#. 6h9CS
+#: python_shell.xhp
+msgctxt ""
+"python_shell.xhp\n"
+"N0144\n"
+"help.text"
+msgid "<image src=\"media/helpimg/python/python_shell.png\" id=\"N0144\"><alt id=\"N0144\">APSO console</alt></image>"
+msgstr ""
+
+#. MxGkV
+#: python_shell.xhp
+msgctxt ""
+"python_shell.xhp\n"
+"par_id351633599611244\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03/sf_exception.xhp?#PythonShell\" name=\"PythonShell method\"><literal>PythonShell</literal></link> function in <link href=\"text/sbasic/shared/03/sf_exception.xhp\" name=\"ScriptForge.Exception service\"><literal>ScriptForge.Exception</literal></link> service"
+msgstr ""
diff --git a/source/hsb/helpcontent2/source/text/sbasic/shared.po b/source/hsb/helpcontent2/source/text/sbasic/shared.po
new file mode 100644
index 00000000000..511c1c2c241
--- /dev/null
+++ b/source/hsb/helpcontent2/source/text/sbasic/shared.po
@@ -0,0 +1,42253 @@
+#. extracted from helpcontent2/source/text/sbasic/shared
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2022-10-10 13:35+0200\n"
+"PO-Revision-Date: 2022-08-10 13:23+0000\n"
+"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
+"Language-Team: Upper Sorbian <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicshared/hsb/>\n"
+"Language: hsb\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#. yzYVt
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"tit\n"
+"help.text"
+msgid "$[officename] Basic Glossary"
+msgstr "Glosar $[officename] Basic"
+
+#. rQALz
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"hd_id3145068\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/00000002.xhp\" name=\"$[officename] Basic Glossary\">$[officename] Basic Glossary</link>"
+msgstr ""
+
+#. jo5hZ
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3150792\n"
+"help.text"
+msgid "This glossary explains some technical terms that you may come across when working with $[officename] Basic."
+msgstr ""
+
+#. DDaPQ
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"hd_id3155133\n"
+"help.text"
+msgid "Decimal Point"
+msgstr ""
+
+#. obfKZ
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3156443\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 ""
+
+#. NfzqE
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3153092\n"
+"help.text"
+msgid "The behavior has an effect on both the implicit conversion ( 1 + \"2.3\" = 3.3 ) as well as the function <link href=\"text/sbasic/shared/03102700.xhp\" name=\"IsNumeric\">IsNumeric</link>."
+msgstr ""
+
+#. 2zeFJ
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"hd_id3155854\n"
+"help.text"
+msgid "Colors"
+msgstr ""
+
+#. ELCNB
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3145366\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 ""
+
+#. mWfzF
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"hd_id3146119\n"
+"help.text"
+msgid "Measurement Units"
+msgstr ""
+
+#. KmQui
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3154013\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 ""
+
+#. zfF2y
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"bm_id3145801\n"
+"help.text"
+msgid "<bookmark_value>twips; definition</bookmark_value>"
+msgstr ""
+
+#. sKUEt
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"hd_id3145801\n"
+"help.text"
+msgid "Twips"
+msgstr ""
+
+#. zTDqe
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3154731\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 ""
+
+#. Qei2N
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"hd_id3153159\n"
+"help.text"
+msgid "URL Notation"
+msgstr ""
+
+#. mmtHz
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3153415\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 ""
+
+#. rjDFF
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3149121\n"
+"help.text"
+msgid "<emph>protocol</emph>://<emph>host.name</emph>/<emph>path/to/the/file.html</emph>"
+msgstr ""
+
+#. iUcFZ
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3168612\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 ""
+
+#. 2DJyX
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3150324\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:\\Users\\alice\\Documents\\My File.odt</emph> on the local host in \"Windows notation\" becomes <emph>file:///C:/Users/alice/Documents/My%20File.odt</emph> in URL notation."
+msgstr ""
+
+#. E5zgb
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"tit\n"
+"help.text"
+msgid "Information"
+msgstr ""
+
+#. eAczF
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id3148550\n"
+"help.text"
+msgid "Information"
+msgstr ""
+
+#. jS8Ck
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3153381\n"
+"help.text"
+msgid "You can set the locale used for controlling the formatting numbers, dates and currencies in $[officename] Basic in <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Language Settings - Languages</emph>. In Basic format codes, the decimal point (<emph>.</emph>) is always used as <emph>placeholder</emph> for the decimal separator defined in your locale and will be replaced by the corresponding character."
+msgstr ""
+
+#. 6NcoV
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3150870\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 ""
+
+#. 3P4FS
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3156424\n"
+"help.text"
+msgid "The color values of the 16 basic colors are as follows:"
+msgstr ""
+
+#. 8hbC4
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3153091\n"
+"help.text"
+msgid "<emph>Color Value</emph>"
+msgstr ""
+
+#. QQwAi
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3154319\n"
+"help.text"
+msgid "<emph>Color Name</emph>"
+msgstr ""
+
+#. BFWxF
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3151112\n"
+"help.text"
+msgid "0"
+msgstr ""
+
+#. DnRcy
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3155854\n"
+"help.text"
+msgid "Black"
+msgstr ""
+
+#. fNgfA
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3154942\n"
+"help.text"
+msgid "128"
+msgstr ""
+
+#. cKXGh
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3154731\n"
+"help.text"
+msgid "Blue"
+msgstr ""
+
+#. bWVAH
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3145645\n"
+"help.text"
+msgid "32768"
+msgstr ""
+
+#. BSMfN
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3149400\n"
+"help.text"
+msgid "Green"
+msgstr ""
+
+#. jKRmC
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3150753\n"
+"help.text"
+msgid "32896"
+msgstr ""
+
+#. FpUmM
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3153765\n"
+"help.text"
+msgid "Cyan"
+msgstr ""
+
+#. B3KDB
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3154756\n"
+"help.text"
+msgid "8388608"
+msgstr ""
+
+#. nCECE
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3159266\n"
+"help.text"
+msgid "Red"
+msgstr ""
+
+#. SiHeX
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3163807\n"
+"help.text"
+msgid "8388736"
+msgstr ""
+
+#. k8Grk
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3145150\n"
+"help.text"
+msgid "Magenta"
+msgstr ""
+
+#. EwomB
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3147002\n"
+"help.text"
+msgid "8421376"
+msgstr ""
+
+#. NaLsx
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3152778\n"
+"help.text"
+msgid "Yellow"
+msgstr ""
+
+#. mYZEc
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3150088\n"
+"help.text"
+msgid "8421504"
+msgstr ""
+
+#. bCKAK
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3159239\n"
+"help.text"
+msgid "White"
+msgstr ""
+
+#. XmwSs
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3150206\n"
+"help.text"
+msgid "12632256"
+msgstr ""
+
+#. UJkGm
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3149817\n"
+"help.text"
+msgid "Gray"
+msgstr ""
+
+#. w2HbR
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3150363\n"
+"help.text"
+msgid "255"
+msgstr ""
+
+#. oW4D4
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3154576\n"
+"help.text"
+msgid "Light blue"
+msgstr ""
+
+#. QnBYA
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3150367\n"
+"help.text"
+msgid "65280"
+msgstr ""
+
+#. GEu7u
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3150202\n"
+"help.text"
+msgid "Light green"
+msgstr ""
+
+#. SuV8z
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3154487\n"
+"help.text"
+msgid "65535"
+msgstr ""
+
+#. PJeZ6
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3151332\n"
+"help.text"
+msgid "Light cyan"
+msgstr ""
+
+#. aB3ck
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3148702\n"
+"help.text"
+msgid "16711680"
+msgstr ""
+
+#. pNTLp
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3153067\n"
+"help.text"
+msgid "Light red"
+msgstr ""
+
+#. eRFtZ
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3153912\n"
+"help.text"
+msgid "16711935"
+msgstr ""
+
+#. CC7de
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3159097\n"
+"help.text"
+msgid "Light magenta"
+msgstr ""
+
+#. DFANi
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3155266\n"
+"help.text"
+msgid "16776960"
+msgstr ""
+
+#. 8CMGd
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3157978\n"
+"help.text"
+msgid "Light yellow"
+msgstr ""
+
+#. uh5F4
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3153286\n"
+"help.text"
+msgid "16777215"
+msgstr ""
+
+#. JQFij
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3151302\n"
+"help.text"
+msgid "Transparent white"
+msgstr ""
+
+#. aGCSR
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id631529990528928\n"
+"help.text"
+msgid "Open <item type=\"menuitem\">Tools - Macros - Organize Dialogs</item> and select <item type=\"menuitem\">%PRODUCTNAME Dialogs</item> container."
+msgstr ""
+
+#. QFmDV
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id631529000528928\n"
+"help.text"
+msgid "Open <item type=\"menuitem\">Tools - Macros - %PRODUCTNAME Basic - Edit</item> and select <item type=\"menuitem\">Application Macros</item> container."
+msgstr ""
+
+#. 7wPgQ
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id971529072633266\n"
+"help.text"
+msgid "<variable id=\"basiclibrarynote\">This library must be loaded before execution. Execute the following statement before running any macro that uses this library:</variable>"
+msgstr ""
+
+#. 8ipLK
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id051920171018124524\n"
+"help.text"
+msgid "This constant, function or object is enabled with the statement <link href=\"text/sbasic/shared/03103350.xhp\" name=\"optionvbasupport\"><literal>Option VBASupport 1</literal></link> placed before the executable program code in a module."
+msgstr ""
+
+#. DYo4K
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3145172\n"
+"help.text"
+msgid "This statement must be added before the executable program code in a module."
+msgstr ""
+
+#. FVEx2
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139089682\n"
+"help.text"
+msgid "<variable id=\"functsyntax\">Syntax:</variable>"
+msgstr ""
+
+#. GePPP
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139087480\n"
+"help.text"
+msgid "<variable id=\"functvalue\">Return value:</variable>"
+msgstr ""
+
+#. WADQ4
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139084157\n"
+"help.text"
+msgid "<variable id=\"functparameters\">Parameters:</variable>"
+msgstr ""
+
+#. EFSA4
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139088233\n"
+"help.text"
+msgid "<variable id=\"functexample\">Example:</variable>"
+msgstr ""
+
+#. 3aa4B
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id191620312698501\n"
+"help.text"
+msgid "In Basic"
+msgstr ""
+
+#. BenDd
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id831620312769993\n"
+"help.text"
+msgid "In Python"
+msgstr ""
+
+#. AuYyY
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id701621038131185\n"
+"help.text"
+msgid "This method is only available for <emph>Basic</emph> scripts."
+msgstr ""
+
+#. Kk2av
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id701621038131336\n"
+"help.text"
+msgid "This method is only available for <emph>Python</emph> scripts."
+msgstr ""
+
+#. DmRoP
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id81621427048241\n"
+"help.text"
+msgid "This method requires the installation of the <link href=\"https://extensions.libreoffice.org/en/extensions/show/apso-alternative-script-organizer-for-python\" name=\"APSO Link\">APSO (Alternative Script Organizer for Python)</link> extension. In turn APSO requires the presence of %PRODUCTNAME Python scripting framework. If APSO or Python are missing, an error occurs."
+msgstr ""
+
+#. yJwvF
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id21624295605301\n"
+"help.text"
+msgid "This service is fully supported in both Basic and Python languages. All examples are expressed using the Basic programming language and can be easily converted to Python."
+msgstr ""
+
+#. TV2YL
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id161599082457466\n"
+"help.text"
+msgid "<variable id=\"stringfunctions\"><link href=\"text/sbasic/shared/03120300.xhp\" name=\"string functions\">String functions</link></variable>"
+msgstr ""
+
+#. CGSvh
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<variable id=\"VBA-Financial\"><link href=\"text/sbasic/shared/special_vba_func.xhp#VBAFinancial\">VBA financial functions</link></variable>"
+msgstr ""
+
+#. j4BMQ
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id06142017016837917\n"
+"help.text"
+msgid "<variable id=\"VBATimeAndDate\"><link href=\"text/sbasic/shared/special_vba_func.xhp#VBADateTime\">VBA Time and Date functions</link></variable>"
+msgstr ""
+
+#. 7Ua2W
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id06142017016837918\n"
+"help.text"
+msgid "<variable id=\"VBAIO\"><link href=\"text/sbasic/shared/special_vba_func.xhp#VBAIO\">VBA I/O functions</link></variable>"
+msgstr ""
+
+#. 6WpBf
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id06142017016837919\n"
+"help.text"
+msgid "<variable id=\"VBAMath\"><link href=\"text/sbasic/shared/special_vba_func.xhp#VBAMath\">VBA Mathematical functions</link></variable>"
+msgstr ""
+
+#. prz6h
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id06142017016837920\n"
+"help.text"
+msgid "<variable id=\"VBAObject\"><link href=\"text/sbasic/shared/special_vba_func.xhp#VBAObject\">VBA Object functions</link></variable>"
+msgstr ""
+
+#. SEjHR
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id3152869\n"
+"help.text"
+msgid "<variable id=\"errorcode\">Error codes:</variable>"
+msgstr ""
+
+#. FZz2o
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id315509599\n"
+"help.text"
+msgid "<variable id=\"err1\">1 An exception occurred</variable>"
+msgstr ""
+
+#. DKGkC
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3155095\n"
+"help.text"
+msgid "<variable id=\"err2\">2 Syntax error</variable>"
+msgstr ""
+
+#. YsmXG
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3149126\n"
+"help.text"
+msgid "<variable id=\"err3\">3 Return without Gosub</variable>"
+msgstr ""
+
+#. BWdtp
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3153976\n"
+"help.text"
+msgid "<variable id=\"err4\">4 Incorrect entry; please retry</variable>"
+msgstr ""
+
+#. JpK7p
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3150891\n"
+"help.text"
+msgid "<variable id=\"err5\">5 Invalid procedure call</variable>"
+msgstr ""
+
+#. 5FBva
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3159227\n"
+"help.text"
+msgid "<variable id=\"err6\">6 Overflow</variable>"
+msgstr ""
+
+#. Aesp7
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3154649\n"
+"help.text"
+msgid "<variable id=\"err7\">7 Not enough memory</variable>"
+msgstr ""
+
+#. ADAg2
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3150050\n"
+"help.text"
+msgid "<variable id=\"err8\">8 Array already dimensioned</variable>"
+msgstr ""
+
+#. RGkBU
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3148900\n"
+"help.text"
+msgid "<variable id=\"err9\">9 Index out of defined range</variable>"
+msgstr ""
+
+#. aGWmD
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3153806\n"
+"help.text"
+msgid "<variable id=\"err10\">10 Duplicate definition</variable>"
+msgstr ""
+
+#. yQDJd
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3146963\n"
+"help.text"
+msgid "<variable id=\"err11\">11 Division by zero</variable>"
+msgstr ""
+
+#. QNoHo
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3153013\n"
+"help.text"
+msgid "<variable id=\"err12\">12 Variable not defined</variable>"
+msgstr ""
+
+#. JA5Hz
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3155593\n"
+"help.text"
+msgid "<variable id=\"err13\">13 Data type mismatch</variable>"
+msgstr ""
+
+#. 4TqAx
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3151197\n"
+"help.text"
+msgid "<variable id=\"err14\">14 Invalid parameter</variable>"
+msgstr ""
+
+#. jdVyz
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3154710\n"
+"help.text"
+msgid "<variable id=\"err18\">18 Process interrupted by user</variable>"
+msgstr ""
+
+#. JLrsT
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3147504\n"
+"help.text"
+msgid "<variable id=\"err20\">20 Resume without error</variable>"
+msgstr ""
+
+#. GXk5T
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3145319\n"
+"help.text"
+msgid "<variable id=\"err28\">28 Not enough stack memory</variable>"
+msgstr ""
+
+#. FmFDo
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3146110\n"
+"help.text"
+msgid "<variable id=\"err35\">35 Sub-procedure or function procedure not defined</variable>"
+msgstr ""
+
+#. FV8Co
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3147246\n"
+"help.text"
+msgid "<variable id=\"err48\">48 Error loading DLL file</variable>"
+msgstr ""
+
+#. AUofE
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3146101\n"
+"help.text"
+msgid "<variable id=\"err49\">49 Wrong DLL call convention</variable>"
+msgstr ""
+
+#. gFqEp
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3153957\n"
+"help.text"
+msgid "<variable id=\"err51\">51 Internal error</variable>"
+msgstr ""
+
+#. BfDiD
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3154404\n"
+"help.text"
+msgid "<variable id=\"err52\">52 Invalid file name or file number</variable>"
+msgstr ""
+
+#. BxqWu
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3151338\n"
+"help.text"
+msgid "<variable id=\"err53\">53 File not found</variable>"
+msgstr ""
+
+#. hLWBB
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3147298\n"
+"help.text"
+msgid "<variable id=\"err54\">54 Incorrect file mode</variable>"
+msgstr ""
+
+#. vfktA
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3148747\n"
+"help.text"
+msgid "<variable id=\"err55\">55 File already open</variable>"
+msgstr ""
+
+#. 5U4Mf
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3145233\n"
+"help.text"
+msgid "<variable id=\"err57\">57 Device I/O error</variable>"
+msgstr ""
+
+#. JViEn
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3156399\n"
+"help.text"
+msgid "<variable id=\"err58\">58 File already exists</variable>"
+msgstr ""
+
+#. ECAdf
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3149324\n"
+"help.text"
+msgid "<variable id=\"err59\">59 Incorrect record length</variable>"
+msgstr ""
+
+#. dwGgg
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3147409\n"
+"help.text"
+msgid "<variable id=\"err61\">61 Disk or hard drive full</variable>"
+msgstr ""
+
+#. S3khY
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3149146\n"
+"help.text"
+msgid "<variable id=\"err62\">62 Reading exceeds EOF</variable>"
+msgstr ""
+
+#. jeGkc
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3150456\n"
+"help.text"
+msgid "<variable id=\"err63\">63 Incorrect record number</variable>"
+msgstr ""
+
+#. 2UVyw
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3146883\n"
+"help.text"
+msgid "<variable id=\"err67\">67 Too many files</variable>"
+msgstr ""
+
+#. Utuex
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3146818\n"
+"help.text"
+msgid "<variable id=\"err68\">68 Device not available</variable>"
+msgstr ""
+
+#. dRuHr
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3145225\n"
+"help.text"
+msgid "<variable id=\"err70\">70 Access denied</variable>"
+msgstr ""
+
+#. arFri
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3150372\n"
+"help.text"
+msgid "<variable id=\"err71\">71 Disk not ready</variable>"
+msgstr ""
+
+#. SCC7B
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3148894\n"
+"help.text"
+msgid "<variable id=\"err73\">73 Not implemented</variable>"
+msgstr ""
+
+#. iZW7f
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3152981\n"
+"help.text"
+msgid "<variable id=\"err74\">74 Renaming on different drives impossible</variable>"
+msgstr ""
+
+#. kTskL
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3149355\n"
+"help.text"
+msgid "<variable id=\"err75\">75 Path/file access error</variable>"
+msgstr ""
+
+#. uBBn2
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3150477\n"
+"help.text"
+msgid "<variable id=\"err76\">76 Path not found</variable>"
+msgstr ""
+
+#. RKFgh
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3154678\n"
+"help.text"
+msgid "<variable id=\"err91\">91 Object variable not set</variable>"
+msgstr ""
+
+#. zqsZE
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3149890\n"
+"help.text"
+msgid "<variable id=\"err93\">93 Invalid string pattern</variable>"
+msgstr ""
+
+#. ksvCu
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3146942\n"
+"help.text"
+msgid "<variable id=\"err94\">94 Use of zero not permitted</variable>"
+msgstr ""
+
+#. RYPAt
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469429\n"
+"help.text"
+msgid "<variable id=\"err250\">250 DDE Error</variable>"
+msgstr ""
+
+#. UfCnF
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469428\n"
+"help.text"
+msgid "<variable id=\"err280\">280 Awaiting response to DDE connection</variable>"
+msgstr ""
+
+#. xZB2C
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469427\n"
+"help.text"
+msgid "<variable id=\"err281\">281 No DDE channels available</variable>"
+msgstr ""
+
+#. SBNvn
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469426\n"
+"help.text"
+msgid "<variable id=\"err282\">282 No application responded to DDE connect initiation</variable>"
+msgstr ""
+
+#. FWhCT
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469425\n"
+"help.text"
+msgid "<variable id=\"err283\">283 Too many applications responded to DDE connect initiation</variable>"
+msgstr ""
+
+#. MrWKp
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469424\n"
+"help.text"
+msgid "<variable id=\"err284\">284 DDE channel locked</variable>"
+msgstr ""
+
+#. HBT2W
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469423\n"
+"help.text"
+msgid "<variable id=\"err285\">285 External application cannot execute DDE operation</variable>"
+msgstr ""
+
+#. c7CXR
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469422\n"
+"help.text"
+msgid "<variable id=\"err286\">286 Timeout while waiting for DDE response</variable>"
+msgstr ""
+
+#. CjAQV
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469421\n"
+"help.text"
+msgid "<variable id=\"err287\">287 user pressed ESCAPE during DDE operation</variable>"
+msgstr ""
+
+#. tgG8B
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469420\n"
+"help.text"
+msgid "<variable id=\"err288\">288 External application busy</variable>"
+msgstr ""
+
+#. VfisP
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469419\n"
+"help.text"
+msgid "<variable id=\"err289\">289 DDE operation without data</variable>"
+msgstr ""
+
+#. y9Et9
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469418\n"
+"help.text"
+msgid "<variable id=\"err290\">290 Data are in wrong format</variable>"
+msgstr ""
+
+#. JNNcv
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469417\n"
+"help.text"
+msgid "<variable id=\"err291\">291 External application has been terminated</variable>"
+msgstr ""
+
+#. DGDBs
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469416\n"
+"help.text"
+msgid "<variable id=\"err292\">292 DDE connection interrupted or modified</variable>"
+msgstr ""
+
+#. EAqMA
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469415\n"
+"help.text"
+msgid "<variable id=\"err293\">293 DDE method invoked with no channel open</variable>"
+msgstr ""
+
+#. MSG8v
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469414\n"
+"help.text"
+msgid "<variable id=\"err294\">294 Invalid DDE link format</variable>"
+msgstr ""
+
+#. TPbqp
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469413\n"
+"help.text"
+msgid "<variable id=\"err295\">295 DDE message has been lost</variable>"
+msgstr ""
+
+#. SaGET
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469412\n"
+"help.text"
+msgid "<variable id=\"err296\">296 Paste link already performed</variable>"
+msgstr ""
+
+#. FYYN7
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469411\n"
+"help.text"
+msgid "<variable id=\"err297\">297 Link mode cannot be set due to invalid link topic</variable>"
+msgstr ""
+
+#. 4FUFN
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469410\n"
+"help.text"
+msgid "<variable id=\"err298\">298 DDE requires the DDEML.DLL file</variable>"
+msgstr ""
+
+#. wCkxq
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3150028\n"
+"help.text"
+msgid "<variable id=\"err323\">323 Module cannot be loaded; invalid format</variable>"
+msgstr ""
+
+#. Kqnuc
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3148434\n"
+"help.text"
+msgid "<variable id=\"err341\">341 Invalid object index</variable>"
+msgstr ""
+
+#. ZLqAy
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3143219\n"
+"help.text"
+msgid "<variable id=\"err366\">366 Object is not available</variable>"
+msgstr ""
+
+#. 9THvG
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3144744\n"
+"help.text"
+msgid "<variable id=\"err380\">380 Incorrect property value</variable>"
+msgstr ""
+
+#. GVG9j
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3147420\n"
+"help.text"
+msgid "<variable id=\"err382\">382 This property is read-only</variable>"
+msgstr ""
+
+#. 4ZfRc
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3147472\n"
+"help.text"
+msgid "<variable id=\"err394\">394 This property is write-only</variable>"
+msgstr ""
+
+#. 8HyzA
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3148583\n"
+"help.text"
+msgid "<variable id=\"err420\">420 Invalid object reference</variable>"
+msgstr ""
+
+#. JmJEM
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3153329\n"
+"help.text"
+msgid "<variable id=\"err423\">423 Property or method not found</variable>"
+msgstr ""
+
+#. QcFEv
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3148738\n"
+"help.text"
+msgid "<variable id=\"err424\">424 Object required</variable>"
+msgstr ""
+
+#. 5JYN2
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3159084\n"
+"help.text"
+msgid "<variable id=\"err425\">425 Invalid use of an object</variable>"
+msgstr ""
+
+#. RRiUM
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3146806\n"
+"help.text"
+msgid "<variable id=\"err430\">430 OLE Automation is not supported by this object</variable>"
+msgstr ""
+
+#. FdF9E
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3146130\n"
+"help.text"
+msgid "<variable id=\"err438\">438 This property or method is not supported by the object</variable>"
+msgstr ""
+
+#. FGpys
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3154374\n"
+"help.text"
+msgid "<variable id=\"err440\">440 OLE automation error</variable>"
+msgstr ""
+
+#. VbSM2
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3149685\n"
+"help.text"
+msgid "<variable id=\"err445\">445 This action is not supported by given object</variable>"
+msgstr ""
+
+#. AJaz2
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3150282\n"
+"help.text"
+msgid "<variable id=\"err446\">446 Named arguments are not supported by given object</variable>"
+msgstr ""
+
+#. hPPNr
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3150142\n"
+"help.text"
+msgid "<variable id=\"err447\">447 The current locale setting is not supported by the given object</variable>"
+msgstr ""
+
+#. B5qgM
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3152771\n"
+"help.text"
+msgid "<variable id=\"err448\">448 Named argument not found</variable>"
+msgstr ""
+
+#. uA2bA
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3145145\n"
+"help.text"
+msgid "<variable id=\"err449\">449 Argument is not optional</variable>"
+msgstr ""
+
+#. jwUa7
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3154399\n"
+"help.text"
+msgid "<variable id=\"err450\">450 Invalid number of arguments</variable>"
+msgstr ""
+
+#. 9LiNF
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3146137\n"
+"help.text"
+msgid "<variable id=\"err451\">451 Object is not a list</variable>"
+msgstr ""
+
+#. CRFBJ
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3149507\n"
+"help.text"
+msgid "<variable id=\"err452\">452 Invalid ordinal number</variable>"
+msgstr ""
+
+#. 6aDe2
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3154566\n"
+"help.text"
+msgid "<variable id=\"err453\">453 Specified DLL function not found</variable>"
+msgstr ""
+
+#. qAGfZ
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3145595\n"
+"help.text"
+msgid "<variable id=\"err460\">460 Invalid clipboard format</variable>"
+msgstr ""
+
+#. xEbv8
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455951\n"
+"help.text"
+msgid "<variable id=\"err951\">951 Unexpected symbol:</variable>"
+msgstr ""
+
+#. tGht6
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455952\n"
+"help.text"
+msgid "<variable id=\"err952\">952 Expected:</variable>"
+msgstr ""
+
+#. bYbvt
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455953\n"
+"help.text"
+msgid "<variable id=\"err953\">953 Symbol expected</variable>"
+msgstr ""
+
+#. F58GE
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455954\n"
+"help.text"
+msgid "<variable id=\"err954\">954 Variable expected</variable>"
+msgstr ""
+
+#. ovp3T
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455955\n"
+"help.text"
+msgid "<variable id=\"err955\">955 Label expected</variable>"
+msgstr ""
+
+#. vN82g
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455956\n"
+"help.text"
+msgid "<variable id=\"err956\">956 Value cannot be applied</variable>"
+msgstr ""
+
+#. v4YL6
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455957\n"
+"help.text"
+msgid "<variable id=\"err957\">957 Variable already defined</variable>"
+msgstr ""
+
+#. nSU7c
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455958\n"
+"help.text"
+msgid "<variable id=\"err958\">958 Sub procedure or function procedure already defined</variable>"
+msgstr ""
+
+#. FVyYw
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455959\n"
+"help.text"
+msgid "<variable id=\"err959\">959 Label already defined</variable>"
+msgstr ""
+
+#. wqmVZ
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455960\n"
+"help.text"
+msgid "<variable id=\"err960\">960 Variable not found</variable>"
+msgstr ""
+
+#. 3xV2f
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455961\n"
+"help.text"
+msgid "<variable id=\"err961\">961 Array or procedure not found</variable>"
+msgstr ""
+
+#. WvEZU
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455962\n"
+"help.text"
+msgid "<variable id=\"err962\">962 Procedure not found</variable>"
+msgstr ""
+
+#. LZQUF
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455963\n"
+"help.text"
+msgid "<variable id=\"err963\">963 Label undefined</variable>"
+msgstr ""
+
+#. nCn66
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455964\n"
+"help.text"
+msgid "<variable id=\"err964\">964 Unknown data type</variable>"
+msgstr ""
+
+#. G4CNC
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455965\n"
+"help.text"
+msgid "<variable id=\"err965\">965 Exit expected</variable>"
+msgstr ""
+
+#. Gix57
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455966\n"
+"help.text"
+msgid "<variable id=\"err966\">966 Statement block still open: missing</variable>"
+msgstr ""
+
+#. tXAC8
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455967\n"
+"help.text"
+msgid "<variable id=\"err967\">967 Parentheses do not match</variable>"
+msgstr ""
+
+#. BjgAZ
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455968\n"
+"help.text"
+msgid "<variable id=\"err968\">968 Symbol already defined differently</variable>"
+msgstr ""
+
+#. v3YUD
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455969\n"
+"help.text"
+msgid "<variable id=\"err969\">969 Parameters do not correspond to procedure</variable>"
+msgstr ""
+
+#. WWM2a
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455970\n"
+"help.text"
+msgid "<variable id=\"err970\">970 Invalid character in number</variable>"
+msgstr ""
+
+#. GvBvK
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455971\n"
+"help.text"
+msgid "<variable id=\"err971\">971 Array must be dimensioned</variable>"
+msgstr ""
+
+#. rhQJE
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455972\n"
+"help.text"
+msgid "<variable id=\"err972\">972 Else/Endif without If</variable>"
+msgstr ""
+
+#. RBFDa
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455973\n"
+"help.text"
+msgid "<variable id=\"err973\">973 not allowed within a procedure</variable>"
+msgstr ""
+
+#. MBgDF
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455974\n"
+"help.text"
+msgid "<variable id=\"err974\">974 not allowed outside a procedure</variable>"
+msgstr ""
+
+#. FBV3n
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455975\n"
+"help.text"
+msgid "<variable id=\"err975\">975 Dimension specifications do not match</variable>"
+msgstr ""
+
+#. nwNaJ
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455976\n"
+"help.text"
+msgid "<variable id=\"err976\">976 Unknown option:</variable>"
+msgstr ""
+
+#. jujW4
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455977\n"
+"help.text"
+msgid "<variable id=\"err977\">977 Constant redefined</variable>"
+msgstr ""
+
+#. WdYAj
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455978\n"
+"help.text"
+msgid "<variable id=\"err978\">978 Program too large</variable>"
+msgstr ""
+
+#. yhBbE
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455979\n"
+"help.text"
+msgid "<variable id=\"err979\">979 Strings or arrays not permitted</variable>"
+msgstr ""
+
+#. 795cp
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455980\n"
+"help.text"
+msgid "<variable id=\"err1000\">1000 Object does not have this property</variable>"
+msgstr ""
+
+#. 2Pmyz
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455981\n"
+"help.text"
+msgid "<variable id=\"err1001\">1001 Object does not have this method</variable>"
+msgstr ""
+
+#. XDhUD
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455982\n"
+"help.text"
+msgid "<variable id=\"err1002\">1002 Required argument lacking</variable>"
+msgstr ""
+
+#. imBTP
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455983\n"
+"help.text"
+msgid "<variable id=\"err1003\">1003 Invalid number of arguments</variable>"
+msgstr ""
+
+#. yRbzS
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455984\n"
+"help.text"
+msgid "<variable id=\"err1004\">1004 Error executing a method</variable>"
+msgstr ""
+
+#. sjbZK
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455985\n"
+"help.text"
+msgid "<variable id=\"err1005\">1005 Unable to set property</variable>"
+msgstr ""
+
+#. jDyKo
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455986\n"
+"help.text"
+msgid "<variable id=\"err1006\">1006 Unable to determine property</variable>"
+msgstr ""
+
+#. wJjwK
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Programming with $[officename] Basic"
+msgstr ""
+
+#. igduS
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
+"hd_id3156027\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 ""
+
+#. rPjbv
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
+"par_id3153708\n"
+"help.text"
+msgid "This is where you find general information about working with macros and $[officename] Basic."
+msgstr ""
+
+#. H4YyN
+#: 01010210.xhp
+msgctxt ""
+"01010210.xhp\n"
+"tit\n"
+"help.text"
+msgid "Basics"
+msgstr ""
+
+#. KFtfz
+#: 01010210.xhp
+msgctxt ""
+"01010210.xhp\n"
+"bm_id4488967\n"
+"help.text"
+msgid "<bookmark_value>fundamentals</bookmark_value><bookmark_value>subroutines</bookmark_value><bookmark_value>variables;global and local</bookmark_value><bookmark_value>modules;subroutines and functions</bookmark_value>"
+msgstr ""
+
+#. 8jyfu
+#: 01010210.xhp
+msgctxt ""
+"01010210.xhp\n"
+"hd_id3154927\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/01010210.xhp\" name=\"Basics\">Basics</link>"
+msgstr ""
+
+#. WiqRM
+#: 01010210.xhp
+msgctxt ""
+"01010210.xhp\n"
+"par_id3156023\n"
+"help.text"
+msgid "This section provides the fundamentals for working with $[officename] Basic."
+msgstr ""
+
+#. Qa4R2
+#: 01010210.xhp
+msgctxt ""
+"01010210.xhp\n"
+"par_id3147560\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 ""
+
+#. x5DbE
+#: 01010210.xhp
+msgctxt ""
+"01010210.xhp\n"
+"par_id314756320\n"
+"help.text"
+msgid "Some restrictions apply for the names of your public variables, subs, and functions. You must not use the same name as one of the modules of the same library."
+msgstr ""
+
+#. iB8iF
+#: 01010210.xhp
+msgctxt ""
+"01010210.xhp\n"
+"hd_id3150398\n"
+"help.text"
+msgid "What is a Sub?"
+msgstr ""
+
+#. 3bNDt
+#: 01010210.xhp
+msgctxt ""
+"01010210.xhp\n"
+"par_id3148797\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 ""
+
+#. ovUK9
+#: 01010210.xhp
+msgctxt ""
+"01010210.xhp\n"
+"par_id3150868\n"
+"help.text"
+msgid "DoSomethingWithTheValues(MyFirstValue,MySecondValue)"
+msgstr ""
+
+#. wAdhR
+#: 01010210.xhp
+msgctxt ""
+"01010210.xhp\n"
+"hd_id3156282\n"
+"help.text"
+msgid "What is a Function?"
+msgstr ""
+
+#. JCFWd
+#: 01010210.xhp
+msgctxt ""
+"01010210.xhp\n"
+"par_id3156424\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 ""
+
+#. Z8egk
+#: 01010210.xhp
+msgctxt ""
+"01010210.xhp\n"
+"par_id3146985\n"
+"help.text"
+msgid "MySecondValue = myFunction(MyFirstValue)"
+msgstr ""
+
+#. YtCFH
+#: 01010210.xhp
+msgctxt ""
+"01010210.xhp\n"
+"hd_id3153364\n"
+"help.text"
+msgid "Global and local variables"
+msgstr ""
+
+#. kXGbg
+#: 01010210.xhp
+msgctxt ""
+"01010210.xhp\n"
+"par_id3151112\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 ""
+
+#. dKN75
+#: 01010210.xhp
+msgctxt ""
+"01010210.xhp\n"
+"par_id3154012\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 ""
+
+#. CNn7F
+#: 01010210.xhp
+msgctxt ""
+"01010210.xhp\n"
+"hd_id3150010\n"
+"help.text"
+msgid "Structuring"
+msgstr ""
+
+#. XbRBP
+#: 01010210.xhp
+msgctxt ""
+"01010210.xhp\n"
+"par_id3153727\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 ""
+
+#. g2VDj
+#: 01010210.xhp
+msgctxt ""
+"01010210.xhp\n"
+"par_id3152578\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 ""
+
+#. FAmpm
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Syntax"
+msgstr ""
+
+#. LVCBL
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3148946\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/01020000.xhp\" name=\"Syntax\">Syntax</link>"
+msgstr ""
+
+#. 85FmX
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3150793\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 ""
+
+#. r9HGQ
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"tit\n"
+"help.text"
+msgid "Using Variables"
+msgstr ""
+
+#. JBADw
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"bm_id3149346\n"
+"help.text"
+msgid "<bookmark_value>names of variables</bookmark_value> <bookmark_value>variables; using</bookmark_value> <bookmark_value>types of variables</bookmark_value> <bookmark_value>declaring variables</bookmark_value> <bookmark_value>values;of variables</bookmark_value> <bookmark_value>literals;date</bookmark_value> <bookmark_value>literals;integer</bookmark_value> <bookmark_value>literals;floating point</bookmark_value> <bookmark_value>constants</bookmark_value> <bookmark_value>arrays;declaring</bookmark_value> <bookmark_value>defining;constants</bookmark_value>"
+msgstr ""
+
+#. VAkCC
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3149346\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/01020100.xhp\" name=\"Using Variables\">Using Variables</link>"
+msgstr ""
+
+#. invc4
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3154346\n"
+"help.text"
+msgid "The following describes the basic use of variables in $[officename] Basic."
+msgstr ""
+
+#. Chi9C
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3153361\n"
+"help.text"
+msgid "Naming Conventions for Variable Identifiers"
+msgstr ""
+
+#. eybR7
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3148797\n"
+"help.text"
+msgid "A variable name can consist of a maximum of 255 characters. The first character of a variable name <emph>must</emph> be a letter A-Z or a-z. Numbers can also be used in a variable name, but punctuation symbols and special characters are not permitted, with exception of the underscore character (\"_\"). In $[officename] Basic variable identifiers are not case-sensitive. Variable names may contain spaces but must be enclosed in square brackets if they do."
+msgstr ""
+
+#. zGjKD
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3156422\n"
+"help.text"
+msgid "Examples for variable identifiers:"
+msgstr ""
+
+#. 72xB5
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_idm1341272896\n"
+"help.text"
+msgid "MyNumber=5 'Correct'"
+msgstr ""
+
+#. BQYCs
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_idm1341267456\n"
+"help.text"
+msgid "MyNumber5=15 'Correct'"
+msgstr ""
+
+#. Pvdzr
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_idm1341262016\n"
+"help.text"
+msgid "MyNumber_5=20 'Correct'"
+msgstr ""
+
+#. JfvAk
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_idm1341256576\n"
+"help.text"
+msgid "My Number=20 'Not valid, variable with space must be enclosed in square brackets'"
+msgstr ""
+
+#. 5FT2u
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_idm1341251088\n"
+"help.text"
+msgid "[My Number]=12 'Correct'"
+msgstr ""
+
+#. efEQG
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_idm1341245648\n"
+"help.text"
+msgid "DéjàVu=25 'Not valid, special characters are not allowed'"
+msgstr ""
+
+#. 4AnyZ
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_idm1341240176\n"
+"help.text"
+msgid "5MyNumber=12 'Not valid, variable may not begin with a number'"
+msgstr ""
+
+#. BxPtT
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_idm1341234704\n"
+"help.text"
+msgid "Number,Mine=12 'Not valid, punctuation marks are not allowed'"
+msgstr ""
+
+#. yqbu6
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3146317\n"
+"help.text"
+msgid "Declaring Variables"
+msgstr ""
+
+#. 2nT7C
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3150299\n"
+"help.text"
+msgid "In $[officename] Basic you don't need to declare variables explicitly. A variable declaration can be performed with the <emph>Dim</emph> statement. You can declare more than one variable at a time by separating the names with a comma. To define the variable type, use either a type-declaration sign after the name, or the appropriate key word."
+msgstr ""
+
+#. aLFHc
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3154118\n"
+"help.text"
+msgid "Examples for variable declarations:"
+msgstr ""
+
+#. Jqt8W
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_idm1341222320\n"
+"help.text"
+msgid "Dim a$ 'Declares the variable \"a\" as a String'"
+msgstr ""
+
+#. ZGwfA
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_idm1341216864\n"
+"help.text"
+msgid "Dim a As String 'Declares the variable \"a\" as a String'"
+msgstr ""
+
+#. TBkJG
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_idm1341211408\n"
+"help.text"
+msgid "Dim a$, b As Integer 'Declares one variable as a String and one as an Integer'"
+msgstr ""
+
+#. EVtEN
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_idm1341205936\n"
+"help.text"
+msgid "Dim c As Boolean 'Declares c as a Boolean variable that can be TRUE or FALSE'"
+msgstr ""
+
+#. PWdLi
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3144770\n"
+"help.text"
+msgid "Once you have declared a variable as a certain type, you cannot declare the variable under the same name again as a different type!"
+msgstr ""
+
+#. V5Csc
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id421619551219763\n"
+"help.text"
+msgid "When you declare multiple variables in a single line of code you need to specify the type of each variable. If the type of a variable is not explicitly specified, then Basic will assume that the variable is of the <emph>Variant</emph> type."
+msgstr ""
+
+#. FzKND
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"bas_id321619555442706\n"
+"help.text"
+msgid "' Both variables \"a\" and \"b\" are of the Integer type"
+msgstr ""
+
+#. NCE7F
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"bas_id451619555463988\n"
+"help.text"
+msgid "' Variable \"c\" is a Variant and \"d\" is an Integer"
+msgstr ""
+
+#. fsaNa
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"bas_id161619555482237\n"
+"help.text"
+msgid "' A variable can also be explicitly declared as a Variant"
+msgstr ""
+
+#. uQD9L
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id521619551687371\n"
+"help.text"
+msgid "The <emph>Variant</emph> type is a special data type that can store any kind of value. To learn more, refer to the section <link href=\"text/sbasic/shared/01020100.xhp#VariantTypeH2\" name=\"Variant Type\">The Variant type</link> below."
+msgstr ""
+
+#. RENXG
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3149331\n"
+"help.text"
+msgid "Forcing Variable Declarations"
+msgstr ""
+
+#. PcGki
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3149443\n"
+"help.text"
+msgid "To force declaration of variables, use the following command:"
+msgstr ""
+
+#. mmoKC
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3155072\n"
+"help.text"
+msgid "The <emph>Option Explicit</emph> statement has to be the first line in the module, before the first SUB. Generally, only arrays need to be declared explicitly. All other variables are declared according to the type-declaration character, or - if omitted - as the default type <emph>Single</emph>."
+msgstr ""
+
+#. TSzYC
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3154614\n"
+"help.text"
+msgid "Variable Types"
+msgstr ""
+
+#. T5to5
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3155383\n"
+"help.text"
+msgid "$[officename] Basic supports four variable classes:"
+msgstr ""
+
+#. gCREB
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3153972\n"
+"help.text"
+msgid "<emph>Numeric</emph> variables can contain number values. Some variables are used to store large or small numbers, and others are used for floating-point or fractional numbers."
+msgstr ""
+
+#. EXzBL
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3159226\n"
+"help.text"
+msgid "<emph>String</emph> variables contain character strings."
+msgstr ""
+
+#. BVsAf
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3145217\n"
+"help.text"
+msgid "<emph>Boolean</emph> variables contain either the TRUE or the FALSE value."
+msgstr ""
+
+#. XrKGs
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3154762\n"
+"help.text"
+msgid "<emph>Object</emph> variables can store objects of various types, like tables and documents within a document."
+msgstr ""
+
+#. Hh3P9
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3153805\n"
+"help.text"
+msgid "Integer Variables"
+msgstr ""
+
+#. AUDGn
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3146966\n"
+"help.text"
+msgid "Integer variables range from -32768 to 32767. If you assign a floating-point value to an integer variable, the decimal places are rounded to the next integer. Integer variables are rapidly calculated in procedures and are suitable for counter variables in loops. An integer variable only requires two bytes of memory. \"%\" is the type-declaration character."
+msgstr ""
+
+#. QyzN2
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3147546\n"
+"help.text"
+msgid "Long Integer Variables"
+msgstr ""
+
+#. p4rdf
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3151193\n"
+"help.text"
+msgid "Long integer variables range from -2147483648 to 2147483647. If you assign a floating-point value to a long integer variable, the decimal places are rounded to the next integer. Long integer variables are rapidly calculated in procedures and are suitable for counter variables in loops for large values. A long integer variable requires four bytes of memory. \"&\" is the type-declaration character."
+msgstr ""
+
+#. uHUTW
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id7596972\n"
+"help.text"
+msgid "Decimal Variables"
+msgstr ""
+
+#. 7CApW
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id2649311\n"
+"help.text"
+msgid "Decimal variables can take positive or negative numbers or zero. Accuracy is up to 29 digits."
+msgstr ""
+
+#. 8YVn3
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id7617114\n"
+"help.text"
+msgid "You can use plus (+) or minus (-) signs as prefixes for decimal numbers (with or without spaces)."
+msgstr ""
+
+#. fT2Nz
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id1593676\n"
+"help.text"
+msgid "If a decimal number is assigned to an integer variable, %PRODUCTNAME Basic rounds the figure up or down."
+msgstr ""
+
+#. XAEPz
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3147500\n"
+"help.text"
+msgid "Single Variables"
+msgstr ""
+
+#. VAptr
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3153070\n"
+"help.text"
+msgid "Single variables can take positive or negative values ranging from 3.402823 x 10E38 to 1.401298 x 10E-45. Single variables are floating-point variables, in which the decimal precision decreases as the non-decimal part of the number increases. Single variables are suitable for mathematical calculations of average precision. Calculations require more time than for Integer variables, but are faster than calculations with Double variables. A Single variable requires 4 bytes of memory. The type-declaration character is \"!\"."
+msgstr ""
+
+#. X2BBe
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3155753\n"
+"help.text"
+msgid "Double Variables"
+msgstr ""
+
+#. WhxRy
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3150953\n"
+"help.text"
+msgid "Double variables can take positive or negative values ranging from 1.79769313486232 x 10E308 to 4.94065645841247 x 10E-324. Double variables are floating-point variables, in which the decimal precision decreases as the non-decimal part of the number increases. Double variables are suitable for precise calculations. Calculations require more time than for Single variables. A Double variable requires 8 bytes of memory. The type-declaration character is \"#\"."
+msgstr ""
+
+#. KYBFy
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_idm1341130144\n"
+"help.text"
+msgid "Dim Variable#"
+msgstr ""
+
+#. vFZcZ
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3155747\n"
+"help.text"
+msgid "Currency Variables"
+msgstr ""
+
+#. 2YVCy
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3153337\n"
+"help.text"
+msgid "Currency variables are internally stored as 64-bit numbers (8 Bytes) and displayed as a fixed-decimal number with 15 non-decimal and 4 decimal places. The values range from -922337203685477.5808 to +922337203685477.5807. Currency variables are used to calculate currency values with a high precision. The type-declaration character is \"@\"."
+msgstr ""
+
+#. rs7qz
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id301576839713868\n"
+"help.text"
+msgid "Literals for integers"
+msgstr ""
+
+#. PTiRZ
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id1001576839723156\n"
+"help.text"
+msgid "Numbers can be encoded using octal and hexadecimal forms."
+msgstr ""
+
+#. nGGUD
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3148742\n"
+"help.text"
+msgid "String Variables"
+msgstr ""
+
+#. zes9e
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3151393\n"
+"help.text"
+msgid "String variables can hold character strings with up to 2,147,483,648 characters. Each character is stored as the corresponding Unicode value. String variables are suitable for word processing within programs and for temporary storage of any non-printable character up to a maximum length of 2 Gbytes. The memory required for storing string variables depends on the number of characters in the variable. The type-declaration character is \"$\"."
+msgstr ""
+
+#. RBcLt
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id381599081637549\n"
+"help.text"
+msgid "In BASIC String functions, the first character of the string has index 1."
+msgstr ""
+
+#. wDbuF
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3150534\n"
+"help.text"
+msgid "Boolean Variables"
+msgstr ""
+
+#. FFBTs
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3145632\n"
+"help.text"
+msgid "Boolean variables store only one of two values: TRUE or FALSE. A number 0 evaluates to FALSE, every other value evaluates to TRUE."
+msgstr ""
+
+#. wpb86
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3149722\n"
+"help.text"
+msgid "Date Variables"
+msgstr ""
+
+#. GgWky
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3159116\n"
+"help.text"
+msgid "Date variables can only contain dates and time values stored in an internal format. Values assigned to Date variables with <link href=\"text/sbasic/shared/03030101.xhp\" name=\"Dateserial\"><emph>Dateserial</emph></link>, <link href=\"text/sbasic/shared/03030102.xhp\" name=\"Datevalue\"><emph>Datevalue</emph></link>, <link href=\"text/sbasic/shared/03030205.xhp\" name=\"Timeserial\"><emph>Timeserial</emph></link> or <link href=\"text/sbasic/shared/03030206.xhp\" name=\"Timevalue\"><emph>Timevalue</emph></link> are automatically converted to the internal format. Date-variables are converted to normal numbers by using the <link href=\"text/sbasic/shared/03030103.xhp\" name=\"Day\"><emph>Day</emph></link>, <link href=\"text/sbasic/shared/03030104.xhp\" name=\"Month\"><emph>Month</emph></link>, <link href=\"text/sbasic/shared/03030106.xhp\" name=\"Year\"><emph>Year</emph></link> or the <link href=\"text/sbasic/shared/03030201.xhp\" name=\"Hour\"><emph>Hour</emph></link>, <link href=\"text/sbasic/shared/03030202.xhp\" name=\"Minute\"><emph>Minute</emph></link>, <link href=\"text/sbasic/shared/03030204.xhp\" name=\"Second\"><emph>Second</emph></link> function. The internal format enables a comparison of date/time values by calculating the difference between two numbers. These variables can only be declared with the key word <emph>Date</emph>."
+msgstr ""
+
+#. RzVub
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"bm_id3150669\n"
+"help.text"
+msgid "<bookmark_value>ampersand symbol; in literal notation</bookmark_value> <bookmark_value>literals;hexadecimal</bookmark_value> <bookmark_value>literals;octal</bookmark_value> <bookmark_value>literals;&h notation</bookmark_value> <bookmark_value>literals;&o notation</bookmark_value>"
+msgstr ""
+
+#. x883R
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_DateLiterals\n"
+"help.text"
+msgid "Literals for Dates"
+msgstr ""
+
+#. 5FGDA
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id151616083357363\n"
+"help.text"
+msgid "Date literals allow to specify unambiguous date variables that are independent from the current language. Literals are enclosed between hash signs <literal>#</literal>. Possible formats are:"
+msgstr ""
+
+#. pCPWV
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"bm_id601619552599885\n"
+"help.text"
+msgid "<bookmark_value>The Variant type</bookmark_value> <bookmark_value>The Any type</bookmark_value>"
+msgstr ""
+
+#. mPKPe
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"VariantTypeH2\n"
+"help.text"
+msgid "The Variant type"
+msgstr ""
+
+#. gnP2t
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id1001619552129323\n"
+"help.text"
+msgid "Variables declared as <emph>Variant</emph> can handle any data type. This means that the actual data type is defined during runtime as a value is assigned to the variable."
+msgstr ""
+
+#. kKQzr
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id631619552417188\n"
+"help.text"
+msgid "There are three main ways to create a <emph>Variant</emph> variable, as shown below:"
+msgstr ""
+
+#. ZTswL
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"bas_id751619554900163\n"
+"help.text"
+msgid "Dim varA ' The type is not specified, hence the variable is a Variant"
+msgstr ""
+
+#. 3mWEB
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"bas_id181619554965451\n"
+"help.text"
+msgid "Dim varB as Variant ' The variable is explicitly declared as a Variant"
+msgstr ""
+
+#. vEpTz
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"bas_id371619554853094\n"
+"help.text"
+msgid "varC = \"abc\" ' Previously undeclared variables are treated as Variants"
+msgstr ""
+
+#. PDFED
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id631619552417343\n"
+"help.text"
+msgid "The example below uses the <link href=\"text/sbasic/shared/03103600.xhp\" name=\"TypeName function\">TypeName function</link> to show how the type of a <emph>Variant</emph> variable changes upon assignment."
+msgstr ""
+
+#. smtqw
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id141619553442668\n"
+"help.text"
+msgid "A <emph>Variant</emph> variable is initialized with the <link href=\"text/sbasic/shared/03040000.xhp#objectconstants\" name=\" object constants\">Empty</link> special data type. You can use the <link href=\"text/sbasic/shared/03102400.xhp\" name=\"IsEmpty function\">IsEmpty function</link> to test if a variable is an <emph>Empty Variant</emph>."
+msgstr ""
+
+#. aervF
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id541619552755706\n"
+"help.text"
+msgid "You can also use the keyword <emph>Any</emph> to declare a variable as a <emph>Variant</emph>. However, <emph>Any</emph> is deprecated and is available for backward compatibility."
+msgstr ""
+
+#. 74VtP
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id711619622934043\n"
+"help.text"
+msgid "Arguments with type <emph>Variant</emph> or <emph>Any</emph> passed in function calls are not checked for their types."
+msgstr ""
+
+#. qFpUB
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"bas_id141619552837486\n"
+"help.text"
+msgid "Dim myVar As Any ' Variable \"myVar\" is a Variant"
+msgstr ""
+
+#. kGGKi
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3148732\n"
+"help.text"
+msgid "Initial Variable Values"
+msgstr ""
+
+#. qkLpw
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3154549\n"
+"help.text"
+msgid "As soon as the variable has been declared, it is automatically set to the \"Null\" value. Note the following conventions:"
+msgstr ""
+
+#. L82ms
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3143222\n"
+"help.text"
+msgid "<emph>Numeric</emph> variables are automatically assigned the value \"0\" as soon as they are declared."
+msgstr ""
+
+#. XETAf
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3150693\n"
+"help.text"
+msgid "<emph>Date variables</emph> are assigned the value 0 internally; equivalent to converting the value to \"0\" with the <link href=\"text/sbasic/shared/03030103.xhp\" name=\"Day\"><emph>Day</emph></link>, <link href=\"text/sbasic/shared/03030104.xhp\" name=\"Month\"><emph>Month</emph></link>, <link href=\"text/sbasic/shared/03030106.xhp\" name=\"Year\"><emph>Year</emph></link> or the <link href=\"text/sbasic/shared/03030201.xhp\" name=\"Hour\"><emph>Hour</emph></link>, <link href=\"text/sbasic/shared/03030202.xhp\" name=\"Minute\"><emph>Minute</emph></link>, <link href=\"text/sbasic/shared/03030204.xhp\" name=\"Second\"><emph>Second</emph></link> function."
+msgstr ""
+
+#. WiXVw
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3154807\n"
+"help.text"
+msgid "<emph>String variables</emph> are assigned an empty-string (\"\") when they are declared."
+msgstr ""
+
+#. Btv3D
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3153936\n"
+"help.text"
+msgid "Arrays"
+msgstr ""
+
+#. M9Kos
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3148736\n"
+"help.text"
+msgid "$[officename] Basic knows one- or multi-dimensional arrays, defined by a specified variable type. Arrays are suitable for editing lists and tables in programs. Individual elements of an array can be addressed through a numeric index."
+msgstr ""
+
+#. s9WFi
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3149546\n"
+"help.text"
+msgid "Arrays <emph>must</emph> be declared with the <emph>Dim</emph> statement. There are several ways to define the index range of an array:"
+msgstr ""
+
+#. w9moW
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_idm1341065280\n"
+"help.text"
+msgid "Dim Text$(20) '21 elements numbered from 0 to 20'"
+msgstr ""
+
+#. Tpkw3
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_idm1341059776\n"
+"help.text"
+msgid "Dim Text$(5,4) '30 elements (a matrix of 6 x 5 elements)'"
+msgstr ""
+
+#. qZxBE
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_idm1341054256\n"
+"help.text"
+msgid "Dim Text$(5 To 25) '21 elements numbered from 5 to 25'"
+msgstr ""
+
+#. NfXEB
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_idm1341048752\n"
+"help.text"
+msgid "Dim Text$(-15 To 5) '21 elements (including 0), numbered from -15 to 5'"
+msgstr ""
+
+#. 6iBW4
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3153005\n"
+"help.text"
+msgid "The index range can include positive as well as negative numbers."
+msgstr ""
+
+#. wBxdC
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3154507\n"
+"help.text"
+msgid "Constants"
+msgstr ""
+
+#. DPDnQ
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3156357\n"
+"help.text"
+msgid "Constants have a fixed value. They are only defined once in the program and cannot be redefined later:"
+msgstr ""
+
+#. rKYeH
+#: 01020200.xhp
+msgctxt ""
+"01020200.xhp\n"
+"tit\n"
+"help.text"
+msgid "Using Objects"
+msgstr ""
+
+#. ZeR9D
+#: 01020200.xhp
+msgctxt ""
+"01020200.xhp\n"
+"hd_id3145645\n"
+"help.text"
+msgid "<variable id=\"01020200\"><link href=\"text/sbasic/shared/01020200.xhp\">Using the Object Catalog</link></variable>"
+msgstr ""
+
+#. DXDBg
+#: 01020200.xhp
+msgctxt ""
+"01020200.xhp\n"
+"par_id3153707\n"
+"help.text"
+msgid "The object catalog provides an overview of all modules and dialogs you have created in $[officename]."
+msgstr ""
+
+#. kJFfX
+#: 01020200.xhp
+msgctxt ""
+"01020200.xhp\n"
+"par_id3147346\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 ""
+
+#. L84og
+#: 01020200.xhp
+msgctxt ""
+"01020200.xhp\n"
+"par_id3155114\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 ""
+
+#. bYrDX
+#: 01020200.xhp
+msgctxt ""
+"01020200.xhp\n"
+"par_id3150786\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 ""
+
+#. hVrnu
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"tit\n"
+"help.text"
+msgid "Using Procedures, Functions or Properties"
+msgstr ""
+
+#. 6jwBY
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"bm_id3149456\n"
+"help.text"
+msgid "<bookmark_value>procedures</bookmark_value> <bookmark_value>functions;using</bookmark_value> <bookmark_value>variables;passing to procedures, functions, properties</bookmark_value> <bookmark_value>parameters;for procedures, functions or properties</bookmark_value> <bookmark_value>parameters;passing by reference or value</bookmark_value> <bookmark_value>variables;scope</bookmark_value> <bookmark_value>scope of variables</bookmark_value> <bookmark_value>GLOBAL variables</bookmark_value> <bookmark_value>PUBLIC variables</bookmark_value> <bookmark_value>PRIVATE variables</bookmark_value> <bookmark_value>functions;return value type</bookmark_value> <bookmark_value>return value type of functions</bookmark_value>"
+msgstr ""
+
+#. RY6Z4
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"hd_id3149456\n"
+"help.text"
+msgid "<variable id=\"UsingSubs_h1\"><link href=\"text/sbasic/shared/01020300.xhp\">Using Procedures, Functions and Properties</link></variable>"
+msgstr ""
+
+#. DSyYW
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3150767\n"
+"help.text"
+msgid "The following describes the basic use of procedures, functions and properties in %PRODUCTNAME Basic."
+msgstr ""
+
+#. Jsg3r
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3151215\n"
+"help.text"
+msgid "When you create a new module, %PRODUCTNAME Basic automatically inserts a <literal>Sub</literal> called \"<literal>Main</literal>\". This default name has nothing to do with the order or the starting point of a %PRODUCTNAME Basic project. You can also safely rename this <literal>Sub</literal>routine."
+msgstr ""
+
+#. NBySN
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id314756320\n"
+"help.text"
+msgid "Some restrictions apply for the names of your public variables, subroutines, functions and properties. You must not use the same name as one of the modules of the same library."
+msgstr ""
+
+#. EB6uP
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3154124\n"
+"help.text"
+msgid "Procedures (<literal>Sub</literal>routines) functions (<literal>Function</literal>) and properties (<literal>Property</literal>) help you maintaining a structured overview by separating a program into logical pieces."
+msgstr ""
+
+#. UXRyF
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3153193\n"
+"help.text"
+msgid "One benefit of procedures, functions and properties is that, once you have developed a program code containing task components, you can use this code in another project."
+msgstr ""
+
+#. EZYXi
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"hd_id3153770\n"
+"help.text"
+msgid "Passing Variables to Procedures, Functions or Properties"
+msgstr ""
+
+#. v9JPn
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3155414\n"
+"help.text"
+msgid "Variables can be passed to both procedures, functions or properties. The <literal>Sub</literal> <literal>Function</literal> or <literal>Property</literal> must be declared to expect parameters:"
+msgstr ""
+
+#. BUURm
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3151114\n"
+"help.text"
+msgid "' your code goes here"
+msgstr ""
+
+#. BG6rr
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3152577\n"
+"help.text"
+msgid "The <literal>Sub</literal> is called using the following syntax:"
+msgstr ""
+
+#. 5SdpG
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3147124\n"
+"help.text"
+msgid "The parameters passed to a <literal>Sub</literal> must fit to those specified in the <literal>Sub</literal> declaration."
+msgstr ""
+
+#. Zxxix
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3147397\n"
+"help.text"
+msgid "The same process applies to a <literal>Function</literal>. In addition, functions always return a function result. The result of a function is defined by assigning the return value to the function name:"
+msgstr ""
+
+#. uhFkG
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3156284\n"
+"help.text"
+msgid "' your code goes here"
+msgstr ""
+
+#. TwrZp
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3153839\n"
+"help.text"
+msgid "The <literal>Function</literal> is called using the following syntax:"
+msgstr ""
+
+#. YcLqs
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id981584288549909\n"
+"help.text"
+msgid "Properties combine the syntax of procedures and functions. A <literal>Property</literal> usually requires up to one parameter."
+msgstr ""
+
+#. QCQAn
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"bas_id961584288948497\n"
+"help.text"
+msgid "' your code goes here"
+msgstr ""
+
+#. meaRY
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"bas_id921584288951588\n"
+"help.text"
+msgid "' your code goes here"
+msgstr ""
+
+#. 257BA
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3153389\n"
+"help.text"
+msgid "The <literal>Property</literal> is called using the following syntax:"
+msgstr ""
+
+#. KRExL
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_idN107B3\n"
+"help.text"
+msgid "You can also use the fully qualified name to call a procedure, function or property:<br/> <literal>[Call] Library.Module.Macro()</literal>, where <literal>Call</literal> is optional.<br/> For example, to call the Autotext macro from the Gimmicks library, use the following command:<br/> <literal>Gimmicks.AutoText.Main()</literal>"
+msgstr ""
+
+#. 2xj8g
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"hd_id3156276\n"
+"help.text"
+msgid "Passing Variables by Value or Reference"
+msgstr ""
+
+#. d2PgC
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3155765\n"
+"help.text"
+msgid "Parameters can be passed to a procedure, a function or a property either by reference or by value. Unless otherwise specified, a parameter is always passed by reference. That means that a <literal>Sub</literal>, a <literal>Function</literal> or a <literal>Property</literal> gets the parameter and can read and modify its value."
+msgstr ""
+
+#. uk84S
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3145640\n"
+"help.text"
+msgid "If you want to pass a parameter by value insert the key word <literal>ByVal</literal> in front of the parameter when you call a <literal>Sub</literal>, a <literal>Function</literal> or a <literal>Property</literal>, for example:"
+msgstr ""
+
+#. pojXe
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"bas_id81584367761978\n"
+"help.text"
+msgid "' your code goes here"
+msgstr ""
+
+#. WF4ND
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3149258\n"
+"help.text"
+msgid "In this case, the original content of the parameter will not be modified by the <literal>Function</literal> since it only gets the value and not the parameter itself."
+msgstr ""
+
+#. AEhBY
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"hd_id161584366585035\n"
+"help.text"
+msgid "Defining Optional Parameters"
+msgstr ""
+
+#. 4Ghzx
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id31584367006971\n"
+"help.text"
+msgid "Functions, procedures or properties can be defined with optional parameters, for example:"
+msgstr ""
+
+#. JKj8y
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"bas_id111584366809406\n"
+"help.text"
+msgid "' your code goes here"
+msgstr ""
+
+#. 46M3s
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"hd_id951622730099178\n"
+"help.text"
+msgid "Positional or Keyword Arguments"
+msgstr ""
+
+#. aFDhA
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id591622730131786\n"
+"help.text"
+msgid "When you call a function or a subroutine, you may pass its arguments by position or by name. Passing by position means just listing the arguments in the order in which the parameters are defined in the function or subroutine. Passing by name requires you to prefix the argument with the name of the corresponding parameter followed by a colon and an equal sign (<literal>:=</literal>). Keyword arguments may appear in any order. Refer to Basic Replace() function for such examples."
+msgstr ""
+
+#. 5B7Y5
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id591622730284162\n"
+"help.text"
+msgid "When needing to pass less parameters, use keywords arguments. Passing values for fewer parameters by position requires to supply values for all parameters before them, optional or not. This ensures that the values are in the correct positions. If you pass the parameters by name - using keyword arguments - you may omit all other intermediate arguments."
+msgstr ""
+
+#. EHCCS
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"hd_id3150982\n"
+"help.text"
+msgid "Scope of Variables"
+msgstr ""
+
+#. LDC8M
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3149814\n"
+"help.text"
+msgid "A variable defined within a <literal>Sub</literal>, a <literal>Function</literal> or a <literal>Property</literal>, only remains valid until the procedure is exited. This is known as a \"local\" variable. In many cases, you need a variable to be valid in all procedures, in every module of all libraries, or after a <literal>Sub</literal>, a <literal>Function</literal> or a <literal>Property</literal> is exited."
+msgstr ""
+
+#. pVU4G
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"hd_id3154186\n"
+"help.text"
+msgid "Declaring Variables Outside a <literal>Sub</literal> a <literal>Function</literal> or a <literal>Property</literal>"
+msgstr ""
+
+#. 5JwAY
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3145258\n"
+"help.text"
+msgid "The variable is valid as long as the %PRODUCTNAME session lasts."
+msgstr ""
+
+#. 9akEs
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3150088\n"
+"help.text"
+msgid "The variable is valid in all modules."
+msgstr ""
+
+#. qeJQx
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3152994\n"
+"help.text"
+msgid "The variable is only valid in this module."
+msgstr ""
+
+#. 85TYe
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3150368\n"
+"help.text"
+msgid "The variable is only valid in this module."
+msgstr ""
+
+#. qDLiK
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"hd_id5097506\n"
+"help.text"
+msgid "Example for private variables"
+msgstr ""
+
+#. mGb2g
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id8738975\n"
+"help.text"
+msgid "Enforce private variables to be private across modules by setting <literal>CompatibilityMode(True)</literal>."
+msgstr ""
+
+#. 8dZEJ
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id9475997\n"
+"help.text"
+msgid "myText = \"Hello\""
+msgstr ""
+
+#. Csy6C
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id6933500\n"
+"help.text"
+msgid "Print \"In module1 : \", myText"
+msgstr ""
+
+#. YrJMx
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id4104129\n"
+"help.text"
+msgid "' Now returns empty string"
+msgstr ""
+
+#. xxgnE
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id7906125\n"
+"help.text"
+msgid "' (or raises error for Option Explicit)"
+msgstr ""
+
+#. yGnyt
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id8055970\n"
+"help.text"
+msgid "Print \"Now in module2 : \", myText"
+msgstr ""
+
+#. iExop
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"hd_id3154368\n"
+"help.text"
+msgid "Saving Variable Content after Exiting a <literal>Sub</literal> a <literal>Function</literal> or a <literal>Property</literal>"
+msgstr ""
+
+#. hAB34
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3154486\n"
+"help.text"
+msgid "The variable retains its value until the next time the a <literal>Function</literal>, <literal>Sub</literal> or <literal>Property</literal> is entered. The declaration must exist inside a <literal>Sub</literal>, a <literal>Function</literal> or a <literal>Property</literal>."
+msgstr ""
+
+#. 9inFk
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"hd_id3155809\n"
+"help.text"
+msgid "Specifying the Return Value Type of a <literal>Function</literal> or a <literal>Property</literal>"
+msgstr ""
+
+#. BjLGj
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3149404\n"
+"help.text"
+msgid "As with variables, include a type-declaration character after the function name, or the type indicated by <literal>As</literal> and the corresponding data type at the end of the parameter list to define the type of the function or property's return value, for example:"
+msgstr ""
+
+#. t7xWM
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"N0237\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03104100.xhp\" name=\"Optional keyword\">Optional keyword</link>"
+msgstr ""
+
+#. JCc9m
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"N0238\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/property.xhp\" name=\"Property Statement\">Property Statement</link>"
+msgstr ""
+
+#. CcJXo
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"N0239\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03103500.xhp\" name=\"Static Statement\">Static Statement</link>"
+msgstr ""
+
+#. HrqsB
+#: 01020500.xhp
+msgctxt ""
+"01020500.xhp\n"
+"tit\n"
+"help.text"
+msgid "Libraries, Modules and Dialogs"
+msgstr ""
+
+#. 2JnVg
+#: 01020500.xhp
+msgctxt ""
+"01020500.xhp\n"
+"hd_id3147317\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/01020500.xhp\" name=\"Libraries, Modules and Dialogs\">Libraries, Modules and Dialogs</link>"
+msgstr ""
+
+#. 9f6EM
+#: 01020500.xhp
+msgctxt ""
+"01020500.xhp\n"
+"par_id3147427\n"
+"help.text"
+msgid "The following describes the basic use of libraries, modules and dialogs in $[officename] Basic."
+msgstr ""
+
+#. SaxtE
+#: 01020500.xhp
+msgctxt ""
+"01020500.xhp\n"
+"par_id3146120\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 ""
+
+#. TZW5m
+#: 01020500.xhp
+msgctxt ""
+"01020500.xhp\n"
+"hd_id3148575\n"
+"help.text"
+msgid "Libraries"
+msgstr ""
+
+#. GA9nr
+#: 01020500.xhp
+msgctxt ""
+"01020500.xhp\n"
+"par_id3150011\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 ""
+
+#. iVxPi
+#: 01020500.xhp
+msgctxt ""
+"01020500.xhp\n"
+"par_id3151112\n"
+"help.text"
+msgid "A library can contain up to 16,000 modules."
+msgstr ""
+
+#. GmYip
+#: 01020500.xhp
+msgctxt ""
+"01020500.xhp\n"
+"hd_id3149262\n"
+"help.text"
+msgid "Modules"
+msgstr ""
+
+#. FFvGa
+#: 01020500.xhp
+msgctxt ""
+"01020500.xhp\n"
+"par_id3156441\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 ""
+
+#. oo2bB
+#: 01020500.xhp
+msgctxt ""
+"01020500.xhp\n"
+"hd_id3152577\n"
+"help.text"
+msgid "Dialog Modules"
+msgstr ""
+
+#. GTorM
+#: 01020500.xhp
+msgctxt ""
+"01020500.xhp\n"
+"par_id3149377\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 ""
+
+#. konfv
+#: 01030000.xhp
+msgctxt ""
+"01030000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Integrated Development Environment (IDE)"
+msgstr ""
+
+#. H927d
+#: 01030000.xhp
+msgctxt ""
+"01030000.xhp\n"
+"bm_id3145090\n"
+"help.text"
+msgid "<bookmark_value>Basic IDE;Integrated Development Environment</bookmark_value><bookmark_value>IDE;Integrated Development Environment</bookmark_value>"
+msgstr ""
+
+#. JDDCp
+#: 01030000.xhp
+msgctxt ""
+"01030000.xhp\n"
+"hd_id3145090\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/01030000.xhp\" name=\"Integrated Development Environment (IDE)\">Integrated Development Environment (IDE)</link>"
+msgstr ""
+
+#. jdrPS
+#: 01030000.xhp
+msgctxt ""
+"01030000.xhp\n"
+"par_id3146795\n"
+"help.text"
+msgid "This section describes the Integrated Development Environment for $[officename] Basic."
+msgstr ""
+
+#. gf3pd
+#: 01030100.xhp
+msgctxt ""
+"01030100.xhp\n"
+"tit\n"
+"help.text"
+msgid "IDE Overview"
+msgstr ""
+
+#. CCFLo
+#: 01030100.xhp
+msgctxt ""
+"01030100.xhp\n"
+"hd_id3147291\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/01030100.xhp\" name=\"IDE Overview\">IDE Overview</link>"
+msgstr ""
+
+#. mhzWe
+#: 01030100.xhp
+msgctxt ""
+"01030100.xhp\n"
+"par_id3156344\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 ""
+
+#. tG68D
+#: 01030100.xhp
+msgctxt ""
+"01030100.xhp\n"
+"par_id3151210\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 ""
+
+#. YTyba
+#: 01030100.xhp
+msgctxt ""
+"01030100.xhp\n"
+"par_id3154686\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 ""
+
+#. NSnQN
+#: 01030100.xhp
+msgctxt ""
+"01030100.xhp\n"
+"par_id3145787\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 ""
+
+#. 6Jo3c
+#: 01030100.xhp
+msgctxt ""
+"01030100.xhp\n"
+"par_id3147434\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/01050000.xhp\" name=\"Basic IDE\">Basic IDE</link>"
+msgstr ""
+
+#. B22aQ
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"tit\n"
+"help.text"
+msgid "The Basic Editor"
+msgstr ""
+
+#. GoAbu
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"bm_id3148647\n"
+"help.text"
+msgid "<bookmark_value>saving;Basic code</bookmark_value><bookmark_value>loading;Basic code</bookmark_value><bookmark_value>Basic editor</bookmark_value><bookmark_value>navigating;in Basic projects</bookmark_value><bookmark_value>long lines;in Basic editor</bookmark_value><bookmark_value>lines of text;in Basic editor</bookmark_value><bookmark_value>continuation;long lines in editor</bookmark_value>"
+msgstr ""
+
+#. jdhKC
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"hd_id3147264\n"
+"help.text"
+msgid "<variable id=\"thebasiceditorh1\"><link href=\"text/sbasic/shared/01030200.xhp\" name=\"The Basic Editor\">The Basic Editor</link></variable>"
+msgstr ""
+
+#. dSemx
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"par_id3145069\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 ""
+
+#. S7kFn
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"par_id3154686\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 ""
+
+#. BmtEY
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"par_id3151042\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 ""
+
+#. YrvUy
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"par_id59816\n"
+"help.text"
+msgid "Insert your Basic code between the Sub Main and End Sub lines that you see when you first open the IDE. Alternatively, delete all lines and then enter your own Basic code."
+msgstr ""
+
+#. 2obp7
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"hd_id3125863\n"
+"help.text"
+msgid "Navigating in a Project"
+msgstr ""
+
+#. 3qGX6
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"hd_id3145785\n"
+"help.text"
+msgid "The Library List"
+msgstr ""
+
+#. xttrN
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"par_id3146120\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 ""
+
+#. jwC6n
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"hd_id3153190\n"
+"help.text"
+msgid "The Object Catalog"
+msgstr ""
+
+#. 9zvTE
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"hd_id3148647\n"
+"help.text"
+msgid "Saving and Loading Basic Source Code"
+msgstr ""
+
+#. aDhAD
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"par_id3154320\n"
+"help.text"
+msgid "You can save Basic code in a text file for saving and importing in other programming systems."
+msgstr ""
+
+#. XnwME
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"par_id3149959\n"
+"help.text"
+msgid "You cannot save Basic dialogs to a text file."
+msgstr ""
+
+#. EGYGe
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"hd_id3149403\n"
+"help.text"
+msgid "Saving Source Code to a Text File"
+msgstr ""
+
+#. cyk4a
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"par_id3150327\n"
+"help.text"
+msgid "Select the module that you want to export as text from the object catalog."
+msgstr ""
+
+#. 3MU4y
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"par_id3150752\n"
+"help.text"
+msgid "Click the <emph>Save Source As</emph> icon in the Macro toolbar."
+msgstr ""
+
+#. mKQSV
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"par_id3154754\n"
+"help.text"
+msgid "Select a file name and click <emph>OK</emph> to save the file."
+msgstr ""
+
+#. r87QD
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"hd_id3159264\n"
+"help.text"
+msgid "Loading Source Code From a Text File"
+msgstr ""
+
+#. 88Jh5
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"par_id3147343\n"
+"help.text"
+msgid "Select the module where you want to import the source code from the object catalog."
+msgstr ""
+
+#. njLwN
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"par_id3145230\n"
+"help.text"
+msgid "Position the cursor where you want to insert the program code."
+msgstr ""
+
+#. SAvtt
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"par_id3149565\n"
+"help.text"
+msgid "Click the <emph>Insert Source Text</emph> icon in the Macro toolbar."
+msgstr ""
+
+#. KR5hD
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"par_id3154020\n"
+"help.text"
+msgid "Select the text file containing the source code and click <emph>OK</emph>."
+msgstr ""
+
+#. WasN7
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"par_id3153198\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/01050000.xhp\" name=\"Basic IDE\">Basic IDE</link>"
+msgstr ""
+
+#. oUyP8
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"tit\n"
+"help.text"
+msgid "Debugging a Basic Program"
+msgstr ""
+
+#. mMbrA
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"bm_id3153344\n"
+"help.text"
+msgid "<bookmark_value>debugging Basic programs</bookmark_value><bookmark_value>variables; observing values</bookmark_value><bookmark_value>watching variables</bookmark_value><bookmark_value>run-time errors in Basic</bookmark_value><bookmark_value>error codes in Basic</bookmark_value><bookmark_value>breakpoints</bookmark_value><bookmark_value>Call Stack window</bookmark_value>"
+msgstr ""
+
+#. kS45y
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"hd_id3153344\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/01030300.xhp\">Debugging a Basic Program</link>"
+msgstr ""
+
+#. z87PZ
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"hd_id3159224\n"
+"help.text"
+msgid "Breakpoints and Single Step Execution"
+msgstr ""
+
+#. Fb5tF
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id3150682\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 ""
+
+#. ChbMW
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id3147303\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 ""
+
+#. Jhx92
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id3155805\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 ""
+
+#. GmkFd
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id3151110\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 ""
+
+#. fcUGR
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"hd_id3153825\n"
+"help.text"
+msgid "Properties of a Breakpoint"
+msgstr ""
+
+#. p9M5v
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id3147574\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 ""
+
+#. 9fs6R
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id3148473\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 ""
+
+#. 8pxBr
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id3159413\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 ""
+
+#. H5wR2
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id3156280\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 ""
+
+#. CiEm5
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id3158407\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 ""
+
+#. xoCSA
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id3153968\n"
+"help.text"
+msgid "Click <emph>Delete</emph> to remove the breakpoint from the program."
+msgstr ""
+
+#. 5MRSa
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"hd_id3150439\n"
+"help.text"
+msgid "Observing the Value of Variables"
+msgstr ""
+
+#. NCbMk
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id3153368\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 ""
+
+#. jXfHR
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id3146986\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 ""
+
+#. EjfNY
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id3145272\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 ""
+
+#. vMioe
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id3145749\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 ""
+
+#. RP72G
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"hd_id3148618\n"
+"help.text"
+msgid "The Call Stack Window"
+msgstr ""
+
+#. yN9DQ
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id3154491\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 ""
+
+#. igo3o
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"hd_id3150594\n"
+"help.text"
+msgid "List of Run-Time Errors"
+msgstr ""
+
+#. DTrbM
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"tit\n"
+"help.text"
+msgid "Organizing Libraries and Modules"
+msgstr ""
+
+#. Kq6sz
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"bm_id3148797\n"
+"help.text"
+msgid "<bookmark_value>libraries;organizing</bookmark_value><bookmark_value>libraries;containers</bookmark_value><bookmark_value>modules;organizing</bookmark_value><bookmark_value>copying;modules</bookmark_value><bookmark_value>adding libraries</bookmark_value><bookmark_value>deleting;libraries/modules/dialogs</bookmark_value><bookmark_value>dialogs;organizing</bookmark_value><bookmark_value>moving;modules</bookmark_value><bookmark_value>organizing;modules/libraries/dialogs</bookmark_value><bookmark_value>renaming modules and dialogs</bookmark_value>"
+msgstr ""
+
+#. ToKAi
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"hd_id3148797\n"
+"help.text"
+msgid "<variable id=\"01030400\"><link href=\"text/sbasic/shared/01030400.xhp\">Organizing Libraries and Modules</link></variable>"
+msgstr ""
+
+#. H2wBb
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"hd_id371574080559061\n"
+"help.text"
+msgid "Basic Libraries Containers"
+msgstr ""
+
+#. diKBf
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id961574080563824\n"
+"help.text"
+msgid "%PRODUCTNAME Basic libraries can be stored in 3 different containers:"
+msgstr ""
+
+#. dAbrb
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id571574079618609\n"
+"help.text"
+msgid "<emph>Application Macros</emph>: libraries stored in this container are available for all users of the computer and are managed by the computer administrator. The container is located in the %PRODUCTNAME installation directory."
+msgstr ""
+
+#. UG2dG
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id151574079741214\n"
+"help.text"
+msgid "<emph>My Macros</emph>: libraries stored in this container are available to all documents of your user. The container is located in the user profile area and is not accessible by another user."
+msgstr ""
+
+#. 4ABok
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id581574080384335\n"
+"help.text"
+msgid "<emph>Document</emph>: libraries stored in the document container are only available for the document and are accessible only when the document is open. You cannot access macros of a document from another document."
+msgstr ""
+
+#. fP4ya
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id881574081445896\n"
+"help.text"
+msgid "To access macros stored in libraries of <emph>Application Macros</emph> or <emph>My Macros</emph> from another container, including the document container, use the <link href=\"text/sbasic/shared/03131900.xhp\" name=\"GlobalScope\">GlobalScope specifier</link>."
+msgstr ""
+
+#. bGzjL
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"hd_id3150868\n"
+"help.text"
+msgid "Organizing Libraries"
+msgstr ""
+
+#. EgYeV
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"hd_id3125864\n"
+"help.text"
+msgid "Creating a New Library"
+msgstr ""
+
+#. fornx
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3152576\n"
+"help.text"
+msgid "Choose <emph>Tools - Macros - Organize Macros - 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 ""
+
+#. PcnbC
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3153726\n"
+"help.text"
+msgid "Click the <emph>Libraries</emph> tab."
+msgstr ""
+
+#. htC8c
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3149664\n"
+"help.text"
+msgid "Select to where you want to attach the library in the <emph>Location</emph> list. If you select Application Macros & Dialogs, the library will belong to the $[officename] application and will be available for all documents. If you select a document the library will be attached to this document and only available from there."
+msgstr ""
+
+#. PCjRC
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3153365\n"
+"help.text"
+msgid "Click <emph>New</emph> and insert a name to create a new library."
+msgstr ""
+
+#. 4xPQx
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"hd_id3147394\n"
+"help.text"
+msgid "Import a Library"
+msgstr ""
+
+#. FfAiG
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3153157\n"
+"help.text"
+msgid "Choose <emph>Tools - Macros - Organize Macros - 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 ""
+
+#. Tkmcd
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3146972\n"
+"help.text"
+msgid "Click the <emph>Libraries</emph> tab."
+msgstr ""
+
+#. 7w5hH
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3145640\n"
+"help.text"
+msgid "Select to where you want to import the library in the <emph>Location</emph> list. If you select Application Macros & Dialogs, the library will belong to the $[officename] application and will be available for all documents. If you select a document the library will be imported to this document and only available from there."
+msgstr ""
+
+#. dUvoX
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3154253\n"
+"help.text"
+msgid "Click <emph>Import...</emph> and select an external library to import."
+msgstr ""
+
+#. 6HMTM
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3154705\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 ""
+
+#. fahSC
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3163807\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 ""
+
+#. Rrk55
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3145228\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 ""
+
+#. 8hKDF
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3147004\n"
+"help.text"
+msgid "Click <emph>OK</emph> to import the library."
+msgstr ""
+
+#. 2AGeq
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"hd_id3159099\n"
+"help.text"
+msgid "Export a Library"
+msgstr ""
+
+#. RftQx
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3147005\n"
+"help.text"
+msgid "Choose <emph>Tools - Macros - Organize Macros - 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 ""
+
+#. 6J4pG
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3147006\n"
+"help.text"
+msgid "Click the <emph>Libraries</emph> tab."
+msgstr ""
+
+#. VJ8AJ
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3147007\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 ""
+
+#. qsiYm
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3147008\n"
+"help.text"
+msgid "Click <emph>Export...</emph>"
+msgstr ""
+
+#. pXkGD
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3147009\n"
+"help.text"
+msgid "Choose whether you want to export the library as an extension or as a BASIC library."
+msgstr ""
+
+#. PP8cN
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3147010\n"
+"help.text"
+msgid "Click <emph>OK</emph>."
+msgstr ""
+
+#. G2aRG
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3147011\n"
+"help.text"
+msgid "Select where you want your library exported."
+msgstr ""
+
+#. QCizg
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3147012\n"
+"help.text"
+msgid "Click <emph>Save</emph> to export the library."
+msgstr ""
+
+#. xrBZD
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"hd_id3159100\n"
+"help.text"
+msgid "Deleting a Library"
+msgstr ""
+
+#. xc9Aw
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3150086\n"
+"help.text"
+msgid "Choose <emph>Tools - Macros - Organize Macros - 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 ""
+
+#. A6h5y
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3146808\n"
+"help.text"
+msgid "Click the <emph>Libraries</emph> tab."
+msgstr ""
+
+#. UJzRs
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3158212\n"
+"help.text"
+msgid "Select the library to be deleted from the list."
+msgstr ""
+
+#. 7jsh2
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3150361\n"
+"help.text"
+msgid "Click <emph>Delete</emph>."
+msgstr ""
+
+#. 8s8sV
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3152986\n"
+"help.text"
+msgid "Deleting a library permanently deletes all existing modules and corresponding procedures and functions."
+msgstr ""
+
+#. Mfwwv
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3148868\n"
+"help.text"
+msgid "You cannot delete the default library named \"Standard\"."
+msgstr ""
+
+#. CYvda
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3146869\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 ""
+
+#. v2QTY
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"hd_id3147070\n"
+"help.text"
+msgid "Organizing Modules and Dialogs"
+msgstr ""
+
+#. VfQtH
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"hd_id3155265\n"
+"help.text"
+msgid "Creating a New Module or Dialog"
+msgstr ""
+
+#. bidEt
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3154537\n"
+"help.text"
+msgid "Choose <emph>Tools - Macros - Organize Macros - 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 ""
+
+#. AZkde
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3146781\n"
+"help.text"
+msgid "Click the <emph>Modules</emph> tab or the <emph>Dialogs</emph> tab."
+msgstr ""
+
+#. UFNnu
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3159206\n"
+"help.text"
+msgid "Select the library where the module will be inserted and click <emph>New</emph>."
+msgstr ""
+
+#. 7x6Ad
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3152389\n"
+"help.text"
+msgid "Enter a name for the module or the dialog and click <emph>OK</emph>."
+msgstr ""
+
+#. tLC6c
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"hd_id3152872\n"
+"help.text"
+msgid "Renaming a Module or Dialog"
+msgstr ""
+
+#. nzrC9
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3159230\n"
+"help.text"
+msgid "Choose <emph>Tools - Macros - Organize Macros - 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 ""
+
+#. L9iaA
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3150046\n"
+"help.text"
+msgid "Click the module to be renamed twice, with a pause between the clicks. Enter the new name."
+msgstr ""
+
+#. kF2DK
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3153801\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 ""
+
+#. Sn9No
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3155526\n"
+"help.text"
+msgid "Press Enter to confirm your changes."
+msgstr ""
+
+#. eDsao
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"hd_id3146963\n"
+"help.text"
+msgid "Deleting a Module or Dialog"
+msgstr ""
+
+#. NTMhz
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3147547\n"
+"help.text"
+msgid "Choose <emph>Tools - Macros - Organize Macros - 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 ""
+
+#. DUoVN
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3150958\n"
+"help.text"
+msgid "Click the <emph>Modules</emph> tab or the <emph>Dialogs</emph> tab."
+msgstr ""
+
+#. 92xwp
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3149870\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 ""
+
+#. DxAi7
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3147248\n"
+"help.text"
+msgid "Click <emph>Delete</emph>."
+msgstr ""
+
+#. S5vqR
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3151339\n"
+"help.text"
+msgid "Deleting a module permanently deletes all existing procedures and functions in that module."
+msgstr ""
+
+#. JqaG6
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"hd_id3151392\n"
+"help.text"
+msgid "Organizing Projects among Documents or Templates"
+msgstr ""
+
+#. 3K5Ji
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"hd_id3156400\n"
+"help.text"
+msgid "Moving or copying modules between documents, templates and the application."
+msgstr ""
+
+#. rEpWM
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3146819\n"
+"help.text"
+msgid "Open all documents or templates among which you want to move or copy the modules or dialogs."
+msgstr ""
+
+#. 9FTS4
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3149319\n"
+"help.text"
+msgid "Choose <emph>Tools - Macros - Organize Macros - 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 ""
+
+#. njHkZ
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3145637\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 ""
+
+#. 8AfAv
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Document Event-Driven Macros"
+msgstr ""
+
+#. Xm5fa
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"bm_id3154581\n"
+"help.text"
+msgid "<bookmark_value>deleting; macro assignments to events</bookmark_value> <bookmark_value>macros; assigning to events</bookmark_value> <bookmark_value>assigning macros to events</bookmark_value> <bookmark_value>documents; events</bookmark_value> <bookmark_value>events; assigning macros</bookmark_value> <bookmark_value>events; in documents</bookmark_value> <bookmark_value>API; XDocumentEventListener</bookmark_value>"
+msgstr ""
+
+#. 7uCwS
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"hd_id3147348\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/01040000.xhp\" name=\"Event-Driven Macros\">Document Event-Driven Macros</link>"
+msgstr ""
+
+#. LRvA8
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3146120\n"
+"help.text"
+msgid "This section describes how to assign scripts to application, document or form events."
+msgstr ""
+
+#. 3G8fP
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3149263\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 document events and at what point an assigned macro is executed."
+msgstr ""
+
+#. zBhWV
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3148455\n"
+"help.text"
+msgid "Event"
+msgstr ""
+
+#. spcQd
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3145799\n"
+"help.text"
+msgid "An assigned macro is executed..."
+msgstr ""
+
+#. e4Pjb
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3145809\n"
+"help.text"
+msgid "routine"
+msgstr ""
+
+#. WtaR8
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3149379\n"
+"help.text"
+msgid "Start Application"
+msgstr ""
+
+#. otwcA
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3150715\n"
+"help.text"
+msgid "...after a $[officename] application is started."
+msgstr ""
+
+#. zjA7c
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3146914\n"
+"help.text"
+msgid "Close Application"
+msgstr ""
+
+#. iwsSq
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3153765\n"
+"help.text"
+msgid "...before a $[officename] application is terminated."
+msgstr ""
+
+#. DZHzW
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id151599831705811\n"
+"help.text"
+msgid "Document created"
+msgstr ""
+
+#. KAZDF
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id501599831822339\n"
+"help.text"
+msgid "...New document created with <emph>File - New</emph> or with the <emph>New</emph> icon. Note that this event also fires when Basic IDE opens."
+msgstr ""
+
+#. HBjid
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3145150\n"
+"help.text"
+msgid "New Document"
+msgstr ""
+
+#. fkuXY
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3163808\n"
+"help.text"
+msgid "...after a new document is created with <emph>File - New</emph> or with the <emph>New</emph> icon."
+msgstr ""
+
+#. BYGJY
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id161599836960401\n"
+"help.text"
+msgid "Document loading finished"
+msgstr ""
+
+#. jCGwP
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id721599836993145\n"
+"help.text"
+msgid "...before a document is opened with <emph>File - Open</emph> or with the <emph>Open</emph> icon."
+msgstr ""
+
+#. F352r
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3145790\n"
+"help.text"
+msgid "Open Document"
+msgstr ""
+
+#. FGjBU
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3154572\n"
+"help.text"
+msgid "...after a document is opened with <emph>File - Open</emph> or with the <emph>Open</emph> icon."
+msgstr ""
+
+#. H2Uom
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3159171\n"
+"help.text"
+msgid "Document is going to be closed"
+msgstr ""
+
+#. CvPgm
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3146868\n"
+"help.text"
+msgid "...before a document is closed."
+msgstr ""
+
+#. kLQvC
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3159097\n"
+"help.text"
+msgid "Document closed"
+msgstr ""
+
+#. DNYcy
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3148606\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 ""
+
+#. iMPCi
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id391600157320922\n"
+"help.text"
+msgid "-no UI-"
+msgstr ""
+
+#. F46jE
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id981599837681979\n"
+"help.text"
+msgid "View created"
+msgstr ""
+
+#. 77CWX
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id281599838210270\n"
+"help.text"
+msgid "Document is displayed. Note that this event also happens when a document is duplicated."
+msgstr ""
+
+#. CDwGy
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id511599837683562\n"
+"help.text"
+msgid "View is going to be closed"
+msgstr ""
+
+#. EtV6o
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id331599838046012\n"
+"help.text"
+msgid "Document layout is getting removed."
+msgstr ""
+
+#. 7FemV
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id951599837684882\n"
+"help.text"
+msgid "View closed"
+msgstr ""
+
+#. qGdPR
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id51599837816122\n"
+"help.text"
+msgid "Document layout is cleared prior to the document closure."
+msgstr ""
+
+#. eovzZ
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3144772\n"
+"help.text"
+msgid "Activate Document"
+msgstr ""
+
+#. w5v7V
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3149442\n"
+"help.text"
+msgid "...after a document is brought to the foreground."
+msgstr ""
+
+#. t2QSQ
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3150888\n"
+"help.text"
+msgid "Deactivate Document"
+msgstr ""
+
+#. guqXK
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3154060\n"
+"help.text"
+msgid "...after another document is brought to the foreground."
+msgstr ""
+
+#. MvDXG
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3150519\n"
+"help.text"
+msgid "Save Document"
+msgstr ""
+
+#. 4ziEe
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3155529\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 ""
+
+#. 8hHA5
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3149404\n"
+"help.text"
+msgid "Document has been saved"
+msgstr ""
+
+#. rfcxa
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3151332\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 ""
+
+#. 7FEpD
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id161599838976700\n"
+"help.text"
+msgid "Saving of document failed"
+msgstr ""
+
+#. FnDEp
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id391599838979652\n"
+"help.text"
+msgid "Document could not be saved."
+msgstr ""
+
+#. VUPBD
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3153266\n"
+"help.text"
+msgid "Save Document As"
+msgstr ""
+
+#. qMrvw
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3150208\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 ""
+
+#. wacHA
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3158215\n"
+"help.text"
+msgid "Document has been saved as"
+msgstr ""
+
+#. G2CqP
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3150980\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 ""
+
+#. 7BDQa
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id561599839702598\n"
+"help.text"
+msgid "'Save As' has failed"
+msgstr ""
+
+#. FGnZt
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id951599840240048\n"
+"help.text"
+msgid "Document could not be saved."
+msgstr ""
+
+#. 9PEDi
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id851599839190548\n"
+"help.text"
+msgid "-no UI-"
+msgstr ""
+
+#. AUk3A
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id961599839198859\n"
+"help.text"
+msgid "When the document disk location has changed, for example after a <emph>File - Save As</emph> action."
+msgstr ""
+
+#. n5TCf
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id501600150804809\n"
+"help.text"
+msgid "Storing or exporting copy of document"
+msgstr ""
+
+#. wP2PH
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id471610080505705\n"
+"help.text"
+msgid "...before a document is saved with <menuitem>File - Save a Copy</menuitem>, <menuitem>File - Export</menuitem>, <menuitem>File - Export as PDF</menuitem> or the <menuitem>Save</menuitem> icons."
+msgstr ""
+
+#. ECboz
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id502600180504809\n"
+"help.text"
+msgid "Document copy has been created"
+msgstr ""
+
+#. gF2u2
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id471601180505705\n"
+"help.text"
+msgid "...after a document is saved with <menuitem>File - Save a Copy</menuitem>, <menuitem>File - Export</menuitem>, <menuitem>File - Export as PDF</menuitem> or the <menuitem>Save</menuitem> icons."
+msgstr ""
+
+#. uAeBw
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id501006180504809\n"
+"help.text"
+msgid "Creating of document copy failed"
+msgstr ""
+
+#. dFCuE
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id471600081505705\n"
+"help.text"
+msgid "Document could not be copied or exported."
+msgstr ""
+
+#. qDSzB
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id501600180504809\n"
+"help.text"
+msgid "Print document"
+msgstr ""
+
+#. kDap2
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id471600180505705\n"
+"help.text"
+msgid "...after the Print dialog is closed, but before the actual print process begins. This event occurs for each copy printed."
+msgstr ""
+
+#. KNASw
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id371600180345993\n"
+"help.text"
+msgid "-no UI-"
+msgstr ""
+
+#. fNkWD
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id851600180346872\n"
+"help.text"
+msgid "...after document security settings have changed."
+msgstr ""
+
+#. 5Cfig
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id921600180238854\n"
+"help.text"
+msgid "'Modified' status was changed"
+msgstr ""
+
+#. vVXPg
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id321600180239944\n"
+"help.text"
+msgid "Modified state of a document has changed."
+msgstr ""
+
+#. po5DD
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id741600180121445\n"
+"help.text"
+msgid "Document title changed"
+msgstr ""
+
+#. KjqSB
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id801600180122852\n"
+"help.text"
+msgid "When the document title gets updated."
+msgstr ""
+
+#. AkeoE
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id641600180121445\n"
+"help.text"
+msgid "Loaded a sub component"
+msgstr ""
+
+#. Vq5NQ
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id701600180122852\n"
+"help.text"
+msgid "...after a database form has been opened."
+msgstr ""
+
+#. 7zuFb
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id641700180131445\n"
+"help.text"
+msgid "Closed a sub component"
+msgstr ""
+
+#. Gzmes
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id701600290122852\n"
+"help.text"
+msgid "...after a database form has been closed."
+msgstr ""
+
+#. KHhEE
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id421600097736759\n"
+"help.text"
+msgid "Printing of form letters started"
+msgstr ""
+
+#. AAYeB
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id411600097854273\n"
+"help.text"
+msgid "...before printing form letters using <emph>File - Print</emph> or <emph>Tools - Mail Merge Wizard</emph> menus."
+msgstr ""
+
+#. vDckq
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id41600097737991\n"
+"help.text"
+msgid "Printing of form letters finished"
+msgstr ""
+
+#. Wp5ff
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id451600097862282\n"
+"help.text"
+msgid "...after printing of form letters using <emph>File - Print</emph> or <emph>Tools - Mail Merge Wizard</emph> menus."
+msgstr ""
+
+#. RpMCy
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id641600160655602\n"
+"help.text"
+msgid "Printing of form fields started"
+msgstr ""
+
+#. NDjvr
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id331600160656617\n"
+"help.text"
+msgid "...before printing form fields."
+msgstr ""
+
+#. pMuA3
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id801600160725659\n"
+"help.text"
+msgid "Printing of form fields finished"
+msgstr ""
+
+#. 7GYKZ
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id961600160726645\n"
+"help.text"
+msgid "...after printing form fields."
+msgstr ""
+
+#. esqcH
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3156366\n"
+"help.text"
+msgid "Change of the page count"
+msgstr ""
+
+#. hAoeW
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3154627\n"
+"help.text"
+msgid "When the page count changes."
+msgstr ""
+
+#. XQXbJ
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id131600158369191\n"
+"help.text"
+msgid "Most events relate to documents, except <literal>OnStartApp</literal>, <literal>OnCloseApp</literal>, <literal>OnCreate</literal> and <literal>OnLoadFinished</literal> that occur at application level. <literal>OnSubComponentOpened</literal>, and <literal>OnSubComponentClosed</literal> events are fired by database's forms."
+msgstr ""
+
+#. e6gAF
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id321600158566782\n"
+"help.text"
+msgid "Writer documents are triggering those specific events: <literal>OnLayoutFinished</literal>, <literal>OnMailMerge</literal>, <literal>OnMailMergeFinished</literal>, <literal>OnFieldMerge</literal>, <literal>OnFieldMergeFinished</literal> and <literal>OnPageCountChanged</literal>."
+msgstr ""
+
+#. 7xyqi
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"hd_id3153299\n"
+"help.text"
+msgid "Assigning a Macro to an Event"
+msgstr ""
+
+#. 37TrA
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3147244\n"
+"help.text"
+msgid "Choose <emph>Tools - Customize</emph> and click the <emph>Events</emph> tab."
+msgstr ""
+
+#. AgVEM
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3146098\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 ""
+
+#. em5hj
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3150431\n"
+"help.text"
+msgid "Select the event from the <emph>Event</emph> list."
+msgstr ""
+
+#. 7Hcqy
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3148742\n"
+"help.text"
+msgid "Click <emph>Macro</emph> and select the macro to be assigned to the selected event."
+msgstr ""
+
+#. BMHGD
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3146321\n"
+"help.text"
+msgid "Click <emph>OK</emph> to assign the macro."
+msgstr ""
+
+#. jtkJ7
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3147414\n"
+"help.text"
+msgid "Click <emph>OK</emph> to close the dialog."
+msgstr ""
+
+#. DzQYQ
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"hd_id3154581\n"
+"help.text"
+msgid "Removing the Assignment of a Macro to an Event"
+msgstr ""
+
+#. UGGUT
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3146883\n"
+"help.text"
+msgid "Choose <emph>Tools - Customize</emph> and click the <emph>Events</emph> tab."
+msgstr ""
+
+#. BCPRn
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3155909\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 ""
+
+#. 7ZkYK
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3159129\n"
+"help.text"
+msgid "Select the event that contains the assignment to be removed from the <emph>Event</emph> list."
+msgstr ""
+
+#. BBaJ6
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3149143\n"
+"help.text"
+msgid "Click <emph>Remove</emph>."
+msgstr ""
+
+#. zrhkb
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3149351\n"
+"help.text"
+msgid "Click <emph>OK</emph> to close the dialog."
+msgstr ""
+
+#. ruyPz
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id341600162682135\n"
+"help.text"
+msgid "In addition to assigning macros to events, one can <link href=\"text/sbasic/python/python_document_events.xhp\" name=\"Monitor events\">monitor events</link> triggered in %PRODUCTNAME documents."
+msgstr ""
+
+#. XcdRk
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"tit\n"
+"help.text"
+msgid "$[officename] Basic IDE"
+msgstr ""
+
+#. 6zAS7
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"hd_id3154422\n"
+"help.text"
+msgid "<variable id=\"01050000\"><link href=\"text/sbasic/shared/01050000.xhp\" name=\"$[officename] Basic IDE\">$[officename] Basic IDE</link></variable>"
+msgstr ""
+
+#. YTpwx
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"par_id3153142\n"
+"help.text"
+msgid "This section describes the structure of the Basic IDE."
+msgstr ""
+
+#. QFuVt
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"par_idN105C9\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the Basic IDE where you can write and edit macros.</ahelp>"
+msgstr ""
+
+#. 8Fzvm
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"hd_id3153188\n"
+"help.text"
+msgid "Commands From the Context menu of the Module Tabs"
+msgstr ""
+
+#. gFED6
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"hd_id3154731\n"
+"help.text"
+msgid "Insert"
+msgstr ""
+
+#. McSb8
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"hd_id3151074\n"
+"help.text"
+msgid "Module"
+msgstr ""
+
+#. VgxHk
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"par_id3149581\n"
+"help.text"
+msgid "<ahelp hid=\".uno:NewModule\">Inserts a new module into the current library.</ahelp>"
+msgstr ""
+
+#. QFMA3
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"hd_id3147397\n"
+"help.text"
+msgid "Dialog"
+msgstr ""
+
+#. ywScC
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"par_id3144335\n"
+"help.text"
+msgid "<ahelp hid=\".uno:NewDialog\">Inserts a new dialog into the current library.</ahelp>"
+msgstr ""
+
+#. xD3Pn
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"hd_id3155602\n"
+"help.text"
+msgid "Delete"
+msgstr ""
+
+#. RZYVz
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"par_id3155064\n"
+"help.text"
+msgid "<ahelp hid=\".uno:DeleteCurrent\">Deletes the selected module.</ahelp>"
+msgstr ""
+
+#. WaaYP
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"hd_id3149018\n"
+"help.text"
+msgid "Rename"
+msgstr ""
+
+#. XnTq6
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"par_id3154754\n"
+"help.text"
+msgid "<ahelp hid=\".uno:RenameCurrent\">Renames the current module in place.</ahelp>"
+msgstr ""
+
+#. tZBdJ
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"hd_id3150043\n"
+"help.text"
+msgid "Hide"
+msgstr ""
+
+#. CNC4t
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"par_id3145147\n"
+"help.text"
+msgid "<ahelp hid=\".uno:HideCurPage\">Hides the current module.</ahelp>"
+msgstr ""
+
+#. HHtE6
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"hd_id3163805\n"
+"help.text"
+msgid "Modules"
+msgstr ""
+
+#. JotdN
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"par_id3153965\n"
+"help.text"
+msgid "Opens the <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Macro Organizer\"><emph>Macro Organizer</emph></link> dialog."
+msgstr ""
+
+#. EHXTp
+#: 01050100.xhp
+msgctxt ""
+"01050100.xhp\n"
+"tit\n"
+"help.text"
+msgid "Watch Window"
+msgstr ""
+
+#. FgKHh
+#: 01050100.xhp
+msgctxt ""
+"01050100.xhp\n"
+"hd_id3149457\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/01050100.xhp\">Watch Window</link>"
+msgstr ""
+
+#. sCkDE
+#: 01050100.xhp
+msgctxt ""
+"01050100.xhp\n"
+"par_id3154908\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 ""
+
+#. 9wvFG
+#: 01050100.xhp
+msgctxt ""
+"01050100.xhp\n"
+"hd_id3145173\n"
+"help.text"
+msgid "Watch"
+msgstr ""
+
+#. kxkF2
+#: 01050100.xhp
+msgctxt ""
+"01050100.xhp\n"
+"par_id3155132\n"
+"help.text"
+msgid "<ahelp hid=\"HID_BASICIDE_WATCHWINDOW_EDIT\">Enter the name of the variable whose value is to be monitored.</ahelp>"
+msgstr ""
+
+#. tm5GB
+#: 01050100.xhp
+msgctxt ""
+"01050100.xhp\n"
+"hd_id3148645\n"
+"help.text"
+msgid "Remove Watch"
+msgstr ""
+
+#. yqBLC
+#: 01050100.xhp
+msgctxt ""
+"01050100.xhp\n"
+"par_id3148576\n"
+"help.text"
+msgid "<ahelp hid=\"HID_BASICIDE_REMOVEWATCH\">Removes the selected variable from the list of watched variables.</ahelp>"
+msgstr ""
+
+#. UzqEN
+#: 01050100.xhp
+msgctxt ""
+"01050100.xhp\n"
+"par_id3147426\n"
+"help.text"
+msgid "<image id=\"img_id3152460\" src=\"res/baswatr.png\" width=\"0.25inch\" height=\"0.222inch\"><alt id=\"alt_id3152460\">Icon</alt></image>"
+msgstr ""
+
+#. xDG4x
+#: 01050100.xhp
+msgctxt ""
+"01050100.xhp\n"
+"par_id3154012\n"
+"help.text"
+msgid "Remove Watch"
+msgstr ""
+
+#. mq5A9
+#: 01050100.xhp
+msgctxt ""
+"01050100.xhp\n"
+"hd_id3154491\n"
+"help.text"
+msgid "Editing the Value of a Watched Variable"
+msgstr ""
+
+#. FQF6P
+#: 01050100.xhp
+msgctxt ""
+"01050100.xhp\n"
+"par_id3156283\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 ""
+
+#. swaqV
+#: 01050200.xhp
+msgctxt ""
+"01050200.xhp\n"
+"tit\n"
+"help.text"
+msgid "Call Stack Window (Calls)"
+msgstr ""
+
+#. J83GK
+#: 01050200.xhp
+msgctxt ""
+"01050200.xhp\n"
+"hd_id3146794\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/01050200.xhp\" name=\"Call Stack Window (Calls)\">Call Stack Window (Calls)</link>"
+msgstr ""
+
+#. CnvX5
+#: 01050200.xhp
+msgctxt ""
+"01050200.xhp\n"
+"par_id3150400\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 ""
+
+#. kbmgA
+#: 01050300.xhp
+msgctxt ""
+"01050300.xhp\n"
+"tit\n"
+"help.text"
+msgid "Manage Breakpoints"
+msgstr ""
+
+#. SuyRz
+#: 01050300.xhp
+msgctxt ""
+"01050300.xhp\n"
+"hd_id3154927\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/01050300.xhp\" name=\"Manage Breakpoints\">Manage Breakpoints</link>"
+msgstr ""
+
+#. JksJ4
+#: 01050300.xhp
+msgctxt ""
+"01050300.xhp\n"
+"par_id3148550\n"
+"help.text"
+msgid "<ahelp hid=\"modules/BasicIDE/ui/managebreakpoints/ManageBreakpointsDialog\">Specifies the options for breakpoints.</ahelp>"
+msgstr ""
+
+#. NgpMF
+#: 01050300.xhp
+msgctxt ""
+"01050300.xhp\n"
+"hd_id3149670\n"
+"help.text"
+msgid "Breakpoints"
+msgstr ""
+
+#. dY6rB
+#: 01050300.xhp
+msgctxt ""
+"01050300.xhp\n"
+"par_id3150398\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 ""
+
+#. 6U5kU
+#: 01050300.xhp
+msgctxt ""
+"01050300.xhp\n"
+"hd_id3156280\n"
+"help.text"
+msgid "Active"
+msgstr ""
+
+#. xjbqE
+#: 01050300.xhp
+msgctxt ""
+"01050300.xhp\n"
+"par_id3154910\n"
+"help.text"
+msgid "<ahelp hid=\"modules/BasicIDE/ui/managebreakpoints/active\">Activates or deactivates the current breakpoint.</ahelp>"
+msgstr ""
+
+#. BmHff
+#: 01050300.xhp
+msgctxt ""
+"01050300.xhp\n"
+"hd_id3144500\n"
+"help.text"
+msgid "Pass Count"
+msgstr ""
+
+#. hZEbs
+#: 01050300.xhp
+msgctxt ""
+"01050300.xhp\n"
+"par_id3161831\n"
+"help.text"
+msgid "<ahelp hid=\"modules/BasicIDE/ui/managebreakpoints/pass\">Specify the number of loops to perform before the breakpoint takes effect.</ahelp>"
+msgstr ""
+
+#. gr8LF
+#: 01050300.xhp
+msgctxt ""
+"01050300.xhp\n"
+"hd_id3152579\n"
+"help.text"
+msgid "New"
+msgstr ""
+
+#. CnVC5
+#: 01050300.xhp
+msgctxt ""
+"01050300.xhp\n"
+"par_id3148575\n"
+"help.text"
+msgid "<ahelp hid=\"modules/BasicIDE/ui/managebreakpoints/new\">Creates a breakpoint on the line number specified.</ahelp>"
+msgstr ""
+
+#. GNUAD
+#: 01050300.xhp
+msgctxt ""
+"01050300.xhp\n"
+"hd_id3147319\n"
+"help.text"
+msgid "Delete"
+msgstr ""
+
+#. FjDwe
+#: 01050300.xhp
+msgctxt ""
+"01050300.xhp\n"
+"par_id3153363\n"
+"help.text"
+msgid "<ahelp hid=\"modules/BasicIDE/ui/managebreakpoints/delete\">Deletes the selected breakpoint.</ahelp>"
+msgstr ""
+
+#. FokMf
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"tit\n"
+"help.text"
+msgid "Control and Dialog Properties"
+msgstr ""
+
+#. zRzYS
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"bm_id3153379\n"
+"help.text"
+msgid "<bookmark_value>controls; properties</bookmark_value><bookmark_value>properties; controls and dialogs</bookmark_value><bookmark_value>dialogs; properties</bookmark_value>"
+msgstr ""
+
+#. xdRFW
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"hd_id3153379\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/01170100.xhp\" name=\"Control and Dialog Properties\">Control and Dialog Properties</link>"
+msgstr ""
+
+#. WPmT4
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"par_id3156280\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 ""
+
+#. AKNqf
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"hd_id3151043\n"
+"help.text"
+msgid "Entering Data in the Properties Dialog"
+msgstr ""
+
+#. hyyPe
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"par_id3153771\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 ""
+
+#. pJ7C6
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"par_id3150010\n"
+"help.text"
+msgid "Keys"
+msgstr ""
+
+#. sn9u8
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"par_id3147317\n"
+"help.text"
+msgid "Effects"
+msgstr ""
+
+#. A8PGQ
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"par_id3146121\n"
+"help.text"
+msgid "Alt+Down Arrow"
+msgstr ""
+
+#. K92G7
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"par_id3149581\n"
+"help.text"
+msgid "Opens a combo box"
+msgstr ""
+
+#. h2EUT
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"par_id3147394\n"
+"help.text"
+msgid "Alt+Up Arrow"
+msgstr ""
+
+#. G2ta5
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"par_id3148455\n"
+"help.text"
+msgid "Closes a combo box"
+msgstr ""
+
+#. m5KJm
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"par_id3154511\n"
+"help.text"
+msgid "Shift+Enter"
+msgstr ""
+
+#. wyG3u
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"par_id3146971\n"
+"help.text"
+msgid "Inserts a line break in multiline fields."
+msgstr ""
+
+#. XYW3y
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"par_id3146914\n"
+"help.text"
+msgid "(UpArrow)"
+msgstr ""
+
+#. hGdUu
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"par_id3153714\n"
+"help.text"
+msgid "Goes to the previous line."
+msgstr ""
+
+#. mtkFW
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"par_id3159266\n"
+"help.text"
+msgid "(DownArrow)"
+msgstr ""
+
+#. TRNaq
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"par_id3146314\n"
+"help.text"
+msgid "Goes to the next line."
+msgstr ""
+
+#. jNc5k
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"par_id3149255\n"
+"help.text"
+msgid "Enter"
+msgstr ""
+
+#. prQQs
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"par_id3149566\n"
+"help.text"
+msgid "Applies the changes made to a field and places the cursor into the next field."
+msgstr ""
+
+#. RBV9J
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"tit\n"
+"help.text"
+msgid "General"
+msgstr ""
+
+#. fqGGQ
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"hd_id3147436\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/01170101.xhp\" name=\"General\">General</link>"
+msgstr ""
+
+#. xTQUU
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3155855\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 ""
+
+#. GDxAa
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"hd_id3148647\n"
+"help.text"
+msgid "Alignment"
+msgstr ""
+
+#. PtRMQ
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3147318\n"
+"help.text"
+msgid "<ahelp hid=\"HID_PROP_IMAGE_ALIGN\">Specify the alignment option for the selected control.</ahelp>"
+msgstr ""
+
+#. aBDEP
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"hd_id3153189\n"
+"help.text"
+msgid "AutoFill"
+msgstr ""
+
+#. EDCbD
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3152460\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select \"Yes\" to enable the AutoFill function for the selected control. </ahelp>"
+msgstr ""
+
+#. avCAy
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"hd_id3155307\n"
+"help.text"
+msgid "Background color"
+msgstr ""
+
+#. DYYEL
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3145251\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specify the background color for the current control.</ahelp>"
+msgstr ""
+
+#. cFZBo
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"hd_id3151076\n"
+"help.text"
+msgid "Large change"
+msgstr ""
+
+#. xF7DA
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3148457\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 ""
+
+#. 9QGLF
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"hd_id3153876\n"
+"help.text"
+msgid "Border"
+msgstr ""
+
+#. eRnCR
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3154017\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specify the border type for the current control.</ahelp>"
+msgstr ""
+
+#. a7atD
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"hd_id3150749\n"
+"help.text"
+msgid "Button type"
+msgstr ""
+
+#. 396Qd
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3155064\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select a button type. Button types determine what type of action is initiated.</ahelp>"
+msgstr ""
+
+#. xDFYm
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"hd_id3149019\n"
+"help.text"
+msgid "Character set"
+msgstr ""
+
+#. F948D
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3148406\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select the font to be used for displaying the contents of the current control.</ahelp>"
+msgstr ""
+
+#. rLJXW
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"hd_id3147341\n"
+"help.text"
+msgid "Currency symbol"
+msgstr ""
+
+#. hvuKK
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3146315\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter the currency symbol to be used for currency controls.</ahelp>"
+msgstr ""
+
+#. hkEUs
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"hd_id7936643\n"
+"help.text"
+msgid "Date"
+msgstr ""
+
+#. W6cd8
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id2293771\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specify the default date to be shown in the Date control.</ahelp>"
+msgstr ""
+
+#. nDAvA
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"hd_id3153965\n"
+"help.text"
+msgid "Date format"
+msgstr ""
+
+#. Vpt3V
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3155334\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 ""
+
+#. xBWQF
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"hd_id3154663\n"
+"help.text"
+msgid "Date max."
+msgstr ""
+
+#. H3it5
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3148485\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specify the upper limit for a date control.</ahelp>"
+msgstr ""
+
+#. fLYMV
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"hd_id3152778\n"
+"help.text"
+msgid "Date min."
+msgstr ""
+
+#. njsjf
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3154120\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specify the lower limit for a date control.</ahelp>"
+msgstr ""
+
+#. 5cRdr
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"hd_id3154573\n"
+"help.text"
+msgid "Decimal accuracy"
+msgstr ""
+
+#. LAnBF
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3166426\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specify the number of decimal places displayed for a numerical or currency control.</ahelp>"
+msgstr ""
+
+#. NxoEv
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"hd_id3159091\n"
+"help.text"
+msgid "Default button"
+msgstr ""
+
+#. JFHwY
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3154200\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 ""
+
+#. bsDNs
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_idN108BA\n"
+"help.text"
+msgid "Delay"
+msgstr ""
+
+#. UGWJG
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_idN108D0\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specifies the delay in milliseconds between scrollbar trigger events.</ahelp> A trigger event occurs when you click a scrollbar arrow or click the background area in a scrollbar. Repeated trigger events occur if you keep the mouse button pressed when you click a scrollbar arrow or background area in a scrollbar. If you want, you can include valid time units with the number that you enter, for example, 2 s or 500 ms."
+msgstr ""
+
+#. jFKSh
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"hd_id3151278\n"
+"help.text"
+msgid "Dropdown"
+msgstr ""
+
+#. Cip9s
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3155113\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 ""
+
+#. tCz4B
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"hd_id3151216\n"
+"help.text"
+msgid "Enabled"
+msgstr ""
+
+#. t4GJD
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3150517\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 ""
+
+#. M7AWe
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"hd_id3155379\n"
+"help.text"
+msgid "Edit mask"
+msgstr ""
+
+#. X3nvF
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3155509\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 ""
+
+#. B7JzP
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3154485\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 ""
+
+#. AicCo
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3155809\n"
+"help.text"
+msgid "Character"
+msgstr ""
+
+#. 7B8iu
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3148702\n"
+"help.text"
+msgid "Meaning"
+msgstr ""
+
+#. qAQoQ
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3148869\n"
+"help.text"
+msgid "A text constant. This character cannot be modified by the user."
+msgstr ""
+
+#. yEwjE
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3157983\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 ""
+
+#. Q86Zu
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3159204\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 ""
+
+#. tuUGC
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3151304\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 ""
+
+#. urwGP
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3155071\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 ""
+
+#. U4J7u
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3154650\n"
+"help.text"
+msgid "Only the characters 0-9 can be entered."
+msgstr ""
+
+#. Gpn4f
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3153489\n"
+"help.text"
+msgid "All printable characters can be entered."
+msgstr ""
+
+#. SxFCq
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3154707\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 ""
+
+#. F3XwG
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"hd_id2128971\n"
+"help.text"
+msgid "Editable"
+msgstr ""
+
+#. R4Axb
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id6519974\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specifies whether the nodes of the tree control are editable.</ahelp>"
+msgstr ""
+
+#. 6E3fY
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id4591814\n"
+"help.text"
+msgid "The default value is FALSE."
+msgstr ""
+
+#. VDs3B
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"hd_id3149317\n"
+"help.text"
+msgid "Graphics"
+msgstr ""
+
+#. phpED
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3147546\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 ""
+
+#. iPZoL
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"hd_id3154627\n"
+"help.text"
+msgid "Height"
+msgstr ""
+
+#. Bs2gd
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3155754\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specify the height of the current control or the dialog.</ahelp>"
+msgstr ""
+
+#. VvPRw
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"hd_id3153072\n"
+"help.text"
+msgid "Help text"
+msgstr ""
+
+#. Kz7Ys
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3147502\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 ""
+
+#. pTjfM
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"hd_id3154400\n"
+"help.text"
+msgid "Help URL"
+msgstr ""
+
+#. XxuEf
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3150431\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 ""
+
+#. yaVgx
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id4171269\n"
+"help.text"
+msgid "Set the environment variable HELP_DEBUG to 1 to view the Help-IDs as extended help tips."
+msgstr ""
+
+#. PeAAF
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"hd_id3159260\n"
+"help.text"
+msgid "Incr./decrement value"
+msgstr ""
+
+#. j6dm5
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3145233\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specify the increment and decrement interval for spin button controls.</ahelp>"
+msgstr ""
+
+#. WRQBk
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"hd_id539262\n"
+"help.text"
+msgid "Invokes stop mode editing"
+msgstr ""
+
+#. uYGG2
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id234382\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specifies what happens when editing is interrupted by selecting another node in the tree, a change in the tree's data, or by some other means.</ahelp>"
+msgstr ""
+
+#. ExcDe
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id6591082\n"
+"help.text"
+msgid "Setting this property to TRUE causes the changes to be automatically saved when editing is interrupted. FALSE means that editing is canceled and changes are lost."
+msgstr ""
+
+#. DgFkR
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id9298074\n"
+"help.text"
+msgid "The default value is FALSE."
+msgstr ""
+
+#. Di9Xo
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"hd_id3150536\n"
+"help.text"
+msgid "Label"
+msgstr ""
+
+#. BH2nz
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3146324\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specifies the label of the current control. The label is displayed along with the control.</ahelp>"
+msgstr ""
+
+#. 6X5mC
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3146816\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 ""
+
+#. r4WBz
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"hd_id3150457\n"
+"help.text"
+msgid "Line Count"
+msgstr ""
+
+#. YBUsT
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3149143\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 ""
+
+#. bJA4h
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"hd_id7468489\n"
+"help.text"
+msgid "Scrollbar"
+msgstr ""
+
+#. nDA7n
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id7706228\n"
+"help.text"
+msgid "Adds the scrollbar type that you specify to a text box."
+msgstr ""
+
+#. 6xNxb
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"hd_id3153121\n"
+"help.text"
+msgid "Small change"
+msgstr ""
+
+#. CGeAu
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3157875\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specify the number of units to scroll when a user clicks an arrow on a scrollbar.</ahelp>"
+msgstr ""
+
+#. kC4mu
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"hd_id3145221\n"
+"help.text"
+msgid "List entries"
+msgstr ""
+
+#. Ga3fT
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3154580\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 ""
+
+#. qBq9j
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"hd_id3149723\n"
+"help.text"
+msgid "Literal mask"
+msgstr ""
+
+#. 7seGj
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3150656\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 ""
+
+#. CRUKE
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"hd_id3149015\n"
+"help.text"
+msgid "Manual line break"
+msgstr ""
+
+#. BdKPT
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3149893\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select \"Yes\" to allow manual line breaks inside multiline controls.</ahelp>"
+msgstr ""
+
+#. Q954Y
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"hd_id3150463\n"
+"help.text"
+msgid "Max. text length"
+msgstr ""
+
+#. jCAEZ
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3150745\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specify the maximum number of characters that the user can enter.</ahelp>"
+msgstr ""
+
+#. fWJry
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"hd_id3154675\n"
+"help.text"
+msgid "Multiline Input"
+msgstr ""
+
+#. j9JFM
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3144741\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 ""
+
+#. GHYEq
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"hd_id3154848\n"
+"help.text"
+msgid "Multiselection"
+msgstr ""
+
+#. rtqLT
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3151235\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select \"Yes\" to allow the selection of multiple entries in list controls.</ahelp>"
+msgstr ""
+
+#. 5XDPo
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"hd_id3148887\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. NuDCQ
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3154548\n"
+"help.text"
+msgid "<ahelp hid=\".\">Insert a name for the current control. This name is used to identify the control.</ahelp>"
+msgstr ""
+
+#. F2dAE
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"hd_id3148739\n"
+"help.text"
+msgid "Order"
+msgstr ""
+
+#. i7fot
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3149252\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 focuses the other controls as specified by their order number."
+msgstr ""
+
+#. 54etz
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3155259\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 ""
+
+#. 9AfPp
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"hd_id3149511\n"
+"help.text"
+msgid "Orientation"
+msgstr ""
+
+#. ikZBx
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3153780\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specify the orientation for a scrollbar control.</ahelp>"
+msgstr ""
+
+#. wPXqH
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"hd_id3154374\n"
+"help.text"
+msgid "Page (step)"
+msgstr ""
+
+#. UcdiE
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3154109\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 ""
+
+#. BoGGV
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3148580\n"
+"help.text"
+msgid "Select <emph>Page (Step)</emph> = 0 to make a control visible on every dialog page."
+msgstr ""
+
+#. CWHWy
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3146144\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 ""
+
+#. yfdsF
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"hd_id3154558\n"
+"help.text"
+msgid "Password characters"
+msgstr ""
+
+#. kNFHd
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3152787\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 ""
+
+#. h8SXD
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"hd_id3148750\n"
+"help.text"
+msgid "PositionX"
+msgstr ""
+
+#. 2EVcB
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3154517\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specify the distance of the current control from the left side of the dialog.</ahelp>"
+msgstr ""
+
+#. JTKqk
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"hd_id3152767\n"
+"help.text"
+msgid "PositionY"
+msgstr ""
+
+#. J7py4
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3159082\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specify the distance of the current control from the top of the dialog.</ahelp>"
+msgstr ""
+
+#. bGzny
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"hd_id3159213\n"
+"help.text"
+msgid "Prefix symbol"
+msgstr ""
+
+#. ezYKt
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3149688\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select \"Yes\" to display the currency symbol prefix in currency controls when a number was entered.</ahelp>"
+msgstr ""
+
+#. ACDzZ
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"hd_id3149728\n"
+"help.text"
+msgid "Print"
+msgstr ""
+
+#. DTyCw
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3150001\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select \"Yes\" to include the current control in a document's printout.</ahelp>"
+msgstr ""
+
+#. cff54
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"hd_id3154671\n"
+"help.text"
+msgid "Progress value"
+msgstr ""
+
+#. hZPwV
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3146849\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specify a progress value for a progress bar control.</ahelp>"
+msgstr ""
+
+#. AVt7R
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"hd_id3153112\n"
+"help.text"
+msgid "Progress value max."
+msgstr ""
+
+#. KAaFj
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3145167\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specify the maximum value of a progress bar control.</ahelp>"
+msgstr ""
+
+#. 7Euj4
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"hd_id3153569\n"
+"help.text"
+msgid "Progress value min."
+msgstr ""
+
+#. oBei3
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3154506\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specify the minimum value of a progress bar control.</ahelp>"
+msgstr ""
+
+#. ZbJ4B
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"hd_id3150134\n"
+"help.text"
+msgid "Read-only"
+msgstr ""
+
+#. pDFLA
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3155930\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 focused but not modified.</ahelp>"
+msgstr ""
+
+#. QcDc4
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_idN11112\n"
+"help.text"
+msgid "Repeat"
+msgstr ""
+
+#. Tn2Gm
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_idN11128\n"
+"help.text"
+msgid "<ahelp hid=\".\">Repeats trigger events when you keep the mouse button pressed on a control such as a spin button.</ahelp>"
+msgstr ""
+
+#. RP3VX
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"hd_id9579149\n"
+"help.text"
+msgid "Root displayed"
+msgstr ""
+
+#. adGTR
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id7126987\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specifies if the root node of the tree control is displayed.</ahelp>"
+msgstr ""
+
+#. p9tYi
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id9174779\n"
+"help.text"
+msgid "If Root displayed is set to FALSE, the root node of a model is no longer a valid node for the tree control and can't be used with any method of XTreeControl."
+msgstr ""
+
+#. KucrS
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id594195\n"
+"help.text"
+msgid "The default value is TRUE."
+msgstr ""
+
+#. UFPCV
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"hd_id7534409\n"
+"help.text"
+msgid "Row height"
+msgstr ""
+
+#. xPrCr
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id6471755\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specifies the height of each row of a tree control, in pixels.</ahelp>"
+msgstr ""
+
+#. wFHUd
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id2909329\n"
+"help.text"
+msgid "If the specified value is less than or equal to zero, the row height is the maximum height of all rows."
+msgstr ""
+
+#. CLPMV
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id4601580\n"
+"help.text"
+msgid "The default value is 0."
+msgstr ""
+
+#. ydxCG
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"hd_id3148761\n"
+"help.text"
+msgid "Scale"
+msgstr ""
+
+#. 9qp2q
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3159134\n"
+"help.text"
+msgid "<ahelp hid=\".\">Scales the image to fit the control size.</ahelp>"
+msgstr ""
+
+#. FrqW5
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"hd_id7597277\n"
+"help.text"
+msgid "Scrollbar"
+msgstr ""
+
+#. jiW7j
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id986968\n"
+"help.text"
+msgid "<ahelp hid=\".\">Adds the scrollbar type that you specify to a text box.</ahelp>"
+msgstr ""
+
+#. gkvzY
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"hd_id3147370\n"
+"help.text"
+msgid "Scroll value"
+msgstr ""
+
+#. 24GzW
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3159622\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specify the initial value of a scrollbar control. This determines the position of the scrollbar slider.</ahelp>"
+msgstr ""
+
+#. FEeCy
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"hd_id3155440\n"
+"help.text"
+msgid "Scroll value max."
+msgstr ""
+
+#. 2QDng
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3148877\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specify the maximum value of a scrollbar control.</ahelp>"
+msgstr ""
+
+#. WhdNX
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_idN111E4\n"
+"help.text"
+msgid "Scroll value min."
+msgstr ""
+
+#. KkkV7
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_idN111E8\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specify the minimum value of a scrollbar control.</ahelp>"
+msgstr ""
+
+#. E6FFj
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"hd_id543534\n"
+"help.text"
+msgid "Show handles"
+msgstr ""
+
+#. wG6AD
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id5060884\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specifies whether the handles of the nodes should be displayed.</ahelp>"
+msgstr ""
+
+#. TC8mj
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id4974822\n"
+"help.text"
+msgid "The handles are dotted lines that visualize the hierarchy of the tree control."
+msgstr ""
+
+#. 55Gfe
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id7687307\n"
+"help.text"
+msgid "The default value is TRUE."
+msgstr ""
+
+#. kEF3n
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"hd_id4062013\n"
+"help.text"
+msgid "Show root handles"
+msgstr ""
+
+#. nGccA
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3314004\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specifies whether the handles of the nodes should also be displayed at root level.</ahelp>"
+msgstr ""
+
+#. GCfuF
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id2396313\n"
+"help.text"
+msgid "The default value is TRUE."
+msgstr ""
+
+#. XLMGF
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_idN10EC2\n"
+"help.text"
+msgid "Selection"
+msgstr ""
+
+#. mF5w3
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_idN10ED8\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specifies the sequence of the selected items, where \"0\" corresponds to the first item. To select more than one item, Multiselection must be enabled.</ahelp>"
+msgstr ""
+
+#. jwSUy
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_idN10EEB\n"
+"help.text"
+msgid "Click the <emph>...</emph> button to open the <emph>Selection</emph> dialog."
+msgstr ""
+
+#. oEvvu
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_idN10F0A\n"
+"help.text"
+msgid "<ahelp hid=\".\">Click the item or items that you want to select. To select more than one item, ensure that the Multiselection option is selected.</ahelp>"
+msgstr ""
+
+#. 56k8D
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"hd_id5026093\n"
+"help.text"
+msgid "Selection type"
+msgstr ""
+
+#. 7MwBq
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id1134067\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specifies the selection mode that is enabled for this tree control.</ahelp>"
+msgstr ""
+
+#. roCpn
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"hd_id3154193\n"
+"help.text"
+msgid "Spin Button"
+msgstr ""
+
+#. iEFns
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3145298\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 ""
+
+#. BvGkC
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"hd_id3156267\n"
+"help.text"
+msgid "State"
+msgstr ""
+
+#. PPtEE
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3150928\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select the selection state of the current control.</ahelp>"
+msgstr ""
+
+#. Gq4qC
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"hd_id3148396\n"
+"help.text"
+msgid "Strict format"
+msgstr ""
+
+#. Z3Rvf
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3153042\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 ""
+
+#. VCDfj
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"hd_id3149538\n"
+"help.text"
+msgid "Tabstop"
+msgstr ""
+
+#. s9gEA
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3148543\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select the focus behavior of the current control when using the <emph>Tab</emph> key.</ahelp>"
+msgstr ""
+
+#. NPdpK
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3148776\n"
+"help.text"
+msgid "Default"
+msgstr ""
+
+#. XETrP
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3153547\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 ""
+
+#. JTQgu
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3154632\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. oyTwe
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3150475\n"
+"help.text"
+msgid "When using the tab key focusing skips the control."
+msgstr ""
+
+#. V6wEq
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3150690\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. 5Wdjs
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3159106\n"
+"help.text"
+msgid "The control can be selected with the Tab key."
+msgstr ""
+
+#. TE6hi
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"hd_id3145152\n"
+"help.text"
+msgid "Thousands Separator"
+msgstr ""
+
+#. eDAbP
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3155085\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select \"Yes\" to display thousands separator characters in numerical and currency controls.</ahelp>"
+msgstr ""
+
+#. HS2wM
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"hd_id3152816\n"
+"help.text"
+msgid "Time Format"
+msgstr ""
+
+#. 4RWLq
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3145263\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select the format to be used for time controls.</ahelp>"
+msgstr ""
+
+#. FwARu
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"hd_id3153920\n"
+"help.text"
+msgid "Time max."
+msgstr ""
+
+#. xBHyX
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3155401\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specify the maximum time value for a time control.</ahelp>"
+msgstr ""
+
+#. wgnhh
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"hd_id3163818\n"
+"help.text"
+msgid "Time min."
+msgstr ""
+
+#. EA37B
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3156262\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specify the minimum time value for a time control.</ahelp>"
+msgstr ""
+
+#. qDZqx
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"hd_id3148638\n"
+"help.text"
+msgid "Title"
+msgstr ""
+
+#. Wv8aS
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3147169\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specify the title of the dialog. Click the border of the dialog to select the dialog.</ahelp>"
+msgstr ""
+
+#. USyCT
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3153716\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 ""
+
+#. LAsn8
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"hd_id3152594\n"
+"help.text"
+msgid "Tristate"
+msgstr ""
+
+#. uxGB3
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3149825\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 ""
+
+#. vyDif
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"hd_id3150614\n"
+"help.text"
+msgid "Value"
+msgstr ""
+
+#. Dvp2W
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3154315\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specify the value for the current control.</ahelp>"
+msgstr ""
+
+#. BujNx
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"hd_id3152480\n"
+"help.text"
+msgid "Value max."
+msgstr ""
+
+#. F9hPJ
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3163823\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specify the maximum value for the current control.</ahelp>"
+msgstr ""
+
+#. moAtf
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"hd_id3149276\n"
+"help.text"
+msgid "Value min."
+msgstr ""
+
+#. XHytA
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3145088\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specify the minimum value for the current control.</ahelp>"
+msgstr ""
+
+#. R8Y3e
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"hd_id3149712\n"
+"help.text"
+msgid "Visible size"
+msgstr ""
+
+#. cAZFe
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3149445\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specify the length of the slider of a scrollbar control.</ahelp>"
+msgstr ""
+
+#. qedJo
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"hd_id3152472\n"
+"help.text"
+msgid "Width"
+msgstr ""
+
+#. AhWSF
+#: 01170101.xhp
+msgctxt ""
+"01170101.xhp\n"
+"par_id3157963\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specify the width of the current control or dialog.</ahelp>"
+msgstr ""
+
+#. b5UkP
+#: 01170103.xhp
+msgctxt ""
+"01170103.xhp\n"
+"tit\n"
+"help.text"
+msgid "Events"
+msgstr ""
+
+#. EGJFt
+#: 01170103.xhp
+msgctxt ""
+"01170103.xhp\n"
+"hd_id3155506\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/01170103.xhp\" name=\"Events\">Events</link>"
+msgstr ""
+
+#. 2ZBSR
+#: 01170103.xhp
+msgctxt ""
+"01170103.xhp\n"
+"par_id3146114\n"
+"help.text"
+msgid "Define event assignments for the selected control or dialog. The available events depend on the type of control selected."
+msgstr ""
+
+#. EBDB8
+#: 01170103.xhp
+msgctxt ""
+"01170103.xhp\n"
+"hd_id3145387\n"
+"help.text"
+msgid "When receiving focus"
+msgstr ""
+
+#. qoRyG
+#: 01170103.xhp
+msgctxt ""
+"01170103.xhp\n"
+"par_id3155090\n"
+"help.text"
+msgid "<ahelp hid=\"HID_EVT_FOCUSGAINED\">This event takes place if a control receives the focus.</ahelp>"
+msgstr ""
+
+#. TErjJ
+#: 01170103.xhp
+msgctxt ""
+"01170103.xhp\n"
+"hd_id3152892\n"
+"help.text"
+msgid "When losing focus"
+msgstr ""
+
+#. kF9wq
+#: 01170103.xhp
+msgctxt ""
+"01170103.xhp\n"
+"par_id3153305\n"
+"help.text"
+msgid "<ahelp hid=\"HID_EVT_FOCUSLOST\">This event takes place if a control loses the focus.</ahelp>"
+msgstr ""
+
+#. sEPWD
+#: 01170103.xhp
+msgctxt ""
+"01170103.xhp\n"
+"hd_id3152896\n"
+"help.text"
+msgid "Key pressed"
+msgstr ""
+
+#. EWGCB
+#: 01170103.xhp
+msgctxt ""
+"01170103.xhp\n"
+"par_id3148837\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 ""
+
+#. MsbEr
+#: 01170103.xhp
+msgctxt ""
+"01170103.xhp\n"
+"hd_id3146869\n"
+"help.text"
+msgid "Key released"
+msgstr ""
+
+#. wztWr
+#: 01170103.xhp
+msgctxt ""
+"01170103.xhp\n"
+"par_id3155267\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 ""
+
+#. pVAed
+#: 01170103.xhp
+msgctxt ""
+"01170103.xhp\n"
+"hd_id3159096\n"
+"help.text"
+msgid "Modified"
+msgstr ""
+
+#. unCXX
+#: 01170103.xhp
+msgctxt ""
+"01170103.xhp\n"
+"par_id3156019\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 ""
+
+#. FjabK
+#: 01170103.xhp
+msgctxt ""
+"01170103.xhp\n"
+"hd_id3144508\n"
+"help.text"
+msgid "Text modified"
+msgstr ""
+
+#. gGKsK
+#: 01170103.xhp
+msgctxt ""
+"01170103.xhp\n"
+"par_id3148608\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 ""
+
+#. 9zMn8
+#: 01170103.xhp
+msgctxt ""
+"01170103.xhp\n"
+"hd_id3159207\n"
+"help.text"
+msgid "Item status changed"
+msgstr ""
+
+#. FdEFB
+#: 01170103.xhp
+msgctxt ""
+"01170103.xhp\n"
+"par_id3155097\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 ""
+
+#. RGkzF
+#: 01170103.xhp
+msgctxt ""
+"01170103.xhp\n"
+"hd_id3151304\n"
+"help.text"
+msgid "Mouse inside"
+msgstr ""
+
+#. VKsez
+#: 01170103.xhp
+msgctxt ""
+"01170103.xhp\n"
+"par_id3152871\n"
+"help.text"
+msgid "<ahelp hid=\"HID_EVT_MOUSEENTERED\">This event takes place when the mouse enters the control.</ahelp>"
+msgstr ""
+
+#. YQfKM
+#: 01170103.xhp
+msgctxt ""
+"01170103.xhp\n"
+"hd_id3146778\n"
+"help.text"
+msgid "Mouse moved while key pressed"
+msgstr ""
+
+#. FBtfB
+#: 01170103.xhp
+msgctxt ""
+"01170103.xhp\n"
+"par_id3150403\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 ""
+
+#. QJjRL
+#: 01170103.xhp
+msgctxt ""
+"01170103.xhp\n"
+"hd_id3150210\n"
+"help.text"
+msgid "Mouse moved"
+msgstr ""
+
+#. yrqS8
+#: 01170103.xhp
+msgctxt ""
+"01170103.xhp\n"
+"par_id3149697\n"
+"help.text"
+msgid "<ahelp hid=\"HID_EVT_MOUSEMOVED\">This event takes place when the mouse moves over the control.</ahelp>"
+msgstr ""
+
+#. KgQEB
+#: 01170103.xhp
+msgctxt ""
+"01170103.xhp\n"
+"hd_id3145216\n"
+"help.text"
+msgid "Mouse button pressed"
+msgstr ""
+
+#. e6Dzn
+#: 01170103.xhp
+msgctxt ""
+"01170103.xhp\n"
+"par_id3155914\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 ""
+
+#. BArDE
+#: 01170103.xhp
+msgctxt ""
+"01170103.xhp\n"
+"hd_id3148899\n"
+"help.text"
+msgid "Mouse button released"
+msgstr ""
+
+#. D39z8
+#: 01170103.xhp
+msgctxt ""
+"01170103.xhp\n"
+"par_id3153812\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 ""
+
+#. AMFZh
+#: 01170103.xhp
+msgctxt ""
+"01170103.xhp\n"
+"hd_id3153556\n"
+"help.text"
+msgid "Mouse outside"
+msgstr ""
+
+#. towUK
+#: 01170103.xhp
+msgctxt ""
+"01170103.xhp\n"
+"par_id3153013\n"
+"help.text"
+msgid "<ahelp hid=\"HID_EVT_MOUSEEXITED\">This event takes place when the mouse leaves the control.</ahelp>"
+msgstr ""
+
+#. 9omSn
+#: 01170103.xhp
+msgctxt ""
+"01170103.xhp\n"
+"hd_id3155759\n"
+"help.text"
+msgid "While adjusting"
+msgstr ""
+
+#. EwGp7
+#: 01170103.xhp
+msgctxt ""
+"01170103.xhp\n"
+"par_id3156364\n"
+"help.text"
+msgid "<ahelp hid=\"HID_EVT_MOUSEEXITED\">This event takes place when a scrollbar is being dragged.</ahelp>"
+msgstr ""
+
+#. 3uoYH
+#: 03000000.xhp
+msgctxt ""
+"03000000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Run-Time Functions"
+msgstr ""
+
+#. xaCyL
+#: 03000000.xhp
+msgctxt ""
+"03000000.xhp\n"
+"hd_id3152895\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 ""
+
+#. Row63
+#: 03000000.xhp
+msgctxt ""
+"03000000.xhp\n"
+"par_id3148983\n"
+"help.text"
+msgid "This section describes the Runtime Functions of %PRODUCTNAME Basic."
+msgstr ""
+
+#. YcBGc
+#: 03010000.xhp
+msgctxt ""
+"03010000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Screen I/O Functions"
+msgstr ""
+
+#. XKT3p
+#: 03010000.xhp
+msgctxt ""
+"03010000.xhp\n"
+"hd_id3156280\n"
+"help.text"
+msgid "<variable id=\"BasicScreenIO\"><link href=\"text/sbasic/shared/03010000.xhp\" name=\"Screen I/O Functions\">Screen I/O Functions</link></variable>"
+msgstr ""
+
+#. A5xZH
+#: 03010000.xhp
+msgctxt ""
+"03010000.xhp\n"
+"par_id3153770\n"
+"help.text"
+msgid "This section describes the Runtime Functions used to call dialogs for the input and output of user entries."
+msgstr ""
+
+#. QGuiJ
+#: 03010100.xhp
+msgctxt ""
+"03010100.xhp\n"
+"tit\n"
+"help.text"
+msgid "Display Functions"
+msgstr ""
+
+#. UBEUG
+#: 03010100.xhp
+msgctxt ""
+"03010100.xhp\n"
+"hd_id3151384\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03010100.xhp\" name=\"Display Functions\">Display Functions</link>"
+msgstr ""
+
+#. pABDY
+#: 03010100.xhp
+msgctxt ""
+"03010100.xhp\n"
+"par_id3149346\n"
+"help.text"
+msgid "This section describes Runtime functions used to output information to the screen display."
+msgstr ""
+
+#. JDxHt
+#: 03010101.xhp
+msgctxt ""
+"03010101.xhp\n"
+"tit\n"
+"help.text"
+msgid "MsgBox Statement"
+msgstr ""
+
+#. fc92k
+#: 03010101.xhp
+msgctxt ""
+"03010101.xhp\n"
+"bm_id1807916\n"
+"help.text"
+msgid "<bookmark_value>MsgBox statement</bookmark_value>"
+msgstr ""
+
+#. 7SaXT
+#: 03010101.xhp
+msgctxt ""
+"03010101.xhp\n"
+"hd_id3154927\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03010101.xhp\">MsgBox Statement</link>"
+msgstr ""
+
+#. iLRSC
+#: 03010101.xhp
+msgctxt ""
+"03010101.xhp\n"
+"par_id3148947\n"
+"help.text"
+msgid "Displays a dialog box containing a message."
+msgstr ""
+
+#. rXKix
+#: 03010101.xhp
+msgctxt ""
+"03010101.xhp\n"
+"par_id3148798\n"
+"help.text"
+msgid "<emph>prompt</emph>: String expression displayed as a message in the dialog box. Line breaks can be inserted with Chr$(13)."
+msgstr ""
+
+#. oK5f6
+#: 03010101.xhp
+msgctxt ""
+"03010101.xhp\n"
+"par_id3150769\n"
+"help.text"
+msgid "<emph>title</emph>: String expression displayed in the title bar of the dialog. If omitted, the title bar displays the name of the respective application."
+msgstr ""
+
+#. WNfC6
+#: 03010101.xhp
+msgctxt ""
+"03010101.xhp\n"
+"par_id3147228\n"
+"help.text"
+msgid "<emph>buttons</emph>: Any integer expression that specifies the dialog type, as well as the number and type of buttons to display, and the icon type. <emph>buttons</emph> represents a combination of bit patterns, that is, a combination of elements can be defined by adding their respective values:"
+msgstr ""
+
+#. xuEUm
+#: 03010101.xhp
+msgctxt ""
+"03010101.xhp\n"
+"par_id051220170241588881\n"
+"help.text"
+msgid "Named constant"
+msgstr ""
+
+#. DE8tA
+#: 03010101.xhp
+msgctxt ""
+"03010101.xhp\n"
+"par_id051220170241585541\n"
+"help.text"
+msgid "Integer value"
+msgstr ""
+
+#. rVa8A
+#: 03010101.xhp
+msgctxt ""
+"03010101.xhp\n"
+"par_id051220170241585124\n"
+"help.text"
+msgid "Definition"
+msgstr ""
+
+#. AXWEo
+#: 03010101.xhp
+msgctxt ""
+"03010101.xhp\n"
+"par_id3147397\n"
+"help.text"
+msgid "Display OK button only."
+msgstr ""
+
+#. 5hhtt
+#: 03010101.xhp
+msgctxt ""
+"03010101.xhp\n"
+"par_id3145646\n"
+"help.text"
+msgid "Display OK and Cancel buttons."
+msgstr ""
+
+#. Gve8t
+#: 03010101.xhp
+msgctxt ""
+"03010101.xhp\n"
+"par_id3149410\n"
+"help.text"
+msgid "Display Abort, Retry, and Ignore buttons."
+msgstr ""
+
+#. NAAvF
+#: 03010101.xhp
+msgctxt ""
+"03010101.xhp\n"
+"par_id3151075\n"
+"help.text"
+msgid "Display Yes, No, and Cancel buttons."
+msgstr ""
+
+#. M8vhj
+#: 03010101.xhp
+msgctxt ""
+"03010101.xhp\n"
+"par_id3153878\n"
+"help.text"
+msgid "Display Yes and No buttons."
+msgstr ""
+
+#. kdzdj
+#: 03010101.xhp
+msgctxt ""
+"03010101.xhp\n"
+"par_id3155601\n"
+"help.text"
+msgid "Display Retry and Cancel buttons."
+msgstr ""
+
+#. hze7E
+#: 03010101.xhp
+msgctxt ""
+"03010101.xhp\n"
+"par_id3150716\n"
+"help.text"
+msgid "Add the Stop icon to the dialog."
+msgstr ""
+
+#. chKxc
+#: 03010101.xhp
+msgctxt ""
+"03010101.xhp\n"
+"par_id3153837\n"
+"help.text"
+msgid "Add the Question icon to the dialog."
+msgstr ""
+
+#. Sprat
+#: 03010101.xhp
+msgctxt ""
+"03010101.xhp\n"
+"par_id3150751\n"
+"help.text"
+msgid "Add the Exclamation Point icon to the dialog."
+msgstr ""
+
+#. 98YUw
+#: 03010101.xhp
+msgctxt ""
+"03010101.xhp\n"
+"par_id3146915\n"
+"help.text"
+msgid "Add the Information icon to the dialog."
+msgstr ""
+
+#. 8sTDk
+#: 03010101.xhp
+msgctxt ""
+"03010101.xhp\n"
+"par_id3145640\n"
+"help.text"
+msgid "First button in the dialog as default button."
+msgstr ""
+
+#. xp5Eb
+#: 03010101.xhp
+msgctxt ""
+"03010101.xhp\n"
+"par_id3153765\n"
+"help.text"
+msgid "Second button in the dialog as default button."
+msgstr ""
+
+#. DCz69
+#: 03010101.xhp
+msgctxt ""
+"03010101.xhp\n"
+"par_id3153715\n"
+"help.text"
+msgid "Third button in the dialog as default button."
+msgstr ""
+
+#. Pwqs5
+#: 03010101.xhp
+msgctxt ""
+"03010101.xhp\n"
+"par_id3150327\n"
+"help.text"
+msgid "Const sText1 = \"An unexpected error occurred.\""
+msgstr ""
+
+#. w7TDN
+#: 03010101.xhp
+msgctxt ""
+"03010101.xhp\n"
+"par_id3146912\n"
+"help.text"
+msgid "Const sText2 = \"The program execution will continue, however.\""
+msgstr ""
+
+#. 2pVBi
+#: 03010101.xhp
+msgctxt ""
+"03010101.xhp\n"
+"par_id3154757\n"
+"help.text"
+msgid "Const sText3 = \"Error\""
+msgstr ""
+
+#. B28zs
+#: 03010102.xhp
+msgctxt ""
+"03010102.xhp\n"
+"tit\n"
+"help.text"
+msgid "MsgBox Function"
+msgstr ""
+
+#. 9zAAp
+#: 03010102.xhp
+msgctxt ""
+"03010102.xhp\n"
+"bm_id3153379\n"
+"help.text"
+msgid "<bookmark_value>MsgBox function</bookmark_value>"
+msgstr ""
+
+#. XBBGv
+#: 03010102.xhp
+msgctxt ""
+"03010102.xhp\n"
+"hd_id3153379\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03010102.xhp\" name=\"MsgBox Function\">MsgBox Function</link>"
+msgstr ""
+
+#. 27uTq
+#: 03010102.xhp
+msgctxt ""
+"03010102.xhp\n"
+"par_id3145171\n"
+"help.text"
+msgid "Displays a dialog box containing a message and returns a value."
+msgstr ""
+
+#. KNkK6
+#: 03010102.xhp
+msgctxt ""
+"03010102.xhp\n"
+"par_id3146985\n"
+"help.text"
+msgid "Integer"
+msgstr ""
+
+#. iFbrx
+#: 03010102.xhp
+msgctxt ""
+"03010102.xhp\n"
+"par_id051220170330379805\n"
+"help.text"
+msgid "Named constant"
+msgstr ""
+
+#. EsT4B
+#: 03010102.xhp
+msgctxt ""
+"03010102.xhp\n"
+"par_id051220170330387072\n"
+"help.text"
+msgid "Integer value"
+msgstr ""
+
+#. uNtKZ
+#: 03010102.xhp
+msgctxt ""
+"03010102.xhp\n"
+"par_id051220170330387973\n"
+"help.text"
+msgid "Definition"
+msgstr ""
+
+#. T68Qv
+#: 03010102.xhp
+msgctxt ""
+"03010102.xhp\n"
+"par_id3145230\n"
+"help.text"
+msgid "OK"
+msgstr ""
+
+#. muaGZ
+#: 03010102.xhp
+msgctxt ""
+"03010102.xhp\n"
+"par_id3149567\n"
+"help.text"
+msgid "Cancel"
+msgstr ""
+
+#. G6oEC
+#: 03010102.xhp
+msgctxt ""
+"03010102.xhp\n"
+"par_id4056825\n"
+"help.text"
+msgid "Abort"
+msgstr ""
+
+#. oz9np
+#: 03010102.xhp
+msgctxt ""
+"03010102.xhp\n"
+"par_id3155335\n"
+"help.text"
+msgid "Retry"
+msgstr ""
+
+#. 8naMq
+#: 03010102.xhp
+msgctxt ""
+"03010102.xhp\n"
+"par_id3146918\n"
+"help.text"
+msgid "Ignore"
+msgstr ""
+
+#. 4Gup2
+#: 03010102.xhp
+msgctxt ""
+"03010102.xhp\n"
+"par_id3155961\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. LmiSj
+#: 03010102.xhp
+msgctxt ""
+"03010102.xhp\n"
+"par_id3148488\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. TCdv9
+#: 03010102.xhp
+msgctxt ""
+"03010102.xhp\n"
+"hd_id3150090\n"
+"help.text"
+msgid "Example:"
+msgstr ""
+
+#. MLAG9
+#: 03010102.xhp
+msgctxt ""
+"03010102.xhp\n"
+"par_id3151278\n"
+"help.text"
+msgid "sVar = MsgBox(\"Las Vegas\")"
+msgstr ""
+
+#. z8NvW
+#: 03010102.xhp
+msgctxt ""
+"03010102.xhp\n"
+"par_id3149034\n"
+"help.text"
+msgid "sVar = MsgBox(\"Las Vegas\",1)"
+msgstr ""
+
+#. aZFFV
+#: 03010102.xhp
+msgctxt ""
+"03010102.xhp\n"
+"par_id3166424\n"
+"help.text"
+msgid "sVar = MsgBox( \"Las Vegas\",256 + 16 + 2,\"Dialog title\")"
+msgstr ""
+
+#. ubeYB
+#: 03010102.xhp
+msgctxt ""
+"03010102.xhp\n"
+"par_id051220170242005479\n"
+"help.text"
+msgid "sVar = MsgBox(\"Las Vegas\", MB_DEFBUTTON2 + MB_ICONSTOP + MB_ABORTRETRYIGNORE, \"Dialog title\")"
+msgstr ""
+
+#. BaStC
+#: 03010103.xhp
+msgctxt ""
+"03010103.xhp\n"
+"tit\n"
+"help.text"
+msgid "Print# Statement"
+msgstr ""
+
+#. addUg
+#: 03010103.xhp
+msgctxt ""
+"03010103.xhp\n"
+"bm_id3147230\n"
+"help.text"
+msgid "<bookmark_value>Print statement</bookmark_value> <bookmark_value>Print statement; Tab function</bookmark_value> <bookmark_value>Print statement; Spc function</bookmark_value> <bookmark_value>Spc function; in Print statement</bookmark_value> <bookmark_value>Tab function; in Print statement</bookmark_value>"
+msgstr ""
+
+#. ARzns
+#: 03010103.xhp
+msgctxt ""
+"03010103.xhp\n"
+"hd_id3147230\n"
+"help.text"
+msgid "<variable id=\"Print_h1\"><link href=\"text/sbasic/shared/03010103.xhp\" name=\"Print# Statement\">Print# Statement</link></variable>"
+msgstr ""
+
+#. ZDGAu
+#: 03010103.xhp
+msgctxt ""
+"03010103.xhp\n"
+"par_id3156281\n"
+"help.text"
+msgid "Outputs the specified strings or numeric expressions to the screen or to a sequential file."
+msgstr ""
+
+#. xCJRj
+#: 03010103.xhp
+msgctxt ""
+"03010103.xhp\n"
+"par_id461596463969009\n"
+"help.text"
+msgid "Use <link href=\"text/sbasic/shared/03020201.xhp\">Put#</link> statement to write data to a binary or a random file. Use <link href=\"text/sbasic/shared/03020205.xhp\">Write#</link> statement to write data to a sequential text file with delimiting characters."
+msgstr ""
+
+#. AhB82
+#: 03010103.xhp
+msgctxt ""
+"03010103.xhp\n"
+"par_id841588605629842\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sbasic/Print_statement.svg\" id=\"img_id931588605629842\"><alt id=\"alt_id931588605629842\">Print syntax</alt></image>"
+msgstr ""
+
+#. A6QEE
+#: 03010103.xhp
+msgctxt ""
+"03010103.xhp\n"
+"par_id3153188\n"
+"help.text"
+msgid "Print [#filenum,] expression1[{;|,} [Spc(number As Integer);] [Tab(pos As Integer);] [expression2[...]]"
+msgstr ""
+
+#. NWBqr
+#: 03010103.xhp
+msgctxt ""
+"03010103.xhp\n"
+"par_id2508621\n"
+"help.text"
+msgid "<emph>filenum:</emph> Any numeric expression that contains the file number that was set by the <literal>Open</literal> statement for the respective file."
+msgstr ""
+
+#. Zoa2X
+#: 03010103.xhp
+msgctxt ""
+"03010103.xhp\n"
+"par_id3163712\n"
+"help.text"
+msgid "<emph>expression</emph>: Any numeric or string expression to be printed. Multiple expressions can be separated by a semicolon. If separated by a comma, the expressions are indented to the next tab stop. The tab stops cannot be adjusted."
+msgstr ""
+
+#. HB3kc
+#: 03010103.xhp
+msgctxt ""
+"03010103.xhp\n"
+"par_id3153092\n"
+"help.text"
+msgid "<emph>number</emph>: Number of spaces to be inserted by the <emph>Spc</emph> function."
+msgstr ""
+
+#. QDwLF
+#: 03010103.xhp
+msgctxt ""
+"03010103.xhp\n"
+"par_id3145364\n"
+"help.text"
+msgid "<emph>pos</emph>: Spaces are inserted until the specified position."
+msgstr ""
+
+#. GiAKc
+#: 03010103.xhp
+msgctxt ""
+"03010103.xhp\n"
+"par_id3154319\n"
+"help.text"
+msgid "If a semicolon or comma appears after the last expression to be printed, $[officename] Basic stores the text in an internal buffer and continues program execution without printing. When another Print statement without a semicolon or comma at the end is encountered, all text to be printed is printed at once."
+msgstr ""
+
+#. GmqpS
+#: 03010103.xhp
+msgctxt ""
+"03010103.xhp\n"
+"par_id3145272\n"
+"help.text"
+msgid "Positive numeric expressions are printed with a leading space. Negative expressions are printed with a leading minus sign. If a certain range is exceeded for floating-point values, the respective numeric expression is printed in exponential notation."
+msgstr ""
+
+#. yiP5A
+#: 03010103.xhp
+msgctxt ""
+"03010103.xhp\n"
+"par_id3154011\n"
+"help.text"
+msgid "If the expression to be printed exceeds a certain length, the display will automatically wrap to the next line."
+msgstr ""
+
+#. PV3cE
+#: 03010103.xhp
+msgctxt ""
+"03010103.xhp\n"
+"par_id3146969\n"
+"help.text"
+msgid "You can insert the <emph>Tab</emph> function, enclosed by semicolons, between arguments to indent the output to a specific position, or you can use the <emph>Spc</emph> function to insert a specified number of spaces."
+msgstr ""
+
+#. knWZh
+#: 03010200.xhp
+msgctxt ""
+"03010200.xhp\n"
+"tit\n"
+"help.text"
+msgid "Functions for Screen Input"
+msgstr ""
+
+#. C7uXG
+#: 03010200.xhp
+msgctxt ""
+"03010200.xhp\n"
+"hd_id3149456\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03010200.xhp\" name=\"Functions for Screen Input\">Functions for Screen Input</link>"
+msgstr ""
+
+#. sC5Ui
+#: 03010200.xhp
+msgctxt ""
+"03010200.xhp\n"
+"par_id3150398\n"
+"help.text"
+msgid "This section describes Runtime functions used to control screen input."
+msgstr ""
+
+#. BkCSe
+#: 03010201.xhp
+msgctxt ""
+"03010201.xhp\n"
+"tit\n"
+"help.text"
+msgid "InputBox Function"
+msgstr ""
+
+#. g86PT
+#: 03010201.xhp
+msgctxt ""
+"03010201.xhp\n"
+"bm_id3148932\n"
+"help.text"
+msgid "<bookmark_value>InputBox function</bookmark_value>"
+msgstr ""
+
+#. dAWUv
+#: 03010201.xhp
+msgctxt ""
+"03010201.xhp\n"
+"hd_id3148932\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03010201.xhp\" name=\"InputBox Function\">InputBox Function</link>"
+msgstr ""
+
+#. S674v
+#: 03010201.xhp
+msgctxt ""
+"03010201.xhp\n"
+"par_id3151262\n"
+"help.text"
+msgid "Displays a prompt in a dialog at which the user can input text. The input is assigned to a variable."
+msgstr ""
+
+#. 4BWtp
+#: 03010201.xhp
+msgctxt ""
+"03010201.xhp\n"
+"par_id3151100\n"
+"help.text"
+msgid "The <emph>InputBox</emph> statement is a convenient method of entering text through a dialog. Confirm the input by clicking OK or pressing Return. The input is returned as the function return value. If you close the dialog with Cancel, <emph>InputBox</emph> returns a zero-length string (\"\")."
+msgstr ""
+
+#. fcMCj
+#: 03010201.xhp
+msgctxt ""
+"03010201.xhp\n"
+"par_id3153311\n"
+"help.text"
+msgid "<emph>prompt</emph>: String expression displayed as the message in the dialog box."
+msgstr ""
+
+#. kqAw6
+#: 03010201.xhp
+msgctxt ""
+"03010201.xhp\n"
+"par_id3145315\n"
+"help.text"
+msgid "<emph>title</emph>: String expression displayed in the title bar of the dialog box."
+msgstr ""
+
+#. 4qoJn
+#: 03010201.xhp
+msgctxt ""
+"03010201.xhp\n"
+"par_id3154307\n"
+"help.text"
+msgid "<emph>default</emph>: String expression displayed in the text box as default if no other input is given."
+msgstr ""
+
+#. GUFBE
+#: 03010201.xhp
+msgctxt ""
+"03010201.xhp\n"
+"par_id3147573\n"
+"help.text"
+msgid "<emph>xpostwips</emph>: Integer expression that specifies the horizontal position of the dialog. The position is an absolute coordinate and does not refer to the window of %PRODUCTNAME."
+msgstr ""
+
+#. RY7kB
+#: 03010201.xhp
+msgctxt ""
+"03010201.xhp\n"
+"par_id3156024\n"
+"help.text"
+msgid "<emph>ypostwips</emph>: Integer expression that specifies the vertical position of the dialog. The position is an absolute coordinate and does not refer to the window of %PRODUCTNAME."
+msgstr ""
+
+#. ABQBS
+#: 03010201.xhp
+msgctxt ""
+"03010201.xhp\n"
+"par_id3153897\n"
+"help.text"
+msgid "If <literal>xpostwips</literal> and <literal>ypostwips</literal> are omitted, the dialog is centered on the screen. The position is specified in <link href=\"text/sbasic/shared/00000002.xhp#twips\" name=\"twips\">twips</link>."
+msgstr ""
+
+#. Mh8Z6
+#: 03010201.xhp
+msgctxt ""
+"03010201.xhp\n"
+"par_id3145090\n"
+"help.text"
+msgid "String"
+msgstr ""
+
+#. ebNwP
+#: 03010201.xhp
+msgctxt ""
+"03010201.xhp\n"
+"par_id3154367\n"
+"help.text"
+msgid "sText = InputBox (\"Please enter a phrase:\",\"Dear User\")"
+msgstr ""
+
+#. jh8wZ
+#: 03010201.xhp
+msgctxt ""
+"03010201.xhp\n"
+"par_id3151042\n"
+"help.text"
+msgid "MsgBox ( sText , 64, \"Confirmation of phrase\")"
+msgstr ""
+
+#. jZhUQ
+#: 03010300.xhp
+msgctxt ""
+"03010300.xhp\n"
+"tit\n"
+"help.text"
+msgid "Color Functions"
+msgstr ""
+
+#. 5EtGk
+#: 03010300.xhp
+msgctxt ""
+"03010300.xhp\n"
+"hd_id3157896\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03010300.xhp\" name=\"Color Functions\">Color Functions</link>"
+msgstr ""
+
+#. RNMp9
+#: 03010300.xhp
+msgctxt ""
+"03010300.xhp\n"
+"par_id3155555\n"
+"help.text"
+msgid "This section describes Runtime functions used to define colors."
+msgstr ""
+
+#. YGcDt
+#: 03010301.xhp
+msgctxt ""
+"03010301.xhp\n"
+"tit\n"
+"help.text"
+msgid "Blue Function"
+msgstr ""
+
+#. FZqA7
+#: 03010301.xhp
+msgctxt ""
+"03010301.xhp\n"
+"bm_id3149180\n"
+"help.text"
+msgid "<bookmark_value>Blue function</bookmark_value>"
+msgstr ""
+
+#. 8uoQH
+#: 03010301.xhp
+msgctxt ""
+"03010301.xhp\n"
+"hd_id3149180\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03010301.xhp\" name=\"Blue Function\">Blue Function</link>"
+msgstr ""
+
+#. G3QmN
+#: 03010301.xhp
+msgctxt ""
+"03010301.xhp\n"
+"par_id3156343\n"
+"help.text"
+msgid "Returns the blue component of the specified composite color code."
+msgstr ""
+
+#. qNGaq
+#: 03010301.xhp
+msgctxt ""
+"03010301.xhp\n"
+"par_id3149457\n"
+"help.text"
+msgid "Blue (Color As Long)"
+msgstr ""
+
+#. vGp8m
+#: 03010301.xhp
+msgctxt ""
+"03010301.xhp\n"
+"par_id3154365\n"
+"help.text"
+msgid "Integer"
+msgstr ""
+
+#. JY6Z8
+#: 03010301.xhp
+msgctxt ""
+"03010301.xhp\n"
+"par_id3150448\n"
+"help.text"
+msgid "<emph>Color value</emph>: Long integer expression that specifies any composite color code for which to return the blue component."
+msgstr ""
+
+#. NEqxG
+#: 03010301.xhp
+msgctxt ""
+"03010301.xhp\n"
+"par_id671639922129017\n"
+"help.text"
+msgid "Under VBA compatibility mode (<link href=\"text/sbasic/shared/03103350.xhp\" name=\"vbasupport\"><literal>Option VBASupport 1</literal></link>), the function Blue() is incompatible with VBA colors, when color from previous call to <link href=\"text/sbasic/shared/03010306.xhp\" name=\"linkrgbvba\"><literal>function RGB [VBA]</literal></link> is passed."
+msgstr ""
+
+#. a3s7N
+#: 03010301.xhp
+msgctxt ""
+"03010301.xhp\n"
+"par_id3154012\n"
+"help.text"
+msgid "MsgBox \"The color \" & lVar & \" consists of:\" & Chr(13) &_"
+msgstr ""
+
+#. GaNFh
+#: 03010301.xhp
+msgctxt ""
+"03010301.xhp\n"
+"par_id3148645\n"
+"help.text"
+msgid "\"red= \" & Red(lVar) & Chr(13)&_"
+msgstr ""
+
+#. YC546
+#: 03010301.xhp
+msgctxt ""
+"03010301.xhp\n"
+"par_id3159155\n"
+"help.text"
+msgid "\"green= \" & Green(lVar) & Chr(13)&_"
+msgstr ""
+
+#. DLwMd
+#: 03010301.xhp
+msgctxt ""
+"03010301.xhp\n"
+"par_id3147319\n"
+"help.text"
+msgid "\"blue= \" & Blue(lVar) & Chr(13) , 64,\"colors\""
+msgstr ""
+
+#. uoYLF
+#: 03010302.xhp
+msgctxt ""
+"03010302.xhp\n"
+"tit\n"
+"help.text"
+msgid "Green Function"
+msgstr ""
+
+#. ZHLhG
+#: 03010302.xhp
+msgctxt ""
+"03010302.xhp\n"
+"bm_id3148947\n"
+"help.text"
+msgid "<bookmark_value>Green function</bookmark_value>"
+msgstr ""
+
+#. 9no7Z
+#: 03010302.xhp
+msgctxt ""
+"03010302.xhp\n"
+"hd_id3148947\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03010302.xhp\" name=\"Green Function\">Green Function</link>"
+msgstr ""
+
+#. bmBSR
+#: 03010302.xhp
+msgctxt ""
+"03010302.xhp\n"
+"par_id3153361\n"
+"help.text"
+msgid "Returns the Green component of the given composite color code."
+msgstr ""
+
+#. yGCYn
+#: 03010302.xhp
+msgctxt ""
+"03010302.xhp\n"
+"par_id3153969\n"
+"help.text"
+msgid "Green (Color As Long)"
+msgstr ""
+
+#. wbFdA
+#: 03010302.xhp
+msgctxt ""
+"03010302.xhp\n"
+"par_id3153194\n"
+"help.text"
+msgid "Integer"
+msgstr ""
+
+#. YKcLU
+#: 03010302.xhp
+msgctxt ""
+"03010302.xhp\n"
+"par_id3153770\n"
+"help.text"
+msgid "<emph>Color</emph>: Long integer expression that specifies a composite color code for which to return the Green component."
+msgstr ""
+
+#. 6vcEb
+#: 03010302.xhp
+msgctxt ""
+"03010302.xhp\n"
+"par_id3151117\n"
+"help.text"
+msgid "MsgBox \"The color \" & lVar & \" contains the components:\" & Chr(13) &_"
+msgstr ""
+
+#. D22cZ
+#: 03010302.xhp
+msgctxt ""
+"03010302.xhp\n"
+"par_id3153951\n"
+"help.text"
+msgid "\"red = \" & red(lVar) & Chr(13)&_"
+msgstr ""
+
+#. fCgYj
+#: 03010302.xhp
+msgctxt ""
+"03010302.xhp\n"
+"par_id3152462\n"
+"help.text"
+msgid "\"green = \" & green(lVar) & Chr(13)&_"
+msgstr ""
+
+#. h2ujx
+#: 03010302.xhp
+msgctxt ""
+"03010302.xhp\n"
+"par_id3154730\n"
+"help.text"
+msgid "\"blue = \" & blue(lVar) & Chr(13) , 64,\"colors\""
+msgstr ""
+
+#. FF5Dc
+#: 03010303.xhp
+msgctxt ""
+"03010303.xhp\n"
+"tit\n"
+"help.text"
+msgid "Red Function"
+msgstr ""
+
+#. BrnuF
+#: 03010303.xhp
+msgctxt ""
+"03010303.xhp\n"
+"bm_id3148947\n"
+"help.text"
+msgid "<bookmark_value>Red function</bookmark_value>"
+msgstr ""
+
+#. 3FU4x
+#: 03010303.xhp
+msgctxt ""
+"03010303.xhp\n"
+"hd_id3148947\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03010303.xhp\" name=\"Red Function\">Red Function</link>"
+msgstr ""
+
+#. UCdBi
+#: 03010303.xhp
+msgctxt ""
+"03010303.xhp\n"
+"par_id3149656\n"
+"help.text"
+msgid "Returns the Red component of the specified composite color code."
+msgstr ""
+
+#. 3nHCU
+#: 03010303.xhp
+msgctxt ""
+"03010303.xhp\n"
+"par_id3150448\n"
+"help.text"
+msgid "Red (ColorNumber As Long)"
+msgstr ""
+
+#. XD3jj
+#: 03010303.xhp
+msgctxt ""
+"03010303.xhp\n"
+"par_id3145173\n"
+"help.text"
+msgid "Integer"
+msgstr ""
+
+#. 8TeVm
+#: 03010303.xhp
+msgctxt ""
+"03010303.xhp\n"
+"par_id3150440\n"
+"help.text"
+msgid "<emph>ColorNumber</emph>: Long integer expression that specifies any composite color code for which to return the Red component."
+msgstr ""
+
+#. YDBFF
+#: 03010303.xhp
+msgctxt ""
+"03010303.xhp\n"
+"par_id671639922129017\n"
+"help.text"
+msgid "Under VBA compatibility mode (<link href=\"text/sbasic/shared/03103350.xhp\" name=\"vbasupport\"><literal>Option VBASupport 1</literal></link>), the function Red() is incompatible with VBA colors, when color from previous call to <link href=\"text/sbasic/shared/03010306.xhp\" name=\"linkrgbvba\"><literal>function RGB [VBA]</literal></link> is passed."
+msgstr ""
+
+#. iiUNB
+#: 03010303.xhp
+msgctxt ""
+"03010303.xhp\n"
+"par_id961588421825749\n"
+"help.text"
+msgid "The <link href=\"text/shared/optionen/01010501.xhp\" name=\"color picker dialog\">color picker dialog</link> details the red, green and blue components of a composite color code, as well as its hexadecimal expression. <link href=\"text/shared/guide/text_color.xhp\" name=\"Changing the color of text\">Changing the color of text</link> and selecting <emph>Custom color</emph> displays the color picker dialog."
+msgstr ""
+
+#. 4txDN
+#: 03010303.xhp
+msgctxt ""
+"03010303.xhp\n"
+"par_id3147435\n"
+"help.text"
+msgid "MsgBox \"The color \" & lVar & \" consists of:\" & Chr(13) &_"
+msgstr ""
+
+#. PiWsz
+#: 03010303.xhp
+msgctxt ""
+"03010303.xhp\n"
+"par_id3155306\n"
+"help.text"
+msgid "\"red= \" & red(lVar) & Chr(13)&_"
+msgstr ""
+
+#. kFBGP
+#: 03010303.xhp
+msgctxt ""
+"03010303.xhp\n"
+"par_id3149262\n"
+"help.text"
+msgid "\"green= \" & green(lVar) & Chr(13)&_"
+msgstr ""
+
+#. DACGk
+#: 03010303.xhp
+msgctxt ""
+"03010303.xhp\n"
+"par_id3147397\n"
+"help.text"
+msgid "\"blue= \" & blue(lVar) & Chr(13) , 64,\"colors\""
+msgstr ""
+
+#. BBPAD
+#: 03010304.xhp
+msgctxt ""
+"03010304.xhp\n"
+"tit\n"
+"help.text"
+msgid "QBColor Function"
+msgstr ""
+
+#. BDpnm
+#: 03010304.xhp
+msgctxt ""
+"03010304.xhp\n"
+"bm_id201546205404067\n"
+"help.text"
+msgid "<bookmark_value>QBColor function</bookmark_value>"
+msgstr ""
+
+#. aBL98
+#: 03010304.xhp
+msgctxt ""
+"03010304.xhp\n"
+"hd_id3149670\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03010304.xhp\" name=\"QBColor Function\">QBColor Function</link>"
+msgstr ""
+
+#. yVSAA
+#: 03010304.xhp
+msgctxt ""
+"03010304.xhp\n"
+"par_id3150359\n"
+"help.text"
+msgid "Returns the <link href=\"text/sbasic/shared/03010305.xhp\" name=\"RGB\">RGB</link> color code of the color passed as a color value through an older MS-DOS based programming system."
+msgstr ""
+
+#. scoHN
+#: 03010304.xhp
+msgctxt ""
+"03010304.xhp\n"
+"par_id3151042\n"
+"help.text"
+msgid "QBColor (ColorNumber As Integer)"
+msgstr ""
+
+#. pTA5y
+#: 03010304.xhp
+msgctxt ""
+"03010304.xhp\n"
+"par_id3161832\n"
+"help.text"
+msgid "<emph>ColorNumber</emph>: Any integer expression that specifies the color value of the color passed from an older MS-DOS based programming system."
+msgstr ""
+
+#. Xo2Ue
+#: 03010304.xhp
+msgctxt ""
+"03010304.xhp\n"
+"par_id3147318\n"
+"help.text"
+msgid "<emph>ColorNumber</emph> can be assigned the following values:"
+msgstr ""
+
+#. MkEFG
+#: 03010304.xhp
+msgctxt ""
+"03010304.xhp\n"
+"par_id3152576\n"
+"help.text"
+msgid "0 : Black"
+msgstr ""
+
+#. x6PHr
+#: 03010304.xhp
+msgctxt ""
+"03010304.xhp\n"
+"par_id3146975\n"
+"help.text"
+msgid "1 : Blue"
+msgstr ""
+
+#. 6h7uw
+#: 03010304.xhp
+msgctxt ""
+"03010304.xhp\n"
+"par_id3151116\n"
+"help.text"
+msgid "2 : Green"
+msgstr ""
+
+#. mKb2p
+#: 03010304.xhp
+msgctxt ""
+"03010304.xhp\n"
+"par_id3155412\n"
+"help.text"
+msgid "3 : Cyan"
+msgstr ""
+
+#. pSzse
+#: 03010304.xhp
+msgctxt ""
+"03010304.xhp\n"
+"par_id3155306\n"
+"help.text"
+msgid "4 : Red"
+msgstr ""
+
+#. wBUxx
+#: 03010304.xhp
+msgctxt ""
+"03010304.xhp\n"
+"par_id3153364\n"
+"help.text"
+msgid "5 : Magenta"
+msgstr ""
+
+#. AaCtB
+#: 03010304.xhp
+msgctxt ""
+"03010304.xhp\n"
+"par_id3146119\n"
+"help.text"
+msgid "6 : Yellow"
+msgstr ""
+
+#. zAqFC
+#: 03010304.xhp
+msgctxt ""
+"03010304.xhp\n"
+"par_id3154730\n"
+"help.text"
+msgid "7 : White"
+msgstr ""
+
+#. jynzJ
+#: 03010304.xhp
+msgctxt ""
+"03010304.xhp\n"
+"par_id3153877\n"
+"help.text"
+msgid "8 : Gray"
+msgstr ""
+
+#. 75PqY
+#: 03010304.xhp
+msgctxt ""
+"03010304.xhp\n"
+"par_id3147124\n"
+"help.text"
+msgid "9 : Light Blue"
+msgstr ""
+
+#. Y86tG
+#: 03010304.xhp
+msgctxt ""
+"03010304.xhp\n"
+"par_id3145646\n"
+"help.text"
+msgid "10 : Light Green"
+msgstr ""
+
+#. x3vBp
+#: 03010304.xhp
+msgctxt ""
+"03010304.xhp\n"
+"par_id3149958\n"
+"help.text"
+msgid "11 : Light Cyan"
+msgstr ""
+
+#. JC3BK
+#: 03010304.xhp
+msgctxt ""
+"03010304.xhp\n"
+"par_id3154943\n"
+"help.text"
+msgid "12 : Light Red"
+msgstr ""
+
+#. nFEsk
+#: 03010304.xhp
+msgctxt ""
+"03010304.xhp\n"
+"par_id3150715\n"
+"help.text"
+msgid "13 : Light Magenta"
+msgstr ""
+
+#. 4i3C6
+#: 03010304.xhp
+msgctxt ""
+"03010304.xhp\n"
+"par_id3146970\n"
+"help.text"
+msgid "14 : Light Yellow"
+msgstr ""
+
+#. pATFo
+#: 03010304.xhp
+msgctxt ""
+"03010304.xhp\n"
+"par_id3150750\n"
+"help.text"
+msgid "15 : Bright White"
+msgstr ""
+
+#. juTQ3
+#: 03010304.xhp
+msgctxt ""
+"03010304.xhp\n"
+"par_id3146914\n"
+"help.text"
+msgid "This function is used only to convert from older MS-DOS based BASIC applications that use the above color codes. The function returns a long integer value indicating the color to be used in the $[officename] IDE."
+msgstr ""
+
+#. GPDgr
+#: 03010304.xhp
+msgctxt ""
+"03010304.xhp\n"
+"par_id3149566\n"
+"help.text"
+msgid "MsgBox stext,0,\"Color \" & iColor"
+msgstr ""
+
+#. yjXi7
+#: 03010305.xhp
+msgctxt ""
+"03010305.xhp\n"
+"tit\n"
+"help.text"
+msgid "RGB Function"
+msgstr ""
+
+#. qMADe
+#: 03010305.xhp
+msgctxt ""
+"03010305.xhp\n"
+"bm_id851576768070903\n"
+"help.text"
+msgid "<bookmark_value>RGB function</bookmark_value>"
+msgstr ""
+
+#. LaGGq
+#: 03010305.xhp
+msgctxt ""
+"03010305.xhp\n"
+"hd_id3150792\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03010305.xhp\" name=\"RGB Function\">RGB Function</link>"
+msgstr ""
+
+#. iRBsy
+#: 03010305.xhp
+msgctxt ""
+"03010305.xhp\n"
+"par_id3150447\n"
+"help.text"
+msgid "Returns a <literal>Long</literal> integer color value consisting of red, green, and blue components."
+msgstr ""
+
+#. rd647
+#: 03010305.xhp
+msgctxt ""
+"03010305.xhp\n"
+"par_id3155132\n"
+"help.text"
+msgid "RGB (Red, Green, Blue)"
+msgstr ""
+
+#. QM73e
+#: 03010305.xhp
+msgctxt ""
+"03010305.xhp\n"
+"par_id3152597\n"
+"help.text"
+msgid "<emph>red</emph>: Any integer expression that represents the red component (0-255) of the composite color."
+msgstr ""
+
+#. H7yGv
+#: 03010305.xhp
+msgctxt ""
+"03010305.xhp\n"
+"par_id3146974\n"
+"help.text"
+msgid "<emph>green</emph>: Any integer expression that represents the green component (0-255) of the composite color."
+msgstr ""
+
+#. t8P2M
+#: 03010305.xhp
+msgctxt ""
+"03010305.xhp\n"
+"par_id3151113\n"
+"help.text"
+msgid "<emph>blue</emph>: Any integer expression that represents the blue component (0-255) of the composite color."
+msgstr ""
+
+#. c4KCL
+#: 03010305.xhp
+msgctxt ""
+"03010305.xhp\n"
+"par_id101639922410794\n"
+"help.text"
+msgid "The resulting <literal>Long</literal> value is calculated with the following formula:<br/><literal>Result = red×65536 + green×256 + blue</literal>."
+msgstr ""
+
+#. iDgoc
+#: 03010305.xhp
+msgctxt ""
+"03010305.xhp\n"
+"par_id671639922129017\n"
+"help.text"
+msgid "Under VBA compatibility mode (<link href=\"text/sbasic/shared/03103350.xhp\" name=\"vbasupport\"><literal>Option VBASupport 1</literal></link>), the <literal>Long</literal> value is calculated as<br/><literal>Result = red + green×256 + blue×65536</literal><br/>See <link href=\"text/sbasic/shared/03010306.xhp\" name=\"rgbvba\">RGB Function [VBA]</link>"
+msgstr ""
+
+#. cFpDD
+#: 03010305.xhp
+msgctxt ""
+"03010305.xhp\n"
+"par_id211587653651037\n"
+"help.text"
+msgid "The <link href=\"text/shared/optionen/01010501.xhp\" name=\"color picker dialog\">color picker dialog</link> helps computing red, green and blue components of a composite color. <link href=\"text/shared/guide/text_color.xhp\" name=\"Changing the color of text\">Changing the color of text</link> and selecting <emph>Custom color</emph> displays the color picker dialog."
+msgstr ""
+
+#. GWhFy
+#: 03010305.xhp
+msgctxt ""
+"03010305.xhp\n"
+"par_id3145647\n"
+"help.text"
+msgid "MsgBox \"The color \" & lVar & \" consists of:\" & Chr(13) &_"
+msgstr ""
+
+#. HBJN6
+#: 03010305.xhp
+msgctxt ""
+"03010305.xhp\n"
+"par_id3154491\n"
+"help.text"
+msgid "\"red= \" & red(lVar) & Chr(13)&_"
+msgstr ""
+
+#. TP44b
+#: 03010305.xhp
+msgctxt ""
+"03010305.xhp\n"
+"par_id3149401\n"
+"help.text"
+msgid "\"green= \" & green(lVar) & Chr(13)&_"
+msgstr ""
+
+#. 9oLnG
+#: 03010305.xhp
+msgctxt ""
+"03010305.xhp\n"
+"par_id3150716\n"
+"help.text"
+msgid "\"blue= \" & blue(lVar) & Chr(13) , 64,\"colors\""
+msgstr ""
+
+#. 4pPor
+#: 03010306.xhp
+msgctxt ""
+"03010306.xhp\n"
+"tit\n"
+"help.text"
+msgid "RGB Function [VBA]"
+msgstr ""
+
+#. JbDc8
+#: 03010306.xhp
+msgctxt ""
+"03010306.xhp\n"
+"bm_id851576768070903\n"
+"help.text"
+msgid "<bookmark_value>RGB function [VBA]</bookmark_value>"
+msgstr ""
+
+#. RSnVb
+#: 03010306.xhp
+msgctxt ""
+"03010306.xhp\n"
+"hd_id3150792\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03010305.xhp\" name=\"RGB Function\">RGB Function [VBA]</link>"
+msgstr ""
+
+#. ZMjZi
+#: 03010306.xhp
+msgctxt ""
+"03010306.xhp\n"
+"par_id3150447\n"
+"help.text"
+msgid "Returns a <literal>Long</literal> integer color value consisting of red, green, and blue components, according to VBA color formula."
+msgstr ""
+
+#. LNVC5
+#: 03010306.xhp
+msgctxt ""
+"03010306.xhp\n"
+"par_id671639922129017\n"
+"help.text"
+msgid "Because of the VBA compatibility mode (<link href=\"text/sbasic/shared/03103350.xhp\" name=\"vbasupport\"><literal>Option VBASupport 1</literal></link>), the <literal>Long</literal> value is calculated as<br/><literal>Result = red + green×256 + blue×65536</literal>."
+msgstr ""
+
+#. cDKcg
+#: 03010306.xhp
+msgctxt ""
+"03010306.xhp\n"
+"par_id621639924528952\n"
+"help.text"
+msgid "Print lVar; ' returns 13107328"
+msgstr ""
+
+#. kpKGV
+#: 03020000.xhp
+msgctxt ""
+"03020000.xhp\n"
+"tit\n"
+"help.text"
+msgid "File I/O Functions"
+msgstr ""
+
+#. xQYzw
+#: 03020000.xhp
+msgctxt ""
+"03020000.xhp\n"
+"hd_id3156344\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03020000.xhp\" name=\"File I/O Functions\">File I/O Functions</link>"
+msgstr ""
+
+#. WhBg4
+#: 03020000.xhp
+msgctxt ""
+"03020000.xhp\n"
+"par_id3153360\n"
+"help.text"
+msgid "Use File I/O functions to create and manage user-defined (data) files."
+msgstr ""
+
+#. FtKxL
+#: 03020000.xhp
+msgctxt ""
+"03020000.xhp\n"
+"par_id3150398\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 ""
+
+#. CEWGw
+#: 03020100.xhp
+msgctxt ""
+"03020100.xhp\n"
+"tit\n"
+"help.text"
+msgid "Opening and Closing Files"
+msgstr ""
+
+#. 8dG9o
+#: 03020100.xhp
+msgctxt ""
+"03020100.xhp\n"
+"hd_id3152924\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03020100.xhp\" name=\"Opening and Closing Files\">Opening and Closing Files</link>"
+msgstr ""
+
+#. BHU9A
+#: 03020101.xhp
+msgctxt ""
+"03020101.xhp\n"
+"tit\n"
+"help.text"
+msgid "Close Statement"
+msgstr ""
+
+#. wjpGE
+#: 03020101.xhp
+msgctxt ""
+"03020101.xhp\n"
+"bm_id3157896\n"
+"help.text"
+msgid "<bookmark_value>Close statement</bookmark_value>"
+msgstr ""
+
+#. GPAtd
+#: 03020101.xhp
+msgctxt ""
+"03020101.xhp\n"
+"hd_id3157896\n"
+"help.text"
+msgid "<variable id=\"Close_h1\"><link href=\"text/sbasic/shared/03020101.xhp\" name=\"Close Statement\">Close Statement</link></variable>"
+msgstr ""
+
+#. UxFz9
+#: 03020101.xhp
+msgctxt ""
+"03020101.xhp\n"
+"par_id3147573\n"
+"help.text"
+msgid "Closes a specified file that was opened with the Open statement."
+msgstr ""
+
+#. KDbMZ
+#: 03020101.xhp
+msgctxt ""
+"03020101.xhp\n"
+"par_id971587473488701\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sbasic/Close_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Close Statement diagram</alt></image>"
+msgstr ""
+
+#. FEDAa
+#: 03020101.xhp
+msgctxt ""
+"03020101.xhp\n"
+"par_id3147265\n"
+"help.text"
+msgid "Close [[#]fileNum [, [#]fileNum2 [,...]]]"
+msgstr ""
+
+#. gdqMu
+#: 03020101.xhp
+msgctxt ""
+"03020101.xhp\n"
+"par_id3150791\n"
+"help.text"
+msgid "<emph>fileNum:</emph> Any integer expression that specifies the number of the data channel that was opened with the <emph>Open</emph> statement."
+msgstr ""
+
+#. uP5nk
+#: 03020102.xhp
+msgctxt ""
+"03020102.xhp\n"
+"tit\n"
+"help.text"
+msgid "FreeFile Function"
+msgstr ""
+
+#. 8MJBR
+#: 03020102.xhp
+msgctxt ""
+"03020102.xhp\n"
+"bm_id3150400\n"
+"help.text"
+msgid "<bookmark_value>FreeFile function</bookmark_value>"
+msgstr ""
+
+#. RGVUt
+#: 03020102.xhp
+msgctxt ""
+"03020102.xhp\n"
+"hd_id3150400\n"
+"help.text"
+msgid "<variable id=\"FreeFile_h1\"><link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function\">FreeFile Function</link></variable>"
+msgstr ""
+
+#. jM79E
+#: 03020102.xhp
+msgctxt ""
+"03020102.xhp\n"
+"par_id3154366\n"
+"help.text"
+msgid "Returns the next available file number for opening a file. Use this function to open a file using a file number that is not already in use by a currently open file."
+msgstr ""
+
+#. RqGSZ
+#: 03020102.xhp
+msgctxt ""
+"03020102.xhp\n"
+"par_id3150440\n"
+"help.text"
+msgid "Integer"
+msgstr ""
+
+#. 3yGe9
+#: 03020102.xhp
+msgctxt ""
+"03020102.xhp\n"
+"par_id3155854\n"
+"help.text"
+msgid "This function can only be used immediately in front of an Open statement. FreeFile returns the next available file number, but does not reserve it."
+msgstr ""
+
+#. xWgio
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"tit\n"
+"help.text"
+msgid "Open Statement"
+msgstr ""
+
+#. 4hhgg
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"bm_id3150791\n"
+"help.text"
+msgid "<bookmark_value>Open statement</bookmark_value>"
+msgstr ""
+
+#. CRFKQ
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"hd_id3150791\n"
+"help.text"
+msgid "<variable id=\"Open_h1\"><link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open Statement\">Open Statement</link></variable>"
+msgstr ""
+
+#. Etqck
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id3150769\n"
+"help.text"
+msgid "Opens a data channel."
+msgstr ""
+
+#. x26NA
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id971587473488701\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sbasic/Open_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Open Statement diagram</alt></image>"
+msgstr ""
+
+#. CRDEh
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id971587473488702\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sbasic/access_fragment.svg\" id=\"img_id4156296484515\"><alt id=\"alt_id15152796484515\">access fragment diagram</alt></image>"
+msgstr ""
+
+#. N3tit
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id971587473488703\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sbasic/locking_fragment.svg\" id=\"img_id4156296484516\"><alt id=\"alt_id15152796484516\">locking fragment diagram</alt></image>"
+msgstr ""
+
+#. dbM7e
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id3155132\n"
+"help.text"
+msgid "<emph>pathname: </emph>Path and name of the file to open. If you try to read a file that does not exist (Access = Read), an error message appears. If you try to write to a file that does not exist (Access = Write), a new file is created."
+msgstr ""
+
+#. XqfP8
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id3149262\n"
+"help.text"
+msgid "<emph>mode:</emph> Keyword that specifies the file mode. Valid values: <literal>Append</literal> (append to sequential file), <literal>Binary</literal> (data can be accessed by bytes using Get and Put), <literal>Input</literal> (opens data channel for reading), <literal>Output</literal> (opens data channel for writing), and <literal>Random</literal> (edits relative files)."
+msgstr ""
+
+#. 3983q
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id3154014\n"
+"help.text"
+msgid "<emph>io:</emph> Keyword that defines the access type. Valid values: <literal>Read</literal> (read-only), <literal>Write</literal> (write-only), <literal>Read Write</literal> (both)."
+msgstr ""
+
+#. kzzkr
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id3150011\n"
+"help.text"
+msgid "<emph>locking:</emph> Keyword that defines the security status of a file after opening. Valid values: <literal>Shared</literal> (file may be opened by other applications), <literal>Lock Read</literal> (file is protected against reading), <literal>Lock Write</literal> (file is protected against writing), <literal>Lock Read Write</literal> (denies file access)."
+msgstr ""
+
+#. D2D4q
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id3153190\n"
+"help.text"
+msgid "<emph>filenum:</emph> Any integer expression from 0 to 511 to indicate the number of a free data channel. You can then pass commands through the data channel to access the file. The file number must be determined by the FreeFile function immediately before the Open statement."
+msgstr ""
+
+#. LgCLi
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id3151115\n"
+"help.text"
+msgid "<emph>recLen:</emph> For <literal>Random</literal> access files, set the length of the records."
+msgstr ""
+
+#. mvgxB
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id3153418\n"
+"help.text"
+msgid "You can only modify the contents of a file that was opened with the Open statement. If you try to open a file that is already open, an error message appears."
+msgstr ""
+
+#. xPMgs
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id3154705\n"
+"help.text"
+msgid "Print #iNumber, \"This is a line of text\""
+msgstr ""
+
+#. bCNmJ
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id3146916\n"
+"help.text"
+msgid "Print #iNumber, \"This is another line of text\""
+msgstr ""
+
+#. D8qpy
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id3154705125\n"
+"help.text"
+msgid "Print #iNumber, \"This is a line of text\""
+msgstr ""
+
+#. Xp9PP
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id3146916877\n"
+"help.text"
+msgid "Print #iNumber, \"This is another line of text\""
+msgstr ""
+
+#. BqezU
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id211617107328022\n"
+"help.text"
+msgid "If the <literal>Open</literal> statement tries to open a file to which the current user does not have read/write permissions, an I/O error will be raised."
+msgstr ""
+
+#. WaBAH
+#: 03020104.xhp
+msgctxt ""
+"03020104.xhp\n"
+"tit\n"
+"help.text"
+msgid "Reset Statement"
+msgstr ""
+
+#. CGdx5
+#: 03020104.xhp
+msgctxt ""
+"03020104.xhp\n"
+"bm_id3154141\n"
+"help.text"
+msgid "<bookmark_value>Reset statement</bookmark_value>"
+msgstr ""
+
+#. aCi6f
+#: 03020104.xhp
+msgctxt ""
+"03020104.xhp\n"
+"hd_id3154141\n"
+"help.text"
+msgid "<variable id=\"Reset_h1\"><link href=\"text/sbasic/shared/03020104.xhp\">Reset Statement</link></variable>"
+msgstr ""
+
+#. iLCKn
+#: 03020104.xhp
+msgctxt ""
+"03020104.xhp\n"
+"par_id3156423\n"
+"help.text"
+msgid "Closes all open files and writes the contents of all file buffers to the harddisk."
+msgstr ""
+
+#. jEQ3F
+#: 03020104.xhp
+msgctxt ""
+"03020104.xhp\n"
+"par_id971587473488701\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sbasic/Reset_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Reset Statement diagram</alt></image>"
+msgstr ""
+
+#. BXAjN
+#: 03020104.xhp
+msgctxt ""
+"03020104.xhp\n"
+"par_id3148455\n"
+"help.text"
+msgid "Print #iNumber, \"This is a new line of text\""
+msgstr ""
+
+#. gtjeZ
+#: 03020104.xhp
+msgctxt ""
+"03020104.xhp\n"
+"par_id3163805\n"
+"help.text"
+msgid "MsgBox \"All files will be closed\", 0, \"Error\""
+msgstr ""
+
+#. PwUYq
+#: 03020200.xhp
+msgctxt ""
+"03020200.xhp\n"
+"tit\n"
+"help.text"
+msgid "File Input/Output Functions"
+msgstr ""
+
+#. uBJKi
+#: 03020200.xhp
+msgctxt ""
+"03020200.xhp\n"
+"hd_id3150791\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03020200.xhp\" name=\"File Input/Output Functions\">File Input/Output Functions</link>"
+msgstr ""
+
+#. HZt2r
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"tit\n"
+"help.text"
+msgid "Get Statement"
+msgstr ""
+
+#. EN5i8
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"bm_id3154927\n"
+"help.text"
+msgid "<bookmark_value>Get statement</bookmark_value>"
+msgstr ""
+
+#. BpFbE
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"hd_id3154927\n"
+"help.text"
+msgid "<variable id=\"Get_h1\"><link href=\"text/sbasic/shared/03020201.xhp\">Get Statement</link></variable>"
+msgstr ""
+
+#. cpLtG
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id3145069\n"
+"help.text"
+msgid "Reads a record from a relative file, or a sequence of bytes from a binary file, into a variable."
+msgstr ""
+
+#. yCDgR
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id3154346\n"
+"help.text"
+msgid "See also: <link href=\"text/sbasic/shared/03020204.xhp\" name=\"PUT\"><item type=\"literal\">PUT</item></link> Statement"
+msgstr ""
+
+#. UqKMH
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id971587473488701\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sbasic/Get_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Get Statement diagram</alt></image>"
+msgstr ""
+
+#. xBhKA
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id3150792\n"
+"help.text"
+msgid "Get [#]fileNum, [recordNum|filePos], variable"
+msgstr ""
+
+#. UM9CG
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id3150448\n"
+"help.text"
+msgid "<emph>fileNum:</emph> Any integer expression that determines the file number."
+msgstr ""
+
+#. khxG7
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id3154684\n"
+"help.text"
+msgid "<emph>recordNum:</emph> For files opened in Random mode, <emph>recordNum</emph> is the number of the record that you want to read."
+msgstr ""
+
+#. 3w9MJ
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id3153768\n"
+"help.text"
+msgid "For files opened in Binary mode, <emph>filePos</emph> is the byte position in the file where the reading starts."
+msgstr ""
+
+#. NvcjF
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id3147319\n"
+"help.text"
+msgid "If <emph>recordNum</emph> and <emph>filePos</emph> are omitted, the current position or the current data record of the file is used."
+msgstr ""
+
+#. GZcaW
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id3149484\n"
+"help.text"
+msgid "<emph>variable:</emph> Name of the variable to be read. With the exception of object variables, you can use any variable type."
+msgstr ""
+
+#. PQRf6
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id3155307\n"
+"help.text"
+msgid "Dim sText As Variant ' Must be a variant"
+msgstr ""
+
+#. 9RFK8
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id3149411\n"
+"help.text"
+msgid "Seek #iNumber,1 ' Position at beginning"
+msgstr ""
+
+#. ZgEGn
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id3153158\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the first line of text\" ' Fill line with text"
+msgstr ""
+
+#. aDB7y
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id3148457\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the second line of text\""
+msgstr ""
+
+#. bBSo7
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id3150715\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the third line of text\""
+msgstr ""
+
+#. PTY3P
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id3155938\n"
+"help.text"
+msgid "Put #iNumber, , \"This is a new text\""
+msgstr ""
+
+#. AduBB
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id3146916\n"
+"help.text"
+msgid "Put #iNumber, 20, \"This is the text in record 20\""
+msgstr ""
+
+#. JjipS
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31553071450\n"
+"help.text"
+msgid "Dim sText As Variant ' Must be a variant"
+msgstr ""
+
+#. FzYJn
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31494111458\n"
+"help.text"
+msgid "Seek #iNumber,1 ' Position at beginning"
+msgstr ""
+
+#. XcDvJ
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31531583325\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the first line of text\" ' Fill line with text"
+msgstr ""
+
+#. Gzz9j
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31484574785\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the second line of text\""
+msgstr ""
+
+#. RhCPQ
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31507151145\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the third line of text\""
+msgstr ""
+
+#. D9nRy
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31559382236\n"
+"help.text"
+msgid "Put #iNumber, , \"This is a new text\""
+msgstr ""
+
+#. upDvm
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31469165876\n"
+"help.text"
+msgid "Put #iNumber, 20, \"This is the text in record 20\""
+msgstr ""
+
+#. FrzSY
+#: 03020202.xhp
+msgctxt ""
+"03020202.xhp\n"
+"tit\n"
+"help.text"
+msgid "Input# Statement"
+msgstr ""
+
+#. Gs6Kz
+#: 03020202.xhp
+msgctxt ""
+"03020202.xhp\n"
+"bm_id3154908\n"
+"help.text"
+msgid "<bookmark_value>Input statement</bookmark_value>"
+msgstr ""
+
+#. 2BhMB
+#: 03020202.xhp
+msgctxt ""
+"03020202.xhp\n"
+"hd_id3154908\n"
+"help.text"
+msgid "<variable id=\"Input_h1\"><link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement\">Input# Statement</link></variable>"
+msgstr ""
+
+#. iWhqX
+#: 03020202.xhp
+msgctxt ""
+"03020202.xhp\n"
+"par_id3156424\n"
+"help.text"
+msgid "Reads data from an open sequential file."
+msgstr ""
+
+#. mNkEN
+#: 03020202.xhp
+msgctxt ""
+"03020202.xhp\n"
+"par_id971587473488701\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sbasic/Input_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Input Statement diagram</alt></image>"
+msgstr ""
+
+#. NqnvX
+#: 03020202.xhp
+msgctxt ""
+"03020202.xhp\n"
+"par_id3150440\n"
+"help.text"
+msgid "Input #fileNum {,|;} var1 [, var2 [, ...]]"
+msgstr ""
+
+#. EUrQA
+#: 03020202.xhp
+msgctxt ""
+"03020202.xhp\n"
+"par_id3145749\n"
+"help.text"
+msgid "<emph>fileNum</emph>: Number of the file that contains the data that you want to read. The file must be opened with the Open statement using the key word INPUT."
+msgstr ""
+
+#. kJyKM
+#: 03020202.xhp
+msgctxt ""
+"03020202.xhp\n"
+"par_id3150011\n"
+"help.text"
+msgid "<emph>var</emph>: A numeric or string variable that you assign the values read from the opened file to."
+msgstr ""
+
+#. 23Pzt
+#: 03020202.xhp
+msgctxt ""
+"03020202.xhp\n"
+"par_id3159153\n"
+"help.text"
+msgid "The <emph>Input#</emph> statement reads numeric values or strings from an open file and assigns the data to one or more variables. A numeric variable is read up to the first carriage return (Asc=13), line feed (Asc=10), space, or comma. String variables are read to up to the first carriage return (Asc=13), line feed (Asc=10), or comma."
+msgstr ""
+
+#. DfDXQ
+#: 03020202.xhp
+msgctxt ""
+"03020202.xhp\n"
+"par_id3146984\n"
+"help.text"
+msgid "Data and data types in the opened file must appear in the same order as the variables that are passed in the \"var\" parameter. If you assign non-numeric values to a numeric variable, \"var\" is assigned a value of \"0\"."
+msgstr ""
+
+#. Ze3QA
+#: 03020202.xhp
+msgctxt ""
+"03020202.xhp\n"
+"par_id3156442\n"
+"help.text"
+msgid "Records that are separated by commas cannot be assigned to a string variable. Quotation marks (\") in the file are disregarded as well. If you want to read these characters from the file, use the <emph>Line Input#</emph> statement to read pure text files (files containing only printable characters) line by line."
+msgstr ""
+
+#. ddJmv
+#: 03020202.xhp
+msgctxt ""
+"03020202.xhp\n"
+"par_id3147349\n"
+"help.text"
+msgid "If the end of the file is reached while reading a data element, an error occurs and the process is aborted."
+msgstr ""
+
+#. xqNBb
+#: 03020202.xhp
+msgctxt ""
+"03020202.xhp\n"
+"par_id4144765\n"
+"help.text"
+msgid "' Write data ( which we will read later with Input ) to file"
+msgstr ""
+
+#. xiyEb
+#: 03020202.xhp
+msgctxt ""
+"03020202.xhp\n"
+"par_id4144766\n"
+"help.text"
+msgid "' Read data file using Input"
+msgstr ""
+
+#. ASL6h
+#: 03020203.xhp
+msgctxt ""
+"03020203.xhp\n"
+"tit\n"
+"help.text"
+msgid "Line Input# Statement"
+msgstr ""
+
+#. CCEuD
+#: 03020203.xhp
+msgctxt ""
+"03020203.xhp\n"
+"bm_id3153361\n"
+"help.text"
+msgid "<bookmark_value>Line Input statement</bookmark_value>"
+msgstr ""
+
+#. DBAiv
+#: 03020203.xhp
+msgctxt ""
+"03020203.xhp\n"
+"hd_id3153361\n"
+"help.text"
+msgid "<variable id=\"LineInput_h1\"><link href=\"text/sbasic/shared/03020203.xhp\" name=\"Line Input# Statement\">Line Input# Statement</link></variable>"
+msgstr ""
+
+#. 5FZ8D
+#: 03020203.xhp
+msgctxt ""
+"03020203.xhp\n"
+"par_id3156280\n"
+"help.text"
+msgid "Reads a line from a sequential file into a variable."
+msgstr ""
+
+#. enCkE
+#: 03020203.xhp
+msgctxt ""
+"03020203.xhp\n"
+"par_id971587473488701\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sbasic/Line-Input_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Line Input Statement diagram</alt></image>"
+msgstr ""
+
+#. wrpF7
+#: 03020203.xhp
+msgctxt ""
+"03020203.xhp\n"
+"par_id3161832\n"
+"help.text"
+msgid "<emph>fileNum</emph>: Number of the file that contains the data that you want to read. The file must have been opened in advance with the Open statement using the key word INPUT."
+msgstr ""
+
+#. qAR2M
+#: 03020203.xhp
+msgctxt ""
+"03020203.xhp\n"
+"par_id3151119\n"
+"help.text"
+msgid "<emph>variable</emph>: The name of the variable that stores the result."
+msgstr ""
+
+#. foxtA
+#: 03020203.xhp
+msgctxt ""
+"03020203.xhp\n"
+"par_id3150010\n"
+"help.text"
+msgid "With the <emph>Line Input#</emph> statement, you can read strings from an open file into a variable. String variables are read line-by-line up to the first carriage return (Asc=13) or linefeed (Asc=10). Line end marks are not included in the resulting string."
+msgstr ""
+
+#. fhFEa
+#: 03020204.xhp
+msgctxt ""
+"03020204.xhp\n"
+"tit\n"
+"help.text"
+msgid "Put# Statement"
+msgstr ""
+
+#. psWQE
+#: 03020204.xhp
+msgctxt ""
+"03020204.xhp\n"
+"bm_id3150360\n"
+"help.text"
+msgid "<bookmark_value>Put statement</bookmark_value>"
+msgstr ""
+
+#. bD34J
+#: 03020204.xhp
+msgctxt ""
+"03020204.xhp\n"
+"hd_id3150360\n"
+"help.text"
+msgid "<variable id=\"Put_h1\"><link href=\"text/sbasic/shared/03020204.xhp\" name=\"Put Statement\">Put# Statement</link></variable>"
+msgstr ""
+
+#. e8rUp
+#: 03020204.xhp
+msgctxt ""
+"03020204.xhp\n"
+"par_id3154909\n"
+"help.text"
+msgid "Writes a record to a relative file or a sequence of bytes to a binary file."
+msgstr ""
+
+#. EEnDK
+#: 03020204.xhp
+msgctxt ""
+"03020204.xhp\n"
+"par_id461596463969009\n"
+"help.text"
+msgid "Use <link href=\"text/sbasic/shared/03010103.xhp\">Print#</link> statement to print data to a sequential text file. Use <link href=\"text/sbasic/shared/03020205.xhp\">Write#</link> statement to write data to a sequential text file with delimiting characters."
+msgstr ""
+
+#. 9HgEG
+#: 03020204.xhp
+msgctxt ""
+"03020204.xhp\n"
+"par_id971587473488701\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sbasic/Put_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Put Statement diagram</alt></image>"
+msgstr ""
+
+#. RBpeh
+#: 03020204.xhp
+msgctxt ""
+"03020204.xhp\n"
+"par_id3155132\n"
+"help.text"
+msgid "Put [#]fileNum, [recordNum|filePos], variable"
+msgstr ""
+
+#. bSFd2
+#: 03020204.xhp
+msgctxt ""
+"03020204.xhp\n"
+"par_id3146120\n"
+"help.text"
+msgid "<emph>fileNum</emph>: Any integer expression that defines the file that you want to write to."
+msgstr ""
+
+#. AiZUD
+#: 03020204.xhp
+msgctxt ""
+"03020204.xhp\n"
+"par_id3155411\n"
+"help.text"
+msgid "<emph>recordNum, filePos</emph>: For relative files (random access files), the number of the record that you want to write."
+msgstr ""
+
+#. dUyzK
+#: 03020204.xhp
+msgctxt ""
+"03020204.xhp\n"
+"par_id3148576\n"
+"help.text"
+msgid "For binary files (binary access), the position of the byte in the file where you want to start writing."
+msgstr ""
+
+#. iGF9L
+#: 03020204.xhp
+msgctxt ""
+"03020204.xhp\n"
+"par_id3153729\n"
+"help.text"
+msgid "<emph>variable</emph>: Name of the variable that you want to write to the file."
+msgstr ""
+
+#. yyf95
+#: 03020204.xhp
+msgctxt ""
+"03020204.xhp\n"
+"par_id3146974\n"
+"help.text"
+msgid "Note for relative files: If the contents of this variable does not match the length of the record that is specified in the <emph>Len</emph> clause of the <emph>Open</emph> statement, the space between the end of the newly written record and the next record is padded with existing data from the file that you are writing to."
+msgstr ""
+
+#. RNpLH
+#: 03020204.xhp
+msgctxt ""
+"03020204.xhp\n"
+"par_id3155855\n"
+"help.text"
+msgid "Note for binary files: The contents of the variables are written to the specified position, and the file pointer is inserted directly after the last byte. No space is left between the records."
+msgstr ""
+
+#. BTr9L
+#: 03020205.xhp
+msgctxt ""
+"03020205.xhp\n"
+"tit\n"
+"help.text"
+msgid "Write Statement"
+msgstr ""
+
+#. 6t8kA
+#: 03020205.xhp
+msgctxt ""
+"03020205.xhp\n"
+"bm_id3147229\n"
+"help.text"
+msgid "<bookmark_value>Write statement</bookmark_value>"
+msgstr ""
+
+#. xn3Ji
+#: 03020205.xhp
+msgctxt ""
+"03020205.xhp\n"
+"hd_id3147229\n"
+"help.text"
+msgid "<variable id=\"Write_h1\"><link href=\"text/sbasic/shared/03020205.xhp\" name=\"Write# Statement\">Write# Statement</link></variable>"
+msgstr ""
+
+#. G4X6k
+#: 03020205.xhp
+msgctxt ""
+"03020205.xhp\n"
+"par_id3154685\n"
+"help.text"
+msgid "Writes data to a sequential text file with delimiting characters."
+msgstr ""
+
+#. fB8hV
+#: 03020205.xhp
+msgctxt ""
+"03020205.xhp\n"
+"par_id461596463969009\n"
+"help.text"
+msgid "Use <link href=\"text/sbasic/shared/03010103.xhp\">Print#</link> statement to print data to a sequential text file. Use <link href=\"text/sbasic/shared/03020201.xhp\">Put#</link> statement to write data to a binary or a random file."
+msgstr ""
+
+#. WxpRu
+#: 03020205.xhp
+msgctxt ""
+"03020205.xhp\n"
+"par_id971587473488701\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sbasic/Write_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Write Statement diagram</alt></image>"
+msgstr ""
+
+#. xEMDC
+#: 03020205.xhp
+msgctxt ""
+"03020205.xhp\n"
+"par_id3153728\n"
+"help.text"
+msgid "<emph>fileNum</emph>: Any numeric expression that contains the file number that was set by the Open statement for the respective file."
+msgstr ""
+
+#. TwHF7
+#: 03020205.xhp
+msgctxt ""
+"03020205.xhp\n"
+"par_id3146120\n"
+"help.text"
+msgid "<emph>expression</emph> list: Variables or expressions that you want to enter in a file, separated by commas."
+msgstr ""
+
+#. RERPn
+#: 03020205.xhp
+msgctxt ""
+"03020205.xhp\n"
+"par_id3150010\n"
+"help.text"
+msgid "If the expression list is omitted, the <emph>Write</emph> statement appends an empty line to the file."
+msgstr ""
+
+#. hBs5E
+#: 03020205.xhp
+msgctxt ""
+"03020205.xhp\n"
+"par_id3163713\n"
+"help.text"
+msgid "To add an expression list to a new or an existing file, the file must be opened in the <emph>Output</emph> or <emph>Append</emph> mode."
+msgstr ""
+
+#. qooAQ
+#: 03020205.xhp
+msgctxt ""
+"03020205.xhp\n"
+"par_id3147428\n"
+"help.text"
+msgid "Strings that you write are enclosed by quotation marks and separated by commas. You do not need to enter these delimiters in the expression list."
+msgstr ""
+
+#. AvKzN
+#: 03020205.xhp
+msgctxt ""
+"03020205.xhp\n"
+"par_id1002838\n"
+"help.text"
+msgid "Each <emph>Write</emph> statement outputs a line end symbol as last entry."
+msgstr ""
+
+#. vhtx9
+#: 03020205.xhp
+msgctxt ""
+"03020205.xhp\n"
+"par_id6618854\n"
+"help.text"
+msgid "Numbers with decimal delimiters are converted according to the locale settings."
+msgstr ""
+
+#. ejANh
+#: 03020301.xhp
+msgctxt ""
+"03020301.xhp\n"
+"tit\n"
+"help.text"
+msgid "Eof Function"
+msgstr ""
+
+#. vwUVq
+#: 03020301.xhp
+msgctxt ""
+"03020301.xhp\n"
+"bm_id3154598\n"
+"help.text"
+msgid "<bookmark_value>Eof function</bookmark_value>"
+msgstr ""
+
+#. mqFFB
+#: 03020301.xhp
+msgctxt ""
+"03020301.xhp\n"
+"hd_id3154598\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03020301.xhp\" name=\"Eof Function\">Eof Function</link>"
+msgstr ""
+
+#. ZBjAi
+#: 03020301.xhp
+msgctxt ""
+"03020301.xhp\n"
+"par_id3147182\n"
+"help.text"
+msgid "Determines if the file pointer has reached the end of a file."
+msgstr ""
+
+#. KmauZ
+#: 03020301.xhp
+msgctxt ""
+"03020301.xhp\n"
+"par_id3147399\n"
+"help.text"
+msgid "Eof (intexpression As Integer)"
+msgstr ""
+
+#. 4WM7u
+#: 03020301.xhp
+msgctxt ""
+"03020301.xhp\n"
+"par_id3156027\n"
+"help.text"
+msgid "Bool"
+msgstr ""
+
+#. PynGw
+#: 03020301.xhp
+msgctxt ""
+"03020301.xhp\n"
+"par_id3153990\n"
+"help.text"
+msgid "<emph>Intexpression:</emph> Any integer expression that evaluates to the number of an open file."
+msgstr ""
+
+#. tsMDB
+#: 03020301.xhp
+msgctxt ""
+"03020301.xhp\n"
+"par_id3153527\n"
+"help.text"
+msgid "Use EOF to avoid errors when you attempt to get input past the end of a file. When you use the Input or Get statement to read from a file, the file pointer is advanced by the number of bytes read. When the end of a file is reached, EOF returns the value \"True\" (-1)."
+msgstr ""
+
+#. jCouD
+#: 03020302.xhp
+msgctxt ""
+"03020302.xhp\n"
+"tit\n"
+"help.text"
+msgid "Loc Function"
+msgstr ""
+
+#. cERS6
+#: 03020302.xhp
+msgctxt ""
+"03020302.xhp\n"
+"bm_id3148663\n"
+"help.text"
+msgid "<bookmark_value>Loc function</bookmark_value>"
+msgstr ""
+
+#. Wf8wH
+#: 03020302.xhp
+msgctxt ""
+"03020302.xhp\n"
+"hd_id3148663\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03020302.xhp\" name=\"Loc Function\">Loc Function</link>"
+msgstr ""
+
+#. xBjCr
+#: 03020302.xhp
+msgctxt ""
+"03020302.xhp\n"
+"par_id3154138\n"
+"help.text"
+msgid "Returns the current position in an open file."
+msgstr ""
+
+#. paZ9R
+#: 03020302.xhp
+msgctxt ""
+"03020302.xhp\n"
+"hd_id3156422\n"
+"help.text"
+msgid "Syntax:"
+msgstr ""
+
+#. K5Bo8
+#: 03020302.xhp
+msgctxt ""
+"03020302.xhp\n"
+"par_id3150768\n"
+"help.text"
+msgid "Loc(FileNumber)"
+msgstr ""
+
+#. 2TN73
+#: 03020302.xhp
+msgctxt ""
+"03020302.xhp\n"
+"hd_id3150440\n"
+"help.text"
+msgid "Return value:"
+msgstr ""
+
+#. CN8kc
+#: 03020302.xhp
+msgctxt ""
+"03020302.xhp\n"
+"hd_id3152462\n"
+"help.text"
+msgid "Parameters:"
+msgstr ""
+
+#. YZBFZ
+#: 03020302.xhp
+msgctxt ""
+"03020302.xhp\n"
+"par_id3153363\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 ""
+
+#. NSREX
+#: 03020302.xhp
+msgctxt ""
+"03020302.xhp\n"
+"par_id3154320\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 ""
+
+#. YAMkR
+#: 03020302.xhp
+msgctxt ""
+"03020302.xhp\n"
+"par_id3151115\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 ""
+
+#. CCyrd
+#: 03020303.xhp
+msgctxt ""
+"03020303.xhp\n"
+"tit\n"
+"help.text"
+msgid "Lof Function"
+msgstr ""
+
+#. QE3D5
+#: 03020303.xhp
+msgctxt ""
+"03020303.xhp\n"
+"bm_id3156024\n"
+"help.text"
+msgid "<bookmark_value>Lof function</bookmark_value>"
+msgstr ""
+
+#. 5diJq
+#: 03020303.xhp
+msgctxt ""
+"03020303.xhp\n"
+"hd_id3156024\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03020303.xhp\" name=\"Lof Function\">Lof Function</link>"
+msgstr ""
+
+#. 3PR3T
+#: 03020303.xhp
+msgctxt ""
+"03020303.xhp\n"
+"par_id3146794\n"
+"help.text"
+msgid "Returns the size of an open file in bytes."
+msgstr ""
+
+#. D84bA
+#: 03020303.xhp
+msgctxt ""
+"03020303.xhp\n"
+"par_id3150359\n"
+"help.text"
+msgid "Lof (FileNumber) As Long"
+msgstr ""
+
+#. 6oGoB
+#: 03020303.xhp
+msgctxt ""
+"03020303.xhp\n"
+"par_id3150869\n"
+"help.text"
+msgid "<emph>FileNumber:</emph> Any numeric expression that contains the file number that is specified in the <literal>Open</literal> statement."
+msgstr ""
+
+#. EAe7H
+#: 03020303.xhp
+msgctxt ""
+"03020303.xhp\n"
+"par_id3147349\n"
+"help.text"
+msgid "To obtain the length of a file that is not open, use the <link href=\"text/sbasic/shared/03020408.xhp\" name=\"FileLen function\"><literal>FileLen</literal></link> function."
+msgstr ""
+
+#. AGL3X
+#: 03020304.xhp
+msgctxt ""
+"03020304.xhp\n"
+"tit\n"
+"help.text"
+msgid "Seek Function"
+msgstr ""
+
+#. oYoAu
+#: 03020304.xhp
+msgctxt ""
+"03020304.xhp\n"
+"bm_id3154367\n"
+"help.text"
+msgid "<bookmark_value>Seek function</bookmark_value>"
+msgstr ""
+
+#. XqpLF
+#: 03020304.xhp
+msgctxt ""
+"03020304.xhp\n"
+"hd_id3154367\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03020304.xhp\" name=\"Seek Function\">Seek Function</link>"
+msgstr ""
+
+#. GFYoD
+#: 03020304.xhp
+msgctxt ""
+"03020304.xhp\n"
+"par_id3156280\n"
+"help.text"
+msgid "Returns the position for the next writing or reading in a file that was opened with the open statement."
+msgstr ""
+
+#. T3aGD
+#: 03020304.xhp
+msgctxt ""
+"03020304.xhp\n"
+"par_id3153194\n"
+"help.text"
+msgid "For random access files, the Seek function returns the number of the next record to be read."
+msgstr ""
+
+#. xo2Mq
+#: 03020304.xhp
+msgctxt ""
+"03020304.xhp\n"
+"par_id3161831\n"
+"help.text"
+msgid "For all other files, the function returns the byte position at which the next operation is to occur."
+msgstr ""
+
+#. MDLGC
+#: 03020304.xhp
+msgctxt ""
+"03020304.xhp\n"
+"par_id3155854\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 ""
+
+#. CnFrv
+#: 03020304.xhp
+msgctxt ""
+"03020304.xhp\n"
+"hd_id3152460\n"
+"help.text"
+msgid "Syntax:"
+msgstr ""
+
+#. kDJUc
+#: 03020304.xhp
+msgctxt ""
+"03020304.xhp\n"
+"par_id3145365\n"
+"help.text"
+msgid "Seek (FileNumber)"
+msgstr ""
+
+#. CPK2A
+#: 03020304.xhp
+msgctxt ""
+"03020304.xhp\n"
+"hd_id3148575\n"
+"help.text"
+msgid "Return value:"
+msgstr ""
+
+#. agXgn
+#: 03020304.xhp
+msgctxt ""
+"03020304.xhp\n"
+"hd_id3149665\n"
+"help.text"
+msgid "Parameters:"
+msgstr ""
+
+#. cKjHr
+#: 03020304.xhp
+msgctxt ""
+"03020304.xhp\n"
+"par_id3148645\n"
+"help.text"
+msgid "<emph>FileNumber:</emph> The data channel number used in the Open statement."
+msgstr ""
+
+#. MbdMB
+#: 03020305.xhp
+msgctxt ""
+"03020305.xhp\n"
+"tit\n"
+"help.text"
+msgid "Seek# Statement"
+msgstr ""
+
+#. vLW2K
+#: 03020305.xhp
+msgctxt ""
+"03020305.xhp\n"
+"bm_id3159413\n"
+"help.text"
+msgid "<bookmark_value>Seek statement</bookmark_value>"
+msgstr ""
+
+#. 9HcVZ
+#: 03020305.xhp
+msgctxt ""
+"03020305.xhp\n"
+"hd_id3159413\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03020305.xhp\" name=\"Seek# Statement\">Seek Statement</link>"
+msgstr ""
+
+#. RBPKW
+#: 03020305.xhp
+msgctxt ""
+"03020305.xhp\n"
+"par_id3153381\n"
+"help.text"
+msgid "Sets the position for the next writing or reading in a file that was opened with the Open statement."
+msgstr ""
+
+#. 8vcE7
+#: 03020305.xhp
+msgctxt ""
+"03020305.xhp\n"
+"par_id2100589\n"
+"help.text"
+msgid "For random access files, the Seek statement sets the number of the next record to be accessed."
+msgstr ""
+
+#. mhLUp
+#: 03020305.xhp
+msgctxt ""
+"03020305.xhp\n"
+"par_id5444807\n"
+"help.text"
+msgid "For all other files, the Seek statement sets the byte position at which the next operation is to occur."
+msgstr ""
+
+#. sbuDC
+#: 03020305.xhp
+msgctxt ""
+"03020305.xhp\n"
+"par_id971587473488701\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sbasic/Seek_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Seek Statement diagram</alt></image>"
+msgstr ""
+
+#. PjcAp
+#: 03020305.xhp
+msgctxt ""
+"03020305.xhp\n"
+"par_id3145273\n"
+"help.text"
+msgid "Seek [#]filePos, {filePos|recordNum}"
+msgstr ""
+
+#. vwzuK
+#: 03020305.xhp
+msgctxt ""
+"03020305.xhp\n"
+"hd_id3153379\n"
+"help.text"
+msgid "Parameters:"
+msgstr ""
+
+#. x86KJ
+#: 03020305.xhp
+msgctxt ""
+"03020305.xhp\n"
+"par_id3153952\n"
+"help.text"
+msgid "<emph>fileNum</emph>: The data channel number used in the Open statement."
+msgstr ""
+
+#. FrYvd
+#: 03020305.xhp
+msgctxt ""
+"03020305.xhp\n"
+"par_id3145366\n"
+"help.text"
+msgid "<emph>filePos, recordNum</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 ""
+
+#. 5LDFE
+#: 03020305.xhp
+msgctxt ""
+"03020305.xhp\n"
+"par_id491596468328575\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03020304.xhp\" name=\"Seek\">Seek</link> function"
+msgstr ""
+
+#. Nwouh
+#: 03020400.xhp
+msgctxt ""
+"03020400.xhp\n"
+"tit\n"
+"help.text"
+msgid "Managing Files"
+msgstr ""
+
+#. diQGx
+#: 03020400.xhp
+msgctxt ""
+"03020400.xhp\n"
+"hd_id3145136\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03020400.xhp\" name=\"Managing Files\">Managing Files</link>"
+msgstr ""
+
+#. E5FsL
+#: 03020400.xhp
+msgctxt ""
+"03020400.xhp\n"
+"par_id3147264\n"
+"help.text"
+msgid "The functions and statements for managing files are described here."
+msgstr ""
+
+#. vYVej
+#: 03020401.xhp
+msgctxt ""
+"03020401.xhp\n"
+"tit\n"
+"help.text"
+msgid "ChDir Statement"
+msgstr ""
+
+#. y9mCC
+#: 03020401.xhp
+msgctxt ""
+"03020401.xhp\n"
+"bm_id3150178\n"
+"help.text"
+msgid "<bookmark_value>ChDir statement</bookmark_value>"
+msgstr ""
+
+#. Ets3f
+#: 03020401.xhp
+msgctxt ""
+"03020401.xhp\n"
+"hd_id3150178\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03020401.xhp\" name=\"ChDir Statement\">ChDir Statement</link>"
+msgstr ""
+
+#. yr6FQ
+#: 03020401.xhp
+msgctxt ""
+"03020401.xhp\n"
+"par_id3153126\n"
+"help.text"
+msgid "Changes the current directory or drive."
+msgstr ""
+
+#. 9njBT
+#: 03020401.xhp
+msgctxt ""
+"03020401.xhp\n"
+"par_id461605879610611\n"
+"help.text"
+msgid "Some DOS-specific file and directory functions are no longer provided in %PRODUCTNAME, or their function is only limited. For example, support for the <literal>ChDir</literal>, <literal>ChDrive</literal> and <literal>CurDir</literal> functions is not provided. Some DOS-specific properties are no longer used in functions that expect file properties as parameters (for example, to differentiate from concealed files and system files). This ensures the greatest possible level of platform independence for %PRODUCTNAME. Therefore this feature is subject to removal in a future release."
+msgstr ""
+
+#. EQYDk
+#: 03020401.xhp
+msgctxt ""
+"03020401.xhp\n"
+"par_id321620859565917\n"
+"help.text"
+msgid "The <link href=\"text/sbasic/shared/03/lib_ScriptForge.xhp\" name=\"SF_Lib\">ScriptForge</link> library in %PRODUCTNAME 7.1 introduces the <link href=\"text/sbasic/shared/03/sf_filesystem.xhp\" name=\"FileSystem_Service\">FileSystem</link> service with methods to handle files and folders in user scripts."
+msgstr ""
+
+#. WXPPp
+#: 03020401.xhp
+msgctxt ""
+"03020401.xhp\n"
+"par_id3153897\n"
+"help.text"
+msgid "ChDir Text As String"
+msgstr ""
+
+#. QhhVQ
+#: 03020401.xhp
+msgctxt ""
+"03020401.xhp\n"
+"par_id3150543\n"
+"help.text"
+msgid "<emph>Text:</emph> Any string expression that specifies the directory path or drive."
+msgstr ""
+
+#. 8bbhs
+#: 03020401.xhp
+msgctxt ""
+"03020401.xhp\n"
+"par_id3152598\n"
+"help.text"
+msgid "If you only want to change the current drive, enter the drive letter followed by a colon."
+msgstr ""
+
+#. vRQAc
+#: 03020402.xhp
+msgctxt ""
+"03020402.xhp\n"
+"tit\n"
+"help.text"
+msgid "ChDrive Statement"
+msgstr ""
+
+#. jgwnH
+#: 03020402.xhp
+msgctxt ""
+"03020402.xhp\n"
+"bm_id3145068\n"
+"help.text"
+msgid "<bookmark_value>ChDrive statement</bookmark_value>"
+msgstr ""
+
+#. oPgBF
+#: 03020402.xhp
+msgctxt ""
+"03020402.xhp\n"
+"hd_id3145068\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03020402.xhp\" name=\"ChDrive Statement\">ChDrive Statement</link>"
+msgstr ""
+
+#. mdSba
+#: 03020402.xhp
+msgctxt ""
+"03020402.xhp\n"
+"par_id3149656\n"
+"help.text"
+msgid "Changes the current drive."
+msgstr ""
+
+#. ncuAv
+#: 03020402.xhp
+msgctxt ""
+"03020402.xhp\n"
+"par_id3145172\n"
+"help.text"
+msgid "<emph>Text:</emph> Any string expression that contains the drive letter of the new drive. If you want, you can use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr ""
+
+#. WcKDC
+#: 03020402.xhp
+msgctxt ""
+"03020402.xhp\n"
+"par_id3145785\n"
+"help.text"
+msgid "The drive must be assigned a capital letter. Under Windows, the letter that you assign the drive is restricted by the settings in LASTDRV. If the drive argument is a multiple-character string, only the first letter is relevant. If you attempt to access a non-existent drive, an error occurs that you can respond to with the OnError statement."
+msgstr ""
+
+#. X2QkD
+#: 03020402.xhp
+msgctxt ""
+"03020402.xhp\n"
+"par_id3152576\n"
+"help.text"
+msgid "ChDrive \"D\" ' Only possible if a drive 'D' exists."
+msgstr ""
+
+#. f4XRN
+#: 03020403.xhp
+msgctxt ""
+"03020403.xhp\n"
+"tit\n"
+"help.text"
+msgid "CurDir Function"
+msgstr ""
+
+#. qhyPx
+#: 03020403.xhp
+msgctxt ""
+"03020403.xhp\n"
+"bm_id3153126\n"
+"help.text"
+msgid "<bookmark_value>CurDir function</bookmark_value>"
+msgstr ""
+
+#. jm6JP
+#: 03020403.xhp
+msgctxt ""
+"03020403.xhp\n"
+"hd_id3153126\n"
+"help.text"
+msgid "<variable id=\"CurDir_h1\"><link href=\"text/sbasic/shared/03020403.xhp\">CurDir Function</link></variable>"
+msgstr ""
+
+#. e8mAC
+#: 03020403.xhp
+msgctxt ""
+"03020403.xhp\n"
+"par_id3156343\n"
+"help.text"
+msgid "Returns a variant string that represents the current path <switchinline select=\"sys\"><caseinline select=\"WIN\">or that of the specified Windows drive</caseinline></switchinline>."
+msgstr ""
+
+#. 3ABqD
+#: 03020403.xhp
+msgctxt ""
+"03020403.xhp\n"
+"hd_id3154366\n"
+"help.text"
+msgid "Return value:"
+msgstr ""
+
+#. sgBjK
+#: 03020403.xhp
+msgctxt ""
+"03020403.xhp\n"
+"par_id3156281\n"
+"help.text"
+msgid "String"
+msgstr ""
+
+#. btnRV
+#: 03020403.xhp
+msgctxt ""
+"03020403.xhp\n"
+"par_id3153193\n"
+"help.text"
+msgid "<emph>Text:</emph> Any string expression that specifies an existing drive, for example \"C\" for the first partition of the first hard drive. This parameter is used solely under Windows."
+msgstr ""
+
+#. f7Di8
+#: 03020403.xhp
+msgctxt ""
+"03020403.xhp\n"
+"par_id3155133\n"
+"help.text"
+msgid "If no drive is specified or if the drive is a zero-length string (\"\"), <literal>CurDir</literal> returns the path for the current drive. %PRODUCTNAME Basic reports an error if the syntax of the drive description is incorrect or if the drive does not exist."
+msgstr ""
+
+#. jsyuK
+#: 03020403.xhp
+msgctxt ""
+"03020403.xhp\n"
+"par_id3150010\n"
+"help.text"
+msgid "This function is not case-sensitive."
+msgstr ""
+
+#. DFUj3
+#: 03020404.xhp
+msgctxt ""
+"03020404.xhp\n"
+"tit\n"
+"help.text"
+msgid "Dir Function"
+msgstr ""
+
+#. yreYq
+#: 03020404.xhp
+msgctxt ""
+"03020404.xhp\n"
+"bm_id3154347\n"
+"help.text"
+msgid "<bookmark_value>Dir function</bookmark_value>"
+msgstr ""
+
+#. 4tvPw
+#: 03020404.xhp
+msgctxt ""
+"03020404.xhp\n"
+"hd_id3154347\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03020404.xhp\" name=\"Dir Function\">Dir Function</link>"
+msgstr ""
+
+#. Xrc6C
+#: 03020404.xhp
+msgctxt ""
+"03020404.xhp\n"
+"par_id3153381\n"
+"help.text"
+msgid "Returns the name of a file, a directory, or all of the files and the directories on a drive or in a directory that match the specified search path."
+msgstr ""
+
+#. GjPMX
+#: 03020404.xhp
+msgctxt ""
+"03020404.xhp\n"
+"hd_id3156424\n"
+"help.text"
+msgid "Return value:"
+msgstr ""
+
+#. 8RTM8
+#: 03020404.xhp
+msgctxt ""
+"03020404.xhp\n"
+"par_id3153193\n"
+"help.text"
+msgid "String"
+msgstr ""
+
+#. Ygfz9
+#: 03020404.xhp
+msgctxt ""
+"03020404.xhp\n"
+"par_id3161831\n"
+"help.text"
+msgid "<emph>Text:</emph> Any string expression that specifies the search path, directory or file. This argument can only be specified the first time that you call the Dir function. If you want, you can enter the path in <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr ""
+
+#. Curme
+#: 03020404.xhp
+msgctxt ""
+"03020404.xhp\n"
+"par_id3146974\n"
+"help.text"
+msgid "<emph>Attrib: </emph>Any integer expression that specifies bitwise file attributes. The Dir function only returns files or directories that match the specified attributes. You can combine several attributes by adding the attribute values:"
+msgstr ""
+
+#. 3Tg2L
+#: 03020404.xhp
+msgctxt ""
+"03020404.xhp\n"
+"par_id3149666\n"
+"help.text"
+msgid "0 : Normal files."
+msgstr ""
+
+#. D3EEn
+#: 03020404.xhp
+msgctxt ""
+"03020404.xhp\n"
+"par_id3147427\n"
+"help.text"
+msgid "16 : Returns the name of the directory only."
+msgstr ""
+
+#. D56FM
+#: 03020404.xhp
+msgctxt ""
+"03020404.xhp\n"
+"par_id3153952\n"
+"help.text"
+msgid "Use this attribute to check if a file or directory exists, or to determine all files and folders in a specific directory."
+msgstr ""
+
+#. kEC2o
+#: 03020404.xhp
+msgctxt ""
+"03020404.xhp\n"
+"par_id3159156\n"
+"help.text"
+msgid "To check if a file exists, enter the complete path and name of the file. If the file or directory name does not exist, the Dir function returns a zero-length string (\"\")."
+msgstr ""
+
+#. 9UQgN
+#: 03020404.xhp
+msgctxt ""
+"03020404.xhp\n"
+"par_id3154012\n"
+"help.text"
+msgid "To generate a list of all existing files in a specific directory, proceed as follows: The first time you call the Dir function, specify the complete search path for the files, for example, \"D:\\Files\\*.ods\". If the path is correct and the search finds at least one file, the Dir function returns the name of the first file that matches the search path. To return additional file names that match the path, call Dir again, but with no arguments."
+msgstr ""
+
+#. LXpKQ
+#: 03020404.xhp
+msgctxt ""
+"03020404.xhp\n"
+"par_id3147348\n"
+"help.text"
+msgid "To return directories only, use the attribute parameter. The same applies if you want to determine the name of a volume (for example, a hard drive partition)."
+msgstr ""
+
+#. e7TRd
+#: 03020404.xhp
+msgctxt ""
+"03020404.xhp\n"
+"par_id3148455\n"
+"help.text"
+msgid "' Displays all files and directories"
+msgstr ""
+
+#. uFFnD
+#: 03020404.xhp
+msgctxt ""
+"03020404.xhp\n"
+"par_id3153416\n"
+"help.text"
+msgid "sDir=\"Directories:\""
+msgstr ""
+
+#. y8GYD
+#: 03020404.xhp
+msgctxt ""
+"03020404.xhp\n"
+"par_id3154253\n"
+"help.text"
+msgid "' Get the directories"
+msgstr ""
+
+#. cbFiT
+#: 03020405.xhp
+msgctxt ""
+"03020405.xhp\n"
+"tit\n"
+"help.text"
+msgid "FileAttr Function"
+msgstr ""
+
+#. r5ajP
+#: 03020405.xhp
+msgctxt ""
+"03020405.xhp\n"
+"bm_id3153380\n"
+"help.text"
+msgid "<bookmark_value>FileAttr function</bookmark_value>"
+msgstr ""
+
+#. Wkyz8
+#: 03020405.xhp
+msgctxt ""
+"03020405.xhp\n"
+"hd_id3153380\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03020405.xhp\" name=\"FileAttr Function\">FileAttr Function</link>"
+msgstr ""
+
+#. eWQDF
+#: 03020405.xhp
+msgctxt ""
+"03020405.xhp\n"
+"par_id3154366\n"
+"help.text"
+msgid "Returns the access mode or the file access number of a file that was opened with the Open statement. The file access number is dependent on the operating system (OSH = Operating System Handle)."
+msgstr ""
+
+#. yY7ka
+#: 03020405.xhp
+msgctxt ""
+"03020405.xhp\n"
+"par_id3153364\n"
+"help.text"
+msgid "If you use a 32-Bit operating system, you cannot use the FileAttr-Function to determine the file access number."
+msgstr ""
+
+#. gBQEA
+#: 03020405.xhp
+msgctxt ""
+"03020405.xhp\n"
+"par_id3163713\n"
+"help.text"
+msgid "See also: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>"
+msgstr ""
+
+#. AhrBC
+#: 03020405.xhp
+msgctxt ""
+"03020405.xhp\n"
+"par_id3154012\n"
+"help.text"
+msgid "FileAttr (FileNumber As Integer, Attribute As Integer)"
+msgstr ""
+
+#. xonFX
+#: 03020405.xhp
+msgctxt ""
+"03020405.xhp\n"
+"par_id3146974\n"
+"help.text"
+msgid "Integer"
+msgstr ""
+
+#. SAnw7
+#: 03020405.xhp
+msgctxt ""
+"03020405.xhp\n"
+"par_id3151074\n"
+"help.text"
+msgid "<emph>FileNumber:</emph> The number of the file that was opened with the Open statement."
+msgstr ""
+
+#. zYCJs
+#: 03020405.xhp
+msgctxt ""
+"03020405.xhp\n"
+"par_id3144766\n"
+"help.text"
+msgid "<emph>Attribute:</emph> Integer expression that indicates the type of file information that you want to return. The following values are possible:"
+msgstr ""
+
+#. nnGyB
+#: 03020405.xhp
+msgctxt ""
+"03020405.xhp\n"
+"par_id3147396\n"
+"help.text"
+msgid "1: The FileAttr-Function indicates the access mode of the file."
+msgstr ""
+
+#. EA4VX
+#: 03020405.xhp
+msgctxt ""
+"03020405.xhp\n"
+"par_id3149959\n"
+"help.text"
+msgid "2: The FileAttr-Function returns the file access number of the operating system."
+msgstr ""
+
+#. qCmCs
+#: 03020405.xhp
+msgctxt ""
+"03020405.xhp\n"
+"par_id3154018\n"
+"help.text"
+msgid "If you specify a parameter attribute with a value of 1, the following return values apply:"
+msgstr ""
+
+#. SqXxC
+#: 03020405.xhp
+msgctxt ""
+"03020405.xhp\n"
+"par_id3149124\n"
+"help.text"
+msgid "1 - INPUT (file open for input)"
+msgstr ""
+
+#. AUWCn
+#: 03020405.xhp
+msgctxt ""
+"03020405.xhp\n"
+"par_id3156275\n"
+"help.text"
+msgid "2 - OUTPUT (file open for output)"
+msgstr ""
+
+#. iD4qe
+#: 03020405.xhp
+msgctxt ""
+"03020405.xhp\n"
+"par_id3155066\n"
+"help.text"
+msgid "4 - RANDOM (file open for random access)"
+msgstr ""
+
+#. CB5Ed
+#: 03020405.xhp
+msgctxt ""
+"03020405.xhp\n"
+"par_id3148406\n"
+"help.text"
+msgid "8 - APPEND (file open for appending)"
+msgstr ""
+
+#. 8huJZ
+#: 03020405.xhp
+msgctxt ""
+"03020405.xhp\n"
+"par_id3154757\n"
+"help.text"
+msgid "32 - BINARY (file open in binary mode)."
+msgstr ""
+
+#. xBfKE
+#: 03020405.xhp
+msgctxt ""
+"03020405.xhp\n"
+"par_id3155607\n"
+"help.text"
+msgid "Print #iNumber, \"This is a line of text\""
+msgstr ""
+
+#. QBkhp
+#: 03020405.xhp
+msgctxt ""
+"03020405.xhp\n"
+"par_id3150361\n"
+"help.text"
+msgid "MsgBox FileAttr(#iNumber, 1), 0, \"Access mode\""
+msgstr ""
+
+#. qwyFH
+#: 03020405.xhp
+msgctxt ""
+"03020405.xhp\n"
+"par_id3149817\n"
+"help.text"
+msgid "MsgBox FileAttr(#iNumber, 2), 0, \"File attribute\""
+msgstr ""
+
+#. BDNvF
+#: 03020406.xhp
+msgctxt ""
+"03020406.xhp\n"
+"tit\n"
+"help.text"
+msgid "FileCopy Statement"
+msgstr ""
+
+#. AA2xm
+#: 03020406.xhp
+msgctxt ""
+"03020406.xhp\n"
+"bm_id3154840\n"
+"help.text"
+msgid "<bookmark_value>FileCopy statement</bookmark_value>"
+msgstr ""
+
+#. FAVwC
+#: 03020406.xhp
+msgctxt ""
+"03020406.xhp\n"
+"hd_id3154840\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03020406.xhp\" name=\"FileCopy Statement\">FileCopy Statement</link>"
+msgstr ""
+
+#. cgLqA
+#: 03020406.xhp
+msgctxt ""
+"03020406.xhp\n"
+"par_id3149497\n"
+"help.text"
+msgid "Copies a file."
+msgstr ""
+
+#. jLG2S
+#: 03020406.xhp
+msgctxt ""
+"03020406.xhp\n"
+"hd_id3147443\n"
+"help.text"
+msgid "Syntax:"
+msgstr ""
+
+#. LnQdV
+#: 03020406.xhp
+msgctxt ""
+"03020406.xhp\n"
+"par_id3146957\n"
+"help.text"
+msgid "FileCopy TextFrom As String, TextTo As String"
+msgstr ""
+
+#. CjRbT
+#: 03020406.xhp
+msgctxt ""
+"03020406.xhp\n"
+"hd_id3153825\n"
+"help.text"
+msgid "Parameters:"
+msgstr ""
+
+#. s3sxx
+#: 03020406.xhp
+msgctxt ""
+"03020406.xhp\n"
+"par_id3155390\n"
+"help.text"
+msgid "<emph>TextFrom:</emph> Any string expression that specifies the name of the file that you want to copy. The expression can contain optional path and drive information. If you want, you can enter a path in <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr ""
+
+#. zbMfy
+#: 03020406.xhp
+msgctxt ""
+"03020406.xhp\n"
+"par_id3150669\n"
+"help.text"
+msgid "<emph>TextTo:</emph> Any string expression that specifies where you want to copy the source file to. The expression can contain the destination drive, the path, and file name, or the path in URL notation."
+msgstr ""
+
+#. WgMEt
+#: 03020406.xhp
+msgctxt ""
+"03020406.xhp\n"
+"par_id3150791\n"
+"help.text"
+msgid "You can only use the FileCopy statement to copy files that are not opened."
+msgstr ""
+
+#. kPKuG
+#: 03020406.xhp
+msgctxt ""
+"03020406.xhp\n"
+"hd_id3125863\n"
+"help.text"
+msgid "Example:"
+msgstr ""
+
+#. koPMr
+#: 03020407.xhp
+msgctxt ""
+"03020407.xhp\n"
+"tit\n"
+"help.text"
+msgid "FileDateTime Function"
+msgstr ""
+
+#. accZM
+#: 03020407.xhp
+msgctxt ""
+"03020407.xhp\n"
+"bm_id3153361\n"
+"help.text"
+msgid "<bookmark_value>FileDateTime function</bookmark_value>"
+msgstr ""
+
+#. hykgY
+#: 03020407.xhp
+msgctxt ""
+"03020407.xhp\n"
+"hd_id3153361\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03020407.xhp\" name=\"FileDateTime Function\">FileDateTime Function</link>"
+msgstr ""
+
+#. 8fZwF
+#: 03020407.xhp
+msgctxt ""
+"03020407.xhp\n"
+"par_id3156423\n"
+"help.text"
+msgid "Returns a string that contains the date and the time that a file was created or last modified."
+msgstr ""
+
+#. k4kmB
+#: 03020407.xhp
+msgctxt ""
+"03020407.xhp\n"
+"hd_id3154685\n"
+"help.text"
+msgid "Syntax:"
+msgstr ""
+
+#. CPCBG
+#: 03020407.xhp
+msgctxt ""
+"03020407.xhp\n"
+"par_id3154124\n"
+"help.text"
+msgid "FileDateTime (Text As String)"
+msgstr ""
+
+#. meGd2
+#: 03020407.xhp
+msgctxt ""
+"03020407.xhp\n"
+"hd_id3150448\n"
+"help.text"
+msgid "Parameters:"
+msgstr ""
+
+#. nLoTT
+#: 03020407.xhp
+msgctxt ""
+"03020407.xhp\n"
+"par_id3159153\n"
+"help.text"
+msgid "<emph>Text:</emph> Any string expression that contains an unambiguous (no wildcards) file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr ""
+
+#. qqouA
+#: 03020407.xhp
+msgctxt ""
+"03020407.xhp\n"
+"par_id3155306\n"
+"help.text"
+msgid "This function determines the exact time of creation or last modification of a file, returned in the format \"MM.DD.YYYY HH.MM.SS\"."
+msgstr ""
+
+#. 6JAwC
+#: 03020407.xhp
+msgctxt ""
+"03020407.xhp\n"
+"hd_id3146119\n"
+"help.text"
+msgid "Example:"
+msgstr ""
+
+#. DyZCi
+#: 03020408.xhp
+msgctxt ""
+"03020408.xhp\n"
+"tit\n"
+"help.text"
+msgid "FileLen Function"
+msgstr ""
+
+#. 9Lkb8
+#: 03020408.xhp
+msgctxt ""
+"03020408.xhp\n"
+"bm_id3153126\n"
+"help.text"
+msgid "<bookmark_value>FileLen function</bookmark_value>"
+msgstr ""
+
+#. Xq2cS
+#: 03020408.xhp
+msgctxt ""
+"03020408.xhp\n"
+"hd_id3153126\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03020408.xhp\" name=\"FileLen Function\">FileLen Function</link>"
+msgstr ""
+
+#. aJChP
+#: 03020408.xhp
+msgctxt ""
+"03020408.xhp\n"
+"par_id3145068\n"
+"help.text"
+msgid "Returns the length of a file in bytes."
+msgstr ""
+
+#. RpGc5
+#: 03020408.xhp
+msgctxt ""
+"03020408.xhp\n"
+"par_id401651744449325\n"
+"help.text"
+msgid "Use <link href=\"text/sbasic/shared/03/sf_filesystem.xhp\" name=\"ScriptForge.FileSystem service\">ScriptForge.FileSystem</link> service <link href=\"text/sbasic/shared/03/sf_filesystem.xhp#GetFileLen\" name=\"GetFileLen method\">GetFileLen()</link> method when size is expected to be over 2 gigabytes."
+msgstr ""
+
+#. Fo2XH
+#: 03020408.xhp
+msgctxt ""
+"03020408.xhp\n"
+"par_id3153193\n"
+"help.text"
+msgid "<emph>Text:</emph> Any string expression that contains an unambiguous file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr ""
+
+#. 7RtHj
+#: 03020408.xhp
+msgctxt ""
+"03020408.xhp\n"
+"par_id3150439\n"
+"help.text"
+msgid "This function determines the length of a file. If the <literal>FileLen</literal> function is called for an open file, it returns the file length before it was opened. To determine the current file length of an open file, use the <link href=\"text/sbasic/shared/03020303.xhp\" name=\"Lof function\"><literal>Lof</literal></link> function."
+msgstr ""
+
+#. FerKv
+#: 03020409.xhp
+msgctxt ""
+"03020409.xhp\n"
+"tit\n"
+"help.text"
+msgid "GetAttr Function"
+msgstr ""
+
+#. AdMtV
+#: 03020409.xhp
+msgctxt ""
+"03020409.xhp\n"
+"bm_id3150984\n"
+"help.text"
+msgid "<bookmark_value>GetAttr function</bookmark_value>"
+msgstr ""
+
+#. sTMcc
+#: 03020409.xhp
+msgctxt ""
+"03020409.xhp\n"
+"hd_id3150984\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03020409.xhp\" name=\"GetAttr Function\">GetAttr Function</link>"
+msgstr ""
+
+#. WnrAC
+#: 03020409.xhp
+msgctxt ""
+"03020409.xhp\n"
+"par_id3154347\n"
+"help.text"
+msgid "Returns a bit pattern that identifies the file type or the name of a volume or a directory."
+msgstr ""
+
+#. XQjit
+#: 03020409.xhp
+msgctxt ""
+"03020409.xhp\n"
+"hd_id3149457\n"
+"help.text"
+msgid "Syntax:"
+msgstr ""
+
+#. 45fLv
+#: 03020409.xhp
+msgctxt ""
+"03020409.xhp\n"
+"par_id3150359\n"
+"help.text"
+msgid "GetAttr (Text As String)"
+msgstr ""
+
+#. mBMu7
+#: 03020409.xhp
+msgctxt ""
+"03020409.xhp\n"
+"hd_id3151211\n"
+"help.text"
+msgid "Return value:"
+msgstr ""
+
+#. upvgK
+#: 03020409.xhp
+msgctxt ""
+"03020409.xhp\n"
+"par_id3154909\n"
+"help.text"
+msgid "Integer"
+msgstr ""
+
+#. CMxCD
+#: 03020409.xhp
+msgctxt ""
+"03020409.xhp\n"
+"hd_id3145172\n"
+"help.text"
+msgid "Parameters:"
+msgstr ""
+
+#. 8MoGx
+#: 03020409.xhp
+msgctxt ""
+"03020409.xhp\n"
+"par_id3151042\n"
+"help.text"
+msgid "<emph>Text:</emph> Any string expression that contains an unambiguous file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr ""
+
+#. 9AAaj
+#: 03020409.xhp
+msgctxt ""
+"03020409.xhp\n"
+"par_id3161831\n"
+"help.text"
+msgid "This function determines the attributes for a specified file and returns the bit pattern that can help you to identify the following file attributes:"
+msgstr ""
+
+#. mWtvF
+#: 03020409.xhp
+msgctxt ""
+"03020409.xhp\n"
+"hd_id3145364\n"
+"help.text"
+msgid "Value"
+msgstr ""
+
+#. hFQCm
+#: 03020409.xhp
+msgctxt ""
+"03020409.xhp\n"
+"par_id051220170522586822\n"
+"help.text"
+msgid "Named constant"
+msgstr ""
+
+#. zzPWS
+#: 03020409.xhp
+msgctxt ""
+"03020409.xhp\n"
+"par_id051220170522583099\n"
+"help.text"
+msgid "Value"
+msgstr ""
+
+#. iKvsu
+#: 03020409.xhp
+msgctxt ""
+"03020409.xhp\n"
+"par_id051220170522583818\n"
+"help.text"
+msgid "Definition"
+msgstr ""
+
+#. kTUR7
+#: 03020409.xhp
+msgctxt ""
+"03020409.xhp\n"
+"par_id3147349\n"
+"help.text"
+msgid "Normal files."
+msgstr ""
+
+#. x4JtS
+#: 03020409.xhp
+msgctxt ""
+"03020409.xhp\n"
+"par_id3147434\n"
+"help.text"
+msgid "Read-only files."
+msgstr ""
+
+#. AFPmi
+#: 03020409.xhp
+msgctxt ""
+"03020409.xhp\n"
+"par_id051220170546544550\n"
+"help.text"
+msgid "Hidden file"
+msgstr ""
+
+#. GBNFo
+#: 03020409.xhp
+msgctxt ""
+"03020409.xhp\n"
+"par_id051220170546546496\n"
+"help.text"
+msgid "System file"
+msgstr ""
+
+#. EXYth
+#: 03020409.xhp
+msgctxt ""
+"03020409.xhp\n"
+"par_id3159154\n"
+"help.text"
+msgid "Returns the name of the volume"
+msgstr ""
+
+#. F84oD
+#: 03020409.xhp
+msgctxt ""
+"03020409.xhp\n"
+"par_id3145271\n"
+"help.text"
+msgid "Returns the name of the directory only."
+msgstr ""
+
+#. kpdcE
+#: 03020409.xhp
+msgctxt ""
+"03020409.xhp\n"
+"par_id3153953\n"
+"help.text"
+msgid "File was changed since last backup (Archive bit)."
+msgstr ""
+
+#. LecDz
+#: 03020409.xhp
+msgctxt ""
+"03020409.xhp\n"
+"par_id3156444\n"
+"help.text"
+msgid "If you want to know if a bit of the attribute byte is set, use the following query method:"
+msgstr ""
+
+#. CV4g5
+#: 03020409.xhp
+msgctxt ""
+"03020409.xhp\n"
+"hd_id3153094\n"
+"help.text"
+msgid "Example:"
+msgstr ""
+
+#. WNBqB
+#: 03020409.xhp
+msgctxt ""
+"03020409.xhp\n"
+"par_id3155415\n"
+"help.text"
+msgid "On Error GoTo ErrorHandler ' Define target for error handler"
+msgstr ""
+
+#. HtCzT
+#: 03020410.xhp
+msgctxt ""
+"03020410.xhp\n"
+"tit\n"
+"help.text"
+msgid "Kill Statement"
+msgstr ""
+
+#. 6A7ar
+#: 03020410.xhp
+msgctxt ""
+"03020410.xhp\n"
+"bm_id3153360\n"
+"help.text"
+msgid "<bookmark_value>Kill statement</bookmark_value>"
+msgstr ""
+
+#. JWiBA
+#: 03020410.xhp
+msgctxt ""
+"03020410.xhp\n"
+"hd_id3153360\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03020410.xhp\" name=\"Kill Statement\">Kill Statement</link>"
+msgstr ""
+
+#. gJGP8
+#: 03020410.xhp
+msgctxt ""
+"03020410.xhp\n"
+"par_id3151211\n"
+"help.text"
+msgid "Deletes a file from a disk."
+msgstr ""
+
+#. HsPQ9
+#: 03020410.xhp
+msgctxt ""
+"03020410.xhp\n"
+"par_id3154685\n"
+"help.text"
+msgid "Kill File As String"
+msgstr ""
+
+#. FDnBF
+#: 03020410.xhp
+msgctxt ""
+"03020410.xhp\n"
+"par_id3150440\n"
+"help.text"
+msgid "<emph>File:</emph> Any string expression that contains an unambiguous file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr ""
+
+#. PXEE3
+#: 03020410.xhp
+msgctxt ""
+"03020410.xhp\n"
+"par_id3163710\n"
+"help.text"
+msgid "Kill \"C:\\Users\\ThisUser\\datafile.dat\" ' File must be created in advance"
+msgstr ""
+
+#. hWy62
+#: 03020411.xhp
+msgctxt ""
+"03020411.xhp\n"
+"tit\n"
+"help.text"
+msgid "MkDir Statement"
+msgstr ""
+
+#. dsDTF
+#: 03020411.xhp
+msgctxt ""
+"03020411.xhp\n"
+"bm_id3156421\n"
+"help.text"
+msgid "<bookmark_value>MkDir statement</bookmark_value>"
+msgstr ""
+
+#. mTqrj
+#: 03020411.xhp
+msgctxt ""
+"03020411.xhp\n"
+"hd_id3156421\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03020411.xhp\" name=\"MkDir Statement\">MkDir Statement</link>"
+msgstr ""
+
+#. Fu6rt
+#: 03020411.xhp
+msgctxt ""
+"03020411.xhp\n"
+"par_id971587473488701\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sbasic/MkDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">MkDir Statement diagram</alt></image>"
+msgstr ""
+
+#. ruXou
+#: 03020411.xhp
+msgctxt ""
+"03020411.xhp\n"
+"par_id3147000\n"
+"help.text"
+msgid "Creates a new directory on a data medium."
+msgstr ""
+
+#. 83LPA
+#: 03020411.xhp
+msgctxt ""
+"03020411.xhp\n"
+"par_id3155150\n"
+"help.text"
+msgid "MkDir path"
+msgstr ""
+
+#. PaEBs
+#: 03020411.xhp
+msgctxt ""
+"03020411.xhp\n"
+"par_id3153750\n"
+"help.text"
+msgid "<emph>path:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr ""
+
+#. PLopZ
+#: 03020411.xhp
+msgctxt ""
+"03020411.xhp\n"
+"par_id3153311\n"
+"help.text"
+msgid "If the path is not determined, the directory is created in the current directory."
+msgstr ""
+
+#. KEaAA
+#: 03020411.xhp
+msgctxt ""
+"03020411.xhp\n"
+"par_id3149762\n"
+"help.text"
+msgid "' Example for functions of the file organization"
+msgstr ""
+
+#. N8bbr
+#: 03020411.xhp
+msgctxt ""
+"03020411.xhp\n"
+"par_id3149669\n"
+"help.text"
+msgid "Const sSubDir1 As String =\"Test\""
+msgstr ""
+
+#. rnaAM
+#: 03020411.xhp
+msgctxt ""
+"03020411.xhp\n"
+"par_id3148663\n"
+"help.text"
+msgid "Const sFile2 As String = \"Copied.tmp\""
+msgstr ""
+
+#. CTKPw
+#: 03020411.xhp
+msgctxt ""
+"03020411.xhp\n"
+"par_id3154071\n"
+"help.text"
+msgid "Const sFile3 As String = \"Renamed.tmp\""
+msgstr ""
+
+#. ayeAf
+#: 03020411.xhp
+msgctxt ""
+"03020411.xhp\n"
+"par_id3154217\n"
+"help.text"
+msgid "If Dir(sSubDir1,16)=\"\" Then ' Does the directory exist?"
+msgstr ""
+
+#. r3XxL
+#: 03020411.xhp
+msgctxt ""
+"03020411.xhp\n"
+"par_id3147228\n"
+"help.text"
+msgid "MsgBox sFile,0,\"Create directory\""
+msgstr ""
+
+#. BQuXv
+#: 03020411.xhp
+msgctxt ""
+"03020411.xhp\n"
+"par_id3153770\n"
+"help.text"
+msgid "MsgBox fSysURL(CurDir()),0,\"Current directory\""
+msgstr ""
+
+#. yff8E
+#: 03020411.xhp
+msgctxt ""
+"03020411.xhp\n"
+"par_id3159154\n"
+"help.text"
+msgid "MsgBox sFile & Chr(13) & FileDateTime( sFile ),0,\"Creation time\""
+msgstr ""
+
+#. 5QDiw
+#: 03020411.xhp
+msgctxt ""
+"03020411.xhp\n"
+"par_id3149484\n"
+"help.text"
+msgid "MsgBox sFile & Chr(13)& FileLen( sFile ),0,\"File length\""
+msgstr ""
+
+#. AnYG5
+#: 03020411.xhp
+msgctxt ""
+"03020411.xhp\n"
+"par_id3152885\n"
+"help.text"
+msgid "MsgBox sFile & Chr(13)& GetAttr( sFile ),0,\"File attributes\""
+msgstr ""
+
+#. XQrrC
+#: 03020411.xhp
+msgctxt ""
+"03020411.xhp\n"
+"par_id3153952\n"
+"help.text"
+msgid "' Rename in the same directory"
+msgstr ""
+
+#. Gp3Gn
+#: 03020411.xhp
+msgctxt ""
+"03020411.xhp\n"
+"par_id3147426\n"
+"help.text"
+msgid "SetAttr( sFile, 0 ) 'Delete all attributes"
+msgstr ""
+
+#. yg7Lg
+#: 03020411.xhp
+msgctxt ""
+"03020411.xhp\n"
+"par_id3148647\n"
+"help.text"
+msgid "MsgBox sFile & Chr(13) & GetAttr( sFile ),0,\"New file attributes\""
+msgstr ""
+
+#. uC9HY
+#: 03020411.xhp
+msgctxt ""
+"03020411.xhp\n"
+"par_id3150092\n"
+"help.text"
+msgid "' Converts a system path in URL"
+msgstr ""
+
+#. hUsSZ
+#: 03020411.xhp
+msgctxt ""
+"03020411.xhp\n"
+"par_id3156276\n"
+"help.text"
+msgid "' the colon with DOS"
+msgstr ""
+
+#. C9VzB
+#: 03020412.xhp
+msgctxt ""
+"03020412.xhp\n"
+"tit\n"
+"help.text"
+msgid "Name Statement"
+msgstr ""
+
+#. GHsyn
+#: 03020412.xhp
+msgctxt ""
+"03020412.xhp\n"
+"bm_id3143268\n"
+"help.text"
+msgid "<bookmark_value>Name statement</bookmark_value>"
+msgstr ""
+
+#. DrXJF
+#: 03020412.xhp
+msgctxt ""
+"03020412.xhp\n"
+"hd_id3143268\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03020412.xhp\" name=\"Name Statement\">Name Statement</link>"
+msgstr ""
+
+#. H2NFb
+#: 03020412.xhp
+msgctxt ""
+"03020412.xhp\n"
+"par_id3154346\n"
+"help.text"
+msgid "Renames an existing file or directory."
+msgstr ""
+
+#. Hdf54
+#: 03020412.xhp
+msgctxt ""
+"03020412.xhp\n"
+"hd_id3156344\n"
+"help.text"
+msgid "Syntax:"
+msgstr ""
+
+#. AUhBt
+#: 03020412.xhp
+msgctxt ""
+"03020412.xhp\n"
+"par_id3153381\n"
+"help.text"
+msgid "Name OldName As String As NewName As String"
+msgstr ""
+
+#. 7AwQo
+#: 03020412.xhp
+msgctxt ""
+"03020412.xhp\n"
+"hd_id3153362\n"
+"help.text"
+msgid "Parameters:"
+msgstr ""
+
+#. a4nFq
+#: 03020412.xhp
+msgctxt ""
+"03020412.xhp\n"
+"par_id3151210\n"
+"help.text"
+msgid "<emph>OldName, NewName:</emph> Any string expression that specifies the file name, including the path. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr ""
+
+#. CLjrW
+#: 03020412.xhp
+msgctxt ""
+"03020412.xhp\n"
+"hd_id3125863\n"
+"help.text"
+msgid "Example:"
+msgstr ""
+
+#. CwS7i
+#: 03020412.xhp
+msgctxt ""
+"03020412.xhp\n"
+"par_id3152462\n"
+"help.text"
+msgid "MsgBox \"File already exists\""
+msgstr ""
+
+#. AVwAE
+#: 03020413.xhp
+msgctxt ""
+"03020413.xhp\n"
+"tit\n"
+"help.text"
+msgid "RmDir Statement"
+msgstr ""
+
+#. iqY6W
+#: 03020413.xhp
+msgctxt ""
+"03020413.xhp\n"
+"bm_id3148947\n"
+"help.text"
+msgid "<bookmark_value>RmDir statement</bookmark_value>"
+msgstr ""
+
+#. fj6w7
+#: 03020413.xhp
+msgctxt ""
+"03020413.xhp\n"
+"hd_id3148947\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03020413.xhp\" name=\"RmDir Statement\">RmDir Statement</link>"
+msgstr ""
+
+#. VRYbm
+#: 03020413.xhp
+msgctxt ""
+"03020413.xhp\n"
+"par_id3149457\n"
+"help.text"
+msgid "Deletes an existing directory from a data medium."
+msgstr ""
+
+#. nTJ5u
+#: 03020413.xhp
+msgctxt ""
+"03020413.xhp\n"
+"par_id971587473488701\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sbasic/RmDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">RmDir Statement diagram</alt></image>"
+msgstr ""
+
+#. uE7FC
+#: 03020413.xhp
+msgctxt ""
+"03020413.xhp\n"
+"par_id3154367\n"
+"help.text"
+msgid "RmDir Text As String"
+msgstr ""
+
+#. 2mpBg
+#: 03020413.xhp
+msgctxt ""
+"03020413.xhp\n"
+"par_id3151042\n"
+"help.text"
+msgid "<emph>Text:</emph> Any string expression that specifies the name and path of the directory that you want to delete. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr ""
+
+#. 3SCF3
+#: 03020413.xhp
+msgctxt ""
+"03020413.xhp\n"
+"par_id3153192\n"
+"help.text"
+msgid "If the path is not determined, the <emph>RmDir Statement</emph> searches for the directory that you want to delete in the current path. If it is not found there, an error message appears."
+msgstr ""
+
+#. WL5Nt
+#: 03020414.xhp
+msgctxt ""
+"03020414.xhp\n"
+"tit\n"
+"help.text"
+msgid "SetAttr Statement"
+msgstr ""
+
+#. jcD6Y
+#: 03020414.xhp
+msgctxt ""
+"03020414.xhp\n"
+"bm_id3147559\n"
+"help.text"
+msgid "<bookmark_value>SetAttr statement</bookmark_value>"
+msgstr ""
+
+#. yxCw2
+#: 03020414.xhp
+msgctxt ""
+"03020414.xhp\n"
+"hd_id3147559\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03020414.xhp\" name=\"SetAttr Statement\">SetAttr Statement</link>"
+msgstr ""
+
+#. XPYqB
+#: 03020414.xhp
+msgctxt ""
+"03020414.xhp\n"
+"par_id3147264\n"
+"help.text"
+msgid "Sets the attribute information for a specified file."
+msgstr ""
+
+#. SSwuZ
+#: 03020414.xhp
+msgctxt ""
+"03020414.xhp\n"
+"hd_id3150359\n"
+"help.text"
+msgid "Syntax:"
+msgstr ""
+
+#. CrLq9
+#: 03020414.xhp
+msgctxt ""
+"03020414.xhp\n"
+"par_id3154365\n"
+"help.text"
+msgid "SetAttr FileName As String, Attribute As Integer"
+msgstr ""
+
+#. 7arWD
+#: 03020414.xhp
+msgctxt ""
+"03020414.xhp\n"
+"hd_id3125863\n"
+"help.text"
+msgid "Parameters:"
+msgstr ""
+
+#. oQcEN
+#: 03020414.xhp
+msgctxt ""
+"03020414.xhp\n"
+"par_id3154909\n"
+"help.text"
+msgid "FileName: Name of the file, including the path, that you want to test attributes of. If you do not enter a path, <emph>SetAttr</emph> searches for the file in the current directory. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr ""
+
+#. x9krq
+#: 03020414.xhp
+msgctxt ""
+"03020414.xhp\n"
+"par_id3153192\n"
+"help.text"
+msgid "<emph>Attribute:</emph> Bit pattern defining the attributes that you want to set or to clear:"
+msgstr ""
+
+#. opako
+#: 03020414.xhp
+msgctxt ""
+"03020414.xhp\n"
+"par_id3145786\n"
+"help.text"
+msgid "<emph>Value</emph>"
+msgstr ""
+
+#. bt8p5
+#: 03020414.xhp
+msgctxt ""
+"03020414.xhp\n"
+"par_id051220170522586822\n"
+"help.text"
+msgid "Named constant"
+msgstr ""
+
+#. p7CiG
+#: 03020414.xhp
+msgctxt ""
+"03020414.xhp\n"
+"par_id051220170522583099\n"
+"help.text"
+msgid "Value"
+msgstr ""
+
+#. R27uW
+#: 03020414.xhp
+msgctxt ""
+"03020414.xhp\n"
+"par_id051220170522583818\n"
+"help.text"
+msgid "Definition"
+msgstr ""
+
+#. aYBDx
+#: 03020414.xhp
+msgctxt ""
+"03020414.xhp\n"
+"par_id3147349\n"
+"help.text"
+msgid "Normal files."
+msgstr ""
+
+#. 96HgG
+#: 03020414.xhp
+msgctxt ""
+"03020414.xhp\n"
+"par_id3147434\n"
+"help.text"
+msgid "Read-only files."
+msgstr ""
+
+#. 8YxrM
+#: 03020414.xhp
+msgctxt ""
+"03020414.xhp\n"
+"par_id051220170546544550\n"
+"help.text"
+msgid "Hidden file"
+msgstr ""
+
+#. fEQi9
+#: 03020414.xhp
+msgctxt ""
+"03020414.xhp\n"
+"par_id3153093\n"
+"help.text"
+msgid "You can set multiple attributes by combining the respective values with a logic OR statement."
+msgstr ""
+
+#. aGseb
+#: 03020414.xhp
+msgctxt ""
+"03020414.xhp\n"
+"hd_id3147434\n"
+"help.text"
+msgid "Example:"
+msgstr ""
+
+#. CUAJR
+#: 03020414.xhp
+msgctxt ""
+"03020414.xhp\n"
+"par_id3148645\n"
+"help.text"
+msgid "On Error GoTo ErrorHandler ' Define target for error handler"
+msgstr ""
+
+#. MCJgJ
+#: 03020415.xhp
+msgctxt ""
+"03020415.xhp\n"
+"tit\n"
+"help.text"
+msgid "FileExists Function"
+msgstr ""
+
+#. XS8eA
+#: 03020415.xhp
+msgctxt ""
+"03020415.xhp\n"
+"bm_id3148946\n"
+"help.text"
+msgid "<bookmark_value>FileExists function</bookmark_value>"
+msgstr ""
+
+#. BM9CV
+#: 03020415.xhp
+msgctxt ""
+"03020415.xhp\n"
+"hd_id3148946\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03020415.xhp\" name=\"FileExists Function\">FileExists Function</link>"
+msgstr ""
+
+#. FkmEu
+#: 03020415.xhp
+msgctxt ""
+"03020415.xhp\n"
+"par_id3153361\n"
+"help.text"
+msgid "Determines if a file or a directory is available on the data medium."
+msgstr ""
+
+#. YoaeH
+#: 03020415.xhp
+msgctxt ""
+"03020415.xhp\n"
+"hd_id3150447\n"
+"help.text"
+msgid "Syntax:"
+msgstr ""
+
+#. Tvkos
+#: 03020415.xhp
+msgctxt ""
+"03020415.xhp\n"
+"par_id3154685\n"
+"help.text"
+msgid "FileExists(FileName As String | DirectoryName As String)"
+msgstr ""
+
+#. iTkt5
+#: 03020415.xhp
+msgctxt ""
+"03020415.xhp\n"
+"hd_id3154126\n"
+"help.text"
+msgid "Return value:"
+msgstr ""
+
+#. 5BiAv
+#: 03020415.xhp
+msgctxt ""
+"03020415.xhp\n"
+"par_id3150769\n"
+"help.text"
+msgid "Bool"
+msgstr ""
+
+#. FZhAY
+#: 03020415.xhp
+msgctxt ""
+"03020415.xhp\n"
+"hd_id3153770\n"
+"help.text"
+msgid "Parameters:"
+msgstr ""
+
+#. 4qmwy
+#: 03020415.xhp
+msgctxt ""
+"03020415.xhp\n"
+"par_id3147349\n"
+"help.text"
+msgid "FileName | DirectoryName: Any string expression that contains an unambiguous file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr ""
+
+#. uHp57
+#: 03020415.xhp
+msgctxt ""
+"03020415.xhp\n"
+"hd_id3149664\n"
+"help.text"
+msgid "Example:"
+msgstr ""
+
+#. hNXJV
+#: 03030000.xhp
+msgctxt ""
+"03030000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Date and Time Functions"
+msgstr ""
+
+#. gJne8
+#: 03030000.xhp
+msgctxt ""
+"03030000.xhp\n"
+"hd_id3150502\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03030000.xhp\" name=\"Date and Time Functions\">Date and Time Functions</link>"
+msgstr ""
+
+#. UjGFG
+#: 03030000.xhp
+msgctxt ""
+"03030000.xhp\n"
+"par_id3153255\n"
+"help.text"
+msgid "Use the statements and functions described here to perform date and time calculations."
+msgstr ""
+
+#. qCdga
+#: 03030000.xhp
+msgctxt ""
+"03030000.xhp\n"
+"par_id3152363\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 ""
+
+#. PDVLC
+#: 03030000.xhp
+msgctxt ""
+"03030000.xhp\n"
+"par_id3151054\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 ""
+
+#. BhDhb
+#: 03030100.xhp
+msgctxt ""
+"03030100.xhp\n"
+"tit\n"
+"help.text"
+msgid "Converting Date Values"
+msgstr ""
+
+#. EzFNZ
+#: 03030100.xhp
+msgctxt ""
+"03030100.xhp\n"
+"hd_id3147573\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03030100.xhp\" name=\"Converting Date Values\">Converting Date Values</link>"
+msgstr ""
+
+#. mtRPg
+#: 03030100.xhp
+msgctxt ""
+"03030100.xhp\n"
+"par_id3154760\n"
+"help.text"
+msgid "The following functions convert date values to calculable numbers and back."
+msgstr ""
+
+#. QwmCA
+#: 03030101.xhp
+msgctxt ""
+"03030101.xhp\n"
+"tit\n"
+"help.text"
+msgid "DateSerial Function"
+msgstr ""
+
+#. x5w6J
+#: 03030101.xhp
+msgctxt ""
+"03030101.xhp\n"
+"bm_id3157896\n"
+"help.text"
+msgid "<bookmark_value>DateSerial function</bookmark_value>"
+msgstr ""
+
+#. A5cpz
+#: 03030101.xhp
+msgctxt ""
+"03030101.xhp\n"
+"hd_id381619878817271\n"
+"help.text"
+msgid "<variable id=\"DateSerial_H1\"><link href=\"text/sbasic/shared/03030101.xhp\" name=\"DateSerial Function\">DateSerial Function</link></variable>"
+msgstr ""
+
+#. d3jbM
+#: 03030101.xhp
+msgctxt ""
+"03030101.xhp\n"
+"par_id3143267\n"
+"help.text"
+msgid "Returns a <emph>Date</emph> value for a specified year, month, and day."
+msgstr ""
+
+#. 5G7kZ
+#: 03030101.xhp
+msgctxt ""
+"03030101.xhp\n"
+"par_id3149670\n"
+"help.text"
+msgid "DateSerial (year, month, day)"
+msgstr ""
+
+#. xroUB
+#: 03030101.xhp
+msgctxt ""
+"03030101.xhp\n"
+"par_id3150398\n"
+"help.text"
+msgid "Date"
+msgstr ""
+
+#. 8SLdR
+#: 03030101.xhp
+msgctxt ""
+"03030101.xhp\n"
+"par_id3147229\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 ""
+
+#. mBPGA
+#: 03030101.xhp
+msgctxt ""
+"03030101.xhp\n"
+"par_id3156280\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 ""
+
+#. nbxJZ
+#: 03030101.xhp
+msgctxt ""
+"03030101.xhp\n"
+"par_id3151043\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 ""
+
+#. cFoY9
+#: 03030101.xhp
+msgctxt ""
+"03030101.xhp\n"
+"par_id3161832\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 ""
+
+#. fCisT
+#: 03030101.xhp
+msgctxt ""
+"03030101.xhp\n"
+"par_id3155306\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 ""
+
+#. sBLTY
+#: 03030101.xhp
+msgctxt ""
+"03030101.xhp\n"
+"par_id3152576\n"
+"help.text"
+msgid "If a date is defined that lies outside of the accepted range, $[officename] Basic returns an error message."
+msgstr ""
+
+#. aaEE8
+#: 03030101.xhp
+msgctxt ""
+"03030101.xhp\n"
+"par_id3149481\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 ""
+
+#. X45Uf
+#: 03030101.xhp
+msgctxt ""
+"03030101.xhp\n"
+"par_id3154942\n"
+"help.text"
+msgid "MsgBox lDate ' returns 23476"
+msgstr ""
+
+#. aKdpv
+#: 03030101.xhp
+msgctxt ""
+"03030101.xhp\n"
+"par_id3151074\n"
+"help.text"
+msgid "MsgBox sDate ' returns 04/09/1964"
+msgstr ""
+
+#. XbeX6
+#: 03030102.xhp
+msgctxt ""
+"03030102.xhp\n"
+"tit\n"
+"help.text"
+msgid "DateValue Function"
+msgstr ""
+
+#. nYDEe
+#: 03030102.xhp
+msgctxt ""
+"03030102.xhp\n"
+"bm_id3156344\n"
+"help.text"
+msgid "<bookmark_value>DateValue function</bookmark_value>"
+msgstr ""
+
+#. mELDZ
+#: 03030102.xhp
+msgctxt ""
+"03030102.xhp\n"
+"hd_id3156344\n"
+"help.text"
+msgid "<variable id=\"DateValue_H1\"><link href=\"text/sbasic/shared/03030102.xhp\" name=\"DateValue Function\">DateValue Function</link></variable>"
+msgstr ""
+
+#. CDPDz
+#: 03030102.xhp
+msgctxt ""
+"03030102.xhp\n"
+"par_id3150542\n"
+"help.text"
+msgid "Returns a <emph>Date</emph> object from a string representing a date."
+msgstr ""
+
+#. Svwc6
+#: 03030102.xhp
+msgctxt ""
+"03030102.xhp\n"
+"par_id671643046319326\n"
+"help.text"
+msgid "The returned object is represented internally as a single numeric value corresponding to the specified date. This value can be used to calculate the number of days between two dates."
+msgstr ""
+
+#. DCJAK
+#: 03030102.xhp
+msgctxt ""
+"03030102.xhp\n"
+"par_id3154910\n"
+"help.text"
+msgid "DateValue(date As String)"
+msgstr ""
+
+#. rK8mE
+#: 03030102.xhp
+msgctxt ""
+"03030102.xhp\n"
+"par_id3153770\n"
+"help.text"
+msgid "<emph>date</emph>: A string that contains the date that will be converted to a <emph>Date</emph> object."
+msgstr ""
+
+#. fAM5v
+#: 03030102.xhp
+msgctxt ""
+"03030102.xhp\n"
+"par_id841643046880968\n"
+"help.text"
+msgid "The string passed to <literal>DateValue</literal> must be expressed in one of the date formats defined by your locale setting (see <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - Language Settings - Languages</menuitem>) or using the ISO date format \"yyyy-mm-dd\" (year, month and day separated by hyphens)."
+msgstr ""
+
+#. aGJzN
+#: 03030102.xhp
+msgctxt ""
+"03030102.xhp\n"
+"bas_id461643047301827\n"
+"help.text"
+msgid "' Prints the localized date"
+msgstr ""
+
+#. tSeu3
+#: 03030102.xhp
+msgctxt ""
+"03030102.xhp\n"
+"bas_id616430473023063\n"
+"help.text"
+msgid "' Extracts the year, month and day from the date object"
+msgstr ""
+
+#. NkfKq
+#: 03030102.xhp
+msgctxt ""
+"03030102.xhp\n"
+"bas_id601643047303420\n"
+"help.text"
+msgid "' Prints the numeric value corresponding to the date (as Long type)"
+msgstr ""
+
+#. wDviP
+#: 03030103.xhp
+msgctxt ""
+"03030103.xhp\n"
+"tit\n"
+"help.text"
+msgid "Day Function"
+msgstr ""
+
+#. 8iHxF
+#: 03030103.xhp
+msgctxt ""
+"03030103.xhp\n"
+"bm_id3153345\n"
+"help.text"
+msgid "<bookmark_value>Day function</bookmark_value>"
+msgstr ""
+
+#. fTDhy
+#: 03030103.xhp
+msgctxt ""
+"03030103.xhp\n"
+"hd_id3153345\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03030103.xhp\" name=\"Day Function\">Day Function</link>"
+msgstr ""
+
+#. BBAea
+#: 03030103.xhp
+msgctxt ""
+"03030103.xhp\n"
+"par_id3147560\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 ""
+
+#. tgk7D
+#: 03030103.xhp
+msgctxt ""
+"03030103.xhp\n"
+"hd_id3149456\n"
+"help.text"
+msgid "Syntax:"
+msgstr ""
+
+#. QQJYU
+#: 03030103.xhp
+msgctxt ""
+"03030103.xhp\n"
+"par_id3150358\n"
+"help.text"
+msgid "Day (Number)"
+msgstr ""
+
+#. BpEUZ
+#: 03030103.xhp
+msgctxt ""
+"03030103.xhp\n"
+"hd_id3148798\n"
+"help.text"
+msgid "Return value:"
+msgstr ""
+
+#. SYVzg
+#: 03030103.xhp
+msgctxt ""
+"03030103.xhp\n"
+"par_id3125865\n"
+"help.text"
+msgid "Integer"
+msgstr ""
+
+#. 32kHm
+#: 03030103.xhp
+msgctxt ""
+"03030103.xhp\n"
+"hd_id3150448\n"
+"help.text"
+msgid "Parameters:"
+msgstr ""
+
+#. aJv3m
+#: 03030103.xhp
+msgctxt ""
+"03030103.xhp\n"
+"par_id3156423\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 ""
+
+#. YbrQA
+#: 03030103.xhp
+msgctxt ""
+"03030103.xhp\n"
+"par_id3145786\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 ""
+
+#. kmmNy
+#: 03030103.xhp
+msgctxt ""
+"03030103.xhp\n"
+"par_id3153190\n"
+"help.text"
+msgid "returns the value 20."
+msgstr ""
+
+#. g9Ecp
+#: 03030103.xhp
+msgctxt ""
+"03030103.xhp\n"
+"hd_id3149481\n"
+"help.text"
+msgid "Example:"
+msgstr ""
+
+#. m9Xv4
+#: 03030103.xhp
+msgctxt ""
+"03030103.xhp\n"
+"par_id3149260\n"
+"help.text"
+msgid "Print \"Day \" & Day(DateSerial(1994, 12, 20)) & \" of the month\""
+msgstr ""
+
+#. PxXw4
+#: 03030104.xhp
+msgctxt ""
+"03030104.xhp\n"
+"tit\n"
+"help.text"
+msgid "Month Function"
+msgstr ""
+
+#. 2FAwW
+#: 03030104.xhp
+msgctxt ""
+"03030104.xhp\n"
+"bm_id3153127\n"
+"help.text"
+msgid "<bookmark_value>Month function</bookmark_value>"
+msgstr ""
+
+#. dZKyL
+#: 03030104.xhp
+msgctxt ""
+"03030104.xhp\n"
+"hd_id3153127\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03030104.xhp\" name=\"Month Function\">Month Function</link>"
+msgstr ""
+
+#. fCRok
+#: 03030104.xhp
+msgctxt ""
+"03030104.xhp\n"
+"par_id3148550\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 ""
+
+#. Y8WeR
+#: 03030104.xhp
+msgctxt ""
+"03030104.xhp\n"
+"hd_id3145068\n"
+"help.text"
+msgid "Syntax:"
+msgstr ""
+
+#. gEYXb
+#: 03030104.xhp
+msgctxt ""
+"03030104.xhp\n"
+"par_id3150398\n"
+"help.text"
+msgid "Month (Number)"
+msgstr ""
+
+#. SiGxe
+#: 03030104.xhp
+msgctxt ""
+"03030104.xhp\n"
+"hd_id3154366\n"
+"help.text"
+msgid "Return value:"
+msgstr ""
+
+#. psrUG
+#: 03030104.xhp
+msgctxt ""
+"03030104.xhp\n"
+"par_id3154125\n"
+"help.text"
+msgid "Integer"
+msgstr ""
+
+#. CPZNo
+#: 03030104.xhp
+msgctxt ""
+"03030104.xhp\n"
+"hd_id3150768\n"
+"help.text"
+msgid "Parameters:"
+msgstr ""
+
+#. KdzLB
+#: 03030104.xhp
+msgctxt ""
+"03030104.xhp\n"
+"par_id3156423\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 ""
+
+#. SHhrH
+#: 03030104.xhp
+msgctxt ""
+"03030104.xhp\n"
+"par_id3153770\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 ""
+
+#. RcBtS
+#: 03030104.xhp
+msgctxt ""
+"03030104.xhp\n"
+"par_id3145366\n"
+"help.text"
+msgid "returns the value 12."
+msgstr ""
+
+#. F6tiW
+#: 03030104.xhp
+msgctxt ""
+"03030104.xhp\n"
+"hd_id3146923\n"
+"help.text"
+msgid "Example:"
+msgstr ""
+
+#. JBGGA
+#: 03030104.xhp
+msgctxt ""
+"03030104.xhp\n"
+"par_id3149664\n"
+"help.text"
+msgid "MsgBox \"\" & Month(Now) ,64,\"The current month\""
+msgstr ""
+
+#. 7rKwD
+#: 03030105.xhp
+msgctxt ""
+"03030105.xhp\n"
+"tit\n"
+"help.text"
+msgid "WeekDay Function"
+msgstr ""
+
+#. fAhEB
+#: 03030105.xhp
+msgctxt ""
+"03030105.xhp\n"
+"bm_id3153127\n"
+"help.text"
+msgid "<bookmark_value>WeekDay function</bookmark_value>"
+msgstr ""
+
+#. 5BQqf
+#: 03030105.xhp
+msgctxt ""
+"03030105.xhp\n"
+"hd_id3153127\n"
+"help.text"
+msgid "<variable id=\"WeekDay_H1\"><link href=\"text/sbasic/shared/03030105.xhp\" name=\"WeekDay Function\">WeekDay Function</link></variable>"
+msgstr ""
+
+#. knGHF
+#: 03030105.xhp
+msgctxt ""
+"03030105.xhp\n"
+"par_id3146795\n"
+"help.text"
+msgid "This function returns the number corresponding to the weekday represented by a serial date number that is generated by the <literal>DateSerial</literal> or the <literal>DateValue</literal> functions."
+msgstr ""
+
+#. mDEaF
+#: 03030105.xhp
+msgctxt ""
+"03030105.xhp\n"
+"par_id91620239579003\n"
+"help.text"
+msgid "This help page describes the <literal>WeekDay</literal> function used in Basic scripts. If you are interested in the <literal>WeekDay</literal> function used in %PRODUCTNAME Calc, refer to <link href=\"text/scalc/01/func_weekday.xhp\" name=\"WeekDay_Calc Function\">this help page</link>."
+msgstr ""
+
+#. Gq6UR
+#: 03030105.xhp
+msgctxt ""
+"03030105.xhp\n"
+"par_id3149655\n"
+"help.text"
+msgid "WeekDay (SerialDate, [FirstDayOfWeek])"
+msgstr ""
+
+#. XtUpe
+#: 03030105.xhp
+msgctxt ""
+"03030105.xhp\n"
+"par_id3151042\n"
+"help.text"
+msgid "<emph>SerialDate:</emph> Integer expression that contains the serial date number that is used to calculate the day of the week."
+msgstr ""
+
+#. NAuVs
+#: 03030105.xhp
+msgctxt ""
+"03030105.xhp\n"
+"par_id351619718411921\n"
+"help.text"
+msgid "<emph>FirstDayOfWeek:</emph> Integer value indicating which weekday should be considered as the first day of the week. The default value is <emph>0</emph>, meaning that the system locale settings are used to determine the first day of the week."
+msgstr ""
+
+#. rEWdW
+#: 03030105.xhp
+msgctxt ""
+"03030105.xhp\n"
+"par_id411619718769819\n"
+"help.text"
+msgid "The parameter <emph>FirstDayOfWeek</emph> accepts values ranging from 0 to 7. The table below describes the meaning of each possible value:"
+msgstr ""
+
+#. mXgMu
+#: 03030105.xhp
+msgctxt ""
+"03030105.xhp\n"
+"par_id651619719561092\n"
+"help.text"
+msgid "Value"
+msgstr ""
+
+#. PGZPg
+#: 03030105.xhp
+msgctxt ""
+"03030105.xhp\n"
+"par_id251619718816238\n"
+"help.text"
+msgid "VBA Constant"
+msgstr ""
+
+#. NHbqP
+#: 03030105.xhp
+msgctxt ""
+"03030105.xhp\n"
+"par_id711619718816238\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. zLssD
+#: 03030105.xhp
+msgctxt ""
+"03030105.xhp\n"
+"par_id521619718818972\n"
+"help.text"
+msgid "Use system locale settings"
+msgstr ""
+
+#. EWo2z
+#: 03030105.xhp
+msgctxt ""
+"03030105.xhp\n"
+"par_id581619719174897\n"
+"help.text"
+msgid "Sunday (default)"
+msgstr ""
+
+#. BHVEx
+#: 03030105.xhp
+msgctxt ""
+"03030105.xhp\n"
+"par_id581619719173258\n"
+"help.text"
+msgid "Monday"
+msgstr ""
+
+#. TFvid
+#: 03030105.xhp
+msgctxt ""
+"03030105.xhp\n"
+"par_id581619719174633\n"
+"help.text"
+msgid "Tuesday"
+msgstr ""
+
+#. fiXHk
+#: 03030105.xhp
+msgctxt ""
+"03030105.xhp\n"
+"par_id581619719173641\n"
+"help.text"
+msgid "Wednesday"
+msgstr ""
+
+#. A9CRq
+#: 03030105.xhp
+msgctxt ""
+"03030105.xhp\n"
+"par_id581619719170014\n"
+"help.text"
+msgid "Thursday"
+msgstr ""
+
+#. sBtM4
+#: 03030105.xhp
+msgctxt ""
+"03030105.xhp\n"
+"par_id581619719174271\n"
+"help.text"
+msgid "Friday"
+msgstr ""
+
+#. bXcCx
+#: 03030105.xhp
+msgctxt ""
+"03030105.xhp\n"
+"par_id581619719176055\n"
+"help.text"
+msgid "Saturday"
+msgstr ""
+
+#. BcGEp
+#: 03030105.xhp
+msgctxt ""
+"03030105.xhp\n"
+"par_id451619720094202\n"
+"help.text"
+msgid "The VBA constants listed above are only available if VBA support has been enabled. For more information, read the <link href=\"text/sbasic/shared/03103350.xhp\" name=\"VBASupport_Statement\">VBASupport Statement</link> help page."
+msgstr ""
+
+#. CPXVo
+#: 03030105.xhp
+msgctxt ""
+"03030105.xhp\n"
+"par_id3154125\n"
+"help.text"
+msgid "Integer"
+msgstr ""
+
+#. m2DWj
+#: 03030105.xhp
+msgctxt ""
+"03030105.xhp\n"
+"par_id3159254\n"
+"help.text"
+msgid "The following example uses the function <literal>Now()</literal> to determine the current weekday."
+msgstr ""
+
+#. bR8LQ
+#: 03030105.xhp
+msgctxt ""
+"03030105.xhp\n"
+"par_id3148576\n"
+"help.text"
+msgid "' Return And display the day of the week"
+msgstr ""
+
+#. EXU4k
+#: 03030105.xhp
+msgctxt ""
+"03030105.xhp\n"
+"par_id3151117\n"
+"help.text"
+msgid "Case 1: sDay=\"Sunday\""
+msgstr ""
+
+#. 5bXzA
+#: 03030105.xhp
+msgctxt ""
+"03030105.xhp\n"
+"par_id3153952\n"
+"help.text"
+msgid "Case 2: sDay=\"Monday\""
+msgstr ""
+
+#. MBZyU
+#: 03030105.xhp
+msgctxt ""
+"03030105.xhp\n"
+"par_id3153157\n"
+"help.text"
+msgid "Case 3: sDay=\"Tuesday\""
+msgstr ""
+
+#. Fzn6r
+#: 03030105.xhp
+msgctxt ""
+"03030105.xhp\n"
+"par_id3154942\n"
+"help.text"
+msgid "Case 4: sDay=\"Wednesday\""
+msgstr ""
+
+#. iRjNz
+#: 03030105.xhp
+msgctxt ""
+"03030105.xhp\n"
+"par_id3155416\n"
+"help.text"
+msgid "Case 5: sDay=\"Thursday\""
+msgstr ""
+
+#. 8Eaao
+#: 03030105.xhp
+msgctxt ""
+"03030105.xhp\n"
+"par_id3154015\n"
+"help.text"
+msgid "Case 6: sDay=\"Friday\""
+msgstr ""
+
+#. BGYpJ
+#: 03030105.xhp
+msgctxt ""
+"03030105.xhp\n"
+"par_id3153707\n"
+"help.text"
+msgid "Case 7: sDay=\"Saturday\""
+msgstr ""
+
+#. JPyAn
+#: 03030105.xhp
+msgctxt ""
+"03030105.xhp\n"
+"par_id3148993\n"
+"help.text"
+msgid "MsgBox \"\" + sDay,64,\"Today Is\""
+msgstr ""
+
+#. TtaXn
+#: 03030105.xhp
+msgctxt ""
+"03030105.xhp\n"
+"par_id891619721286262\n"
+"help.text"
+msgid "The following example illustrates the use <emph>FirstDayOfWeek</emph> parameter, assuming that Tuesday is the first day of the week."
+msgstr ""
+
+#. pRD7w
+#: 03030105.xhp
+msgctxt ""
+"03030105.xhp\n"
+"bas_id791619721724107\n"
+"help.text"
+msgid "' The date January 1st 2021 was a Friday"
+msgstr ""
+
+#. rnGiH
+#: 03030105.xhp
+msgctxt ""
+"03030105.xhp\n"
+"bas_id991619721724568\n"
+"help.text"
+msgid "' Prints \"6\" assuming Sunday is the first day of the week"
+msgstr ""
+
+#. mFYMA
+#: 03030105.xhp
+msgctxt ""
+"03030105.xhp\n"
+"bas_id31619721725024\n"
+"help.text"
+msgid "' Prints \"4\" assuming Tuesday is the first day of the week"
+msgstr ""
+
+#. EhPmt
+#: 03030106.xhp
+msgctxt ""
+"03030106.xhp\n"
+"tit\n"
+"help.text"
+msgid "Year Function"
+msgstr ""
+
+#. 72eDH
+#: 03030106.xhp
+msgctxt ""
+"03030106.xhp\n"
+"bm_id3148664\n"
+"help.text"
+msgid "<bookmark_value>Year function</bookmark_value>"
+msgstr ""
+
+#. 8DvUr
+#: 03030106.xhp
+msgctxt ""
+"03030106.xhp\n"
+"hd_id3148664\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03030106.xhp\" name=\"Year Function\">Year Function</link>"
+msgstr ""
+
+#. My6Uq
+#: 03030106.xhp
+msgctxt ""
+"03030106.xhp\n"
+"par_id3149655\n"
+"help.text"
+msgid "Returns the year from a serial date number that is generated by the DateSerial or the DateValue function."
+msgstr ""
+
+#. dgHna
+#: 03030106.xhp
+msgctxt ""
+"03030106.xhp\n"
+"hd_id3154125\n"
+"help.text"
+msgid "Syntax:"
+msgstr ""
+
+#. Dv5jP
+#: 03030106.xhp
+msgctxt ""
+"03030106.xhp\n"
+"par_id3147229\n"
+"help.text"
+msgid "Year (Number)"
+msgstr ""
+
+#. ZGf4A
+#: 03030106.xhp
+msgctxt ""
+"03030106.xhp\n"
+"hd_id3154685\n"
+"help.text"
+msgid "Return value:"
+msgstr ""
+
+#. B5gnw
+#: 03030106.xhp
+msgctxt ""
+"03030106.xhp\n"
+"par_id3153970\n"
+"help.text"
+msgid "Integer"
+msgstr ""
+
+#. E3cZS
+#: 03030106.xhp
+msgctxt ""
+"03030106.xhp\n"
+"hd_id3150440\n"
+"help.text"
+msgid "Parameters:"
+msgstr ""
+
+#. 93kLy
+#: 03030106.xhp
+msgctxt ""
+"03030106.xhp\n"
+"par_id3163712\n"
+"help.text"
+msgid "<emph>Number:</emph> Integer expression that contains the serial date number that is used to calculate the year."
+msgstr ""
+
+#. iJ8tY
+#: 03030106.xhp
+msgctxt ""
+"03030106.xhp\n"
+"par_id3152596\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 ""
+
+#. Ft597
+#: 03030106.xhp
+msgctxt ""
+"03030106.xhp\n"
+"par_id3149483\n"
+"help.text"
+msgid "returns the value 1994."
+msgstr ""
+
+#. Ms2Zi
+#: 03030106.xhp
+msgctxt ""
+"03030106.xhp\n"
+"hd_id3146985\n"
+"help.text"
+msgid "Example:"
+msgstr ""
+
+#. B5T4J
+#: 03030106.xhp
+msgctxt ""
+"03030106.xhp\n"
+"par_id3153363\n"
+"help.text"
+msgid "MsgBox \"\" & Year(Now) ,64,\"Current year\""
+msgstr ""
+
+#. FsDYs
+#: 03030107.xhp
+msgctxt ""
+"03030107.xhp\n"
+"tit\n"
+"help.text"
+msgid "CDateToIso Function"
+msgstr ""
+
+#. g3qQE
+#: 03030107.xhp
+msgctxt ""
+"03030107.xhp\n"
+"bm_id3150620\n"
+"help.text"
+msgid "<bookmark_value>CdateToIso function</bookmark_value>"
+msgstr ""
+
+#. i3HEH
+#: 03030107.xhp
+msgctxt ""
+"03030107.xhp\n"
+"hd_id3150620\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03030107.xhp\" name=\"CDateToIso Function\">CDateToIso Function</link>"
+msgstr ""
+
+#. YAouB
+#: 03030107.xhp
+msgctxt ""
+"03030107.xhp\n"
+"par_id3151097\n"
+"help.text"
+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 ""
+
+#. AJpft
+#: 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 ""
+
+#. 5vWAZ
+#: 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 ""
+
+#. FEACC
+#: 03030107.xhp
+msgctxt ""
+"03030107.xhp\n"
+"hd_id3159224\n"
+"help.text"
+msgid "Syntax:"
+msgstr ""
+
+#. cYDwU
+#: 03030107.xhp
+msgctxt ""
+"03030107.xhp\n"
+"par_id3149497\n"
+"help.text"
+msgid "CDateToIso(Number)"
+msgstr ""
+
+#. eBUAe
+#: 03030107.xhp
+msgctxt ""
+"03030107.xhp\n"
+"hd_id3152347\n"
+"help.text"
+msgid "Return value:"
+msgstr ""
+
+#. R2BPB
+#: 03030107.xhp
+msgctxt ""
+"03030107.xhp\n"
+"par_id3154422\n"
+"help.text"
+msgid "String"
+msgstr ""
+
+#. DBJN6
+#: 03030107.xhp
+msgctxt ""
+"03030107.xhp\n"
+"hd_id3147303\n"
+"help.text"
+msgid "Parameters:"
+msgstr ""
+
+#. KjLq7
+#: 03030107.xhp
+msgctxt ""
+"03030107.xhp\n"
+"par_id3145136\n"
+"help.text"
+msgid "<emph>Number:</emph> Integer that contains the serial date number."
+msgstr ""
+
+#. zuM6A
+#: 03030107.xhp
+msgctxt ""
+"03030107.xhp\n"
+"hd_id3147243\n"
+"help.text"
+msgid "Example:"
+msgstr ""
+
+#. e76ZY
+#: 03030107.xhp
+msgctxt ""
+"03030107.xhp\n"
+"par_id3153126\n"
+"help.text"
+msgid "MsgBox \"\" & CDateToIso(Now) ,64,\"ISO Date\""
+msgstr ""
+
+#. 2YY2W
+#: 03030108.xhp
+msgctxt ""
+"03030108.xhp\n"
+"tit\n"
+"help.text"
+msgid "CDateFromIso Function"
+msgstr ""
+
+#. bAPbG
+#: 03030108.xhp
+msgctxt ""
+"03030108.xhp\n"
+"bm_id3153127\n"
+"help.text"
+msgid "<bookmark_value>CdateFromIso function</bookmark_value>"
+msgstr ""
+
+#. R29ws
+#: 03030108.xhp
+msgctxt ""
+"03030108.xhp\n"
+"hd_id3153127\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03030108.xhp\" name=\"CDateFromIso Function\">CDateFromIso Function</link>"
+msgstr ""
+
+#. AaWgB
+#: 03030108.xhp
+msgctxt ""
+"03030108.xhp\n"
+"par_id3148550\n"
+"help.text"
+msgid "Returns the internal date number from a string that contains a date in ISO format (YYYYMMDD or YYYY-MM-DD)."
+msgstr ""
+
+#. GTCC6
+#: 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 ""
+
+#. ACdxD
+#: 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 ""
+
+#. CzhoN
+#: 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\">CDateToIso Function</link> to convert such date number to a string representation in the proleptic Gregorian calendar."
+msgstr ""
+
+#. xDmcF
+#: 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 ""
+
+#. DahpE
+#: 03030108.xhp
+msgctxt ""
+"03030108.xhp\n"
+"hd_id3148947\n"
+"help.text"
+msgid "Syntax:"
+msgstr ""
+
+#. aZBig
+#: 03030108.xhp
+msgctxt ""
+"03030108.xhp\n"
+"hd_id3154367\n"
+"help.text"
+msgid "Return value:"
+msgstr ""
+
+#. v2eb8
+#: 03030108.xhp
+msgctxt ""
+"03030108.xhp\n"
+"par_id3156212\n"
+"help.text"
+msgid "Internal date number"
+msgstr ""
+
+#. 6GARA
+#: 03030108.xhp
+msgctxt ""
+"03030108.xhp\n"
+"hd_id3125864\n"
+"help.text"
+msgid "Parameters:"
+msgstr ""
+
+#. qdGnq
+#: 03030108.xhp
+msgctxt ""
+"03030108.xhp\n"
+"par_id3154685\n"
+"help.text"
+msgid "<emph>String:</emph> A string that contains a date in ISO format."
+msgstr ""
+
+#. P8XYk
+#: 03030108.xhp
+msgctxt ""
+"03030108.xhp\n"
+"hd_id3150439\n"
+"help.text"
+msgid "Example:"
+msgstr ""
+
+#. SmbEw
+#: 03030108.xhp
+msgctxt ""
+"03030108.xhp\n"
+"par_id3146921\n"
+"help.text"
+msgid "return both 12/31/2002 in the date format of your system"
+msgstr ""
+
+#. WZcyq
+#: 03030110.xhp
+msgctxt ""
+"03030110.xhp\n"
+"tit\n"
+"help.text"
+msgid "DateAdd Function"
+msgstr ""
+
+#. PFNuR
+#: 03030110.xhp
+msgctxt ""
+"03030110.xhp\n"
+"bm_id6269417\n"
+"help.text"
+msgid "<bookmark_value>DateAdd function</bookmark_value>"
+msgstr ""
+
+#. asR26
+#: 03030110.xhp
+msgctxt ""
+"03030110.xhp\n"
+"par_idN10548\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03030110.xhp\">DateAdd Function</link>"
+msgstr ""
+
+#. HhA3U
+#: 03030110.xhp
+msgctxt ""
+"03030110.xhp\n"
+"par_idN10558\n"
+"help.text"
+msgid "Adds a date or time interval to a given date a number of times and returns the resulting date."
+msgstr ""
+
+#. YAQVF
+#: 03030110.xhp
+msgctxt ""
+"03030110.xhp\n"
+"par_idN1055F\n"
+"help.text"
+msgid "DateAdd (interval As String, number As Long, date As Date) As Date"
+msgstr ""
+
+#. Gt9cm
+#: 03030110.xhp
+msgctxt ""
+"03030110.xhp\n"
+"par_idN1061E\n"
+"help.text"
+msgid "Return value:"
+msgstr ""
+
+#. rHxFm
+#: 03030110.xhp
+msgctxt ""
+"03030110.xhp\n"
+"par_idN10622\n"
+"help.text"
+msgid "A Variant containing a date."
+msgstr ""
+
+#. q4zev
+#: 03030110.xhp
+msgctxt ""
+"03030110.xhp\n"
+"par_idN10629\n"
+"help.text"
+msgid "<emph>interval</emph> - A string expression from the following table, specifying the date or time interval."
+msgstr ""
+
+#. yKYH5
+#: 03030110.xhp
+msgctxt ""
+"03030110.xhp\n"
+"par_idN10636\n"
+"help.text"
+msgid "interval (string value)"
+msgstr ""
+
+#. BrkDy
+#: 03030110.xhp
+msgctxt ""
+"03030110.xhp\n"
+"par_idN1063C\n"
+"help.text"
+msgid "Explanation"
+msgstr ""
+
+#. QCaFK
+#: 03030110.xhp
+msgctxt ""
+"03030110.xhp\n"
+"par_idN10643\n"
+"help.text"
+msgid "yyyy"
+msgstr ""
+
+#. uCMGD
+#: 03030110.xhp
+msgctxt ""
+"03030110.xhp\n"
+"par_idN10649\n"
+"help.text"
+msgid "Year"
+msgstr ""
+
+#. BTQbh
+#: 03030110.xhp
+msgctxt ""
+"03030110.xhp\n"
+"par_idN10650\n"
+"help.text"
+msgid "q"
+msgstr ""
+
+#. aAbFF
+#: 03030110.xhp
+msgctxt ""
+"03030110.xhp\n"
+"par_idN10656\n"
+"help.text"
+msgid "Quarter"
+msgstr ""
+
+#. khy6d
+#: 03030110.xhp
+msgctxt ""
+"03030110.xhp\n"
+"par_idN1065D\n"
+"help.text"
+msgid "m"
+msgstr ""
+
+#. DnwYQ
+#: 03030110.xhp
+msgctxt ""
+"03030110.xhp\n"
+"par_idN10663\n"
+"help.text"
+msgid "Month"
+msgstr ""
+
+#. 2kcLi
+#: 03030110.xhp
+msgctxt ""
+"03030110.xhp\n"
+"par_idN1066A\n"
+"help.text"
+msgid "y"
+msgstr ""
+
+#. 5ceAL
+#: 03030110.xhp
+msgctxt ""
+"03030110.xhp\n"
+"par_idN10670\n"
+"help.text"
+msgid "Day of year"
+msgstr ""
+
+#. gDYqD
+#: 03030110.xhp
+msgctxt ""
+"03030110.xhp\n"
+"par_idN10677\n"
+"help.text"
+msgid "w"
+msgstr ""
+
+#. zMz7B
+#: 03030110.xhp
+msgctxt ""
+"03030110.xhp\n"
+"par_idN1067D\n"
+"help.text"
+msgid "Weekday"
+msgstr ""
+
+#. SGGGX
+#: 03030110.xhp
+msgctxt ""
+"03030110.xhp\n"
+"par_idN10684\n"
+"help.text"
+msgid "ww"
+msgstr ""
+
+#. Wknbt
+#: 03030110.xhp
+msgctxt ""
+"03030110.xhp\n"
+"par_idN1068A\n"
+"help.text"
+msgid "Week of year"
+msgstr ""
+
+#. AodTF
+#: 03030110.xhp
+msgctxt ""
+"03030110.xhp\n"
+"par_idN10691\n"
+"help.text"
+msgid "d"
+msgstr ""
+
+#. QUMAr
+#: 03030110.xhp
+msgctxt ""
+"03030110.xhp\n"
+"par_idN10697\n"
+"help.text"
+msgid "Day"
+msgstr ""
+
+#. DtMSq
+#: 03030110.xhp
+msgctxt ""
+"03030110.xhp\n"
+"par_idN1069E\n"
+"help.text"
+msgid "h"
+msgstr ""
+
+#. bW8VY
+#: 03030110.xhp
+msgctxt ""
+"03030110.xhp\n"
+"par_idN106A4\n"
+"help.text"
+msgid "Hour"
+msgstr ""
+
+#. EFdrN
+#: 03030110.xhp
+msgctxt ""
+"03030110.xhp\n"
+"par_idN106AB\n"
+"help.text"
+msgid "n"
+msgstr ""
+
+#. E7sMZ
+#: 03030110.xhp
+msgctxt ""
+"03030110.xhp\n"
+"par_idN106B1\n"
+"help.text"
+msgid "Minute"
+msgstr ""
+
+#. gpxE5
+#: 03030110.xhp
+msgctxt ""
+"03030110.xhp\n"
+"par_idN106B8\n"
+"help.text"
+msgid "s"
+msgstr ""
+
+#. saACB
+#: 03030110.xhp
+msgctxt ""
+"03030110.xhp\n"
+"par_idN106BE\n"
+"help.text"
+msgid "Second"
+msgstr ""
+
+#. tBwEg
+#: 03030110.xhp
+msgctxt ""
+"03030110.xhp\n"
+"par_idN106C1\n"
+"help.text"
+msgid "<emph>number</emph> - A numerical expression specifying how many times the <literal>interval</literal> value will be added when positive or subtracted when negative."
+msgstr ""
+
+#. 5LaBf
+#: 03030110.xhp
+msgctxt ""
+"03030110.xhp\n"
+"par_idN106C4\n"
+"help.text"
+msgid "<emph>date</emph> - A given date or the name of a Variant variable containing a date. The <literal>interval</literal> value will be added <literal>number</literal> times to this date."
+msgstr ""
+
+#. kvCPX
+#: 03030111.xhp
+msgctxt ""
+"03030111.xhp\n"
+"tit\n"
+"help.text"
+msgid "CDateToUnoDate Function"
+msgstr ""
+
+#. A6iFX
+#: 03030111.xhp
+msgctxt ""
+"03030111.xhp\n"
+"bm_id3150620\n"
+"help.text"
+msgid "<bookmark_value>CDateToUnoDate function</bookmark_value>"
+msgstr ""
+
+#. Fh47U
+#: 03030111.xhp
+msgctxt ""
+"03030111.xhp\n"
+"hd_id3150620\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03030111.xhp\" name=\"CDateToUnoDate Function\">CDateToUnoDate Function</link>"
+msgstr ""
+
+#. xtYRQ
+#: 03030111.xhp
+msgctxt ""
+"03030111.xhp\n"
+"par_id3151097\n"
+"help.text"
+msgid "Returns the date as a UNO com.sun.star.util.Date struct."
+msgstr ""
+
+#. WbEXn
+#: 03030111.xhp
+msgctxt ""
+"03030111.xhp\n"
+"hd_id3159224\n"
+"help.text"
+msgid "Syntax:"
+msgstr ""
+
+#. cPRUh
+#: 03030111.xhp
+msgctxt ""
+"03030111.xhp\n"
+"par_id3149497\n"
+"help.text"
+msgid "CDateToUnoDate(aDate)"
+msgstr ""
+
+#. iGwfJ
+#: 03030111.xhp
+msgctxt ""
+"03030111.xhp\n"
+"hd_id3152347\n"
+"help.text"
+msgid "Return value:"
+msgstr ""
+
+#. 2okBg
+#: 03030111.xhp
+msgctxt ""
+"03030111.xhp\n"
+"par_id3154422\n"
+"help.text"
+msgid "com.sun.star.util.Date"
+msgstr ""
+
+#. RgSmL
+#: 03030111.xhp
+msgctxt ""
+"03030111.xhp\n"
+"hd_id3147303\n"
+"help.text"
+msgid "Parameters:"
+msgstr ""
+
+#. EBWkD
+#: 03030111.xhp
+msgctxt ""
+"03030111.xhp\n"
+"par_id3145136\n"
+"help.text"
+msgid "<emph>aDate:</emph> Date to convert"
+msgstr ""
+
+#. joa6W
+#: 03030111.xhp
+msgctxt ""
+"03030111.xhp\n"
+"hd_id3147243\n"
+"help.text"
+msgid "Example:"
+msgstr ""
+
+#. RGFPj
+#: 03030112.xhp
+msgctxt ""
+"03030112.xhp\n"
+"tit\n"
+"help.text"
+msgid "CDateFromUnoDate Function"
+msgstr ""
+
+#. 8aEAu
+#: 03030112.xhp
+msgctxt ""
+"03030112.xhp\n"
+"bm_id3150620\n"
+"help.text"
+msgid "<bookmark_value>CDateFromUnoDate function</bookmark_value>"
+msgstr ""
+
+#. wbhZD
+#: 03030112.xhp
+msgctxt ""
+"03030112.xhp\n"
+"hd_id3150620\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03030112.xhp\" name=\"CDateFromUnoDate Function\">CDateFromUnoDate Function</link>"
+msgstr ""
+
+#. DsANV
+#: 03030112.xhp
+msgctxt ""
+"03030112.xhp\n"
+"par_id3151097\n"
+"help.text"
+msgid "Converts a UNO com.sun.star.util.Date struct to a Date value."
+msgstr ""
+
+#. 4Fnkp
+#: 03030112.xhp
+msgctxt ""
+"03030112.xhp\n"
+"hd_id3159224\n"
+"help.text"
+msgid "Syntax:"
+msgstr ""
+
+#. B3CDo
+#: 03030112.xhp
+msgctxt ""
+"03030112.xhp\n"
+"hd_id3152347\n"
+"help.text"
+msgid "Return value:"
+msgstr ""
+
+#. CNyaj
+#: 03030112.xhp
+msgctxt ""
+"03030112.xhp\n"
+"par_id3154422\n"
+"help.text"
+msgid "Date"
+msgstr ""
+
+#. zDinD
+#: 03030112.xhp
+msgctxt ""
+"03030112.xhp\n"
+"hd_id3147303\n"
+"help.text"
+msgid "Parameters:"
+msgstr ""
+
+#. rimfX
+#: 03030112.xhp
+msgctxt ""
+"03030112.xhp\n"
+"par_id3145136\n"
+"help.text"
+msgid "<emph>aDate:</emph> Date to convert"
+msgstr ""
+
+#. PJg82
+#: 03030112.xhp
+msgctxt ""
+"03030112.xhp\n"
+"hd_id3147243\n"
+"help.text"
+msgid "Example:"
+msgstr ""
+
+#. bku37
+#: 03030113.xhp
+msgctxt ""
+"03030113.xhp\n"
+"tit\n"
+"help.text"
+msgid "CDateToUnoTime Function"
+msgstr ""
+
+#. KkJ4E
+#: 03030113.xhp
+msgctxt ""
+"03030113.xhp\n"
+"bm_id3150620\n"
+"help.text"
+msgid "<bookmark_value>CDateToUnoTime function</bookmark_value>"
+msgstr ""
+
+#. GkSRQ
+#: 03030113.xhp
+msgctxt ""
+"03030113.xhp\n"
+"hd_id3150620\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03030113.xhp\" name=\"CDateToUnoTime Function\">CDateToUnoTime Function</link>"
+msgstr ""
+
+#. 6QMEs
+#: 03030113.xhp
+msgctxt ""
+"03030113.xhp\n"
+"par_id3151097\n"
+"help.text"
+msgid "Returns the time part of the date as a UNO com.sun.star.util.Time struct."
+msgstr ""
+
+#. x2CRq
+#: 03030113.xhp
+msgctxt ""
+"03030113.xhp\n"
+"hd_id3159224\n"
+"help.text"
+msgid "Syntax:"
+msgstr ""
+
+#. ABYMv
+#: 03030113.xhp
+msgctxt ""
+"03030113.xhp\n"
+"par_id3149497\n"
+"help.text"
+msgid "CDateToUnoTime(aDate)"
+msgstr ""
+
+#. N7qeB
+#: 03030113.xhp
+msgctxt ""
+"03030113.xhp\n"
+"hd_id3152347\n"
+"help.text"
+msgid "Return value:"
+msgstr ""
+
+#. LcRZR
+#: 03030113.xhp
+msgctxt ""
+"03030113.xhp\n"
+"par_id3154422\n"
+"help.text"
+msgid "com.sun.star.util.Time"
+msgstr ""
+
+#. ctAU3
+#: 03030113.xhp
+msgctxt ""
+"03030113.xhp\n"
+"hd_id3147303\n"
+"help.text"
+msgid "Parameters:"
+msgstr ""
+
+#. eSHr6
+#: 03030113.xhp
+msgctxt ""
+"03030113.xhp\n"
+"par_id3145136\n"
+"help.text"
+msgid "<emph>aDate:</emph> Date value to convert"
+msgstr ""
+
+#. svm7U
+#: 03030113.xhp
+msgctxt ""
+"03030113.xhp\n"
+"hd_id3147243\n"
+"help.text"
+msgid "Example:"
+msgstr ""
+
+#. oWdT3
+#: 03030114.xhp
+msgctxt ""
+"03030114.xhp\n"
+"tit\n"
+"help.text"
+msgid "CDateFromUnoTime Function"
+msgstr ""
+
+#. X9PEB
+#: 03030114.xhp
+msgctxt ""
+"03030114.xhp\n"
+"bm_id3150620\n"
+"help.text"
+msgid "<bookmark_value>CDateFromUnoTime function</bookmark_value>"
+msgstr ""
+
+#. MErZW
+#: 03030114.xhp
+msgctxt ""
+"03030114.xhp\n"
+"hd_id3150620\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03030114.xhp\" name=\"CDateFromUnoTime Function\">CDateFromUnoTime Function</link>"
+msgstr ""
+
+#. QfMkH
+#: 03030114.xhp
+msgctxt ""
+"03030114.xhp\n"
+"par_id3151097\n"
+"help.text"
+msgid "Converts a UNO com.sun.star.util.Time struct to a Date value."
+msgstr ""
+
+#. EDnPm
+#: 03030114.xhp
+msgctxt ""
+"03030114.xhp\n"
+"hd_id3159224\n"
+"help.text"
+msgid "Syntax:"
+msgstr ""
+
+#. EQoqi
+#: 03030114.xhp
+msgctxt ""
+"03030114.xhp\n"
+"par_id3149497\n"
+"help.text"
+msgid "CDateFromUnoTime(aTime)"
+msgstr ""
+
+#. QreGF
+#: 03030114.xhp
+msgctxt ""
+"03030114.xhp\n"
+"hd_id3152347\n"
+"help.text"
+msgid "Return value:"
+msgstr ""
+
+#. 4BCyg
+#: 03030114.xhp
+msgctxt ""
+"03030114.xhp\n"
+"par_id3154422\n"
+"help.text"
+msgid "Date"
+msgstr ""
+
+#. RiT8L
+#: 03030114.xhp
+msgctxt ""
+"03030114.xhp\n"
+"hd_id3147303\n"
+"help.text"
+msgid "Parameters:"
+msgstr ""
+
+#. 3DkpD
+#: 03030114.xhp
+msgctxt ""
+"03030114.xhp\n"
+"par_id3145136\n"
+"help.text"
+msgid "<emph>aTime:</emph> Time to convert"
+msgstr ""
+
+#. WLDyi
+#: 03030114.xhp
+msgctxt ""
+"03030114.xhp\n"
+"hd_id3147243\n"
+"help.text"
+msgid "Example:"
+msgstr ""
+
+#. R5G5B
+#: 03030115.xhp
+msgctxt ""
+"03030115.xhp\n"
+"tit\n"
+"help.text"
+msgid "CDateToUnoDateTime Function"
+msgstr ""
+
+#. hbeE8
+#: 03030115.xhp
+msgctxt ""
+"03030115.xhp\n"
+"bm_id3150620\n"
+"help.text"
+msgid "<bookmark_value>CDateToUnoDateTime function</bookmark_value>"
+msgstr ""
+
+#. PN5Bq
+#: 03030115.xhp
+msgctxt ""
+"03030115.xhp\n"
+"hd_id3150620\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03030115.xhp\" name=\"CDateToUnoDateTime Function\">CDateToUnoDateTime Function</link>"
+msgstr ""
+
+#. aJkaU
+#: 03030115.xhp
+msgctxt ""
+"03030115.xhp\n"
+"par_id3151097\n"
+"help.text"
+msgid "Returns the time part of the date as a UNO com.sun.star.util.DateTime struct."
+msgstr ""
+
+#. iJCik
+#: 03030115.xhp
+msgctxt ""
+"03030115.xhp\n"
+"hd_id3159224\n"
+"help.text"
+msgid "Syntax:"
+msgstr ""
+
+#. TMAGP
+#: 03030115.xhp
+msgctxt ""
+"03030115.xhp\n"
+"par_id3149497\n"
+"help.text"
+msgid "CDateToUnoDateTime(aDate)"
+msgstr ""
+
+#. 9vAhc
+#: 03030115.xhp
+msgctxt ""
+"03030115.xhp\n"
+"hd_id3152347\n"
+"help.text"
+msgid "Return value:"
+msgstr ""
+
+#. 9TBL2
+#: 03030115.xhp
+msgctxt ""
+"03030115.xhp\n"
+"par_id3154422\n"
+"help.text"
+msgid "com.sun.star.util.DateTime"
+msgstr ""
+
+#. o72BC
+#: 03030115.xhp
+msgctxt ""
+"03030115.xhp\n"
+"hd_id3147303\n"
+"help.text"
+msgid "Parameters:"
+msgstr ""
+
+#. X3igP
+#: 03030115.xhp
+msgctxt ""
+"03030115.xhp\n"
+"par_id3145136\n"
+"help.text"
+msgid "<emph>aDate:</emph> Date value to convert"
+msgstr ""
+
+#. zxFxD
+#: 03030115.xhp
+msgctxt ""
+"03030115.xhp\n"
+"hd_id3147243\n"
+"help.text"
+msgid "Example:"
+msgstr ""
+
+#. 8TEgG
+#: 03030116.xhp
+msgctxt ""
+"03030116.xhp\n"
+"tit\n"
+"help.text"
+msgid "CDateFromUnoDateTime Function"
+msgstr ""
+
+#. cHEj9
+#: 03030116.xhp
+msgctxt ""
+"03030116.xhp\n"
+"bm_id3150620\n"
+"help.text"
+msgid "<bookmark_value>CDateFromUnoDateTime function</bookmark_value>"
+msgstr ""
+
+#. gbW7P
+#: 03030116.xhp
+msgctxt ""
+"03030116.xhp\n"
+"hd_id3150620\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03030116.xhp\" name=\"CDateFromUnoDateTime Function\">CDateFromUnoDateTime Function</link>"
+msgstr ""
+
+#. GgYqn
+#: 03030116.xhp
+msgctxt ""
+"03030116.xhp\n"
+"par_id3151097\n"
+"help.text"
+msgid "Converts a UNO com.sun.star.util.DateTime struct to a Date value."
+msgstr ""
+
+#. HWdZi
+#: 03030116.xhp
+msgctxt ""
+"03030116.xhp\n"
+"hd_id3159224\n"
+"help.text"
+msgid "Syntax:"
+msgstr ""
+
+#. qhgq3
+#: 03030116.xhp
+msgctxt ""
+"03030116.xhp\n"
+"par_id3149497\n"
+"help.text"
+msgid "CDateFromUnoDateTime(aDateTime)"
+msgstr ""
+
+#. kjYF8
+#: 03030116.xhp
+msgctxt ""
+"03030116.xhp\n"
+"hd_id3152347\n"
+"help.text"
+msgid "Return value:"
+msgstr ""
+
+#. eZpEM
+#: 03030116.xhp
+msgctxt ""
+"03030116.xhp\n"
+"par_id3154422\n"
+"help.text"
+msgid "Date"
+msgstr ""
+
+#. cWBG3
+#: 03030116.xhp
+msgctxt ""
+"03030116.xhp\n"
+"hd_id3147303\n"
+"help.text"
+msgid "Parameters:"
+msgstr ""
+
+#. vZiQN
+#: 03030116.xhp
+msgctxt ""
+"03030116.xhp\n"
+"par_id3145136\n"
+"help.text"
+msgid "<emph>aDateTime:</emph> DateTime to convert"
+msgstr ""
+
+#. eD9vp
+#: 03030116.xhp
+msgctxt ""
+"03030116.xhp\n"
+"hd_id3147243\n"
+"help.text"
+msgid "Example:"
+msgstr ""
+
+#. ADcJo
+#: 03030120.xhp
+msgctxt ""
+"03030120.xhp\n"
+"tit\n"
+"help.text"
+msgid "DateDiff Function"
+msgstr ""
+
+#. B9pb6
+#: 03030120.xhp
+msgctxt ""
+"03030120.xhp\n"
+"bm_id6134830\n"
+"help.text"
+msgid "<bookmark_value>DateDiff function</bookmark_value>"
+msgstr ""
+
+#. rUz5H
+#: 03030120.xhp
+msgctxt ""
+"03030120.xhp\n"
+"par_idN10542\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03030120.xhp\">DateDiff Function</link>"
+msgstr ""
+
+#. kAC7A
+#: 03030120.xhp
+msgctxt ""
+"03030120.xhp\n"
+"par_idN10546\n"
+"help.text"
+msgid "Returns the number of date or time intervals between two given date values."
+msgstr ""
+
+#. AzmeS
+#: 03030120.xhp
+msgctxt ""
+"03030120.xhp\n"
+"par_idN10648\n"
+"help.text"
+msgid "DateDiff (interval As String, date1 As Date, date2 As Date [, firstDayOfWeek As Integer [, firstWeekOfYear As Integer]]) As Double"
+msgstr ""
+
+#. BPDH8
+#: 03030120.xhp
+msgctxt ""
+"03030120.xhp\n"
+"par_idN1064B\n"
+"help.text"
+msgid "Return value:"
+msgstr ""
+
+#. BXncY
+#: 03030120.xhp
+msgctxt ""
+"03030120.xhp\n"
+"par_idN1064F\n"
+"help.text"
+msgid "A number."
+msgstr ""
+
+#. pnAQD
+#: 03030120.xhp
+msgctxt ""
+"03030120.xhp\n"
+"par_idN10656\n"
+"help.text"
+msgid "<emph>interval</emph> - A string expression from the following table, specifying the date or time interval."
+msgstr ""
+
+#. Exz6j
+#: 03030120.xhp
+msgctxt ""
+"03030120.xhp\n"
+"par_idN10664\n"
+"help.text"
+msgid "<emph>date1, date2</emph> - The two date values to be compared."
+msgstr ""
+
+#. e7hMm
+#: 03030120.xhp
+msgctxt ""
+"03030120.xhp\n"
+"par_idN1066A\n"
+"help.text"
+msgid "<emph>firstdayofweek</emph>: An optional parameter that specifies the starting day of a week."
+msgstr ""
+
+#. wpCoP
+#: 03030120.xhp
+msgctxt ""
+"03030120.xhp\n"
+"par_idN1067A\n"
+"help.text"
+msgid "firstdayofweek value"
+msgstr ""
+
+#. gmaR8
+#: 03030120.xhp
+msgctxt ""
+"03030120.xhp\n"
+"par_idN10680\n"
+"help.text"
+msgid "Explanation"
+msgstr ""
+
+#. A5RkW
+#: 03030120.xhp
+msgctxt ""
+"03030120.xhp\n"
+"par_idN10687\n"
+"help.text"
+msgid "0"
+msgstr ""
+
+#. Xt9Xx
+#: 03030120.xhp
+msgctxt ""
+"03030120.xhp\n"
+"par_idN1068D\n"
+"help.text"
+msgid "Use system default value"
+msgstr ""
+
+#. 6UMdD
+#: 03030120.xhp
+msgctxt ""
+"03030120.xhp\n"
+"par_idN10694\n"
+"help.text"
+msgid "1"
+msgstr ""
+
+#. uV8iz
+#: 03030120.xhp
+msgctxt ""
+"03030120.xhp\n"
+"par_idN1069A\n"
+"help.text"
+msgid "Sunday (default)"
+msgstr ""
+
+#. zuFMX
+#: 03030120.xhp
+msgctxt ""
+"03030120.xhp\n"
+"par_idN106A1\n"
+"help.text"
+msgid "2"
+msgstr ""
+
+#. vUz3C
+#: 03030120.xhp
+msgctxt ""
+"03030120.xhp\n"
+"par_idN106A7\n"
+"help.text"
+msgid "Monday"
+msgstr ""
+
+#. 2YAp3
+#: 03030120.xhp
+msgctxt ""
+"03030120.xhp\n"
+"par_idN106AE\n"
+"help.text"
+msgid "3"
+msgstr ""
+
+#. KCW5A
+#: 03030120.xhp
+msgctxt ""
+"03030120.xhp\n"
+"par_idN106B4\n"
+"help.text"
+msgid "Tuesday"
+msgstr ""
+
+#. 8rkEA
+#: 03030120.xhp
+msgctxt ""
+"03030120.xhp\n"
+"par_idN106BB\n"
+"help.text"
+msgid "4"
+msgstr ""
+
+#. hhEsB
+#: 03030120.xhp
+msgctxt ""
+"03030120.xhp\n"
+"par_idN106C1\n"
+"help.text"
+msgid "Wednesday"
+msgstr ""
+
+#. 3F47C
+#: 03030120.xhp
+msgctxt ""
+"03030120.xhp\n"
+"par_idN106C8\n"
+"help.text"
+msgid "5"
+msgstr ""
+
+#. Zv7Dn
+#: 03030120.xhp
+msgctxt ""
+"03030120.xhp\n"
+"par_idN106CE\n"
+"help.text"
+msgid "Thursday"
+msgstr ""
+
+#. aP5Bd
+#: 03030120.xhp
+msgctxt ""
+"03030120.xhp\n"
+"par_idN106D5\n"
+"help.text"
+msgid "6"
+msgstr ""
+
+#. EbThD
+#: 03030120.xhp
+msgctxt ""
+"03030120.xhp\n"
+"par_idN106DB\n"
+"help.text"
+msgid "Friday"
+msgstr ""
+
+#. CmnqZ
+#: 03030120.xhp
+msgctxt ""
+"03030120.xhp\n"
+"par_idN106E2\n"
+"help.text"
+msgid "7"
+msgstr ""
+
+#. BjBfG
+#: 03030120.xhp
+msgctxt ""
+"03030120.xhp\n"
+"par_idN106E8\n"
+"help.text"
+msgid "Saturday"
+msgstr ""
+
+#. E5nqv
+#: 03030120.xhp
+msgctxt ""
+"03030120.xhp\n"
+"par_idN106EB\n"
+"help.text"
+msgid "<emph>firstweekofyear</emph>: An optional parameter that specifies the starting week of a year."
+msgstr ""
+
+#. e3gQd
+#: 03030120.xhp
+msgctxt ""
+"03030120.xhp\n"
+"par_idN106FB\n"
+"help.text"
+msgid "firstweekofyear value"
+msgstr ""
+
+#. zAFFS
+#: 03030120.xhp
+msgctxt ""
+"03030120.xhp\n"
+"par_idN10701\n"
+"help.text"
+msgid "Explanation"
+msgstr ""
+
+#. XEzpc
+#: 03030120.xhp
+msgctxt ""
+"03030120.xhp\n"
+"par_idN10708\n"
+"help.text"
+msgid "0"
+msgstr ""
+
+#. jXczC
+#: 03030120.xhp
+msgctxt ""
+"03030120.xhp\n"
+"par_idN1070E\n"
+"help.text"
+msgid "Use system default value"
+msgstr ""
+
+#. sqUf8
+#: 03030120.xhp
+msgctxt ""
+"03030120.xhp\n"
+"par_idN10715\n"
+"help.text"
+msgid "1"
+msgstr ""
+
+#. 65vhA
+#: 03030120.xhp
+msgctxt ""
+"03030120.xhp\n"
+"par_idN1071B\n"
+"help.text"
+msgid "Week 1 is the week with January, 1st (default)"
+msgstr ""
+
+#. 7KXnC
+#: 03030120.xhp
+msgctxt ""
+"03030120.xhp\n"
+"par_idN10722\n"
+"help.text"
+msgid "2"
+msgstr ""
+
+#. wFZe8
+#: 03030120.xhp
+msgctxt ""
+"03030120.xhp\n"
+"par_idN10728\n"
+"help.text"
+msgid "Week 1 is the first week containing four or more days of that year"
+msgstr ""
+
+#. 85UKo
+#: 03030120.xhp
+msgctxt ""
+"03030120.xhp\n"
+"par_idN1072F\n"
+"help.text"
+msgid "3"
+msgstr ""
+
+#. xAkGk
+#: 03030120.xhp
+msgctxt ""
+"03030120.xhp\n"
+"par_idN10735\n"
+"help.text"
+msgid "Week 1 is the first week containing only days of the new year"
+msgstr ""
+
+#. pA2jY
+#: 03030130.xhp
+msgctxt ""
+"03030130.xhp\n"
+"tit\n"
+"help.text"
+msgid "DatePart Function"
+msgstr ""
+
+#. 6VFVF
+#: 03030130.xhp
+msgctxt ""
+"03030130.xhp\n"
+"bm_id249946\n"
+"help.text"
+msgid "<bookmark_value>DatePart function</bookmark_value>"
+msgstr ""
+
+#. FZMy8
+#: 03030130.xhp
+msgctxt ""
+"03030130.xhp\n"
+"par_idN10542\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03030130.xhp\">DatePart Function</link>"
+msgstr ""
+
+#. i4c5k
+#: 03030130.xhp
+msgctxt ""
+"03030130.xhp\n"
+"par_idN10546\n"
+"help.text"
+msgid "The DatePart function returns a specified part of a date."
+msgstr ""
+
+#. GWMCJ
+#: 03030130.xhp
+msgctxt ""
+"03030130.xhp\n"
+"par_idN105E8\n"
+"help.text"
+msgid "DatePart (interval As String, date As Date [, firstDayOfWeek As Integer [, firstWeekOfYear As Integer]]) As Long"
+msgstr ""
+
+#. wi5B9
+#: 03030130.xhp
+msgctxt ""
+"03030130.xhp\n"
+"par_idN105EB\n"
+"help.text"
+msgid "Return value:"
+msgstr ""
+
+#. V53FC
+#: 03030130.xhp
+msgctxt ""
+"03030130.xhp\n"
+"par_idN105EF\n"
+"help.text"
+msgid "The extracted part for the given date."
+msgstr ""
+
+#. fT65v
+#: 03030130.xhp
+msgctxt ""
+"03030130.xhp\n"
+"par_idN105F6\n"
+"help.text"
+msgid "<emph>interval</emph> - A string expression from the following table, specifying the date interval."
+msgstr ""
+
+#. CFxRq
+#: 03030130.xhp
+msgctxt ""
+"03030130.xhp\n"
+"par_idN10604\n"
+"help.text"
+msgid "<emph>date</emph> - The date from which the result is calculated."
+msgstr ""
+
+#. tzm8A
+#: 03030200.xhp
+msgctxt ""
+"03030200.xhp\n"
+"tit\n"
+"help.text"
+msgid "Converting Time Values"
+msgstr ""
+
+#. dJYDD
+#: 03030200.xhp
+msgctxt ""
+"03030200.xhp\n"
+"hd_id3147226\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03030200.xhp\" name=\"Converting Time Values\">Converting Time Values</link>"
+msgstr ""
+
+#. SdvsV
+#: 03030200.xhp
+msgctxt ""
+"03030200.xhp\n"
+"par_id3149415\n"
+"help.text"
+msgid "The following functions convert time values to calculable numbers."
+msgstr ""
+
+#. adUzL
+#: 03030201.xhp
+msgctxt ""
+"03030201.xhp\n"
+"tit\n"
+"help.text"
+msgid "Hour Function"
+msgstr ""
+
+#. fYiZC
+#: 03030201.xhp
+msgctxt ""
+"03030201.xhp\n"
+"bm_id3156042\n"
+"help.text"
+msgid "<bookmark_value>Hour function</bookmark_value>"
+msgstr ""
+
+#. 6thEB
+#: 03030201.xhp
+msgctxt ""
+"03030201.xhp\n"
+"hd_id3156042\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03030201.xhp\" name=\"Hour Function\">Hour Function</link>"
+msgstr ""
+
+#. AEpQ4
+#: 03030201.xhp
+msgctxt ""
+"03030201.xhp\n"
+"par_id3149346\n"
+"help.text"
+msgid "Returns the hour from a time value that is generated by the TimeSerial or the TimeValue function."
+msgstr ""
+
+#. hs3C9
+#: 03030201.xhp
+msgctxt ""
+"03030201.xhp\n"
+"hd_id3147574\n"
+"help.text"
+msgid "Syntax:"
+msgstr ""
+
+#. pxhAV
+#: 03030201.xhp
+msgctxt ""
+"03030201.xhp\n"
+"par_id3147264\n"
+"help.text"
+msgid "Hour (Number)"
+msgstr ""
+
+#. DmzEh
+#: 03030201.xhp
+msgctxt ""
+"03030201.xhp\n"
+"hd_id3145069\n"
+"help.text"
+msgid "Return value:"
+msgstr ""
+
+#. FYJMV
+#: 03030201.xhp
+msgctxt ""
+"03030201.xhp\n"
+"par_id3149670\n"
+"help.text"
+msgid "Integer"
+msgstr ""
+
+#. MLayF
+#: 03030201.xhp
+msgctxt ""
+"03030201.xhp\n"
+"hd_id3150359\n"
+"help.text"
+msgid "Parameters:"
+msgstr ""
+
+#. HAoDp
+#: 03030201.xhp
+msgctxt ""
+"03030201.xhp\n"
+"par_id3154366\n"
+"help.text"
+msgid "<emph>Number:</emph> Numeric expression that contains the serial time value that is used to return the hour value."
+msgstr ""
+
+#. TbDJr
+#: 03030201.xhp
+msgctxt ""
+"03030201.xhp\n"
+"par_id3154909\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 ""
+
+#. n3zH6
+#: 03030201.xhp
+msgctxt ""
+"03030201.xhp\n"
+"par_id3155132\n"
+"help.text"
+msgid "returns the value 12."
+msgstr ""
+
+#. Tf4uo
+#: 03030201.xhp
+msgctxt ""
+"03030201.xhp\n"
+"hd_id3147348\n"
+"help.text"
+msgid "Example:"
+msgstr ""
+
+#. qwk5P
+#: 03030201.xhp
+msgctxt ""
+"03030201.xhp\n"
+"par_id3156441\n"
+"help.text"
+msgid "Print \"The current hour is \" & Hour( Now )"
+msgstr ""
+
+#. 84uJf
+#: 03030202.xhp
+msgctxt ""
+"03030202.xhp\n"
+"tit\n"
+"help.text"
+msgid "Minute Function"
+msgstr ""
+
+#. xDBxn
+#: 03030202.xhp
+msgctxt ""
+"03030202.xhp\n"
+"bm_id3155419\n"
+"help.text"
+msgid "<bookmark_value>Minute function</bookmark_value>"
+msgstr ""
+
+#. PcZfm
+#: 03030202.xhp
+msgctxt ""
+"03030202.xhp\n"
+"hd_id3155419\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03030202.xhp\" name=\"Minute Function\">Minute Function (BASIC)</link>"
+msgstr ""
+
+#. 8nzwM
+#: 03030202.xhp
+msgctxt ""
+"03030202.xhp\n"
+"par_id3156344\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 ""
+
+#. xnqCB
+#: 03030202.xhp
+msgctxt ""
+"03030202.xhp\n"
+"par_id3149656\n"
+"help.text"
+msgid "Minute (Number)"
+msgstr ""
+
+#. guGNy
+#: 03030202.xhp
+msgctxt ""
+"03030202.xhp\n"
+"par_id3150449\n"
+"help.text"
+msgid "Integer"
+msgstr ""
+
+#. 7AF7G
+#: 03030202.xhp
+msgctxt ""
+"03030202.xhp\n"
+"par_id3153969\n"
+"help.text"
+msgid "<emph>Number:</emph> Numeric expression that contains the serial time value that is used to return the minute value."
+msgstr ""
+
+#. tsS7A
+#: 03030202.xhp
+msgctxt ""
+"03030202.xhp\n"
+"par_id3150869\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 ""
+
+#. 6ZmVp
+#: 03030202.xhp
+msgctxt ""
+"03030202.xhp\n"
+"par_id3148576\n"
+"help.text"
+msgid "returns the value 30."
+msgstr ""
+
+#. uxFus
+#: 03030202.xhp
+msgctxt ""
+"03030202.xhp\n"
+"par_id3146119\n"
+"help.text"
+msgid "MsgBox \"The current minute is \"& Minute(Now)& \".\""
+msgstr ""
+
+#. BEfZb
+#: 03030203.xhp
+msgctxt ""
+"03030203.xhp\n"
+"tit\n"
+"help.text"
+msgid "Now Function"
+msgstr ""
+
+#. DLG27
+#: 03030203.xhp
+msgctxt ""
+"03030203.xhp\n"
+"bm_id3149416\n"
+"help.text"
+msgid "<bookmark_value>Now function</bookmark_value>"
+msgstr ""
+
+#. vYrqB
+#: 03030203.xhp
+msgctxt ""
+"03030203.xhp\n"
+"hd_id641619720735711\n"
+"help.text"
+msgid "<variable id=\"Now_H1\"><link href=\"text/sbasic/shared/03030203.xhp\" name=\"Now Function\">Now Function</link></variable>"
+msgstr ""
+
+#. TdbJF
+#: 03030203.xhp
+msgctxt ""
+"03030203.xhp\n"
+"par_id3149670\n"
+"help.text"
+msgid "Returns the current system date and time as a <emph>Date</emph> value."
+msgstr ""
+
+#. WrWGq
+#: 03030203.xhp
+msgctxt ""
+"03030203.xhp\n"
+"par_id3154909\n"
+"help.text"
+msgid "Date"
+msgstr ""
+
+#. CMe7F
+#: 03030203.xhp
+msgctxt ""
+"03030203.xhp\n"
+"par_id3150870\n"
+"help.text"
+msgid "MsgBox \"It is now \" & Now"
+msgstr ""
+
+#. LoGnz
+#: 03030203.xhp
+msgctxt ""
+"03030203.xhp\n"
+"par_id491610993401822\n"
+"help.text"
+msgid "The <literal>Now</literal> function measures time in seconds. To measure time in milliseconds use the <link href=\"text/sbasic/shared/03/sf_timer.xhp\" name=\"ScriptForge.Timer service\"><literal>Timer</literal> service</link>."
+msgstr ""
+
+#. LDkTk
+#: 03030203.xhp
+msgctxt ""
+"03030203.xhp\n"
+"par_id531610970649205\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/03/sf_timer.xhp#TimerService\"/>"
+msgstr ""
+
+#. 6Y7Bi
+#: 03030204.xhp
+msgctxt ""
+"03030204.xhp\n"
+"tit\n"
+"help.text"
+msgid "Second Function"
+msgstr ""
+
+#. QDSFu
+#: 03030204.xhp
+msgctxt ""
+"03030204.xhp\n"
+"bm_id3153346\n"
+"help.text"
+msgid "<bookmark_value>Second function</bookmark_value>"
+msgstr ""
+
+#. sesGV
+#: 03030204.xhp
+msgctxt ""
+"03030204.xhp\n"
+"hd_id3153346\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03030204.xhp\" name=\"Second Function\">Second Function</link>"
+msgstr ""
+
+#. 7idcY
+#: 03030204.xhp
+msgctxt ""
+"03030204.xhp\n"
+"par_id3156023\n"
+"help.text"
+msgid "Returns an integer that represents the seconds of the serial time number that is generated by the TimeSerial or the TimeValue function."
+msgstr ""
+
+#. 4BoNH
+#: 03030204.xhp
+msgctxt ""
+"03030204.xhp\n"
+"hd_id3147264\n"
+"help.text"
+msgid "Syntax:"
+msgstr ""
+
+#. nzq77
+#: 03030204.xhp
+msgctxt ""
+"03030204.xhp\n"
+"par_id3146795\n"
+"help.text"
+msgid "Second (Number)"
+msgstr ""
+
+#. E8Cgv
+#: 03030204.xhp
+msgctxt ""
+"03030204.xhp\n"
+"hd_id3150792\n"
+"help.text"
+msgid "Return value:"
+msgstr ""
+
+#. ayBKw
+#: 03030204.xhp
+msgctxt ""
+"03030204.xhp\n"
+"par_id3154140\n"
+"help.text"
+msgid "Integer"
+msgstr ""
+
+#. 65rsD
+#: 03030204.xhp
+msgctxt ""
+"03030204.xhp\n"
+"hd_id3156280\n"
+"help.text"
+msgid "Parameters:"
+msgstr ""
+
+#. dhgBA
+#: 03030204.xhp
+msgctxt ""
+"03030204.xhp\n"
+"par_id3154124\n"
+"help.text"
+msgid "<emph>Number:</emph> Numeric expression that contains the serial time number that is used to calculate the number of seconds."
+msgstr ""
+
+#. cDKEG
+#: 03030204.xhp
+msgctxt ""
+"03030204.xhp\n"
+"par_id3125864\n"
+"help.text"
+msgid "This function is the opposite of the <emph>TimeSerial </emph>function. It returns the seconds of a serial time value that is generated by the <emph>TimeSerial</emph> or <emph>TimeValue </emph>functions. For example, the expression:"
+msgstr ""
+
+#. AMELh
+#: 03030204.xhp
+msgctxt ""
+"03030204.xhp\n"
+"par_id3151117\n"
+"help.text"
+msgid "returns the value 41."
+msgstr ""
+
+#. 9UD9J
+#: 03030204.xhp
+msgctxt ""
+"03030204.xhp\n"
+"hd_id3147426\n"
+"help.text"
+msgid "Example:"
+msgstr ""
+
+#. 2Ans9
+#: 03030204.xhp
+msgctxt ""
+"03030204.xhp\n"
+"par_id3156441\n"
+"help.text"
+msgid "MsgBox \"The exact second of the current time is \"& Second( Now )"
+msgstr ""
+
+#. AGtfu
+#: 03030205.xhp
+msgctxt ""
+"03030205.xhp\n"
+"tit\n"
+"help.text"
+msgid "TimeSerial Function"
+msgstr ""
+
+#. tbErz
+#: 03030205.xhp
+msgctxt ""
+"03030205.xhp\n"
+"bm_id3143271\n"
+"help.text"
+msgid "<bookmark_value>TimeSerial function</bookmark_value>"
+msgstr ""
+
+#. SMCrm
+#: 03030205.xhp
+msgctxt ""
+"03030205.xhp\n"
+"hd_id3143271\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03030205.xhp\" name=\"TimeSerial Function\">TimeSerial Function</link>"
+msgstr ""
+
+#. 6jATi
+#: 03030205.xhp
+msgctxt ""
+"03030205.xhp\n"
+"par_id3156344\n"
+"help.text"
+msgid "Calculates a serial time value for the specified hour, minute, and second parameters that are passed as numeric value. You can then use this value to calculate the difference between times."
+msgstr ""
+
+#. g8Due
+#: 03030205.xhp
+msgctxt ""
+"03030205.xhp\n"
+"hd_id3146794\n"
+"help.text"
+msgid "Syntax:"
+msgstr ""
+
+#. rBHrY
+#: 03030205.xhp
+msgctxt ""
+"03030205.xhp\n"
+"par_id3150792\n"
+"help.text"
+msgid "TimeSerial (hour, minute, second)"
+msgstr ""
+
+#. mCg7g
+#: 03030205.xhp
+msgctxt ""
+"03030205.xhp\n"
+"hd_id3148797\n"
+"help.text"
+msgid "Return value:"
+msgstr ""
+
+#. pRJyR
+#: 03030205.xhp
+msgctxt ""
+"03030205.xhp\n"
+"par_id3154908\n"
+"help.text"
+msgid "Date"
+msgstr ""
+
+#. UDDWL
+#: 03030205.xhp
+msgctxt ""
+"03030205.xhp\n"
+"hd_id3154124\n"
+"help.text"
+msgid "Parameters:"
+msgstr ""
+
+#. QdZBT
+#: 03030205.xhp
+msgctxt ""
+"03030205.xhp\n"
+"par_id3153193\n"
+"help.text"
+msgid "<emph>hour:</emph> Any integer expression that indicates the hour of the time that is used to determine the serial time value. Valid values: 0-23."
+msgstr ""
+
+#. 8phRD
+#: 03030205.xhp
+msgctxt ""
+"03030205.xhp\n"
+"par_id3159252\n"
+"help.text"
+msgid "<emph>minute:</emph> Any integer expression that indicates the minute of the time that is used to determine the serial time value. In general, use values between 0 and 59. However, you can also use values that lie outside of this range, where the number of minutes influence the hour value."
+msgstr ""
+
+#. vL4Lc
+#: 03030205.xhp
+msgctxt ""
+"03030205.xhp\n"
+"par_id3161831\n"
+"help.text"
+msgid "<emph>second:</emph> Any integer expression that indicates the second of the time that is used to determine the serial time value. In general, you can use values between 0 and 59. However, you can also use values that lie outside of this range, where the number seconds influences the minute value."
+msgstr ""
+
+#. AV5zE
+#: 03030205.xhp
+msgctxt ""
+"03030205.xhp\n"
+"par_id3155854\n"
+"help.text"
+msgid "<emph>Examples:</emph>"
+msgstr ""
+
+#. YAhCa
+#: 03030205.xhp
+msgctxt ""
+"03030205.xhp\n"
+"par_id3153952\n"
+"help.text"
+msgid "12, -5, 45 corresponds to 11, 55, 45"
+msgstr ""
+
+#. KvL4f
+#: 03030205.xhp
+msgctxt ""
+"03030205.xhp\n"
+"par_id3147349\n"
+"help.text"
+msgid "12, 61, 45 corresponds to 13, 2, 45"
+msgstr ""
+
+#. j3kp8
+#: 03030205.xhp
+msgctxt ""
+"03030205.xhp\n"
+"par_id3147426\n"
+"help.text"
+msgid "12, 20, -2 corresponds to 12, 19, 58"
+msgstr ""
+
+#. jHbKL
+#: 03030205.xhp
+msgctxt ""
+"03030205.xhp\n"
+"par_id3153365\n"
+"help.text"
+msgid "12, 20, 63 corresponds to 12, 21, 4"
+msgstr ""
+
+#. HRxta
+#: 03030205.xhp
+msgctxt ""
+"03030205.xhp\n"
+"par_id3146985\n"
+"help.text"
+msgid "You can use the TimeSerial function to convert any time into a single value that you can use to calculate time differences."
+msgstr ""
+
+#. jiELn
+#: 03030205.xhp
+msgctxt ""
+"03030205.xhp\n"
+"par_id3155308\n"
+"help.text"
+msgid "The TimeSerial function returns the type Variant with VarType 7 (Date). This value is stored internally as a double-precision number between 0 and 0.9999999999. As opposed to the DateSerial or DateValue function, where the serial date values are calculated as days relative to a fixed date, you can calculate with values returned by the TimeSerial function, but you cannot evaluate them."
+msgstr ""
+
+#. GMTZB
+#: 03030205.xhp
+msgctxt ""
+"03030205.xhp\n"
+"par_id3149482\n"
+"help.text"
+msgid "In the TimeValue function, you can pass a string as a parameter containing the time. For the TimeSerial function, however, you can pass the individual parameters (hour, minute, second) as separate numeric expressions."
+msgstr ""
+
+#. n2xLC
+#: 03030205.xhp
+msgctxt ""
+"03030205.xhp\n"
+"hd_id3154790\n"
+"help.text"
+msgid "Example:"
+msgstr ""
+
+#. RpcQi
+#: 03030205.xhp
+msgctxt ""
+"03030205.xhp\n"
+"par_id3155600\n"
+"help.text"
+msgid "MsgBox dDate,64,\"Time as a number\""
+msgstr ""
+
+#. JLBU7
+#: 03030205.xhp
+msgctxt ""
+"03030205.xhp\n"
+"par_id3153417\n"
+"help.text"
+msgid "MsgBox sDate,64,\"Formatted time\""
+msgstr ""
+
+#. NEpKF
+#: 03030206.xhp
+msgctxt ""
+"03030206.xhp\n"
+"tit\n"
+"help.text"
+msgid "TimeValue Function"
+msgstr ""
+
+#. EH4cg
+#: 03030206.xhp
+msgctxt ""
+"03030206.xhp\n"
+"bm_id3149670\n"
+"help.text"
+msgid "<bookmark_value>TimeValue function</bookmark_value>"
+msgstr ""
+
+#. cVq8u
+#: 03030206.xhp
+msgctxt ""
+"03030206.xhp\n"
+"hd_id3149670\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03030206.xhp\" name=\"TimeValue Function\">TimeValue Function</link>"
+msgstr ""
+
+#. F7fEy
+#: 03030206.xhp
+msgctxt ""
+"03030206.xhp\n"
+"par_id3153361\n"
+"help.text"
+msgid "Calculates a serial time value from the specified hour, minute, and second - parameters passed as strings - that represents the time in a single numeric value. This value can be used to calculate the difference between times."
+msgstr ""
+
+#. ruJCh
+#: 03030206.xhp
+msgctxt ""
+"03030206.xhp\n"
+"hd_id3154138\n"
+"help.text"
+msgid "Syntax:"
+msgstr ""
+
+#. WPuDv
+#: 03030206.xhp
+msgctxt ""
+"03030206.xhp\n"
+"par_id3156282\n"
+"help.text"
+msgid "TimeValue (Text As String)"
+msgstr ""
+
+#. NQV5A
+#: 03030206.xhp
+msgctxt ""
+"03030206.xhp\n"
+"hd_id3153969\n"
+"help.text"
+msgid "Return value:"
+msgstr ""
+
+#. yBbj9
+#: 03030206.xhp
+msgctxt ""
+"03030206.xhp\n"
+"par_id3156424\n"
+"help.text"
+msgid "Date"
+msgstr ""
+
+#. dayEY
+#: 03030206.xhp
+msgctxt ""
+"03030206.xhp\n"
+"hd_id3145172\n"
+"help.text"
+msgid "Parameters:"
+msgstr ""
+
+#. bgAw7
+#: 03030206.xhp
+msgctxt ""
+"03030206.xhp\n"
+"par_id3145786\n"
+"help.text"
+msgid "<emph>Text:</emph> Any string expression that contains the time that you want to calculate in the format \"HH:MM:SS\"."
+msgstr ""
+
+#. uJQBj
+#: 03030206.xhp
+msgctxt ""
+"03030206.xhp\n"
+"par_id3152578\n"
+"help.text"
+msgid "Use the TimeValue function to convert any time into a single value, so that you can calculate time differences."
+msgstr ""
+
+#. cmNEY
+#: 03030206.xhp
+msgctxt ""
+"03030206.xhp\n"
+"par_id3163710\n"
+"help.text"
+msgid "This TimeValue function returns the type Variant with VarType 7 (Date), and stores this value internally as a double-precision number between 0 and 0.9999999999."
+msgstr ""
+
+#. DrpVq
+#: 03030206.xhp
+msgctxt ""
+"03030206.xhp\n"
+"par_id3151117\n"
+"help.text"
+msgid "As opposed to the DateSerial or the DateValue function, where serial date values result in days relative to a fixed date, you can calculate with the values that are returned by the TimeValue function, but you cannot evaluate them."
+msgstr ""
+
+#. ix9a2
+#: 03030206.xhp
+msgctxt ""
+"03030206.xhp\n"
+"par_id3147426\n"
+"help.text"
+msgid "In the TimeSerial function, you can pass individual parameters (hour, minute, second) as separate numeric expressions. For the TimeValue function, however, you can pass a string as a parameter containing the time."
+msgstr ""
+
+#. WExbU
+#: 03030206.xhp
+msgctxt ""
+"03030206.xhp\n"
+"hd_id3145271\n"
+"help.text"
+msgid "Example:"
+msgstr ""
+
+#. CCk3T
+#: 03030206.xhp
+msgctxt ""
+"03030206.xhp\n"
+"par_id3149378\n"
+"help.text"
+msgid "a1 = \"start time\""
+msgstr ""
+
+#. 7FpQ2
+#: 03030206.xhp
+msgctxt ""
+"03030206.xhp\n"
+"par_id3145800\n"
+"help.text"
+msgid "b1 = \"end time\""
+msgstr ""
+
+#. Qy2QF
+#: 03030206.xhp
+msgctxt ""
+"03030206.xhp\n"
+"par_id3151074\n"
+"help.text"
+msgid "c1 = \"total time\""
+msgstr ""
+
+#. DT8D6
+#: 03030300.xhp
+msgctxt ""
+"03030300.xhp\n"
+"tit\n"
+"help.text"
+msgid "System Date and Time"
+msgstr ""
+
+#. BHuhu
+#: 03030300.xhp
+msgctxt ""
+"03030300.xhp\n"
+"hd_id3154923\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03030300.xhp\" name=\"System Date and Time\">System Date and Time</link>"
+msgstr ""
+
+#. GWeGk
+#: 03030300.xhp
+msgctxt ""
+"03030300.xhp\n"
+"par_id3149457\n"
+"help.text"
+msgid "The following functions and statements set or return the system date and time."
+msgstr ""
+
+#. wJjQV
+#: 03030301.xhp
+msgctxt ""
+"03030301.xhp\n"
+"tit\n"
+"help.text"
+msgid "Date Function"
+msgstr ""
+
+#. HEEFx
+#: 03030301.xhp
+msgctxt ""
+"03030301.xhp\n"
+"bm_id3156027\n"
+"help.text"
+msgid "<bookmark_value>Date function</bookmark_value>"
+msgstr ""
+
+#. u9AkG
+#: 03030301.xhp
+msgctxt ""
+"03030301.xhp\n"
+"hd_id3156027\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03030301.xhp\" name=\"Date Function\">Date Function</link>"
+msgstr ""
+
+#. AaA3G
+#: 03030301.xhp
+msgctxt ""
+"03030301.xhp\n"
+"par_id3147291\n"
+"help.text"
+msgid "Returns the current system date as a string, or date variant."
+msgstr ""
+
+#. BUc3C
+#: 03030301.xhp
+msgctxt ""
+"03030301.xhp\n"
+"par_id3156424\n"
+"help.text"
+msgid "MsgBox \"The date is \" & Date"
+msgstr ""
+
+#. W99bB
+#: 03030302.xhp
+msgctxt ""
+"03030302.xhp\n"
+"tit\n"
+"help.text"
+msgid "Time Function"
+msgstr ""
+
+#. peCLU
+#: 03030302.xhp
+msgctxt ""
+"03030302.xhp\n"
+"bm_id3145090\n"
+"help.text"
+msgid "<bookmark_value>Time function</bookmark_value>"
+msgstr ""
+
+#. tBoRS
+#: 03030302.xhp
+msgctxt ""
+"03030302.xhp\n"
+"hd_id3145090\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03030302.xhp\" name=\"Time Function\">Time Function</link>"
+msgstr ""
+
+#. FHKSk
+#: 03030302.xhp
+msgctxt ""
+"03030302.xhp\n"
+"par_id3150984\n"
+"help.text"
+msgid "This function returns the current system time as a string in the format \"HH:MM:SS\"."
+msgstr ""
+
+#. Aguz5
+#: 03030302.xhp
+msgctxt ""
+"03030302.xhp\n"
+"par_id3150870\n"
+"help.text"
+msgid "MsgBox Time,0,\"The time is\""
+msgstr ""
+
+#. BBjfr
+#: 03030303.xhp
+msgctxt ""
+"03030303.xhp\n"
+"tit\n"
+"help.text"
+msgid "Timer Function"
+msgstr ""
+
+#. fnckD
+#: 03030303.xhp
+msgctxt ""
+"03030303.xhp\n"
+"bm_id3149346\n"
+"help.text"
+msgid "<bookmark_value>Timer function</bookmark_value>"
+msgstr ""
+
+#. 2AGeD
+#: 03030303.xhp
+msgctxt ""
+"03030303.xhp\n"
+"hd_id3149346\n"
+"help.text"
+msgid "<variable id=\"Timer_H1\"><link href=\"text/sbasic/shared/03030303.xhp\" name=\"Timer Function\">Timer Function</link></variable>"
+msgstr ""
+
+#. AKDaG
+#: 03030303.xhp
+msgctxt ""
+"03030303.xhp\n"
+"par_id3156023\n"
+"help.text"
+msgid "Returns a value that specifies the number of seconds that have elapsed since midnight."
+msgstr ""
+
+#. 3bGux
+#: 03030303.xhp
+msgctxt ""
+"03030303.xhp\n"
+"par_id3156212\n"
+"help.text"
+msgid "You must first declare a variable to call the Timer function and assign it the \"Long \" data type, otherwise a Date value is returned."
+msgstr ""
+
+#. zgXp6
+#: 03030303.xhp
+msgctxt ""
+"03030303.xhp\n"
+"par_id3146984\n"
+"help.text"
+msgid "Date"
+msgstr ""
+
+#. ppCoJ
+#: 03030303.xhp
+msgctxt ""
+"03030303.xhp\n"
+"par_id3145748\n"
+"help.text"
+msgid "MsgBox lSec, 0, \"Seconds since midnight\""
+msgstr ""
+
+#. E5DAZ
+#: 03030303.xhp
+msgctxt ""
+"03030303.xhp\n"
+"par_id3156283\n"
+"help.text"
+msgid "MsgBox Right(\"00\" & lHour , 2) & \":\"& Right(\"00\" & lMin , 2) & \":\" & Right(\"00\" & lSec , 2), 0, \"The time is\""
+msgstr ""
+
+#. oYudq
+#: 03030303.xhp
+msgctxt ""
+"03030303.xhp\n"
+"par_id491610993401822\n"
+"help.text"
+msgid "The <literal>Timer</literal> function measures time in seconds. To measure time in milliseconds use the <link href=\"text/sbasic/shared/03/sf_timer.xhp\" name=\"Timer_link\">Timer service</link> available in the <literal>ScriptForge</literal> library."
+msgstr ""
+
+#. ATnCy
+#: 03040000.xhp
+msgctxt ""
+"03040000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Basic Constants"
+msgstr ""
+
+#. AXgrH
+#: 03040000.xhp
+msgctxt ""
+"03040000.xhp\n"
+"bm_id051720170831387233\n"
+"help.text"
+msgid "<bookmark_value>Basic constants</bookmark_value>"
+msgstr ""
+
+#. ev3DS
+#: 03040000.xhp
+msgctxt ""
+"03040000.xhp\n"
+"hd_id051620171022255424\n"
+"help.text"
+msgid "<variable id=\"basicconstantsh1\"><link href=\"text/sbasic/shared/03040000.xhp\">Basic Constants</link></variable>"
+msgstr ""
+
+#. K6sdH
+#: 03040000.xhp
+msgctxt ""
+"03040000.xhp\n"
+"par_id051620171022384640\n"
+"help.text"
+msgid "<ahelp hid=\".\">Constants used in Basic programs</ahelp>"
+msgstr ""
+
+#. WBN4A
+#: 03040000.xhp
+msgctxt ""
+"03040000.xhp\n"
+"bm_id871554200620243\n"
+"help.text"
+msgid "<bookmark_value>Boolean Basic constants</bookmark_value><bookmark_value>Basic constant;False</bookmark_value><bookmark_value>Basic constant;True</bookmark_value>"
+msgstr ""
+
+#. R2DAa
+#: 03040000.xhp
+msgctxt ""
+"03040000.xhp\n"
+"par_id051620171022382581\n"
+"help.text"
+msgid "Boolean constants"
+msgstr ""
+
+#. YZCRB
+#: 03040000.xhp
+msgctxt ""
+"03040000.xhp\n"
+"par_id051620171114565335\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. QdhaX
+#: 03040000.xhp
+msgctxt ""
+"03040000.xhp\n"
+"par_id051620171114565484\n"
+"help.text"
+msgid "Type"
+msgstr ""
+
+#. 2ZfCb
+#: 03040000.xhp
+msgctxt ""
+"03040000.xhp\n"
+"par_id051620171114563271\n"
+"help.text"
+msgid "Value"
+msgstr ""
+
+#. zEDay
+#: 03040000.xhp
+msgctxt ""
+"03040000.xhp\n"
+"bm_id131554200364170\n"
+"help.text"
+msgid "<bookmark_value>Basic Mathematical constants</bookmark_value><bookmark_value>Pi;Basic constant</bookmark_value><bookmark_value>Basic constant;Pi</bookmark_value>"
+msgstr ""
+
+#. DLv8z
+#: 03040000.xhp
+msgctxt ""
+"03040000.xhp\n"
+"hd_id051620171114573549\n"
+"help.text"
+msgid "Mathematical constant"
+msgstr ""
+
+#. tKc55
+#: 03040000.xhp
+msgctxt ""
+"03040000.xhp\n"
+"par_id051620171114576150\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. LsGpf
+#: 03040000.xhp
+msgctxt ""
+"03040000.xhp\n"
+"par_id051620171114575122\n"
+"help.text"
+msgid "Type"
+msgstr ""
+
+#. SKTAY
+#: 03040000.xhp
+msgctxt ""
+"03040000.xhp\n"
+"par_id051620171114574987\n"
+"help.text"
+msgid "Value"
+msgstr ""
+
+#. BN53F
+#: 03040000.xhp
+msgctxt ""
+"03040000.xhp\n"
+"bm_id261554201061695\n"
+"help.text"
+msgid "<bookmark_value>Basic Object constants</bookmark_value><bookmark_value>Empty;Basic constant</bookmark_value><bookmark_value>Null;Basic constant</bookmark_value><bookmark_value>Nothing;Basic constant</bookmark_value><bookmark_value>Basic constant;Nothing</bookmark_value><bookmark_value>Basic constant;Null</bookmark_value><bookmark_value>Basic constant;Empty</bookmark_value>"
+msgstr ""
+
+#. hdZmR
+#: 03040000.xhp
+msgctxt ""
+"03040000.xhp\n"
+"hd_id051620171114576454\n"
+"help.text"
+msgid "Object Constants"
+msgstr ""
+
+#. XzWwC
+#: 03040000.xhp
+msgctxt ""
+"03040000.xhp\n"
+"par_id051620171114576921\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. 4H8QB
+#: 03040000.xhp
+msgctxt ""
+"03040000.xhp\n"
+"par_id051620171114578188\n"
+"help.text"
+msgid "Type"
+msgstr ""
+
+#. khVxN
+#: 03040000.xhp
+msgctxt ""
+"03040000.xhp\n"
+"par_id051720170824099845\n"
+"help.text"
+msgid "Usage"
+msgstr ""
+
+#. wFRg7
+#: 03040000.xhp
+msgctxt ""
+"03040000.xhp\n"
+"par_id05172017082409622\n"
+"help.text"
+msgid "The <emph>Empty</emph> value indicates that the variable is not initialized."
+msgstr ""
+
+#. fBDqJ
+#: 03040000.xhp
+msgctxt ""
+"03040000.xhp\n"
+"par_id051720170824093395\n"
+"help.text"
+msgid "Indicates that the variable does not contain data."
+msgstr ""
+
+#. bP2W3
+#: 03040000.xhp
+msgctxt ""
+"03040000.xhp\n"
+"par_id051720170824097935\n"
+"help.text"
+msgid "Assign the <emph>Nothing</emph> object to a variable to remove a previous assignment."
+msgstr ""
+
+#. 4jPFB
+#: 03040000.xhp
+msgctxt ""
+"03040000.xhp\n"
+"par_id051620171114577052\n"
+"help.text"
+msgid "Print IsEmpty(sVar) ' Returns True"
+msgstr ""
+
+#. YK88J
+#: 03040000.xhp
+msgctxt ""
+"03040000.xhp\n"
+"par_id051720170824106132\n"
+"help.text"
+msgid "Print oDoc ' Error"
+msgstr ""
+
+#. UDTHw
+#: 03040000.xhp
+msgctxt ""
+"03040000.xhp\n"
+"hd_id31634909394554\n"
+"help.text"
+msgid "MsgBox Named Constants"
+msgstr ""
+
+#. CABUt
+#: 03040000.xhp
+msgctxt ""
+"03040000.xhp\n"
+"hd_id881634911199058\n"
+"help.text"
+msgid "GetAttr Named Constants"
+msgstr ""
+
+#. FWBQE
+#: 03040000.xhp
+msgctxt ""
+"03040000.xhp\n"
+"hd_id611634911996367\n"
+"help.text"
+msgid "VarType Named Constants"
+msgstr ""
+
+#. Xtpvq
+#: 03040000.xhp
+msgctxt ""
+"03040000.xhp\n"
+"bm_id101554201127393\n"
+"help.text"
+msgid "<bookmark_value>Visual Basic constants</bookmark_value><bookmark_value>VBA Exclusive constants</bookmark_value>"
+msgstr ""
+
+#. Nbv6Q
+#: 03040000.xhp
+msgctxt ""
+"03040000.xhp\n"
+"hd_id661512312593832\n"
+"help.text"
+msgid "Additional VBA constants"
+msgstr ""
+
+#. 3ekcB
+#: 03040000.xhp
+msgctxt ""
+"03040000.xhp\n"
+"par_id111512312705893\n"
+"help.text"
+msgid "The following constants are available when VBA compatibility mode is enabled"
+msgstr ""
+
+#. 8kxFA
+#: 03040000.xhp
+msgctxt ""
+"03040000.xhp\n"
+"bm_id391624288823741\n"
+"help.text"
+msgid "<bookmark_value>VBA Variable Type Named Constants</bookmark_value>"
+msgstr ""
+
+#. XSqq4
+#: 03040000.xhp
+msgctxt ""
+"03040000.xhp\n"
+"hd_id941628842567829\n"
+"help.text"
+msgid "VBA Color Named Constants"
+msgstr ""
+
+#. GX7VB
+#: 03040000.xhp
+msgctxt ""
+"03040000.xhp\n"
+"par_id611634907471277\n"
+"help.text"
+msgid "Named constant"
+msgstr ""
+
+#. 4wBCk
+#: 03040000.xhp
+msgctxt ""
+"03040000.xhp\n"
+"par_id861634907471277\n"
+"help.text"
+msgid "Red, Green, Blue<br/>composition"
+msgstr ""
+
+#. y4iia
+#: 03040000.xhp
+msgctxt ""
+"03040000.xhp\n"
+"hd_id941624288567829\n"
+"help.text"
+msgid "Variable Type Named Constants"
+msgstr ""
+
+#. AzBpy
+#: 03040000.xhp
+msgctxt ""
+"03040000.xhp\n"
+"par_id31624288363725\n"
+"help.text"
+msgid "Named constant"
+msgstr ""
+
+#. SrPWN
+#: 03040000.xhp
+msgctxt ""
+"03040000.xhp\n"
+"par_id951624288363725\n"
+"help.text"
+msgid "Decimal value"
+msgstr ""
+
+#. PVJr3
+#: 03040000.xhp
+msgctxt ""
+"03040000.xhp\n"
+"hd_id881634911195890\n"
+"help.text"
+msgid "FormatDateTime VBA Named Constants"
+msgstr ""
+
+#. jUhTB
+#: 03040000.xhp
+msgctxt ""
+"03040000.xhp\n"
+"hd_id801634912153888\n"
+"help.text"
+msgid "StrConv VBA Named Constants"
+msgstr ""
+
+#. pU993
+#: 03040000.xhp
+msgctxt ""
+"03040000.xhp\n"
+"hd_id131634910758620\n"
+"help.text"
+msgid "WeekDayName VBA Named Constants"
+msgstr ""
+
+#. Y5GhB
+#: 03040000.xhp
+msgctxt ""
+"03040000.xhp\n"
+"hd_id531634913323423\n"
+"help.text"
+msgid "Miscellaneous VBA Named Constants"
+msgstr ""
+
+#. SHFCr
+#: 03040000.xhp
+msgctxt ""
+"03040000.xhp\n"
+"par_id901512312880723\n"
+"help.text"
+msgid "Named constant"
+msgstr ""
+
+#. HtGwh
+#: 03040000.xhp
+msgctxt ""
+"03040000.xhp\n"
+"par_id891512312916493\n"
+"help.text"
+msgid "Hexadecimal (decimal) value"
+msgstr ""
+
+#. dmCG8
+#: 03040000.xhp
+msgctxt ""
+"03040000.xhp\n"
+"par_id991512312965968\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. MF8DE
+#: 03040000.xhp
+msgctxt ""
+"03040000.xhp\n"
+"par_id671542197262160\n"
+"help.text"
+msgid "Part of vbTriState enumeration."
+msgstr ""
+
+#. NueYf
+#: 03040000.xhp
+msgctxt ""
+"03040000.xhp\n"
+"par_id351542197255532\n"
+"help.text"
+msgid "Part of vbTriState enumeration."
+msgstr ""
+
+#. aZCUB
+#: 03040000.xhp
+msgctxt ""
+"03040000.xhp\n"
+"par_id251542197274514\n"
+"help.text"
+msgid "Part of vbTriState enumeration."
+msgstr ""
+
+#. yTGGA
+#: 03040000.xhp
+msgctxt ""
+"03040000.xhp\n"
+"par_id611512313731233\n"
+"help.text"
+msgid "CR - Carriage return"
+msgstr ""
+
+#. LkFkf
+#: 03040000.xhp
+msgctxt ""
+"03040000.xhp\n"
+"par_id961512313881937\n"
+"help.text"
+msgid "CRLF - Carriage return and line feed"
+msgstr ""
+
+#. taq8u
+#: 03040000.xhp
+msgctxt ""
+"03040000.xhp\n"
+"par_id221512313889077\n"
+"help.text"
+msgid "FF - Form feed"
+msgstr ""
+
+#. sTnbW
+#: 03040000.xhp
+msgctxt ""
+"03040000.xhp\n"
+"par_id621512313896169\n"
+"help.text"
+msgid "LF - Line feed"
+msgstr ""
+
+#. CncC2
+#: 03040000.xhp
+msgctxt ""
+"03040000.xhp\n"
+"par_id521512319135830\n"
+"help.text"
+msgid "\\x0D\\x0A (13 10) for Windows"
+msgstr ""
+
+#. CPCWE
+#: 03040000.xhp
+msgctxt ""
+"03040000.xhp\n"
+"par_id61512319163913\n"
+"help.text"
+msgid "\\x0A (10) for other systems"
+msgstr ""
+
+#. LXUYw
+#: 03040000.xhp
+msgctxt ""
+"03040000.xhp\n"
+"par_id151512313904989\n"
+"help.text"
+msgid "LF or CRLF"
+msgstr ""
+
+#. PwtxJ
+#: 03040000.xhp
+msgctxt ""
+"03040000.xhp\n"
+"par_id741512313911049\n"
+"help.text"
+msgid "Null string"
+msgstr ""
+
+#. GZhKy
+#: 03040000.xhp
+msgctxt ""
+"03040000.xhp\n"
+"par_id951512313918356\n"
+"help.text"
+msgid "HT - Horizontal tab"
+msgstr ""
+
+#. YDtN4
+#: 03040000.xhp
+msgctxt ""
+"03040000.xhp\n"
+"par_id351512313924593\n"
+"help.text"
+msgid "VT - Vertical tab"
+msgstr ""
+
+#. LMbQP
+#: 03050000.xhp
+msgctxt ""
+"03050000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Error-Handling Functions"
+msgstr ""
+
+#. yMyAz
+#: 03050000.xhp
+msgctxt ""
+"03050000.xhp\n"
+"hd_id3143271\n"
+"help.text"
+msgid "<variable id=\"ErrHandlingh1\"><link href=\"text/sbasic/shared/03050000.xhp\" name=\"Error-Handling Functions\">Error-Handling Functions</link></variable>"
+msgstr ""
+
+#. KsiEx
+#: 03050000.xhp
+msgctxt ""
+"03050000.xhp\n"
+"par_id3145068\n"
+"help.text"
+msgid "Use the following statements and functions to define the way %PRODUCTNAME Basic reacts to run-time errors."
+msgstr ""
+
+#. 9XGsZ
+#: 03050000.xhp
+msgctxt ""
+"03050000.xhp\n"
+"par_id3148946\n"
+"help.text"
+msgid "%PRODUCTNAME Basic offers several methods to prevent the termination of a program when a run-time error occurs."
+msgstr ""
+
+#. C2vFE
+#: 03050100.xhp
+msgctxt ""
+"03050100.xhp\n"
+"tit\n"
+"help.text"
+msgid "Erl Function"
+msgstr ""
+
+#. F8HHF
+#: 03050100.xhp
+msgctxt ""
+"03050100.xhp\n"
+"bm_id3157896\n"
+"help.text"
+msgid "<bookmark_value>Erl function</bookmark_value>"
+msgstr ""
+
+#. wmnFw
+#: 03050100.xhp
+msgctxt ""
+"03050100.xhp\n"
+"hd_id3157896\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03050100.xhp\" name=\"Erl Function\">Erl Function</link>"
+msgstr ""
+
+#. jDwdD
+#: 03050100.xhp
+msgctxt ""
+"03050100.xhp\n"
+"par_id3153394\n"
+"help.text"
+msgid "Returns the line number where an error occurred during program execution."
+msgstr ""
+
+#. oXQW5
+#: 03050100.xhp
+msgctxt ""
+"03050100.xhp\n"
+"hd_id3147574\n"
+"help.text"
+msgid "Syntax:"
+msgstr ""
+
+#. Bzkw7
+#: 03050100.xhp
+msgctxt ""
+"03050100.xhp\n"
+"hd_id3147265\n"
+"help.text"
+msgid "Return value:"
+msgstr ""
+
+#. EmEER
+#: 03050100.xhp
+msgctxt ""
+"03050100.xhp\n"
+"par_id3154924\n"
+"help.text"
+msgid "Integer"
+msgstr ""
+
+#. wfjUy
+#: 03050100.xhp
+msgctxt ""
+"03050100.xhp\n"
+"hd_id3150792\n"
+"help.text"
+msgid "Parameters:"
+msgstr ""
+
+#. rDQuJ
+#: 03050100.xhp
+msgctxt ""
+"03050100.xhp\n"
+"par_id3153771\n"
+"help.text"
+msgid "The Erl function only returns a line number, and not a line label."
+msgstr ""
+
+#. 6m2qX
+#: 03050100.xhp
+msgctxt ""
+"03050100.xhp\n"
+"hd_id3146921\n"
+"help.text"
+msgid "Example:"
+msgstr ""
+
+#. C82GD
+#: 03050100.xhp
+msgctxt ""
+"03050100.xhp\n"
+"par_id3150010\n"
+"help.text"
+msgid "On Error GoTo ErrorHandler ' Set up error handler"
+msgstr ""
+
+#. vWK8x
+#: 03050100.xhp
+msgctxt ""
+"03050100.xhp\n"
+"par_id3153188\n"
+"help.text"
+msgid "' Error caused by non-existent file"
+msgstr ""
+
+#. EcCgF
+#: 03050100.xhp
+msgctxt ""
+"03050100.xhp\n"
+"par_id3155416\n"
+"help.text"
+msgid "MsgBox \"Error \" & err & \": \" & Error$ + chr(13) + \"In Line : \" + Erl + chr(13) + Now , 16 ,\"An error occurred\""
+msgstr ""
+
+#. jDsK7
+#: 03050200.xhp
+msgctxt ""
+"03050200.xhp\n"
+"tit\n"
+"help.text"
+msgid "Err Function"
+msgstr ""
+
+#. 2wpGD
+#: 03050200.xhp
+msgctxt ""
+"03050200.xhp\n"
+"bm_id3156343\n"
+"help.text"
+msgid "<bookmark_value>Err function</bookmark_value>"
+msgstr ""
+
+#. Pih45
+#: 03050200.xhp
+msgctxt ""
+"03050200.xhp\n"
+"hd_id3156343\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03050200.xhp\" name=\"Err Function\">Err Function</link>"
+msgstr ""
+
+#. fYQVz
+#: 03050200.xhp
+msgctxt ""
+"03050200.xhp\n"
+"par_id3150541\n"
+"help.text"
+msgid "Returns an error code that identifies the error that occurred during program execution."
+msgstr ""
+
+#. HaPjw
+#: 03050200.xhp
+msgctxt ""
+"03050200.xhp\n"
+"hd_id3149656\n"
+"help.text"
+msgid "Syntax:"
+msgstr ""
+
+#. ZN32q
+#: 03050200.xhp
+msgctxt ""
+"03050200.xhp\n"
+"hd_id3147229\n"
+"help.text"
+msgid "Return value:"
+msgstr ""
+
+#. cCixX
+#: 03050200.xhp
+msgctxt ""
+"03050200.xhp\n"
+"par_id3150869\n"
+"help.text"
+msgid "Integer"
+msgstr ""
+
+#. LFnmB
+#: 03050200.xhp
+msgctxt ""
+"03050200.xhp\n"
+"hd_id3153193\n"
+"help.text"
+msgid "Parameters:"
+msgstr ""
+
+#. ofpgE
+#: 03050200.xhp
+msgctxt ""
+"03050200.xhp\n"
+"par_id3149561\n"
+"help.text"
+msgid "The Err function is used in error-handling routines to determine the error and the corrective action."
+msgstr ""
+
+#. HeDXV
+#: 03050200.xhp
+msgctxt ""
+"03050200.xhp\n"
+"hd_id3147317\n"
+"help.text"
+msgid "Example:"
+msgstr ""
+
+#. u8W7v
+#: 03050200.xhp
+msgctxt ""
+"03050200.xhp\n"
+"par_id3147426\n"
+"help.text"
+msgid "On Error Goto ErrorHandler REM Set up error handler"
+msgstr ""
+
+#. oqyWf
+#: 03050200.xhp
+msgctxt ""
+"03050200.xhp\n"
+"par_id3149481\n"
+"help.text"
+msgid "REM Error occurs due to non-existent file"
+msgstr ""
+
+#. sUZwU
+#: 03050200.xhp
+msgctxt ""
+"03050200.xhp\n"
+"par_id3145646\n"
+"help.text"
+msgid "MsgBox \"Error \" & Err & \": \" & Error$ + chr(13) + \"At line : \" + Erl + chr(13) + Now , 16 ,\"an error occurred\""
+msgstr ""
+
+#. ae6Nq
+#: 03050300.xhp
+msgctxt ""
+"03050300.xhp\n"
+"tit\n"
+"help.text"
+msgid "Error Function"
+msgstr ""
+
+#. BextW
+#: 03050300.xhp
+msgctxt ""
+"03050300.xhp\n"
+"bm_id3159413\n"
+"help.text"
+msgid "<bookmark_value>Error function</bookmark_value>"
+msgstr ""
+
+#. bYtGD
+#: 03050300.xhp
+msgctxt ""
+"03050300.xhp\n"
+"hd_id3159413\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03050300.xhp\" name=\"Error Function\">Error Function</link>"
+msgstr ""
+
+#. rMs2R
+#: 03050300.xhp
+msgctxt ""
+"03050300.xhp\n"
+"par_id3148663\n"
+"help.text"
+msgid "Returns the error message that corresponds to a value or raises a given error context."
+msgstr ""
+
+#. h8KBQ
+#: 03050300.xhp
+msgctxt ""
+"03050300.xhp\n"
+"hd_id3153379\n"
+"help.text"
+msgid "Syntax:"
+msgstr ""
+
+#. FowuD
+#: 03050300.xhp
+msgctxt ""
+"03050300.xhp\n"
+"par_id631576404838377\n"
+"help.text"
+msgid "Error"
+msgstr ""
+
+#. TMhEb
+#: 03050300.xhp
+msgctxt ""
+"03050300.xhp\n"
+"par_id3154366\n"
+"help.text"
+msgid "Error(expression)"
+msgstr ""
+
+#. bqewK
+#: 03050300.xhp
+msgctxt ""
+"03050300.xhp\n"
+"par_id231576404629080\n"
+"help.text"
+msgid "Error err_code"
+msgstr ""
+
+#. ANh6X
+#: 03050300.xhp
+msgctxt ""
+"03050300.xhp\n"
+"hd_id3145173\n"
+"help.text"
+msgid "Return value:"
+msgstr ""
+
+#. FNBFf
+#: 03050300.xhp
+msgctxt ""
+"03050300.xhp\n"
+"par_id3154125\n"
+"help.text"
+msgid "String or raised error context"
+msgstr ""
+
+#. BnAcN
+#: 03050300.xhp
+msgctxt ""
+"03050300.xhp\n"
+"hd_id3150869\n"
+"help.text"
+msgid "Parameters:"
+msgstr ""
+
+#. cWGA9
+#: 03050300.xhp
+msgctxt ""
+"03050300.xhp\n"
+"par_id3159254\n"
+"help.text"
+msgid "If no argument is provided, the Error function returns the error message of the most recent error that occurred during program execution."
+msgstr ""
+
+#. JCiAF
+#: 03050300.xhp
+msgctxt ""
+"03050300.xhp\n"
+"par_id3153193\n"
+"help.text"
+msgid "<emph>expression:</emph> Any numeric expression whose error code can be mapped to an existing error message. An empty string is returned if the error code does not exist."
+msgstr ""
+
+#. gDA6e
+#: 03050300.xhp
+msgctxt ""
+"03050300.xhp\n"
+"par_id351576405235602\n"
+"help.text"
+msgid "<emph>err_code:</emph> Any value that corresponds to an existing error code."
+msgstr ""
+
+#. YLe3q
+#: 03050500.xhp
+msgctxt ""
+"03050500.xhp\n"
+"tit\n"
+"help.text"
+msgid "On Error GoTo ... Resume Statement"
+msgstr ""
+
+#. fgK7B
+#: 03050500.xhp
+msgctxt ""
+"03050500.xhp\n"
+"bm_id3146795\n"
+"help.text"
+msgid "<bookmark_value>Resume Next parameter</bookmark_value> <bookmark_value>On Error GoTo ... Resume statement</bookmark_value>"
+msgstr ""
+
+#. AQeFr
+#: 03050500.xhp
+msgctxt ""
+"03050500.xhp\n"
+"hd_id3146795\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03050500.xhp\" name=\"On Error GoTo ... Resume Statement\">On Error GoTo ... Resume Statement</link>"
+msgstr ""
+
+#. WtSRF
+#: 03050500.xhp
+msgctxt ""
+"03050500.xhp\n"
+"par_id3150358\n"
+"help.text"
+msgid "Enables an error-handling routine after an error occurs, or resumes program execution."
+msgstr ""
+
+#. fGsdv
+#: 03050500.xhp
+msgctxt ""
+"03050500.xhp\n"
+"par_id491585753339474\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sbasic/On-Error_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">On Error Statement diagram</alt></image>"
+msgstr ""
+
+#. CKJJr
+#: 03050500.xhp
+msgctxt ""
+"03050500.xhp\n"
+"par_id3145173\n"
+"help.text"
+msgid "On [Local] Error {GoTo Labelname | GoTo 0 | Resume Next}"
+msgstr ""
+
+#. CmqUN
+#: 03050500.xhp
+msgctxt ""
+"03050500.xhp\n"
+"par_id3150869\n"
+"help.text"
+msgid "<emph>GoTo Labelname:</emph> If an error occurs, enables the error-handling routine that starts at the line \"Labelname\"."
+msgstr ""
+
+#. X9C6G
+#: 03050500.xhp
+msgctxt ""
+"03050500.xhp\n"
+"par_id3150439\n"
+"help.text"
+msgid "<emph>Resume Next:</emph> If an error occurs, program execution continues with the statement that follows the statement in which the error occurred."
+msgstr ""
+
+#. PmvfD
+#: 03050500.xhp
+msgctxt ""
+"03050500.xhp\n"
+"par_id3149482\n"
+"help.text"
+msgid "<emph>GoTo 0:</emph> Disables the error handler in the current procedure."
+msgstr ""
+
+#. YAREs
+#: 03050500.xhp
+msgctxt ""
+"03050500.xhp\n"
+"par_id3149483\n"
+"help.text"
+msgid "<emph>Local:</emph> \"On error\" is global in scope, and remains active until canceled by another \"On error\" statement. \"On Local error\" is local to the routine which invokes it. Local error handling overrides any previous global setting. When the invoking routine exits, the local error handling is canceled automatically, and any previous global setting is restored."
+msgstr ""
+
+#. qHQJR
+#: 03050500.xhp
+msgctxt ""
+"03050500.xhp\n"
+"par_id3148619\n"
+"help.text"
+msgid "The On Error GoTo statement is used to react to errors that occur in a macro."
+msgstr ""
+
+#. fHDcN
+#: 03050500.xhp
+msgctxt ""
+"03050500.xhp\n"
+"par_id3153876\n"
+"help.text"
+msgid "Print #iNumber, \"This is a line of text\""
+msgstr ""
+
+#. 2AjwH
+#: 03050500.xhp
+msgctxt ""
+"03050500.xhp\n"
+"par_id3146916\n"
+"help.text"
+msgid "MsgBox \"All files will be closed\", 0, \"Error\""
+msgstr ""
+
+#. YAR7R
+#: 03060000.xhp
+msgctxt ""
+"03060000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Logical Operators"
+msgstr ""
+
+#. 8jdra
+#: 03060000.xhp
+msgctxt ""
+"03060000.xhp\n"
+"hd_id3147559\n"
+"help.text"
+msgid "<variable id=\"BoolOper_h1\"><link href=\"text/sbasic/shared/03060000.xhp\" name=\"Logical Operators\">Logical Operators</link></variable>"
+msgstr ""
+
+#. E9c8W
+#: 03060000.xhp
+msgctxt ""
+"03060000.xhp\n"
+"par_id3153379\n"
+"help.text"
+msgid "The following logical operators are supported by $[officename] Basic."
+msgstr ""
+
+#. coCYu
+#: 03060000.xhp
+msgctxt ""
+"03060000.xhp\n"
+"par_id3154138\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 ""
+
+#. bwPRh
+#: 03060100.xhp
+msgctxt ""
+"03060100.xhp\n"
+"tit\n"
+"help.text"
+msgid "AND Operator"
+msgstr ""
+
+#. FEioU
+#: 03060100.xhp
+msgctxt ""
+"03060100.xhp\n"
+"bm_id3146117\n"
+"help.text"
+msgid "<bookmark_value>AND operator (logical)</bookmark_value>"
+msgstr ""
+
+#. E9eBH
+#: 03060100.xhp
+msgctxt ""
+"03060100.xhp\n"
+"hd_id3146117\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03060100.xhp\" name=\"AND Operator\">AND Operator</link>"
+msgstr ""
+
+#. 3PFwA
+#: 03060100.xhp
+msgctxt ""
+"03060100.xhp\n"
+"par_id3143268\n"
+"help.text"
+msgid "Logically combines two expressions."
+msgstr ""
+
+#. c8FVE
+#: 03060100.xhp
+msgctxt ""
+"03060100.xhp\n"
+"hd_id3147574\n"
+"help.text"
+msgid "Syntax:"
+msgstr ""
+
+#. jairQ
+#: 03060100.xhp
+msgctxt ""
+"03060100.xhp\n"
+"par_id3156344\n"
+"help.text"
+msgid "Result = Expression1 And Expression2"
+msgstr ""
+
+#. Nfu49
+#: 03060100.xhp
+msgctxt ""
+"03060100.xhp\n"
+"hd_id3148946\n"
+"help.text"
+msgid "Parameters:"
+msgstr ""
+
+#. ovB8C
+#: 03060100.xhp
+msgctxt ""
+"03060100.xhp\n"
+"par_id3149457\n"
+"help.text"
+msgid "<emph>Result:</emph> Any numeric variable that records the result of the combination."
+msgstr ""
+
+#. Fqpsu
+#: 03060100.xhp
+msgctxt ""
+"03060100.xhp\n"
+"par_id3150541\n"
+"help.text"
+msgid "<emph>Expression1, Expression2:</emph> Any expressions that you want to combine."
+msgstr ""
+
+#. iXktT
+#: 03060100.xhp
+msgctxt ""
+"03060100.xhp\n"
+"par_id3156215\n"
+"help.text"
+msgid "Boolean expressions combined with AND only return the value <emph>True</emph> if both expressions evaluate to <emph>True</emph>:"
+msgstr ""
+
+#. EW3Cz
+#: 03060100.xhp
+msgctxt ""
+"03060100.xhp\n"
+"par_id3150870\n"
+"help.text"
+msgid "<emph>True</emph> AND <emph>True</emph> returns <emph>True</emph>; for all other combinations the result is <emph>False</emph>."
+msgstr ""
+
+#. B6iuu
+#: 03060100.xhp
+msgctxt ""
+"03060100.xhp\n"
+"par_id3153768\n"
+"help.text"
+msgid "The AND operator also performs a bitwise comparison of identically positioned bits in two numeric expressions."
+msgstr ""
+
+#. fiZ9F
+#: 03060100.xhp
+msgctxt ""
+"03060100.xhp\n"
+"hd_id3153727\n"
+"help.text"
+msgid "Example:"
+msgstr ""
+
+#. wxads
+#: 03060100.xhp
+msgctxt ""
+"03060100.xhp\n"
+"par_id3146984\n"
+"help.text"
+msgid "vVarOut = A > B And B > C ' returns -1"
+msgstr ""
+
+#. SdE4N
+#: 03060100.xhp
+msgctxt ""
+"03060100.xhp\n"
+"par_id3154014\n"
+"help.text"
+msgid "vVarOut = B > A And B > C ' returns 0"
+msgstr ""
+
+#. G6dnE
+#: 03060100.xhp
+msgctxt ""
+"03060100.xhp\n"
+"par_id3149262\n"
+"help.text"
+msgid "vVarOut = A > B And B > D ' returns 0"
+msgstr ""
+
+#. PFew6
+#: 03060100.xhp
+msgctxt ""
+"03060100.xhp\n"
+"par_id3145751\n"
+"help.text"
+msgid "vVarOut = (B > D And B > A) ' returns 0"
+msgstr ""
+
+#. kRzbt
+#: 03060100.xhp
+msgctxt ""
+"03060100.xhp\n"
+"par_id3147394\n"
+"help.text"
+msgid "vVarOut = B And A ' returns 8 due to the bitwise And combination of both arguments"
+msgstr ""
+
+#. BAgFA
+#: 03060200.xhp
+msgctxt ""
+"03060200.xhp\n"
+"tit\n"
+"help.text"
+msgid "Eqv Operator"
+msgstr ""
+
+#. q6v9d
+#: 03060200.xhp
+msgctxt ""
+"03060200.xhp\n"
+"bm_id3156344\n"
+"help.text"
+msgid "<bookmark_value>Eqv operator (logical)</bookmark_value>"
+msgstr ""
+
+#. eCbAp
+#: 03060200.xhp
+msgctxt ""
+"03060200.xhp\n"
+"hd_id3156344\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03060200.xhp\" name=\"Eqv Operator\">Eqv Operator</link>"
+msgstr ""
+
+#. oTT4F
+#: 03060200.xhp
+msgctxt ""
+"03060200.xhp\n"
+"par_id3149656\n"
+"help.text"
+msgid "Calculates the logical equivalence of two expressions."
+msgstr ""
+
+#. sRZNW
+#: 03060200.xhp
+msgctxt ""
+"03060200.xhp\n"
+"hd_id3154367\n"
+"help.text"
+msgid "Syntax:"
+msgstr ""
+
+#. m9bM6
+#: 03060200.xhp
+msgctxt ""
+"03060200.xhp\n"
+"par_id3154910\n"
+"help.text"
+msgid "Result = Expression1 Eqv Expression2"
+msgstr ""
+
+#. 7fkPv
+#: 03060200.xhp
+msgctxt ""
+"03060200.xhp\n"
+"hd_id3151043\n"
+"help.text"
+msgid "Parameters:"
+msgstr ""
+
+#. DCU3B
+#: 03060200.xhp
+msgctxt ""
+"03060200.xhp\n"
+"par_id3150869\n"
+"help.text"
+msgid "<emph>Result:</emph> Any numeric variable that contains the result of the comparison."
+msgstr ""
+
+#. YrAyQ
+#: 03060200.xhp
+msgctxt ""
+"03060200.xhp\n"
+"par_id3150448\n"
+"help.text"
+msgid "<emph>Expression1, Expression2:</emph> Any expressions that you want to compare."
+msgstr ""
+
+#. SBRud
+#: 03060200.xhp
+msgctxt ""
+"03060200.xhp\n"
+"par_id3149562\n"
+"help.text"
+msgid "When testing for equivalence between Boolean expressions, the result is <emph>True</emph> if both expressions are either <emph>True</emph> or <emph>False</emph>."
+msgstr ""
+
+#. XrGXb
+#: 03060200.xhp
+msgctxt ""
+"03060200.xhp\n"
+"par_id3154319\n"
+"help.text"
+msgid "In a bit-wise comparison, the Eqv operator only sets the corresponding bit in the result if a bit is set in both expressions, or in neither expression."
+msgstr ""
+
+#. FpFjm
+#: 03060200.xhp
+msgctxt ""
+"03060200.xhp\n"
+"hd_id3159154\n"
+"help.text"
+msgid "Example:"
+msgstr ""
+
+#. CTzEE
+#: 03060200.xhp
+msgctxt ""
+"03060200.xhp\n"
+"par_id3152462\n"
+"help.text"
+msgid "vOut = A > B Eqv B > C ' returns -1"
+msgstr ""
+
+#. AABHv
+#: 03060200.xhp
+msgctxt ""
+"03060200.xhp\n"
+"par_id3153191\n"
+"help.text"
+msgid "vOut = B > A Eqv B > C ' returns 0"
+msgstr ""
+
+#. NzGSq
+#: 03060200.xhp
+msgctxt ""
+"03060200.xhp\n"
+"par_id3145799\n"
+"help.text"
+msgid "vOut = A > B Eqv B > D ' returns 0"
+msgstr ""
+
+#. Dj4eg
+#: 03060200.xhp
+msgctxt ""
+"03060200.xhp\n"
+"par_id3149412\n"
+"help.text"
+msgid "vOut = (B > D Eqv B > A) ' returns -1"
+msgstr ""
+
+#. 6UE66
+#: 03060200.xhp
+msgctxt ""
+"03060200.xhp\n"
+"par_id3149959\n"
+"help.text"
+msgid "vOut = B Eqv A ' returns -3"
+msgstr ""
+
+#. e6CH3
+#: 03060300.xhp
+msgctxt ""
+"03060300.xhp\n"
+"tit\n"
+"help.text"
+msgid "Imp Operator"
+msgstr ""
+
+#. QBcCo
+#: 03060300.xhp
+msgctxt ""
+"03060300.xhp\n"
+"bm_id3156024\n"
+"help.text"
+msgid "<bookmark_value>Imp operator (logical)</bookmark_value>"
+msgstr ""
+
+#. PnSuL
+#: 03060300.xhp
+msgctxt ""
+"03060300.xhp\n"
+"hd_id3156024\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03060300.xhp\" name=\"Imp Operator\">Imp Operator</link>"
+msgstr ""
+
+#. Zk7uh
+#: 03060300.xhp
+msgctxt ""
+"03060300.xhp\n"
+"par_id3148947\n"
+"help.text"
+msgid "Performs a logical implication on two expressions."
+msgstr ""
+
+#. KSTDz
+#: 03060300.xhp
+msgctxt ""
+"03060300.xhp\n"
+"hd_id3148664\n"
+"help.text"
+msgid "Syntax:"
+msgstr ""
+
+#. pVyFU
+#: 03060300.xhp
+msgctxt ""
+"03060300.xhp\n"
+"par_id3149656\n"
+"help.text"
+msgid "Result = Expression1 Imp Expression2"
+msgstr ""
+
+#. gDpsZ
+#: 03060300.xhp
+msgctxt ""
+"03060300.xhp\n"
+"hd_id3151212\n"
+"help.text"
+msgid "Parameters:"
+msgstr ""
+
+#. pDyKZ
+#: 03060300.xhp
+msgctxt ""
+"03060300.xhp\n"
+"par_id3154910\n"
+"help.text"
+msgid "<emph>Result:</emph> Any numeric variable that contains the result of the implication."
+msgstr ""
+
+#. Xb3AG
+#: 03060300.xhp
+msgctxt ""
+"03060300.xhp\n"
+"par_id3156281\n"
+"help.text"
+msgid "<emph>Expression1, Expression2:</emph> Any expressions that you want to evaluate with the Imp operator."
+msgstr ""
+
+#. Co5Tp
+#: 03060300.xhp
+msgctxt ""
+"03060300.xhp\n"
+"par_id3150440\n"
+"help.text"
+msgid "If you use the Imp operator in Boolean expressions, False is only returned if the first expression evaluates to True and the second expression to False."
+msgstr ""
+
+#. d8L7N
+#: 03060300.xhp
+msgctxt ""
+"03060300.xhp\n"
+"par_id3163710\n"
+"help.text"
+msgid "If you use the Imp operator in bit expressions, a bit is deleted from the result if the corresponding bit is set in the first expression and the corresponding bit is deleted in the second expression."
+msgstr ""
+
+#. 7yM6j
+#: 03060300.xhp
+msgctxt ""
+"03060300.xhp\n"
+"hd_id3147318\n"
+"help.text"
+msgid "Example:"
+msgstr ""
+
+#. dcfRL
+#: 03060300.xhp
+msgctxt ""
+"03060300.xhp\n"
+"par_id3145750\n"
+"help.text"
+msgid "vOut = A > B Imp B > C ' returns -1"
+msgstr ""
+
+#. xKfkN
+#: 03060300.xhp
+msgctxt ""
+"03060300.xhp\n"
+"par_id3156441\n"
+"help.text"
+msgid "vOut = B > A Imp B > C ' returns -1"
+msgstr ""
+
+#. tRwwC
+#: 03060300.xhp
+msgctxt ""
+"03060300.xhp\n"
+"par_id3152596\n"
+"help.text"
+msgid "vOut = A > B Imp B > D ' returns 0"
+msgstr ""
+
+#. rNBo3
+#: 03060300.xhp
+msgctxt ""
+"03060300.xhp\n"
+"par_id3154942\n"
+"help.text"
+msgid "vOut = (B > D Imp B > A) ' returns -1"
+msgstr ""
+
+#. VMGQS
+#: 03060300.xhp
+msgctxt ""
+"03060300.xhp\n"
+"par_id3154492\n"
+"help.text"
+msgid "vOut = B Imp A ' returns -1"
+msgstr ""
+
+#. QbLzR
+#: 03060400.xhp
+msgctxt ""
+"03060400.xhp\n"
+"tit\n"
+"help.text"
+msgid "Not Operator"
+msgstr ""
+
+#. UfoBn
+#: 03060400.xhp
+msgctxt ""
+"03060400.xhp\n"
+"bm_id3156024\n"
+"help.text"
+msgid "<bookmark_value>Not operator (logical)</bookmark_value>"
+msgstr ""
+
+#. 2T39N
+#: 03060400.xhp
+msgctxt ""
+"03060400.xhp\n"
+"hd_id3156024\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03060400.xhp\" name=\"Not Operator\">Not Operator</link>"
+msgstr ""
+
+#. ejJg3
+#: 03060400.xhp
+msgctxt ""
+"03060400.xhp\n"
+"par_id3159414\n"
+"help.text"
+msgid "Negates an expression by inverting the bit values."
+msgstr ""
+
+#. L2jEZ
+#: 03060400.xhp
+msgctxt ""
+"03060400.xhp\n"
+"hd_id3149457\n"
+"help.text"
+msgid "Syntax:"
+msgstr ""
+
+#. Ac9zW
+#: 03060400.xhp
+msgctxt ""
+"03060400.xhp\n"
+"par_id3150360\n"
+"help.text"
+msgid "Result = Not Expression"
+msgstr ""
+
+#. xQY9B
+#: 03060400.xhp
+msgctxt ""
+"03060400.xhp\n"
+"hd_id3151211\n"
+"help.text"
+msgid "Parameters:"
+msgstr ""
+
+#. c36TE
+#: 03060400.xhp
+msgctxt ""
+"03060400.xhp\n"
+"par_id3147228\n"
+"help.text"
+msgid "<emph>Result:</emph> Any numeric variable that contains the result of the negation."
+msgstr ""
+
+#. jmwgd
+#: 03060400.xhp
+msgctxt ""
+"03060400.xhp\n"
+"par_id3154124\n"
+"help.text"
+msgid "<emph>Expression:</emph> Any expression that you want to negate."
+msgstr ""
+
+#. fJhHL
+#: 03060400.xhp
+msgctxt ""
+"03060400.xhp\n"
+"par_id3150868\n"
+"help.text"
+msgid "When a Boolean expression is negated, the value True changes to False, and the value False changes to True."
+msgstr ""
+
+#. fMoFC
+#: 03060400.xhp
+msgctxt ""
+"03060400.xhp\n"
+"par_id3145785\n"
+"help.text"
+msgid "In a bitwise negation each individual bit is inverted."
+msgstr ""
+
+#. s8YGh
+#: 03060400.xhp
+msgctxt ""
+"03060400.xhp\n"
+"hd_id3153093\n"
+"help.text"
+msgid "Example:"
+msgstr ""
+
+#. DcWMG
+#: 03060400.xhp
+msgctxt ""
+"03060400.xhp\n"
+"par_id3145749\n"
+"help.text"
+msgid "vOut = Not vA ' Returns -11"
+msgstr ""
+
+#. AbEfx
+#: 03060400.xhp
+msgctxt ""
+"03060400.xhp\n"
+"par_id3148645\n"
+"help.text"
+msgid "vOut = Not(vC > vD) ' Returns -1"
+msgstr ""
+
+#. xJ73N
+#: 03060400.xhp
+msgctxt ""
+"03060400.xhp\n"
+"par_id3156441\n"
+"help.text"
+msgid "vOut = Not(vB > vA) ' Returns -1"
+msgstr ""
+
+#. HRuUN
+#: 03060400.xhp
+msgctxt ""
+"03060400.xhp\n"
+"par_id3152596\n"
+"help.text"
+msgid "vOut = Not(vA > vB) ' Returns 0"
+msgstr ""
+
+#. QAPoU
+#: 03060500.xhp
+msgctxt ""
+"03060500.xhp\n"
+"tit\n"
+"help.text"
+msgid "Or Operator"
+msgstr ""
+
+#. xz2rX
+#: 03060500.xhp
+msgctxt ""
+"03060500.xhp\n"
+"bm_id3150986\n"
+"help.text"
+msgid "<bookmark_value>Or operator (logical)</bookmark_value>"
+msgstr ""
+
+#. gpY4c
+#: 03060500.xhp
+msgctxt ""
+"03060500.xhp\n"
+"hd_id3150986\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03060500.xhp\" name=\"Or Operator\">Or Operator</link>"
+msgstr ""
+
+#. nTnSR
+#: 03060500.xhp
+msgctxt ""
+"03060500.xhp\n"
+"par_id3148552\n"
+"help.text"
+msgid "Performs a logical OR disjunction on two expressions."
+msgstr ""
+
+#. A96vA
+#: 03060500.xhp
+msgctxt ""
+"03060500.xhp\n"
+"hd_id3148664\n"
+"help.text"
+msgid "Syntax:"
+msgstr ""
+
+#. BJ9g9
+#: 03060500.xhp
+msgctxt ""
+"03060500.xhp\n"
+"par_id3150358\n"
+"help.text"
+msgid "Result = Expression1 Or Expression2"
+msgstr ""
+
+#. aL4ao
+#: 03060500.xhp
+msgctxt ""
+"03060500.xhp\n"
+"hd_id3151211\n"
+"help.text"
+msgid "Parameters:"
+msgstr ""
+
+#. m55rD
+#: 03060500.xhp
+msgctxt ""
+"03060500.xhp\n"
+"par_id3153192\n"
+"help.text"
+msgid "<emph>Result:</emph> Any numeric variable that contains the result of the disjunction."
+msgstr ""
+
+#. 6mSjB
+#: 03060500.xhp
+msgctxt ""
+"03060500.xhp\n"
+"par_id3147229\n"
+"help.text"
+msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to compare."
+msgstr ""
+
+#. ugB6F
+#: 03060500.xhp
+msgctxt ""
+"03060500.xhp\n"
+"par_id3154684\n"
+"help.text"
+msgid "A logical OR disjunction of two Boolean expressions returns the value True if at least one comparison expression is True."
+msgstr ""
+
+#. Wur7C
+#: 03060500.xhp
+msgctxt ""
+"03060500.xhp\n"
+"par_id3153768\n"
+"help.text"
+msgid "A bit-wise comparison sets a bit in the result if the corresponding bit is set in at least one of the two expressions."
+msgstr ""
+
+#. JkoK9
+#: 03060500.xhp
+msgctxt ""
+"03060500.xhp\n"
+"hd_id3161831\n"
+"help.text"
+msgid "Example:"
+msgstr ""
+
+#. EoFeE
+#: 03060600.xhp
+msgctxt ""
+"03060600.xhp\n"
+"tit\n"
+"help.text"
+msgid "XOR Operator"
+msgstr ""
+
+#. buviM
+#: 03060600.xhp
+msgctxt ""
+"03060600.xhp\n"
+"bm_id3156024\n"
+"help.text"
+msgid "<bookmark_value>XOR operator (logical)</bookmark_value>"
+msgstr ""
+
+#. uc4fX
+#: 03060600.xhp
+msgctxt ""
+"03060600.xhp\n"
+"hd_id3156024\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03060600.xhp\" name=\"XOR Operator\">XOR Operator</link>"
+msgstr ""
+
+#. kbfD6
+#: 03060600.xhp
+msgctxt ""
+"03060600.xhp\n"
+"par_id3159414\n"
+"help.text"
+msgid "Performs a logical Exclusive-Or combination of two expressions."
+msgstr ""
+
+#. DpFcu
+#: 03060600.xhp
+msgctxt ""
+"03060600.xhp\n"
+"hd_id3153381\n"
+"help.text"
+msgid "Syntax:"
+msgstr ""
+
+#. kc98h
+#: 03060600.xhp
+msgctxt ""
+"03060600.xhp\n"
+"par_id3150400\n"
+"help.text"
+msgid "Result = Expression1 XOR Expression2"
+msgstr ""
+
+#. JdDdD
+#: 03060600.xhp
+msgctxt ""
+"03060600.xhp\n"
+"hd_id3153968\n"
+"help.text"
+msgid "Parameters:"
+msgstr ""
+
+#. VY7za
+#: 03060600.xhp
+msgctxt ""
+"03060600.xhp\n"
+"par_id3150448\n"
+"help.text"
+msgid "<emph>Result:</emph> Any numeric variable that contains the result of the combination."
+msgstr ""
+
+#. uu2Z7
+#: 03060600.xhp
+msgctxt ""
+"03060600.xhp\n"
+"par_id3125864\n"
+"help.text"
+msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to combine."
+msgstr ""
+
+#. J4RFt
+#: 03060600.xhp
+msgctxt ""
+"03060600.xhp\n"
+"par_id3150439\n"
+"help.text"
+msgid "A logical Exclusive-Or conjunction of two Boolean expressions returns the value True only if both expressions are different from each other."
+msgstr ""
+
+#. M3HqC
+#: 03060600.xhp
+msgctxt ""
+"03060600.xhp\n"
+"par_id3153770\n"
+"help.text"
+msgid "A bitwise Exclusive-Or conjunction returns a bit if the corresponding bit is set in only one of the two expressions."
+msgstr ""
+
+#. ZHPEa
+#: 03060600.xhp
+msgctxt ""
+"03060600.xhp\n"
+"hd_id3153366\n"
+"help.text"
+msgid "Example:"
+msgstr ""
+
+#. a6QUg
+#: 03060600.xhp
+msgctxt ""
+"03060600.xhp\n"
+"par_id3156442\n"
+"help.text"
+msgid "vOut = vA > vB XOR vB > vC ' returns 0"
+msgstr ""
+
+#. dFJEY
+#: 03060600.xhp
+msgctxt ""
+"03060600.xhp\n"
+"par_id3153191\n"
+"help.text"
+msgid "vOut = vB > vA XOR vB > vC ' returns -1"
+msgstr ""
+
+#. krhnN
+#: 03060600.xhp
+msgctxt ""
+"03060600.xhp\n"
+"par_id3153144\n"
+"help.text"
+msgid "vOut = vA > vB XOR vB > vD ' returns -1"
+msgstr ""
+
+#. GzZnm
+#: 03060600.xhp
+msgctxt ""
+"03060600.xhp\n"
+"par_id3154944\n"
+"help.text"
+msgid "vOut = (vB > vD XOR vB > vA) ' returns 0"
+msgstr ""
+
+#. T6GVY
+#: 03060600.xhp
+msgctxt ""
+"03060600.xhp\n"
+"par_id3148455\n"
+"help.text"
+msgid "vOut = vB XOR vA ' returns 2"
+msgstr ""
+
+#. zV86c
+#: 03070000.xhp
+msgctxt ""
+"03070000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Mathematical Operators"
+msgstr ""
+
+#. LGC5F
+#: 03070000.xhp
+msgctxt ""
+"03070000.xhp\n"
+"hd_id3149234\n"
+"help.text"
+msgid "<variable id=\"MathOper_h1\"><link href=\"text/sbasic/shared/03070000.xhp\" name=\"Mathematical Operators\">Mathematical Operators</link></variable>"
+msgstr ""
+
+#. YBZiW
+#: 03070000.xhp
+msgctxt ""
+"03070000.xhp\n"
+"par_id3145068\n"
+"help.text"
+msgid "The following mathematical operators are supported in $[officename] Basic."
+msgstr ""
+
+#. 2vAzz
+#: 03070000.xhp
+msgctxt ""
+"03070000.xhp\n"
+"par_id3148552\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 ""
+
+#. 33jkW
+#: 03070100.xhp
+msgctxt ""
+"03070100.xhp\n"
+"tit\n"
+"help.text"
+msgid "\"-\" Operator"
+msgstr ""
+
+#. ZBLAF
+#: 03070100.xhp
+msgctxt ""
+"03070100.xhp\n"
+"bm_id3156042\n"
+"help.text"
+msgid "<bookmark_value>\"-\" operator (mathematical)</bookmark_value>"
+msgstr ""
+
+#. REnWh
+#: 03070100.xhp
+msgctxt ""
+"03070100.xhp\n"
+"hd_id3156042\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03070100.xhp\">\"-\" Operator</link>"
+msgstr ""
+
+#. FBBhn
+#: 03070100.xhp
+msgctxt ""
+"03070100.xhp\n"
+"par_id3153345\n"
+"help.text"
+msgid "Subtracts two values."
+msgstr ""
+
+#. 2A6Pz
+#: 03070100.xhp
+msgctxt ""
+"03070100.xhp\n"
+"hd_id3149416\n"
+"help.text"
+msgid "Syntax:"
+msgstr ""
+
+#. EYgYp
+#: 03070100.xhp
+msgctxt ""
+"03070100.xhp\n"
+"par_id3156023\n"
+"help.text"
+msgid "Result = Expression1 - Expression2"
+msgstr ""
+
+#. UPLn7
+#: 03070100.xhp
+msgctxt ""
+"03070100.xhp\n"
+"hd_id3154760\n"
+"help.text"
+msgid "Parameters:"
+msgstr ""
+
+#. KfUCm
+#: 03070100.xhp
+msgctxt ""
+"03070100.xhp\n"
+"par_id3147560\n"
+"help.text"
+msgid "<emph>Result:</emph> Any numerical expression that contains the result of the subtraction."
+msgstr ""
+
+#. Es2mR
+#: 03070100.xhp
+msgctxt ""
+"03070100.xhp\n"
+"par_id3150398\n"
+"help.text"
+msgid "<emph>Expression1, Expression2:</emph> Any numerical expressions that you want to subtract."
+msgstr ""
+
+#. pPCuC
+#: 03070100.xhp
+msgctxt ""
+"03070100.xhp\n"
+"hd_id3154366\n"
+"help.text"
+msgid "Example:"
+msgstr ""
+
+#. KVxAR
+#: 03070200.xhp
+msgctxt ""
+"03070200.xhp\n"
+"tit\n"
+"help.text"
+msgid "\"*\" Operator"
+msgstr ""
+
+#. Zw3WF
+#: 03070200.xhp
+msgctxt ""
+"03070200.xhp\n"
+"bm_id3147573\n"
+"help.text"
+msgid "<bookmark_value>\"*\" operator (mathematical)</bookmark_value>"
+msgstr ""
+
+#. AzKi3
+#: 03070200.xhp
+msgctxt ""
+"03070200.xhp\n"
+"hd_id3147573\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03070200.xhp\">\"*\" Operator</link>"
+msgstr ""
+
+#. gRpRu
+#: 03070200.xhp
+msgctxt ""
+"03070200.xhp\n"
+"par_id3154347\n"
+"help.text"
+msgid "Multiplies two values."
+msgstr ""
+
+#. K7Gxq
+#: 03070200.xhp
+msgctxt ""
+"03070200.xhp\n"
+"hd_id3148946\n"
+"help.text"
+msgid "Syntax:"
+msgstr ""
+
+#. 4rQJq
+#: 03070200.xhp
+msgctxt ""
+"03070200.xhp\n"
+"par_id3150358\n"
+"help.text"
+msgid "Result = Expression1 * Expression2"
+msgstr ""
+
+#. AgD4G
+#: 03070200.xhp
+msgctxt ""
+"03070200.xhp\n"
+"hd_id3150400\n"
+"help.text"
+msgid "Parameters:"
+msgstr ""
+
+#. 3dkvD
+#: 03070200.xhp
+msgctxt ""
+"03070200.xhp\n"
+"par_id3154365\n"
+"help.text"
+msgid "<emph>Result:</emph> Any numeric expression that records the result of a multiplication."
+msgstr ""
+
+#. VCa9p
+#: 03070200.xhp
+msgctxt ""
+"03070200.xhp\n"
+"par_id3154685\n"
+"help.text"
+msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to multiply."
+msgstr ""
+
+#. GRKoJ
+#: 03070200.xhp
+msgctxt ""
+"03070200.xhp\n"
+"hd_id3153968\n"
+"help.text"
+msgid "Example:"
+msgstr ""
+
+#. g7bfs
+#: 03070300.xhp
+msgctxt ""
+"03070300.xhp\n"
+"tit\n"
+"help.text"
+msgid "\"+\" Operator"
+msgstr ""
+
+#. BhsEw
+#: 03070300.xhp
+msgctxt ""
+"03070300.xhp\n"
+"bm_id3145316\n"
+"help.text"
+msgid "<bookmark_value>\"+\" operator (mathematical)</bookmark_value>"
+msgstr ""
+
+#. qBbMD
+#: 03070300.xhp
+msgctxt ""
+"03070300.xhp\n"
+"hd_id3145316\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03070300.xhp\">\"+\" Operator</link>"
+msgstr ""
+
+#. kK3XR
+#: 03070300.xhp
+msgctxt ""
+"03070300.xhp\n"
+"par_id3145068\n"
+"help.text"
+msgid "Adds or combines two expressions."
+msgstr ""
+
+#. FnHZd
+#: 03070300.xhp
+msgctxt ""
+"03070300.xhp\n"
+"hd_id3144500\n"
+"help.text"
+msgid "Syntax:"
+msgstr ""
+
+#. ozVez
+#: 03070300.xhp
+msgctxt ""
+"03070300.xhp\n"
+"par_id3150358\n"
+"help.text"
+msgid "Result = Expression1 + Expression2"
+msgstr ""
+
+#. 7cpVd
+#: 03070300.xhp
+msgctxt ""
+"03070300.xhp\n"
+"hd_id3150400\n"
+"help.text"
+msgid "Parameters:"
+msgstr ""
+
+#. xuUCC
+#: 03070300.xhp
+msgctxt ""
+"03070300.xhp\n"
+"par_id3154123\n"
+"help.text"
+msgid "<emph>Result:</emph> Any numerical expression that contains the result of the addition."
+msgstr ""
+
+#. Pz34B
+#: 03070300.xhp
+msgctxt ""
+"03070300.xhp\n"
+"par_id3150870\n"
+"help.text"
+msgid "<emph>Expression1, Expression2:</emph> Any numerical expressions that you want to combine or to add."
+msgstr ""
+
+#. ULcAd
+#: 03070300.xhp
+msgctxt ""
+"03070300.xhp\n"
+"hd_id3153969\n"
+"help.text"
+msgid "Example:"
+msgstr ""
+
+#. BWAdB
+#: 03070400.xhp
+msgctxt ""
+"03070400.xhp\n"
+"tit\n"
+"help.text"
+msgid "\"/\" Operator"
+msgstr ""
+
+#. dAgNf
+#: 03070400.xhp
+msgctxt ""
+"03070400.xhp\n"
+"bm_id3150669\n"
+"help.text"
+msgid "<bookmark_value>\"/\" operator (mathematical)</bookmark_value>"
+msgstr ""
+
+#. EPNmB
+#: 03070400.xhp
+msgctxt ""
+"03070400.xhp\n"
+"hd_id3150669\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03070400.xhp\">\"/\" Operator</link>"
+msgstr ""
+
+#. EDugT
+#: 03070400.xhp
+msgctxt ""
+"03070400.xhp\n"
+"par_id3149670\n"
+"help.text"
+msgid "Divides two values."
+msgstr ""
+
+#. AgkFx
+#: 03070400.xhp
+msgctxt ""
+"03070400.xhp\n"
+"hd_id3148946\n"
+"help.text"
+msgid "Syntax:"
+msgstr ""
+
+#. CKBvW
+#: 03070400.xhp
+msgctxt ""
+"03070400.xhp\n"
+"par_id3153360\n"
+"help.text"
+msgid "Result = Expression1 / Expression2"
+msgstr ""
+
+#. CnmQv
+#: 03070400.xhp
+msgctxt ""
+"03070400.xhp\n"
+"hd_id3150359\n"
+"help.text"
+msgid "Parameters:"
+msgstr ""
+
+#. CxSog
+#: 03070400.xhp
+msgctxt ""
+"03070400.xhp\n"
+"par_id3154141\n"
+"help.text"
+msgid "<emph>Result:</emph> Any numerical value that contains the result of the division."
+msgstr ""
+
+#. eAqi3
+#: 03070400.xhp
+msgctxt ""
+"03070400.xhp\n"
+"par_id3150448\n"
+"help.text"
+msgid "<emph>Expression1, Expression2:</emph> Any numerical expressions that you want to divide."
+msgstr ""
+
+#. 4cDoY
+#: 03070400.xhp
+msgctxt ""
+"03070400.xhp\n"
+"hd_id3154684\n"
+"help.text"
+msgid "Example:"
+msgstr ""
+
+#. gBu8b
+#: 03070500.xhp
+msgctxt ""
+"03070500.xhp\n"
+"tit\n"
+"help.text"
+msgid "\"^\" Operator"
+msgstr ""
+
+#. D8PQC
+#: 03070500.xhp
+msgctxt ""
+"03070500.xhp\n"
+"bm_id3145315\n"
+"help.text"
+msgid "<bookmark_value>\"^\" operator (mathematical)</bookmark_value>"
+msgstr ""
+
+#. A4Ynt
+#: 03070500.xhp
+msgctxt ""
+"03070500.xhp\n"
+"hd_id3145315\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03070500.xhp\">\"^\" Operator</link>"
+msgstr ""
+
+#. YERQd
+#: 03070500.xhp
+msgctxt ""
+"03070500.xhp\n"
+"par_id3149670\n"
+"help.text"
+msgid "Raises a number to a power."
+msgstr ""
+
+#. XeTVF
+#: 03070500.xhp
+msgctxt ""
+"03070500.xhp\n"
+"hd_id3147264\n"
+"help.text"
+msgid "Syntax:"
+msgstr ""
+
+#. Fy8LW
+#: 03070500.xhp
+msgctxt ""
+"03070500.xhp\n"
+"par_id3149656\n"
+"help.text"
+msgid "Result = Expression ^ Exponent"
+msgstr ""
+
+#. PaFEz
+#: 03070500.xhp
+msgctxt ""
+"03070500.xhp\n"
+"hd_id3151211\n"
+"help.text"
+msgid "Parameters:"
+msgstr ""
+
+#. 6MQEB
+#: 03070500.xhp
+msgctxt ""
+"03070500.xhp\n"
+"par_id3153192\n"
+"help.text"
+msgid "<emph>Result:</emph> Any numerical expression that contains the result of the number raised to a power."
+msgstr ""
+
+#. RCCzV
+#: 03070500.xhp
+msgctxt ""
+"03070500.xhp\n"
+"par_id3150448\n"
+"help.text"
+msgid "<emph>Expression:</emph> Numerical value that you want to raise to a power."
+msgstr ""
+
+#. tfoeE
+#: 03070500.xhp
+msgctxt ""
+"03070500.xhp\n"
+"par_id3156422\n"
+"help.text"
+msgid "<emph>Exponent:</emph> The value of the power that you want to raise the expression to."
+msgstr ""
+
+#. FjBtB
+#: 03070500.xhp
+msgctxt ""
+"03070500.xhp\n"
+"hd_id3147287\n"
+"help.text"
+msgid "Example:"
+msgstr ""
+
+#. BmEyt
+#: 03070500.xhp
+msgctxt ""
+"03070500.xhp\n"
+"par_id3146984\n"
+"help.text"
+msgid "Print Exp ( 23 * Log( 12.345 ) ) ' Raises by forming a logarithm"
+msgstr ""
+
+#. nN5DM
+#: 03070600.xhp
+msgctxt ""
+"03070600.xhp\n"
+"tit\n"
+"help.text"
+msgid "Mod Operator"
+msgstr ""
+
+#. t5HBD
+#: 03070600.xhp
+msgctxt ""
+"03070600.xhp\n"
+"bm_id3150669\n"
+"help.text"
+msgid "<bookmark_value>MOD operator (mathematical)</bookmark_value>"
+msgstr ""
+
+#. u5igy
+#: 03070600.xhp
+msgctxt ""
+"03070600.xhp\n"
+"hd_id3150669\n"
+"help.text"
+msgid "<variable id=\"MOD_h1\"><link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator\">Mod Operator</link></variable>"
+msgstr ""
+
+#. YEMEy
+#: 03070600.xhp
+msgctxt ""
+"03070600.xhp\n"
+"par_id3148686\n"
+"help.text"
+msgid "The <literal>MOD</literal> operator takes in two numeric expressions and returns the remainder of the division."
+msgstr ""
+
+#. BqAV6
+#: 03070600.xhp
+msgctxt ""
+"03070600.xhp\n"
+"par_id3148004\n"
+"help.text"
+msgid "For example, the result of <literal>21 MOD 6</literal> is <literal>3</literal> because after dividing 21 by 6, the remainder of the division is 3."
+msgstr ""
+
+#. 27ipg
+#: 03070600.xhp
+msgctxt ""
+"03070600.xhp\n"
+"par_id111617300964049\n"
+"help.text"
+msgid "If the <literal>MOD</literal> operation involves non-integer values, both operands are rounded to the nearest integer values. Hence, the value returned by a <literal>MOD</literal> operation will always be an integer number."
+msgstr ""
+
+#. CUAfd
+#: 03070600.xhp
+msgctxt ""
+"03070600.xhp\n"
+"par_id561617302820104\n"
+"help.text"
+msgid "For example, the expression <literal>16.4 MOD 5.9</literal> is evaluated as follows:"
+msgstr ""
+
+#. 8iqao
+#: 03070600.xhp
+msgctxt ""
+"03070600.xhp\n"
+"par_id151617302878527\n"
+"help.text"
+msgid "The value 16.4 is rounded to 16."
+msgstr ""
+
+#. x5XXB
+#: 03070600.xhp
+msgctxt ""
+"03070600.xhp\n"
+"par_id351617303087259\n"
+"help.text"
+msgid "The value 5.9 is rounded to 6."
+msgstr ""
+
+#. VFy9y
+#: 03070600.xhp
+msgctxt ""
+"03070600.xhp\n"
+"par_id91617303114774\n"
+"help.text"
+msgid "The operation <literal>16 MOD 6</literal> returns 4, which is the remainder after dividing 16 by 6."
+msgstr ""
+
+#. FQW9C
+#: 03070600.xhp
+msgctxt ""
+"03070600.xhp\n"
+"par_id921617302349290\n"
+"help.text"
+msgid "Be aware that BASIC's <literal>MOD</literal> operator and Calc's <link href=\"text/scalc/01/04060106.xhp#bm_id3158247\" name=\"MOD Function\">MOD Function</link> behave differently. In Calc, both operands can be decimal values and they are not rounded before division, thus the resulting remainder may be a decimal value."
+msgstr ""
+
+#. xEXBJ
+#: 03070600.xhp
+msgctxt ""
+"03070600.xhp\n"
+"par_id3147560\n"
+"help.text"
+msgid "Result = Expression1 MOD Expression2"
+msgstr ""
+
+#. Pyx3B
+#: 03070600.xhp
+msgctxt ""
+"03070600.xhp\n"
+"par_id3153380\n"
+"help.text"
+msgid "Integer"
+msgstr ""
+
+#. pk9HC
+#: 03070600.xhp
+msgctxt ""
+"03070600.xhp\n"
+"par_id3145172\n"
+"help.text"
+msgid "<emph>Result:</emph> Any numeric variable that contains the result of the <literal>MOD</literal> operation."
+msgstr ""
+
+#. BuYDX
+#: 03070600.xhp
+msgctxt ""
+"03070600.xhp\n"
+"par_id3151042\n"
+"help.text"
+msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions for which you want to calculate the remainder after the division of <literal>Expression1</literal> by <literal>Expression2</literal>."
+msgstr ""
+
+#. EMeDu
+#: 03070600.xhp
+msgctxt ""
+"03070600.xhp\n"
+"par_id3149483\n"
+"help.text"
+msgid "Print a Mod b 'Returns 2"
+msgstr ""
+
+#. C5zCg
+#: 03070600.xhp
+msgctxt ""
+"03070600.xhp\n"
+"par_id31494778\n"
+"help.text"
+msgid "Print a Mod b 'Returns 0"
+msgstr ""
+
+#. s2JEC
+#: 03070600.xhp
+msgctxt ""
+"03070600.xhp\n"
+"par_id3145273\n"
+"help.text"
+msgid "Print a Mod b 'Returns 4"
+msgstr ""
+
+#. agWNB
+#: 03070600.xhp
+msgctxt ""
+"03070600.xhp\n"
+"par_id771617305550403\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060106.xhp#bm_id3158247\" name=\"Calc MOD Function\">MOD Function</link>"
+msgstr ""
+
+#. zzEFW
+#: 03070700.xhp
+msgctxt ""
+"03070700.xhp\n"
+"tit\n"
+"help.text"
+msgid "\"\\\" Operator"
+msgstr ""
+
+#. wFv3P
+#: 03070700.xhp
+msgctxt ""
+"03070700.xhp\n"
+"hd_id3150669\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03070700.xhp\">\"\\\" Operator</link>"
+msgstr ""
+
+#. tUDMG
+#: 03070700.xhp
+msgctxt ""
+"03070700.xhp\n"
+"par_id3149670\n"
+"help.text"
+msgid "Performs the integer division on two numbers and returns the result."
+msgstr ""
+
+#. 7hxCB
+#: 03070700.xhp
+msgctxt ""
+"03070700.xhp\n"
+"bm_id3150669\n"
+"help.text"
+msgid "<bookmark_value>Operators;Integer division (\\\\)</bookmark_value> <bookmark_value>\"\\\\\" operator (mathematical)</bookmark_value>"
+msgstr ""
+
+#. KDgG2
+#: 03070700.xhp
+msgctxt ""
+"03070700.xhp\n"
+"par_id3153360\n"
+"help.text"
+msgid "result = expression1 \\ expression2"
+msgstr ""
+
+#. jSHq3
+#: 03070700.xhp
+msgctxt ""
+"03070700.xhp\n"
+"par_id3154141\n"
+"help.text"
+msgid "<emph>result</emph>: A numerical value that contains the result of the integer division."
+msgstr ""
+
+#. K3YrU
+#: 03070700.xhp
+msgctxt ""
+"03070700.xhp\n"
+"par_id3150448\n"
+"help.text"
+msgid "<emph>expression1, expression2</emph>: Dividend and diviser operands of the integer division."
+msgstr ""
+
+#. sxofZ
+#: 03070700.xhp
+msgctxt ""
+"03070700.xhp\n"
+"par_id951642689912087\n"
+"help.text"
+msgid "Before division both operands are rounded to whole numbers. The fractional part of the result is dropped."
+msgstr ""
+
+#. BaAgA
+#: 03070700.xhp
+msgctxt ""
+"03070700.xhp\n"
+"par_idm1341471776\n"
+"help.text"
+msgid "Print 5 \\ 4 , 5 / 4 ' 1 , 1.25"
+msgstr ""
+
+#. NYoaW
+#: 03070700.xhp
+msgctxt ""
+"03070700.xhp\n"
+"par_idm1341471777\n"
+"help.text"
+msgid "Print 7 \\ 4 , 7 / 4 ' 1 , 1.75"
+msgstr ""
+
+#. cFFCi
+#: 03080000.xhp
+msgctxt ""
+"03080000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Numeric Functions"
+msgstr ""
+
+#. 9FiDu
+#: 03080000.xhp
+msgctxt ""
+"03080000.xhp\n"
+"hd_id3153127\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03080000.xhp\" name=\"Numeric Functions\">Numeric Functions</link>"
+msgstr ""
+
+#. XNbA4
+#: 03080000.xhp
+msgctxt ""
+"03080000.xhp\n"
+"par_id3148550\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 ""
+
+#. 7sD2R
+#: 03080100.xhp
+msgctxt ""
+"03080100.xhp\n"
+"tit\n"
+"help.text"
+msgid "Trigonometric Functions"
+msgstr ""
+
+#. W2faa
+#: 03080100.xhp
+msgctxt ""
+"03080100.xhp\n"
+"hd_id3159201\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03080100.xhp\" name=\"Trigonometric Functions\">Trigonometric Functions</link>"
+msgstr ""
+
+#. dtf2u
+#: 03080100.xhp
+msgctxt ""
+"03080100.xhp\n"
+"par_id3149180\n"
+"help.text"
+msgid "The following are the trigonometric functions that are supported in $[officename] Basic."
+msgstr ""
+
+#. oqGxb
+#: 03080101.xhp
+msgctxt ""
+"03080101.xhp\n"
+"tit\n"
+"help.text"
+msgid "Atn Function"
+msgstr ""
+
+#. ErQfT
+#: 03080101.xhp
+msgctxt ""
+"03080101.xhp\n"
+"bm_id3150616\n"
+"help.text"
+msgid "<bookmark_value>Atn function</bookmark_value>"
+msgstr ""
+
+#. KDeey
+#: 03080101.xhp
+msgctxt ""
+"03080101.xhp\n"
+"hd_id3150616\n"
+"help.text"
+msgid "<variable id=\"Atn_h1\"><link href=\"text/sbasic/shared/03080101.xhp\" name=\"Atn Function\">Atn Function</link></variable>"
+msgstr ""
+
+#. yugFQ
+#: 03080101.xhp
+msgctxt ""
+"03080101.xhp\n"
+"par_id3149346\n"
+"help.text"
+msgid "Trigonometric function that returns the arctangent of a numeric expression. The return value is in the range -Pi/2 to +Pi/2."
+msgstr ""
+
+#. tC5uH
+#: 03080101.xhp
+msgctxt ""
+"03080101.xhp\n"
+"par_id3143271\n"
+"help.text"
+msgid "The arctangent is the inverse of the tangent function. The <literal>Atn</literal> Function returns the angle \"Alpha\", expressed in radians, using the tangent of this angle. The function can also return the angle \"Alpha\" by comparing the ratio of the length of the side that is opposite of the angle to the length of the side that is adjacent to the angle in a right-angled triangle."
+msgstr ""
+
+#. HbFxP
+#: 03080101.xhp
+msgctxt ""
+"03080101.xhp\n"
+"par_id3145315\n"
+"help.text"
+msgid "<literal>Atn</literal>(side opposite the angle/side adjacent to angle)= Alpha"
+msgstr ""
+
+#. Wo87E
+#: 03080101.xhp
+msgctxt ""
+"03080101.xhp\n"
+"par_id3148947\n"
+"help.text"
+msgid "Atn (Number As Double) As Double"
+msgstr ""
+
+#. rLBjg
+#: 03080101.xhp
+msgctxt ""
+"03080101.xhp\n"
+"par_id3156212\n"
+"help.text"
+msgid "<emph>Number:</emph> Any numerical expression that represents the ratio of two sides of a right triangle. The <literal>Atn</literal> function returns the corresponding angle in radians (arctangent)."
+msgstr ""
+
+#. qhMAk
+#: 03080101.xhp
+msgctxt ""
+"03080101.xhp\n"
+"par_id3153192\n"
+"help.text"
+msgid "To convert radians to degrees, multiply radians by 180/pi."
+msgstr ""
+
+#. GEpFX
+#: 03080101.xhp
+msgctxt ""
+"03080101.xhp\n"
+"par_id3147230\n"
+"help.text"
+msgid "degree=(radian*180)/pi"
+msgstr ""
+
+#. GYxEc
+#: 03080101.xhp
+msgctxt ""
+"03080101.xhp\n"
+"par_id3125864\n"
+"help.text"
+msgid "radian=(degree*pi)/180"
+msgstr ""
+
+#. AGhFY
+#: 03080101.xhp
+msgctxt ""
+"03080101.xhp\n"
+"par_id3159252\n"
+"help.text"
+msgid "<literal>Pi</literal> is here the fixed circle constant with the rounded value 3.14159. <literal>Pi</literal> is a <link href=\"text/sbasic/shared/03040000.xhp#mathconstants\" name=\"pi\">Basic mathematical constant</link>."
+msgstr ""
+
+#. BBQTN
+#: 03080101.xhp
+msgctxt ""
+"03080101.xhp\n"
+"par_id3146985\n"
+"help.text"
+msgid "' The following example calculates for a right-angled triangle"
+msgstr ""
+
+#. RzgP4
+#: 03080101.xhp
+msgctxt ""
+"03080101.xhp\n"
+"par_id3145750\n"
+"help.text"
+msgid "' the angle Alpha from the tangent of the angle Alpha:"
+msgstr ""
+
+#. gatE3
+#: 03080101.xhp
+msgctxt ""
+"03080101.xhp\n"
+"par_id3151112\n"
+"help.text"
+msgid "' rounded Pi = 3.14159 Is a predefined constant"
+msgstr ""
+
+#. 9UM2j
+#: 03080101.xhp
+msgctxt ""
+"03080101.xhp\n"
+"par_id3149262\n"
+"help.text"
+msgid "d1 = InputBox(\"Enter the length of the side adjacent to the angle: \",\"Adjacent\")"
+msgstr ""
+
+#. 2a3P2
+#: 03080101.xhp
+msgctxt ""
+"03080101.xhp\n"
+"par_id3149482\n"
+"help.text"
+msgid "d2 = InputBox(\"Enter the length of the side opposite the angle: \",\"Opposite\")"
+msgstr ""
+
+#. 4c3PP
+#: 03080101.xhp
+msgctxt ""
+"03080101.xhp\n"
+"par_id3155415\n"
+"help.text"
+msgid "Print \"The Alpha angle is\"; (atn (d2/d1) * 180 / Pi); \" degrees\""
+msgstr ""
+
+#. FgjG3
+#: 03080102.xhp
+msgctxt ""
+"03080102.xhp\n"
+"tit\n"
+"help.text"
+msgid "Cos Function"
+msgstr ""
+
+#. pPUir
+#: 03080102.xhp
+msgctxt ""
+"03080102.xhp\n"
+"bm_id3154923\n"
+"help.text"
+msgid "<bookmark_value>Cos function</bookmark_value>"
+msgstr ""
+
+#. BEjXP
+#: 03080102.xhp
+msgctxt ""
+"03080102.xhp\n"
+"hd_id3154923\n"
+"help.text"
+msgid "<variable id=\"Cos_h1\"><link href=\"text/sbasic/shared/03080102.xhp\" name=\"Cos Function\">Cos Function</link></variable>"
+msgstr ""
+
+#. EEVjg
+#: 03080102.xhp
+msgctxt ""
+"03080102.xhp\n"
+"par_id3159413\n"
+"help.text"
+msgid "Calculates the cosine of an angle. The angle is specified in radians. The result lies between -1 and 1."
+msgstr ""
+
+#. iPRUc
+#: 03080102.xhp
+msgctxt ""
+"03080102.xhp\n"
+"par_id3150358\n"
+"help.text"
+msgid "Using the angle Alpha, the <literal>Cos</literal> function calculates the ratio of the length of the side that is adjacent to the angle, divided by the length of the hypotenuse in a right-angled triangle."
+msgstr ""
+
+#. eEzRP
+#: 03080102.xhp
+msgctxt ""
+"03080102.xhp\n"
+"par_id3154141\n"
+"help.text"
+msgid "<literal>Cos</literal>(Alpha) = Adjacent/Hypotenuse"
+msgstr ""
+
+#. zfq28
+#: 03080102.xhp
+msgctxt ""
+"03080102.xhp\n"
+"par_id3145172\n"
+"help.text"
+msgid "Cos (Number As Double) As Double"
+msgstr ""
+
+#. jbCKb
+#: 03080102.xhp
+msgctxt ""
+"03080102.xhp\n"
+"par_id3153770\n"
+"help.text"
+msgid "<emph>Number:</emph> Numeric expression that specifies an angle in radians that you want to calculate the cosine for."
+msgstr ""
+
+#. FBGNA
+#: 03080102.xhp
+msgctxt ""
+"03080102.xhp\n"
+"par_id3145749\n"
+"help.text"
+msgid "To convert degrees to radians, multiply degrees by pi/180. To convert radians to degrees, multiply radians by 180/pi."
+msgstr ""
+
+#. X68Fu
+#: 03080102.xhp
+msgctxt ""
+"03080102.xhp\n"
+"par_id3149664\n"
+"help.text"
+msgid "degree=(radian*180)/pi"
+msgstr ""
+
+#. f9EAD
+#: 03080102.xhp
+msgctxt ""
+"03080102.xhp\n"
+"par_id3146985\n"
+"help.text"
+msgid "radian=(degree*pi)/180"
+msgstr ""
+
+#. drmPb
+#: 03080102.xhp
+msgctxt ""
+"03080102.xhp\n"
+"par_id3152885\n"
+"help.text"
+msgid "<literal>Pi</literal> is here the fixed circle constant with the rounded value 3.14159..."
+msgstr ""
+
+#. 4K6RE
+#: 03080102.xhp
+msgctxt ""
+"03080102.xhp\n"
+"par_id3155855\n"
+"help.text"
+msgid "' The following example allows for a right-angled triangle the input of"
+msgstr ""
+
+#. CEwDT
+#: 03080102.xhp
+msgctxt ""
+"03080102.xhp\n"
+"par_id3149484\n"
+"help.text"
+msgid "' secant and angle (in degrees) and calculates the length of the hypotenuse:"
+msgstr ""
+
+#. xAVHq
+#: 03080102.xhp
+msgctxt ""
+"03080102.xhp\n"
+"par_id3150010\n"
+"help.text"
+msgid "' rounded Pi = 3.14159"
+msgstr ""
+
+#. ygUrP
+#: 03080102.xhp
+msgctxt ""
+"03080102.xhp\n"
+"par_id3144764\n"
+"help.text"
+msgid "d1 = InputBox(\"Enter the length of the adjacent side: \",\"Adjacent\")"
+msgstr ""
+
+#. 3gp3Y
+#: 03080102.xhp
+msgctxt ""
+"03080102.xhp\n"
+"par_id3154491\n"
+"help.text"
+msgid "dAngle = InputBox(\"Enter the angle Alpha (in degrees): \",\"Alpha\")"
+msgstr ""
+
+#. pCRzE
+#: 03080102.xhp
+msgctxt ""
+"03080102.xhp\n"
+"par_id3151074\n"
+"help.text"
+msgid "Print \"The length of the hypothenuse is\"; (d1 / cos (dAngle * Pi / 180))"
+msgstr ""
+
+#. FEozF
+#: 03080103.xhp
+msgctxt ""
+"03080103.xhp\n"
+"tit\n"
+"help.text"
+msgid "Sin Function"
+msgstr ""
+
+#. EBzji
+#: 03080103.xhp
+msgctxt ""
+"03080103.xhp\n"
+"bm_id3153896\n"
+"help.text"
+msgid "<bookmark_value>Sin function</bookmark_value>"
+msgstr ""
+
+#. pvAzD
+#: 03080103.xhp
+msgctxt ""
+"03080103.xhp\n"
+"hd_id3153896\n"
+"help.text"
+msgid "<variable id=\"Sin_h1\"><link href=\"text/sbasic/shared/03080103.xhp\" name=\"Sin Function\">Sin Function</link></variable>"
+msgstr ""
+
+#. fEasV
+#: 03080103.xhp
+msgctxt ""
+"03080103.xhp\n"
+"par_id3149456\n"
+"help.text"
+msgid "Returns the sine of an angle. The angle is specified in radians. The result lies between -1 and 1."
+msgstr ""
+
+#. AG6UD
+#: 03080103.xhp
+msgctxt ""
+"03080103.xhp\n"
+"par_id3153379\n"
+"help.text"
+msgid "Using the angle Alpha, the <literal>Sin</literal> function returns the ratio of the length of the opposite side of an angle to the length of the hypotenuse in a right-angled triangle."
+msgstr ""
+
+#. k3iCL
+#: 03080103.xhp
+msgctxt ""
+"03080103.xhp\n"
+"par_id3148798\n"
+"help.text"
+msgid "<literal>Sin</literal>(Alpha) = side opposite the angle/hypotenuse"
+msgstr ""
+
+#. EYMBG
+#: 03080103.xhp
+msgctxt ""
+"03080103.xhp\n"
+"par_id3154909\n"
+"help.text"
+msgid "Sin (Number As Double) As Double"
+msgstr ""
+
+#. VeDqk
+#: 03080103.xhp
+msgctxt ""
+"03080103.xhp\n"
+"par_id3145786\n"
+"help.text"
+msgid "<emph>Number:</emph> Numeric expression that defines the angle in radians that you want to calculate the sine for."
+msgstr ""
+
+#. EJTy3
+#: 03080103.xhp
+msgctxt ""
+"03080103.xhp\n"
+"par_id3155413\n"
+"help.text"
+msgid "To convert degrees to radians, multiply degrees by <literal>Pi</literal>/180, and to convert radians to degrees, multiply radians by 180/<literal>Pi</literal>."
+msgstr ""
+
+#. yescR
+#: 03080103.xhp
+msgctxt ""
+"03080103.xhp\n"
+"par_id3149664\n"
+"help.text"
+msgid "degrees=(radians*180)/<literal>Pi</literal>"
+msgstr ""
+
+#. PZTcG
+#: 03080103.xhp
+msgctxt ""
+"03080103.xhp\n"
+"par_id3153143\n"
+"help.text"
+msgid "radians=(degrees*<literal>Pi</literal>)/180"
+msgstr ""
+
+#. EFgfE
+#: 03080103.xhp
+msgctxt ""
+"03080103.xhp\n"
+"par_id3151112\n"
+"help.text"
+msgid "<literal>Pi</literal> is approximately 3.141593."
+msgstr ""
+
+#. qDQRe
+#: 03080103.xhp
+msgctxt ""
+"03080103.xhp\n"
+"par_id3149482\n"
+"help.text"
+msgid "' In this example, the following entry is possible for a right-angled triangle:"
+msgstr ""
+
+#. 7Qpns
+#: 03080103.xhp
+msgctxt ""
+"03080103.xhp\n"
+"par_id3148577\n"
+"help.text"
+msgid "' The side opposite the angle and the angle (in degrees) to calculate the length of the hypotenuse:"
+msgstr ""
+
+#. C6oyE
+#: 03080103.xhp
+msgctxt ""
+"03080103.xhp\n"
+"par_id3150011\n"
+"help.text"
+msgid "' Pi = 3.1415926 is a predefined variable"
+msgstr ""
+
+#. KnkXC
+#: 03080103.xhp
+msgctxt ""
+"03080103.xhp\n"
+"par_id3145251\n"
+"help.text"
+msgid "d1 = InputBox(\"Enter the length of the opposite side: \",\"Opposite Side\")"
+msgstr ""
+
+#. CYohW
+#: 03080103.xhp
+msgctxt ""
+"03080103.xhp\n"
+"par_id3148456\n"
+"help.text"
+msgid "dAlpha = InputBox(\"Enter the angle Alpha (in degrees): \",\"Alpha\")"
+msgstr ""
+
+#. U9Nyv
+#: 03080103.xhp
+msgctxt ""
+"03080103.xhp\n"
+"par_id3153877\n"
+"help.text"
+msgid "Print \"The length of the hypotenuse is\"; (d1 / sin (dAlpha * Pi / 180))"
+msgstr ""
+
+#. 9DYiB
+#: 03080104.xhp
+msgctxt ""
+"03080104.xhp\n"
+"tit\n"
+"help.text"
+msgid "Tan Function"
+msgstr ""
+
+#. xJLZB
+#: 03080104.xhp
+msgctxt ""
+"03080104.xhp\n"
+"bm_id3148550\n"
+"help.text"
+msgid "<bookmark_value>Tan function</bookmark_value>"
+msgstr ""
+
+#. GBYJZ
+#: 03080104.xhp
+msgctxt ""
+"03080104.xhp\n"
+"hd_id3148550\n"
+"help.text"
+msgid "<variable id=\"Tan_h1\"><link href=\"text/sbasic/shared/03080104.xhp\" name=\"Tan Function\">Tan Function</link></variable>"
+msgstr ""
+
+#. juT9e
+#: 03080104.xhp
+msgctxt ""
+"03080104.xhp\n"
+"par_id3148663\n"
+"help.text"
+msgid "Determines the tangent of an angle. The angle is specified in radians."
+msgstr ""
+
+#. pWb7z
+#: 03080104.xhp
+msgctxt ""
+"03080104.xhp\n"
+"par_id3153379\n"
+"help.text"
+msgid "Using the angle Alpha, the <literal>Tan</literal> function calculates the ratio of the length of the side opposite the angle to the length of the side adjacent to the angle in a right-angled triangle."
+msgstr ""
+
+#. 444nB
+#: 03080104.xhp
+msgctxt ""
+"03080104.xhp\n"
+"par_id3154366\n"
+"help.text"
+msgid "<literal>Tan</literal>(Alpha) = side opposite the angle/side adjacent to angle"
+msgstr ""
+
+#. PEoP9
+#: 03080104.xhp
+msgctxt ""
+"03080104.xhp\n"
+"par_id3151042\n"
+"help.text"
+msgid "Tan (Number As Double) As Double"
+msgstr ""
+
+#. BJjuJ
+#: 03080104.xhp
+msgctxt ""
+"03080104.xhp\n"
+"par_id3145786\n"
+"help.text"
+msgid "<emph>Number:</emph> Any numeric expression that you want to calculate the tangent for (in radians)."
+msgstr ""
+
+#. zKpFc
+#: 03080104.xhp
+msgctxt ""
+"03080104.xhp\n"
+"par_id3153728\n"
+"help.text"
+msgid "To convert degrees to radians, multiply by <literal>Pi</literal>/180. To convert radians to degrees, multiply by 180/<literal>Pi</literal>."
+msgstr ""
+
+#. bAYDk
+#: 03080104.xhp
+msgctxt ""
+"03080104.xhp\n"
+"par_id3155414\n"
+"help.text"
+msgid "degrees=(radians*180)/<literal>Pi</literal>"
+msgstr ""
+
+#. hDLbM
+#: 03080104.xhp
+msgctxt ""
+"03080104.xhp\n"
+"par_id3146975\n"
+"help.text"
+msgid "radians=(degrees*<literal>Pi</literal>)/180"
+msgstr ""
+
+#. AEqBK
+#: 03080104.xhp
+msgctxt ""
+"03080104.xhp\n"
+"par_id3147434\n"
+"help.text"
+msgid "<literal>Pi</literal> is approximately 3.141593."
+msgstr ""
+
+#. JFRRA
+#: 03080104.xhp
+msgctxt ""
+"03080104.xhp\n"
+"par_id3148646\n"
+"help.text"
+msgid "' In this example, the following entry is possible for a right-angled triangle:"
+msgstr ""
+
+#. FQSGL
+#: 03080104.xhp
+msgctxt ""
+"03080104.xhp\n"
+"par_id3150012\n"
+"help.text"
+msgid "' The side opposite the angle and the angle (in degrees) to calculate the length of the side adjacent to the angle:"
+msgstr ""
+
+#. 7CDv8
+#: 03080104.xhp
+msgctxt ""
+"03080104.xhp\n"
+"par_id3153158\n"
+"help.text"
+msgid "' Pi = 3.1415926 is a pre-defined variable"
+msgstr ""
+
+#. 4kJz9
+#: 03080104.xhp
+msgctxt ""
+"03080104.xhp\n"
+"par_id3145252\n"
+"help.text"
+msgid "d1 = InputBox(\"Enter the length of the side opposite the angle: \",\"opposite\")"
+msgstr ""
+
+#. R2WoA
+#: 03080104.xhp
+msgctxt ""
+"03080104.xhp\n"
+"par_id3149582\n"
+"help.text"
+msgid "dAlpha = InputBox(\"Enter the Alpha angle (in degrees): \",\"Alpha\")"
+msgstr ""
+
+#. Njruy
+#: 03080104.xhp
+msgctxt ""
+"03080104.xhp\n"
+"par_id3154016\n"
+"help.text"
+msgid "Print \"the length of the side adjacent the angle is\"; (d1 / tan (dAlpha * Pi / 180))"
+msgstr ""
+
+#. ofCYj
+#: 03080200.xhp
+msgctxt ""
+"03080200.xhp\n"
+"tit\n"
+"help.text"
+msgid "Exponential and Logarithmic Functions"
+msgstr ""
+
+#. QugjZ
+#: 03080200.xhp
+msgctxt ""
+"03080200.xhp\n"
+"hd_id3154758\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03080200.xhp\" name=\"Exponential and Logarithmic Functions\">Exponential and Logarithmic Functions</link>"
+msgstr ""
+
+#. 5AGHm
+#: 03080200.xhp
+msgctxt ""
+"03080200.xhp\n"
+"par_id3148550\n"
+"help.text"
+msgid "$[officename] Basic supports the following exponential and logarithmic functions."
+msgstr ""
+
+#. F4Kod
+#: 03080201.xhp
+msgctxt ""
+"03080201.xhp\n"
+"tit\n"
+"help.text"
+msgid "Exp Function"
+msgstr ""
+
+#. 8z2kC
+#: 03080201.xhp
+msgctxt ""
+"03080201.xhp\n"
+"bm_id3150616\n"
+"help.text"
+msgid "<bookmark_value>Exp function</bookmark_value>"
+msgstr ""
+
+#. HTnJN
+#: 03080201.xhp
+msgctxt ""
+"03080201.xhp\n"
+"hd_id3150616\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03080201.xhp\" name=\"Exp Function\">Exp Function</link>"
+msgstr ""
+
+#. Zu9Dr
+#: 03080201.xhp
+msgctxt ""
+"03080201.xhp\n"
+"par_id3155555\n"
+"help.text"
+msgid "Returns the base of the natural logarithm (e = 2.718282) raised to a power."
+msgstr ""
+
+#. qzNCt
+#: 03080201.xhp
+msgctxt ""
+"03080201.xhp\n"
+"hd_id3150984\n"
+"help.text"
+msgid "Syntax:"
+msgstr ""
+
+#. VtBgc
+#: 03080201.xhp
+msgctxt ""
+"03080201.xhp\n"
+"par_id3145315\n"
+"help.text"
+msgid "Exp (Number)"
+msgstr ""
+
+#. j4Eyy
+#: 03080201.xhp
+msgctxt ""
+"03080201.xhp\n"
+"hd_id3154347\n"
+"help.text"
+msgid "Return value:"
+msgstr ""
+
+#. ohN8G
+#: 03080201.xhp
+msgctxt ""
+"03080201.xhp\n"
+"hd_id3154760\n"
+"help.text"
+msgid "Parameters:"
+msgstr ""
+
+#. xUmuE
+#: 03080201.xhp
+msgctxt ""
+"03080201.xhp\n"
+"par_id3150793\n"
+"help.text"
+msgid "<emph>Number:</emph> Any numeric expression that specifies the power that you want to raise \"e\" to (the base of natural logarithms). The power must be for both single-precision numbers less than or equal to 88.02969 and double-precision numbers less than or equal to 709.782712893, since $[officename] Basic returns an Overflow error for numbers exceeding these values."
+msgstr ""
+
+#. qVvq3
+#: 03080201.xhp
+msgctxt ""
+"03080201.xhp\n"
+"hd_id3156280\n"
+"help.text"
+msgid "Example:"
+msgstr ""
+
+#. G8CHi
+#: 03080201.xhp
+msgctxt ""
+"03080201.xhp\n"
+"par_id3161832\n"
+"help.text"
+msgid "MsgBox \"\" & dValue & chr(13) & (b1*b2) ,0,\"Multiplication by logarithm\""
+msgstr ""
+
+#. gUEqe
+#: 03080202.xhp
+msgctxt ""
+"03080202.xhp\n"
+"tit\n"
+"help.text"
+msgid "Log Function"
+msgstr ""
+
+#. qgoZt
+#: 03080202.xhp
+msgctxt ""
+"03080202.xhp\n"
+"bm_id3149416\n"
+"help.text"
+msgid "<bookmark_value>Log function</bookmark_value>"
+msgstr ""
+
+#. MjSTm
+#: 03080202.xhp
+msgctxt ""
+"03080202.xhp\n"
+"hd_id3149416\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03080202.xhp\" name=\"Log Function\">Log Function (BASIC)</link>"
+msgstr ""
+
+#. g9AWW
+#: 03080202.xhp
+msgctxt ""
+"03080202.xhp\n"
+"par_id3145066\n"
+"help.text"
+msgid "Returns the natural logarithm of a number."
+msgstr ""
+
+#. Vweyx
+#: 03080202.xhp
+msgctxt ""
+"03080202.xhp\n"
+"par_id3154760\n"
+"help.text"
+msgid "Log (Number)"
+msgstr ""
+
+#. a6Cte
+#: 03080202.xhp
+msgctxt ""
+"03080202.xhp\n"
+"par_id3151041\n"
+"help.text"
+msgid "<emph>Number:</emph> Any numeric expression that you want to calculate the natural logarithm for."
+msgstr ""
+
+#. XGZnf
+#: 03080202.xhp
+msgctxt ""
+"03080202.xhp\n"
+"par_id3150869\n"
+"help.text"
+msgid "The natural logarithm is the logarithm to the base e. Base e is a constant with an approximate value of 2.718282..."
+msgstr ""
+
+#. Tjkcm
+#: 03080202.xhp
+msgctxt ""
+"03080202.xhp\n"
+"par_id3153968\n"
+"help.text"
+msgid "You can calculate logarithms to any base (n) for any number (x) by dividing the natural logarithm of x by the natural logarithm of n, as follows:"
+msgstr ""
+
+#. 43ZUC
+#: 03080202.xhp
+msgctxt ""
+"03080202.xhp\n"
+"par_id3145420\n"
+"help.text"
+msgid "Log<sub>n</sub>(x) = Log(x) / Log(n)"
+msgstr ""
+
+#. rkQXJ
+#: 03080202.xhp
+msgctxt ""
+"03080202.xhp\n"
+"par_id3149262\n"
+"help.text"
+msgid "MsgBox \"\" & a & chr(13) & (b1*b2) ,0,\"Multiplication by logarithm function\""
+msgstr ""
+
+#. UgtDE
+#: 03080300.xhp
+msgctxt ""
+"03080300.xhp\n"
+"tit\n"
+"help.text"
+msgid "Generating Random Numbers"
+msgstr ""
+
+#. z6M3v
+#: 03080300.xhp
+msgctxt ""
+"03080300.xhp\n"
+"hd_id3143270\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03080300.xhp\" name=\"Generating Random Numbers\">Generating Random Numbers</link>"
+msgstr ""
+
+#. 9oAAh
+#: 03080300.xhp
+msgctxt ""
+"03080300.xhp\n"
+"par_id3154347\n"
+"help.text"
+msgid "The following statements and functions generate random numbers."
+msgstr ""
+
+#. aik2G
+#: 03080301.xhp
+msgctxt ""
+"03080301.xhp\n"
+"tit\n"
+"help.text"
+msgid "Randomize Statement"
+msgstr ""
+
+#. cBbQM
+#: 03080301.xhp
+msgctxt ""
+"03080301.xhp\n"
+"bm_id3150616\n"
+"help.text"
+msgid "<bookmark_value>Randomize statement</bookmark_value>"
+msgstr ""
+
+#. GzBbR
+#: 03080301.xhp
+msgctxt ""
+"03080301.xhp\n"
+"hd_id3150616\n"
+"help.text"
+msgid "<variable id=\"heading_randomize\"><link href=\"text/sbasic/shared/03080301.xhp\" name=\"Randomize Statement\">Randomize Statement</link></variable>"
+msgstr ""
+
+#. rWksA
+#: 03080301.xhp
+msgctxt ""
+"03080301.xhp\n"
+"par_id3145090\n"
+"help.text"
+msgid "Initializes the random-number generator used by the <emph>Rnd</emph> function."
+msgstr ""
+
+#. 4zBFc
+#: 03080301.xhp
+msgctxt ""
+"03080301.xhp\n"
+"hd_id3147573\n"
+"help.text"
+msgid "Syntax:"
+msgstr ""
+
+#. Kn22q
+#: 03080301.xhp
+msgctxt ""
+"03080301.xhp\n"
+"par_id3145315\n"
+"help.text"
+msgid "Randomize [Number]"
+msgstr ""
+
+#. CM8DX
+#: 03080301.xhp
+msgctxt ""
+"03080301.xhp\n"
+"hd_id3152456\n"
+"help.text"
+msgid "Parameters:"
+msgstr ""
+
+#. uRn8G
+#: 03080301.xhp
+msgctxt ""
+"03080301.xhp\n"
+"par_id3149670\n"
+"help.text"
+msgid "<emph>Number:</emph> Any integer value. Used as seed to initialize the random-number generator. Equal seeds result in equal random-number sequences by the <emph>Rnd</emph> function. If the parameter is omitted, the <emph>Randomize</emph> statement will be ignored."
+msgstr ""
+
+#. sowvF
+#: 03080301.xhp
+msgctxt ""
+"03080301.xhp\n"
+"par_id110520161656428611\n"
+"help.text"
+msgid "Unless a predictable sequence of numbers is desired, there is no need to use the <emph>Randomize</emph> statement, as the random-number generator will be initialized automatically at first use – it will be seeded using a system-provided random-number generator that produces uniformly-distributed, non-deterministic random numbers. If no such generator is available on the system, the system time will be used as seed."
+msgstr ""
+
+#. eJZhb
+#: 03080301.xhp
+msgctxt ""
+"03080301.xhp\n"
+"par_id12052016194258344\n"
+"help.text"
+msgid "The <emph>Randomize</emph> statement affects BASIC's <emph>Rnd</emph> function only. Other random-number generators (for example the Calc's RAND() function, etc.) are not affected by it."
+msgstr ""
+
+#. nbCqX
+#: 03080301.xhp
+msgctxt ""
+"03080301.xhp\n"
+"hd_id3149655\n"
+"help.text"
+msgid "Example:"
+msgstr ""
+
+#. Hsz4P
+#: 03080301.xhp
+msgctxt ""
+"03080301.xhp\n"
+"par_id3147288\n"
+"help.text"
+msgid "iVar = Int(10 * Rnd) ' Range from 0 to 9"
+msgstr ""
+
+#. fzDBU
+#: 03080301.xhp
+msgctxt ""
+"03080301.xhp\n"
+"par_id3148617\n"
+"help.text"
+msgid "MsgBox sText,0,\"Spectral Distribution\""
+msgstr ""
+
+#. ridE5
+#: 03080302.xhp
+msgctxt ""
+"03080302.xhp\n"
+"tit\n"
+"help.text"
+msgid "Rnd Function"
+msgstr ""
+
+#. kNKLV
+#: 03080302.xhp
+msgctxt ""
+"03080302.xhp\n"
+"bm_id3148685\n"
+"help.text"
+msgid "<bookmark_value>Rnd function</bookmark_value>"
+msgstr ""
+
+#. UkA7G
+#: 03080302.xhp
+msgctxt ""
+"03080302.xhp\n"
+"hd_id3148685\n"
+"help.text"
+msgid "<variable id=\"heading_rnd\"><link href=\"text/sbasic/shared/03080302.xhp\" name=\"Rnd Function\">Rnd Function</link></variable>"
+msgstr ""
+
+#. CgGQF
+#: 03080302.xhp
+msgctxt ""
+"03080302.xhp\n"
+"par_id3149669\n"
+"help.text"
+msgid "Returns a random number between 0 and 1."
+msgstr ""
+
+#. 3jLL3
+#: 03080302.xhp
+msgctxt ""
+"03080302.xhp\n"
+"hd_id3153897\n"
+"help.text"
+msgid "Syntax:"
+msgstr ""
+
+#. ccGDo
+#: 03080302.xhp
+msgctxt ""
+"03080302.xhp\n"
+"par_id3150543\n"
+"help.text"
+msgid "Rnd [(Expression)]"
+msgstr ""
+
+#. AsCDT
+#: 03080302.xhp
+msgctxt ""
+"03080302.xhp\n"
+"hd_id3149655\n"
+"help.text"
+msgid "Return value:"
+msgstr ""
+
+#. 4W4JJ
+#: 03080302.xhp
+msgctxt ""
+"03080302.xhp\n"
+"hd_id3154909\n"
+"help.text"
+msgid "Parameters:"
+msgstr ""
+
+#. QRteh
+#: 03080302.xhp
+msgctxt ""
+"03080302.xhp\n"
+"par_id3125864\n"
+"help.text"
+msgid "<emph>Expression:</emph> Has no effect, is ignored if provided."
+msgstr ""
+
+#. Wv4Ne
+#: 03080302.xhp
+msgctxt ""
+"03080302.xhp\n"
+"par_id3147318\n"
+"help.text"
+msgid "The <emph>Rnd</emph> function returns decimal fractions ranging from 0 (included) to 1 (excluded) according to a uniform distribution. It uses the Mersenne Twister 19937 random-number generator. To generate random integers in a given range, use a formula like in the example below. A <emph>Randomize</emph> statement with a defined seed value can be used beforehand, if a predictable sequence of numbers is desired."
+msgstr ""
+
+#. CoRrB
+#: 03080302.xhp
+msgctxt ""
+"03080302.xhp\n"
+"hd_id3151118\n"
+"help.text"
+msgid "Example:"
+msgstr ""
+
+#. A6Sx5
+#: 03080302.xhp
+msgctxt ""
+"03080302.xhp\n"
+"par_id3147124\n"
+"help.text"
+msgid "Print \"Number from 1 to 5\""
+msgstr ""
+
+#. AZcwu
+#: 03080302.xhp
+msgctxt ""
+"03080302.xhp\n"
+"par_id3154943\n"
+"help.text"
+msgid "Print \"Number from 6 to 8\""
+msgstr ""
+
+#. mWvS6
+#: 03080302.xhp
+msgctxt ""
+"03080302.xhp\n"
+"par_id3151074\n"
+"help.text"
+msgid "Print \"Greater than 8\""
+msgstr ""
+
+#. o32Jf
+#: 03080302.xhp
+msgctxt ""
+"03080302.xhp\n"
+"par_id3155602\n"
+"help.text"
+msgid "Print \"Outside range 1 to 10\""
+msgstr ""
+
+#. qhL3U
+#: 03080400.xhp
+msgctxt ""
+"03080400.xhp\n"
+"tit\n"
+"help.text"
+msgid "Square Root Calculation"
+msgstr ""
+
+#. tF9ZA
+#: 03080400.xhp
+msgctxt ""
+"03080400.xhp\n"
+"hd_id3148946\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03080400.xhp\" name=\"Square Root Calculation\">Square Root Calculation</link>"
+msgstr ""
+
+#. cR7qM
+#: 03080400.xhp
+msgctxt ""
+"03080400.xhp\n"
+"par_id3159414\n"
+"help.text"
+msgid "Use this function to calculate square roots."
+msgstr ""
+
+#. uhF69
+#: 03080401.xhp
+msgctxt ""
+"03080401.xhp\n"
+"tit\n"
+"help.text"
+msgid "Sqr Function"
+msgstr ""
+
+#. Ddss3
+#: 03080401.xhp
+msgctxt ""
+"03080401.xhp\n"
+"bm_id3156027\n"
+"help.text"
+msgid "<bookmark_value>Sqr function</bookmark_value>"
+msgstr ""
+
+#. Wdcxc
+#: 03080401.xhp
+msgctxt ""
+"03080401.xhp\n"
+"hd_id3156027\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03080401.xhp\" name=\"Sqr Function\">Sqr Function</link>"
+msgstr ""
+
+#. 92Pyd
+#: 03080401.xhp
+msgctxt ""
+"03080401.xhp\n"
+"par_id3147226\n"
+"help.text"
+msgid "Calculates the square root of a numeric expression."
+msgstr ""
+
+#. UjAFg
+#: 03080401.xhp
+msgctxt ""
+"03080401.xhp\n"
+"hd_id3143267\n"
+"help.text"
+msgid "Syntax:"
+msgstr ""
+
+#. u6hMY
+#: 03080401.xhp
+msgctxt ""
+"03080401.xhp\n"
+"par_id3149415\n"
+"help.text"
+msgid "Sqr (Number)"
+msgstr ""
+
+#. GxUbC
+#: 03080401.xhp
+msgctxt ""
+"03080401.xhp\n"
+"hd_id3156023\n"
+"help.text"
+msgid "Return value:"
+msgstr ""
+
+#. RB3SF
+#: 03080401.xhp
+msgctxt ""
+"03080401.xhp\n"
+"hd_id3147265\n"
+"help.text"
+msgid "Parameters:"
+msgstr ""
+
+#. R6bxE
+#: 03080401.xhp
+msgctxt ""
+"03080401.xhp\n"
+"par_id3149457\n"
+"help.text"
+msgid "<emph>Number:</emph> Any numeric expression that you want to calculate the square root for."
+msgstr ""
+
+#. NNhxY
+#: 03080401.xhp
+msgctxt ""
+"03080401.xhp\n"
+"par_id3154365\n"
+"help.text"
+msgid "A square root is the number that you multiply by itself to produce another number, for example, the square root of 36 is 6."
+msgstr ""
+
+#. VXXxC
+#: 03080401.xhp
+msgctxt ""
+"03080401.xhp\n"
+"hd_id3153192\n"
+"help.text"
+msgid "Example:"
+msgstr ""
+
+#. 2GKHP
+#: 03080500.xhp
+msgctxt ""
+"03080500.xhp\n"
+"tit\n"
+"help.text"
+msgid "Integers"
+msgstr ""
+
+#. n7D29
+#: 03080500.xhp
+msgctxt ""
+"03080500.xhp\n"
+"hd_id3153345\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03080500.xhp\" name=\"Integers\">Integers and Fractional</link>"
+msgstr ""
+
+#. GDH6b
+#: 03080500.xhp
+msgctxt ""
+"03080500.xhp\n"
+"par_id3156152\n"
+"help.text"
+msgid "Functions to round values to integers, and to take the fractional part of a value."
+msgstr ""
+
+#. ZCpbJ
+#: 03080501.xhp
+msgctxt ""
+"03080501.xhp\n"
+"tit\n"
+"help.text"
+msgid "Fix Function"
+msgstr ""
+
+#. MqD8E
+#: 03080501.xhp
+msgctxt ""
+"03080501.xhp\n"
+"bm_id3159201\n"
+"help.text"
+msgid "<bookmark_value>Fix function</bookmark_value>"
+msgstr ""
+
+#. 2TxpU
+#: 03080501.xhp
+msgctxt ""
+"03080501.xhp\n"
+"hd_id3159201\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03080501.xhp\" name=\"Fix Function\">Fix Function</link>"
+msgstr ""
+
+#. nDHDK
+#: 03080501.xhp
+msgctxt ""
+"03080501.xhp\n"
+"par_id3149346\n"
+"help.text"
+msgid "Returns the integer value of a numeric expression by removing the fractional part of the number."
+msgstr ""
+
+#. AxgCW
+#: 03080501.xhp
+msgctxt ""
+"03080501.xhp\n"
+"par_id3156152\n"
+"help.text"
+msgid "Fix (Expression)"
+msgstr ""
+
+#. T274X
+#: 03080501.xhp
+msgctxt ""
+"03080501.xhp\n"
+"par_id3149457\n"
+"help.text"
+msgid "<emph>Expression:</emph> Numeric expression that you want to return the integer value for."
+msgstr ""
+
+#. RmArT
+#: 03080501.xhp
+msgctxt ""
+"03080501.xhp\n"
+"par_id3156214\n"
+"help.text"
+msgid "Print Fix(3.14159) ' returns 3."
+msgstr ""
+
+#. 9QGfT
+#: 03080501.xhp
+msgctxt ""
+"03080501.xhp\n"
+"par_id3154217\n"
+"help.text"
+msgid "Print Fix(0) ' returns 0."
+msgstr ""
+
+#. 5j2Di
+#: 03080501.xhp
+msgctxt ""
+"03080501.xhp\n"
+"par_id3145786\n"
+"help.text"
+msgid "Print Fix(-3.14159) ' returns -3."
+msgstr ""
+
+#. Ymamx
+#: 03080501.xhp
+msgctxt ""
+"03080501.xhp\n"
+"par_id391546195157714\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03080502.xhp\" name=\"Int Function\">Int Function</link>"
+msgstr ""
+
+#. QhZpR
+#: 03080501.xhp
+msgctxt ""
+"03080501.xhp\n"
+"par_id51546195168056\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03080503.xhp\" name=\"Frac Function\">Frac Function</link>"
+msgstr ""
+
+#. D7BBT
+#: 03080502.xhp
+msgctxt ""
+"03080502.xhp\n"
+"tit\n"
+"help.text"
+msgid "Int Function"
+msgstr ""
+
+#. oGyiu
+#: 03080502.xhp
+msgctxt ""
+"03080502.xhp\n"
+"bm_id3153345\n"
+"help.text"
+msgid "<bookmark_value>Int function</bookmark_value>"
+msgstr ""
+
+#. HwiDW
+#: 03080502.xhp
+msgctxt ""
+"03080502.xhp\n"
+"hd_id3153345\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03080502.xhp\" name=\"Int Function\">Int Function</link>"
+msgstr ""
+
+#. urGrY
+#: 03080502.xhp
+msgctxt ""
+"03080502.xhp\n"
+"par_id3155420\n"
+"help.text"
+msgid "Returns the integer portion of a number."
+msgstr ""
+
+#. 8hNhz
+#: 03080502.xhp
+msgctxt ""
+"03080502.xhp\n"
+"par_id3146795\n"
+"help.text"
+msgid "Int (Number)"
+msgstr ""
+
+#. byiBG
+#: 03080502.xhp
+msgctxt ""
+"03080502.xhp\n"
+"par_id3148797\n"
+"help.text"
+msgid "<emph>Number:</emph> Any valid numeric expression."
+msgstr ""
+
+#. G7cKf
+#: 03080502.xhp
+msgctxt ""
+"03080502.xhp\n"
+"par_id3125864\n"
+"help.text"
+msgid "Print Int(3.99) ' returns the value 3"
+msgstr ""
+
+#. q3vhG
+#: 03080502.xhp
+msgctxt ""
+"03080502.xhp\n"
+"par_id3145787\n"
+"help.text"
+msgid "Print Int(0) ' returns the value 0"
+msgstr ""
+
+#. 9Wc46
+#: 03080502.xhp
+msgctxt ""
+"03080502.xhp\n"
+"par_id3153143\n"
+"help.text"
+msgid "Print Int(-3.14159) ' returns the value -4"
+msgstr ""
+
+#. dGANe
+#: 03080502.xhp
+msgctxt ""
+"03080502.xhp\n"
+"par_id461546195246946\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03080501.xhp\" name=\"Fix Function\">Fix Function</link>"
+msgstr ""
+
+#. PWWrL
+#: 03080502.xhp
+msgctxt ""
+"03080502.xhp\n"
+"par_id51546195168056\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03080503.xhp\" name=\"Frac Function\">Frac Function</link>"
+msgstr ""
+
+#. zZFwE
+#: 03080503.xhp
+msgctxt ""
+"03080503.xhp\n"
+"tit\n"
+"help.text"
+msgid "Frac Function"
+msgstr ""
+
+#. mVSM2
+#: 03080503.xhp
+msgctxt ""
+"03080503.xhp\n"
+"bm_id3153345\n"
+"help.text"
+msgid "<bookmark_value>Frac function</bookmark_value>"
+msgstr ""
+
+#. 6KBuj
+#: 03080503.xhp
+msgctxt ""
+"03080503.xhp\n"
+"hd_id3153345\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03080503.xhp\" name=\"Frac Function\">Frac Function</link>"
+msgstr ""
+
+#. AwHT9
+#: 03080503.xhp
+msgctxt ""
+"03080503.xhp\n"
+"par_id3155420\n"
+"help.text"
+msgid "Returns the fractional portion of a number."
+msgstr ""
+
+#. MAVXR
+#: 03080503.xhp
+msgctxt ""
+"03080503.xhp\n"
+"par_id3146795\n"
+"help.text"
+msgid "Frac (Number)"
+msgstr ""
+
+#. 4Dd36
+#: 03080503.xhp
+msgctxt ""
+"03080503.xhp\n"
+"par_id3150400\n"
+"help.text"
+msgid "Double"
+msgstr ""
+
+#. PjX9r
+#: 03080503.xhp
+msgctxt ""
+"03080503.xhp\n"
+"par_id3148797\n"
+"help.text"
+msgid "<emph>Number:</emph> Any valid numeric expression."
+msgstr ""
+
+#. CteEJ
+#: 03080503.xhp
+msgctxt ""
+"03080503.xhp\n"
+"par_id3125864\n"
+"help.text"
+msgid "Print Frac(3.99) ' returns the value 0.99"
+msgstr ""
+
+#. vBNoB
+#: 03080503.xhp
+msgctxt ""
+"03080503.xhp\n"
+"par_id3145787\n"
+"help.text"
+msgid "Print Frac(0) ' returns the value 0"
+msgstr ""
+
+#. DGQgE
+#: 03080503.xhp
+msgctxt ""
+"03080503.xhp\n"
+"par_id3153143\n"
+"help.text"
+msgid "Print Frac(-3.14159) ' returns the value -0.14159"
+msgstr ""
+
+#. 4u3Pk
+#: 03080503.xhp
+msgctxt ""
+"03080503.xhp\n"
+"par_id461546195246946\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03080501.xhp\" name=\"Fix Function\">Fix Function</link>"
+msgstr ""
+
+#. G9EiU
+#: 03080503.xhp
+msgctxt ""
+"03080503.xhp\n"
+"par_id391546195157714\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03080502.xhp\" name=\"Int Function\">Int Function</link>"
+msgstr ""
+
+#. BbtLE
+#: 03080600.xhp
+msgctxt ""
+"03080600.xhp\n"
+"tit\n"
+"help.text"
+msgid "Absolute Values"
+msgstr ""
+
+#. THpdK
+#: 03080600.xhp
+msgctxt ""
+"03080600.xhp\n"
+"hd_id3146958\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03080600.xhp\" name=\"Absolute Values\">Absolute Values</link>"
+msgstr ""
+
+#. L28VB
+#: 03080600.xhp
+msgctxt ""
+"03080600.xhp\n"
+"par_id3150771\n"
+"help.text"
+msgid "This function returns absolute values."
+msgstr ""
+
+#. VaBcX
+#: 03080601.xhp
+msgctxt ""
+"03080601.xhp\n"
+"tit\n"
+"help.text"
+msgid "Abs Function"
+msgstr ""
+
+#. Y39pg
+#: 03080601.xhp
+msgctxt ""
+"03080601.xhp\n"
+"bm_id3159201\n"
+"help.text"
+msgid "<bookmark_value>Abs function</bookmark_value>"
+msgstr ""
+
+#. wLbzU
+#: 03080601.xhp
+msgctxt ""
+"03080601.xhp\n"
+"hd_id3159201\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03080601.xhp\" name=\"Abs Function\">Abs Function</link>"
+msgstr ""
+
+#. vGAGF
+#: 03080601.xhp
+msgctxt ""
+"03080601.xhp\n"
+"par_id3153394\n"
+"help.text"
+msgid "Returns the absolute value of a numeric expression."
+msgstr ""
+
+#. 9vLHh
+#: 03080601.xhp
+msgctxt ""
+"03080601.xhp\n"
+"hd_id3149233\n"
+"help.text"
+msgid "Syntax:"
+msgstr ""
+
+#. oikG9
+#: 03080601.xhp
+msgctxt ""
+"03080601.xhp\n"
+"par_id3147573\n"
+"help.text"
+msgid "Abs (Number)"
+msgstr ""
+
+#. 9JrGL
+#: 03080601.xhp
+msgctxt ""
+"03080601.xhp\n"
+"hd_id3156152\n"
+"help.text"
+msgid "Return value:"
+msgstr ""
+
+#. Duhzt
+#: 03080601.xhp
+msgctxt ""
+"03080601.xhp\n"
+"hd_id3154924\n"
+"help.text"
+msgid "Parameters:"
+msgstr ""
+
+#. CaBaR
+#: 03080601.xhp
+msgctxt ""
+"03080601.xhp\n"
+"par_id3154347\n"
+"help.text"
+msgid "<emph>Number:</emph> Any numeric expression that you want to return the absolute value for. Positive numbers, including 0, are returned unchanged, whereas negative numbers are converted to positive numbers."
+msgstr ""
+
+#. T3eu8
+#: 03080601.xhp
+msgctxt ""
+"03080601.xhp\n"
+"par_id3153381\n"
+"help.text"
+msgid "The following example uses the Abs function to calculate the difference between two values. It does not matter which value you enter first."
+msgstr ""
+
+#. qf3vp
+#: 03080601.xhp
+msgctxt ""
+"03080601.xhp\n"
+"hd_id3148451\n"
+"help.text"
+msgid "Example:"
+msgstr ""
+
+#. ek5Jt
+#: 03080601.xhp
+msgctxt ""
+"03080601.xhp\n"
+"par_id3145786\n"
+"help.text"
+msgid "siW1 = Int(InputBox(\"Please enter the first amount\",\"Value Input\"))"
+msgstr ""
+
+#. MG4ec
+#: 03080601.xhp
+msgctxt ""
+"03080601.xhp\n"
+"par_id3149561\n"
+"help.text"
+msgid "siW2 = Int(InputBox(\"Please enter the second amount\",\"Value Input\"))"
+msgstr ""
+
+#. BjZdb
+#: 03080601.xhp
+msgctxt ""
+"03080601.xhp\n"
+"par_id3145750\n"
+"help.text"
+msgid "Print \"The difference is \"; Abs(siW1 - siW2)"
+msgstr ""
+
+#. CDdkF
+#: 03080700.xhp
+msgctxt ""
+"03080700.xhp\n"
+"tit\n"
+"help.text"
+msgid "Expression Signs"
+msgstr ""
+
+#. EiQHG
+#: 03080700.xhp
+msgctxt ""
+"03080700.xhp\n"
+"hd_id3150702\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03080700.xhp\" name=\"Expression Signs\">Expression Signs</link>"
+msgstr ""
+
+#. zhw5K
+#: 03080700.xhp
+msgctxt ""
+"03080700.xhp\n"
+"par_id3148668\n"
+"help.text"
+msgid "This function returns the algebraic sign of a numeric expression."
+msgstr ""
+
+#. EZYW2
+#: 03080701.xhp
+msgctxt ""
+"03080701.xhp\n"
+"tit\n"
+"help.text"
+msgid "Sgn Function"
+msgstr ""
+
+#. hzA5f
+#: 03080701.xhp
+msgctxt ""
+"03080701.xhp\n"
+"bm_id3148474\n"
+"help.text"
+msgid "<bookmark_value>Sgn function</bookmark_value>"
+msgstr ""
+
+#. BaCb2
+#: 03080701.xhp
+msgctxt ""
+"03080701.xhp\n"
+"hd_id3148474\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03080701.xhp\" name=\"Sgn Function\">Sgn Function</link>"
+msgstr ""
+
+#. 7BADP
+#: 03080701.xhp
+msgctxt ""
+"03080701.xhp\n"
+"par_id3148686\n"
+"help.text"
+msgid "Returns an integer number between -1 and 1 that indicates if the number that is passed to the function is positive, negative, or zero."
+msgstr ""
+
+#. WeAbo
+#: 03080701.xhp
+msgctxt ""
+"03080701.xhp\n"
+"hd_id3156023\n"
+"help.text"
+msgid "Syntax:"
+msgstr ""
+
+#. 8TFfk
+#: 03080701.xhp
+msgctxt ""
+"03080701.xhp\n"
+"par_id3153897\n"
+"help.text"
+msgid "Sgn (Number)"
+msgstr ""
+
+#. R9qZJ
+#: 03080701.xhp
+msgctxt ""
+"03080701.xhp\n"
+"hd_id3145069\n"
+"help.text"
+msgid "Return value:"
+msgstr ""
+
+#. hBAHj
+#: 03080701.xhp
+msgctxt ""
+"03080701.xhp\n"
+"hd_id3150543\n"
+"help.text"
+msgid "Parameters:"
+msgstr ""
+
+#. ExboK
+#: 03080701.xhp
+msgctxt ""
+"03080701.xhp\n"
+"par_id3154365\n"
+"help.text"
+msgid "<emph>Number:</emph> Numeric expression that determines the value that is returned by the function."
+msgstr ""
+
+#. R8M7A
+#: 03080701.xhp
+msgctxt ""
+"03080701.xhp\n"
+"par_id3150767\n"
+"help.text"
+msgid "Number"
+msgstr ""
+
+#. ZhDdh
+#: 03080701.xhp
+msgctxt ""
+"03080701.xhp\n"
+"par_id3150441\n"
+"help.text"
+msgid "Return value"
+msgstr ""
+
+#. GJ8DT
+#: 03080701.xhp
+msgctxt ""
+"03080701.xhp\n"
+"par_id3161833\n"
+"help.text"
+msgid "negative"
+msgstr ""
+
+#. owL6c
+#: 03080701.xhp
+msgctxt ""
+"03080701.xhp\n"
+"par_id3155306\n"
+"help.text"
+msgid "Sgn returns -1."
+msgstr ""
+
+#. WLxTV
+#: 03080701.xhp
+msgctxt ""
+"03080701.xhp\n"
+"par_id3146119\n"
+"help.text"
+msgid "Sgn returns 0."
+msgstr ""
+
+#. 4tinv
+#: 03080701.xhp
+msgctxt ""
+"03080701.xhp\n"
+"par_id3153139\n"
+"help.text"
+msgid "positive"
+msgstr ""
+
+#. DHyxd
+#: 03080701.xhp
+msgctxt ""
+"03080701.xhp\n"
+"par_id3154319\n"
+"help.text"
+msgid "Sgn returns 1."
+msgstr ""
+
+#. EhBsF
+#: 03080701.xhp
+msgctxt ""
+"03080701.xhp\n"
+"hd_id3152576\n"
+"help.text"
+msgid "Example:"
+msgstr ""
+
+#. Dd5kX
+#: 03080701.xhp
+msgctxt ""
+"03080701.xhp\n"
+"par_id3155416\n"
+"help.text"
+msgid "Print sgn(-10) ' returns -1"
+msgstr ""
+
+#. RHqWn
+#: 03080701.xhp
+msgctxt ""
+"03080701.xhp\n"
+"par_id3154096\n"
+"help.text"
+msgid "Print sgn(0) ' returns 0"
+msgstr ""
+
+#. HeSov
+#: 03080701.xhp
+msgctxt ""
+"03080701.xhp\n"
+"par_id3148457\n"
+"help.text"
+msgid "Print sgn(10) ' returns 1"
+msgstr ""
+
+#. ojPdU
+#: 03080800.xhp
+msgctxt ""
+"03080800.xhp\n"
+"tit\n"
+"help.text"
+msgid "Converting Numbers"
+msgstr ""
+
+#. DDJr9
+#: 03080800.xhp
+msgctxt ""
+"03080800.xhp\n"
+"hd_id3145315\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03080800.xhp\" name=\"Converting Numbers\">Converting Numbers</link>"
+msgstr ""
+
+#. ZRJWv
+#: 03080800.xhp
+msgctxt ""
+"03080800.xhp\n"
+"par_id3154760\n"
+"help.text"
+msgid "The following functions convert numbers from one number format to another."
+msgstr ""
+
+#. CMVC4
+#: 03080801.xhp
+msgctxt ""
+"03080801.xhp\n"
+"tit\n"
+"help.text"
+msgid "Hex Function"
+msgstr ""
+
+#. wo8Yg
+#: 03080801.xhp
+msgctxt ""
+"03080801.xhp\n"
+"bm_id3150616\n"
+"help.text"
+msgid "<bookmark_value>Hex function</bookmark_value>"
+msgstr ""
+
+#. 9DtGW
+#: 03080801.xhp
+msgctxt ""
+"03080801.xhp\n"
+"hd_id3150616\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03080801.xhp\" name=\"Hex Function\">Hex Function</link>"
+msgstr ""
+
+#. X79sx
+#: 03080801.xhp
+msgctxt ""
+"03080801.xhp\n"
+"par_id3145136\n"
+"help.text"
+msgid "Returns a string that represents the hexadecimal value of a number."
+msgstr ""
+
+#. te3Mp
+#: 03080801.xhp
+msgctxt ""
+"03080801.xhp\n"
+"hd_id3147573\n"
+"help.text"
+msgid "Syntax:"
+msgstr ""
+
+#. sniHV
+#: 03080801.xhp
+msgctxt ""
+"03080801.xhp\n"
+"par_id3150771\n"
+"help.text"
+msgid "Hex (Number)"
+msgstr ""
+
+#. Ejckw
+#: 03080801.xhp
+msgctxt ""
+"03080801.xhp\n"
+"hd_id3147530\n"
+"help.text"
+msgid "Return value:"
+msgstr ""
+
+#. MvMTC
+#: 03080801.xhp
+msgctxt ""
+"03080801.xhp\n"
+"par_id3159414\n"
+"help.text"
+msgid "String"
+msgstr ""
+
+#. RhxtR
+#: 03080801.xhp
+msgctxt ""
+"03080801.xhp\n"
+"hd_id3156344\n"
+"help.text"
+msgid "Parameters:"
+msgstr ""
+
+#. eJLYR
+#: 03080801.xhp
+msgctxt ""
+"03080801.xhp\n"
+"par_id3148947\n"
+"help.text"
+msgid "<emph>Number:</emph> Any numeric expression that you want to convert to a hexadecimal number."
+msgstr ""
+
+#. XyWiz
+#: 03080801.xhp
+msgctxt ""
+"03080801.xhp\n"
+"hd_id3154365\n"
+"help.text"
+msgid "Example:"
+msgstr ""
+
+#. WsqJB
+#: 03080801.xhp
+msgctxt ""
+"03080801.xhp\n"
+"par_id3156214\n"
+"help.text"
+msgid "' uses BasicFormulas in %PRODUCTNAME Calc"
+msgstr ""
+
+#. PrCEr
+#: 03080801.xhp
+msgctxt ""
+"03080801.xhp\n"
+"par_id3149262\n"
+"help.text"
+msgid "' Returns a 32-bit signed integer number from an 8-digit hexadecimal value."
+msgstr ""
+
+#. fcv3u
+#: 03080801.xhp
+msgctxt ""
+"03080801.xhp\n"
+"par_id3147215\n"
+"help.text"
+msgid "' Calculates the 8-digit hexadecimal value out of a 32-bit signed integer number."
+msgstr ""
+
+#. Tko9w
+#: 03080802.xhp
+msgctxt ""
+"03080802.xhp\n"
+"tit\n"
+"help.text"
+msgid "Oct Function"
+msgstr ""
+
+#. FERZ7
+#: 03080802.xhp
+msgctxt ""
+"03080802.xhp\n"
+"bm_id3155420\n"
+"help.text"
+msgid "<bookmark_value>Oct function</bookmark_value>"
+msgstr ""
+
+#. HBZvQ
+#: 03080802.xhp
+msgctxt ""
+"03080802.xhp\n"
+"hd_id3155420\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03080802.xhp\" name=\"Oct Function\">Oct Function</link>"
+msgstr ""
+
+#. ApoGj
+#: 03080802.xhp
+msgctxt ""
+"03080802.xhp\n"
+"par_id3154924\n"
+"help.text"
+msgid "Returns the octal value of a number."
+msgstr ""
+
+#. NWCSn
+#: 03080802.xhp
+msgctxt ""
+"03080802.xhp\n"
+"hd_id3148947\n"
+"help.text"
+msgid "Syntax:"
+msgstr ""
+
+#. oK8j3
+#: 03080802.xhp
+msgctxt ""
+"03080802.xhp\n"
+"par_id3150543\n"
+"help.text"
+msgid "Oct (Number)"
+msgstr ""
+
+#. 4v3fG
+#: 03080802.xhp
+msgctxt ""
+"03080802.xhp\n"
+"hd_id3153360\n"
+"help.text"
+msgid "Return value:"
+msgstr ""
+
+#. DNqdN
+#: 03080802.xhp
+msgctxt ""
+"03080802.xhp\n"
+"par_id3154138\n"
+"help.text"
+msgid "String"
+msgstr ""
+
+#. 9ymRV
+#: 03080802.xhp
+msgctxt ""
+"03080802.xhp\n"
+"hd_id3156422\n"
+"help.text"
+msgid "Parameters:"
+msgstr ""
+
+#. FUayo
+#: 03080802.xhp
+msgctxt ""
+"03080802.xhp\n"
+"par_id3150768\n"
+"help.text"
+msgid "<emph>Number:</emph> Any numeric expression that you want to convert to an octal value."
+msgstr ""
+
+#. ZGpEp
+#: 03080802.xhp
+msgctxt ""
+"03080802.xhp\n"
+"hd_id3148672\n"
+"help.text"
+msgid "Example:"
+msgstr ""
+
+#. TB5UE
+#: 03090000.xhp
+msgctxt ""
+"03090000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Controlling Program Execution"
+msgstr ""
+
+#. AjaX7
+#: 03090000.xhp
+msgctxt ""
+"03090000.xhp\n"
+"hd_id3145136\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03090000.xhp\" name=\"Controlling Program Execution\">Controlling Program Execution</link>"
+msgstr ""
+
+#. s6wg5
+#: 03090000.xhp
+msgctxt ""
+"03090000.xhp\n"
+"par_id3143268\n"
+"help.text"
+msgid "The following statements control the execution of a program."
+msgstr ""
+
+#. tCvqF
+#: 03090000.xhp
+msgctxt ""
+"03090000.xhp\n"
+"par_id3156152\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 ""
+
+#. SVVdP
+#: 03090100.xhp
+msgctxt ""
+"03090100.xhp\n"
+"tit\n"
+"help.text"
+msgid "Condition Statements"
+msgstr ""
+
+#. 8sarN
+#: 03090100.xhp
+msgctxt ""
+"03090100.xhp\n"
+"hd_id3154422\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03090100.xhp\" name=\"Condition Statements\">Condition Statements</link>"
+msgstr ""
+
+#. TLban
+#: 03090100.xhp
+msgctxt ""
+"03090100.xhp\n"
+"par_id3153750\n"
+"help.text"
+msgid "The following statements are based on conditions."
+msgstr ""
+
+#. CmEyf
+#: 03090101.xhp
+msgctxt ""
+"03090101.xhp\n"
+"tit\n"
+"help.text"
+msgid "If...Then...Else Statement"
+msgstr ""
+
+#. 2tiGA
+#: 03090101.xhp
+msgctxt ""
+"03090101.xhp\n"
+"bm_id3154422\n"
+"help.text"
+msgid "<bookmark_value>If statement</bookmark_value> <bookmark_value>ElseIf; If statement</bookmark_value> <bookmark_value>Else If;If statement</bookmark_value> <bookmark_value>Else;If statement</bookmark_value> <bookmark_value>Else;If statement</bookmark_value> <bookmark_value>End If;If statement</bookmark_value> <bookmark_value>EndIf;If statement</bookmark_value>"
+msgstr ""
+
+#. iGHxs
+#: 03090101.xhp
+msgctxt ""
+"03090101.xhp\n"
+"hd_id81592320644826\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03090101.xhp\" name=\"If...Then...Else Statement\">If...Then...Else Statement</link>"
+msgstr ""
+
+#. aPd9F
+#: 03090101.xhp
+msgctxt ""
+"03090101.xhp\n"
+"par_id3155555\n"
+"help.text"
+msgid "Defines one or more statement blocks that you only want to execute if a given condition or expression is <literal>True</literal>."
+msgstr ""
+
+#. udXzN
+#: 03090101.xhp
+msgctxt ""
+"03090101.xhp\n"
+"par_id311592320434736\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sbasic/If_statement.svg\" id=\"img_id601592320434736\"><alt id=\"alt_id551592320434736\">If...EndIf statement</alt></image>"
+msgstr ""
+
+#. cWAi6
+#: 03090101.xhp
+msgctxt ""
+"03090101.xhp\n"
+"par_id591592320435808\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sbasic/ElseIf_fragment.svg\" id=\"img_id691592320435808\"><alt id=\"alt_id341592320435808\">ElseIf fragment</alt></image>"
+msgstr ""
+
+#. 9oiMB
+#: 03090101.xhp
+msgctxt ""
+"03090101.xhp\n"
+"par_id221592320436632\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sbasic/Else_fragment.svg\" id=\"img_id81592320436632\"><alt id=\"alt_id391592320436632\">Else fragment</alt></image>"
+msgstr ""
+
+#. DQy4R
+#: 03090101.xhp
+msgctxt ""
+"03090101.xhp\n"
+"par_id3123476\n"
+"help.text"
+msgid "Instead of <emph>Else If</emph> you can write <emph>ElseIf</emph>, instead of <emph>End If</emph> you can write <emph>EndIf</emph>."
+msgstr ""
+
+#. AXTiW
+#: 03090101.xhp
+msgctxt ""
+"03090101.xhp\n"
+"par_id631592322239043\n"
+"help.text"
+msgid "<emph>If</emph> statements can be shortened to one line when using single statement blocks."
+msgstr ""
+
+#. VDj9r
+#: 03090101.xhp
+msgctxt ""
+"03090101.xhp\n"
+"par_id3153062\n"
+"help.text"
+msgid "The <emph>If...Then</emph> statement executes program blocks depending on given conditions. When %PRODUCTNAME Basic encounters an <emph>If</emph> statement, the condition is tested. If the condition is <literal>True</literal>, all subsequent statements up to the next <emph>Else</emph> or <emph>ElseIf</emph> statement are executed. If the condition is <literal>False</literal>, and an <emph>ElseIf</emph> statement follows, %PRODUCTNAME Basic tests the next expression and executes the following statements if the condition is <literal>True</literal>. If <literal>False</literal>, the program continues either with the next <emph>ElseIf</emph> or <emph>Else</emph> statement. Statements following <emph>Else</emph> are executed only if none of the previously tested conditions were <literal>True</literal>. After all conditions are evaluated, and the corresponding statements executed, the program continues with the statement following <emph>EndIf</emph>."
+msgstr ""
+
+#. NKDQG
+#: 03090101.xhp
+msgctxt ""
+"03090101.xhp\n"
+"par_id3153192\n"
+"help.text"
+msgid "You can nest multiple <emph>If...Then</emph> statements."
+msgstr ""
+
+#. sHwLq
+#: 03090101.xhp
+msgctxt ""
+"03090101.xhp\n"
+"par_id3154684\n"
+"help.text"
+msgid "<emph>Else</emph> and <emph>ElseIf</emph> statements are optional."
+msgstr ""
+
+#. 73RuH
+#: 03090101.xhp
+msgctxt ""
+"03090101.xhp\n"
+"par_id3152939\n"
+"help.text"
+msgid "You can use <emph>GoTo</emph> and <emph>GoSub</emph> to jump out of an <emph>If...Then</emph> block, but not to jump into an <emph>If...Then</emph> structure."
+msgstr ""
+
+#. VEFva
+#: 03090101.xhp
+msgctxt ""
+"03090101.xhp\n"
+"par_id3153951\n"
+"help.text"
+msgid "The following example enables you to enter the expiration date of a product, and determines if the expiration date has passed."
+msgstr ""
+
+#. gDmAx
+#: 03090101.xhp
+msgctxt ""
+"03090101.xhp\n"
+"par_id3154490\n"
+"help.text"
+msgid "sDate = InputBox(\"Enter the expiration date (MM.DD.YYYY)\")"
+msgstr ""
+
+#. GNXEn
+#: 03090101.xhp
+msgctxt ""
+"03090101.xhp\n"
+"par_id3155601\n"
+"help.text"
+msgid "MsgBox \"The expiration date has passed\""
+msgstr ""
+
+#. DrRyf
+#: 03090101.xhp
+msgctxt ""
+"03090101.xhp\n"
+"par_id3146912\n"
+"help.text"
+msgid "MsgBox \"The expiration date has not yet passed\""
+msgstr ""
+
+#. wS36Y
+#: 03090101.xhp
+msgctxt ""
+"03090101.xhp\n"
+"par_id3154754\n"
+"help.text"
+msgid "MsgBox \"The expiration date is today\""
+msgstr ""
+
+#. 7qi2i
+#: 03090101.xhp
+msgctxt ""
+"03090101.xhp\n"
+"par_id161588865796615\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03090102.xhp\" name=\"Select Case statement\">Select Case</link> statement"
+msgstr ""
+
+#. W4Sgi
+#: 03090101.xhp
+msgctxt ""
+"03090101.xhp\n"
+"par_id281588865818334\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03090103.xhp\" name=\"Iif function\">Iif</link> or <link href=\"text/sbasic/shared/03090410.xhp\" name=\"Switch function\">Switch</link> functions"
+msgstr ""
+
+#. ArPEq
+#: 03090102.xhp
+msgctxt ""
+"03090102.xhp\n"
+"tit\n"
+"help.text"
+msgid "Select...Case Statement"
+msgstr ""
+
+#. PgL5b
+#: 03090102.xhp
+msgctxt ""
+"03090102.xhp\n"
+"bm_id3149416\n"
+"help.text"
+msgid "<bookmark_value>Select Case statement</bookmark_value> <bookmark_value>Case keyword; in Select Case statement</bookmark_value>"
+msgstr ""
+
+#. 5sc6Y
+#: 03090102.xhp
+msgctxt ""
+"03090102.xhp\n"
+"hd_id3149416\n"
+"help.text"
+msgid "<variable id=\"Select_h1\"><link href=\"text/sbasic/shared/03090102.xhp\" name=\"Select...Case Statement\">Select...Case Statement</link></variable>"
+msgstr ""
+
+#. je8zE
+#: 03090102.xhp
+msgctxt ""
+"03090102.xhp\n"
+"par_id3153896\n"
+"help.text"
+msgid "Defines one or more statement blocks depending on the value of an expression."
+msgstr ""
+
+#. CFYkp
+#: 03090102.xhp
+msgctxt ""
+"03090102.xhp\n"
+"par_id841588605629842\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sbasic/Select-Case_statement.svg\" id=\"img_id931588605629842\"><alt id=\"alt_id931588605629842\">Select Case syntax</alt></image>"
+msgstr ""
+
+#. TJu4u
+#: 03090102.xhp
+msgctxt ""
+"03090102.xhp\n"
+"bas_id251592381900645\n"
+"help.text"
+msgid "Select Case expression"
+msgstr ""
+
+#. XrXnH
+#: 03090102.xhp
+msgctxt ""
+"03090102.xhp\n"
+"bas_id321592381903509\n"
+"help.text"
+msgid "Case values"
+msgstr ""
+
+#. DCDEC
+#: 03090102.xhp
+msgctxt ""
+"03090102.xhp\n"
+"bas_id231592381903973\n"
+"help.text"
+msgid "Statement Block"
+msgstr ""
+
+#. 9KDPg
+#: 03090102.xhp
+msgctxt ""
+"03090102.xhp\n"
+"bas_id361592381904372\n"
+"help.text"
+msgid "[ Case values2"
+msgstr ""
+
+#. jSGvu
+#: 03090102.xhp
+msgctxt ""
+"03090102.xhp\n"
+"bas_id421592382002520\n"
+"help.text"
+msgid "Statement Block]"
+msgstr ""
+
+#. NcGYQ
+#: 03090102.xhp
+msgctxt ""
+"03090102.xhp\n"
+"bas_id161592382004496\n"
+"help.text"
+msgid "[ Case Else"
+msgstr ""
+
+#. FkAUG
+#: 03090102.xhp
+msgctxt ""
+"03090102.xhp\n"
+"bas_id681592382005351\n"
+"help.text"
+msgid "Statement Block]"
+msgstr ""
+
+#. MmACE
+#: 03090102.xhp
+msgctxt ""
+"03090102.xhp\n"
+"bas_id831592381905293\n"
+"help.text"
+msgid "End Select"
+msgstr ""
+
+#. HLsCW
+#: 03090102.xhp
+msgctxt ""
+"03090102.xhp\n"
+"par_id3156281\n"
+"help.text"
+msgid "<emph>expression:</emph> Any expression that controls if the statement block that follows the respective <literal>Case</literal> clause is executed."
+msgstr ""
+
+#. F88YW
+#: 03090102.xhp
+msgctxt ""
+"03090102.xhp\n"
+"par_id3150448\n"
+"help.text"
+msgid "<emph>values:</emph> Any value list that is compatible with the expression. The statement block that follows the <literal>Case</literal> clause is executed if <emph>expression</emph> matches <emph>values</emph>."
+msgstr ""
+
+#. oCrpX
+#: 03090102.xhp
+msgctxt ""
+"03090102.xhp\n"
+"par_id3152597\n"
+"help.text"
+msgid "Print \"Number from 1 to 5\""
+msgstr ""
+
+#. SGuia
+#: 03090102.xhp
+msgctxt ""
+"03090102.xhp\n"
+"par_id3147349\n"
+"help.text"
+msgid "Print \"Number from 6 to 8\""
+msgstr ""
+
+#. cPErK
+#: 03090102.xhp
+msgctxt ""
+"03090102.xhp\n"
+"par_id3152886\n"
+"help.text"
+msgid "Print \"Greater than 8\""
+msgstr ""
+
+#. VGBFL
+#: 03090102.xhp
+msgctxt ""
+"03090102.xhp\n"
+"par_id3146975\n"
+"help.text"
+msgid "Print \"Out of range 1 to 10\""
+msgstr ""
+
+#. UtJXY
+#: 03090102.xhp
+msgctxt ""
+"03090102.xhp\n"
+"par_id161588865796615\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03090101.xhp\" name=\"If...Then...Else statement\">If</link> statement"
+msgstr ""
+
+#. mqu6n
+#: 03090102.xhp
+msgctxt ""
+"03090102.xhp\n"
+"par_id281588865818334\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03090103.xhp\" name=\"Iif function\">Iif</link> or <link href=\"text/sbasic/shared/03090410.xhp\" name=\"Switch function\">Switch</link> functions"
+msgstr ""
+
+#. pm7E8
+#: 03090103.xhp
+msgctxt ""
+"03090103.xhp\n"
+"tit\n"
+"help.text"
+msgid "IIf Function"
+msgstr ""
+
+#. G8vo7
+#: 03090103.xhp
+msgctxt ""
+"03090103.xhp\n"
+"bm_id3155420\n"
+"help.text"
+msgid "<bookmark_value>IIf function</bookmark_value>"
+msgstr ""
+
+#. ZvPAM
+#: 03090103.xhp
+msgctxt ""
+"03090103.xhp\n"
+"hd_id3155420\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03090103.xhp\" name=\"IIf Function\">IIf Function</link>"
+msgstr ""
+
+#. nYxhE
+#: 03090103.xhp
+msgctxt ""
+"03090103.xhp\n"
+"par_id3145610\n"
+"help.text"
+msgid "Returns one of two possible function results, depending on the logical value of the evaluated expression."
+msgstr ""
+
+#. dDDFQ
+#: 03090103.xhp
+msgctxt ""
+"03090103.xhp\n"
+"par_id3147560\n"
+"help.text"
+msgid "IIf (Expression, ExpressionTrue, ExpressionFalse)"
+msgstr ""
+
+#. TXHsN
+#: 03090103.xhp
+msgctxt ""
+"03090103.xhp\n"
+"par_id3153381\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 ""
+
+#. Dxoxu
+#: 03090103.xhp
+msgctxt ""
+"03090103.xhp\n"
+"par_id3150870\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 ""
+
+#. iEQga
+#: 03090103.xhp
+msgctxt ""
+"03090103.xhp\n"
+"par_id541598638231139\n"
+"help.text"
+msgid "IIf evaluates both <literal>ExpressionTrue</literal> and <literal>ExpressionFalse</literal> even if it returns only one of them. If one of the expressions results in error, the function returns the error. For example, do not use IIF to bypass a possible division by zero result."
+msgstr ""
+
+#. vGAma
+#: 03090103.xhp
+msgctxt ""
+"03090103.xhp\n"
+"par_id1001598638460925\n"
+"help.text"
+msgid "REM Returns the maximum of 3 values"
+msgstr ""
+
+#. 9JAJ5
+#: 03090103.xhp
+msgctxt ""
+"03090103.xhp\n"
+"par_id161598638840133\n"
+"help.text"
+msgid "REM Bad usage of function IIf"
+msgstr ""
+
+#. dNxFE
+#: 03090103.xhp
+msgctxt ""
+"03090103.xhp\n"
+"par_id161588865796615\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03090101.xhp\" name=\"If...Then...Else statement\">If</link> or <link href=\"text/sbasic/shared/03090102.xhp\" name=\"Select Case statement\">Select Case</link> statements"
+msgstr ""
+
+#. DjnF7
+#: 03090103.xhp
+msgctxt ""
+"03090103.xhp\n"
+"par_id281588865818334\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03090410.xhp\" name=\"Switch function\">Switch</link> function"
+msgstr ""
+
+#. RKALL
+#: 03090200.xhp
+msgctxt ""
+"03090200.xhp\n"
+"tit\n"
+"help.text"
+msgid "Loops"
+msgstr ""
+
+#. vamnD
+#: 03090200.xhp
+msgctxt ""
+"03090200.xhp\n"
+"hd_id3153990\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03090200.xhp\" name=\"Loops\">Loops</link>"
+msgstr ""
+
+#. gDVek
+#: 03090200.xhp
+msgctxt ""
+"03090200.xhp\n"
+"par_id3147226\n"
+"help.text"
+msgid "The following statements execute loops."
+msgstr ""
+
+#. UAuBq
+#: 03090201.xhp
+msgctxt ""
+"03090201.xhp\n"
+"tit\n"
+"help.text"
+msgid "Do...Loop Statement"
+msgstr ""
+
+#. 79pyv
+#: 03090201.xhp
+msgctxt ""
+"03090201.xhp\n"
+"bm_id3156116\n"
+"help.text"
+msgid "<bookmark_value>Do...Loop statement</bookmark_value> <bookmark_value>While; Do loop</bookmark_value> <bookmark_value>Until</bookmark_value> <bookmark_value>loops</bookmark_value>"
+msgstr ""
+
+#. AFBxo
+#: 03090201.xhp
+msgctxt ""
+"03090201.xhp\n"
+"hd_id3156116\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03090201.xhp\" name=\"Do...Loop Statement\">Do...Loop Statement</link>"
+msgstr ""
+
+#. iC6SG
+#: 03090201.xhp
+msgctxt ""
+"03090201.xhp\n"
+"par_id3109850\n"
+"help.text"
+msgid "Repeats the statements between the <emph>Do</emph> and the <emph>Loop</emph> statement while the condition is <literal>True</literal> or until the condition becomes <literal>True</literal>."
+msgstr ""
+
+#. aiGhW
+#: 03090201.xhp
+msgctxt ""
+"03090201.xhp\n"
+"par_id311592320434736\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sbasic/Do_statement.svg\" id=\"img_id601592320434736\"><alt id=\"alt_id551592320434736\">Do statement</alt></image>"
+msgstr ""
+
+#. Ebajb
+#: 03090201.xhp
+msgctxt ""
+"03090201.xhp\n"
+"bas_id171592386317704\n"
+"help.text"
+msgid "' Do While: The statement block is repeated as long as the condition is true"
+msgstr ""
+
+#. VDEWA
+#: 03090201.xhp
+msgctxt ""
+"03090201.xhp\n"
+"bas_id11592386319239\n"
+"help.text"
+msgid "' Do Until: The statement block is repeated as long as the condition is false"
+msgstr ""
+
+#. Dsqzg
+#: 03090201.xhp
+msgctxt ""
+"03090201.xhp\n"
+"par_id591592320435808\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sbasic/Do-Loop_statement.svg\" id=\"img_id691592320435808\"><alt id=\"alt_id341592320435808\">Do...Loop statement</alt></image>"
+msgstr ""
+
+#. VVtxi
+#: 03090201.xhp
+msgctxt ""
+"03090201.xhp\n"
+"bas_id911592386676044\n"
+"help.text"
+msgid "' Loop While: The statement block repeats as long as the condition is true"
+msgstr ""
+
+#. 92FMy
+#: 03090201.xhp
+msgctxt ""
+"03090201.xhp\n"
+"bas_id971592386677004\n"
+"help.text"
+msgid "' Loop Until: The statement block repeats until the condition is true"
+msgstr ""
+
+#. YFnQL
+#: 03090201.xhp
+msgctxt ""
+"03090201.xhp\n"
+"par_id3150791\n"
+"help.text"
+msgid "The <emph>Do...Loop</emph> statement executes a loop as long as, or until, a certain condition is <literal>True</literal>. The condition for exiting the loop must be entered following either the <emph>Do</emph> or the <emph>Loop</emph> statement. The above examples are valid combinations."
+msgstr ""
+
+#. 8QxEA
+#: 03090201.xhp
+msgctxt ""
+"03090201.xhp\n"
+"par_id3156344\n"
+"help.text"
+msgid "<emph>condition:</emph> A comparison, numeric or Basic expression, that evaluates to either <literal>True</literal> or <literal>False</literal>."
+msgstr ""
+
+#. C6QdX
+#: 03090201.xhp
+msgctxt ""
+"03090201.xhp\n"
+"par_id3149669\n"
+"help.text"
+msgid "<emph>statements:</emph> Statements that you want to repeat while or until a condition is <literal>True</literal>."
+msgstr ""
+
+#. iXQfC
+#: 03090201.xhp
+msgctxt ""
+"03090201.xhp\n"
+"par_id3149484\n"
+"help.text"
+msgid "Use the <emph>Exit Do</emph> statement to unconditionally end the loop. You can add this statement anywhere in a <emph>Do</emph>...<emph>Loop</emph> statement. You can also define an exit condition using the <emph>If...Then</emph> structure as follows:"
+msgstr ""
+
+#. pGFcg
+#: 03090201.xhp
+msgctxt ""
+"03090201.xhp\n"
+"par_id161588865796615\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03090202.xhp\" name=\"For statement\">For</link>, <link href=\"text/sbasic/shared/03090102.xhp\" name=\"Select Case statement\">Select Case</link> or <link href=\"text/sbasic/shared/03090203.xhp\" name=\"While statement\">While</link> statements"
+msgstr ""
+
+#. NEcfM
+#: 03090201.xhp
+msgctxt ""
+"03090201.xhp\n"
+"par_id281588865818334\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03090103.xhp\" name=\"Iif function\">Iif</link> or <link href=\"text/sbasic/shared/03090410.xhp\" name=\"Switch function\">Switch</link> functions"
+msgstr ""
+
+#. QECNJ
+#: 03090202.xhp
+msgctxt ""
+"03090202.xhp\n"
+"tit\n"
+"help.text"
+msgid "For...Next Statement"
+msgstr ""
+
+#. TvxZC
+#: 03090202.xhp
+msgctxt ""
+"03090202.xhp\n"
+"bm_id3149205\n"
+"help.text"
+msgid "<bookmark_value>For statement</bookmark_value><bookmark_value>For Each statement</bookmark_value><bookmark_value>In keyword</bookmark_value><bookmark_value>Next keyword</bookmark_value><bookmark_value>Step keyword</bookmark_value><bookmark_value>To keyword</bookmark_value>"
+msgstr ""
+
+#. LVP76
+#: 03090202.xhp
+msgctxt ""
+"03090202.xhp\n"
+"hd_id3149205\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03090202.xhp\" name=\"For...Next Statement\">For...Next Statement</link>"
+msgstr ""
+
+#. AFEvH
+#: 03090202.xhp
+msgctxt ""
+"03090202.xhp\n"
+"par_id3143267\n"
+"help.text"
+msgid "Repeats the statements between the <literal>For...Next</literal> block a specified number of times."
+msgstr ""
+
+#. h79GC
+#: 03090202.xhp
+msgctxt ""
+"03090202.xhp\n"
+"hd_id3156153\n"
+"help.text"
+msgid "Syntax:"
+msgstr ""
+
+#. UqJyC
+#: 03090202.xhp
+msgctxt ""
+"03090202.xhp\n"
+"par_id491585753339474\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sbasic/For-Next_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">For Statement diagram</alt></image>"
+msgstr ""
+
+#. SuZFA
+#: 03090202.xhp
+msgctxt ""
+"03090202.xhp\n"
+"par_id3156024\n"
+"help.text"
+msgid "statement-block"
+msgstr ""
+
+#. CCuTr
+#: 03090202.xhp
+msgctxt ""
+"03090202.xhp\n"
+"par_id3159414\n"
+"help.text"
+msgid "statement-block"
+msgstr ""
+
+#. bcKDQ
+#: 03090202.xhp
+msgctxt ""
+"03090202.xhp\n"
+"par_id491585653339474\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sbasic/For-Each_statement.svg\" id=\"img_id4156297484514\"><alt id=\"alt_id15152797484514\">For Each Statement diagram</alt></image>"
+msgstr ""
+
+#. YbrKJ
+#: 03090202.xhp
+msgctxt ""
+"03090202.xhp\n"
+"bas_id821586521234861\n"
+"help.text"
+msgid "statement-block"
+msgstr ""
+
+#. 75jXr
+#: 03090202.xhp
+msgctxt ""
+"03090202.xhp\n"
+"bas_id501586521235517\n"
+"help.text"
+msgid "statement-block"
+msgstr ""
+
+#. hE24y
+#: 03090202.xhp
+msgctxt ""
+"03090202.xhp\n"
+"hd_id3150400\n"
+"help.text"
+msgid "Variables:"
+msgstr ""
+
+#. iPLzw
+#: 03090202.xhp
+msgctxt ""
+"03090202.xhp\n"
+"par_id3150358\n"
+"help.text"
+msgid "<emph>counter:</emph> Loop <literal>counter</literal> initially assigned the value to the right of the equal sign (<literal>start</literal>). Only numeric variables are valid. The loop counter increases or decreases according to the variable <literal>step</literal> until <literal>end</literal> is passed."
+msgstr ""
+
+#. crpJL
+#: 03090202.xhp
+msgctxt ""
+"03090202.xhp\n"
+"par_id3152455\n"
+"help.text"
+msgid "<emph>start:</emph> Numeric variable that defines the initial value at the beginning of the loop."
+msgstr ""
+
+#. u8ZEL
+#: 03090202.xhp
+msgctxt ""
+"03090202.xhp\n"
+"par_id3151043\n"
+"help.text"
+msgid "<emph>end:</emph> Numeric variable that defines the final value at the end of the loop."
+msgstr ""
+
+#. TmxSC
+#: 03090202.xhp
+msgctxt ""
+"03090202.xhp\n"
+"par_id3156281\n"
+"help.text"
+msgid "<emph>step:</emph> Sets the value by which to increase or decrease the loop counter. If <literal>step</literal> is not specified, the loop counter is incremented by 1. In this case, <literal>end</literal> must be greater than <literal>start</literal>. If you want to decrease <literal>counter</literal>, <literal>end</literal> must be less than <literal>start</literal>, and <literal>step</literal> must be assigned a negative value."
+msgstr ""
+
+#. VMWd9
+#: 03090202.xhp
+msgctxt ""
+"03090202.xhp\n"
+"par_id3154684\n"
+"help.text"
+msgid "The <emph>For...Next</emph> loop repeats all of the statements in the loop for the number of times that is specified by the parameters."
+msgstr ""
+
+#. 6pQ2G
+#: 03090202.xhp
+msgctxt ""
+"03090202.xhp\n"
+"par_id3147287\n"
+"help.text"
+msgid "As the <literal>counter</literal> variable is decreased, %PRODUCTNAME Basic checks if the <literal>end</literal> value has been reached. As soon as the <literal>counter</literal> passes the <literal>end</literal> value, the loop automatically terminates."
+msgstr ""
+
+#. hFEyc
+#: 03090202.xhp
+msgctxt ""
+"03090202.xhp\n"
+"par_id3159154\n"
+"help.text"
+msgid "It is possible to nest <emph>For...Next</emph> statements. If you do not specify a variable following the <emph>Next</emph> statement, <emph>Next</emph> automatically refers to the most recent <emph>For</emph> statement."
+msgstr ""
+
+#. 73dKb
+#: 03090202.xhp
+msgctxt ""
+"03090202.xhp\n"
+"par_id3155306\n"
+"help.text"
+msgid "If you specify an increment of 0, the statements between <emph>For</emph> and <emph>Next</emph> are repeated continuously."
+msgstr ""
+
+#. Xxfcy
+#: 03090202.xhp
+msgctxt ""
+"03090202.xhp\n"
+"par_id3155854\n"
+"help.text"
+msgid "When counting down the counter variable, %PRODUCTNAME Basic checks for overflow or underflow. The loop ends when <literal>counter</literal> exceeds <literal>end</literal> (positive Step value) or is less than <literal>end</literal> (negative Step value)."
+msgstr ""
+
+#. DNpBx
+#: 03090202.xhp
+msgctxt ""
+"03090202.xhp\n"
+"par_id3145273\n"
+"help.text"
+msgid "Use the <emph>Exit For</emph> statement to exit the loop unconditionally. This statement must be within a <emph>For...Next</emph> loop. Use the <emph>If...Then</emph> statement to test the exit condition as follows:"
+msgstr ""
+
+#. M36BA
+#: 03090202.xhp
+msgctxt ""
+"03090202.xhp\n"
+"bas_id621586522583437\n"
+"help.text"
+msgid "statement-block"
+msgstr ""
+
+#. k56rG
+#: 03090202.xhp
+msgctxt ""
+"03090202.xhp\n"
+"bas_id711586522584013\n"
+"help.text"
+msgid "statement-block"
+msgstr ""
+
+#. C2e3R
+#: 03090202.xhp
+msgctxt ""
+"03090202.xhp\n"
+"par_id3156286\n"
+"help.text"
+msgid "In nested <emph>For...Next</emph> loops, if you exit a loop unconditionally with <emph>Exit For</emph>, only one loop is exited."
+msgstr ""
+
+#. Xo6Nj
+#: 03090202.xhp
+msgctxt ""
+"03090202.xhp\n"
+"hd_id3148457\n"
+"help.text"
+msgid "Examples"
+msgstr ""
+
+#. mdCY2
+#: 03090202.xhp
+msgctxt ""
+"03090202.xhp\n"
+"par_id3151074\n"
+"help.text"
+msgid "The following example uses two nested loops to sort a string array with 10 elements ( sEntry() ), that is filled with various contents:"
+msgstr ""
+
+#. uEoLD
+#: 03090202.xhp
+msgctxt ""
+"03090202.xhp\n"
+"par_id561586524231943\n"
+"help.text"
+msgid "This explores the content of an array to display each item it contains."
+msgstr ""
+
+#. TGDLQ
+#: 03090202.xhp
+msgctxt ""
+"03090202.xhp\n"
+"bas_id511586523090639\n"
+"help.text"
+msgid "Sub list_iteration"
+msgstr ""
+
+#. biVQS
+#: 03090202.xhp
+msgctxt ""
+"03090202.xhp\n"
+"bas_id391586523091799\n"
+"help.text"
+msgid "cutlery = Array(\"fork\", \"knife\", \"spoon\")"
+msgstr ""
+
+#. AupdW
+#: 03090202.xhp
+msgctxt ""
+"03090202.xhp\n"
+"bas_id811586523092655\n"
+"help.text"
+msgid "For Each item in cutlery"
+msgstr ""
+
+#. BdxhG
+#: 03090202.xhp
+msgctxt ""
+"03090202.xhp\n"
+"bas_id271586523092911\n"
+"help.text"
+msgid "Print item"
+msgstr ""
+
+#. Pjkxm
+#: 03090202.xhp
+msgctxt ""
+"03090202.xhp\n"
+"bas_id941586523093415\n"
+"help.text"
+msgid "Next ' item"
+msgstr ""
+
+#. ArG25
+#: 03090202.xhp
+msgctxt ""
+"03090202.xhp\n"
+"bas_id301586523093607\n"
+"help.text"
+msgid "End Sub"
+msgstr ""
+
+#. GD68h
+#: 03090203.xhp
+msgctxt ""
+"03090203.xhp\n"
+"tit\n"
+"help.text"
+msgid "While...Wend Statement"
+msgstr ""
+
+#. MB6No
+#: 03090203.xhp
+msgctxt ""
+"03090203.xhp\n"
+"bm_id3150400\n"
+"help.text"
+msgid "<bookmark_value>While;While...Wend loop</bookmark_value> <bookmark_value>While;While Wend loop</bookmark_value>"
+msgstr ""
+
+#. 4Gx4Q
+#: 03090203.xhp
+msgctxt ""
+"03090203.xhp\n"
+"hd_id3150400\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03090203.xhp\" name=\"While...Wend Statement\">While...Wend Statement</link>"
+msgstr ""
+
+#. QMYRt
+#: 03090203.xhp
+msgctxt ""
+"03090203.xhp\n"
+"par_id3151211\n"
+"help.text"
+msgid "When a program encounters a <literal>While</literal> statement, it tests the condition. If the condition is <literal>False</literal>, the program continues directly following the <literal>Wend</literal> statement. If the condition is <literal>True</literal>, the loop is executed until the program finds <literal>Wend</literal> and then jumps back to the <emph>While</emph> statement. If the condition is still <literal>True</literal>, the loop is executed again."
+msgstr ""
+
+#. 2WnLN
+#: 03090203.xhp
+msgctxt ""
+"03090203.xhp\n"
+"par_id3151041\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 <literal>While...Wend</literal> loop with <link href=\"text/sbasic/shared/03090302.xhp\" name=\"GoTo\">GoTo</link>, since this can cause a run-time error."
+msgstr ""
+
+#. s8j22
+#: 03090203.xhp
+msgctxt ""
+"03090203.xhp\n"
+"par_id3145172\n"
+"help.text"
+msgid "A <literal>Do...Loop</literal> is more flexible than a <literal>While...Wend.</literal>"
+msgstr ""
+
+#. DB6ZD
+#: 03090203.xhp
+msgctxt ""
+"03090203.xhp\n"
+"par_id831588865616326\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sbasic/While_statement.svg\" id=\"img_id651588865616326\"><alt id=\"alt_id281588865616326\">While syntax</alt></image>"
+msgstr ""
+
+#. DZ929
+#: 03090203.xhp
+msgctxt ""
+"03090203.xhp\n"
+"par_id3155306\n"
+"help.text"
+msgid "sText =\"This is a short text\""
+msgstr ""
+
+#. ATdAF
+#: 03090203.xhp
+msgctxt ""
+"03090203.xhp\n"
+"par_id3153189\n"
+"help.text"
+msgid "MsgBox sText,0,\"Text encoded\""
+msgstr ""
+
+#. iADnG
+#: 03090203.xhp
+msgctxt ""
+"03090203.xhp\n"
+"par_id161588865796615\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03090201.xhp\" name=\"Do...Loop statement\">Do...Until</link> or <link href=\"text/sbasic/shared/03090201.xhp\" name=\"Do...While statement\">Do...While</link> statement"
+msgstr ""
+
+#. JAoLW
+#: 03090203.xhp
+msgctxt ""
+"03090203.xhp\n"
+"par_id281588865818334\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03090412.xhp\" name=\"Exit statement\">Exit</link> statement"
+msgstr ""
+
+#. kSjtx
+#: 03090300.xhp
+msgctxt ""
+"03090300.xhp\n"
+"tit\n"
+"help.text"
+msgid "Jumps"
+msgstr ""
+
+#. YJd94
+#: 03090300.xhp
+msgctxt ""
+"03090300.xhp\n"
+"hd_id3151262\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03090300.xhp\" name=\"Jumps\">Jumps</link>"
+msgstr ""
+
+#. eLVNY
+#: 03090300.xhp
+msgctxt ""
+"03090300.xhp\n"
+"par_id3148983\n"
+"help.text"
+msgid "The following statements execute jumps."
+msgstr ""
+
+#. egdwE
+#: 03090301.xhp
+msgctxt ""
+"03090301.xhp\n"
+"tit\n"
+"help.text"
+msgid "GoSub...Return Statement"
+msgstr ""
+
+#. EhtAB
+#: 03090301.xhp
+msgctxt ""
+"03090301.xhp\n"
+"bm_id3147242\n"
+"help.text"
+msgid "<bookmark_value>GoSub...Return statement</bookmark_value> <bookmark_value>label; in GoSub...Return statement</bookmark_value>"
+msgstr ""
+
+#. gVEdC
+#: 03090301.xhp
+msgctxt ""
+"03090301.xhp\n"
+"hd_id3147242\n"
+"help.text"
+msgid "<variable id=\"GoSubh1\"><link href=\"text/sbasic/shared/03090301.xhp\" name=\"GoSub...Return Statement\">GoSub...Return Statement</link></variable>"
+msgstr ""
+
+#. HSYep
+#: 03090301.xhp
+msgctxt ""
+"03090301.xhp\n"
+"par_id3145316\n"
+"help.text"
+msgid "Calls a subroutine that is indicated by a label inside a <literal>Sub</literal> or a <literal>Function</literal>. The statements following the label are executed until the next <literal>Return</literal> statement. Afterwards, the program continues with the statement that follows the <literal>GoSub</literal> statement."
+msgstr ""
+
+#. g6Wgg
+#: 03090301.xhp
+msgctxt ""
+"03090301.xhp\n"
+"par_id3145069\n"
+"help.text"
+msgid "GoSub label[:]"
+msgstr ""
+
+#. krBDs
+#: 03090301.xhp
+msgctxt ""
+"03090301.xhp\n"
+"par_id471588670859073\n"
+"help.text"
+msgid "<emph>label: </emph>A line identifier indicating where to continue execution. The scope of a label in that of the routine it belongs to."
+msgstr ""
+
+#. sqKLC
+#: 03090301.xhp
+msgctxt ""
+"03090301.xhp\n"
+"par_id3147318\n"
+"help.text"
+msgid "The <literal>GoSub</literal> statement calls a local subroutine indicated by a label from within a subroutine or a function. The name of the label must end with a colon (\":\")."
+msgstr ""
+
+#. CfgLj
+#: 03090301.xhp
+msgctxt ""
+"03090301.xhp\n"
+"bas_id411588670455217\n"
+"help.text"
+msgid "' statements"
+msgstr ""
+
+#. hGEZe
+#: 03090301.xhp
+msgctxt ""
+"03090301.xhp\n"
+"bas_id421588670457589\n"
+"help.text"
+msgid "' statements"
+msgstr ""
+
+#. a8NbA
+#: 03090301.xhp
+msgctxt ""
+"03090301.xhp\n"
+"bas_id171588670458263\n"
+"help.text"
+msgid "' statements"
+msgstr ""
+
+#. X2mAh
+#: 03090301.xhp
+msgctxt ""
+"03090301.xhp\n"
+"par_id3153190\n"
+"help.text"
+msgid "If the program encounters a Return statement not preceded by <emph>GoSub</emph>, $[officename] Basic returns an error message. Use <emph>Exit Sub</emph> or <emph>Exit Function</emph> to ensure that the program leaves a Sub or Function before reaching the next Return statement."
+msgstr ""
+
+#. HZDqC
+#: 03090301.xhp
+msgctxt ""
+"03090301.xhp\n"
+"par_id3145799\n"
+"help.text"
+msgid "The following example demonstrates the use of <emph>GoSub</emph> and <emph>Return</emph>. By executing a program section twice, the program calculates the square root of two numbers that are entered by the user."
+msgstr ""
+
+#. JXEq5
+#: 03090301.xhp
+msgctxt ""
+"03090301.xhp\n"
+"par_id3146970\n"
+"help.text"
+msgid "iInputa = Int(InputBox(\"Enter the first number: \",\"NumberInput\"))"
+msgstr ""
+
+#. iC9jg
+#: 03090301.xhp
+msgctxt ""
+"03090301.xhp\n"
+"par_id3150329\n"
+"help.text"
+msgid "iInputb = Int(InputBox(\"Enter the second number: \",\"NumberInput\"))"
+msgstr ""
+
+#. LFYhz
+#: 03090301.xhp
+msgctxt ""
+"03090301.xhp\n"
+"par_id3154756\n"
+"help.text"
+msgid "Print \"The square root of\";iInputa;\" is\";iInputc"
+msgstr ""
+
+#. hDCHM
+#: 03090301.xhp
+msgctxt ""
+"03090301.xhp\n"
+"par_id3147340\n"
+"help.text"
+msgid "Print \"The square root of\";iInputb;\" is\";iInputc"
+msgstr ""
+
+#. ruEDV
+#: 03090302.xhp
+msgctxt ""
+"03090302.xhp\n"
+"tit\n"
+"help.text"
+msgid "GoTo Statement"
+msgstr ""
+
+#. MJeVf
+#: 03090302.xhp
+msgctxt ""
+"03090302.xhp\n"
+"bm_id3159413\n"
+"help.text"
+msgid "<bookmark_value>GoTo statement</bookmark_value> <bookmark_value>label; in GoTo statement</bookmark_value>"
+msgstr ""
+
+#. 6PsQf
+#: 03090302.xhp
+msgctxt ""
+"03090302.xhp\n"
+"hd_id3159413\n"
+"help.text"
+msgid "<variable id=\"GoToh1\"><link href=\"text/sbasic/shared/03090302.xhp\" name=\"GoTo Statement\">GoTo Statement</link></variable>"
+msgstr ""
+
+#. zmo8E
+#: 03090302.xhp
+msgctxt ""
+"03090302.xhp\n"
+"par_id3153379\n"
+"help.text"
+msgid "Continues program execution within a <literal>Sub</literal> or <literal>Function</literal> at the procedure line indicated by a label."
+msgstr ""
+
+#. MFgEA
+#: 03090302.xhp
+msgctxt ""
+"03090302.xhp\n"
+"hd_id3149656\n"
+"help.text"
+msgid "Syntax:"
+msgstr ""
+
+#. ziCip
+#: 03090302.xhp
+msgctxt ""
+"03090302.xhp\n"
+"hd_id3150870\n"
+"help.text"
+msgid "Parameters:"
+msgstr ""
+
+#. AoFVn
+#: 03090302.xhp
+msgctxt ""
+"03090302.xhp\n"
+"par_id471588670859073\n"
+"help.text"
+msgid "<emph>label: </emph>A line identifier indicating where to continue execution. The scope of a label is that of the routine it belongs to."
+msgstr ""
+
+#. ocGjF
+#: 03090302.xhp
+msgctxt ""
+"03090302.xhp\n"
+"par_id3152596\n"
+"help.text"
+msgid "Use the <literal>GoTo</literal> 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 end it with a colon (\":\")."
+msgstr ""
+
+#. 8o2aP
+#: 03090302.xhp
+msgctxt ""
+"03090302.xhp\n"
+"par_id3155416\n"
+"help.text"
+msgid "You cannot use the <literal>GoTo</literal> statement to jump out of a <literal>Sub</literal> or <literal>Function</literal>."
+msgstr ""
+
+#. s9tCK
+#: 03090302.xhp
+msgctxt ""
+"03090302.xhp\n"
+"hd_id3154731\n"
+"help.text"
+msgid "Example:"
+msgstr ""
+
+#. YN5FT
+#: 03090302.xhp
+msgctxt ""
+"03090302.xhp\n"
+"par_id3156424\n"
+"help.text"
+msgid "' statement block"
+msgstr ""
+
+#. 4DWfG
+#: 03090302.xhp
+msgctxt ""
+"03090302.xhp\n"
+"par_id3161832\n"
+"help.text"
+msgid "' statement block"
+msgstr ""
+
+#. FMGBa
+#: 03090302.xhp
+msgctxt ""
+"03090302.xhp\n"
+"par_id3152462\n"
+"help.text"
+msgid "' statement block"
+msgstr ""
+
+#. GLei6
+#: 03090303.xhp
+msgctxt ""
+"03090303.xhp\n"
+"tit\n"
+"help.text"
+msgid "On...GoSub Statement; On...GoTo Statement"
+msgstr ""
+
+#. RSWDG
+#: 03090303.xhp
+msgctxt ""
+"03090303.xhp\n"
+"bm_id3153897\n"
+"help.text"
+msgid "<bookmark_value>On...GoSub statement</bookmark_value> <bookmark_value>On...GoTo statement</bookmark_value> <bookmark_value>label; in On...GoSub statement</bookmark_value> <bookmark_value>label; in On...GoTo statement</bookmark_value>"
+msgstr ""
+
+#. 2xMSm
+#: 03090303.xhp
+msgctxt ""
+"03090303.xhp\n"
+"hd_id3153897\n"
+"help.text"
+msgid "<variable id=\"OnGoSubGoToh1\"><link href=\"text/sbasic/shared/03090303.xhp\" name=\"On...GoSub Statement; On...GoTo Statement\">On...GoSub Statement; On...GoTo Statement</link></variable>"
+msgstr ""
+
+#. 9AaZW
+#: 03090303.xhp
+msgctxt ""
+"03090303.xhp\n"
+"par_id3150359\n"
+"help.text"
+msgid "Branches to one of several specified lines in the program code, depending on the value of a numeric expression."
+msgstr ""
+
+#. 7yAyG
+#: 03090303.xhp
+msgctxt ""
+"03090303.xhp\n"
+"par_id841588605629842\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sbasic/On-GoSub-GoTo_statement.svg\" id=\"img_id931588605629842\"><alt id=\"alt_id931588605629842\">On GoSub/GoTo syntax</alt></image>"
+msgstr ""
+
+#. 7DeW7
+#: 03090303.xhp
+msgctxt ""
+"03090303.xhp\n"
+"par_id3154366\n"
+"help.text"
+msgid "On expression GoSub Label1[, Label2[, Label3[,...]]]"
+msgstr ""
+
+#. osLES
+#: 03090303.xhp
+msgctxt ""
+"03090303.xhp\n"
+"par_id3150769\n"
+"help.text"
+msgid "On expression GoTo Label1[, Label2[, Label3[,...]]]"
+msgstr ""
+
+#. eLCEK
+#: 03090303.xhp
+msgctxt ""
+"03090303.xhp\n"
+"par_id3148673\n"
+"help.text"
+msgid "<emph>expression:</emph> Any numeric expression between 0 and 255 that determines which of the lines the program branches to. If <emph>expression</emph> is 0, the statement is not executed. If <emph>expression</emph> is greater than 0, the program jumps to the label that has a position number that corresponds to the expression (1 = First label; 2 = Second label)"
+msgstr ""
+
+#. K4CfD
+#: 03090303.xhp
+msgctxt ""
+"03090303.xhp\n"
+"par_id3153194\n"
+"help.text"
+msgid "<emph>label:</emph> Target line according to<emph> GoTo </emph>or <emph>GoSub</emph> structure."
+msgstr ""
+
+#. eqUXk
+#: 03090303.xhp
+msgctxt ""
+"03090303.xhp\n"
+"par_id3156442\n"
+"help.text"
+msgid "The <emph>GoTo</emph> or <emph>GoSub </emph>conventions are valid."
+msgstr ""
+
+#. PtTux
+#: 03090303.xhp
+msgctxt ""
+"03090303.xhp\n"
+"par_id3153948\n"
+"help.text"
+msgid "sVar =sVar & \" From Sub 1 to\" : Return"
+msgstr ""
+
+#. VKHHb
+#: 03090303.xhp
+msgctxt ""
+"03090303.xhp\n"
+"par_id3153708\n"
+"help.text"
+msgid "sVar =sVar & \" From Sub 2 to\" : Return"
+msgstr ""
+
+#. uRwqS
+#: 03090303.xhp
+msgctxt ""
+"03090303.xhp\n"
+"par_id3150321\n"
+"help.text"
+msgid "sVar =sVar & \" Label 1\" : GoTo Ende"
+msgstr ""
+
+#. MccqF
+#: 03090303.xhp
+msgctxt ""
+"03090303.xhp\n"
+"par_id3155764\n"
+"help.text"
+msgid "sVar =sVar & \" Label 2\""
+msgstr ""
+
+#. vPMtX
+#: 03090400.xhp
+msgctxt ""
+"03090400.xhp\n"
+"tit\n"
+"help.text"
+msgid "Further Statements"
+msgstr ""
+
+#. xxBLj
+#: 03090400.xhp
+msgctxt ""
+"03090400.xhp\n"
+"hd_id3145316\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03090400.xhp\" name=\"Further Statements\">Further Statements</link>"
+msgstr ""
+
+#. qFvDF
+#: 03090400.xhp
+msgctxt ""
+"03090400.xhp\n"
+"par_id3154923\n"
+"help.text"
+msgid "Statements that do not belong to any of the other categories are described here."
+msgstr ""
+
+#. VEG8P
+#: 03090401.xhp
+msgctxt ""
+"03090401.xhp\n"
+"tit\n"
+"help.text"
+msgid "Call Statement"
+msgstr ""
+
+#. XWEkZ
+#: 03090401.xhp
+msgctxt ""
+"03090401.xhp\n"
+"bm_id3154422\n"
+"help.text"
+msgid "<bookmark_value>Call statement</bookmark_value>"
+msgstr ""
+
+#. HW8av
+#: 03090401.xhp
+msgctxt ""
+"03090401.xhp\n"
+"hd_id3154422\n"
+"help.text"
+msgid "<variable id=\"Call_h1\"><link href=\"text/sbasic/shared/03090401.xhp\" name=\"Call Statement\">Call Statement</link></variable>"
+msgstr ""
+
+#. nPKzF
+#: 03090401.xhp
+msgctxt ""
+"03090401.xhp\n"
+"par_id3153394\n"
+"help.text"
+msgid "Transfers the control of the program to a subroutine, a function, or a procedure of a <link href=\"text/sbasic/shared/03090403.xhp\" name=\"Dynamic Link Library\">Dynamic Link Library (DLL)</link>. The keyword, type and number of parameters is dependent on the routine that is being called."
+msgstr ""
+
+#. CXLBw
+#: 03090401.xhp
+msgctxt ""
+"03090401.xhp\n"
+"par_id491585753339474\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sbasic/Call_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Call Statement diagram</alt></image>"
+msgstr ""
+
+#. zeXDB
+#: 03090401.xhp
+msgctxt ""
+"03090401.xhp\n"
+"par_id3150984\n"
+"help.text"
+msgid "[Call] name [(] [param :=] value, ... [)]"
+msgstr ""
+
+#. C2MXB
+#: 03090401.xhp
+msgctxt ""
+"03090401.xhp\n"
+"par_id3148473\n"
+"help.text"
+msgid "<emph>name:</emph> Name of the subroutine, the function, or the <link href=\"text/sbasic/shared/03090403.xhp\" name=\"Dynamic Link Library\">DLL</link> that you want to call"
+msgstr ""
+
+#. 23rrr
+#: 03090401.xhp
+msgctxt ""
+"03090401.xhp\n"
+"par_id3148946\n"
+"help.text"
+msgid "<emph>param:</emph> Keyword parameter name to pass to the routine, followed by its <emph>value</emph>. The name must match the routine declaration. Keywords are optional and can be used in any order."
+msgstr ""
+
+#. r9JSP
+#: 03090401.xhp
+msgctxt ""
+"03090401.xhp\n"
+"par_id871586190690812\n"
+"help.text"
+msgid "<emph>value:</emph> Positional parameter value. The type is dependent on the routine that is being called"
+msgstr ""
+
+#. gANH7
+#: 03090401.xhp
+msgctxt ""
+"03090401.xhp\n"
+"par_id421586006407428\n"
+"help.text"
+msgid "When mixing positional and keyword parameters, make sure positional parameters are following the routine declaration order."
+msgstr ""
+
+#. xFXk8
+#: 03090401.xhp
+msgctxt ""
+"03090401.xhp\n"
+"par_id3154216\n"
+"help.text"
+msgid "When a function is used as an expression, enclosing parameters with brackets becomes necessary. Using a <link href=\"text/sbasic/shared/03090403.xhp\" name=\"Declare Statement\">Declare statement</link> is compulsory prior to call a DLL."
+msgstr ""
+
+#. eyeVE
+#: 03090402.xhp
+msgctxt ""
+"03090402.xhp\n"
+"tit\n"
+"help.text"
+msgid "Choose Function"
+msgstr ""
+
+#. 3AfGe
+#: 03090402.xhp
+msgctxt ""
+"03090402.xhp\n"
+"bm_id3143271\n"
+"help.text"
+msgid "<bookmark_value>Choose function</bookmark_value>"
+msgstr ""
+
+#. xBTpx
+#: 03090402.xhp
+msgctxt ""
+"03090402.xhp\n"
+"hd_id3143271\n"
+"help.text"
+msgid "<variable id=\"Choose_h1\"><link href=\"text/sbasic/shared/03090402.xhp\" name=\"Choose Function\">Choose Function</link></variable>"
+msgstr ""
+
+#. mSQHZ
+#: 03090402.xhp
+msgctxt ""
+"03090402.xhp\n"
+"par_id3149234\n"
+"help.text"
+msgid "Returns a selected value from a list of arguments."
+msgstr ""
+
+#. mJ9ED
+#: 03090402.xhp
+msgctxt ""
+"03090402.xhp\n"
+"par_id131649410695924\n"
+"help.text"
+msgid "Variant. A value inferred from the <literal>Index</literal> parameter."
+msgstr ""
+
+#. FzwBC
+#: 03090402.xhp
+msgctxt ""
+"03090402.xhp\n"
+"par_id3148664\n"
+"help.text"
+msgid "<emph>Index</emph>: Any numeric expression rounded to a whole number. <literal>Index</literal> accepts integer values starting at 1 that specify which of the possible choices to return."
+msgstr ""
+
+#. F4HGV
+#: 03090402.xhp
+msgctxt ""
+"03090402.xhp\n"
+"par_id3150791\n"
+"help.text"
+msgid "<emph>Expression1, Expression2, …, Expression_n</emph>: Expressions representing each of the possible choices."
+msgstr ""
+
+#. EnHLY
+#: 03090402.xhp
+msgctxt ""
+"03090402.xhp\n"
+"par_id3151043\n"
+"help.text"
+msgid "The <emph>Choose</emph> function returns a value from the list of expressions based on the index value. If <emph>Index = 1</emph>, the function returns the first expression in the list, if <emph>Index = 2</emph>, it returns the second expression, and so on."
+msgstr ""
+
+#. 3zB3D
+#: 03090402.xhp
+msgctxt ""
+"03090402.xhp\n"
+"par_id3153192\n"
+"help.text"
+msgid "If the index value is less than 1 or greater than the number of expressions listed, the function returns a <literal>Null</literal> value."
+msgstr ""
+
+#. 29FZG
+#: 03090402.xhp
+msgctxt ""
+"03090402.xhp\n"
+"par_id911649410528836\n"
+"help.text"
+msgid "Error #5 occurs when parameters are omitted. Error #13 occurs if <literal>Index</literal> equals <literal>Null</literal>."
+msgstr ""
+
+#. pKeBP
+#: 03090402.xhp
+msgctxt ""
+"03090402.xhp\n"
+"par_id3156281\n"
+"help.text"
+msgid "The following example uses the or <literal>Choose</literal> function to select a string from several strings that form a menu:"
+msgstr ""
+
+#. Mg2aX
+#: 03090402.xhp
+msgctxt ""
+"03090402.xhp\n"
+"par_idm871795712\n"
+"help.text"
+msgid "Print ChooseMenu(2) ' \"Save Format\""
+msgstr ""
+
+#. RqBgd
+#: 03090402.xhp
+msgctxt ""
+"03090402.xhp\n"
+"par_id3156443\n"
+"help.text"
+msgid "ChooseMenu = Choose(Index, \"Quick Format\", \"Save Format\", \"System Format\")"
+msgstr ""
+
+#. vTaJA
+#: 03090403.xhp
+msgctxt ""
+"03090403.xhp\n"
+"tit\n"
+"help.text"
+msgid "Declare Statement"
+msgstr ""
+
+#. E7PJ3
+#: 03090403.xhp
+msgctxt ""
+"03090403.xhp\n"
+"bm_id3148473\n"
+"help.text"
+msgid "<bookmark_value>Declare statement</bookmark_value>"
+msgstr ""
+
+#. EdjGK
+#: 03090403.xhp
+msgctxt ""
+"03090403.xhp\n"
+"hd_id3148473\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03090403.xhp\" name=\"Declare Statement\">Declare Statement</link>"
+msgstr ""
+
+#. prHYx
+#: 03090403.xhp
+msgctxt ""
+"03090403.xhp\n"
+"bm_id3145316\n"
+"help.text"
+msgid "<bookmark_value>DLL (Dynamic Link Library)</bookmark_value>"
+msgstr ""
+
+#. doBTG
+#: 03090403.xhp
+msgctxt ""
+"03090403.xhp\n"
+"par_id3145316\n"
+"help.text"
+msgid "Declares and defines a subroutine in a DLL file that you want to execute from $[officename] Basic."
+msgstr ""
+
+#. zvxCx
+#: 03090403.xhp
+msgctxt ""
+"03090403.xhp\n"
+"par_id3146795\n"
+"help.text"
+msgid "See also: <link href=\"text/sbasic/shared/03090405.xhp\" name=\"FreeLibrary\">FreeLibrary</link>"
+msgstr ""
+
+#. X9NcC
+#: 03090403.xhp
+msgctxt ""
+"03090403.xhp\n"
+"hd_id3156344\n"
+"help.text"
+msgid "Syntax:"
+msgstr ""
+
+#. eSZ4v
+#: 03090403.xhp
+msgctxt ""
+"03090403.xhp\n"
+"par_id3148664\n"
+"help.text"
+msgid "Declare {Sub | Function} Name Lib \"Libname\" [Alias \"Aliasname\"] [Parameter] [As Type]"
+msgstr ""
+
+#. eUtD2
+#: 03090403.xhp
+msgctxt ""
+"03090403.xhp\n"
+"hd_id3153360\n"
+"help.text"
+msgid "Parameters:"
+msgstr ""
+
+#. NhQSW
+#: 03090403.xhp
+msgctxt ""
+"03090403.xhp\n"
+"par_id3154140\n"
+"help.text"
+msgid "<emph>Name:</emph> A different name than defined in the DLL, to call the subroutine from $[officename] Basic."
+msgstr ""
+
+#. zVwji
+#: 03090403.xhp
+msgctxt ""
+"03090403.xhp\n"
+"par_id3150870\n"
+"help.text"
+msgid "<emph>Aliasname</emph>: Name of the subroutine as defined in the DLL."
+msgstr ""
+
+#. TQqWz
+#: 03090403.xhp
+msgctxt ""
+"03090403.xhp\n"
+"par_id3154684\n"
+"help.text"
+msgid "<emph>Libname:</emph> File or system name of the DLL. This library is automatically loaded the first time the function is used."
+msgstr ""
+
+#. U3izx
+#: 03090403.xhp
+msgctxt ""
+"03090403.xhp\n"
+"par_id3148452\n"
+"help.text"
+msgid "<emph>Argumentlist:</emph> List of parameters representing arguments that are passed to the procedure when it is called. The type and number of parameters is dependent on the executed procedure."
+msgstr ""
+
+#. 2xxAq
+#: 03090403.xhp
+msgctxt ""
+"03090403.xhp\n"
+"par_id3147289\n"
+"help.text"
+msgid "<emph>Type:</emph> Defines the data type of the value that is returned by a function procedure. You can exclude this parameter if a type-declaration character is entered after the name."
+msgstr ""
+
+#. SDREj
+#: 03090403.xhp
+msgctxt ""
+"03090403.xhp\n"
+"par_id3146922\n"
+"help.text"
+msgid "To pass a parameter to a subroutine as a value instead of as a reference, the parameter must be indicated by the keyword <emph>ByVal</emph>."
+msgstr ""
+
+#. NcnDt
+#: 03090403.xhp
+msgctxt ""
+"03090403.xhp\n"
+"hd_id3153951\n"
+"help.text"
+msgid "Example:"
+msgstr ""
+
+#. 6pXTF
+#: 03090404.xhp
+msgctxt ""
+"03090404.xhp\n"
+"tit\n"
+"help.text"
+msgid "End Statement"
+msgstr ""
+
+#. C5LYW
+#: 03090404.xhp
+msgctxt ""
+"03090404.xhp\n"
+"bm_id3150771\n"
+"help.text"
+msgid "<bookmark_value>End statement</bookmark_value>"
+msgstr ""
+
+#. DzB6L
+#: 03090404.xhp
+msgctxt ""
+"03090404.xhp\n"
+"hd_id3150771\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03090404.xhp\" name=\"End Statement\">End Statement</link>"
+msgstr ""
+
+#. s5S7Q
+#: 03090404.xhp
+msgctxt ""
+"03090404.xhp\n"
+"par_id3153126\n"
+"help.text"
+msgid "Ends a procedure or block."
+msgstr ""
+
+#. CNUrX
+#: 03090404.xhp
+msgctxt ""
+"03090404.xhp\n"
+"hd_id3147264\n"
+"help.text"
+msgid "Syntax:"
+msgstr ""
+
+#. G9LNz
+#: 03090404.xhp
+msgctxt ""
+"03090404.xhp\n"
+"hd_id3149456\n"
+"help.text"
+msgid "Parameters:"
+msgstr ""
+
+#. AbDDF
+#: 03090404.xhp
+msgctxt ""
+"03090404.xhp\n"
+"par_id3150398\n"
+"help.text"
+msgid "Use the End statement as follows:"
+msgstr ""
+
+#. mJoxY
+#: 03090404.xhp
+msgctxt ""
+"03090404.xhp\n"
+"hd_id3154366\n"
+"help.text"
+msgid "Statement"
+msgstr ""
+
+#. 8sQMm
+#: 03090404.xhp
+msgctxt ""
+"03090404.xhp\n"
+"par_id3151043\n"
+"help.text"
+msgid "End: Is not required, but can be entered anywhere within a procedure to end the program execution."
+msgstr ""
+
+#. AnYsp
+#: 03090404.xhp
+msgctxt ""
+"03090404.xhp\n"
+"par_id371543799561260\n"
+"help.text"
+msgid "End Enum: Ends an Enum VBA statement"
+msgstr ""
+
+#. XTNbJ
+#: 03090404.xhp
+msgctxt ""
+"03090404.xhp\n"
+"par_id3145171\n"
+"help.text"
+msgid "End Function: Ends a <emph>Function</emph> statement."
+msgstr ""
+
+#. 2NwJf
+#: 03090404.xhp
+msgctxt ""
+"03090404.xhp\n"
+"par_id3153192\n"
+"help.text"
+msgid "End If: Marks the end of a <emph>If...Then...Else</emph> block."
+msgstr ""
+
+#. Qo2Xg
+#: 03090404.xhp
+msgctxt ""
+"03090404.xhp\n"
+"par_id51581259731973\n"
+"help.text"
+msgid "End Property: Marks the end of a <emph>Property</emph> statement."
+msgstr ""
+
+#. 3xFEp
+#: 03090404.xhp
+msgctxt ""
+"03090404.xhp\n"
+"par_id3148451\n"
+"help.text"
+msgid "End Select: Marks the end of a <emph>Select Case</emph> block."
+msgstr ""
+
+#. Ciwr2
+#: 03090404.xhp
+msgctxt ""
+"03090404.xhp\n"
+"par_id3155131\n"
+"help.text"
+msgid "End Sub: Ends a <emph>Sub</emph> statement."
+msgstr ""
+
+#. BWTbj
+#: 03090404.xhp
+msgctxt ""
+"03090404.xhp\n"
+"par_id811543799601628\n"
+"help.text"
+msgid "End With: Ends a With statement"
+msgstr ""
+
+#. pcgxU
+#: 03090404.xhp
+msgctxt ""
+"03090404.xhp\n"
+"hd_id3146120\n"
+"help.text"
+msgid "Example:"
+msgstr ""
+
+#. ZqDZT
+#: 03090404.xhp
+msgctxt ""
+"03090404.xhp\n"
+"par_id3152887\n"
+"help.text"
+msgid "Print \"Number from 1 to 5\""
+msgstr ""
+
+#. 48CJR
+#: 03090404.xhp
+msgctxt ""
+"03090404.xhp\n"
+"par_id3148618\n"
+"help.text"
+msgid "Print \"Number from 6 to 8\""
+msgstr ""
+
+#. PCqCd
+#: 03090404.xhp
+msgctxt ""
+"03090404.xhp\n"
+"par_id3147436\n"
+"help.text"
+msgid "Print \"Greater than 8\""
+msgstr ""
+
+#. EDWju
+#: 03090404.xhp
+msgctxt ""
+"03090404.xhp\n"
+"par_id3150418\n"
+"help.text"
+msgid "Print \"Outside range 1 to 10\""
+msgstr ""
+
+#. L2AWo
+#: 03090405.xhp
+msgctxt ""
+"03090405.xhp\n"
+"tit\n"
+"help.text"
+msgid "FreeLibrary Function"
+msgstr ""
+
+#. gocHz
+#: 03090405.xhp
+msgctxt ""
+"03090405.xhp\n"
+"bm_id3143270\n"
+"help.text"
+msgid "<bookmark_value>FreeLibrary function</bookmark_value>"
+msgstr ""
+
+#. 99F9U
+#: 03090405.xhp
+msgctxt ""
+"03090405.xhp\n"
+"hd_id3143270\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03090405.xhp\" name=\"FreeLibrary Function\">FreeLibrary Function</link>"
+msgstr ""
+
+#. BBTbS
+#: 03090405.xhp
+msgctxt ""
+"03090405.xhp\n"
+"par_id3147559\n"
+"help.text"
+msgid "Releases DLLs that were loaded by a Declare statement. A released DLL is automatically reloaded if one of its functions is called. See also: <link href=\"text/sbasic/shared/03090403.xhp\" name=\"Declare\">Declare</link>"
+msgstr ""
+
+#. 4Dgqd
+#: 03090405.xhp
+msgctxt ""
+"03090405.xhp\n"
+"hd_id3148550\n"
+"help.text"
+msgid "Syntax:"
+msgstr ""
+
+#. MfCCz
+#: 03090405.xhp
+msgctxt ""
+"03090405.xhp\n"
+"par_id3153361\n"
+"help.text"
+msgid "FreeLibrary (LibName As String)"
+msgstr ""
+
+#. 6vWpA
+#: 03090405.xhp
+msgctxt ""
+"03090405.xhp\n"
+"hd_id3153380\n"
+"help.text"
+msgid "Parameters:"
+msgstr ""
+
+#. bscHL
+#: 03090405.xhp
+msgctxt ""
+"03090405.xhp\n"
+"par_id3154138\n"
+"help.text"
+msgid "<emph>LibName:</emph> String expression that specifies the name of the DLL."
+msgstr ""
+
+#. iCd9a
+#: 03090405.xhp
+msgctxt ""
+"03090405.xhp\n"
+"par_id3146923\n"
+"help.text"
+msgid "FreeLibrary can only release DLLs that are loaded during Basic runtime."
+msgstr ""
+
+#. VxZrA
+#: 03090405.xhp
+msgctxt ""
+"03090405.xhp\n"
+"hd_id3153363\n"
+"help.text"
+msgid "Example:"
+msgstr ""
+
+#. AFUFq
+#: 03090406.xhp
+msgctxt ""
+"03090406.xhp\n"
+"tit\n"
+"help.text"
+msgid "Function Statement"
+msgstr ""
+
+#. BAraQ
+#: 03090406.xhp
+msgctxt ""
+"03090406.xhp\n"
+"bm_id3153346\n"
+"help.text"
+msgid "<bookmark_value>Function statement</bookmark_value>"
+msgstr ""
+
+#. 4AZJf
+#: 03090406.xhp
+msgctxt ""
+"03090406.xhp\n"
+"hd_id3153346\n"
+"help.text"
+msgid "<variable id=\"Function_h1\"><link href=\"text/sbasic/shared/03090406.xhp\" name=\"Function Statement\">Function Statement</link></variable>"
+msgstr ""
+
+#. i3BLj
+#: 03090406.xhp
+msgctxt ""
+"03090406.xhp\n"
+"par_id3159158\n"
+"help.text"
+msgid "A function is a block of code which runs when it is called. A function is usually called in an expression."
+msgstr ""
+
+#. fLBaF
+#: 03090406.xhp
+msgctxt ""
+"03090406.xhp\n"
+"par_id451647246564161\n"
+"help.text"
+msgid "You can pass data, known as parameters or arguments, into a function. You may pass a parameter by value or by reference. When by reference, modifications applied to the parameter in the function will be sent back to the calling code."
+msgstr ""
+
+#. 9wMCM
+#: 03090406.xhp
+msgctxt ""
+"03090406.xhp\n"
+"par_id101647247154065\n"
+"help.text"
+msgid "A function usually returns data as a result."
+msgstr ""
+
+#. zFnQ7
+#: 03090406.xhp
+msgctxt ""
+"03090406.xhp\n"
+"par_id971588473588701\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sbasic/Function_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Function Statement diagram</alt></image>"
+msgstr ""
+
+#. 5Gonq
+#: 03090406.xhp
+msgctxt ""
+"03090406.xhp\n"
+"bas_id541588427401158\n"
+"help.text"
+msgid "statements"
+msgstr ""
+
+#. c2Voc
+#: 03090406.xhp
+msgctxt ""
+"03090406.xhp\n"
+"bas_id631588427410583\n"
+"help.text"
+msgid "statements"
+msgstr ""
+
+#. QYBuD
+#: 03090406.xhp
+msgctxt ""
+"03090406.xhp\n"
+"par_id81588429476557\n"
+"help.text"
+msgid "<emph>scope:</emph> Function default scope is <literal>Public</literal>. A <literal>Private</literal> scope denotes a module internal routine, not intended to be used from other modules."
+msgstr ""
+
+#. h8Q2o
+#: 03090406.xhp
+msgctxt ""
+"03090406.xhp\n"
+"par_id3153193\n"
+"help.text"
+msgid "<emph>name:</emph> Name of the subroutine to contain the value returned by the function."
+msgstr ""
+
+#. EUtuq
+#: 03090406.xhp
+msgctxt ""
+"03090406.xhp\n"
+"par_id3147229\n"
+"help.text"
+msgid "<emph>arguments:</emph> Parameters to be passed to the subroutine."
+msgstr ""
+
+#. LGVjB
+#: 03090406.xhp
+msgctxt ""
+"03090406.xhp\n"
+"hd_id3163710\n"
+"help.text"
+msgid "Examples:"
+msgstr ""
+
+#. x3YcB
+#: 03090406.xhp
+msgctxt ""
+"03090406.xhp\n"
+"par_id3152939\n"
+"help.text"
+msgid "For siStep = 0 To 10 ' Fill array with test data"
+msgstr ""
+
+#. yBFND
+#: 03090406.xhp
+msgctxt ""
+"03090406.xhp\n"
+"par_id3154943\n"
+"help.text"
+msgid "' Linsearch searches a TextArray:sList() for a TextEntry:"
+msgstr ""
+
+#. aVKdf
+#: 03090406.xhp
+msgctxt ""
+"03090406.xhp\n"
+"par_id3155601\n"
+"help.text"
+msgid "' Return value Is the index of the entry Or 0 (Null)"
+msgstr ""
+
+#. VPCmC
+#: 03090406.xhp
+msgctxt ""
+"03090406.xhp\n"
+"par_id3153707\n"
+"help.text"
+msgid "Exit For ' sItem found"
+msgstr ""
+
+#. FTf7A
+#: 03090406.xhp
+msgctxt ""
+"03090406.xhp\n"
+"par_id181647247913872\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/01010210.xhp\" name=\"Subroutine basics\">Subroutines basics</link>"
+msgstr ""
+
+#. yZEAJ
+#: 03090407.xhp
+msgctxt ""
+"03090407.xhp\n"
+"tit\n"
+"help.text"
+msgid "Rem Statement"
+msgstr ""
+
+#. sxYLn
+#: 03090407.xhp
+msgctxt ""
+"03090407.xhp\n"
+"bm_id3154347\n"
+"help.text"
+msgid "<bookmark_value>Rem statement</bookmark_value> <bookmark_value>comments;Rem statement</bookmark_value>"
+msgstr ""
+
+#. FgQDY
+#: 03090407.xhp
+msgctxt ""
+"03090407.xhp\n"
+"hd_id3154347\n"
+"help.text"
+msgid "<variable id=\"remstatement\"><link href=\"text/sbasic/shared/03090407.xhp\" name=\"Rem Statement\">Rem Statement</link></variable>"
+msgstr ""
+
+#. 2fJEm
+#: 03090407.xhp
+msgctxt ""
+"03090407.xhp\n"
+"par_id3153525\n"
+"help.text"
+msgid "Specifies that a program line is a comment."
+msgstr ""
+
+#. P5CAo
+#: 03090407.xhp
+msgctxt ""
+"03090407.xhp\n"
+"par_id3150869\n"
+"help.text"
+msgid "<emph>Text:</emph> Any text that serves as a comment."
+msgstr ""
+
+#. TFYcV
+#: 03090407.xhp
+msgctxt ""
+"03090407.xhp\n"
+"par_id3147318\n"
+"help.text"
+msgid "You can use the single quotation mark instead of the Rem keyword to indicate that the text on a line is comments. This symbol can be inserted directly to the right of the program code, followed by a comment."
+msgstr ""
+
+#. rA3GG
+#: 03090407.xhp
+msgctxt ""
+"03090407.xhp\n"
+"par_id6187017\n"
+"help.text"
+msgid "You can use a space followed by the underline character _ as the last two characters of a line to continue the logical line on the next line. To continue comment lines, you must enter \"Option Compatible\" in the same Basic module."
+msgstr ""
+
+#. MErEe
+#: 03090407.xhp
+msgctxt ""
+"03090407.xhp\n"
+"par_id3153140\n"
+"help.text"
+msgid "' Nothing occurs here"
+msgstr ""
+
+#. jfEAm
+#: 03090408.xhp
+msgctxt ""
+"03090408.xhp\n"
+"tit\n"
+"help.text"
+msgid "Stop Statement"
+msgstr ""
+
+#. bnGta
+#: 03090408.xhp
+msgctxt ""
+"03090408.xhp\n"
+"bm_id3153311\n"
+"help.text"
+msgid "<bookmark_value>Stop statement</bookmark_value>"
+msgstr ""
+
+#. xasPB
+#: 03090408.xhp
+msgctxt ""
+"03090408.xhp\n"
+"hd_id3153311\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03090408.xhp\" name=\"Stop Statement\">Stop Statement</link>"
+msgstr ""
+
+#. mFJE4
+#: 03090408.xhp
+msgctxt ""
+"03090408.xhp\n"
+"par_id3154142\n"
+"help.text"
+msgid "Stops the execution of the Basic program."
+msgstr ""
+
+#. UECAC
+#: 03090408.xhp
+msgctxt ""
+"03090408.xhp\n"
+"par_id971587473488701\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sbasic/Stop_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Stop Statement diagram</alt></image>"
+msgstr ""
+
+#. BsgsP
+#: 03090409.xhp
+msgctxt ""
+"03090409.xhp\n"
+"tit\n"
+"help.text"
+msgid "Sub Statement"
+msgstr ""
+
+#. o2Gy8
+#: 03090409.xhp
+msgctxt ""
+"03090409.xhp\n"
+"bm_id3147226\n"
+"help.text"
+msgid "<bookmark_value>Sub statement</bookmark_value>"
+msgstr ""
+
+#. ZjnGN
+#: 03090409.xhp
+msgctxt ""
+"03090409.xhp\n"
+"hd_id3147226\n"
+"help.text"
+msgid "<variable id=\"Sub_h1\"><link href=\"text/sbasic/shared/03090409.xhp\" name=\"Sub Statement\">Sub Statement</link></variable>"
+msgstr ""
+
+#. YELg8
+#: 03090409.xhp
+msgctxt ""
+"03090409.xhp\n"
+"par_id3153311\n"
+"help.text"
+msgid "Defines a subroutine."
+msgstr ""
+
+#. PUirA
+#: 03090409.xhp
+msgctxt ""
+"03090409.xhp\n"
+"par_id971587473488701\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sbasic/Sub_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Sub Statement diagram</alt></image>"
+msgstr ""
+
+#. YnF6z
+#: 03090409.xhp
+msgctxt ""
+"03090409.xhp\n"
+"par_id3147530\n"
+"help.text"
+msgid "' statements"
+msgstr ""
+
+#. 8nKUN
+#: 03090409.xhp
+msgctxt ""
+"03090409.xhp\n"
+"par_id3148530\n"
+"help.text"
+msgid "' statements"
+msgstr ""
+
+#. eZzjc
+#: 03090409.xhp
+msgctxt ""
+"03090409.xhp\n"
+"par_id3150792\n"
+"help.text"
+msgid "<emph>name:</emph> Name of the subroutine."
+msgstr ""
+
+#. wDkCq
+#: 03090409.xhp
+msgctxt ""
+"03090409.xhp\n"
+"par_id3154138\n"
+"help.text"
+msgid "<emph>arguments:</emph> Optional parameters that you want to pass to the subroutine."
+msgstr ""
+
+#. gPQ9W
+#: 03090409.xhp
+msgctxt ""
+"03090409.xhp\n"
+"par_id181647247913872\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/01010210.xhp\" name=\"Subroutine basics\">Subroutines basics</link>"
+msgstr ""
+
+#. CCDzt
+#: 03090410.xhp
+msgctxt ""
+"03090410.xhp\n"
+"tit\n"
+"help.text"
+msgid "Switch Function"
+msgstr ""
+
+#. cBLg4
+#: 03090410.xhp
+msgctxt ""
+"03090410.xhp\n"
+"bm_id3148554\n"
+"help.text"
+msgid "<bookmark_value>Switch function</bookmark_value>"
+msgstr ""
+
+#. KAwzM
+#: 03090410.xhp
+msgctxt ""
+"03090410.xhp\n"
+"hd_id3148554\n"
+"help.text"
+msgid "<variable id=\"Switch_h1\"><link href=\"text/sbasic/shared/03090410.xhp\" name=\"Switch Function\">Switch Function</link></variable>"
+msgstr ""
+
+#. yBnoz
+#: 03090410.xhp
+msgctxt ""
+"03090410.xhp\n"
+"par_id3148522\n"
+"help.text"
+msgid "Evaluates a list of arguments, consisting of an expression followed by a value. The Switch function returns a value that is associated with the expression that is passed by this function."
+msgstr ""
+
+#. CmCK6
+#: 03090410.xhp
+msgctxt ""
+"03090410.xhp\n"
+"par_id3155934\n"
+"help.text"
+msgid "Switch (Expression1, Value1[, Expression2, Value2[..., Expression_n, Value_n]]) As Variant"
+msgstr ""
+
+#. QNsjq
+#: 03090410.xhp
+msgctxt ""
+"03090410.xhp\n"
+"par_id3153894\n"
+"help.text"
+msgid "The <emph>Switch</emph> function evaluates the expressions from left to right, and then returns the value that is assigned to the function expression. If expression and value are not given as a pair, a runtime error occurs."
+msgstr ""
+
+#. f6J9X
+#: 03090410.xhp
+msgctxt ""
+"03090410.xhp\n"
+"par_id3153990\n"
+"help.text"
+msgid "<emph>Expression:</emph> The expression that you want to evaluate."
+msgstr ""
+
+#. SBHV8
+#: 03090410.xhp
+msgctxt ""
+"03090410.xhp\n"
+"par_id3153394\n"
+"help.text"
+msgid "<emph>Value:</emph> The value that you want to return if the expression is True."
+msgstr ""
+
+#. VrhXR
+#: 03090410.xhp
+msgctxt ""
+"03090410.xhp\n"
+"par_id3153346\n"
+"help.text"
+msgid "In the following example, the <emph>Switch</emph> function assigns the appropriate gender to the name that is passed to the function:"
+msgstr ""
+
+#. wjCDQ
+#: 03090410.xhp
+msgctxt ""
+"03090410.xhp\n"
+"par_id3153361\n"
+"help.text"
+msgid "GetGenderIndex = Switch(sName = \"Jane\", \"female\", sName = \"John\", \"male\")"
+msgstr ""
+
+#. JM7iD
+#: 03090411.xhp
+msgctxt ""
+"03090411.xhp\n"
+"tit\n"
+"help.text"
+msgid "With Statement"
+msgstr ""
+
+#. KTMoU
+#: 03090411.xhp
+msgctxt ""
+"03090411.xhp\n"
+"bm_id3153311\n"
+"help.text"
+msgid "<bookmark_value>With statement</bookmark_value>"
+msgstr ""
+
+#. JzE2a
+#: 03090411.xhp
+msgctxt ""
+"03090411.xhp\n"
+"hd_id3153311\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"With Statement\">With Statement</link>"
+msgstr ""
+
+#. 3GcPs
+#: 03090411.xhp
+msgctxt ""
+"03090411.xhp\n"
+"par_id3159158\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 <literal>End With</literal> statement is reached."
+msgstr ""
+
+#. WZgyY
+#: 03090411.xhp
+msgctxt ""
+"03090411.xhp\n"
+"par_id491585753339474\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sbasic/With_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">With statement diagram</alt></image>"
+msgstr ""
+
+#. gnpSD
+#: 03090411.xhp
+msgctxt ""
+"03090411.xhp\n"
+"par_id3147560\n"
+"help.text"
+msgid "Use <literal>With</literal> and <literal>End With</literal> if you have several properties or methods for a single object or an extended data type definition."
+msgstr ""
+
+#. PzPzj
+#: 03090411.xhp
+msgctxt ""
+"03090411.xhp\n"
+"par_id311606839557245\n"
+"help.text"
+msgid "Nesting <literal>With</literal> statements helps writing and reading Basic routines."
+msgstr ""
+
+#. C8YyY
+#: 03090411.xhp
+msgctxt ""
+"03090411.xhp\n"
+"par_id921606840180540\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03090413.xhp\" name=\"Type Statement\">Type Statement</link>"
+msgstr ""
+
+#. zLuzY
+#: 03090412.xhp
+msgctxt ""
+"03090412.xhp\n"
+"tit\n"
+"help.text"
+msgid "Exit Statement"
+msgstr ""
+
+#. FdEP5
+#: 03090412.xhp
+msgctxt ""
+"03090412.xhp\n"
+"bm_id3152924\n"
+"help.text"
+msgid "<bookmark_value>Exit statement</bookmark_value>"
+msgstr ""
+
+#. DqJrY
+#: 03090412.xhp
+msgctxt ""
+"03090412.xhp\n"
+"hd_id3152924\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03090412.xhp\" name=\"Exit Statement\">Exit Statement</link>"
+msgstr ""
+
+#. Kmb47
+#: 03090412.xhp
+msgctxt ""
+"03090412.xhp\n"
+"par_id3153394\n"
+"help.text"
+msgid "Exits a <emph>Do...Loop</emph>, <emph>For...Next</emph>, a function, a property, or a subroutine."
+msgstr ""
+
+#. LYyBt
+#: 03090412.xhp
+msgctxt ""
+"03090412.xhp\n"
+"par_id3159157\n"
+"help.text"
+msgid "Exit Do, Exit For, Exit Function, Exit Property, Exit Sub"
+msgstr ""
+
+#. CaPsN
+#: 03090412.xhp
+msgctxt ""
+"03090412.xhp\n"
+"par_id3147559\n"
+"help.text"
+msgid "Only valid within a <emph>Do...Loop</emph> statement to exit the loop. Program execution continues with the statement that follows the Loop statement. If <emph>Do...Loop</emph> statements are nested, the control is transferred to the loop in the next higher level."
+msgstr ""
+
+#. ctSmU
+#: 03090412.xhp
+msgctxt ""
+"03090412.xhp\n"
+"par_id3148797\n"
+"help.text"
+msgid "Only valid within a <emph>For...Next</emph> loop to exit the loop. Program execution continues with the first statement that follows the <emph>Next</emph> statement. In nested statements, the control is transferred to the loop in the next higher level."
+msgstr ""
+
+#. T2hCJ
+#: 03090412.xhp
+msgctxt ""
+"03090412.xhp\n"
+"par_id3154685\n"
+"help.text"
+msgid "Exits the <emph>Function</emph> procedure immediately. Program execution continues with the statement that follows the <emph>Function</emph> call."
+msgstr ""
+
+#. xZEAs
+#: 03090412.xhp
+msgctxt ""
+"03090412.xhp\n"
+"par_id1001581260355700\n"
+"help.text"
+msgid "Exits the <emph>Property</emph> procedure immediately. Program execution continues with the statement that follows the <emph>Property</emph> call."
+msgstr ""
+
+#. 2jmBs
+#: 03090412.xhp
+msgctxt ""
+"03090412.xhp\n"
+"par_id3149561\n"
+"help.text"
+msgid "Exits the subroutine immediately. Program execution continues with the statement that follows the <emph>Sub</emph> call."
+msgstr ""
+
+#. UFcUy
+#: 03090412.xhp
+msgctxt ""
+"03090412.xhp\n"
+"par_id3153143\n"
+"help.text"
+msgid "The Exit statement does not define the end of a structure, and must not be confused with the End statement."
+msgstr ""
+
+#. J6bT4
+#: 03090412.xhp
+msgctxt ""
+"03090412.xhp\n"
+"par_id3153158\n"
+"help.text"
+msgid "For siStep = 0 To 10 ' Fill array with test data"
+msgstr ""
+
+#. f4EFZ
+#: 03090412.xhp
+msgctxt ""
+"03090412.xhp\n"
+"par_id3153764\n"
+"help.text"
+msgid "' LinSearch searches a TextArray:sList() for a TextEntry:"
+msgstr ""
+
+#. QmEzo
+#: 03090412.xhp
+msgctxt ""
+"03090412.xhp\n"
+"par_id3148995\n"
+"help.text"
+msgid "' Returns the index of the entry or 0 (Null)"
+msgstr ""
+
+#. TbyYE
+#: 03090412.xhp
+msgctxt ""
+"03090412.xhp\n"
+"par_id3149567\n"
+"help.text"
+msgid "Exit For ' sItem found"
+msgstr ""
+
+#. g4fRs
+#: 03090413.xhp
+msgctxt ""
+"03090413.xhp\n"
+"tit\n"
+"help.text"
+msgid "Type Statement"
+msgstr ""
+
+#. vJAkp
+#: 03090413.xhp
+msgctxt ""
+"03090413.xhp\n"
+"bm_id3153311\n"
+"help.text"
+msgid "<bookmark_value>Type statement</bookmark_value>"
+msgstr ""
+
+#. pipio
+#: 03090413.xhp
+msgctxt ""
+"03090413.xhp\n"
+"hd_id3153311\n"
+"help.text"
+msgid "<variable id=\"Type_h1\"><link href=\"text/sbasic/shared/03090413.xhp\" name=\"Type Statement\">Type Statement</link></variable>"
+msgstr ""
+
+#. TYvyD
+#: 03090413.xhp
+msgctxt ""
+"03090413.xhp\n"
+"par_id3159158\n"
+"help.text"
+msgid "Define non-UNO data structures."
+msgstr ""
+
+#. hGDzF
+#: 03090413.xhp
+msgctxt ""
+"03090413.xhp\n"
+"par_id311512206747401\n"
+"help.text"
+msgid "A Type structure is an ordered collection of data fields, that can be manipulated as a single item."
+msgstr ""
+
+#. WfsVY
+#: 03090413.xhp
+msgctxt ""
+"03090413.xhp\n"
+"par_id491585753339474\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sbasic/Type_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Type statement diagram</alt></image>"
+msgstr ""
+
+#. sSoso
+#: 03090413.xhp
+msgctxt ""
+"03090413.xhp\n"
+"par_id701574739564765\n"
+"help.text"
+msgid "Extended types such as <literal>Type</literal> statement structures, UNO objects or <link href=\"text/sbasic/shared/classmodule.xhp\" name=\"ClassModule\">ClassModule</link> objects are valid typenames."
+msgstr ""
+
+#. TTALN
+#: 03090413.xhp
+msgctxt ""
+"03090413.xhp\n"
+"par_id351573639548645\n"
+"help.text"
+msgid "A Type structure scope is that of the module it belongs to."
+msgstr ""
+
+#. eGJzD
+#: 03090413.xhp
+msgctxt ""
+"03090413.xhp\n"
+"par_id701573639564765\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/enum.xhp\" name=\"enumerations\">Enumerations</link> can be created using Type statement definitions. <link href=\"text/sbasic/guide/basic_2_python.xhp\" name=\"Calling Python Scripts from Basic\">Calling Python Scripts from Basic</link> illustrates that mechanism."
+msgstr ""
+
+#. 2VyE8
+#: 03090413.xhp
+msgctxt ""
+"03090413.xhp\n"
+"par_id211512215755793\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03132400.xhp\" name=\"CreateObject function\">CreateObject function</link>"
+msgstr ""
+
+#. AQRhq
+#: 03100000.xhp
+msgctxt ""
+"03100000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Variables"
+msgstr ""
+
+#. YBCXD
+#: 03100000.xhp
+msgctxt ""
+"03100000.xhp\n"
+"hd_id3149669\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03100000.xhp\" name=\"Variables\">Variables</link>"
+msgstr ""
+
+#. 9BAUk
+#: 03100000.xhp
+msgctxt ""
+"03100000.xhp\n"
+"par_id3147265\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 ""
+
+#. mGTSe
+#: 03100050.xhp
+msgctxt ""
+"03100050.xhp\n"
+"tit\n"
+"help.text"
+msgid "CCur Function"
+msgstr ""
+
+#. Btmnr
+#: 03100050.xhp
+msgctxt ""
+"03100050.xhp\n"
+"bm_id8926053\n"
+"help.text"
+msgid "<bookmark_value>CCur function</bookmark_value>"
+msgstr ""
+
+#. dj5DM
+#: 03100050.xhp
+msgctxt ""
+"03100050.xhp\n"
+"par_idN10541\n"
+"help.text"
+msgid "<variable id=\"CCur_h1\"><link href=\"text/sbasic/shared/03100050.xhp\">CCur Function</link></variable>"
+msgstr ""
+
+#. iR5VT
+#: 03100050.xhp
+msgctxt ""
+"03100050.xhp\n"
+"par_idN10545\n"
+"help.text"
+msgid "Converts a string expression or numeric expression to a currency expression. The locale settings are used for decimal separators and currency symbols."
+msgstr ""
+
+#. 4E7mH
+#: 03100050.xhp
+msgctxt ""
+"03100050.xhp\n"
+"par_idN105E8\n"
+"help.text"
+msgid "CCur(Expression As Variant) As Currency"
+msgstr ""
+
+#. R6AfV
+#: 03100050.xhp
+msgctxt ""
+"03100050.xhp\n"
+"par_idN105EF\n"
+"help.text"
+msgid "Currency"
+msgstr ""
+
+#. FnhL7
+#: 03100050.xhp
+msgctxt ""
+"03100050.xhp\n"
+"par_id3145068\n"
+"help.text"
+msgid "<emph>Expression</emph>: Any string or a numeric expression that you want to convert to a number. <br/><literal>CCur(EMPTY)</literal> returns 0."
+msgstr ""
+
+#. KyDFD
+#: 03100060.xhp
+msgctxt ""
+"03100060.xhp\n"
+"tit\n"
+"help.text"
+msgid "CDec Function"
+msgstr ""
+
+#. mU8Ds
+#: 03100060.xhp
+msgctxt ""
+"03100060.xhp\n"
+"bm_id863979\n"
+"help.text"
+msgid "<bookmark_value>CDec function</bookmark_value>"
+msgstr ""
+
+#. keJSN
+#: 03100060.xhp
+msgctxt ""
+"03100060.xhp\n"
+"par_idN10548\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03100060.xhp\">CDec Function</link>"
+msgstr ""
+
+#. aEBmF
+#: 03100060.xhp
+msgctxt ""
+"03100060.xhp\n"
+"par_idN10558\n"
+"help.text"
+msgid "Converts a string expression or numeric expression to a decimal expression."
+msgstr ""
+
+#. MBB8Q
+#: 03100060.xhp
+msgctxt ""
+"03100060.xhp\n"
+"par_idN1055B\n"
+"help.text"
+msgid "Syntax:"
+msgstr ""
+
+#. E7zaK
+#: 03100060.xhp
+msgctxt ""
+"03100060.xhp\n"
+"par_idN105EA\n"
+"help.text"
+msgid "CDec(Expression)"
+msgstr ""
+
+#. bFpdq
+#: 03100060.xhp
+msgctxt ""
+"03100060.xhp\n"
+"par_idN105ED\n"
+"help.text"
+msgid "Return value:"
+msgstr ""
+
+#. sNLGd
+#: 03100060.xhp
+msgctxt ""
+"03100060.xhp\n"
+"par_idN105F1\n"
+"help.text"
+msgid "Decimal number."
+msgstr ""
+
+#. GGNhF
+#: 03100060.xhp
+msgctxt ""
+"03100060.xhp\n"
+"par_idN105F4\n"
+"help.text"
+msgid "Parameter:"
+msgstr ""
+
+#. nmGXD
+#: 03100060.xhp
+msgctxt ""
+"03100060.xhp\n"
+"par_idN105F8\n"
+"help.text"
+msgid "Expression: Any string or numeric expression that you want to convert."
+msgstr ""
+
+#. sf8qD
+#: 03100070.xhp
+msgctxt ""
+"03100070.xhp\n"
+"tit\n"
+"help.text"
+msgid "CVar Function"
+msgstr ""
+
+#. VZ437
+#: 03100070.xhp
+msgctxt ""
+"03100070.xhp\n"
+"bm_id2338633\n"
+"help.text"
+msgid "<bookmark_value>CVar function</bookmark_value>"
+msgstr ""
+
+#. CEtre
+#: 03100070.xhp
+msgctxt ""
+"03100070.xhp\n"
+"par_idN1054B\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03100070.xhp\">CVar Function</link>"
+msgstr ""
+
+#. cGuyq
+#: 03100070.xhp
+msgctxt ""
+"03100070.xhp\n"
+"par_idN1055B\n"
+"help.text"
+msgid "Converts a string expression or numeric expression to a variant expression."
+msgstr ""
+
+#. i9KSb
+#: 03100070.xhp
+msgctxt ""
+"03100070.xhp\n"
+"par_idN1055E\n"
+"help.text"
+msgid "Syntax:"
+msgstr ""
+
+#. hD9yb
+#: 03100070.xhp
+msgctxt ""
+"03100070.xhp\n"
+"par_idN10562\n"
+"help.text"
+msgid "CVar(Expression)"
+msgstr ""
+
+#. q6qWX
+#: 03100070.xhp
+msgctxt ""
+"03100070.xhp\n"
+"par_idN10565\n"
+"help.text"
+msgid "Return value:"
+msgstr ""
+
+#. qMKLy
+#: 03100070.xhp
+msgctxt ""
+"03100070.xhp\n"
+"par_idN10569\n"
+"help.text"
+msgid "Variant."
+msgstr ""
+
+#. DLcq7
+#: 03100070.xhp
+msgctxt ""
+"03100070.xhp\n"
+"par_idN1056C\n"
+"help.text"
+msgid "Parameter:"
+msgstr ""
+
+#. Gupyn
+#: 03100070.xhp
+msgctxt ""
+"03100070.xhp\n"
+"par_idN10570\n"
+"help.text"
+msgid "Expression: Any string or numeric expression that you want to convert."
+msgstr ""
+
+#. g8Vyt
+#: 03100080.xhp
+msgctxt ""
+"03100080.xhp\n"
+"tit\n"
+"help.text"
+msgid "CVErr Function"
+msgstr ""
+
+#. kZUDX
+#: 03100080.xhp
+msgctxt ""
+"03100080.xhp\n"
+"bm_id531022\n"
+"help.text"
+msgid "<bookmark_value>CVErr function</bookmark_value>"
+msgstr ""
+
+#. zHAeD
+#: 03100080.xhp
+msgctxt ""
+"03100080.xhp\n"
+"par_idN1054B\n"
+"help.text"
+msgid "<variable id=\"CvErrh1\"><link href=\"text/sbasic/shared/03100080.xhp\">CVErr Function</link></variable>"
+msgstr ""
+
+#. 3B8u2
+#: 03100080.xhp
+msgctxt ""
+"03100080.xhp\n"
+"par_idN1055B\n"
+"help.text"
+msgid "Converts a string expression or numeric expression to a variant expression of the sub type \"Error\"."
+msgstr ""
+
+#. GJoFF
+#: 03100080.xhp
+msgctxt ""
+"03100080.xhp\n"
+"par_idN1055E\n"
+"help.text"
+msgid "Syntax:"
+msgstr ""
+
+#. aEAM8
+#: 03100080.xhp
+msgctxt ""
+"03100080.xhp\n"
+"par_idN10562\n"
+"help.text"
+msgid "CVErr(Expression)"
+msgstr ""
+
+#. bHuZe
+#: 03100080.xhp
+msgctxt ""
+"03100080.xhp\n"
+"par_idN10565\n"
+"help.text"
+msgid "Return value:"
+msgstr ""
+
+#. gZChk
+#: 03100080.xhp
+msgctxt ""
+"03100080.xhp\n"
+"par_idN10569\n"
+"help.text"
+msgid "Variant."
+msgstr ""
+
+#. CTJHw
+#: 03100080.xhp
+msgctxt ""
+"03100080.xhp\n"
+"par_idN1056C\n"
+"help.text"
+msgid "Parameter:"
+msgstr ""
+
+#. bubLW
+#: 03100080.xhp
+msgctxt ""
+"03100080.xhp\n"
+"par_idN10570\n"
+"help.text"
+msgid "Expression: Any string or numeric expression that you want to convert."
+msgstr ""
+
+#. MEEP4
+#: 03100100.xhp
+msgctxt ""
+"03100100.xhp\n"
+"tit\n"
+"help.text"
+msgid "CBool Function"
+msgstr ""
+
+#. L75Ag
+#: 03100100.xhp
+msgctxt ""
+"03100100.xhp\n"
+"bm_id3150616\n"
+"help.text"
+msgid "<bookmark_value>CBool function</bookmark_value>"
+msgstr ""
+
+#. wkGF9
+#: 03100100.xhp
+msgctxt ""
+"03100100.xhp\n"
+"hd_id3150616\n"
+"help.text"
+msgid "<variable id=\"CBool_h1\"><link href=\"text/sbasic/shared/03100100.xhp\" name=\"CBool Function\">CBool Function</link></variable>"
+msgstr ""
+
+#. fENzo
+#: 03100100.xhp
+msgctxt ""
+"03100100.xhp\n"
+"par_id3145136\n"
+"help.text"
+msgid "Converts an expression or a set of expressions into a boolean. An expression is composed of strings, numbers and operators. Comparison, logical or mathematical operators are allowed inside expressions."
+msgstr ""
+
+#. VXn7B
+#: 03100100.xhp
+msgctxt ""
+"03100100.xhp\n"
+"par_id681638266349216\n"
+"help.text"
+msgid "<literal>expression</literal> can be a number or a set of combined expressions."
+msgstr ""
+
+#. EDCrC
+#: 03100100.xhp
+msgctxt ""
+"03100100.xhp\n"
+"par_id3155419\n"
+"help.text"
+msgid "Boolean"
+msgstr ""
+
+#. ZqnCA
+#: 03100100.xhp
+msgctxt ""
+"03100100.xhp\n"
+"par_id791636986444058\n"
+"help.text"
+msgid "<emph>expression</emph>: A logical expression, a mathematical formula, a numeric expression or a set of expressions combined with operators. During expression evaluation <link href=\"text/sbasic/shared/03060000.xhp\" name=\"logical operators\">logical operators</link> take preceedence over <link href=\"text/sbasic/shared/03110100.xhp\" name=\"comparison operators\">comparison operators</link>, which in turn take preceedence over <link href=\"text/sbasic/shared/03070000.xhp\" name=\"mathematical operators\">mathematical operators</link>."
+msgstr ""
+
+#. LEuzF
+#: 03100100.xhp
+msgctxt ""
+"03100100.xhp\n"
+"par_id1001638264728895\n"
+"help.text"
+msgid "The <literal>expression</literal> can be a number or mathematical formula. When equals to 0, <literal>False</literal> is returned, otherwise <literal>True</literal> is returned."
+msgstr ""
+
+#. 4jZzA
+#: 03100100.xhp
+msgctxt ""
+"03100100.xhp\n"
+"par_id3149655\n"
+"help.text"
+msgid "Multiple expressions such as <input>expr1 [[{operator] expr2]..]</input> can be combined. <input>expr1</input> and <input>expr2</input> can be any string or numeric expressions that you want to evaluate. <literal>CBool</literal> combines the expressions and returns either <literal>True</literal> or <literal>False</literal>. <input>operator</input> can be a <link href=\"text/sbasic/shared/03070000.xhp\" name=\"mathematical operator\">mathematical operator</link>, <link href=\"text/sbasic/shared/03060000.xhp\" name=\"logical operator\">logical operator</link> or <link href=\"text/sbasic/shared/03110100.xhp\" name=\"comparison operator\">comparison operator</link>."
+msgstr ""
+
+#. Fvovz
+#: 03100100.xhp
+msgctxt ""
+"03100100.xhp\n"
+"par_id3145171\n"
+"help.text"
+msgid "In the following examples, the <literal>CBool</literal> function evaluates a logical expression, a mathematical formula and the value that is returned by the <literal>Instr</literal> function. The function checks if the character \"a\" is found in the sentence that was entered by the user."
+msgstr ""
+
+#. 2SpGu
+#: 03100100.xhp
+msgctxt ""
+"03100100.xhp\n"
+"bas_id961636989038747\n"
+"help.text"
+msgid "Print CBool( 1>2 Xor 44 ) ' computes to True"
+msgstr ""
+
+#. bjPRQ
+#: 03100100.xhp
+msgctxt ""
+"03100100.xhp\n"
+"bas_id991636996682074\n"
+"help.text"
+msgid "Print CBool( expression := 15 /2 -7.5 ) ' displays False as expression equals 0"
+msgstr ""
+
+#. xxrvS
+#: 03100100.xhp
+msgctxt ""
+"03100100.xhp\n"
+"par_id3155132\n"
+"help.text"
+msgid "txt = InputBox(\"Please enter a short sentence:\")"
+msgstr ""
+
+#. FPJDk
+#: 03100100.xhp
+msgctxt ""
+"03100100.xhp\n"
+"par_id3155855\n"
+"help.text"
+msgid "' Proof if the character \"a\" appears in the sentence."
+msgstr ""
+
+#. GFk66
+#: 03100100.xhp
+msgctxt ""
+"03100100.xhp\n"
+"par_id3146984\n"
+"help.text"
+msgid "' Instead of the command line"
+msgstr ""
+
+#. fCMAJ
+#: 03100100.xhp
+msgctxt ""
+"03100100.xhp\n"
+"par_id3154014\n"
+"help.text"
+msgid "' the CBool function is applied as follows:"
+msgstr ""
+
+#. TgisK
+#: 03100100.xhp
+msgctxt ""
+"03100100.xhp\n"
+"par_id3152940\n"
+"help.text"
+msgid "MsgBox \"The character »a« appears in the sentence you entered!\""
+msgstr ""
+
+#. 8FnUJ
+#: 03100300.xhp
+msgctxt ""
+"03100300.xhp\n"
+"tit\n"
+"help.text"
+msgid "CDate Function"
+msgstr ""
+
+#. HpYXC
+#: 03100300.xhp
+msgctxt ""
+"03100300.xhp\n"
+"bm_id3150772\n"
+"help.text"
+msgid "<bookmark_value>CDate function</bookmark_value>"
+msgstr ""
+
+#. nCwCG
+#: 03100300.xhp
+msgctxt ""
+"03100300.xhp\n"
+"hd_id3150772\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03100300.xhp\" name=\"CDate Function\">CDate Function</link>"
+msgstr ""
+
+#. DYpHk
+#: 03100300.xhp
+msgctxt ""
+"03100300.xhp\n"
+"par_id3150986\n"
+"help.text"
+msgid "Converts any string or numeric expression to a date value."
+msgstr ""
+
+#. JsmcA
+#: 03100300.xhp
+msgctxt ""
+"03100300.xhp\n"
+"par_id3148947\n"
+"help.text"
+msgid "CDate (Expression)"
+msgstr ""
+
+#. c5kyz
+#: 03100300.xhp
+msgctxt ""
+"03100300.xhp\n"
+"hd_id3148552\n"
+"help.text"
+msgid "Return value:"
+msgstr ""
+
+#. 3E4Gd
+#: 03100300.xhp
+msgctxt ""
+"03100300.xhp\n"
+"par_id3150359\n"
+"help.text"
+msgid "<emph>Expression:</emph> Any string or numeric expression that you want to convert."
+msgstr ""
+
+#. 5oesN
+#: 03100300.xhp
+msgctxt ""
+"03100300.xhp\n"
+"par_id3125864\n"
+"help.text"
+msgid "When you convert a string expression, the date and time must be entered either in one of the date acceptance patterns defined for your locale setting (see <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - Language Settings - Languages</menuitem>) or in ISO date format (momentarily, only the ISO format with hyphens, e.g. \"2012-12-31\" is accepted). In numeric expressions, values to the left of the decimal represent the date, beginning from December 31, 1899. Values to the right of the decimal represent the time."
+msgstr ""
+
+#. 4NDxB
+#: 03100400.xhp
+msgctxt ""
+"03100400.xhp\n"
+"tit\n"
+"help.text"
+msgid "CDbl Function"
+msgstr ""
+
+#. psFNk
+#: 03100400.xhp
+msgctxt ""
+"03100400.xhp\n"
+"bm_id3153750\n"
+"help.text"
+msgid "<bookmark_value>CDbl function</bookmark_value>"
+msgstr ""
+
+#. eByNV
+#: 03100400.xhp
+msgctxt ""
+"03100400.xhp\n"
+"hd_id3153750\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03100400.xhp\" name=\"CDbl Function\">CDbl Function</link>"
+msgstr ""
+
+#. EwDaU
+#: 03100400.xhp
+msgctxt ""
+"03100400.xhp\n"
+"par_id3149233\n"
+"help.text"
+msgid "Converts any numerical expression or string expression to a double type."
+msgstr ""
+
+#. wEVGF
+#: 03100400.xhp
+msgctxt ""
+"03100400.xhp\n"
+"par_id3156152\n"
+"help.text"
+msgid "CDbl (Expression As Variant) As Double"
+msgstr ""
+
+#. Hs9F5
+#: 03100500.xhp
+msgctxt ""
+"03100500.xhp\n"
+"tit\n"
+"help.text"
+msgid "CInt Function"
+msgstr ""
+
+#. mzarQ
+#: 03100500.xhp
+msgctxt ""
+"03100500.xhp\n"
+"bm_id3149346\n"
+"help.text"
+msgid "<bookmark_value>CInt function</bookmark_value>"
+msgstr ""
+
+#. 4QpXT
+#: 03100500.xhp
+msgctxt ""
+"03100500.xhp\n"
+"hd_id3149346\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03100500.xhp\" name=\"CInt Function\">CInt Function</link>"
+msgstr ""
+
+#. dESLg
+#: 03100500.xhp
+msgctxt ""
+"03100500.xhp\n"
+"par_id3155419\n"
+"help.text"
+msgid "Converts any string or numeric expression to an integer."
+msgstr ""
+
+#. CCHrN
+#: 03100500.xhp
+msgctxt ""
+"03100500.xhp\n"
+"par_id3154142\n"
+"help.text"
+msgid "CInt (Expression As Variant) As Integer"
+msgstr ""
+
+#. UnfBB
+#: 03100500.xhp
+msgctxt ""
+"03100500.xhp\n"
+"par_id3159416\n"
+"help.text"
+msgid "If the argument is string, the function trims the leading white space; then it tries to recognize a number in following characters. The syntax below are recognized:"
+msgstr ""
+
+#. kj6xg
+#: 03100500.xhp
+msgctxt ""
+"03100500.xhp\n"
+"par_id811638383475418\n"
+"help.text"
+msgid "Decimal numbers (with optional leading sign) using decimal and group separators of locale configured in $[officename] (group separators are accepted in any position), with optional exponential notation like \"-12e+1\" (where an optionally signed whole decimal number after e or E or d or D defines power of 10);"
+msgstr ""
+
+#. GZWV7
+#: 03100500.xhp
+msgctxt ""
+"03100500.xhp\n"
+"par_id361638383494362\n"
+"help.text"
+msgid "Octal numbers like \"&Onnn...\", where \"nnn...\" after \"&O\" or \"&o\" is sequence no longer than 11 digits, from 0 to 7, up to the next non-alphanumeric character;"
+msgstr ""
+
+#. GUVCt
+#: 03100500.xhp
+msgctxt ""
+"03100500.xhp\n"
+"par_id91638383518862\n"
+"help.text"
+msgid "Hexadecimal numbers like \"&Hnnn...\", where \"nnn...\" after \"&H\" or \"&h\" is sequence of characters up to the next non-alphanumeric character, and must be no longer than 8 digits, from 0 to 9, A to F, or a to f."
+msgstr ""
+
+#. ypDkR
+#: 03100500.xhp
+msgctxt ""
+"03100500.xhp\n"
+"par_id61638383582794\n"
+"help.text"
+msgid "The rest of the string is ignored. If the string is not recognized, e.g. when after trimming leading whitespace it doesn't start with plus, minus, a decimal digit, or \"&\", or when the sequence after \"&O\" is longer than 11 characters or contains an alphabetic character, the numeric value of expression is 0."
+msgstr ""
+
+#. ioj8X
+#: 03100500.xhp
+msgctxt ""
+"03100500.xhp\n"
+"par_id3159417\n"
+"help.text"
+msgid "If the argument is an error, the error number is used as numeric value of the expression."
+msgstr ""
+
+#. S3UH5
+#: 03100500.xhp
+msgctxt ""
+"03100500.xhp\n"
+"par_id3159418\n"
+"help.text"
+msgid "If the argument is a date, number of days since 1899-12-30 (serial date) is used as numeric value of the expression. Time is represented as fraction of a day."
+msgstr ""
+
+#. TA6XM
+#: 03100500.xhp
+msgctxt ""
+"03100500.xhp\n"
+"par_id3150358\n"
+"help.text"
+msgid "After calculating the numeric value of the expression, it is rounded to the nearest integer (if needed), and if the result is not between -32768 and 32767, $[officename] Basic reports an overflow error. Otherwise, the result is returned."
+msgstr ""
+
+#. GsgXV
+#: 03100600.xhp
+msgctxt ""
+"03100600.xhp\n"
+"tit\n"
+"help.text"
+msgid "CLng Function"
+msgstr ""
+
+#. MSnoT
+#: 03100600.xhp
+msgctxt ""
+"03100600.xhp\n"
+"bm_id3153311\n"
+"help.text"
+msgid "<bookmark_value>CLng function</bookmark_value>"
+msgstr ""
+
+#. mfcTR
+#: 03100600.xhp
+msgctxt ""
+"03100600.xhp\n"
+"hd_id3153311\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03100600.xhp\" name=\"CLng Function\">CLng Function</link>"
+msgstr ""
+
+#. aLcQC
+#: 03100600.xhp
+msgctxt ""
+"03100600.xhp\n"
+"par_id3148686\n"
+"help.text"
+msgid "Converts any string or numeric expression to a long integer."
+msgstr ""
+
+#. 8aFmF
+#: 03100600.xhp
+msgctxt ""
+"03100600.xhp\n"
+"par_id3147573\n"
+"help.text"
+msgid "CLng (Expression As Variant) As Long"
+msgstr ""
+
+#. HDHVW
+#: 03100600.xhp
+msgctxt ""
+"03100600.xhp\n"
+"par_id3159414\n"
+"help.text"
+msgid "If <literal>Expression</literal> lies outside the valid long integer range between -2.147.483.648 and 2.147.483.647, $[officename] Basic returns an overflow error."
+msgstr ""
+
+#. hgEwt
+#: 03100600.xhp
+msgctxt ""
+"03100600.xhp\n"
+"par_id3150358\n"
+"help.text"
+msgid "This function always rounds the fractional part of a number to the nearest integer."
+msgstr ""
+
+#. Eowon
+#: 03100700.xhp
+msgctxt ""
+"03100700.xhp\n"
+"tit\n"
+"help.text"
+msgid "Const Statement"
+msgstr ""
+
+#. WGvF8
+#: 03100700.xhp
+msgctxt ""
+"03100700.xhp\n"
+"bm_id3146958\n"
+"help.text"
+msgid "<bookmark_value>Const statement</bookmark_value>"
+msgstr ""
+
+#. gaj2Z
+#: 03100700.xhp
+msgctxt ""
+"03100700.xhp\n"
+"hd_id3146958\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03100700.xhp\" name=\"Const Statement\">Const Statement</link>"
+msgstr ""
+
+#. xPBxj
+#: 03100700.xhp
+msgctxt ""
+"03100700.xhp\n"
+"par_id3154143\n"
+"help.text"
+msgid "Defines one or more identifiers as constants."
+msgstr ""
+
+#. 4sYHn
+#: 03100700.xhp
+msgctxt ""
+"03100700.xhp\n"
+"par_id3147264\n"
+"help.text"
+msgid "A constant is a variable that helps to improve the readability of a program. Constants are not defined as a specific type of variable, but rather are used as placeholders in the code. You can only define a constant once and it cannot be modified."
+msgstr ""
+
+#. ucqd6
+#: 03100700.xhp
+msgctxt ""
+"03100700.xhp\n"
+"par_id831588865616326\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sbasic/Const_statement.svg\" id=\"img_id651588865616326\"><alt id=\"alt_id281588865616326\">Const syntax</alt></image>"
+msgstr ""
+
+#. QZJkC
+#: 03100700.xhp
+msgctxt ""
+"03100700.xhp\n"
+"par_id3150984\n"
+"help.text"
+msgid "[Global|Private|Public] Const name = expression[, ...]"
+msgstr ""
+
+#. 8cNC9
+#: 03100700.xhp
+msgctxt ""
+"03100700.xhp\n"
+"par_id3153897\n"
+"help.text"
+msgid "<emph>name:</emph> Any identifier that follows the standard variable naming conventions."
+msgstr ""
+
+#. MYNoo
+#: 03100700.xhp
+msgctxt ""
+"03100700.xhp\n"
+"par_id791593689338208\n"
+"help.text"
+msgid "<emph>expression:</emph> Any literal expression."
+msgstr ""
+
+#. C8b4Z
+#: 03100700.xhp
+msgctxt ""
+"03100700.xhp\n"
+"par_id3150400\n"
+"help.text"
+msgid "The data type must be omitted. When a library gets loaded in memory, %PRODUCTNAME Basic converts the program code internally so that each time a constant is used, the defined expression replaces it."
+msgstr ""
+
+#. fYdeb
+#: 03100700.xhp
+msgctxt ""
+"03100700.xhp\n"
+"hd_id51593690561479\n"
+"help.text"
+msgid "Scope"
+msgstr ""
+
+#. QwPhy
+#: 03100700.xhp
+msgctxt ""
+"03100700.xhp\n"
+"par_id431593690612961\n"
+"help.text"
+msgid "By default constants are defined as private in modules and routines. Constants can be made public or global in order to be used from all modules, from all Basic libraries."
+msgstr ""
+
+#. EAL5T
+#: 03100700.xhp
+msgctxt ""
+"03100700.xhp\n"
+"par_id241593693307830\n"
+"help.text"
+msgid "<literal>Global</literal>, <literal>Private</literal> and <literal>Public</literal> specifiers can only be used for module constants."
+msgstr ""
+
+#. 7HRGK
+#: 03100700.xhp
+msgctxt ""
+"03100700.xhp\n"
+"bas_id911593692598060\n"
+"help.text"
+msgid "Const EARTH = \"♁\" ' module scope"
+msgstr ""
+
+#. pCVMW
+#: 03100700.xhp
+msgctxt ""
+"03100700.xhp\n"
+"bas_id441593692601125\n"
+"help.text"
+msgid "Private Const MOON = \"☾\" ' module scope"
+msgstr ""
+
+#. xjhjq
+#: 03100700.xhp
+msgctxt ""
+"03100700.xhp\n"
+"bas_id161593692601597\n"
+"help.text"
+msgid "Public Const VENUS=\"♀\", MARS=\"♂\" ' general scope"
+msgstr ""
+
+#. 6LzLX
+#: 03100700.xhp
+msgctxt ""
+"03100700.xhp\n"
+"bas_id581593692602046\n"
+"help.text"
+msgid "Global Const SUN = \"☉\", STAR = \"☆\" ' general scope"
+msgstr ""
+
+#. aFEH7
+#: 03100700.xhp
+msgctxt ""
+"03100700.xhp\n"
+"par_idm1341160752\n"
+"help.text"
+msgid "Const SUN = 3 * 1.456 / 56 ' SUN is local"
+msgstr ""
+
+#. 5ZVn4
+#: 03100700.xhp
+msgctxt ""
+"03100700.xhp\n"
+"par_idm1341159520\n"
+"help.text"
+msgid "MsgBox SUN,, MOON ' SUN global constant is unchanged"
+msgstr ""
+
+#. e9BxY
+#: 03100700.xhp
+msgctxt ""
+"03100700.xhp\n"
+"par_id111593694878677\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/enum.xhp\" name=\"Enum\">Enum</link> statement"
+msgstr ""
+
+#. ZYFUV
+#: 03100700.xhp
+msgctxt ""
+"03100700.xhp\n"
+"par_id111953694878677\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03090413.xhp\" name=\"Enum\">Type</link> statement"
+msgstr ""
+
+#. FmimE
+#: 03100900.xhp
+msgctxt ""
+"03100900.xhp\n"
+"tit\n"
+"help.text"
+msgid "CSng Function"
+msgstr ""
+
+#. WbouA
+#: 03100900.xhp
+msgctxt ""
+"03100900.xhp\n"
+"bm_id3153753\n"
+"help.text"
+msgid "<bookmark_value>CSng function</bookmark_value>"
+msgstr ""
+
+#. 5x5UH
+#: 03100900.xhp
+msgctxt ""
+"03100900.xhp\n"
+"hd_id3153753\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03100900.xhp\" name=\"CSng Function\">CSng Function</link>"
+msgstr ""
+
+#. 8RgCe
+#: 03100900.xhp
+msgctxt ""
+"03100900.xhp\n"
+"par_id3149748\n"
+"help.text"
+msgid "Converts any string or numeric expression to data type Single."
+msgstr ""
+
+#. dQQAS
+#: 03100900.xhp
+msgctxt ""
+"03100900.xhp\n"
+"par_id3148983\n"
+"help.text"
+msgid "CSng (Expression As Variant) As Single"
+msgstr ""
+
+#. ZodWe
+#: 03100900.xhp
+msgctxt ""
+"03100900.xhp\n"
+"par_id3153897\n"
+"help.text"
+msgid "<emph>Expression</emph>: Any string or numeric expression that you want to convert. To convert a string expression, the number must be entered using a dot \".\" as the decimal point and a comma \",\" as the thousands separator (for instance 123,456.78), which may differ from your %PRODUCTNAME <link href=\"text/shared/optionen/01140000.xhp\" name=\"language settings\">language settings</link>."
+msgstr ""
+
+#. 6CgWz
+#: 03100900.xhp
+msgctxt ""
+"03100900.xhp\n"
+"par_id761652451117906\n"
+"help.text"
+msgid "Numeric expressions are displayed according %PRODUCTNAME <link href=\"text/shared/optionen/01140000.xhp\" name=\"language settings\">language settings</link>:"
+msgstr ""
+
+#. DirnZ
+#: 03100900.xhp
+msgctxt ""
+"03100900.xhp\n"
+"par_idm1341608224\n"
+"help.text"
+msgid "MsgBox CDbl(1234.5678) ' 1234.5678"
+msgstr ""
+
+#. BoiF4
+#: 03100900.xhp
+msgctxt ""
+"03100900.xhp\n"
+"par_idm1341604480\n"
+"help.text"
+msgid "MsgBox CSng(1234.5678) ' 1234.567749023"
+msgstr ""
+
+#. rf5Br
+#: 03100900.xhp
+msgctxt ""
+"03100900.xhp\n"
+"par_idm1341608242\n"
+"help.text"
+msgid "MsgBox CDbl(expression := 5678.1234) ' 5678.1234"
+msgstr ""
+
+#. uVUDG
+#: 03100900.xhp
+msgctxt ""
+"03100900.xhp\n"
+"par_idm1341604408\n"
+"help.text"
+msgid "MsgBox CSng(expression := 5678.1234) ' 5678.123535156"
+msgstr ""
+
+#. MCFBf
+#: 03101000.xhp
+msgctxt ""
+"03101000.xhp\n"
+"tit\n"
+"help.text"
+msgid "CStr Function"
+msgstr ""
+
+#. yLRwN
+#: 03101000.xhp
+msgctxt ""
+"03101000.xhp\n"
+"bm_id3146958\n"
+"help.text"
+msgid "<bookmark_value>CStr function</bookmark_value>"
+msgstr ""
+
+#. kRSvD
+#: 03101000.xhp
+msgctxt ""
+"03101000.xhp\n"
+"hd_id3146958\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03101000.xhp\" name=\"CStr Function\">CStr Function</link>"
+msgstr ""
+
+#. 3CEMW
+#: 03101000.xhp
+msgctxt ""
+"03101000.xhp\n"
+"par_id3147574\n"
+"help.text"
+msgid "Converts any numeric expression to a string expression."
+msgstr ""
+
+#. uttcP
+#: 03101000.xhp
+msgctxt ""
+"03101000.xhp\n"
+"hd_id3148473\n"
+"help.text"
+msgid "Syntax:"
+msgstr ""
+
+#. UnBtF
+#: 03101000.xhp
+msgctxt ""
+"03101000.xhp\n"
+"par_id3145315\n"
+"help.text"
+msgid "CStr (Expression)"
+msgstr ""
+
+#. aiywX
+#: 03101000.xhp
+msgctxt ""
+"03101000.xhp\n"
+"hd_id3153062\n"
+"help.text"
+msgid "Return value:"
+msgstr ""
+
+#. cHP4B
+#: 03101000.xhp
+msgctxt ""
+"03101000.xhp\n"
+"hd_id3154760\n"
+"help.text"
+msgid "Parameters:"
+msgstr ""
+
+#. f8VgF
+#: 03101000.xhp
+msgctxt ""
+"03101000.xhp\n"
+"par_id3149457\n"
+"help.text"
+msgid "<emph>Expression:</emph> Any valid string or numeric expression that you want to convert."
+msgstr ""
+
+#. EzY72
+#: 03101000.xhp
+msgctxt ""
+"03101000.xhp\n"
+"hd_id3150358\n"
+"help.text"
+msgid "Expression Types and Conversion Returns"
+msgstr ""
+
+#. wjcDB
+#: 03101000.xhp
+msgctxt ""
+"03101000.xhp\n"
+"par_id3156422\n"
+"help.text"
+msgid "String that evaluates to either <emph>True</emph> or <emph>False</emph>."
+msgstr ""
+
+#. CrwVu
+#: 03101000.xhp
+msgctxt ""
+"03101000.xhp\n"
+"par_id3155411\n"
+"help.text"
+msgid "String that contains the date and time."
+msgstr ""
+
+#. ZATnW
+#: 03101000.xhp
+msgctxt ""
+"03101000.xhp\n"
+"par_id3150486\n"
+"help.text"
+msgid "Run-time error."
+msgstr ""
+
+#. SfQUa
+#: 03101000.xhp
+msgctxt ""
+"03101000.xhp\n"
+"par_id3155306\n"
+"help.text"
+msgid "String without any characters."
+msgstr ""
+
+#. vzaXy
+#: 03101000.xhp
+msgctxt ""
+"03101000.xhp\n"
+"par_id3152938\n"
+"help.text"
+msgid "Corresponding number as string."
+msgstr ""
+
+#. GEAXv
+#: 03101000.xhp
+msgctxt ""
+"03101000.xhp\n"
+"par_id3155738\n"
+"help.text"
+msgid "Zeros at the end of a floating-point number are not included in the returned string."
+msgstr ""
+
+#. GLodW
+#: 03101000.xhp
+msgctxt ""
+"03101000.xhp\n"
+"hd_id3154729\n"
+"help.text"
+msgid "Example:"
+msgstr ""
+
+#. Z4tgA
+#: 03101100.xhp
+msgctxt ""
+"03101100.xhp\n"
+"tit\n"
+"help.text"
+msgid "DefBool Statement"
+msgstr ""
+
+#. dfnQr
+#: 03101100.xhp
+msgctxt ""
+"03101100.xhp\n"
+"bm_id3145759\n"
+"help.text"
+msgid "<bookmark_value>DefBool statement</bookmark_value>"
+msgstr ""
+
+#. DFbBc
+#: 03101100.xhp
+msgctxt ""
+"03101100.xhp\n"
+"hd_id3145759\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03101100.xhp\" name=\"DefBool Statement\">DefBool Statement</link>"
+msgstr ""
+
+#. JCPLq
+#: 03101100.xhp
+msgctxt ""
+"03101100.xhp\n"
+"par_id3153089\n"
+"help.text"
+msgid "If no type-declaration character or keyword is specified, the DefBool statement sets the default data type for variables, according to a letter range."
+msgstr ""
+
+#. SZ3Ak
+#: 03101100.xhp
+msgctxt ""
+"03101100.xhp\n"
+"par_id971587473488701\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sbasic/Defxxx_statements.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">DefType statements diagram</alt></image>"
+msgstr ""
+
+#. NFRzL
+#: 03101100.xhp
+msgctxt ""
+"03101100.xhp\n"
+"par_id3147336\n"
+"help.text"
+msgid "<emph>char:</emph> Letter prefix that specifies default data type for variables."
+msgstr ""
+
+#. CBqSz
+#: 03101100.xhp
+msgctxt ""
+"03101100.xhp\n"
+"par_id3147226\n"
+"help.text"
+msgid "<emph>char-char:</emph> Letter range prefixes that specify default data type for variables."
+msgstr ""
+
+#. 9vqSg
+#: 03101100.xhp
+msgctxt ""
+"03101100.xhp\n"
+"par_id3156152\n"
+"help.text"
+msgid "' Prefix definitions for variable types:"
+msgstr ""
+
+#. QC5gr
+#: 03101100.xhp
+msgctxt ""
+"03101100.xhp\n"
+"par_id3152481\n"
+"help.text"
+msgid "Print TypeName(Boole), VarType(Babbage), bitcoin ' Displays: Boolean 11 False"
+msgstr ""
+
+#. i5aFp
+#: 03101100.xhp
+msgctxt ""
+"03101100.xhp\n"
+"par_id3151381\n"
+"help.text"
+msgid "bOK=True ' bOK is an implicit boolean variable"
+msgstr ""
+
+#. zabpF
+#: 03101110.xhp
+msgctxt ""
+"03101110.xhp\n"
+"tit\n"
+"help.text"
+msgid "DefCur Statement"
+msgstr ""
+
+#. HKGKx
+#: 03101110.xhp
+msgctxt ""
+"03101110.xhp\n"
+"bm_id9555345\n"
+"help.text"
+msgid "<bookmark_value>DefCur statement</bookmark_value>"
+msgstr ""
+
+#. zEeZG
+#: 03101110.xhp
+msgctxt ""
+"03101110.xhp\n"
+"par_idN1057D\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03101110.xhp\">DefCur Statement</link>"
+msgstr ""
+
+#. d4KGm
+#: 03101110.xhp
+msgctxt ""
+"03101110.xhp\n"
+"par_idN1058D\n"
+"help.text"
+msgid "If no type-declaration character or keyword is specified, the DefCur statement sets the default variable type, according to a letter range."
+msgstr ""
+
+#. UJUeE
+#: 03101110.xhp
+msgctxt ""
+"03101110.xhp\n"
+"par_idN105D8\n"
+"help.text"
+msgid "Print liquid, Typename(coinbit), VarType(money) ' Result is: 0.0000 Currency 6"
+msgstr ""
+
+#. uA7E4
+#: 03101110.xhp
+msgctxt ""
+"03101110.xhp\n"
+"par_idN105D9\n"
+"help.text"
+msgid "cCur=Currency ' cCur is an implicit currency variable."
+msgstr ""
+
+#. QvNCR
+#: 03101120.xhp
+msgctxt ""
+"03101120.xhp\n"
+"tit\n"
+"help.text"
+msgid "DefErr Statement"
+msgstr ""
+
+#. V5Eom
+#: 03101120.xhp
+msgctxt ""
+"03101120.xhp\n"
+"bm_id8177739\n"
+"help.text"
+msgid "<bookmark_value>DefErr statement</bookmark_value>"
+msgstr ""
+
+#. fEMEo
+#: 03101120.xhp
+msgctxt ""
+"03101120.xhp\n"
+"par_idN1057D\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03101120.xhp\">DefErr Statement</link>"
+msgstr ""
+
+#. yQsoP
+#: 03101120.xhp
+msgctxt ""
+"03101120.xhp\n"
+"par_idN1058D\n"
+"help.text"
+msgid "If no type-declaration character or keyword is specified, the DefErr statement sets the default variable type, according to a letter range."
+msgstr ""
+
+#. b8Tvs
+#: 03101120.xhp
+msgctxt ""
+"03101120.xhp\n"
+"par_idN105D9\n"
+"help.text"
+msgid "eErr=Error ' eErr is an implicit error variable"
+msgstr ""
+
+#. bRtxx
+#: 03101130.xhp
+msgctxt ""
+"03101130.xhp\n"
+"tit\n"
+"help.text"
+msgid "DefSng Statement"
+msgstr ""
+
+#. FGsHa
+#: 03101130.xhp
+msgctxt ""
+"03101130.xhp\n"
+"bm_id2445142\n"
+"help.text"
+msgid "<bookmark_value>DefSng statement</bookmark_value>"
+msgstr ""
+
+#. eYYKA
+#: 03101130.xhp
+msgctxt ""
+"03101130.xhp\n"
+"par_idN10577\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03101130.xhp\">DefSng Statement</link>"
+msgstr ""
+
+#. f46uc
+#: 03101130.xhp
+msgctxt ""
+"03101130.xhp\n"
+"par_idN10587\n"
+"help.text"
+msgid "If no type-declaration character or keyword is specified, the DefSng statement sets the default variable type, according to a letter range."
+msgstr ""
+
+#. FEQfu
+#: 03101130.xhp
+msgctxt ""
+"03101130.xhp\n"
+"par_idN105D3\n"
+"help.text"
+msgid "wSng=Single ' wSng is an implicit single variable"
+msgstr ""
+
+#. B2kjC
+#: 03101130.xhp
+msgctxt ""
+"03101130.xhp\n"
+"par_idN105D4\n"
+"help.text"
+msgid "Print afloat, Typename(Word), VarType(anyNum) ' Result is : 0 single 4"
+msgstr ""
+
+#. zfvWo
+#: 03101140.xhp
+msgctxt ""
+"03101140.xhp\n"
+"tit\n"
+"help.text"
+msgid "DefStr Statement"
+msgstr ""
+
+#. BrFKG
+#: 03101140.xhp
+msgctxt ""
+"03101140.xhp\n"
+"bm_id6161381\n"
+"help.text"
+msgid "<bookmark_value>DefStr statement</bookmark_value>"
+msgstr ""
+
+#. W3pG2
+#: 03101140.xhp
+msgctxt ""
+"03101140.xhp\n"
+"par_idN10577\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03101140.xhp\">DefStr Statement</link>"
+msgstr ""
+
+#. hqQDQ
+#: 03101140.xhp
+msgctxt ""
+"03101140.xhp\n"
+"par_idN10587\n"
+"help.text"
+msgid "If no type-declaration character or keyword is specified, the DefStr statement sets the default variable type, according to a letter range."
+msgstr ""
+
+#. LCyE8
+#: 03101140.xhp
+msgctxt ""
+"03101140.xhp\n"
+"par_idN105D3\n"
+"help.text"
+msgid "sStr=String ' sStr is an implicit string variable"
+msgstr ""
+
+#. pVAGJ
+#: 03101140.xhp
+msgctxt ""
+"03101140.xhp\n"
+"par_idN105D4\n"
+"help.text"
+msgid "Print VarType(slice), strng, TypeName(sheet) ' Result is: 8 \"\" String"
+msgstr ""
+
+#. E5nXi
+#: 03101300.xhp
+msgctxt ""
+"03101300.xhp\n"
+"tit\n"
+"help.text"
+msgid "DefDate Statement"
+msgstr ""
+
+#. UKvrk
+#: 03101300.xhp
+msgctxt ""
+"03101300.xhp\n"
+"bm_id3150504\n"
+"help.text"
+msgid "<bookmark_value>DefDate statement</bookmark_value>"
+msgstr ""
+
+#. CFt2k
+#: 03101300.xhp
+msgctxt ""
+"03101300.xhp\n"
+"hd_id3150504\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03101300.xhp\" name=\"DefDate Statement\">DefDate Statement</link>"
+msgstr ""
+
+#. 7EJB8
+#: 03101300.xhp
+msgctxt ""
+"03101300.xhp\n"
+"par_id3145069\n"
+"help.text"
+msgid "If no type-declaration character or keyword is specified, the DefDate statement sets the default variable type, according to a letter range."
+msgstr ""
+
+#. sGAWV
+#: 03101300.xhp
+msgctxt ""
+"03101300.xhp\n"
+"par_id3152462\n"
+"help.text"
+msgid "tDate=Date ' tDate is an implicit date variable"
+msgstr ""
+
+#. kEsRX
+#: 03101300.xhp
+msgctxt ""
+"03101300.xhp\n"
+"par_id3153562\n"
+"help.text"
+msgid "Print VarType(tea), train, TypeName(timedate), IsDate(tick) ' Displays: 7 00:00:00 Date True"
+msgstr ""
+
+#. c8vDs
+#: 03101400.xhp
+msgctxt ""
+"03101400.xhp\n"
+"tit\n"
+"help.text"
+msgid "DefDbl Statement"
+msgstr ""
+
+#. 8SVty
+#: 03101400.xhp
+msgctxt ""
+"03101400.xhp\n"
+"bm_id3147242\n"
+"help.text"
+msgid "<bookmark_value>DefDbl statement</bookmark_value>"
+msgstr ""
+
+#. AcRJZ
+#: 03101400.xhp
+msgctxt ""
+"03101400.xhp\n"
+"hd_id3147242\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03101400.xhp\" name=\"DefDbl Statement\">DefDbl Statement</link>"
+msgstr ""
+
+#. gJGCw
+#: 03101400.xhp
+msgctxt ""
+"03101400.xhp\n"
+"par_id3153126\n"
+"help.text"
+msgid "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified."
+msgstr ""
+
+#. oWGT8
+#: 03101400.xhp
+msgctxt ""
+"03101400.xhp\n"
+"par_id3154244\n"
+"help.text"
+msgid "fValue=1.23e43 ' fValue is an implicit double variable type"
+msgstr ""
+
+#. DcRHT
+#: 03101400.xhp
+msgctxt ""
+"03101400.xhp\n"
+"par_id3153144\n"
+"help.text"
+msgid "Print Typename(float), VarType(fire), factory ' Result is: Double 5 0"
+msgstr ""
+
+#. mcUhD
+#: 03101500.xhp
+msgctxt ""
+"03101500.xhp\n"
+"tit\n"
+"help.text"
+msgid "DefInt Statement"
+msgstr ""
+
+#. orNy3
+#: 03101500.xhp
+msgctxt ""
+"03101500.xhp\n"
+"bm_id3149811\n"
+"help.text"
+msgid "<bookmark_value>DefInt statement</bookmark_value>"
+msgstr ""
+
+#. zFBiu
+#: 03101500.xhp
+msgctxt ""
+"03101500.xhp\n"
+"hd_id3149811\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03101500.xhp\" name=\"DefInt Statement\">DefInt Statement</link>"
+msgstr ""
+
+#. 8QFfR
+#: 03101500.xhp
+msgctxt ""
+"03101500.xhp\n"
+"par_id3149762\n"
+"help.text"
+msgid "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified."
+msgstr ""
+
+#. zxFQy
+#: 03101500.xhp
+msgctxt ""
+"03101500.xhp\n"
+"par_id3164728\n"
+"help.text"
+msgid "iCount=200 ' iCount is an implicit integer variable"
+msgstr ""
+
+#. kXjfq
+#: 03101500.xhp
+msgctxt ""
+"03101500.xhp\n"
+"par_id3153728\n"
+"help.text"
+msgid "Print kilos, Typename(number), VarType(Java) ' Result is: 0 Integer 2"
+msgstr ""
+
+#. kK2Aw
+#: 03101600.xhp
+msgctxt ""
+"03101600.xhp\n"
+"tit\n"
+"help.text"
+msgid "DefLng Statement"
+msgstr ""
+
+#. 7PjGa
+#: 03101600.xhp
+msgctxt ""
+"03101600.xhp\n"
+"bm_id3148538\n"
+"help.text"
+msgid "<bookmark_value>DefLng statement</bookmark_value>"
+msgstr ""
+
+#. SEAJt
+#: 03101600.xhp
+msgctxt ""
+"03101600.xhp\n"
+"hd_id3148538\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03101600.xhp\" name=\"DefLng Statement\">DefLng Statement</link>"
+msgstr ""
+
+#. RECCG
+#: 03101600.xhp
+msgctxt ""
+"03101600.xhp\n"
+"par_id3149514\n"
+"help.text"
+msgid "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified."
+msgstr ""
+
+#. Dn2Xk
+#: 03101600.xhp
+msgctxt ""
+"03101600.xhp\n"
+"par_id3145273\n"
+"help.text"
+msgid "xCount=123456789 ' xCount is an implicit long integer variable"
+msgstr ""
+
+#. Pg49N
+#: 03101600.xhp
+msgctxt ""
+"03101600.xhp\n"
+"par_id3255273\n"
+"help.text"
+msgid "Print VarType(Yes), zinc, Typename(Max) ' Result is: 3 0 Long"
+msgstr ""
+
+#. k5A5k
+#: 03101700.xhp
+msgctxt ""
+"03101700.xhp\n"
+"tit\n"
+"help.text"
+msgid "DefObj Statement"
+msgstr ""
+
+#. AFCbY
+#: 03101700.xhp
+msgctxt ""
+"03101700.xhp\n"
+"bm_id3149811\n"
+"help.text"
+msgid "<bookmark_value>DefObj statement</bookmark_value>"
+msgstr ""
+
+#. FinA5
+#: 03101700.xhp
+msgctxt ""
+"03101700.xhp\n"
+"hd_id3149811\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03101700.xhp\" name=\"DefObj Statement\">DefObj Statement</link>"
+msgstr ""
+
+#. vzCDm
+#: 03101700.xhp
+msgctxt ""
+"03101700.xhp\n"
+"par_id3147573\n"
+"help.text"
+msgid "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified."
+msgstr ""
+
+#. Ds9qa
+#: 03101700.xhp
+msgctxt ""
+"03101700.xhp\n"
+"par_id3255273\n"
+"help.text"
+msgid "Print Typename(properties), VarType(ordinal), IsNull(unique), IsObject(org)' Result is: Object 9 True False"
+msgstr ""
+
+#. oaF9W
+#: 03102000.xhp
+msgctxt ""
+"03102000.xhp\n"
+"tit\n"
+"help.text"
+msgid "DefVar Statement"
+msgstr ""
+
+#. jSB2p
+#: 03102000.xhp
+msgctxt ""
+"03102000.xhp\n"
+"bm_id3143267\n"
+"help.text"
+msgid "<bookmark_value>DefVar statement</bookmark_value>"
+msgstr ""
+
+#. vrP75
+#: 03102000.xhp
+msgctxt ""
+"03102000.xhp\n"
+"hd_id3143267\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03102000.xhp\" name=\"DefVar Statement\">DefVar Statement</link>"
+msgstr ""
+
+#. rLx6D
+#: 03102000.xhp
+msgctxt ""
+"03102000.xhp\n"
+"par_id3153825\n"
+"help.text"
+msgid "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified."
+msgstr ""
+
+#. TJouG
+#: 03102000.xhp
+msgctxt ""
+"03102000.xhp\n"
+"par_id3154012\n"
+"help.text"
+msgid "vDiv=99 ' vDiv is an implicit variant"
+msgstr ""
+
+#. 7BG6Y
+#: 03102000.xhp
+msgctxt ""
+"03102000.xhp\n"
+"par_id3146121\n"
+"help.text"
+msgid "values=\"Hello world\""
+msgstr ""
+
+#. BoCFz
+#: 03102000.xhp
+msgctxt ""
+"03102000.xhp\n"
+"par_id3147221\n"
+"help.text"
+msgid "Print Typename(glob), VarType(values), IsEmpty(vOffer) ' Displays: Empty 8 True"
+msgstr ""
+
+#. 2jpst
+#: 03102100.xhp
+msgctxt ""
+"03102100.xhp\n"
+"tit\n"
+"help.text"
+msgid "Dim Statement"
+msgstr ""
+
+#. EEkQA
+#: 03102100.xhp
+msgctxt ""
+"03102100.xhp\n"
+"bm_id3149812\n"
+"help.text"
+msgid "<bookmark_value>Dim statement</bookmark_value> <bookmark_value>arrays; dimensioning</bookmark_value> <bookmark_value>dimensioning arrays</bookmark_value>"
+msgstr ""
+
+#. HnQSe
+#: 03102100.xhp
+msgctxt ""
+"03102100.xhp\n"
+"hd_id3149812\n"
+"help.text"
+msgid "<variable id=\"Dimh1\"><link href=\"text/sbasic/shared/03102100.xhp\" name=\"Dim Statement\">Dim Statement</link></variable>"
+msgstr ""
+
+#. 9gRSS
+#: 03102100.xhp
+msgctxt ""
+"03102100.xhp\n"
+"par_id3143271\n"
+"help.text"
+msgid "Declares variables or arrays."
+msgstr ""
+
+#. 7Ske5
+#: 03102100.xhp
+msgctxt ""
+"03102100.xhp\n"
+"par_id3154686\n"
+"help.text"
+msgid "If the variables are separated by commas - for example <literal>Dim v1, v2, v3 As String</literal> - first ones get defined as Variant variables. A new line, or colon sign (<emph>:</emph>), help separate variable definitions."
+msgstr ""
+
+#. sZ9H8
+#: 03102100.xhp
+msgctxt ""
+"03102100.xhp\n"
+"par_id3152576\n"
+"help.text"
+msgid "<literal>Dim</literal> declares local variables within subroutines. Global variables are declared with the <literal>Global</literal>, <literal>Public</literal> or the <literal>Private</literal> statement."
+msgstr ""
+
+#. RWfkr
+#: 03102100.xhp
+msgctxt ""
+"03102100.xhp\n"
+"par_id971587473488701\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sbasic/Dim_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Dim Statement diagram</alt></image>"
+msgstr ""
+
+#. bEQhy
+#: 03102100.xhp
+msgctxt ""
+"03102100.xhp\n"
+"par_id3149412\n"
+"help.text"
+msgid "Dim variable [(start To end)] [As typename][, variable2[char] [(start To end)] [,...]]"
+msgstr ""
+
+#. yZw2F
+#: 03102100.xhp
+msgctxt ""
+"03102100.xhp\n"
+"par_id221651071987432\n"
+"help.text"
+msgid "<literal>New</literal> operator is optional when setting <link href=\"text/sbasic/shared/compatible.xhp\" name=\"Option Compatible\">Option Compatible</link> option."
+msgstr ""
+
+#. JBuCh
+#: 03102100.xhp
+msgctxt ""
+"03102100.xhp\n"
+"par_id3154730\n"
+"help.text"
+msgid "<emph>variable:</emph> Any variable or array name."
+msgstr ""
+
+#. wB6Jx
+#: 03102100.xhp
+msgctxt ""
+"03102100.xhp\n"
+"par_id3154510\n"
+"help.text"
+msgid "<emph>typename:</emph> Keyword that declares the data type of a variable."
+msgstr ""
+
+#. Rqp83
+#: 03102100.xhp
+msgctxt ""
+"03102100.xhp\n"
+"par_id971587473508701\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sbasic/typename_fragment.svg\" id=\"img_id4156296484515\"><alt id=\"alt_id15152796484515\">primitive data types fragment</alt></image>"
+msgstr ""
+
+#. pFWdb
+#: 03102100.xhp
+msgctxt ""
+"03102100.xhp\n"
+"par_id21587557790810\n"
+"help.text"
+msgid "<emph>Byte:</emph> Byte variable (0-255)"
+msgstr ""
+
+#. fQsgi
+#: 03102100.xhp
+msgctxt ""
+"03102100.xhp\n"
+"par_id3153949\n"
+"help.text"
+msgid "<emph>Boolean:</emph> Boolean variable (True, False)"
+msgstr ""
+
+#. PouUE
+#: 03102100.xhp
+msgctxt ""
+"03102100.xhp\n"
+"par_id3156275\n"
+"help.text"
+msgid "<emph>Currency:</emph> Currency variable (Currency with 4 Decimal places)"
+msgstr ""
+
+#. BHPpy
+#: 03102100.xhp
+msgctxt ""
+"03102100.xhp\n"
+"par_id3156057\n"
+"help.text"
+msgid "<emph>Date:</emph> Date variable"
+msgstr ""
+
+#. jyVtV
+#: 03102100.xhp
+msgctxt ""
+"03102100.xhp\n"
+"par_id3148405\n"
+"help.text"
+msgid "<emph>Double:</emph> Double-precision floating-point variable (1,79769313486232 x 10E308 - 4,94065645841247 x 10E-324)"
+msgstr ""
+
+#. kBUDz
+#: 03102100.xhp
+msgctxt ""
+"03102100.xhp\n"
+"par_id3148916\n"
+"help.text"
+msgid "<emph>Integer:</emph> Integer variable (-32768 - 32767)"
+msgstr ""
+
+#. DNHMA
+#: 03102100.xhp
+msgctxt ""
+"03102100.xhp\n"
+"par_id3150045\n"
+"help.text"
+msgid "<emph>Long:</emph> Long integer variable (-2.147.483.648 - 2.147.483.647)"
+msgstr ""
+
+#. z9CEA
+#: 03102100.xhp
+msgctxt ""
+"03102100.xhp\n"
+"par_id3149255\n"
+"help.text"
+msgid "<emph>Object:</emph> Object variable (Note: this variable can only subsequently be defined with <literal>Set</literal>!)"
+msgstr ""
+
+#. iBZ3a
+#: 03102100.xhp
+msgctxt ""
+"03102100.xhp\n"
+"par_id3155937\n"
+"help.text"
+msgid "<emph>Single:</emph> Single-precision floating-point variable (3,402823 x 10E38 - 1,401298 x 10E-45)."
+msgstr ""
+
+#. TcSDB
+#: 03102100.xhp
+msgctxt ""
+"03102100.xhp\n"
+"par_id3151251\n"
+"help.text"
+msgid "<emph>String:</emph> String variable consisting of a maximum of 64,000 ASCII characters."
+msgstr ""
+
+#. UkswY
+#: 03102100.xhp
+msgctxt ""
+"03102100.xhp\n"
+"par_id3154704\n"
+"help.text"
+msgid "<emph>Variant:</emph> Variant variable type (contains all types, specified by definition). If a type name is not specified, variables are automatically defined as Variant Type, unless a statement from <literal>DefBool</literal> to <literal>DefVar</literal> is used."
+msgstr ""
+
+#. 2GyLr
+#: 03102100.xhp
+msgctxt ""
+"03102100.xhp\n"
+"par_id21587667790810\n"
+"help.text"
+msgid "<emph>object:</emph> Universal Network object (UNO) object or <link href=\"text/sbasic/shared/classmodule\" name=\"Class module\">ClassModule</link> object instance."
+msgstr ""
+
+#. NbDcm
+#: 03102100.xhp
+msgctxt ""
+"03102100.xhp\n"
+"par_id3153510\n"
+"help.text"
+msgid "<emph>char:</emph> Special character that declares the data type of a variable."
+msgstr ""
+
+#. 52vix
+#: 03102100.xhp
+msgctxt ""
+"03102100.xhp\n"
+"par_id971587473518701\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sbasic/char_fragment.svg\" id=\"img_id4156296484516\"><alt id=\"alt_id15152796484516\">Type declaration characters fragment</alt></image>"
+msgstr ""
+
+#. JgnAC
+#: 03102100.xhp
+msgctxt ""
+"03102100.xhp\n"
+"par_id3146316\n"
+"help.text"
+msgid "In %PRODUCTNAME Basic, you do not need to declare variables explicitly. However, you need to declare arrays before you can use them. You can declare a variable with the <literal>Dim</literal> statement, using commas (<emph>,</emph>) to separate multiple declarations. To declare a variable type, enter a type-declaration character following the name or use a corresponding type keyword name."
+msgstr ""
+
+#. VDkAN
+#: 03102100.xhp
+msgctxt ""
+"03102100.xhp\n"
+"par_id441587477911298\n"
+"help.text"
+msgid "<emph>array:</emph> Array declaration."
+msgstr ""
+
+#. TmrKG
+#: 03102100.xhp
+msgctxt ""
+"03102100.xhp\n"
+"par_id971587473519701\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sbasic/array_fragment.svg\" id=\"img_id4156296485516\"><alt id=\"alt_id15152796485516\">array fragment</alt></image>"
+msgstr ""
+
+#. BaEsN
+#: 03102100.xhp
+msgctxt ""
+"03102100.xhp\n"
+"par_id3147125\n"
+"help.text"
+msgid "<emph>start, end:</emph> Numerical values or constants that define the number of elements (NumberElements=(end-start)+1) and the index range."
+msgstr ""
+
+#. T2g5D
+#: 03102100.xhp
+msgctxt ""
+"03102100.xhp\n"
+"par_id3153877\n"
+"help.text"
+msgid "<emph>start</emph> and <emph>end</emph> can be numerical expressions if <literal>ReDim</literal> is applied at the procedure level."
+msgstr ""
+
+#. JkDDD
+#: 03102100.xhp
+msgctxt ""
+"03102100.xhp\n"
+"par_id3149924\n"
+"help.text"
+msgid "$[officename] Basic supports single or multi-dimensional arrays that are defined by a specified variable type. Arrays are suitable if the program contains lists or tables that you want to edit. The advantage of arrays is that it is possible to address individual elements according to indexes, which can be formulated as numeric expressions or variables."
+msgstr ""
+
+#. ZuZBj
+#: 03102100.xhp
+msgctxt ""
+"03102100.xhp\n"
+"par_id3148488\n"
+"help.text"
+msgid "Arrays are declared with the <literal>Dim</literal> statement. There are multiple ways to define the index range:"
+msgstr ""
+
+#. iXgDy
+#: 03102100.xhp
+msgctxt ""
+"03102100.xhp\n"
+"bas_id381587475057846\n"
+"help.text"
+msgid "Dim text(20) As String ' 21 elements numbered from 0 to 20"
+msgstr ""
+
+#. Du5a3
+#: 03102100.xhp
+msgctxt ""
+"03102100.xhp\n"
+"bas_id1001587475058292\n"
+"help.text"
+msgid "Dim value(5 to 25) As Integer ' 21 values numbered from 5 to 25"
+msgstr ""
+
+#. 66C57
+#: 03102100.xhp
+msgctxt ""
+"03102100.xhp\n"
+"bas_id481587475059423\n"
+"help.text"
+msgid "Dim amount(-15 to 5) As Currency ' 21 amounts (including 0), numbered from -15 to 5"
+msgstr ""
+
+#. Q6d4T
+#: 03102100.xhp
+msgctxt ""
+"03102100.xhp\n"
+"bas_id621587475059824\n"
+"help.text"
+msgid "REM Two-dimensional data field"
+msgstr ""
+
+#. 9gAsN
+#: 03102100.xhp
+msgctxt ""
+"03102100.xhp\n"
+"bas_id11587475060830\n"
+"help.text"
+msgid "Dim table$(20,2) ' 63 items; from 0 to 20 level 1, from 0 to 20 level 2 and from 0 to 20 level 3."
+msgstr ""
+
+#. FLoRP
+#: 03102100.xhp
+msgctxt ""
+"03102100.xhp\n"
+"par_id3159239\n"
+"help.text"
+msgid "You can declare an array types as dynamic if a <literal>ReDim</literal> statement defines the number of dimensions in the subroutine or the function that contains the array. Generally, you can only define an array dimension once, and you cannot modify it. Within a subroutine, you can declare an array with <literal>ReDim</literal>. You can only define dimensions with numeric expressions. This ensures that the fields are only as large as necessary."
+msgstr ""
+
+#. cGpY9
+#: 03102100.xhp
+msgctxt ""
+"03102100.xhp\n"
+"par_id3149036\n"
+"help.text"
+msgid "' Two-dimensional data field"
+msgstr ""
+
+#. C4SQS
+#: 03102100.xhp
+msgctxt ""
+"03102100.xhp\n"
+"par_id3153782\n"
+"help.text"
+msgid "Const sDim As String = \" Dimension:\""
+msgstr ""
+
+#. zkbr7
+#: 03102101.xhp
+msgctxt ""
+"03102101.xhp\n"
+"tit\n"
+"help.text"
+msgid "ReDim Statement"
+msgstr ""
+
+#. dxT7d
+#: 03102101.xhp
+msgctxt ""
+"03102101.xhp\n"
+"bm_id3150398\n"
+"help.text"
+msgid "<bookmark_value>ReDim statement</bookmark_value>"
+msgstr ""
+
+#. yLRec
+#: 03102101.xhp
+msgctxt ""
+"03102101.xhp\n"
+"hd_id3150398\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03102101.xhp\" name=\"ReDim Statement\">ReDim Statement</link>"
+msgstr ""
+
+#. F9HMw
+#: 03102101.xhp
+msgctxt ""
+"03102101.xhp\n"
+"par_id3154685\n"
+"help.text"
+msgid "Declares or redefines variables or arrays."
+msgstr ""
+
+#. dTArZ
+#: 03102101.xhp
+msgctxt ""
+"03102101.xhp\n"
+"par_id971587473488701\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sbasic/ReDim_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">ReDim Statement diagram</alt></image>"
+msgstr ""
+
+#. bD6eG
+#: 03102101.xhp
+msgctxt ""
+"03102101.xhp\n"
+"par_id3156214\n"
+"help.text"
+msgid "ReDim [Preserve] variable [(start To end)] [As type-name][, variable2 [(start To end)] [As type-name][,...]]"
+msgstr ""
+
+#. 5wDoD
+#: 03102101.xhp
+msgctxt ""
+"03102101.xhp\n"
+"par_id711996\n"
+"help.text"
+msgid "Optionally, add the <literal>Preserve</literal> keyword to preserve the contents of the array that is redimensioned. <literal>ReDim</literal> can only be used in subroutines."
+msgstr ""
+
+#. TTGyB
+#: 03102101.xhp
+msgctxt ""
+"03102101.xhp\n"
+"hd_id3148405\n"
+"help.text"
+msgid "Example:"
+msgstr ""
+
+#. 5SuKj
+#: 03102200.xhp
+msgctxt ""
+"03102200.xhp\n"
+"tit\n"
+"help.text"
+msgid "IsArray Function"
+msgstr ""
+
+#. izVbw
+#: 03102200.xhp
+msgctxt ""
+"03102200.xhp\n"
+"bm_id3154346\n"
+"help.text"
+msgid "<bookmark_value>IsArray function</bookmark_value>"
+msgstr ""
+
+#. CZhKF
+#: 03102200.xhp
+msgctxt ""
+"03102200.xhp\n"
+"hd_id3154346\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03102200.xhp\" name=\"IsArray Function\">IsArray Function</link>"
+msgstr ""
+
+#. 6uXeM
+#: 03102200.xhp
+msgctxt ""
+"03102200.xhp\n"
+"par_id3159413\n"
+"help.text"
+msgid "Determines if a variable is a data field in an array."
+msgstr ""
+
+#. c8GSc
+#: 03102200.xhp
+msgctxt ""
+"03102200.xhp\n"
+"hd_id3150792\n"
+"help.text"
+msgid "Syntax:"
+msgstr ""
+
+#. Cipud
+#: 03102200.xhp
+msgctxt ""
+"03102200.xhp\n"
+"par_id3153379\n"
+"help.text"
+msgid "IsArray (Var)"
+msgstr ""
+
+#. oqBKb
+#: 03102200.xhp
+msgctxt ""
+"03102200.xhp\n"
+"hd_id3154365\n"
+"help.text"
+msgid "Return value:"
+msgstr ""
+
+#. 4tEeP
+#: 03102200.xhp
+msgctxt ""
+"03102200.xhp\n"
+"hd_id3153969\n"
+"help.text"
+msgid "Parameters:"
+msgstr ""
+
+#. fjqGh
+#: 03102200.xhp
+msgctxt ""
+"03102200.xhp\n"
+"par_id3145172\n"
+"help.text"
+msgid "<emph>Var:</emph> Any variable that you want to test if it is declared as an array. If the variable is an array, then the function returns <emph>True</emph>, otherwise <emph>False </emph>is returned."
+msgstr ""
+
+#. c4RJM
+#: 03102200.xhp
+msgctxt ""
+"03102200.xhp\n"
+"hd_id3155131\n"
+"help.text"
+msgid "Example:"
+msgstr ""
+
+#. eFP3B
+#: 03102300.xhp
+msgctxt ""
+"03102300.xhp\n"
+"tit\n"
+"help.text"
+msgid "IsDate Function"
+msgstr ""
+
+#. SFMVL
+#: 03102300.xhp
+msgctxt ""
+"03102300.xhp\n"
+"bm_id3145090\n"
+"help.text"
+msgid "<bookmark_value>IsDate function</bookmark_value>"
+msgstr ""
+
+#. yNKXW
+#: 03102300.xhp
+msgctxt ""
+"03102300.xhp\n"
+"hd_id3145090\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03102300.xhp\" name=\"IsDate Function\">IsDate Function</link>"
+msgstr ""
+
+#. GHcvs
+#: 03102300.xhp
+msgctxt ""
+"03102300.xhp\n"
+"par_id3153311\n"
+"help.text"
+msgid "Tests if a numeric or string expression can be converted to a <emph>Date</emph> variable."
+msgstr ""
+
+#. grWRs
+#: 03102300.xhp
+msgctxt ""
+"03102300.xhp\n"
+"hd_id3153824\n"
+"help.text"
+msgid "Syntax:"
+msgstr ""
+
+#. NAK7y
+#: 03102300.xhp
+msgctxt ""
+"03102300.xhp\n"
+"par_id3147573\n"
+"help.text"
+msgid "IsDate (Expression)"
+msgstr ""
+
+#. TW5An
+#: 03102300.xhp
+msgctxt ""
+"03102300.xhp\n"
+"hd_id3143270\n"
+"help.text"
+msgid "Return value:"
+msgstr ""
+
+#. D758U
+#: 03102300.xhp
+msgctxt ""
+"03102300.xhp\n"
+"hd_id3148947\n"
+"help.text"
+msgid "Parameters:"
+msgstr ""
+
+#. HiTfE
+#: 03102300.xhp
+msgctxt ""
+"03102300.xhp\n"
+"par_id3145069\n"
+"help.text"
+msgid "<emph>Expression:</emph> Any numeric or string expression that you want to test. If the expression can be converted to a date, the function returns <emph>True</emph>, otherwise the function returns <emph>False</emph>."
+msgstr ""
+
+#. MLSNK
+#: 03102300.xhp
+msgctxt ""
+"03102300.xhp\n"
+"hd_id3150447\n"
+"help.text"
+msgid "Example:"
+msgstr ""
+
+#. pVhKT
+#: 03102400.xhp
+msgctxt ""
+"03102400.xhp\n"
+"tit\n"
+"help.text"
+msgid "IsEmpty Function"
+msgstr ""
+
+#. Xc26L
+#: 03102400.xhp
+msgctxt ""
+"03102400.xhp\n"
+"bm_id3153394\n"
+"help.text"
+msgid "<bookmark_value>IsEmpty function</bookmark_value>"
+msgstr ""
+
+#. X7Hn4
+#: 03102400.xhp
+msgctxt ""
+"03102400.xhp\n"
+"hd_id3153394\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03102400.xhp\" name=\"IsEmpty Function\">IsEmpty Function</link>"
+msgstr ""
+
+#. CvCEz
+#: 03102400.xhp
+msgctxt ""
+"03102400.xhp\n"
+"par_id3163045\n"
+"help.text"
+msgid "Tests if a Variant variable contains the Empty value. The Empty value indicates that the variable is not initialized."
+msgstr ""
+
+#. st3Rw
+#: 03102400.xhp
+msgctxt ""
+"03102400.xhp\n"
+"hd_id3159158\n"
+"help.text"
+msgid "Syntax:"
+msgstr ""
+
+#. 3gyjT
+#: 03102400.xhp
+msgctxt ""
+"03102400.xhp\n"
+"par_id3153126\n"
+"help.text"
+msgid "IsEmpty (Var)"
+msgstr ""
+
+#. fGGNR
+#: 03102400.xhp
+msgctxt ""
+"03102400.xhp\n"
+"hd_id3148685\n"
+"help.text"
+msgid "Return value:"
+msgstr ""
+
+#. BrRWw
+#: 03102400.xhp
+msgctxt ""
+"03102400.xhp\n"
+"hd_id3148947\n"
+"help.text"
+msgid "Parameters:"
+msgstr ""
+
+#. Ew5aR
+#: 03102400.xhp
+msgctxt ""
+"03102400.xhp\n"
+"par_id3154347\n"
+"help.text"
+msgid "<emph>Var:</emph> Any variable that you want to test. If the Variant contains the Empty value, the function returns True, otherwise the function returns False."
+msgstr ""
+
+#. FXTmE
+#: 03102400.xhp
+msgctxt ""
+"03102400.xhp\n"
+"hd_id3154138\n"
+"help.text"
+msgid "Example:"
+msgstr ""
+
+#. dr2Py
+#: 03102450.xhp
+msgctxt ""
+"03102450.xhp\n"
+"tit\n"
+"help.text"
+msgid "IsError Function"
+msgstr ""
+
+#. jXCV2
+#: 03102450.xhp
+msgctxt ""
+"03102450.xhp\n"
+"bm_id4954680\n"
+"help.text"
+msgid "<bookmark_value>IsError function</bookmark_value>"
+msgstr ""
+
+#. FDXnr
+#: 03102450.xhp
+msgctxt ""
+"03102450.xhp\n"
+"par_idN1054E\n"
+"help.text"
+msgid "<variable id=\"IsErrorh1\"><link href=\"text/sbasic/shared/03102450.xhp\">IsError Function</link></variable>"
+msgstr ""
+
+#. yQg58
+#: 03102450.xhp
+msgctxt ""
+"03102450.xhp\n"
+"par_idN1055E\n"
+"help.text"
+msgid "Tests if a variable contains an error value."
+msgstr ""
+
+#. ygcjs
+#: 03102450.xhp
+msgctxt ""
+"03102450.xhp\n"
+"par_idN10561\n"
+"help.text"
+msgid "Syntax:"
+msgstr ""
+
+#. 6xgfA
+#: 03102450.xhp
+msgctxt ""
+"03102450.xhp\n"
+"par_idN10568\n"
+"help.text"
+msgid "Return value:"
+msgstr ""
+
+#. ECARX
+#: 03102450.xhp
+msgctxt ""
+"03102450.xhp\n"
+"par_idN1056C\n"
+"help.text"
+msgid "Bool"
+msgstr ""
+
+#. 33jUA
+#: 03102450.xhp
+msgctxt ""
+"03102450.xhp\n"
+"par_idN1056F\n"
+"help.text"
+msgid "Parameters:"
+msgstr ""
+
+#. jCQGH
+#: 03102450.xhp
+msgctxt ""
+"03102450.xhp\n"
+"par_idN10573\n"
+"help.text"
+msgid "<emph>Var:</emph> Any variable that you want to test. If the variable contains an error value, the function returns True, otherwise the function returns False."
+msgstr ""
+
+#. JTPzr
+#: 03102600.xhp
+msgctxt ""
+"03102600.xhp\n"
+"tit\n"
+"help.text"
+msgid "IsNull Function"
+msgstr ""
+
+#. BJBAU
+#: 03102600.xhp
+msgctxt ""
+"03102600.xhp\n"
+"bm_id3155555\n"
+"help.text"
+msgid "<bookmark_value>IsNull function</bookmark_value> <bookmark_value>Null value</bookmark_value>"
+msgstr ""
+
+#. 4BicJ
+#: 03102600.xhp
+msgctxt ""
+"03102600.xhp\n"
+"hd_id3155555\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03102600.xhp\" name=\"IsNull Function\">IsNull Function</link>"
+msgstr ""
+
+#. sJ5h3
+#: 03102600.xhp
+msgctxt ""
+"03102600.xhp\n"
+"par_id3146957\n"
+"help.text"
+msgid "Tests if a Variant contains the special Null value, indicating that the variable does not contain data."
+msgstr ""
+
+#. mLbEi
+#: 03102600.xhp
+msgctxt ""
+"03102600.xhp\n"
+"hd_id3150670\n"
+"help.text"
+msgid "Syntax:"
+msgstr ""
+
+#. uCnAB
+#: 03102600.xhp
+msgctxt ""
+"03102600.xhp\n"
+"par_id3150984\n"
+"help.text"
+msgid "IsNull (Var)"
+msgstr ""
+
+#. gxdzG
+#: 03102600.xhp
+msgctxt ""
+"03102600.xhp\n"
+"hd_id3149514\n"
+"help.text"
+msgid "Return value:"
+msgstr ""
+
+#. 2r2f2
+#: 03102600.xhp
+msgctxt ""
+"03102600.xhp\n"
+"hd_id3149669\n"
+"help.text"
+msgid "Parameters:"
+msgstr ""
+
+#. gVDss
+#: 03102600.xhp
+msgctxt ""
+"03102600.xhp\n"
+"par_id3159414\n"
+"help.text"
+msgid "<emph>Var:</emph> Any variable that you want to test. This function returns True if the Variant contains the Null value, or False if the Variant does not contain the Null value."
+msgstr ""
+
+#. PFSkn
+#: 03102600.xhp
+msgctxt ""
+"03102600.xhp\n"
+"par_idN1062A\n"
+"help.text"
+msgid "<emph>Null</emph> - This value is used for a variant data sub type without valid contents."
+msgstr ""
+
+#. GzMnE
+#: 03102600.xhp
+msgctxt ""
+"03102600.xhp\n"
+"hd_id3153381\n"
+"help.text"
+msgid "Example:"
+msgstr ""
+
+#. ApZsU
+#: 03102700.xhp
+msgctxt ""
+"03102700.xhp\n"
+"tit\n"
+"help.text"
+msgid "IsNumeric Function"
+msgstr ""
+
+#. iXcLG
+#: 03102700.xhp
+msgctxt ""
+"03102700.xhp\n"
+"bm_id3145136\n"
+"help.text"
+msgid "<bookmark_value>IsNumeric function</bookmark_value>"
+msgstr ""
+
+#. HXDaH
+#: 03102700.xhp
+msgctxt ""
+"03102700.xhp\n"
+"hd_id3145136\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03102700.xhp\" name=\"IsNumeric Function\">IsNumeric Function</link>"
+msgstr ""
+
+#. 2YPjv
+#: 03102700.xhp
+msgctxt ""
+"03102700.xhp\n"
+"par_id3149177\n"
+"help.text"
+msgid "Tests if an expression is a number. If the expression is a <link href=\"text/sbasic/shared/00000002.xhp#dezimal\" name=\"number\">number</link>, the function returns True, otherwise the function returns False."
+msgstr ""
+
+#. 6vASf
+#: 03102700.xhp
+msgctxt ""
+"03102700.xhp\n"
+"hd_id3149415\n"
+"help.text"
+msgid "Syntax:"
+msgstr ""
+
+#. CVUxC
+#: 03102700.xhp
+msgctxt ""
+"03102700.xhp\n"
+"par_id3150771\n"
+"help.text"
+msgid "IsNumeric (Var)"
+msgstr ""
+
+#. ms95u
+#: 03102700.xhp
+msgctxt ""
+"03102700.xhp\n"
+"hd_id3148685\n"
+"help.text"
+msgid "Return value:"
+msgstr ""
+
+#. doi6A
+#: 03102700.xhp
+msgctxt ""
+"03102700.xhp\n"
+"hd_id3148947\n"
+"help.text"
+msgid "Parameters:"
+msgstr ""
+
+#. CCj4C
+#: 03102700.xhp
+msgctxt ""
+"03102700.xhp\n"
+"par_id3154760\n"
+"help.text"
+msgid "<emph>Var:</emph> Any expression that you want to test."
+msgstr ""
+
+#. z5QdA
+#: 03102700.xhp
+msgctxt ""
+"03102700.xhp\n"
+"hd_id3149656\n"
+"help.text"
+msgid "Example:"
+msgstr ""
+
+#. vieWA
+#: 03102800.xhp
+msgctxt ""
+"03102800.xhp\n"
+"tit\n"
+"help.text"
+msgid "IsObject Function"
+msgstr ""
+
+#. LbyzC
+#: 03102800.xhp
+msgctxt ""
+"03102800.xhp\n"
+"bm_id3149346\n"
+"help.text"
+msgid "<bookmark_value>IsObject function</bookmark_value>"
+msgstr ""
+
+#. MF9nS
+#: 03102800.xhp
+msgctxt ""
+"03102800.xhp\n"
+"hd_id51633474369322\n"
+"help.text"
+msgid "<variable id=\"IsObject_h1\"><link href=\"text/sbasic/shared/03102800.xhp\" name=\"IsObject Function\">IsObject Function</link></variable>"
+msgstr ""
+
+#. AyVCR
+#: 03102800.xhp
+msgctxt ""
+"03102800.xhp\n"
+"par_id3148538\n"
+"help.text"
+msgid "Tests if a variable is an object, as opposed to primitive data types such as dates, numbers, texts. The function returns <literal>True</literal> if the variable is an object, otherwise it returns <literal>False</literal>."
+msgstr ""
+
+#. jCmJE
+#: 03102800.xhp
+msgctxt ""
+"03102800.xhp\n"
+"par_id891575896963115\n"
+"help.text"
+msgid "This function returns <literal>True</literal> for the following object types:"
+msgstr ""
+
+#. CBoWs
+#: 03102800.xhp
+msgctxt ""
+"03102800.xhp\n"
+"par_id471575892220352\n"
+"help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">OLE objects or </caseinline></switchinline>UNO objects"
+msgstr ""
+
+#. mBGyY
+#: 03102800.xhp
+msgctxt ""
+"03102800.xhp\n"
+"par_id451575892264518\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/classmodule.xhp\" name=\"Class module\">Class module</link> object instances"
+msgstr ""
+
+#. DgPrD
+#: 03102800.xhp
+msgctxt ""
+"03102800.xhp\n"
+"par_id851575882379006\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03090413.xhp\" name=\"Extended types\">Extended types</link> or <link href=\"text/sbasic/shared/enum.xhp\" name=\"enumerations\">enumerations</link>"
+msgstr ""
+
+#. TFDZQ
+#: 03102800.xhp
+msgctxt ""
+"03102800.xhp\n"
+"par_id131575882378422\n"
+"help.text"
+msgid "Routines or variables when defined as Object."
+msgstr ""
+
+#. oqtFf
+#: 03102800.xhp
+msgctxt ""
+"03102800.xhp\n"
+"par_id511575889156356\n"
+"help.text"
+msgid "%PRODUCTNAME Basic modules"
+msgstr ""
+
+#. MCx37
+#: 03102800.xhp
+msgctxt ""
+"03102800.xhp\n"
+"par_id441575886284392\n"
+"help.text"
+msgid "Data structures return <literal>True</literal> even when empty. Object defined variables return <literal>True</literal> even if uninitialized."
+msgstr ""
+
+#. 4SsCT
+#: 03102800.xhp
+msgctxt ""
+"03102800.xhp\n"
+"par_id3156024\n"
+"help.text"
+msgid "Boolean"
+msgstr ""
+
+#. rTuwL
+#: 03102800.xhp
+msgctxt ""
+"03102800.xhp\n"
+"par_id3148552\n"
+"help.text"
+msgid "<emph>var:</emph> The variable to be tested."
+msgstr ""
+
+#. yHDkt
+#: 03102800.xhp
+msgctxt ""
+"03102800.xhp\n"
+"par_id191575887649871\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/enum.xhp\" name=\"Enum statement\">Enum statement</link>"
+msgstr ""
+
+#. Dg4st
+#: 03102800.xhp
+msgctxt ""
+"03102800.xhp\n"
+"par_id51575897210153\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03090413.xhp\" name=\"Type statement\">Type statement</link>"
+msgstr ""
+
+#. WEgzG
+#: 03102800.xhp
+msgctxt ""
+"03102800.xhp\n"
+"par_id811575887627196\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/01020100.xhp\" name=\"Using variables\">Using variables</link>"
+msgstr ""
+
+#. dj7fW
+#: 03102900.xhp
+msgctxt ""
+"03102900.xhp\n"
+"tit\n"
+"help.text"
+msgid "LBound Function"
+msgstr ""
+
+#. hjuaA
+#: 03102900.xhp
+msgctxt ""
+"03102900.xhp\n"
+"bm_id3156027\n"
+"help.text"
+msgid "<bookmark_value>LBound function</bookmark_value>"
+msgstr ""
+
+#. SrYG2
+#: 03102900.xhp
+msgctxt ""
+"03102900.xhp\n"
+"hd_id3156027\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03102900.xhp\" name=\"LBound Function\">LBound Function</link>"
+msgstr ""
+
+#. tPdvo
+#: 03102900.xhp
+msgctxt ""
+"03102900.xhp\n"
+"par_id3147226\n"
+"help.text"
+msgid "Returns the lower boundary of an array."
+msgstr ""
+
+#. FcGvD
+#: 03102900.xhp
+msgctxt ""
+"03102900.xhp\n"
+"par_id3150503\n"
+"help.text"
+msgid "LBound (ArrayName [, Dimension])"
+msgstr ""
+
+#. KUDkg
+#: 03102900.xhp
+msgctxt ""
+"03102900.xhp\n"
+"par_id3145069\n"
+"help.text"
+msgid "<emph>ArrayName:</emph> Name of the array for which you want to return the upper (<emph>Ubound</emph>) or the lower (<emph>LBound</emph>) boundary of the array dimension."
+msgstr ""
+
+#. byGRH
+#: 03102900.xhp
+msgctxt ""
+"03102900.xhp\n"
+"par_id3149457\n"
+"help.text"
+msgid "<emph>[Dimension]:</emph> Integer that specifies which dimension to return the upper (<emph>Ubound</emph>) or the lower (<emph>LBound</emph>) boundary for. If a value is not specified, the first dimension is assumed."
+msgstr ""
+
+#. FEgDA
+#: 03102900.xhp
+msgctxt ""
+"03102900.xhp\n"
+"par_idm1206768352\n"
+"help.text"
+msgid "Print LBound(v()) ' returns 10"
+msgstr ""
+
+#. 6GB8Z
+#: 03103000.xhp
+msgctxt ""
+"03103000.xhp\n"
+"tit\n"
+"help.text"
+msgid "UBound Function"
+msgstr ""
+
+#. 6qgPw
+#: 03103000.xhp
+msgctxt ""
+"03103000.xhp\n"
+"bm_id3148538\n"
+"help.text"
+msgid "<bookmark_value>UBound function</bookmark_value>"
+msgstr ""
+
+#. DSgUD
+#: 03103000.xhp
+msgctxt ""
+"03103000.xhp\n"
+"hd_id3148538\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03103000.xhp\" name=\"UBound Function\">UBound Function</link>"
+msgstr ""
+
+#. AEcfy
+#: 03103000.xhp
+msgctxt ""
+"03103000.xhp\n"
+"par_id3147573\n"
+"help.text"
+msgid "Returns the upper boundary of an array."
+msgstr ""
+
+#. M5RWy
+#: 03103000.xhp
+msgctxt ""
+"03103000.xhp\n"
+"par_id3149415\n"
+"help.text"
+msgid "UBound (ArrayName [, Dimension])"
+msgstr ""
+
+#. Svuit
+#: 03103000.xhp
+msgctxt ""
+"03103000.xhp\n"
+"par_id3153381\n"
+"help.text"
+msgid "<emph>ArrayName:</emph> Name of the array for which you want to determine the upper (<emph>Ubound</emph>) or the lower (<emph>LBound</emph>) boundary."
+msgstr ""
+
+#. si2E3
+#: 03103000.xhp
+msgctxt ""
+"03103000.xhp\n"
+"par_id3148797\n"
+"help.text"
+msgid "<emph>[Dimension]:</emph> Integer that specifies which dimension to return the upper(<emph>Ubound</emph>) or lower (<emph>LBound</emph>) boundary for. If no value is specified, the boundary of the first dimension is returned."
+msgstr ""
+
+#. QHhrj
+#: 03103100.xhp
+msgctxt ""
+"03103100.xhp\n"
+"tit\n"
+"help.text"
+msgid "Let Statement"
+msgstr ""
+
+#. zcAoS
+#: 03103100.xhp
+msgctxt ""
+"03103100.xhp\n"
+"bm_id3147242\n"
+"help.text"
+msgid "<bookmark_value>Let statement</bookmark_value>"
+msgstr ""
+
+#. EdbYW
+#: 03103100.xhp
+msgctxt ""
+"03103100.xhp\n"
+"hd_id3147242\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03103100.xhp\" name=\"Let Statement\">Let Statement</link>"
+msgstr ""
+
+#. SiQNq
+#: 03103100.xhp
+msgctxt ""
+"03103100.xhp\n"
+"par_id3149233\n"
+"help.text"
+msgid "Assigns a value to a variable."
+msgstr ""
+
+#. yo55G
+#: 03103100.xhp
+msgctxt ""
+"03103100.xhp\n"
+"hd_id3153127\n"
+"help.text"
+msgid "Syntax:"
+msgstr ""
+
+#. ZR3gW
+#: 03103100.xhp
+msgctxt ""
+"03103100.xhp\n"
+"par_id41586012988213\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sbasic/LetSet_statement.svg\" id=\"img_id4156306484514\"><alt id=\"alt_id15152796484514\">Let Statement diagram</alt></image>"
+msgstr ""
+
+#. X4WmE
+#: 03103100.xhp
+msgctxt ""
+"03103100.xhp\n"
+"hd_id3148944\n"
+"help.text"
+msgid "Parameters:"
+msgstr ""
+
+#. DpLuj
+#: 03103100.xhp
+msgctxt ""
+"03103100.xhp\n"
+"par_id3147560\n"
+"help.text"
+msgid "<emph>variable:</emph> Variable that you want to assign a value to. Value and variable type must be compatible."
+msgstr ""
+
+#. ZCswn
+#: 03103100.xhp
+msgctxt ""
+"03103100.xhp\n"
+"par_id3148451\n"
+"help.text"
+msgid "As in most BASIC dialects, the keyword <emph>Let</emph> is optional."
+msgstr ""
+
+#. KC9DD
+#: 03103100.xhp
+msgctxt ""
+"03103100.xhp\n"
+"hd_id3145785\n"
+"help.text"
+msgid "Example:"
+msgstr ""
+
+#. JwK2U
+#: 03103100.xhp
+msgctxt ""
+"03103100.xhp\n"
+"par_id3152939\n"
+"help.text"
+msgid "MsgBox Len(sText) ' returns 9"
+msgstr ""
+
+#. gbgGE
+#: 03103200.xhp
+msgctxt ""
+"03103200.xhp\n"
+"tit\n"
+"help.text"
+msgid "Option Base Statement"
+msgstr ""
+
+#. C5CbQ
+#: 03103200.xhp
+msgctxt ""
+"03103200.xhp\n"
+"bm_id3155805\n"
+"help.text"
+msgid "<bookmark_value>Option Base statement</bookmark_value>"
+msgstr ""
+
+#. CKGCG
+#: 03103200.xhp
+msgctxt ""
+"03103200.xhp\n"
+"hd_id3155805\n"
+"help.text"
+msgid "<variable id=\"optionbasestatement\"><link href=\"text/sbasic/shared/03103200.xhp\" name=\"Option Base Statement\">Option Base Statement</link></variable>"
+msgstr ""
+
+#. 7SyG9
+#: 03103200.xhp
+msgctxt ""
+"03103200.xhp\n"
+"par_id3147242\n"
+"help.text"
+msgid "Defines the default lower boundary for arrays as 0 or 1."
+msgstr ""
+
+#. DPpsC
+#: 03103200.xhp
+msgctxt ""
+"03103200.xhp\n"
+"par_id3147229\n"
+"help.text"
+msgid "This statement must be added before the executable program code in a module."
+msgstr ""
+
+#. WKk6A
+#: 03103300.xhp
+msgctxt ""
+"03103300.xhp\n"
+"tit\n"
+"help.text"
+msgid "Option Explicit Statement"
+msgstr ""
+
+#. pjTCR
+#: 03103300.xhp
+msgctxt ""
+"03103300.xhp\n"
+"bm_id3145090\n"
+"help.text"
+msgid "<bookmark_value>Option Explicit statement</bookmark_value>"
+msgstr ""
+
+#. vDdUe
+#: 03103300.xhp
+msgctxt ""
+"03103300.xhp\n"
+"hd_id3145090\n"
+"help.text"
+msgid "<variable id=\"explicitstatement\"><link href=\"text/sbasic/shared/03103300.xhp\" name=\"Option Explicit Statement\">Option Explicit Statement</link></variable>"
+msgstr ""
+
+#. kHGHE
+#: 03103300.xhp
+msgctxt ""
+"03103300.xhp\n"
+"par_id3148538\n"
+"help.text"
+msgid "Specifies that every variable in the program code must be explicitly declared with the Dim statement."
+msgstr ""
+
+#. eo6us
+#: 03103300.xhp
+msgctxt ""
+"03103300.xhp\n"
+"par_id3145787\n"
+"help.text"
+msgid "For i% = 1 To 10 ' This results in a run-time error"
+msgstr ""
+
+#. tBjCk
+#: 03103350.xhp
+msgctxt ""
+"03103350.xhp\n"
+"tit\n"
+"help.text"
+msgid "Option VBASupport Statement"
+msgstr ""
+
+#. znn3p
+#: 03103350.xhp
+msgctxt ""
+"03103350.xhp\n"
+"bm_id3145090\n"
+"help.text"
+msgid "<bookmark_value>Microsoft Excel macros support;Enable</bookmark_value> <bookmark_value>Microsoft Excel macros support;Option VBASupport statement</bookmark_value> <bookmark_value>VBA Support;Option VBASupport statement</bookmark_value> <bookmark_value>Option VBASupport statement</bookmark_value>"
+msgstr ""
+
+#. vfiEk
+#: 03103350.xhp
+msgctxt ""
+"03103350.xhp\n"
+"hd_id3145090\n"
+"help.text"
+msgid "<variable id=\"vbasupportstatement\"><link href=\"text/sbasic/shared/03103350.xhp\" name=\"Option VBASupport Statement\">Option VBASupport Statement</link></variable>"
+msgstr ""
+
+#. Cp5GM
+#: 03103350.xhp
+msgctxt ""
+"03103350.xhp\n"
+"par_id3148538\n"
+"help.text"
+msgid "Specifies that %PRODUCTNAME Basic will support some VBA statements, functions and objects."
+msgstr ""
+
+#. SQpPp
+#: 03103350.xhp
+msgctxt ""
+"03103350.xhp\n"
+"par_id051720171055367194\n"
+"help.text"
+msgid "The support for VBA is not complete, but covers a large portion of the common usage patterns."
+msgstr ""
+
+#. x5mKt
+#: 03103350.xhp
+msgctxt ""
+"03103350.xhp\n"
+"par_id941552915528262\n"
+"help.text"
+msgid "When VBA support is enabled, %PRODUCTNAME Basic function arguments and return values are the same as their VBA functions counterparts. When the support is disabled, %PRODUCTNAME Basic functions may accept arguments and return values different of their VBA counterparts."
+msgstr ""
+
+#. UE4bQ
+#: 03103350.xhp
+msgctxt ""
+"03103350.xhp\n"
+"par_id051720171055361727\n"
+"help.text"
+msgid "1: Enable VBA support in %PRODUCTNAME"
+msgstr ""
+
+#. y4CjE
+#: 03103350.xhp
+msgctxt ""
+"03103350.xhp\n"
+"par_id051720171055369857\n"
+"help.text"
+msgid "0: Disable VBA support"
+msgstr ""
+
+#. oQw6u
+#: 03103350.xhp
+msgctxt ""
+"03103350.xhp\n"
+"par_id051720171119254111\n"
+"help.text"
+msgid "<link href=\"text/shared/optionen/01130100.xhp\">VBA Properties</link>"
+msgstr ""
+
+#. R7uT4
+#: 03103350.xhp
+msgctxt ""
+"03103350.xhp\n"
+"par_id051720170424259343\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/vbasupport.xhp\">VBA support in %PRODUCTNAME</link>"
+msgstr ""
+
+#. obuDS
+#: 03103400.xhp
+msgctxt ""
+"03103400.xhp\n"
+"tit\n"
+"help.text"
+msgid "Public Statement"
+msgstr ""
+
+#. ZUSSA
+#: 03103400.xhp
+msgctxt ""
+"03103400.xhp\n"
+"bm_id3153311\n"
+"help.text"
+msgid "<bookmark_value>Public statement</bookmark_value>"
+msgstr ""
+
+#. b35UC
+#: 03103400.xhp
+msgctxt ""
+"03103400.xhp\n"
+"hd_id3153311\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03103400.xhp\" name=\"Public Statement\">Public Statement</link>"
+msgstr ""
+
+#. f5QpN
+#: 03103400.xhp
+msgctxt ""
+"03103400.xhp\n"
+"par_id3150669\n"
+"help.text"
+msgid "Dimensions a variable or an array at the module level (that is, not within a subroutine or function), so that the variable and the array are valid in all libraries and modules."
+msgstr ""
+
+#. MQDAq
+#: 03103400.xhp
+msgctxt ""
+"03103400.xhp\n"
+"hd_id3150772\n"
+"help.text"
+msgid "Syntax:"
+msgstr ""
+
+#. tNoNq
+#: 03103400.xhp
+msgctxt ""
+"03103400.xhp\n"
+"par_id3155341\n"
+"help.text"
+msgid "Public VarName[(start To end)] [As VarType][, VarName2[(start To end)] [As VarType][,...]]"
+msgstr ""
+
+#. GEXZU
+#: 03103400.xhp
+msgctxt ""
+"03103400.xhp\n"
+"hd_id3145315\n"
+"help.text"
+msgid "Example:"
+msgstr ""
+
+#. J7dSX
+#: 03103450.xhp
+msgctxt ""
+"03103450.xhp\n"
+"tit\n"
+"help.text"
+msgid "Global Statement"
+msgstr ""
+
+#. 5QgJ8
+#: 03103450.xhp
+msgctxt ""
+"03103450.xhp\n"
+"bm_id3159201\n"
+"help.text"
+msgid "<bookmark_value>Global keyword</bookmark_value>"
+msgstr ""
+
+#. D6Aqe
+#: 03103450.xhp
+msgctxt ""
+"03103450.xhp\n"
+"hd_id3159201\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03103450.xhp\" name=\"Global keyword\">Global keyword</link>"
+msgstr ""
+
+#. rrYQS
+#: 03103450.xhp
+msgctxt ""
+"03103450.xhp\n"
+"par_id3149177\n"
+"help.text"
+msgid "Dimensions a variable or an array at the global level (that is, not within a subroutine or function), so that the variable and the array are valid in all libraries and modules for the current session."
+msgstr ""
+
+#. nP8AE
+#: 03103450.xhp
+msgctxt ""
+"03103450.xhp\n"
+"hd_id3143270\n"
+"help.text"
+msgid "Syntax:"
+msgstr ""
+
+#. kq4r5
+#: 03103450.xhp
+msgctxt ""
+"03103450.xhp\n"
+"par_id3150771\n"
+"help.text"
+msgid "Global VarName[(start To end)] [As VarType][, VarName2[(start To end)] [As VarType][,...]]"
+msgstr ""
+
+#. 5eZkE
+#: 03103450.xhp
+msgctxt ""
+"03103450.xhp\n"
+"hd_id3156152\n"
+"help.text"
+msgid "Example:"
+msgstr ""
+
+#. drGQx
+#: 03103500.xhp
+msgctxt ""
+"03103500.xhp\n"
+"tit\n"
+"help.text"
+msgid "Static Statement"
+msgstr ""
+
+#. vWhSs
+#: 03103500.xhp
+msgctxt ""
+"03103500.xhp\n"
+"bm_id3149798\n"
+"help.text"
+msgid "<bookmark_value>Static statement</bookmark_value>"
+msgstr ""
+
+#. qtNB5
+#: 03103500.xhp
+msgctxt ""
+"03103500.xhp\n"
+"hd_id3149798\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03103500.xhp\" name=\"Static Statement\">Static Statement</link>"
+msgstr ""
+
+#. eod6b
+#: 03103500.xhp
+msgctxt ""
+"03103500.xhp\n"
+"par_id3153311\n"
+"help.text"
+msgid "Declares a variable or an array at the procedure level within a subroutine or a function, so that the values of the variable or the array are retained after exiting the subroutine or function. Dim statement conventions are also valid."
+msgstr ""
+
+#. HD5Sa
+#: 03103500.xhp
+msgctxt ""
+"03103500.xhp\n"
+"par_id3147264\n"
+"help.text"
+msgid "The <emph>Static statement</emph> cannot be used to define variable arrays. Arrays must be specified according to a fixed size."
+msgstr ""
+
+#. SXakp
+#: 03103500.xhp
+msgctxt ""
+"03103500.xhp\n"
+"hd_id3149657\n"
+"help.text"
+msgid "Syntax:"
+msgstr ""
+
+#. nyGnr
+#: 03103500.xhp
+msgctxt ""
+"03103500.xhp\n"
+"par_id3150400\n"
+"help.text"
+msgid "Static VarName[(start To end)] [As VarType], VarName2[(start To end)] [As VarType], ..."
+msgstr ""
+
+#. xQqMt
+#: 03103500.xhp
+msgctxt ""
+"03103500.xhp\n"
+"hd_id3148452\n"
+"help.text"
+msgid "Example:"
+msgstr ""
+
+#. fq6bd
+#: 03103500.xhp
+msgctxt ""
+"03103500.xhp\n"
+"par_id3150870\n"
+"help.text"
+msgid "MsgBox iResult,0,\"The answer is\""
+msgstr ""
+
+#. HEZbp
+#: 03103500.xhp
+msgctxt ""
+"03103500.xhp\n"
+"par_id3151115\n"
+"help.text"
+msgid "' Function for initialization of the static variable"
+msgstr ""
+
+#. yjFGH
+#: 03103500.xhp
+msgctxt ""
+"03103500.xhp\n"
+"par_id1057161\n"
+"help.text"
+msgid "Const iMinimum As Integer = 40 ' minimum return value of this function"
+msgstr ""
+
+#. fFSff
+#: 03103500.xhp
+msgctxt ""
+"03103500.xhp\n"
+"par_id580462\n"
+"help.text"
+msgid "If iInit = 0 Then ' check if initialized"
+msgstr ""
+
+#. LDvVW
+#: 03103600.xhp
+msgctxt ""
+"03103600.xhp\n"
+"tit\n"
+"help.text"
+msgid "TypeName Function; VarType Function"
+msgstr ""
+
+#. 5Bz7E
+#: 03103600.xhp
+msgctxt ""
+"03103600.xhp\n"
+"bm_id3143267\n"
+"help.text"
+msgid "<bookmark_value>TypeName function</bookmark_value><bookmark_value>VarType function</bookmark_value><bookmark_value>Basic Variable Type constants</bookmark_value>"
+msgstr ""
+
+#. QYE2E
+#: 03103600.xhp
+msgctxt ""
+"03103600.xhp\n"
+"hd_id3143267\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03103600.xhp\" name=\"TypeName Function; VarType Function\">TypeName Function; VarType Function</link>"
+msgstr ""
+
+#. w43wu
+#: 03103600.xhp
+msgctxt ""
+"03103600.xhp\n"
+"par_id3159157\n"
+"help.text"
+msgid "Returns a string (TypeName) or a numeric value (VarType) that contains information for a variable."
+msgstr ""
+
+#. EkgRM
+#: 03103600.xhp
+msgctxt ""
+"03103600.xhp\n"
+"par_id3155341\n"
+"help.text"
+msgid "TypeName (Variable) / VarType (Variable)"
+msgstr ""
+
+#. CmbDF
+#: 03103600.xhp
+msgctxt ""
+"03103600.xhp\n"
+"par_id3148664\n"
+"help.text"
+msgid "<emph>Variable:</emph> The variable that you want to determine the type of. You can use the following values:"
+msgstr ""
+
+#. AJ9RG
+#: 03103600.xhp
+msgctxt ""
+"03103600.xhp\n"
+"par_id3145171\n"
+"help.text"
+msgid "Keyword"
+msgstr ""
+
+#. EAezL
+#: 03103600.xhp
+msgctxt ""
+"03103600.xhp\n"
+"par_id051620170608269696\n"
+"help.text"
+msgid "Named constant"
+msgstr ""
+
+#. ZyZMD
+#: 03103600.xhp
+msgctxt ""
+"03103600.xhp\n"
+"par_id3154684\n"
+"help.text"
+msgid "Variable type"
+msgstr ""
+
+#. mnCBU
+#: 03103600.xhp
+msgctxt ""
+"03103600.xhp\n"
+"par_id3148645\n"
+"help.text"
+msgid "Boolean variable"
+msgstr ""
+
+#. zrorE
+#: 03103600.xhp
+msgctxt ""
+"03103600.xhp\n"
+"par_id3158645\n"
+"help.text"
+msgid "Byte variable"
+msgstr ""
+
+#. N3udA
+#: 03103600.xhp
+msgctxt ""
+"03103600.xhp\n"
+"par_id3155411\n"
+"help.text"
+msgid "Date variable"
+msgstr ""
+
+#. sURKS
+#: 03103600.xhp
+msgctxt ""
+"03103600.xhp\n"
+"par_id051620170608331416\n"
+"help.text"
+msgid "Currency variable"
+msgstr ""
+
+#. apDFH
+#: 03103600.xhp
+msgctxt ""
+"03103600.xhp\n"
+"par_id3148616\n"
+"help.text"
+msgid "Double floating point variable"
+msgstr ""
+
+#. HFQw3
+#: 03103600.xhp
+msgctxt ""
+"03103600.xhp\n"
+"par_id3154490\n"
+"help.text"
+msgid "Integer variable"
+msgstr ""
+
+#. xmmiG
+#: 03103600.xhp
+msgctxt ""
+"03103600.xhp\n"
+"par_id3151318\n"
+"help.text"
+msgid "Long integer variable"
+msgstr ""
+
+#. eTjZ4
+#: 03103600.xhp
+msgctxt ""
+"03103600.xhp\n"
+"par_id3150323\n"
+"help.text"
+msgid "Object variable"
+msgstr ""
+
+#. RgjsX
+#: 03103600.xhp
+msgctxt ""
+"03103600.xhp\n"
+"par_id3147341\n"
+"help.text"
+msgid "Single floating-point variable"
+msgstr ""
+
+#. KE9UZ
+#: 03103600.xhp
+msgctxt ""
+"03103600.xhp\n"
+"par_id3146313\n"
+"help.text"
+msgid "String variable"
+msgstr ""
+
+#. RdLyA
+#: 03103600.xhp
+msgctxt ""
+"03103600.xhp\n"
+"par_id3145789\n"
+"help.text"
+msgid "Variant variable (can contain all types specified by the definition)"
+msgstr ""
+
+#. eDUmG
+#: 03103600.xhp
+msgctxt ""
+"03103600.xhp\n"
+"par_id3151278\n"
+"help.text"
+msgid "Variable is not initialized"
+msgstr ""
+
+#. CLAF9
+#: 03103600.xhp
+msgctxt ""
+"03103600.xhp\n"
+"par_id3145131\n"
+"help.text"
+msgid "No valid data"
+msgstr ""
+
+#. qxhYF
+#: 03103600.xhp
+msgctxt ""
+"03103600.xhp\n"
+"par_id3148817\n"
+"help.text"
+msgid "TypeName(lVar) & \" \" & VarType(lVar),0,\"Some types In $[officename] Basic\""
+msgstr ""
+
+#. pGEmQ
+#: 03103700.xhp
+msgctxt ""
+"03103700.xhp\n"
+"tit\n"
+"help.text"
+msgid "Set Statement"
+msgstr ""
+
+#. zHGh5
+#: 03103700.xhp
+msgctxt ""
+"03103700.xhp\n"
+"bm_id3154422\n"
+"help.text"
+msgid "<bookmark_value>Set statement</bookmark_value> <bookmark_value>Nothing object</bookmark_value>"
+msgstr ""
+
+#. MT9CF
+#: 03103700.xhp
+msgctxt ""
+"03103700.xhp\n"
+"hd_id3154422\n"
+"help.text"
+msgid "<variable id=\"Set_h1\"><link href=\"text/sbasic/shared/03103700.xhp\" name=\"Set Statement\">Set Statement</link></variable>"
+msgstr ""
+
+#. qNuUW
+#: 03103700.xhp
+msgctxt ""
+"03103700.xhp\n"
+"par_id3159149\n"
+"help.text"
+msgid "Sets an object reference on a variable."
+msgstr ""
+
+#. DiSYW
+#: 03103700.xhp
+msgctxt ""
+"03103700.xhp\n"
+"par_id491585753339474\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sbasic/LetSet_statement.svg\" id=\"img_id4156306484514\"><alt id=\"alt_id15152796484514\">Set Statement diagram</alt></image>"
+msgstr ""
+
+#. QfXmo
+#: 03103700.xhp
+msgctxt ""
+"03103700.xhp\n"
+"par_id3154217\n"
+"help.text"
+msgid "[Set] variable = [New] object"
+msgstr ""
+
+#. K6c5D
+#: 03103700.xhp
+msgctxt ""
+"03103700.xhp\n"
+"par_id3156281\n"
+"help.text"
+msgid "<emph>variable:</emph> a variable or a property that requires an object reference."
+msgstr ""
+
+#. 49Jii
+#: 03103700.xhp
+msgctxt ""
+"03103700.xhp\n"
+"par_id211588241663649\n"
+"help.text"
+msgid "<emph>expression: </emph> A computable combination of terms such as a formula or an object property or method."
+msgstr ""
+
+#. kSZDp
+#: 03103700.xhp
+msgctxt ""
+"03103700.xhp\n"
+"par_id3159252\n"
+"help.text"
+msgid "<emph>object:</emph> Object that the variable refers to."
+msgstr ""
+
+#. ihHpq
+#: 03103700.xhp
+msgctxt ""
+"03103700.xhp\n"
+"par_idN10623\n"
+"help.text"
+msgid "<literal>Nothing</literal> - Assign <literal>Nothing</literal> to a variable to remove a previous assignment."
+msgstr ""
+
+#. 4WqJK
+#: 03103700.xhp
+msgctxt ""
+"03103700.xhp\n"
+"par_id101586014505785\n"
+"help.text"
+msgid "<literal>Set</literal> keyword is optional. <literal>Nothing</literal> is the default value for objects."
+msgstr ""
+
+#. GhsMS
+#: 03103700.xhp
+msgctxt ""
+"03103700.xhp\n"
+"par_id841586014507226\n"
+"help.text"
+msgid "<literal>New</literal> creates UNO objects or <link href=\"text/sbasic/shared/classmodule\" name=\"ClassModule\">class module</link> objects, before assigning it to a variable."
+msgstr ""
+
+#. ukqdX
+#: 03103800.xhp
+msgctxt ""
+"03103800.xhp\n"
+"tit\n"
+"help.text"
+msgid "FindObject Function"
+msgstr ""
+
+#. r2C9F
+#: 03103800.xhp
+msgctxt ""
+"03103800.xhp\n"
+"bm_id3145136\n"
+"help.text"
+msgid "<bookmark_value>FindObject function</bookmark_value>"
+msgstr ""
+
+#. DrvAD
+#: 03103800.xhp
+msgctxt ""
+"03103800.xhp\n"
+"hd_id3145136\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03103800.xhp\" name=\"FindObject Function\">FindObject Function</link>"
+msgstr ""
+
+#. aFznu
+#: 03103800.xhp
+msgctxt ""
+"03103800.xhp\n"
+"par_id3155341\n"
+"help.text"
+msgid "Enables an object to be addressed at run-time as a string parameter through the object name."
+msgstr ""
+
+#. AwGGE
+#: 03103800.xhp
+msgctxt ""
+"03103800.xhp\n"
+"par_id3150669\n"
+"help.text"
+msgid "For example, the following command:"
+msgstr ""
+
+#. kpkYS
+#: 03103800.xhp
+msgctxt ""
+"03103800.xhp\n"
+"par_id3156023\n"
+"help.text"
+msgid "corresponds to the command block:"
+msgstr ""
+
+#. PsuoC
+#: 03103800.xhp
+msgctxt ""
+"03103800.xhp\n"
+"par_id3145420\n"
+"help.text"
+msgid "This allows names to be dynamically created at run-time. For example:"
+msgstr ""
+
+#. 4ZJCt
+#: 03103800.xhp
+msgctxt ""
+"03103800.xhp\n"
+"par_id3153104\n"
+"help.text"
+msgid "\"TextEdit1\" to \"TextEdit5\" in a loop to create five control names."
+msgstr ""
+
+#. i7KFL
+#: 03103800.xhp
+msgctxt ""
+"03103800.xhp\n"
+"par_id3150767\n"
+"help.text"
+msgid "See also: <link href=\"text/sbasic/shared/03103900.xhp\" name=\"FindPropertyObject\">FindPropertyObject</link>"
+msgstr ""
+
+#. 9UEzR
+#: 03103800.xhp
+msgctxt ""
+"03103800.xhp\n"
+"hd_id3150868\n"
+"help.text"
+msgid "Syntax:"
+msgstr ""
+
+#. jEKpx
+#: 03103800.xhp
+msgctxt ""
+"03103800.xhp\n"
+"hd_id3159254\n"
+"help.text"
+msgid "Parameters:"
+msgstr ""
+
+#. fAtEE
+#: 03103800.xhp
+msgctxt ""
+"03103800.xhp\n"
+"par_id3150439\n"
+"help.text"
+msgid "<emph>ObjName: </emph>String that specifies the name of the object that you want to address at run-time."
+msgstr ""
+
+#. c9RFy
+#: 03103900.xhp
+msgctxt ""
+"03103900.xhp\n"
+"tit\n"
+"help.text"
+msgid "FindPropertyObject Function"
+msgstr ""
+
+#. qwv2z
+#: 03103900.xhp
+msgctxt ""
+"03103900.xhp\n"
+"bm_id3146958\n"
+"help.text"
+msgid "<bookmark_value>FindPropertyObject function</bookmark_value>"
+msgstr ""
+
+#. LA7R9
+#: 03103900.xhp
+msgctxt ""
+"03103900.xhp\n"
+"hd_id3146958\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03103900.xhp\" name=\"FindPropertyObject Function\">FindPropertyObject Function</link>"
+msgstr ""
+
+#. pkBYN
+#: 03103900.xhp
+msgctxt ""
+"03103900.xhp\n"
+"par_id3154285\n"
+"help.text"
+msgid "Enables objects to be addressed at run-time as a string parameter using the object name."
+msgstr ""
+
+#. DM2Ab
+#: 03103900.xhp
+msgctxt ""
+"03103900.xhp\n"
+"par_id3150868\n"
+"help.text"
+msgid "See also: <link href=\"text/sbasic/shared/03103800.xhp\" name=\"FindObject\">FindObject</link>"
+msgstr ""
+
+#. jBFme
+#: 03103900.xhp
+msgctxt ""
+"03103900.xhp\n"
+"hd_id3147287\n"
+"help.text"
+msgid "Syntax:"
+msgstr ""
+
+#. kjHF2
+#: 03103900.xhp
+msgctxt ""
+"03103900.xhp\n"
+"hd_id3150012\n"
+"help.text"
+msgid "Parameters:"
+msgstr ""
+
+#. Cgx9H
+#: 03103900.xhp
+msgctxt ""
+"03103900.xhp\n"
+"par_id3109839\n"
+"help.text"
+msgid "<emph>ObjVar:</emph> Object variable that you want to dynamically define at run-time."
+msgstr ""
+
+#. Kdp3F
+#: 03103900.xhp
+msgctxt ""
+"03103900.xhp\n"
+"par_id3153363\n"
+"help.text"
+msgid "<emph>PropName:</emph> String that specifies the name of the property that you want to address at run-time."
+msgstr ""
+
+#. sZzss
+#: 03104000.xhp
+msgctxt ""
+"03104000.xhp\n"
+"tit\n"
+"help.text"
+msgid "IsMissing function"
+msgstr ""
+
+#. tu8au
+#: 03104000.xhp
+msgctxt ""
+"03104000.xhp\n"
+"bm_id3153527\n"
+"help.text"
+msgid "<bookmark_value>IsMissing function</bookmark_value>"
+msgstr ""
+
+#. JBWGn
+#: 03104000.xhp
+msgctxt ""
+"03104000.xhp\n"
+"hd_id3153527\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03104000.xhp\" name=\"IsMissing Function\">IsMissing Function</link>"
+msgstr ""
+
+#. ZMKxG
+#: 03104000.xhp
+msgctxt ""
+"03104000.xhp\n"
+"par_id3153825\n"
+"help.text"
+msgid "Tests if a function is called with an optional parameter."
+msgstr ""
+
+#. UAMEd
+#: 03104000.xhp
+msgctxt ""
+"03104000.xhp\n"
+"par_id3150669\n"
+"help.text"
+msgid "See also: <link href=\"text/sbasic/shared/03104100.xhp\" name=\"Optional\">Optional</link>"
+msgstr ""
+
+#. fdBus
+#: 03104000.xhp
+msgctxt ""
+"03104000.xhp\n"
+"hd_id3145611\n"
+"help.text"
+msgid "Syntax:"
+msgstr ""
+
+#. pFAeP
+#: 03104000.xhp
+msgctxt ""
+"03104000.xhp\n"
+"par_id3154924\n"
+"help.text"
+msgid "IsMissing( ArgumentName )"
+msgstr ""
+
+#. WrCGJ
+#: 03104000.xhp
+msgctxt ""
+"03104000.xhp\n"
+"hd_id3145069\n"
+"help.text"
+msgid "Parameters:"
+msgstr ""
+
+#. VwWXm
+#: 03104000.xhp
+msgctxt ""
+"03104000.xhp\n"
+"par_id3149457\n"
+"help.text"
+msgid "<emph>ArgumentName:</emph> the name of an optional argument."
+msgstr ""
+
+#. HkfCE
+#: 03104000.xhp
+msgctxt ""
+"03104000.xhp\n"
+"par_id3150398\n"
+"help.text"
+msgid "If the IsMissing function is called by the ArgumentName, then True is returned."
+msgstr ""
+
+#. 6SiYx
+#: 03104000.xhp
+msgctxt ""
+"03104000.xhp\n"
+"par_id3148798\n"
+"help.text"
+msgid "See also <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Examples\">Examples</link>."
+msgstr ""
+
+#. bdNXC
+#: 03104100.xhp
+msgctxt ""
+"03104100.xhp\n"
+"tit\n"
+"help.text"
+msgid "Optional (in Function Statement)"
+msgstr ""
+
+#. rguKi
+#: 03104100.xhp
+msgctxt ""
+"03104100.xhp\n"
+"bm_id3149205\n"
+"help.text"
+msgid "<bookmark_value>Optional function</bookmark_value>"
+msgstr ""
+
+#. qAzL8
+#: 03104100.xhp
+msgctxt ""
+"03104100.xhp\n"
+"hd_id3149205\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03104100.xhp\" name=\"Optional (in Function Statement)\">Optional (in Function Statement)</link>"
+msgstr ""
+
+#. Ebzjt
+#: 03104100.xhp
+msgctxt ""
+"03104100.xhp\n"
+"par_id3143267\n"
+"help.text"
+msgid "Allows you to define parameters that are passed to a function as optional."
+msgstr ""
+
+#. okfFX
+#: 03104100.xhp
+msgctxt ""
+"03104100.xhp\n"
+"par_id3155419\n"
+"help.text"
+msgid "See also: <link href=\"text/sbasic/shared/03104000.xhp\" name=\"IsMissing\">IsMissing</link>"
+msgstr ""
+
+#. rCRu8
+#: 03104100.xhp
+msgctxt ""
+"03104100.xhp\n"
+"hd_id3153824\n"
+"help.text"
+msgid "Syntax:"
+msgstr ""
+
+#. FCbGu
+#: 03104100.xhp
+msgctxt ""
+"03104100.xhp\n"
+"par_id3159157\n"
+"help.text"
+msgid "Function MyFunction(Text1 As String, Optional Arg2, Optional Arg3)"
+msgstr ""
+
+#. m7ttM
+#: 03104100.xhp
+msgctxt ""
+"03104100.xhp\n"
+"hd_id3145610\n"
+"help.text"
+msgid "Examples:"
+msgstr ""
+
+#. PWFN7
+#: 03104100.xhp
+msgctxt ""
+"03104100.xhp\n"
+"par_id3154347\n"
+"help.text"
+msgid "Result = MyFunction(\"Here\", 1, \"There\") ' all arguments are passed."
+msgstr ""
+
+#. QD4Cn
+#: 03104100.xhp
+msgctxt ""
+"03104100.xhp\n"
+"par_id3146795\n"
+"help.text"
+msgid "Result = MyFunction(\"Test\", ,1) ' second argument is missing."
+msgstr ""
+
+#. upgxF
+#: 03104100.xhp
+msgctxt ""
+"03104100.xhp\n"
+"par_id3153897\n"
+"help.text"
+msgid "See also <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Examples\">Examples</link>."
+msgstr ""
+
+#. HDj6B
+#: 03104200.xhp
+msgctxt ""
+"03104200.xhp\n"
+"tit\n"
+"help.text"
+msgid "Array Function"
+msgstr ""
+
+#. Bsxhh
+#: 03104200.xhp
+msgctxt ""
+"03104200.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>Array function</bookmark_value>"
+msgstr ""
+
+#. vj7XR
+#: 03104200.xhp
+msgctxt ""
+"03104200.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<variable id=\"Array_h1\"><link href=\"text/sbasic/shared/03104200.xhp\" name=\"Array Function\">Array Function</link></variable>"
+msgstr ""
+
+#. ZFAuc
+#: 03104200.xhp
+msgctxt ""
+"03104200.xhp\n"
+"par_id3155555\n"
+"help.text"
+msgid "Returns the type Variant with a data field."
+msgstr ""
+
+#. XYnnC
+#: 03104200.xhp
+msgctxt ""
+"03104200.xhp\n"
+"par_id3153126\n"
+"help.text"
+msgid "Array (ArgumentList)"
+msgstr ""
+
+#. EuCLG
+#: 03104200.xhp
+msgctxt ""
+"03104200.xhp\n"
+"par_id3155419\n"
+"help.text"
+msgid "See also <link href=\"text/sbasic/shared/03104300.xhp\" name=\"DimArray\">DimArray</link>"
+msgstr ""
+
+#. VXL3Y
+#: 03104200.xhp
+msgctxt ""
+"03104200.xhp\n"
+"par_id3145609\n"
+"help.text"
+msgid "<emph>ArgumentList:</emph> A list of any number of arguments that are separated by commas."
+msgstr ""
+
+#. 2d2eF
+#: 03104300.xhp
+msgctxt ""
+"03104300.xhp\n"
+"tit\n"
+"help.text"
+msgid "DimArray Function"
+msgstr ""
+
+#. B6keS
+#: 03104300.xhp
+msgctxt ""
+"03104300.xhp\n"
+"bm_id3150616\n"
+"help.text"
+msgid "<bookmark_value>DimArray function</bookmark_value>"
+msgstr ""
+
+#. FTJ3A
+#: 03104300.xhp
+msgctxt ""
+"03104300.xhp\n"
+"hd_id3150616\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03104300.xhp\" name=\"DimArray Function\">DimArray Function</link>"
+msgstr ""
+
+#. D6knK
+#: 03104300.xhp
+msgctxt ""
+"03104300.xhp\n"
+"par_id3153527\n"
+"help.text"
+msgid "Returns a Variant array."
+msgstr ""
+
+#. GGtGG
+#: 03104300.xhp
+msgctxt ""
+"03104300.xhp\n"
+"hd_id3149762\n"
+"help.text"
+msgid "Syntax:"
+msgstr ""
+
+#. D2Tbd
+#: 03104300.xhp
+msgctxt ""
+"03104300.xhp\n"
+"par_id3148473\n"
+"help.text"
+msgid "DimArray (ArgumentList)"
+msgstr ""
+
+#. xfuoC
+#: 03104300.xhp
+msgctxt ""
+"03104300.xhp\n"
+"par_id3154142\n"
+"help.text"
+msgid "See also <link href=\"text/sbasic/shared/03104200.xhp\" name=\"Array\">Array</link>"
+msgstr ""
+
+#. ajAXE
+#: 03104300.xhp
+msgctxt ""
+"03104300.xhp\n"
+"par_id3156023\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 ""
+
+#. tdpVu
+#: 03104300.xhp
+msgctxt ""
+"03104300.xhp\n"
+"hd_id3154760\n"
+"help.text"
+msgid "Parameters:"
+msgstr ""
+
+#. B7CBa
+#: 03104300.xhp
+msgctxt ""
+"03104300.xhp\n"
+"par_id3159414\n"
+"help.text"
+msgid "<emph>ArgumentList:</emph> A list of any number of arguments that are separated by commas."
+msgstr ""
+
+#. wCCAj
+#: 03104300.xhp
+msgctxt ""
+"03104300.xhp\n"
+"hd_id3150358\n"
+"help.text"
+msgid "Example:"
+msgstr ""
+
+#. 6rCE8
+#: 03104300.xhp
+msgctxt ""
+"03104300.xhp\n"
+"par_id3154939\n"
+"help.text"
+msgid "a = DimArray( 2, 2, 4 ) ' is the same as DIM a( 2, 2, 4 )"
+msgstr ""
+
+#. BELEW
+#: 03104400.xhp
+msgctxt ""
+"03104400.xhp\n"
+"tit\n"
+"help.text"
+msgid "HasUnoInterfaces Function"
+msgstr ""
+
+#. AbBSu
+#: 03104400.xhp
+msgctxt ""
+"03104400.xhp\n"
+"bm_id3149987\n"
+"help.text"
+msgid "<bookmark_value>HasUnoInterfaces function</bookmark_value>"
+msgstr ""
+
+#. pqAXW
+#: 03104400.xhp
+msgctxt ""
+"03104400.xhp\n"
+"hd_id3149987\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03104400.xhp\" name=\"HasUnoInterfaces Function\">HasUnoInterfaces Function</link>"
+msgstr ""
+
+#. JUPxm
+#: 03104400.xhp
+msgctxt ""
+"03104400.xhp\n"
+"par_id3151262\n"
+"help.text"
+msgid "Tests if a Basic Uno object supports certain Uno interfaces."
+msgstr ""
+
+#. 4GC46
+#: 03104400.xhp
+msgctxt ""
+"03104400.xhp\n"
+"par_id3154232\n"
+"help.text"
+msgid "Returns True, if <emph>all</emph> stated Uno interfaces are supported, otherwise False is returned."
+msgstr ""
+
+#. ryDXE
+#: 03104400.xhp
+msgctxt ""
+"03104400.xhp\n"
+"par_id3155555\n"
+"help.text"
+msgid "HasUnoInterfaces( oTest, Uno-Interface-Name 1 [, Uno-Interface-Name 2, ...])"
+msgstr ""
+
+#. qxagP
+#: 03104400.xhp
+msgctxt ""
+"03104400.xhp\n"
+"par_id3155419\n"
+"help.text"
+msgid "<emph>oTest:</emph> the Basic Uno object that you want to test."
+msgstr ""
+
+#. 2Sa2D
+#: 03104400.xhp
+msgctxt ""
+"03104400.xhp\n"
+"par_id3149236\n"
+"help.text"
+msgid "<emph>Uno-Interface-Name:</emph> list of Uno interface names."
+msgstr ""
+
+#. dEwqh
+#: 03104500.xhp
+msgctxt ""
+"03104500.xhp\n"
+"tit\n"
+"help.text"
+msgid "IsUnoStruct Function"
+msgstr ""
+
+#. DGTmf
+#: 03104500.xhp
+msgctxt ""
+"03104500.xhp\n"
+"bm_id3146117\n"
+"help.text"
+msgid "<bookmark_value>IsUnoStruct function</bookmark_value>"
+msgstr ""
+
+#. myocU
+#: 03104500.xhp
+msgctxt ""
+"03104500.xhp\n"
+"hd_id3146117\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03104500.xhp\" name=\"IsUnoStruct Function\">IsUnoStruct Function</link>"
+msgstr ""
+
+#. fN4db
+#: 03104500.xhp
+msgctxt ""
+"03104500.xhp\n"
+"par_id3146957\n"
+"help.text"
+msgid "Returns True if the given object is a Uno struct."
+msgstr ""
+
+#. LupP4
+#: 03104500.xhp
+msgctxt ""
+"03104500.xhp\n"
+"par_id3155341\n"
+"help.text"
+msgid "IsUnoStruct( Uno type )"
+msgstr ""
+
+#. uXjgH
+#: 03104500.xhp
+msgctxt ""
+"03104500.xhp\n"
+"par_id3148947\n"
+"help.text"
+msgid "Uno type : A UnoObject"
+msgstr ""
+
+#. AsDnS
+#: 03104500.xhp
+msgctxt ""
+"03104500.xhp\n"
+"par_idN10638\n"
+"help.text"
+msgid "' Instantiate a service"
+msgstr ""
+
+#. LCwgD
+#: 03104500.xhp
+msgctxt ""
+"03104500.xhp\n"
+"par_idN10644\n"
+"help.text"
+msgid "MsgBox bIsStruct ' Displays False because oSimpleFileAccess Is NO struct"
+msgstr ""
+
+#. LG9EY
+#: 03104500.xhp
+msgctxt ""
+"03104500.xhp\n"
+"par_idN10649\n"
+"help.text"
+msgid "' Instantiate a Property struct"
+msgstr ""
+
+#. oAzvu
+#: 03104500.xhp
+msgctxt ""
+"03104500.xhp\n"
+"par_idN10653\n"
+"help.text"
+msgid "MsgBox bIsStruct ' Displays True because aProperty is a struct"
+msgstr ""
+
+#. yJT9o
+#: 03104500.xhp
+msgctxt ""
+"03104500.xhp\n"
+"par_idN1065B\n"
+"help.text"
+msgid "MsgBox bIsStruct ' Displays False because 42 is NO struct"
+msgstr ""
+
+#. dBKzM
+#: 03104600.xhp
+msgctxt ""
+"03104600.xhp\n"
+"tit\n"
+"help.text"
+msgid "EqualUnoObjects Function"
+msgstr ""
+
+#. h9UNU
+#: 03104600.xhp
+msgctxt ""
+"03104600.xhp\n"
+"bm_id3149205\n"
+"help.text"
+msgid "<bookmark_value>EqualUnoObjects function</bookmark_value>"
+msgstr ""
+
+#. DxBM3
+#: 03104600.xhp
+msgctxt ""
+"03104600.xhp\n"
+"hd_id791633472607429\n"
+"help.text"
+msgid "<variable id=\"EqualUnoObjects_h1\"><link href=\"text/sbasic/shared/03104600.xhp\" name=\"EqualUnoObjects Function\">EqualUnoObjects Function</link></variable>"
+msgstr ""
+
+#. Gc4cj
+#: 03104600.xhp
+msgctxt ""
+"03104600.xhp\n"
+"par_id3145090\n"
+"help.text"
+msgid "Returns <emph>True</emph> if the two specified Basic variables represent the same Uno object instance."
+msgstr ""
+
+#. 9Zx4W
+#: 03104600.xhp
+msgctxt ""
+"03104600.xhp\n"
+"par_id61633530293311\n"
+"help.text"
+msgid "<emph>oObj1, oObj2:</emph> the variables to be tested."
+msgstr ""
+
+#. NqNdq
+#: 03104600.xhp
+msgctxt ""
+"03104600.xhp\n"
+"par_id3154285\n"
+"help.text"
+msgid "Bool"
+msgstr ""
+
+#. NvGLb
+#: 03104600.xhp
+msgctxt ""
+"03104600.xhp\n"
+"par_id771633473462939\n"
+"help.text"
+msgid "The example below returns <emph>True</emph> because both <literal>oDoc</literal> and <literal>ThisComponent</literal> are references to the same object:"
+msgstr ""
+
+#. 5QGLx
+#: 03104600.xhp
+msgctxt ""
+"03104600.xhp\n"
+"par_id181633473874216\n"
+"help.text"
+msgid "The example below returns <emph>False</emph> because the assignment creates a copy of the original object. Hence <literal>Struct1</literal> and <literal>Struct2</literal> refer to different object instances."
+msgstr ""
+
+#. hQzux
+#: 03104700.xhp
+msgctxt ""
+"03104700.xhp\n"
+"tit\n"
+"help.text"
+msgid "Erase Statement"
+msgstr ""
+
+#. UwzDN
+#: 03104700.xhp
+msgctxt ""
+"03104700.xhp\n"
+"bm_id624713\n"
+"help.text"
+msgid "<bookmark_value>Erase statement</bookmark_value>"
+msgstr ""
+
+#. W6k5N
+#: 03104700.xhp
+msgctxt ""
+"03104700.xhp\n"
+"par_idN10548\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03104700.xhp\">Erase Statement</link>"
+msgstr ""
+
+#. xqtMK
+#: 03104700.xhp
+msgctxt ""
+"03104700.xhp\n"
+"par_idN10558\n"
+"help.text"
+msgid "Erases the contents of array elements of fixed size arrays, and releases the memory used by arrays of variable size."
+msgstr ""
+
+#. 3sXFq
+#: 03104700.xhp
+msgctxt ""
+"03104700.xhp\n"
+"par_id831588865616326\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sbasic/Erase_statement.svg\" id=\"img_id651588865616326\"><alt id=\"alt_id281588865616326\">Erase syntax</alt></image>"
+msgstr ""
+
+#. CCyg8
+#: 03104700.xhp
+msgctxt ""
+"03104700.xhp\n"
+"par_idN105E6\n"
+"help.text"
+msgid "Erase array1 [, array2 [,...]]"
+msgstr ""
+
+#. 8J4Ab
+#: 03104700.xhp
+msgctxt ""
+"03104700.xhp\n"
+"par_idN105ED\n"
+"help.text"
+msgid "<emph>array list</emph> - A comma delimited list of arrays to be erased."
+msgstr ""
+
+#. FiDAp
+#: 03104700.xhp
+msgctxt ""
+"03104700.xhp\n"
+"bas_id821588866562452\n"
+"help.text"
+msgid "Erase a, c(Ubound(c)) ' b and c(0) are unchanged"
+msgstr ""
+
+#. tYVCK
+#: 03104700.xhp
+msgctxt ""
+"03104700.xhp\n"
+"bas_id701588866563382\n"
+"help.text"
+msgid "Erase b, c(0) ' everything gets cleared"
+msgstr ""
+
+#. LvkX5
+#: 03104700.xhp
+msgctxt ""
+"03104700.xhp\n"
+"par_id161588865796615\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03102100.xhp\" name=\"Dim statement\">Dim</link> or <link href=\"text/sbasic/shared/03102101.xhp\" name=\"ReDim statement\">ReDim</link> statements"
+msgstr ""
+
+#. h7XZF
+#: 03104700.xhp
+msgctxt ""
+"03104700.xhp\n"
+"par_id281588865818334\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03104200.xhp\" name=\"Array function\">Array</link> or <link href=\"text/sbasic/shared/03104300.xhp\" name=\"DimArray function\">DimArray</link> functions"
+msgstr ""
+
+#. FA4C9
+#: 03104700.xhp
+msgctxt ""
+"03104700.xhp\n"
+"par_id761588867124078\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03102900.xhp\" name=\"lower bound function\">Lbound</link> and <link href=\"text/sbasic/shared/03103000.xhp\" name=\"upper bound function\">Ubound</link> functions"
+msgstr ""
+
+#. bDVn8
+#: 03110100.xhp
+msgctxt ""
+"03110100.xhp\n"
+"tit\n"
+"help.text"
+msgid "Comparison Operators"
+msgstr ""
+
+#. 3BDFS
+#: 03110100.xhp
+msgctxt ""
+"03110100.xhp\n"
+"bm_id3150682\n"
+"help.text"
+msgid "<bookmark_value>comparison operators;%PRODUCTNAME Basic</bookmark_value> <bookmark_value>Operators;comparison</bookmark_value> <bookmark_value>Operators;equal sign (=)</bookmark_value> <bookmark_value>Operators;greater than (>)</bookmark_value> <bookmark_value>Operators;greater than or equal to (>=)</bookmark_value> <bookmark_value>Operators;less than (<)</bookmark_value> <bookmark_value>Operators;less than or equal to (<=)</bookmark_value> <bookmark_value>Operators;not equal to (<>)</bookmark_value>"
+msgstr ""
+
+#. k9nDv
+#: 03110100.xhp
+msgctxt ""
+"03110100.xhp\n"
+"hd_id3150682\n"
+"help.text"
+msgid "<variable id=\"CompOper_h1\"><link href=\"text/sbasic/shared/03110100.xhp\" name=\"Comparison Operators\">Comparison Operators</link></variable>"
+msgstr ""
+
+#. vzC53
+#: 03110100.xhp
+msgctxt ""
+"03110100.xhp\n"
+"par_id3156042\n"
+"help.text"
+msgid "Comparison operators compare two expressions. The result is returned as a boolean expression that determines if the comparison is <literal>True</literal> (-1) or <literal>False</literal> (0)."
+msgstr ""
+
+#. ikYGG
+#: 03110100.xhp
+msgctxt ""
+"03110100.xhp\n"
+"par_id3147573\n"
+"help.text"
+msgid "<emph>result</emph>: Boolean that specifies the result of the comparison (<literal>True</literal>, or <literal>False</literal>)"
+msgstr ""
+
+#. GYpPy
+#: 03110100.xhp
+msgctxt ""
+"03110100.xhp\n"
+"par_id3148686\n"
+"help.text"
+msgid "<emph>expression1, expression2</emph>: Any numeric values or strings that you want to compare."
+msgstr ""
+
+#. VeMGA
+#: 03110100.xhp
+msgctxt ""
+"03110100.xhp\n"
+"hd_id3147531\n"
+"help.text"
+msgid "Comparison operators"
+msgstr ""
+
+#. huYj5
+#: 03110100.xhp
+msgctxt ""
+"03110100.xhp\n"
+"par_id3147265\n"
+"help.text"
+msgid "= : Equal to"
+msgstr ""
+
+#. qNCPA
+#: 03110100.xhp
+msgctxt ""
+"03110100.xhp\n"
+"par_id3154924\n"
+"help.text"
+msgid "< : Less than"
+msgstr ""
+
+#. oBq7c
+#: 03110100.xhp
+msgctxt ""
+"03110100.xhp\n"
+"par_id3146795\n"
+"help.text"
+msgid "> : Greater than"
+msgstr ""
+
+#. ZXev6
+#: 03110100.xhp
+msgctxt ""
+"03110100.xhp\n"
+"par_id3150541\n"
+"help.text"
+msgid "<= : Less than or equal to"
+msgstr ""
+
+#. YTiVc
+#: 03110100.xhp
+msgctxt ""
+"03110100.xhp\n"
+"par_id3150400\n"
+"help.text"
+msgid ">= : Greater than or equal to"
+msgstr ""
+
+#. TAeWi
+#: 03110100.xhp
+msgctxt ""
+"03110100.xhp\n"
+"par_id3148797\n"
+"help.text"
+msgid "<> : Not equal to"
+msgstr ""
+
+#. 4F32A
+#: 03110100.xhp
+msgctxt ""
+"03110100.xhp\n"
+"par_id3154909\n"
+"help.text"
+msgid "Dim sRoot As String ' Root directory for file in and output"
+msgstr ""
+
+#. v4zJ2
+#: 03120000.xhp
+msgctxt ""
+"03120000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Strings"
+msgstr ""
+
+#. qSsdJ
+#: 03120000.xhp
+msgctxt ""
+"03120000.xhp\n"
+"hd_id3156153\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03120000.xhp\" name=\"Strings\">Strings</link>"
+msgstr ""
+
+#. mfoZX
+#: 03120000.xhp
+msgctxt ""
+"03120000.xhp\n"
+"par_id3159176\n"
+"help.text"
+msgid "The following functions and statements validate and return strings."
+msgstr ""
+
+#. n7PGd
+#: 03120000.xhp
+msgctxt ""
+"03120000.xhp\n"
+"par_id3154285\n"
+"help.text"
+msgid "You can use strings to edit text within $[officename] Basic programs."
+msgstr ""
+
+#. Bvutt
+#: 03120100.xhp
+msgctxt ""
+"03120100.xhp\n"
+"tit\n"
+"help.text"
+msgid "ASCII/ANSI Conversion in Strings"
+msgstr ""
+
+#. f2kFt
+#: 03120100.xhp
+msgctxt ""
+"03120100.xhp\n"
+"hd_id3147443\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03120100.xhp\" name=\"ASCII/ANSI Conversion in Strings\">ASCII/ANSI Conversion in Strings</link>"
+msgstr ""
+
+#. ZDP63
+#: 03120100.xhp
+msgctxt ""
+"03120100.xhp\n"
+"par_id3159201\n"
+"help.text"
+msgid "The following functions convert strings to and from ASCII or ANSI code."
+msgstr ""
+
+#. izmyr
+#: 03120101.xhp
+msgctxt ""
+"03120101.xhp\n"
+"tit\n"
+"help.text"
+msgid "Asc Function"
+msgstr ""
+
+#. imVb3
+#: 03120101.xhp
+msgctxt ""
+"03120101.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>Asc function</bookmark_value>"
+msgstr ""
+
+#. NmqT7
+#: 03120101.xhp
+msgctxt ""
+"03120101.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<variable id=\"Asc_h1\"><link href=\"text/sbasic/shared/03120101.xhp\" name=\"Asc Function\">Asc Function (BASIC)</link></variable>"
+msgstr ""
+
+#. 8jiwA
+#: 03120101.xhp
+msgctxt ""
+"03120101.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the ASCII (American Standard Code for Information Interchange) value of the first character in a string expression."
+msgstr ""
+
+#. xFKDc
+#: 03120101.xhp
+msgctxt ""
+"03120101.xhp\n"
+"par_id3143267\n"
+"help.text"
+msgid "Asc(string) As Long"
+msgstr ""
+
+#. DZtGt
+#: 03120101.xhp
+msgctxt ""
+"03120101.xhp\n"
+"par_id3149415\n"
+"help.text"
+msgid "<emph>string</emph>: Any valid string expression. Only the first character in the string is relevant."
+msgstr ""
+
+#. CF7UG
+#: 03120101.xhp
+msgctxt ""
+"03120101.xhp\n"
+"par_id3145609\n"
+"help.text"
+msgid "Use the Asc function to replace keys with values. If the Asc function encounters a blank string, $[officename] Basic reports a run-time error. In addition to 7 bit ASCII characters (Codes 0-127), the ASCII function can also detect non-printable key codes in ASCII code. This function can also handle 16 bit unicode characters."
+msgstr ""
+
+#. VF7kK
+#: 03120101.xhp
+msgctxt ""
+"03120101.xhp\n"
+"par_id3150792\n"
+"help.text"
+msgid "Print ASC(\"A\") ' returns 65"
+msgstr ""
+
+#. mntEX
+#: 03120101.xhp
+msgctxt ""
+"03120101.xhp\n"
+"par_id3148797\n"
+"help.text"
+msgid "Print ASC(string:=\"Z\") ' returns 90"
+msgstr ""
+
+#. raPFD
+#: 03120101.xhp
+msgctxt ""
+"03120101.xhp\n"
+"par_id3163800\n"
+"help.text"
+msgid "Print ASC(\"Las Vegas\") ' returns 76, since only the first character is taken into account"
+msgstr ""
+
+#. QMLJb
+#: 03120102.xhp
+msgctxt ""
+"03120102.xhp\n"
+"tit\n"
+"help.text"
+msgid "Chr Function"
+msgstr ""
+
+#. Z8tiz
+#: 03120102.xhp
+msgctxt ""
+"03120102.xhp\n"
+"bm_id3149205\n"
+"help.text"
+msgid "<bookmark_value>Chr function</bookmark_value>"
+msgstr ""
+
+#. vBnDE
+#: 03120102.xhp
+msgctxt ""
+"03120102.xhp\n"
+"hd_id3149205\n"
+"help.text"
+msgid "<variable id=\"Chr_h1\"><link href=\"text/sbasic/shared/03120102.xhp\" name=\"Chr Function\">Chr Function</link></variable>"
+msgstr ""
+
+#. UTy3n
+#: 03120102.xhp
+msgctxt ""
+"03120102.xhp\n"
+"par_id3153311\n"
+"help.text"
+msgid "Returns the character that corresponds to the specified character code."
+msgstr ""
+
+#. Q8gEU
+#: 03120102.xhp
+msgctxt ""
+"03120102.xhp\n"
+"bas_id91642668171601\n"
+"help.text"
+msgid "Chr[$](charcode As Integer) As String"
+msgstr ""
+
+#. 6bDTr
+#: 03120102.xhp
+msgctxt ""
+"03120102.xhp\n"
+"par_id3149295\n"
+"help.text"
+msgid "<emph>charcode</emph>: a numeric expression that represents a valid 8-bit ASCII value (0-255) or a 16-bit Unicode value. (To support expressions with a nominally negative argument like <emph>Chr(&H8000)</emph> in a backwards-compatible way, values in the range −32768 to −1 are internally mapped to the range 32768 to 65535.)"
+msgstr ""
+
+#. Xyjgr
+#: 03120102.xhp
+msgctxt ""
+"03120102.xhp\n"
+"par_id991552913928635\n"
+"help.text"
+msgid "When VBA compatibility mode is enabled (<link href=\"text/sbasic/shared/03103350.xhp\" name=\"vbasupport\"><literal>Option VBASupport 1</literal></link>), <literal>charcode</literal> is a numeric expression that represents a valid 8-bit ASCII value (0-255) only."
+msgstr ""
+
+#. sw8rF
+#: 03120102.xhp
+msgctxt ""
+"03120102.xhp\n"
+"par_id3159414\n"
+"help.text"
+msgid "Use the <emph>Chr$</emph> function to send special control sequences to a printer or to another output source. You can also use it to insert quotation marks in a string expression."
+msgstr ""
+
+#. 36Hj5
+#: 03120102.xhp
+msgctxt ""
+"03120102.xhp\n"
+"par_id81634652871848\n"
+"help.text"
+msgid "An overflow error will occur when VBA compatibility mode is enabled and the expression value is greater than 255."
+msgstr ""
+
+#. vHwsG
+#: 03120102.xhp
+msgctxt ""
+"03120102.xhp\n"
+"par_id3154909\n"
+"help.text"
+msgid "' This example inserts quotation marks (ASCII value 34) in a string."
+msgstr ""
+
+#. rTCjE
+#: 03120102.xhp
+msgctxt ""
+"03120102.xhp\n"
+"par_id3151380\n"
+"help.text"
+msgid "MsgBox \"A \" + Chr$(34) + \"short\" + Chr(34) + \" trip.\""
+msgstr ""
+
+#. iCsGw
+#: 03120102.xhp
+msgctxt ""
+"03120102.xhp\n"
+"par_id3145174\n"
+"help.text"
+msgid "' The printout appears in the dialog as: A \"short\" trip."
+msgstr ""
+
+#. TeaSB
+#: 03120102.xhp
+msgctxt ""
+"03120102.xhp\n"
+"bas_id481642668824226\n"
+"help.text"
+msgid "MsgBox Chr(charcode := 64) ' \"@\" sign"
+msgstr ""
+
+#. bzZDz
+#: 03120103.xhp
+msgctxt ""
+"03120103.xhp\n"
+"tit\n"
+"help.text"
+msgid "Str Function"
+msgstr ""
+
+#. pGDVm
+#: 03120103.xhp
+msgctxt ""
+"03120103.xhp\n"
+"bm_id3143272\n"
+"help.text"
+msgid "<bookmark_value>Str function</bookmark_value>"
+msgstr ""
+
+#. 29Gzu
+#: 03120103.xhp
+msgctxt ""
+"03120103.xhp\n"
+"hd_id3143272\n"
+"help.text"
+msgid "<variable id=\"Str_h1\"><link href=\"text/sbasic/shared/03120103.xhp\" name=\"Str Function\">Str Function</link></variable>"
+msgstr ""
+
+#. Z8JfH
+#: 03120103.xhp
+msgctxt ""
+"03120103.xhp\n"
+"par_id3155100\n"
+"help.text"
+msgid "The <literal>Str</literal> function converts the contents of variables into a string. It handles numeric values, dates, strings and currency values."
+msgstr ""
+
+#. Zxy4r
+#: 03120103.xhp
+msgctxt ""
+"03120103.xhp\n"
+"par_id3146958\n"
+"help.text"
+msgid "Positive numbers are preceded by a blank space. Negative numbers are preceded by a minus sign."
+msgstr ""
+
+#. A5Fyi
+#: 03120103.xhp
+msgctxt ""
+"03120103.xhp\n"
+"par_id331641237252390\n"
+"help.text"
+msgid "For numeric values the string returned by the <literal>Str</literal> function is locale-independent. Hence the dot is used as the decimal separator when needed."
+msgstr ""
+
+#. HjAty
+#: 03120103.xhp
+msgctxt ""
+"03120103.xhp\n"
+"par_id601641237849695\n"
+"help.text"
+msgid "If a string is passed as argument, it is returned without any changes."
+msgstr ""
+
+#. nfPG2
+#: 03120103.xhp
+msgctxt ""
+"03120103.xhp\n"
+"par_id231641251937406\n"
+"help.text"
+msgid "Dates are converted into locale-dependent strings."
+msgstr ""
+
+#. NEAum
+#: 03120103.xhp
+msgctxt ""
+"03120103.xhp\n"
+"par_id3149497\n"
+"help.text"
+msgid "Str (Value As Variant)"
+msgstr ""
+
+#. BPCDW
+#: 03120103.xhp
+msgctxt ""
+"03120103.xhp\n"
+"par_id3149178\n"
+"help.text"
+msgid "<emph>Value:</emph> Any value to be converted into a string."
+msgstr ""
+
+#. hHwSa
+#: 03120103.xhp
+msgctxt ""
+"03120103.xhp\n"
+"par_id401641251970766\n"
+"help.text"
+msgid "Below are some numeric examples using the <literal>Str</literal> function."
+msgstr ""
+
+#. viBgo
+#: 03120103.xhp
+msgctxt ""
+"03120103.xhp\n"
+"bas_id831641238784987\n"
+"help.text"
+msgid "' Note the blank space at the beginning of the returned strings"
+msgstr ""
+
+#. A8Cbc
+#: 03120103.xhp
+msgctxt ""
+"03120103.xhp\n"
+"bas_id991641238830710\n"
+"help.text"
+msgid "' Strings passed as arguments are left unchanged"
+msgstr ""
+
+#. kjJa8
+#: 03120103.xhp
+msgctxt ""
+"03120103.xhp\n"
+"par_id601641238259787\n"
+"help.text"
+msgid "Use the <literal>LTrim</literal> function to remove the blank space at the beginning of the returned string."
+msgstr ""
+
+#. FDMfX
+#: 03120103.xhp
+msgctxt ""
+"03120103.xhp\n"
+"par_id881641252036753\n"
+"help.text"
+msgid "The <literal>Str</literal> function can also handle <literal>Date</literal> variables."
+msgstr ""
+
+#. vYQmG
+#: 03120104.xhp
+msgctxt ""
+"03120104.xhp\n"
+"tit\n"
+"help.text"
+msgid "Val Function"
+msgstr ""
+
+#. KdnnB
+#: 03120104.xhp
+msgctxt ""
+"03120104.xhp\n"
+"bm_id3149205\n"
+"help.text"
+msgid "<bookmark_value>Val function</bookmark_value>"
+msgstr ""
+
+#. h82YR
+#: 03120104.xhp
+msgctxt ""
+"03120104.xhp\n"
+"hd_id3149205\n"
+"help.text"
+msgid "<variable id=\"Val_h1\"><link href=\"text/sbasic/shared/03120104.xhp\" name=\"Val Function\">Val Function</link></variable>"
+msgstr ""
+
+#. VDZFx
+#: 03120104.xhp
+msgctxt ""
+"03120104.xhp\n"
+"par_id3153345\n"
+"help.text"
+msgid "Use the <literal>Val</literal> function to convert a string that represents a number into numeric data type."
+msgstr ""
+
+#. aQ5EY
+#: 03120104.xhp
+msgctxt ""
+"03120104.xhp\n"
+"par_id281641235880765\n"
+"help.text"
+msgid "The string passed to the <literal>Val</literal> function is locale-independent. This means that commas are interpreted as thousands separators and a dot is used as the decimal separator."
+msgstr ""
+
+#. Rk6u2
+#: 03120104.xhp
+msgctxt ""
+"03120104.xhp\n"
+"par_id3149514\n"
+"help.text"
+msgid "Val (Text As String)"
+msgstr ""
+
+#. Gi4Ag
+#: 03120104.xhp
+msgctxt ""
+"03120104.xhp\n"
+"par_id3143228\n"
+"help.text"
+msgid "Double"
+msgstr ""
+
+#. DmE2F
+#: 03120104.xhp
+msgctxt ""
+"03120104.xhp\n"
+"par_id3154348\n"
+"help.text"
+msgid "<emph>Text:</emph> String that represents a number."
+msgstr ""
+
+#. e9c9u
+#: 03120104.xhp
+msgctxt ""
+"03120104.xhp\n"
+"par_id3149670\n"
+"help.text"
+msgid "If only part of the string contains numbers, only the first appropriate characters of the string are converted. If the string does not contain any numbers then <literal>Val</literal> returns 0."
+msgstr ""
+
+#. JLvDd
+#: 03120104.xhp
+msgctxt ""
+"03120104.xhp\n"
+"bas_id131641236938068\n"
+"help.text"
+msgid "' Below 123,1 is interpreted as 1231 since \",\" is the thousands separator"
+msgstr ""
+
+#. qMAhh
+#: 03120104.xhp
+msgctxt ""
+"03120104.xhp\n"
+"bas_id681641252873197\n"
+"help.text"
+msgid "' All numbers are considered until a non-numeric character is reached"
+msgstr ""
+
+#. i9otK
+#: 03120104.xhp
+msgctxt ""
+"03120104.xhp\n"
+"bas_id911641237027667\n"
+"help.text"
+msgid "' The example below returns 0 (zero) since the string provided does not start with a number"
+msgstr ""
+
+#. MeApW
+#: 03120105.xhp
+msgctxt ""
+"03120105.xhp\n"
+"tit\n"
+"help.text"
+msgid "CByte Function"
+msgstr ""
+
+#. cEvKG
+#: 03120105.xhp
+msgctxt ""
+"03120105.xhp\n"
+"bm_id3156027\n"
+"help.text"
+msgid "<bookmark_value>CByte function</bookmark_value>"
+msgstr ""
+
+#. VkMAp
+#: 03120105.xhp
+msgctxt ""
+"03120105.xhp\n"
+"hd_id3156027\n"
+"help.text"
+msgid "<variable id=\"CByte_h1\"><link href=\"text/sbasic/shared/03120105.xhp\" name=\"CByte Function\">CByte Function</link></variable>"
+msgstr ""
+
+#. qP4eK
+#: 03120105.xhp
+msgctxt ""
+"03120105.xhp\n"
+"par_id3143267\n"
+"help.text"
+msgid "Converts a string or a numeric expression to the <literal>Byte</literal> type."
+msgstr ""
+
+#. 8h2Wu
+#: 03120105.xhp
+msgctxt ""
+"03120105.xhp\n"
+"par_id3147573\n"
+"help.text"
+msgid "Cbyte( expression As Variant) As Byte"
+msgstr ""
+
+#. 4vJi5
+#: 03120105.xhp
+msgctxt ""
+"03120105.xhp\n"
+"par_id3145068\n"
+"help.text"
+msgid "<emph>Expression</emph>: Any string or a numeric expression that can be evaluated to a number. Decimal values are rounded to the nearest tenth. Valid values range from 0 to 256."
+msgstr ""
+
+#. dfezQ
+#: 03120105.xhp
+msgctxt ""
+"03120105.xhp\n"
+"bas_id941637751110886\n"
+"help.text"
+msgid "' Above expressions are computed as 16, 0 and 3"
+msgstr ""
+
+#. svGqi
+#: 03120111.xhp
+msgctxt ""
+"03120111.xhp\n"
+"tit\n"
+"help.text"
+msgid "AscW Function"
+msgstr ""
+
+#. DnhN3
+#: 03120111.xhp
+msgctxt ""
+"03120111.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>AscW function</bookmark_value>"
+msgstr ""
+
+#. 8JuD6
+#: 03120111.xhp
+msgctxt ""
+"03120111.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<variable id=\"AscW_h1\"><link href=\"text/sbasic/shared/03120111.xhp\" name=\"AscW Function [VBA]\">AscW Function [VBA]</link></variable>"
+msgstr ""
+
+#. XujWF
+#: 03120111.xhp
+msgctxt ""
+"03120111.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the Unicode value of the first character in a string expression."
+msgstr ""
+
+#. sEFFg
+#: 03120111.xhp
+msgctxt ""
+"03120111.xhp\n"
+"par_id3149415\n"
+"help.text"
+msgid "<emph>string</emph>: Any valid string expression. Only the first character in the string is relevant."
+msgstr ""
+
+#. PWbGW
+#: 03120111.xhp
+msgctxt ""
+"03120111.xhp\n"
+"par_id3145609\n"
+"help.text"
+msgid "Use the AscW function to replace keys with Unicode values. If the AscW function encounters a blank string, %PRODUCTNAME Basic reports a run-time error. Returned values are between 0 and 65535."
+msgstr ""
+
+#. YACEd
+#: 03120111.xhp
+msgctxt ""
+"03120111.xhp\n"
+"par_id3150792\n"
+"help.text"
+msgid "Print AscW(\"A\") ' returns 65"
+msgstr ""
+
+#. jFJn8
+#: 03120111.xhp
+msgctxt ""
+"03120111.xhp\n"
+"par_id3148797\n"
+"help.text"
+msgid "Print AscW(string:=\"Ω\") ' returns 937"
+msgstr ""
+
+#. KNmoP
+#: 03120111.xhp
+msgctxt ""
+"03120111.xhp\n"
+"par_id3163800\n"
+"help.text"
+msgid "Print AscW(\"Αθήνα\") ' returns 913, since only the first character (Alpha) is taken into account"
+msgstr ""
+
+#. 9DDYF
+#: 03120112.xhp
+msgctxt ""
+"03120112.xhp\n"
+"tit\n"
+"help.text"
+msgid "ChrW Function [VBA]"
+msgstr ""
+
+#. bxumL
+#: 03120112.xhp
+msgctxt ""
+"03120112.xhp\n"
+"bm_id3149205\n"
+"help.text"
+msgid "<bookmark_value>ChrW function</bookmark_value>"
+msgstr ""
+
+#. C6uF5
+#: 03120112.xhp
+msgctxt ""
+"03120112.xhp\n"
+"hd_id3149205\n"
+"help.text"
+msgid "<variable id=\"ChrW_h1\"><link href=\"text/sbasic/shared/03120112.xhp\" name=\"ChrW Function\">ChrW Function [VBA]</link></variable>"
+msgstr ""
+
+#. yFpZL
+#: 03120112.xhp
+msgctxt ""
+"03120112.xhp\n"
+"par_id3153311\n"
+"help.text"
+msgid "Returns the Unicode character that corresponds to the specified character code."
+msgstr ""
+
+#. mA9x6
+#: 03120112.xhp
+msgctxt ""
+"03120112.xhp\n"
+"par_id3153824\n"
+"help.text"
+msgid "String"
+msgstr ""
+
+#. iFApG
+#: 03120112.xhp
+msgctxt ""
+"03120112.xhp\n"
+"par_id3149295\n"
+"help.text"
+msgid "<emph>charcode</emph>: Numeric expression that represent a valid 16 bit Unicode value (0-65535). (To support expressions with a nominally negative argument like <emph>ChrW(&H8000)</emph> in a backwards-compatible way, values in the range −32768 to −1 are internally mapped to the range 32768 to 65535.) An empty value returns error code 5. A value out of the range [0 to 65535] returns error code 6."
+msgstr ""
+
+#. 8DF8a
+#: 03120112.xhp
+msgctxt ""
+"03120112.xhp\n"
+"par_id3154909\n"
+"help.text"
+msgid "' This example inserts the Greek letters alpha and omega in a string."
+msgstr ""
+
+#. ZtgsJ
+#: 03120112.xhp
+msgctxt ""
+"03120112.xhp\n"
+"par_id3151380\n"
+"help.text"
+msgid "MsgBox \"From \" + ChrW(913) + \" to \" + ChrW(937)"
+msgstr ""
+
+#. zPJDa
+#: 03120112.xhp
+msgctxt ""
+"03120112.xhp\n"
+"par_id3145174\n"
+"help.text"
+msgid "' The printout appears in the dialog as: From Α to Ω"
+msgstr ""
+
+#. eE9Nq
+#: 03120112.xhp
+msgctxt ""
+"03120112.xhp\n"
+"bas_id181642669411658\n"
+"help.text"
+msgid "MsgBox ChrW(charcode := 116) ' \"t\" lowercase T letter"
+msgstr ""
+
+#. E7Eoi
+#: 03120200.xhp
+msgctxt ""
+"03120200.xhp\n"
+"tit\n"
+"help.text"
+msgid "Repeating Contents"
+msgstr ""
+
+#. uMuGE
+#: 03120200.xhp
+msgctxt ""
+"03120200.xhp\n"
+"hd_id3152363\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03120200.xhp\" name=\"Repeating Contents\">Repeating Contents</link>"
+msgstr ""
+
+#. QtA2F
+#: 03120200.xhp
+msgctxt ""
+"03120200.xhp\n"
+"par_id3150178\n"
+"help.text"
+msgid "The following functions repeat the contents of strings."
+msgstr ""
+
+#. MingD
+#: 03120201.xhp
+msgctxt ""
+"03120201.xhp\n"
+"tit\n"
+"help.text"
+msgid "Space and Spc Function"
+msgstr ""
+
+#. NQPvB
+#: 03120201.xhp
+msgctxt ""
+"03120201.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>Space function</bookmark_value> <bookmark_value>Spc function</bookmark_value>"
+msgstr ""
+
+#. r9KyV
+#: 03120201.xhp
+msgctxt ""
+"03120201.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03120201.xhp\" name=\"Space Function\">Space and Spc Functions</link>"
+msgstr ""
+
+#. M6CED
+#: 03120201.xhp
+msgctxt ""
+"03120201.xhp\n"
+"par_id3154927\n"
+"help.text"
+msgid "Returns a string that consists of a specified amount of spaces."
+msgstr ""
+
+#. TVSiN
+#: 03120201.xhp
+msgctxt ""
+"03120201.xhp\n"
+"par_id681546202842979\n"
+"help.text"
+msgid "The Spc function works the same as the Space function."
+msgstr ""
+
+#. BYn44
+#: 03120201.xhp
+msgctxt ""
+"03120201.xhp\n"
+"par_id3149233\n"
+"help.text"
+msgid "String"
+msgstr ""
+
+#. nYDuW
+#: 03120201.xhp
+msgctxt ""
+"03120201.xhp\n"
+"par_id3143228\n"
+"help.text"
+msgid "<emph>n:</emph> Numeric expression that defines the number of spaces in the string. The maximum allowed value of <emph>n</emph> is 2,147,483,648."
+msgstr ""
+
+#. xfAcE
+#: 03120201.xhp
+msgctxt ""
+"03120201.xhp\n"
+"par_id3154216\n"
+"help.text"
+msgid "MsgBox sOut,0,\"Info:\""
+msgstr ""
+
+#. ypYT6
+#: 03120202.xhp
+msgctxt ""
+"03120202.xhp\n"
+"tit\n"
+"help.text"
+msgid "String Function"
+msgstr ""
+
+#. 2L9aD
+#: 03120202.xhp
+msgctxt ""
+"03120202.xhp\n"
+"bm_id3147291\n"
+"help.text"
+msgid "<bookmark_value>String function</bookmark_value>"
+msgstr ""
+
+#. C8tf8
+#: 03120202.xhp
+msgctxt ""
+"03120202.xhp\n"
+"hd_id3147291\n"
+"help.text"
+msgid "<variable id=\"String_h1\"><link href=\"text/sbasic/shared/03120202.xhp\" name=\"String Function\">String Function</link></variable>"
+msgstr ""
+
+#. YVCRg
+#: 03120202.xhp
+msgctxt ""
+"03120202.xhp\n"
+"par_id3147242\n"
+"help.text"
+msgid "Creates a string according to the specified character, or the first character of a string expression that is passed to the function."
+msgstr ""
+
+#. EVKUs
+#: 03120202.xhp
+msgctxt ""
+"03120202.xhp\n"
+"par_id3149233\n"
+"help.text"
+msgid "String (n As Long, {expression As Integer | character As String})"
+msgstr ""
+
+#. GfqGg
+#: 03120202.xhp
+msgctxt ""
+"03120202.xhp\n"
+"par_id3147530\n"
+"help.text"
+msgid "String"
+msgstr ""
+
+#. FTqT4
+#: 03120202.xhp
+msgctxt ""
+"03120202.xhp\n"
+"par_id3154347\n"
+"help.text"
+msgid "<emph>n:</emph> Numeric expression that indicates the number of characters to return in the string. The maximum allowed value of n is 2,147,483,648."
+msgstr ""
+
+#. uARjD
+#: 03120202.xhp
+msgctxt ""
+"03120202.xhp\n"
+"par_id3148664\n"
+"help.text"
+msgid "<emph>Expression:</emph> Numeric expression that defines the ASCII code for the character."
+msgstr ""
+
+#. Comfs
+#: 03120202.xhp
+msgctxt ""
+"03120202.xhp\n"
+"par_id3150359\n"
+"help.text"
+msgid "<emph>Character:</emph> Any single character used to build the return string, or any string of which only the first character will be used."
+msgstr ""
+
+#. avFC9
+#: 03120300.xhp
+msgctxt ""
+"03120300.xhp\n"
+"tit\n"
+"help.text"
+msgid "Editing String Contents"
+msgstr ""
+
+#. qvgJA
+#: 03120300.xhp
+msgctxt ""
+"03120300.xhp\n"
+"hd_id3153894\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03120300.xhp\" name=\"Editing String Contents\">Editing String Contents</link>"
+msgstr ""
+
+#. pHEcz
+#: 03120300.xhp
+msgctxt ""
+"03120300.xhp\n"
+"par_id3149178\n"
+"help.text"
+msgid "The following functions edit, format, and align the contents of strings. Use the <literal>&</literal> or <literal>+</literal> operators to concatenate strings."
+msgstr ""
+
+#. PG2TT
+#: 03120300.xhp
+msgctxt ""
+"03120300.xhp\n"
+"bm_id3150669\n"
+"help.text"
+msgid "<bookmark_value>ampersand symbol; in string handling</bookmark_value> <bookmark_value>Operators;concatenation (& or +)</bookmark_value> <bookmark_value>\"& or +\" concatenation (strings)</bookmark_value>"
+msgstr ""
+
+#. hAn8q
+#: 03120301.xhp
+msgctxt ""
+"03120301.xhp\n"
+"tit\n"
+"help.text"
+msgid "Format Function"
+msgstr ""
+
+#. Ddd7Z
+#: 03120301.xhp
+msgctxt ""
+"03120301.xhp\n"
+"bm_id3153539\n"
+"help.text"
+msgid "<bookmark_value>Format function</bookmark_value>"
+msgstr ""
+
+#. 9VgHM
+#: 03120301.xhp
+msgctxt ""
+"03120301.xhp\n"
+"hd_id3153539\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03120301.xhp\" name=\"Format Function\">Format Function</link>"
+msgstr ""
+
+#. AfW2N
+#: 03120301.xhp
+msgctxt ""
+"03120301.xhp\n"
+"par_id3156042\n"
+"help.text"
+msgid "Converts a numeric expression to a string, and then formats it according to the format that you specify."
+msgstr ""
+
+#. arnAa
+#: 03120301.xhp
+msgctxt ""
+"03120301.xhp\n"
+"par_id3153527\n"
+"help.text"
+msgid "Format(expression [, format As String]) As String"
+msgstr ""
+
+#. v2BdG
+#: 03120301.xhp
+msgctxt ""
+"03120301.xhp\n"
+"par_id3149415\n"
+"help.text"
+msgid "<emph>expression</emph>: Numeric expression that you want to convert to a formatted string."
+msgstr ""
+
+#. p5nFg
+#: 03120301.xhp
+msgctxt ""
+"03120301.xhp\n"
+"par_id3147531\n"
+"help.text"
+msgid "<emph>format</emph>: String that specifies the format code for the number. If <literal>format</literal> is omitted, the Format function works like the %PRODUCTNAME Basic <literal>Str()</literal> function."
+msgstr ""
+
+#. Mh6xN
+#: 03120301.xhp
+msgctxt ""
+"03120301.xhp\n"
+"par_id3148474\n"
+"help.text"
+msgid "Text string."
+msgstr ""
+
+#. 8DmPW
+#: 03120301.xhp
+msgctxt ""
+"03120301.xhp\n"
+"hd_id3147561\n"
+"help.text"
+msgid "Formatting Codes"
+msgstr ""
+
+#. 4TDkj
+#: 03120301.xhp
+msgctxt ""
+"03120301.xhp\n"
+"par_id3147265\n"
+"help.text"
+msgid "The following list describes the codes that you can use for formatting a numeric expression:"
+msgstr ""
+
+#. LJGi5
+#: 03120301.xhp
+msgctxt ""
+"03120301.xhp\n"
+"par_id3153380\n"
+"help.text"
+msgid "<emph>0:</emph> If <literal>expression</literal> has a digit at the position of the 0 in the <literal>format</literal> code, the digit is displayed, otherwise a zero is displayed."
+msgstr ""
+
+#. MRyQ7
+#: 03120301.xhp
+msgctxt ""
+"03120301.xhp\n"
+"par_id3151210\n"
+"help.text"
+msgid "If <literal>expression</literal> has fewer digits than the number of zeros in the <literal>format</literal> code, (on either side of the decimal), leading or trailing zeros are displayed. If the <literal>expression</literal> has more digits to the left of the decimal separator than the amount of zeros in the <literal>format</literal> code, the additional digits are displayed without formatting."
+msgstr ""
+
+#. bYkcA
+#: 03120301.xhp
+msgctxt ""
+"03120301.xhp\n"
+"par_id3151176\n"
+"help.text"
+msgid "Decimal places in the <literal>expression</literal> are rounded according to the number of zeros that appear after the decimal separator in the <literal>format</literal> code."
+msgstr ""
+
+#. Cypxj
+#: 03120301.xhp
+msgctxt ""
+"03120301.xhp\n"
+"par_id3154123\n"
+"help.text"
+msgid "<emph>#:</emph> If <literal>expression</literal> contains a digit at the position of the # placeholder in the <literal>format</literal> code, the digit is displayed, otherwise nothing is displayed at this position."
+msgstr ""
+
+#. Mst5g
+#: 03120301.xhp
+msgctxt ""
+"03120301.xhp\n"
+"par_id3148452\n"
+"help.text"
+msgid "This symbol works like the 0, except that leading or trailing zeroes are not displayed if there are more # characters in the <literal>format</literal> code than digits in the <literal>expression</literal>. Only the relevant digits of the <literal>expression</literal> are displayed."
+msgstr ""
+
+#. Cnq7B
+#: 03120301.xhp
+msgctxt ""
+"03120301.xhp\n"
+"par_id3159150\n"
+"help.text"
+msgid "<emph>.:</emph> The decimal placeholder determines the number of decimal places to the left and right of the decimal separator."
+msgstr ""
+
+#. ehB5x
+#: 03120301.xhp
+msgctxt ""
+"03120301.xhp\n"
+"par_id3159252\n"
+"help.text"
+msgid "If the <literal>format</literal> code contains only # placeholders to the left of this symbol, numbers less than 1 begin with a decimal separator. To always display a leading zero with fractional numbers, use 0 as a placeholder for the first digit to the left of the decimal separator."
+msgstr ""
+
+#. yMgJz
+#: 03120301.xhp
+msgctxt ""
+"03120301.xhp\n"
+"par_id3153368\n"
+"help.text"
+msgid "<emph>%:</emph> Multiplies the <literal>expression</literal>by 100 and inserts the percent sign (%) where the <literal>expression</literal> appears in the <literal>format</literal> code."
+msgstr ""
+
+#. prkKA
+#: 03120301.xhp
+msgctxt ""
+"03120301.xhp\n"
+"par_id3149481\n"
+"help.text"
+msgid "<emph>E- E+ e- e+ :</emph> If the <literal>format</literal> code contains at least one digit placeholder (0 or #) to the right of the symbol E-, E+, e-, or e+, the <literal>expression</literal> is formatted in the scientific or exponential format. The letter E or e is inserted between the number and the exponent. The number of placeholders for digits to the right of the symbol determines the number of digits in the exponent."
+msgstr ""
+
+#. jhCb5
+#: 03120301.xhp
+msgctxt ""
+"03120301.xhp\n"
+"par_id3149262\n"
+"help.text"
+msgid "If the exponent is negative, a minus sign is displayed directly before an exponent with E-, E+, e-, e+. If the exponent is positive, a plus sign is only displayed before exponents with E+ or e+."
+msgstr ""
+
+#. WTvZT
+#: 03120301.xhp
+msgctxt ""
+"03120301.xhp\n"
+"par_id3148617\n"
+"help.text"
+msgid "The thousands delimiter is displayed if the <literal>format</literal> code contains the delimiter enclosed by digit placeholders (0 or #)."
+msgstr ""
+
+#. A8QmE
+#: 03120301.xhp
+msgctxt ""
+"03120301.xhp\n"
+"par_id3163713\n"
+"help.text"
+msgid "The use of a period as a thousands and decimal separator is dependent on the regional setting. When you enter a number directly in Basic source code, always use a period as decimal delimiter. The actual character displayed as a decimal separator depends on the number format in your system settings."
+msgstr ""
+
+#. sxDcc
+#: 03120301.xhp
+msgctxt ""
+"03120301.xhp\n"
+"par_id3152887\n"
+"help.text"
+msgid "<emph>- + $ ( ) space:</emph> A plus (+), minus (-), dollar ($), space, or brackets entered directly in the <literal>format</literal> code is displayed as a literal character."
+msgstr ""
+
+#. PyKZq
+#: 03120301.xhp
+msgctxt ""
+"03120301.xhp\n"
+"par_id3148576\n"
+"help.text"
+msgid "To display characters other than the ones listed here, you must precede it by a backslash (\\), or enclose it in quotation marks (\" \")."
+msgstr ""
+
+#. SqAeG
+#: 03120301.xhp
+msgctxt ""
+"03120301.xhp\n"
+"par_id3153139\n"
+"help.text"
+msgid "<emph>\\ :</emph> The backslash displays the next character in the <literal>format</literal> code."
+msgstr ""
+
+#. CBbYy
+#: 03120301.xhp
+msgctxt ""
+"03120301.xhp\n"
+"par_id3153366\n"
+"help.text"
+msgid "Characters in the <literal>format</literal> code that have a special meaning can only be displayed as literal characters if they are preceded by a backslash. The backslash itself is not displayed, unless you enter a double backslash (\\\\) in the format code."
+msgstr ""
+
+#. L4LbT
+#: 03120301.xhp
+msgctxt ""
+"03120301.xhp\n"
+"par_id3155411\n"
+"help.text"
+msgid "Characters that must be preceded by a backslash in the format code in order to be displayed as literal characters are date- and time-formatting characters (a, c, d, h, m, n, p, q, s, t, w, y, /, :), numeric-formatting characters (#, 0, %, E, e, comma, period), and string-formatting characters (@, &, <, >, !)."
+msgstr ""
+
+#. BCQqy
+#: 03120301.xhp
+msgctxt ""
+"03120301.xhp\n"
+"par_id3145749\n"
+"help.text"
+msgid "You can also use the following predefined number formats. Except for <literal>\"General Number\"</literal>, all of the predefined format codes return the number as a decimal number with two decimal places."
+msgstr ""
+
+#. fkPvC
+#: 03120301.xhp
+msgctxt ""
+"03120301.xhp\n"
+"par_id3150113\n"
+"help.text"
+msgid "If you use predefined formats, the name of the format must be enclosed in quotation marks."
+msgstr ""
+
+#. GT9Rs
+#: 03120301.xhp
+msgctxt ""
+"03120301.xhp\n"
+"hd_id3149377\n"
+"help.text"
+msgid "Predefined format"
+msgstr ""
+
+#. Vj6Aq
+#: 03120301.xhp
+msgctxt ""
+"03120301.xhp\n"
+"par_id3154730\n"
+"help.text"
+msgid "<emph>General Number:</emph> Numbers are displayed as entered."
+msgstr ""
+
+#. RANUB
+#: 03120301.xhp
+msgctxt ""
+"03120301.xhp\n"
+"par_id3153158\n"
+"help.text"
+msgid "<emph>Currency:</emph> Inserts a dollar sign in front of the number and encloses negative numbers in brackets."
+msgstr ""
+
+#. NJj8M
+#: 03120301.xhp
+msgctxt ""
+"03120301.xhp\n"
+"par_id3154490\n"
+"help.text"
+msgid "<emph>Fixed:</emph> Displays at least one digit in front of the decimal separator."
+msgstr ""
+
+#. 3DiXo
+#: 03120301.xhp
+msgctxt ""
+"03120301.xhp\n"
+"par_id3153415\n"
+"help.text"
+msgid "<emph>Standard:</emph> Displays numbers with a thousands separator."
+msgstr ""
+
+#. AY7e3
+#: 03120301.xhp
+msgctxt ""
+"03120301.xhp\n"
+"par_id3150715\n"
+"help.text"
+msgid "<emph>Percent:</emph> Multiplies the number by 100 and appends a percent sign to the number."
+msgstr ""
+
+#. CoYgg
+#: 03120301.xhp
+msgctxt ""
+"03120301.xhp\n"
+"par_id3153836\n"
+"help.text"
+msgid "<emph>Scientific:</emph> Displays numbers in scientific format (for example, 1.00E+03 for 1000)."
+msgstr ""
+
+#. AAj9K
+#: 03120301.xhp
+msgctxt ""
+"03120301.xhp\n"
+"par_id3153707\n"
+"help.text"
+msgid "A <literal>format</literal> code can be divided into three sections that are separated by semicolons. The first part defines the format for positive values, the second part for negative values, and the third part for zero. If you only specify one <literal>format</literal> code, it applies to all numbers."
+msgstr ""
+
+#. ZsNPC
+#: 03120301.xhp
+msgctxt ""
+"03120301.xhp\n"
+"par_idN107A2\n"
+"help.text"
+msgid "' always use a period as decimal delimiter when you enter numbers in Basic source code."
+msgstr ""
+
+#. myXCN
+#: 03120301.xhp
+msgctxt ""
+"03120301.xhp\n"
+"par_id3147339\n"
+"help.text"
+msgid "' displays for example 6,328.20 in English locale, 6.328,20 in German locale."
+msgstr ""
+
+#. 8KMxc
+#: 03120301.xhp
+msgctxt ""
+"03120301.xhp\n"
+"par_id381513082126889\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05020301.xhp\" name=\"number format code\">Number format codes</link>"
+msgstr ""
+
+#. oZYHq
+#: 03120302.xhp
+msgctxt ""
+"03120302.xhp\n"
+"tit\n"
+"help.text"
+msgid "LCase Function"
+msgstr ""
+
+#. LMGd5
+#: 03120302.xhp
+msgctxt ""
+"03120302.xhp\n"
+"bm_id3152363\n"
+"help.text"
+msgid "<bookmark_value>LCase function</bookmark_value>"
+msgstr ""
+
+#. sLQre
+#: 03120302.xhp
+msgctxt ""
+"03120302.xhp\n"
+"hd_id3152363\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03120302.xhp\" name=\"LCase Function\">LCase Function</link>"
+msgstr ""
+
+#. dkB32
+#: 03120302.xhp
+msgctxt ""
+"03120302.xhp\n"
+"par_id3145609\n"
+"help.text"
+msgid "Converts all uppercase letters in a string to lowercase."
+msgstr ""
+
+#. DYSWC
+#: 03120302.xhp
+msgctxt ""
+"03120302.xhp\n"
+"par_id3154347\n"
+"help.text"
+msgid "See also: <link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase\">UCase</link> Function"
+msgstr ""
+
+#. chngB
+#: 03120302.xhp
+msgctxt ""
+"03120302.xhp\n"
+"par_id3150791\n"
+"help.text"
+msgid "LCase (Text As String)"
+msgstr ""
+
+#. 2dpqA
+#: 03120302.xhp
+msgctxt ""
+"03120302.xhp\n"
+"par_id3153193\n"
+"help.text"
+msgid "<emph>Text:</emph> Any string expression that you want to convert."
+msgstr ""
+
+#. UGH3C
+#: 03120303.xhp
+msgctxt ""
+"03120303.xhp\n"
+"tit\n"
+"help.text"
+msgid "Left Function"
+msgstr ""
+
+#. ArhPT
+#: 03120303.xhp
+msgctxt ""
+"03120303.xhp\n"
+"bm_id3149346\n"
+"help.text"
+msgid "<bookmark_value>Left function</bookmark_value>"
+msgstr ""
+
+#. uFGkL
+#: 03120303.xhp
+msgctxt ""
+"03120303.xhp\n"
+"hd_id3149346\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03120303.xhp\" name=\"Left Function\">Left Function</link>"
+msgstr ""
+
+#. DVEfF
+#: 03120303.xhp
+msgctxt ""
+"03120303.xhp\n"
+"par_id3147242\n"
+"help.text"
+msgid "Returns the number of leftmost characters that you specify of a string expression."
+msgstr ""
+
+#. H2Ftq
+#: 03120303.xhp
+msgctxt ""
+"03120303.xhp\n"
+"par_id3150771\n"
+"help.text"
+msgid "Left (Text As String, n As Long)"
+msgstr ""
+
+#. to74m
+#: 03120303.xhp
+msgctxt ""
+"03120303.xhp\n"
+"par_id3147530\n"
+"help.text"
+msgid "String"
+msgstr ""
+
+#. hRWZH
+#: 03120303.xhp
+msgctxt ""
+"03120303.xhp\n"
+"par_id3148552\n"
+"help.text"
+msgid "<emph>Text:</emph> Any string expression that you want to return the leftmost characters from."
+msgstr ""
+
+#. BPXpD
+#: 03120303.xhp
+msgctxt ""
+"03120303.xhp\n"
+"par_id3149456\n"
+"help.text"
+msgid "<emph>n:</emph> Numeric expression that specifies the number of characters that you want to return. If <emph>n</emph> = 0, a zero-length string is returned. The maximum allowed value is 2,147,483,648."
+msgstr ""
+
+#. FPXvk
+#: 03120303.xhp
+msgctxt ""
+"03120303.xhp\n"
+"par_id3150791\n"
+"help.text"
+msgid "The following example converts a date in YYYY.MM.DD format to MM/DD/YYYY format."
+msgstr ""
+
+#. TJBfC
+#: 03120303.xhp
+msgctxt ""
+"03120303.xhp\n"
+"par_id3150448\n"
+"help.text"
+msgid "sInput = InputBox(\"Please input a date in the international format 'YYYY-MM-DD'\")"
+msgstr ""
+
+#. NKjSQ
+#: 03120304.xhp
+msgctxt ""
+"03120304.xhp\n"
+"tit\n"
+"help.text"
+msgid "LSet Statement"
+msgstr ""
+
+#. MLR2Y
+#: 03120304.xhp
+msgctxt ""
+"03120304.xhp\n"
+"bm_id3143268\n"
+"help.text"
+msgid "<bookmark_value>LSet statement</bookmark_value>"
+msgstr ""
+
+#. s4j5Y
+#: 03120304.xhp
+msgctxt ""
+"03120304.xhp\n"
+"hd_id3143268\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03120304.xhp\" name=\"LSet Statement\">LSet Statement</link>"
+msgstr ""
+
+#. 2y5bo
+#: 03120304.xhp
+msgctxt ""
+"03120304.xhp\n"
+"par_id3155419\n"
+"help.text"
+msgid "Aligns a string to the left of a string variable, or copies a variable of a user-defined type to another variable of a different user-defined type."
+msgstr ""
+
+#. tFaav
+#: 03120304.xhp
+msgctxt ""
+"03120304.xhp\n"
+"par_id3150984\n"
+"help.text"
+msgid "LSet Var As String = Text or LSet Var1 = Var2"
+msgstr ""
+
+#. M99uG
+#: 03120304.xhp
+msgctxt ""
+"03120304.xhp\n"
+"par_id3145610\n"
+"help.text"
+msgid "<emph>Var:</emph> Any String variable that contains the string that you want align to the left."
+msgstr ""
+
+#. BXfsM
+#: 03120304.xhp
+msgctxt ""
+"03120304.xhp\n"
+"par_id3154346\n"
+"help.text"
+msgid "<emph>Text:</emph> String that you want to align to the left of the string variable."
+msgstr ""
+
+#. 3HnhD
+#: 03120304.xhp
+msgctxt ""
+"03120304.xhp\n"
+"par_id3151054\n"
+"help.text"
+msgid "<emph>Var1:</emph> Name of the user-defined type variable that you want to copy to."
+msgstr ""
+
+#. GBdaC
+#: 03120304.xhp
+msgctxt ""
+"03120304.xhp\n"
+"par_id3153361\n"
+"help.text"
+msgid "<emph>Var2:</emph> Name of the user-defined type variable that you want to copy from."
+msgstr ""
+
+#. jzAoB
+#: 03120304.xhp
+msgctxt ""
+"03120304.xhp\n"
+"par_id3154686\n"
+"help.text"
+msgid "If the string is shorter than the string variable, <emph>LSet</emph> left-aligns the string within the string variable. Any remaining positions in the string variable are replaced by spaces. If the string is longer than the string variable, only the leftmost characters up to the length of the string variable are copied. With the <emph>LSet</emph> statement, you can also copy a user-defined type variable to another variable of the same type."
+msgstr ""
+
+#. jJepi
+#: 03120304.xhp
+msgctxt ""
+"03120304.xhp\n"
+"par_id3152940\n"
+"help.text"
+msgid "' Align \"SBX\" within the 40-character reference string"
+msgstr ""
+
+#. CEZj7
+#: 03120304.xhp
+msgctxt ""
+"03120304.xhp\n"
+"par_id3148647\n"
+"help.text"
+msgid "' Replace asterisks with spaces"
+msgstr ""
+
+#. BfcQJ
+#: 03120304.xhp
+msgctxt ""
+"03120304.xhp\n"
+"par_id3151075\n"
+"help.text"
+msgid "' Left-align \"SBX\" within the 40-character reference string"
+msgstr ""
+
+#. 78orU
+#: 03120305.xhp
+msgctxt ""
+"03120305.xhp\n"
+"tit\n"
+"help.text"
+msgid "LTrim Function"
+msgstr ""
+
+#. xG9Ny
+#: 03120305.xhp
+msgctxt ""
+"03120305.xhp\n"
+"bm_id3147574\n"
+"help.text"
+msgid "<bookmark_value>LTrim function</bookmark_value>"
+msgstr ""
+
+#. EHCLJ
+#: 03120305.xhp
+msgctxt ""
+"03120305.xhp\n"
+"hd_id3147574\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03120305.xhp\" name=\"LTrim Function\">LTrim Function</link>"
+msgstr ""
+
+#. mFiGU
+#: 03120305.xhp
+msgctxt ""
+"03120305.xhp\n"
+"par_id3145316\n"
+"help.text"
+msgid "Removes all leading spaces at the start of a string expression."
+msgstr ""
+
+#. cepxM
+#: 03120305.xhp
+msgctxt ""
+"03120305.xhp\n"
+"par_id3148552\n"
+"help.text"
+msgid "LTrim (Text As String)"
+msgstr ""
+
+#. x85WJ
+#: 03120305.xhp
+msgctxt ""
+"03120305.xhp\n"
+"par_id3150792\n"
+"help.text"
+msgid "<emph>Text:</emph> Any string expression."
+msgstr ""
+
+#. vEGEh
+#: 03120305.xhp
+msgctxt ""
+"03120305.xhp\n"
+"par_id3125863\n"
+"help.text"
+msgid "Use this function to remove spaces at the beginning of a string expression."
+msgstr ""
+
+#. Afrvq
+#: 03120306.xhp
+msgctxt ""
+"03120306.xhp\n"
+"tit\n"
+"help.text"
+msgid "Mid Function, Mid Statement"
+msgstr ""
+
+#. J5UhZ
+#: 03120306.xhp
+msgctxt ""
+"03120306.xhp\n"
+"bm_id3143268\n"
+"help.text"
+msgid "<bookmark_value>Mid function</bookmark_value> <bookmark_value>Mid statement</bookmark_value>"
+msgstr ""
+
+#. jRxXo
+#: 03120306.xhp
+msgctxt ""
+"03120306.xhp\n"
+"hd_id3143268\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03120306.xhp\" name=\"Mid Function, Mid Statement\">Mid Function, Mid Statement</link>"
+msgstr ""
+
+#. oznEx
+#: 03120306.xhp
+msgctxt ""
+"03120306.xhp\n"
+"par_id3148473\n"
+"help.text"
+msgid "Returns the specified portion of a string expression (<emph>Mid function</emph>), or replaces the portion of a string expression with another string (<emph>Mid statement</emph>)."
+msgstr ""
+
+#. 32BvU
+#: 03120306.xhp
+msgctxt ""
+"03120306.xhp\n"
+"par_id3147530\n"
+"help.text"
+msgid "Mid (Text As String, Start As Long [, Length As Long]) or Mid (Text As String, Start As Long , Length As Long, Text As String)"
+msgstr ""
+
+#. 5MG4F
+#: 03120306.xhp
+msgctxt ""
+"03120306.xhp\n"
+"par_id3149295\n"
+"help.text"
+msgid "String (only by Function)"
+msgstr ""
+
+#. hRXCE
+#: 03120306.xhp
+msgctxt ""
+"03120306.xhp\n"
+"par_id3148664\n"
+"help.text"
+msgid "<emph>Text:</emph> Any string expression that you want to modify."
+msgstr ""
+
+#. DGPaB
+#: 03120306.xhp
+msgctxt ""
+"03120306.xhp\n"
+"par_id3150359\n"
+"help.text"
+msgid "<emph>Start: </emph>Numeric expression that indicates the character position within the string where the string portion that you want to replace or to return begins. The minimum allowed value is 1. The maximum allowed value is 2,147,483,648."
+msgstr ""
+
+#. dtyT5
+#: 03120306.xhp
+msgctxt ""
+"03120306.xhp\n"
+"par_id3148451\n"
+"help.text"
+msgid "<emph>Length:</emph> Numeric expression that returns the number of characters that you want to replace or return. The maximum allowed value is 2,147,483,648."
+msgstr ""
+
+#. Cw9Ts
+#: 03120306.xhp
+msgctxt ""
+"03120306.xhp\n"
+"par_id3125864\n"
+"help.text"
+msgid "If the Length parameter in the <emph>Mid function</emph> is omitted, all characters in the string expression from the start position to the end of the string are returned."
+msgstr ""
+
+#. 8A2DR
+#: 03120306.xhp
+msgctxt ""
+"03120306.xhp\n"
+"par_id3144762\n"
+"help.text"
+msgid "If the Length parameter in the <emph>Mid statement</emph> is less than the length of the text that you want to replace, the text is reduced to the specified length."
+msgstr ""
+
+#. EUzUS
+#: 03120306.xhp
+msgctxt ""
+"03120306.xhp\n"
+"par_id3150769\n"
+"help.text"
+msgid "<emph>Text:</emph> The string to replace the string expression (<emph>Mid statement</emph>)."
+msgstr ""
+
+#. NFDUA
+#: 03120306.xhp
+msgctxt ""
+"03120306.xhp\n"
+"par_id3153189\n"
+"help.text"
+msgid "sInput = InputBox(\"Please input a date in the international format 'YYYY-MM-DD'\")"
+msgstr ""
+
+#. t5jGn
+#: 03120307.xhp
+msgctxt ""
+"03120307.xhp\n"
+"tit\n"
+"help.text"
+msgid "Right Function"
+msgstr ""
+
+#. WfBGq
+#: 03120307.xhp
+msgctxt ""
+"03120307.xhp\n"
+"bm_id3153311\n"
+"help.text"
+msgid "<bookmark_value>Right function</bookmark_value>"
+msgstr ""
+
+#. dbxZX
+#: 03120307.xhp
+msgctxt ""
+"03120307.xhp\n"
+"hd_id3153311\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03120307.xhp\" name=\"Right Function\">Right Function</link>"
+msgstr ""
+
+#. w9pxb
+#: 03120307.xhp
+msgctxt ""
+"03120307.xhp\n"
+"par_id3150984\n"
+"help.text"
+msgid "Returns the rightmost \"n\" characters of a string expression."
+msgstr ""
+
+#. p4Lba
+#: 03120307.xhp
+msgctxt ""
+"03120307.xhp\n"
+"par_id3149763\n"
+"help.text"
+msgid "See also: <link href=\"text/sbasic/shared/03120303.xhp\" name=\"Left Function\">Left Function</link>."
+msgstr ""
+
+#. A3Rzn
+#: 03120307.xhp
+msgctxt ""
+"03120307.xhp\n"
+"par_id3153061\n"
+"help.text"
+msgid "Right (Text As String, n As Long)"
+msgstr ""
+
+#. SKQUo
+#: 03120307.xhp
+msgctxt ""
+"03120307.xhp\n"
+"par_id3156344\n"
+"help.text"
+msgid "String"
+msgstr ""
+
+#. hErZb
+#: 03120307.xhp
+msgctxt ""
+"03120307.xhp\n"
+"par_id3153526\n"
+"help.text"
+msgid "<emph>Text:</emph> Any string expression that you want to return the rightmost characters of."
+msgstr ""
+
+#. NwQkG
+#: 03120307.xhp
+msgctxt ""
+"03120307.xhp\n"
+"par_id3151211\n"
+"help.text"
+msgid "<emph>n:</emph> Numeric expression that defines the number of characters that you want to return. If <emph>n</emph> = 0, a zero-length string is returned. The maximum allowed value is 2,147,483,648."
+msgstr ""
+
+#. ezXrq
+#: 03120307.xhp
+msgctxt ""
+"03120307.xhp\n"
+"par_id3158410\n"
+"help.text"
+msgid "The following example converts a date in YYYY-MM-DD format to the US date format (MM/DD/YYYY)."
+msgstr ""
+
+#. ZbKt5
+#: 03120307.xhp
+msgctxt ""
+"03120307.xhp\n"
+"par_id3159252\n"
+"help.text"
+msgid "sInput = InputBox(\"Please input a date in the international format 'YYYY-MM-DD'\")"
+msgstr ""
+
+#. CDv6e
+#: 03120308.xhp
+msgctxt ""
+"03120308.xhp\n"
+"tit\n"
+"help.text"
+msgid "RSet Statement"
+msgstr ""
+
+#. h4w66
+#: 03120308.xhp
+msgctxt ""
+"03120308.xhp\n"
+"bm_id3153345\n"
+"help.text"
+msgid "<bookmark_value>RSet statement</bookmark_value>"
+msgstr ""
+
+#. QBt7J
+#: 03120308.xhp
+msgctxt ""
+"03120308.xhp\n"
+"hd_id3153345\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03120308.xhp\" name=\"RSet Statement\">RSet Statement</link>"
+msgstr ""
+
+#. 9BREa
+#: 03120308.xhp
+msgctxt ""
+"03120308.xhp\n"
+"par_id3150503\n"
+"help.text"
+msgid "Right-aligns a string within a string variable, or copies a user-defined variable type into another."
+msgstr ""
+
+#. uDqvq
+#: 03120308.xhp
+msgctxt ""
+"03120308.xhp\n"
+"par_id3150669\n"
+"help.text"
+msgid "RSet Text As String = Text or RSet Variable1 = Variable2"
+msgstr ""
+
+#. YfmCj
+#: 03120308.xhp
+msgctxt ""
+"03120308.xhp\n"
+"par_id3148552\n"
+"help.text"
+msgid "<emph>Text:</emph> Any string variable."
+msgstr ""
+
+#. nsDVT
+#: 03120308.xhp
+msgctxt ""
+"03120308.xhp\n"
+"par_id3154924\n"
+"help.text"
+msgid "<emph>Text</emph>: String that you want to right-align in the string variable."
+msgstr ""
+
+#. v2Tzg
+#: 03120308.xhp
+msgctxt ""
+"03120308.xhp\n"
+"par_id3149456\n"
+"help.text"
+msgid "<emph>Variable1:</emph> User-defined variable that is the target for the copied variable."
+msgstr ""
+
+#. MS2Yt
+#: 03120308.xhp
+msgctxt ""
+"03120308.xhp\n"
+"par_id3153381\n"
+"help.text"
+msgid "<emph>Variable2:</emph> User-defined variable that you want to copy to another variable."
+msgstr ""
+
+#. ZikcS
+#: 03120308.xhp
+msgctxt ""
+"03120308.xhp\n"
+"par_id3154140\n"
+"help.text"
+msgid "If the string is shorter than the string variable, <emph>RSet</emph> aligns the string to the right within the string variable. Any remaining characters in the string variable are replaced with spaces. If the string is longer than the string variable, characters exceeding the length of the variable are truncated, and only the remaining characters are right-aligned within the string variable."
+msgstr ""
+
+#. grCLk
+#: 03120308.xhp
+msgctxt ""
+"03120308.xhp\n"
+"par_id3149202\n"
+"help.text"
+msgid "You can also use the <emph>RSet statement</emph> to assign variables of one user-defined type to another."
+msgstr ""
+
+#. St2ov
+#: 03120308.xhp
+msgctxt ""
+"03120308.xhp\n"
+"par_id3151042\n"
+"help.text"
+msgid "The following example uses the <emph>RSet</emph> and <emph>LSet</emph> statements to modify the left and right alignment of a string."
+msgstr ""
+
+#. u4Dwb
+#: 03120308.xhp
+msgctxt ""
+"03120308.xhp\n"
+"par_id3155856\n"
+"help.text"
+msgid "' Right-align \"SBX\" in a 40-character string"
+msgstr ""
+
+#. Wvfwt
+#: 03120308.xhp
+msgctxt ""
+"03120308.xhp\n"
+"par_id3152577\n"
+"help.text"
+msgid "' Replace asterisks with spaces"
+msgstr ""
+
+#. ErXo8
+#: 03120308.xhp
+msgctxt ""
+"03120308.xhp\n"
+"par_id3145801\n"
+"help.text"
+msgid "' Left-align \"SBX\" in a 40-character string"
+msgstr ""
+
+#. 9ErPA
+#: 03120309.xhp
+msgctxt ""
+"03120309.xhp\n"
+"tit\n"
+"help.text"
+msgid "RTrim Function"
+msgstr ""
+
+#. 9jpjR
+#: 03120309.xhp
+msgctxt ""
+"03120309.xhp\n"
+"bm_id3154286\n"
+"help.text"
+msgid "<bookmark_value>RTrim function</bookmark_value>"
+msgstr ""
+
+#. SXFDZ
+#: 03120309.xhp
+msgctxt ""
+"03120309.xhp\n"
+"hd_id3154286\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03120309.xhp\" name=\"RTrim Function\">RTrim Function</link>"
+msgstr ""
+
+#. eXjba
+#: 03120309.xhp
+msgctxt ""
+"03120309.xhp\n"
+"par_id3153127\n"
+"help.text"
+msgid "Deletes the spaces at the end of a string expression."
+msgstr ""
+
+#. QnpJz
+#: 03120309.xhp
+msgctxt ""
+"03120309.xhp\n"
+"par_id3153062\n"
+"help.text"
+msgid "See also: <link href=\"text/sbasic/shared/03120305.xhp\" name=\"LTrim Function\">LTrim Function</link>"
+msgstr ""
+
+#. 3KFbV
+#: 03120309.xhp
+msgctxt ""
+"03120309.xhp\n"
+"par_id3154347\n"
+"help.text"
+msgid "RTrim (Text As String)"
+msgstr ""
+
+#. UW5Fx
+#: 03120309.xhp
+msgctxt ""
+"03120309.xhp\n"
+"par_id3151380\n"
+"help.text"
+msgid "<emph>Text: </emph>Any string expression."
+msgstr ""
+
+#. qdGRW
+#: 03120310.xhp
+msgctxt ""
+"03120310.xhp\n"
+"tit\n"
+"help.text"
+msgid "UCase Function"
+msgstr ""
+
+#. yrQQH
+#: 03120310.xhp
+msgctxt ""
+"03120310.xhp\n"
+"bm_id3153527\n"
+"help.text"
+msgid "<bookmark_value>UCase function</bookmark_value>"
+msgstr ""
+
+#. TRQNt
+#: 03120310.xhp
+msgctxt ""
+"03120310.xhp\n"
+"hd_id3153527\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase Function\">UCase Function</link>"
+msgstr ""
+
+#. vSKnv
+#: 03120310.xhp
+msgctxt ""
+"03120310.xhp\n"
+"par_id3155420\n"
+"help.text"
+msgid "Converts lowercase characters in a string to uppercase."
+msgstr ""
+
+#. bHkMs
+#: 03120310.xhp
+msgctxt ""
+"03120310.xhp\n"
+"par_id3150771\n"
+"help.text"
+msgid "See also: <link href=\"text/sbasic/shared/03120302.xhp\" name=\"LCase Function\">LCase Function</link>"
+msgstr ""
+
+#. PDUSQ
+#: 03120310.xhp
+msgctxt ""
+"03120310.xhp\n"
+"par_id3153061\n"
+"help.text"
+msgid "UCase (Text As String)"
+msgstr ""
+
+#. TgevM
+#: 03120310.xhp
+msgctxt ""
+"03120310.xhp\n"
+"par_id3150791\n"
+"help.text"
+msgid "<emph>Text:</emph> Any string expression that you want to convert."
+msgstr ""
+
+#. 9APfU
+#: 03120311.xhp
+msgctxt ""
+"03120311.xhp\n"
+"tit\n"
+"help.text"
+msgid "Trim Function"
+msgstr ""
+
+#. g5F8Z
+#: 03120311.xhp
+msgctxt ""
+"03120311.xhp\n"
+"bm_id3150616\n"
+"help.text"
+msgid "<bookmark_value>Trim function</bookmark_value>"
+msgstr ""
+
+#. HjEjn
+#: 03120311.xhp
+msgctxt ""
+"03120311.xhp\n"
+"hd_id3150616\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03120311.xhp\" name=\"Trim Function\">Trim Function</link>"
+msgstr ""
+
+#. gJTc8
+#: 03120311.xhp
+msgctxt ""
+"03120311.xhp\n"
+"par_id3149177\n"
+"help.text"
+msgid "Removes all leading and trailing spaces from a string expression."
+msgstr ""
+
+#. EEu5H
+#: 03120311.xhp
+msgctxt ""
+"03120311.xhp\n"
+"par_id3155341\n"
+"help.text"
+msgid "Trim( Text As String )"
+msgstr ""
+
+#. kLdYS
+#: 03120311.xhp
+msgctxt ""
+"03120311.xhp\n"
+"par_id3159414\n"
+"help.text"
+msgid "<emph>Text:</emph> Any string expression."
+msgstr ""
+
+#. ZBDyG
+#: 03120312.xhp
+msgctxt ""
+"03120312.xhp\n"
+"tit\n"
+"help.text"
+msgid "ConvertToURL Function"
+msgstr ""
+
+#. awi9e
+#: 03120312.xhp
+msgctxt ""
+"03120312.xhp\n"
+"bm_id3152801\n"
+"help.text"
+msgid "<bookmark_value>ConvertToURL function</bookmark_value>"
+msgstr ""
+
+#. GEiUq
+#: 03120312.xhp
+msgctxt ""
+"03120312.xhp\n"
+"hd_id3152801\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03120312.xhp\" name=\"ConvertToURL Function\">ConvertToURL Function</link>"
+msgstr ""
+
+#. 9Xdmw
+#: 03120312.xhp
+msgctxt ""
+"03120312.xhp\n"
+"par_id3148538\n"
+"help.text"
+msgid "Converts a system file name to a file URL."
+msgstr ""
+
+#. zU9U9
+#: 03120312.xhp
+msgctxt ""
+"03120312.xhp\n"
+"par_id3154285\n"
+"help.text"
+msgid "ConvertToURL(filename)"
+msgstr ""
+
+#. ycPs6
+#: 03120312.xhp
+msgctxt ""
+"03120312.xhp\n"
+"par_id3148947\n"
+"help.text"
+msgid "<emph>filename:</emph> A file name as string."
+msgstr ""
+
+#. Fgfbo
+#: 03120313.xhp
+msgctxt ""
+"03120313.xhp\n"
+"tit\n"
+"help.text"
+msgid "ConvertFromURL Function"
+msgstr ""
+
+#. FcDBH
+#: 03120313.xhp
+msgctxt ""
+"03120313.xhp\n"
+"bm_id3153894\n"
+"help.text"
+msgid "<bookmark_value>ConvertFromURL function</bookmark_value>"
+msgstr ""
+
+#. ueTH4
+#: 03120313.xhp
+msgctxt ""
+"03120313.xhp\n"
+"hd_id3153894\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03120313.xhp\" name=\"ConvertFromURL Function\">ConvertFromURL Function</link>"
+msgstr ""
+
+#. wiX8u
+#: 03120313.xhp
+msgctxt ""
+"03120313.xhp\n"
+"par_id3147226\n"
+"help.text"
+msgid "Converts a file URL to a system file name."
+msgstr ""
+
+#. i96Ej
+#: 03120313.xhp
+msgctxt ""
+"03120313.xhp\n"
+"par_id3154142\n"
+"help.text"
+msgid "ConvertFromURL(filename)"
+msgstr ""
+
+#. HRYNv
+#: 03120313.xhp
+msgctxt ""
+"03120313.xhp\n"
+"par_id3156023\n"
+"help.text"
+msgid "<emph>filename:</emph> A file name as a string."
+msgstr ""
+
+#. b5PSp
+#: 03120314.xhp
+msgctxt ""
+"03120314.xhp\n"
+"tit\n"
+"help.text"
+msgid "Split Function"
+msgstr ""
+
+#. jKxns
+#: 03120314.xhp
+msgctxt ""
+"03120314.xhp\n"
+"bm_id3156027\n"
+"help.text"
+msgid "<bookmark_value>Split function</bookmark_value>"
+msgstr ""
+
+#. GFRhn
+#: 03120314.xhp
+msgctxt ""
+"03120314.xhp\n"
+"hd_id3156027\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03120314.xhp\" name=\"Split Function\">Split Function</link>"
+msgstr ""
+
+#. LmvGz
+#: 03120314.xhp
+msgctxt ""
+"03120314.xhp\n"
+"par_id3155805\n"
+"help.text"
+msgid "Returns an array of substrings from a string expression."
+msgstr ""
+
+#. FGCEc
+#: 03120314.xhp
+msgctxt ""
+"03120314.xhp\n"
+"par_id3153824\n"
+"help.text"
+msgid "Split (Text As String, delimiter, number)"
+msgstr ""
+
+#. dBAZR
+#: 03120314.xhp
+msgctxt ""
+"03120314.xhp\n"
+"par_id3154285\n"
+"help.text"
+msgid "With Option VBASupport 1: String, with Option VBASupport 0: Variant/String"
+msgstr ""
+
+#. PRupM
+#: 03120314.xhp
+msgctxt ""
+"03120314.xhp\n"
+"par_id3156023\n"
+"help.text"
+msgid "<emph>Text:</emph> Any string expression."
+msgstr ""
+
+#. aPap3
+#: 03120314.xhp
+msgctxt ""
+"03120314.xhp\n"
+"par_id3147560\n"
+"help.text"
+msgid "<emph>delimiter (optional):</emph> A string of one or more characters length that is used to delimit the Text. The default is the space character."
+msgstr ""
+
+#. rD2HP
+#: 03120314.xhp
+msgctxt ""
+"03120314.xhp\n"
+"par_id3145069\n"
+"help.text"
+msgid "<emph>number (optional):</emph> The number of substrings that you want to return."
+msgstr ""
+
+#. 9qGtg
+#: 03120315.xhp
+msgctxt ""
+"03120315.xhp\n"
+"tit\n"
+"help.text"
+msgid "Join Function"
+msgstr ""
+
+#. Mg5S3
+#: 03120315.xhp
+msgctxt ""
+"03120315.xhp\n"
+"bm_id3149416\n"
+"help.text"
+msgid "<bookmark_value>Join function</bookmark_value>"
+msgstr ""
+
+#. FjCTF
+#: 03120315.xhp
+msgctxt ""
+"03120315.xhp\n"
+"hd_id3149416\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03120315.xhp\" name=\"Join Function\">Join Function</link>"
+msgstr ""
+
+#. DQFTH
+#: 03120315.xhp
+msgctxt ""
+"03120315.xhp\n"
+"par_id3149670\n"
+"help.text"
+msgid "Returns a string from a number of substrings in a string array."
+msgstr ""
+
+#. FrGPB
+#: 03120315.xhp
+msgctxt ""
+"03120315.xhp\n"
+"par_id3156344\n"
+"help.text"
+msgid "Join (Text As String Array, delimiter)"
+msgstr ""
+
+#. sEXB3
+#: 03120315.xhp
+msgctxt ""
+"03120315.xhp\n"
+"par_id3145171\n"
+"help.text"
+msgid "<emph>Text:</emph> A string array."
+msgstr ""
+
+#. 53dA6
+#: 03120315.xhp
+msgctxt ""
+"03120315.xhp\n"
+"par_id3154908\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 ""
+
+#. u25ah
+#: 03120400.xhp
+msgctxt ""
+"03120400.xhp\n"
+"tit\n"
+"help.text"
+msgid "Editing String Length"
+msgstr ""
+
+#. aZQ3y
+#: 03120400.xhp
+msgctxt ""
+"03120400.xhp\n"
+"hd_id3155150\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03120400.xhp\" name=\"Editing String Length\">Editing String Length</link>"
+msgstr ""
+
+#. Ewh7N
+#: 03120400.xhp
+msgctxt ""
+"03120400.xhp\n"
+"par_id3159201\n"
+"help.text"
+msgid "The following functions determine string lengths and compare strings."
+msgstr ""
+
+#. jnTB6
+#: 03120401.xhp
+msgctxt ""
+"03120401.xhp\n"
+"tit\n"
+"help.text"
+msgid "InStr Function"
+msgstr ""
+
+#. JiAaK
+#: 03120401.xhp
+msgctxt ""
+"03120401.xhp\n"
+"bm_id3155934\n"
+"help.text"
+msgid "<bookmark_value>InStr function</bookmark_value>"
+msgstr ""
+
+#. 74Qua
+#: 03120401.xhp
+msgctxt ""
+"03120401.xhp\n"
+"hd_id3155934\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03120401.xhp\" name=\"InStr Function\">InStr Function</link>"
+msgstr ""
+
+#. b3faC
+#: 03120401.xhp
+msgctxt ""
+"03120401.xhp\n"
+"par_id3153990\n"
+"help.text"
+msgid "Returns the position of a string within another string."
+msgstr ""
+
+#. 2DD3h
+#: 03120401.xhp
+msgctxt ""
+"03120401.xhp\n"
+"par_id3147303\n"
+"help.text"
+msgid "The Instr function returns the position at which the match was found. If the string was not found, the function returns 0."
+msgstr ""
+
+#. F5Bsm
+#: 03120401.xhp
+msgctxt ""
+"03120401.xhp\n"
+"hd_id3145090\n"
+"help.text"
+msgid "Syntax:"
+msgstr ""
+
+#. zn52D
+#: 03120401.xhp
+msgctxt ""
+"03120401.xhp\n"
+"par_id3146957\n"
+"help.text"
+msgid "InStr ([Start As Long,] Text1 As String, Text2 As String[, Compare])"
+msgstr ""
+
+#. e2YwH
+#: 03120401.xhp
+msgctxt ""
+"03120401.xhp\n"
+"hd_id3148538\n"
+"help.text"
+msgid "Return value:"
+msgstr ""
+
+#. AHBXf
+#: 03120401.xhp
+msgctxt ""
+"03120401.xhp\n"
+"hd_id3148473\n"
+"help.text"
+msgid "Parameters:"
+msgstr ""
+
+#. KqLff
+#: 03120401.xhp
+msgctxt ""
+"03120401.xhp\n"
+"par_id3153126\n"
+"help.text"
+msgid "<emph>Start: </emph>A numeric expression that marks the position in a string where the search for the specified substring starts. If you omit this parameter, the search starts at the first character of the string. The minimum allowed value is 1. The maximum allowed value is 2,147,483,648."
+msgstr ""
+
+#. SnP3c
+#: 03120401.xhp
+msgctxt ""
+"03120401.xhp\n"
+"par_id3145609\n"
+"help.text"
+msgid "<emph>Text1:</emph> The string expression that you want to search."
+msgstr ""
+
+#. AiNGG
+#: 03120401.xhp
+msgctxt ""
+"03120401.xhp\n"
+"par_id3147559\n"
+"help.text"
+msgid "<emph>Text2:</emph> The string expression that you want to search for."
+msgstr ""
+
+#. t8WDt
+#: 03120401.xhp
+msgctxt ""
+"03120401.xhp\n"
+"par_id3154758\n"
+"help.text"
+msgid "<emph>Compare:</emph> Optional numeric expression that defines the type of comparison. The value of this parameter can be 0 or 1. The default value of 1 specifies a text comparison that is not case-sensitive. The value of 0 specifies a binary comparison that is case-sensitive."
+msgstr ""
+
+#. mZhFi
+#: 03120401.xhp
+msgctxt ""
+"03120401.xhp\n"
+"par_id3153361\n"
+"help.text"
+msgid "To avoid a run-time error, do not set the Compare parameter if the first optional parameter is omitted."
+msgstr ""
+
+#. gRVcn
+#: 03120401.xhp
+msgctxt ""
+"03120401.xhp\n"
+"hd_id3154366\n"
+"help.text"
+msgid "Example:"
+msgstr ""
+
+#. ZG3QS
+#: 03120402.xhp
+msgctxt ""
+"03120402.xhp\n"
+"tit\n"
+"help.text"
+msgid "Len Function"
+msgstr ""
+
+#. 2LAEG
+#: 03120402.xhp
+msgctxt ""
+"03120402.xhp\n"
+"bm_id3154136\n"
+"help.text"
+msgid "<bookmark_value>Len function</bookmark_value>"
+msgstr ""
+
+#. HzQYT
+#: 03120402.xhp
+msgctxt ""
+"03120402.xhp\n"
+"hd_id3154136\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03120402.xhp\" name=\"Len Function\">Len Function</link>"
+msgstr ""
+
+#. zQW3g
+#: 03120402.xhp
+msgctxt ""
+"03120402.xhp\n"
+"par_id3147576\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 ""
+
+#. gakob
+#: 03120402.xhp
+msgctxt ""
+"03120402.xhp\n"
+"hd_id3159177\n"
+"help.text"
+msgid "Syntax:"
+msgstr ""
+
+#. RpCUx
+#: 03120402.xhp
+msgctxt ""
+"03120402.xhp\n"
+"par_id3150669\n"
+"help.text"
+msgid "Len (Text As String)"
+msgstr ""
+
+#. NuEBd
+#: 03120402.xhp
+msgctxt ""
+"03120402.xhp\n"
+"hd_id3148473\n"
+"help.text"
+msgid "Return value:"
+msgstr ""
+
+#. FyaMN
+#: 03120402.xhp
+msgctxt ""
+"03120402.xhp\n"
+"hd_id3147531\n"
+"help.text"
+msgid "Parameters:"
+msgstr ""
+
+#. oJqV5
+#: 03120402.xhp
+msgctxt ""
+"03120402.xhp\n"
+"par_id3147265\n"
+"help.text"
+msgid "<emph>Text:</emph> Any string expression or a variable of another type."
+msgstr ""
+
+#. cDZhe
+#: 03120402.xhp
+msgctxt ""
+"03120402.xhp\n"
+"hd_id3153360\n"
+"help.text"
+msgid "Example:"
+msgstr ""
+
+#. pCc2y
+#: 03120403.xhp
+msgctxt ""
+"03120403.xhp\n"
+"tit\n"
+"help.text"
+msgid "StrComp Function"
+msgstr ""
+
+#. CUQmm
+#: 03120403.xhp
+msgctxt ""
+"03120403.xhp\n"
+"bm_id3156027\n"
+"help.text"
+msgid "<bookmark_value>StrComp function</bookmark_value>"
+msgstr ""
+
+#. hyUAD
+#: 03120403.xhp
+msgctxt ""
+"03120403.xhp\n"
+"hd_id3156027\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03120403.xhp\" name=\"StrComp Function\">StrComp Function</link>"
+msgstr ""
+
+#. 8buFG
+#: 03120403.xhp
+msgctxt ""
+"03120403.xhp\n"
+"par_id3155805\n"
+"help.text"
+msgid "Compares two strings and returns an integer value that represents the result of the comparison."
+msgstr ""
+
+#. sDAvR
+#: 03120403.xhp
+msgctxt ""
+"03120403.xhp\n"
+"hd_id3153345\n"
+"help.text"
+msgid "Syntax:"
+msgstr ""
+
+#. 6m8GA
+#: 03120403.xhp
+msgctxt ""
+"03120403.xhp\n"
+"par_id3150503\n"
+"help.text"
+msgid "StrComp (Text1 As String, Text2 As String[, Compare])"
+msgstr ""
+
+#. 7ZVP8
+#: 03120403.xhp
+msgctxt ""
+"03120403.xhp\n"
+"hd_id3147574\n"
+"help.text"
+msgid "Return value:"
+msgstr ""
+
+#. swgoh
+#: 03120403.xhp
+msgctxt ""
+"03120403.xhp\n"
+"hd_id3150984\n"
+"help.text"
+msgid "Parameter:"
+msgstr ""
+
+#. ULJVC
+#: 03120403.xhp
+msgctxt ""
+"03120403.xhp\n"
+"par_id3153061\n"
+"help.text"
+msgid "<emph>Text1:</emph> Any string expression"
+msgstr ""
+
+#. iCfGJ
+#: 03120403.xhp
+msgctxt ""
+"03120403.xhp\n"
+"par_id3147560\n"
+"help.text"
+msgid "<emph>Text2:</emph> Any string expression"
+msgstr ""
+
+#. SjRGM
+#: 03120403.xhp
+msgctxt ""
+"03120403.xhp\n"
+"par_id3146796\n"
+"help.text"
+msgid "<emph>Compare:</emph> This optional parameter sets the comparison method. If Compare = 1, the string comparison is case-sensitive. If Compare = 0, no distinction is made between uppercase and lowercase letters."
+msgstr ""
+
+#. YDRRT
+#: 03120403.xhp
+msgctxt ""
+"03120403.xhp\n"
+"hd_id3154940\n"
+"help.text"
+msgid "Return value"
+msgstr ""
+
+#. DEruh
+#: 03120403.xhp
+msgctxt ""
+"03120403.xhp\n"
+"par_id3150358\n"
+"help.text"
+msgid "If Text1 < Text2 the function returns -1"
+msgstr ""
+
+#. uVkpG
+#: 03120403.xhp
+msgctxt ""
+"03120403.xhp\n"
+"par_id3151043\n"
+"help.text"
+msgid "If Text1 = Text2 the function returns 0"
+msgstr ""
+
+#. FBeHC
+#: 03120403.xhp
+msgctxt ""
+"03120403.xhp\n"
+"par_id3158410\n"
+"help.text"
+msgid "If Text1 > Text2 the function returns 1"
+msgstr ""
+
+#. FjifC
+#: 03120403.xhp
+msgctxt ""
+"03120403.xhp\n"
+"hd_id3153968\n"
+"help.text"
+msgid "Example:"
+msgstr ""
+
+#. xtFm8
+#: 03120411.xhp
+msgctxt ""
+"03120411.xhp\n"
+"tit\n"
+"help.text"
+msgid "InStrRev Function [VBA]"
+msgstr ""
+
+#. 89dVX
+#: 03120411.xhp
+msgctxt ""
+"03120411.xhp\n"
+"bm_id3155934\n"
+"help.text"
+msgid "<bookmark_value>InStrRev function</bookmark_value>"
+msgstr ""
+
+#. F8BJZ
+#: 03120411.xhp
+msgctxt ""
+"03120411.xhp\n"
+"hd_id3155934\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03120411.xhp\" name=\"InStrRev Function\">InStrRev Function [VBA]</link>"
+msgstr ""
+
+#. kgxfQ
+#: 03120411.xhp
+msgctxt ""
+"03120411.xhp\n"
+"par_id3153990\n"
+"help.text"
+msgid "Returns the position of a string within another string, starting from the right side of the string."
+msgstr ""
+
+#. vY8DG
+#: 03120411.xhp
+msgctxt ""
+"03120411.xhp\n"
+"par_id3147303\n"
+"help.text"
+msgid "The InStrRev function returns the position at which the match was found, from the right. If the string was not found, the function returns 0."
+msgstr ""
+
+#. HEmvR
+#: 03120411.xhp
+msgctxt ""
+"03120411.xhp\n"
+"par_id3146957\n"
+"help.text"
+msgid "InStrRev (Text1 As String, Text2 As String [,Start As Long] [, Compare As Integer])"
+msgstr ""
+
+#. aUMEF
+#: 03120411.xhp
+msgctxt ""
+"03120411.xhp\n"
+"par_id3145609\n"
+"help.text"
+msgid "<emph>Text1:</emph> The string expression that you want to search."
+msgstr ""
+
+#. iJw6x
+#: 03120411.xhp
+msgctxt ""
+"03120411.xhp\n"
+"par_id3147559\n"
+"help.text"
+msgid "<emph>Text2:</emph> The string expression that you want to search for."
+msgstr ""
+
+#. eREDf
+#: 03120411.xhp
+msgctxt ""
+"03120411.xhp\n"
+"par_id3153126\n"
+"help.text"
+msgid "<emph>Start: </emph>Optional numeric expression that marks the position <emph>from the left </emph>in a string where the search for the specified substring starts. If you omit this parameter, the search starts at the last character of the string. The maximum allowed value is 65535."
+msgstr ""
+
+#. ZEauB
+#: 03120411.xhp
+msgctxt ""
+"03120411.xhp\n"
+"par_id3154758\n"
+"help.text"
+msgid "<emph>Compare:</emph> Optional numeric expression that defines the type of comparison. The value of this parameter can be"
+msgstr ""
+
+#. asNfw
+#: 03120411.xhp
+msgctxt ""
+"03120411.xhp\n"
+"par_id051920170326028042\n"
+"help.text"
+msgid "1: The default value of 1 specifies a text comparison that is not case-sensitive."
+msgstr ""
+
+#. t7STx
+#: 03120411.xhp
+msgctxt ""
+"03120411.xhp\n"
+"par_id051920170326027721\n"
+"help.text"
+msgid "0: The value of 0 specifies a binary comparison that is case-sensitive."
+msgstr ""
+
+#. 44X5G
+#: 03120411.xhp
+msgctxt ""
+"03120411.xhp\n"
+"par_id3153361\n"
+"help.text"
+msgid "To avoid a run-time error, do not set the Compare parameter if the first return parameter is omitted."
+msgstr ""
+
+#. GExuT
+#: 03120411.xhp
+msgctxt ""
+"03120411.xhp\n"
+"par_id31541255547\n"
+"help.text"
+msgid "iPos = InStrRev(sInput,\"the\",10,1) ' Returns 1, search is case-insensitive"
+msgstr ""
+
+#. Yxhru
+#: 03120411.xhp
+msgctxt ""
+"03120411.xhp\n"
+"par_id05192017032\n"
+"help.text"
+msgid "iPos = InStrRev(sInput,\"the\",10,0) ' Returns 0, search is case-sensitive"
+msgstr ""
+
+#. YWCD7
+#: 03120412.xhp
+msgctxt ""
+"03120412.xhp\n"
+"tit\n"
+"help.text"
+msgid "StrReverse Function [VBA]"
+msgstr ""
+
+#. zaJPm
+#: 03120412.xhp
+msgctxt ""
+"03120412.xhp\n"
+"bm_id3155934\n"
+"help.text"
+msgid "<bookmark_value>StrReverse function</bookmark_value>"
+msgstr ""
+
+#. DUKLC
+#: 03120412.xhp
+msgctxt ""
+"03120412.xhp\n"
+"hd_id3155934\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03120412.xhp\" name=\"StrReverse Function\">StrReverse Function [VBA]</link>"
+msgstr ""
+
+#. HnA2J
+#: 03120412.xhp
+msgctxt ""
+"03120412.xhp\n"
+"par_id3153990\n"
+"help.text"
+msgid "Returns the string with the character order reversed."
+msgstr ""
+
+#. VwDxG
+#: 03120412.xhp
+msgctxt ""
+"03120412.xhp\n"
+"par_id3146957\n"
+"help.text"
+msgid "StrReverse (Text1 As String)"
+msgstr ""
+
+#. x74Dw
+#: 03120412.xhp
+msgctxt ""
+"03120412.xhp\n"
+"par_id3145609\n"
+"help.text"
+msgid "<emph>Text1:</emph> The string expression that you want to reverse the character order."
+msgstr ""
+
+#. SFtkE
+#: 03130000.xhp
+msgctxt ""
+"03130000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Other Commands"
+msgstr ""
+
+#. zUJBH
+#: 03130000.xhp
+msgctxt ""
+"03130000.xhp\n"
+"hd_id3156027\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03130000.xhp\" name=\"Other Commands\">Other Commands</link>"
+msgstr ""
+
+#. 6DD4P
+#: 03130000.xhp
+msgctxt ""
+"03130000.xhp\n"
+"par_id3153312\n"
+"help.text"
+msgid "This is a list of the functions and the statements that are not included in the other categories."
+msgstr ""
+
+#. So9AH
+#: 03130100.xhp
+msgctxt ""
+"03130100.xhp\n"
+"tit\n"
+"help.text"
+msgid "Beep Statement"
+msgstr ""
+
+#. FuECV
+#: 03130100.xhp
+msgctxt ""
+"03130100.xhp\n"
+"bm_id3143284\n"
+"help.text"
+msgid "<bookmark_value>Beep statement</bookmark_value>"
+msgstr ""
+
+#. Ck4Ae
+#: 03130100.xhp
+msgctxt ""
+"03130100.xhp\n"
+"hd_id3143284\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03130100.xhp\" name=\"Beep Statement\">Beep Statement</link>"
+msgstr ""
+
+#. uh3FV
+#: 03130100.xhp
+msgctxt ""
+"03130100.xhp\n"
+"par_id3159201\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 ""
+
+#. JMATz
+#: 03130100.xhp
+msgctxt ""
+"03130100.xhp\n"
+"par_id971587473488701\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sbasic/Beep_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Beep Statement diagram</alt></image>"
+msgstr ""
+
+#. 9FABw
+#: 03130500.xhp
+msgctxt ""
+"03130500.xhp\n"
+"tit\n"
+"help.text"
+msgid "Shell Function"
+msgstr ""
+
+#. Pp9Xa
+#: 03130500.xhp
+msgctxt ""
+"03130500.xhp\n"
+"bm_id3150040\n"
+"help.text"
+msgid "<bookmark_value>Shell function</bookmark_value>"
+msgstr ""
+
+#. 9arQE
+#: 03130500.xhp
+msgctxt ""
+"03130500.xhp\n"
+"hd_id3150040\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03130500.xhp\" name=\"Shell Function\">Shell Function</link>"
+msgstr ""
+
+#. DK4MC
+#: 03130500.xhp
+msgctxt ""
+"03130500.xhp\n"
+"par_id3153394\n"
+"help.text"
+msgid "Starts another application and defines the respective window style, if necessary."
+msgstr ""
+
+#. VykEA
+#: 03130500.xhp
+msgctxt ""
+"03130500.xhp\n"
+"par_id3147576\n"
+"help.text"
+msgid "Shell (Pathname As String[, Windowstyle As Integer[, Param As String[, bSync]]])"
+msgstr ""
+
+#. 7dFVT
+#: 03130500.xhp
+msgctxt ""
+"03130500.xhp\n"
+"hd_id3154306\n"
+"help.text"
+msgid "Pathname"
+msgstr ""
+
+#. SGKiG
+#: 03130500.xhp
+msgctxt ""
+"03130500.xhp\n"
+"par_id3155419\n"
+"help.text"
+msgid "Name of the program that you want to start, optionally with complete path and/or arguments."
+msgstr ""
+
+#. PaQxf
+#: 03130500.xhp
+msgctxt ""
+"03130500.xhp\n"
+"hd_id3150771\n"
+"help.text"
+msgid "Windowstyle"
+msgstr ""
+
+#. UMDX5
+#: 03130500.xhp
+msgctxt ""
+"03130500.xhp\n"
+"par_id3145609\n"
+"help.text"
+msgid "Optional integer expression that specifies the style of the window that the program is executed in. The following values are possible:"
+msgstr ""
+
+#. UHeLL
+#: 03130500.xhp
+msgctxt ""
+"03130500.xhp\n"
+"par_id221651081957774\n"
+"help.text"
+msgid "Meaning"
+msgstr ""
+
+#. KVBLe
+#: 03130500.xhp
+msgctxt ""
+"03130500.xhp\n"
+"par_id3153360\n"
+"help.text"
+msgid "The focus is on the hidden program window."
+msgstr ""
+
+#. 8nVHG
+#: 03130500.xhp
+msgctxt ""
+"03130500.xhp\n"
+"par_id3144760\n"
+"help.text"
+msgid "The focus is on the program window in standard size."
+msgstr ""
+
+#. yn6fB
+#: 03130500.xhp
+msgctxt ""
+"03130500.xhp\n"
+"par_id3148451\n"
+"help.text"
+msgid "The focus is on the minimized program window."
+msgstr ""
+
+#. FkVik
+#: 03130500.xhp
+msgctxt ""
+"03130500.xhp\n"
+"par_id3146921\n"
+"help.text"
+msgid "focus is on the maximized program window."
+msgstr ""
+
+#. 5Dv4V
+#: 03130500.xhp
+msgctxt ""
+"03130500.xhp\n"
+"par_id3155854\n"
+"help.text"
+msgid "Standard size program window, without focus."
+msgstr ""
+
+#. iPXGx
+#: 03130500.xhp
+msgctxt ""
+"03130500.xhp\n"
+"par_id3152938\n"
+"help.text"
+msgid "Minimized program window, focus remains on the active window."
+msgstr ""
+
+#. cZkyq
+#: 03130500.xhp
+msgctxt ""
+"03130500.xhp\n"
+"par_id3151112\n"
+"help.text"
+msgid "Full-screen display."
+msgstr ""
+
+#. rpPTX
+#: 03130500.xhp
+msgctxt ""
+"03130500.xhp\n"
+"hd_id3150419\n"
+"help.text"
+msgid "Param"
+msgstr ""
+
+#. HmcHB
+#: 03130500.xhp
+msgctxt ""
+"03130500.xhp\n"
+"par_id3149412\n"
+"help.text"
+msgid "String that specifies additional arguments passed to the program."
+msgstr ""
+
+#. bbNMF
+#: 03130500.xhp
+msgctxt ""
+"03130500.xhp\n"
+"hd_id3148456\n"
+"help.text"
+msgid "bSync"
+msgstr ""
+
+#. n5dtg
+#: 03130500.xhp
+msgctxt ""
+"03130500.xhp\n"
+"par_id3154096\n"
+"help.text"
+msgid "If this value is set to <emph>true</emph>, the <emph>Shell</emph> command and all $[officename] tasks wait until the shell process completes. If the value is set to <emph>false</emph>, the shell returns directly. The default value is <emph>false</emph>."
+msgstr ""
+
+#. Z3ZeW
+#: 03130600.xhp
+msgctxt ""
+"03130600.xhp\n"
+"tit\n"
+"help.text"
+msgid "Wait Statement"
+msgstr ""
+
+#. krcD3
+#: 03130600.xhp
+msgctxt ""
+"03130600.xhp\n"
+"bm_id3154136\n"
+"help.text"
+msgid "<bookmark_value>Wait statement</bookmark_value>"
+msgstr ""
+
+#. 4bjCE
+#: 03130600.xhp
+msgctxt ""
+"03130600.xhp\n"
+"hd_id3154136\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03130600.xhp\" name=\"Wait Statement\">Wait Statement</link>"
+msgstr ""
+
+#. a6kxb
+#: 03130600.xhp
+msgctxt ""
+"03130600.xhp\n"
+"par_id3149236\n"
+"help.text"
+msgid "Interrupts the program execution for the amount of time that you specify in milliseconds."
+msgstr ""
+
+#. o7Bum
+#: 03130600.xhp
+msgctxt ""
+"03130600.xhp\n"
+"par_id3150669\n"
+"help.text"
+msgid "Wait millisec"
+msgstr ""
+
+#. 4p7GG
+#: 03130600.xhp
+msgctxt ""
+"03130600.xhp\n"
+"par_id3154924\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 ""
+
+#. EeJPC
+#: 03130600.xhp
+msgctxt ""
+"03130600.xhp\n"
+"par_id3156214\n"
+"help.text"
+msgid "MsgBox \"\" & lTick & \" Ticks\" ,0,\"The pause lasted\""
+msgstr ""
+
+#. jbkXE
+#: 03130600.xhp
+msgctxt ""
+"03130600.xhp\n"
+"par_id251546102545124\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03130610.xhp\" name=\"WaitUntil statement\">WaitUntil statement</link>"
+msgstr ""
+
+#. M3BNe
+#: 03130610.xhp
+msgctxt ""
+"03130610.xhp\n"
+"tit\n"
+"help.text"
+msgid "WaitUntil Statement"
+msgstr ""
+
+#. A5FNF
+#: 03130610.xhp
+msgctxt ""
+"03130610.xhp\n"
+"bm_id3154136\n"
+"help.text"
+msgid "<bookmark_value>WaitUntil statement</bookmark_value>"
+msgstr ""
+
+#. NZ5Zc
+#: 03130610.xhp
+msgctxt ""
+"03130610.xhp\n"
+"hd_id3154136\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03130610.xhp\" name=\"WaitUntil Statement\">WaitUntil Statement</link>"
+msgstr ""
+
+#. 2Cmcm
+#: 03130610.xhp
+msgctxt ""
+"03130610.xhp\n"
+"par_id3149236\n"
+"help.text"
+msgid "Interrupts the program execution until the time specified."
+msgstr ""
+
+#. gYbAt
+#: 03130610.xhp
+msgctxt ""
+"03130610.xhp\n"
+"par_id3150669\n"
+"help.text"
+msgid "WaitUntil Time"
+msgstr ""
+
+#. mELig
+#: 03130610.xhp
+msgctxt ""
+"03130610.xhp\n"
+"par_id3154924\n"
+"help.text"
+msgid "<emph>Time</emph>: A Date and Time expression that contains the date and time to wait before the program is executed."
+msgstr ""
+
+#. VMUCS
+#: 03130610.xhp
+msgctxt ""
+"03130610.xhp\n"
+"par_id161546104675066\n"
+"help.text"
+msgid "REM Wait until 6:00 PM then call MyMacro."
+msgstr ""
+
+#. XYXGw
+#: 03130610.xhp
+msgctxt ""
+"03130610.xhp\n"
+"par_id1001546104650052\n"
+"help.text"
+msgid "REM If after 6:00 PM, exit."
+msgstr ""
+
+#. tP7b8
+#: 03130610.xhp
+msgctxt ""
+"03130610.xhp\n"
+"par_id251546102545124\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03130600.xhp\" name=\"Wait statement\">Wait statement</link>"
+msgstr ""
+
+#. UAAuS
+#: 03130700.xhp
+msgctxt ""
+"03130700.xhp\n"
+"tit\n"
+"help.text"
+msgid "GetSystemTicks Function"
+msgstr ""
+
+#. awP9M
+#: 03130700.xhp
+msgctxt ""
+"03130700.xhp\n"
+"bm_id3147143\n"
+"help.text"
+msgid "<bookmark_value>GetSystemTicks function</bookmark_value>"
+msgstr ""
+
+#. 997y3
+#: 03130700.xhp
+msgctxt ""
+"03130700.xhp\n"
+"hd_id3147143\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03130700.xhp\" name=\"GetSystemTicks Function\">GetSystemTicks Function</link>"
+msgstr ""
+
+#. 3fFGL
+#: 03130700.xhp
+msgctxt ""
+"03130700.xhp\n"
+"par_id3153750\n"
+"help.text"
+msgid "Returns the number of system ticks provided by the operating system. You can use this function to optimize certain processes."
+msgstr ""
+
+#. SD4Rp
+#: 03130700.xhp
+msgctxt ""
+"03130700.xhp\n"
+"hd_id3153311\n"
+"help.text"
+msgid "Syntax:"
+msgstr ""
+
+#. X5xFK
+#: 03130700.xhp
+msgctxt ""
+"03130700.xhp\n"
+"hd_id3149233\n"
+"help.text"
+msgid "Return value:"
+msgstr ""
+
+#. FmsU2
+#: 03130700.xhp
+msgctxt ""
+"03130700.xhp\n"
+"hd_id3156152\n"
+"help.text"
+msgid "Example:"
+msgstr ""
+
+#. mqQFf
+#: 03130700.xhp
+msgctxt ""
+"03130700.xhp\n"
+"par_id3154938\n"
+"help.text"
+msgid "MsgBox \"\" & lTick & \" Ticks\" ,0,\"The pause lasted\""
+msgstr ""
+
+#. 9oSXN
+#: 03130700.xhp
+msgctxt ""
+"03130700.xhp\n"
+"par_id531610970649205\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/03/sf_timer.xhp#TimerService\"/>"
+msgstr ""
+
+#. s5v8i
+#: 03130800.xhp
+msgctxt ""
+"03130800.xhp\n"
+"tit\n"
+"help.text"
+msgid "Environ Function"
+msgstr ""
+
+#. 8CFZD
+#: 03130800.xhp
+msgctxt ""
+"03130800.xhp\n"
+"bm_id3155364\n"
+"help.text"
+msgid "<bookmark_value>Environ function</bookmark_value>"
+msgstr ""
+
+#. qti6S
+#: 03130800.xhp
+msgctxt ""
+"03130800.xhp\n"
+"hd_id3155364\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03130800.xhp\" name=\"Environ Function\">Environ Function</link>"
+msgstr ""
+
+#. BGRpE
+#: 03130800.xhp
+msgctxt ""
+"03130800.xhp\n"
+"par_id3145090\n"
+"help.text"
+msgid "Returns the value of an environment variable as a string. Environment variables are dependent on the type of operating system that you have."
+msgstr ""
+
+#. RFTEF
+#: 03130800.xhp
+msgctxt ""
+"03130800.xhp\n"
+"hd_id3150670\n"
+"help.text"
+msgid "Syntax:"
+msgstr ""
+
+#. SnNZQ
+#: 03130800.xhp
+msgctxt ""
+"03130800.xhp\n"
+"par_id3159176\n"
+"help.text"
+msgid "Environ (Environment As String)"
+msgstr ""
+
+#. Ps9DM
+#: 03130800.xhp
+msgctxt ""
+"03130800.xhp\n"
+"hd_id3159157\n"
+"help.text"
+msgid "Return value:"
+msgstr ""
+
+#. 5aaU3
+#: 03130800.xhp
+msgctxt ""
+"03130800.xhp\n"
+"hd_id3145609\n"
+"help.text"
+msgid "Parameters:"
+msgstr ""
+
+#. tbdD5
+#: 03130800.xhp
+msgctxt ""
+"03130800.xhp\n"
+"par_id3159414\n"
+"help.text"
+msgid "Environment: Environment variable that you want to return the value for."
+msgstr ""
+
+#. YuJE4
+#: 03130800.xhp
+msgctxt ""
+"03130800.xhp\n"
+"hd_id3148663\n"
+"help.text"
+msgid "Example:"
+msgstr ""
+
+#. Cqpyy
+#: 03130800.xhp
+msgctxt ""
+"03130800.xhp\n"
+"par_id3145419\n"
+"help.text"
+msgid "MsgBox \"'\" & sTemp & \"'\" ,64,\"Directory of temporary files:\""
+msgstr ""
+
+#. 83ZGB
+#: 03131000.xhp
+msgctxt ""
+"03131000.xhp\n"
+"tit\n"
+"help.text"
+msgid "GetSolarVersion Function"
+msgstr ""
+
+#. wqRin
+#: 03131000.xhp
+msgctxt ""
+"03131000.xhp\n"
+"bm_id3157898\n"
+"help.text"
+msgid "<bookmark_value>GetSolarVersion function</bookmark_value>"
+msgstr ""
+
+#. ZPTFC
+#: 03131000.xhp
+msgctxt ""
+"03131000.xhp\n"
+"hd_id3157898\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03131000.xhp\" name=\"GetSolarVersion Function\">GetSolarVersion Function</link>"
+msgstr ""
+
+#. nmGAh
+#: 03131000.xhp
+msgctxt ""
+"03131000.xhp\n"
+"par_id3152801\n"
+"help.text"
+msgid "Returns the internal number of the current $[officename] version."
+msgstr ""
+
+#. ACqFf
+#: 03131000.xhp
+msgctxt ""
+"03131000.xhp\n"
+"hd_id3153311\n"
+"help.text"
+msgid "Syntax:"
+msgstr ""
+
+#. oPHkj
+#: 03131000.xhp
+msgctxt ""
+"03131000.xhp\n"
+"hd_id3149514\n"
+"help.text"
+msgid "Return value:"
+msgstr ""
+
+#. cbqF2
+#: 03131000.xhp
+msgctxt ""
+"03131000.xhp\n"
+"par_id3148685\n"
+"help.text"
+msgid "String"
+msgstr ""
+
+#. UtzoF
+#: 03131000.xhp
+msgctxt ""
+"03131000.xhp\n"
+"hd_id3143270\n"
+"help.text"
+msgid "Example:"
+msgstr ""
+
+#. eFKt6
+#: 03131000.xhp
+msgctxt ""
+"03131000.xhp\n"
+"par_id3148947\n"
+"help.text"
+msgid "MsgBox sSep,64,\"Version number of the solar technology\""
+msgstr ""
+
+#. d2Cfi
+#: 03131300.xhp
+msgctxt ""
+"03131300.xhp\n"
+"tit\n"
+"help.text"
+msgid "TwipsPerPixelX Function"
+msgstr ""
+
+#. znE3z
+#: 03131300.xhp
+msgctxt ""
+"03131300.xhp\n"
+"bm_id3153539\n"
+"help.text"
+msgid "<bookmark_value>TwipsPerPixelX function</bookmark_value>"
+msgstr ""
+
+#. PX34j
+#: 03131300.xhp
+msgctxt ""
+"03131300.xhp\n"
+"hd_id3153539\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03131300.xhp\" name=\"TwipsPerPixelX Function\">TwipsPerPixelX Function</link>"
+msgstr ""
+
+#. bmYpd
+#: 03131300.xhp
+msgctxt ""
+"03131300.xhp\n"
+"par_id3153394\n"
+"help.text"
+msgid "Returns the number of twips that represent the width of a pixel."
+msgstr ""
+
+#. Aowd4
+#: 03131300.xhp
+msgctxt ""
+"03131300.xhp\n"
+"hd_id3153527\n"
+"help.text"
+msgid "Syntax:"
+msgstr ""
+
+#. bGQXF
+#: 03131300.xhp
+msgctxt ""
+"03131300.xhp\n"
+"hd_id3150669\n"
+"help.text"
+msgid "Return value:"
+msgstr ""
+
+#. cfsAF
+#: 03131300.xhp
+msgctxt ""
+"03131300.xhp\n"
+"par_id3150503\n"
+"help.text"
+msgid "Integer"
+msgstr ""
+
+#. teyNW
+#: 03131300.xhp
+msgctxt ""
+"03131300.xhp\n"
+"hd_id3159176\n"
+"help.text"
+msgid "Example:"
+msgstr ""
+
+#. 69bgG
+#: 03131300.xhp
+msgctxt ""
+"03131300.xhp\n"
+"par_id3153061\n"
+"help.text"
+msgid "MsgBox \"\" & TwipsPerPixelX() & \" Twips * \" & TwipsPerPixelY() & \" Twips\",0,\"Pixel size\""
+msgstr ""
+
+#. BBCjC
+#: 03131400.xhp
+msgctxt ""
+"03131400.xhp\n"
+"tit\n"
+"help.text"
+msgid "TwipsPerPixelY Function"
+msgstr ""
+
+#. DJkHn
+#: 03131400.xhp
+msgctxt ""
+"03131400.xhp\n"
+"bm_id3150040\n"
+"help.text"
+msgid "<bookmark_value>TwipsPerPixelY function</bookmark_value>"
+msgstr ""
+
+#. De4V7
+#: 03131400.xhp
+msgctxt ""
+"03131400.xhp\n"
+"hd_id3150040\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03131400.xhp\" name=\"TwipsPerPixelY Function\">TwipsPerPixelY Function</link>"
+msgstr ""
+
+#. DZE99
+#: 03131400.xhp
+msgctxt ""
+"03131400.xhp\n"
+"par_id3154186\n"
+"help.text"
+msgid "Returns the number of twips that represent the height of a pixel."
+msgstr ""
+
+#. m6AMf
+#: 03131400.xhp
+msgctxt ""
+"03131400.xhp\n"
+"hd_id3145090\n"
+"help.text"
+msgid "Syntax:"
+msgstr ""
+
+#. fKAoh
+#: 03131400.xhp
+msgctxt ""
+"03131400.xhp\n"
+"hd_id3148473\n"
+"help.text"
+msgid "Return value:"
+msgstr ""
+
+#. rUFtH
+#: 03131400.xhp
+msgctxt ""
+"03131400.xhp\n"
+"par_id3154306\n"
+"help.text"
+msgid "Integer"
+msgstr ""
+
+#. 3GCQQ
+#: 03131400.xhp
+msgctxt ""
+"03131400.xhp\n"
+"hd_id3149235\n"
+"help.text"
+msgid "Example:"
+msgstr ""
+
+#. DTKfQ
+#: 03131400.xhp
+msgctxt ""
+"03131400.xhp\n"
+"par_id3154142\n"
+"help.text"
+msgid "MsgBox \"\" & TwipsPerPixelX() & \" Twips * \" & TwipsPerPixelY() & \" Twips\",0,\"Pixel size\""
+msgstr ""
+
+#. hTiJw
+#: 03131500.xhp
+msgctxt ""
+"03131500.xhp\n"
+"tit\n"
+"help.text"
+msgid "CreateUnoStruct Function"
+msgstr ""
+
+#. C5PJk
+#: 03131500.xhp
+msgctxt ""
+"03131500.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>CreateUnoStruct function</bookmark_value>"
+msgstr ""
+
+#. QJFXF
+#: 03131500.xhp
+msgctxt ""
+"03131500.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03131500.xhp\" name=\"CreateUnoStruct Function\">CreateUnoStruct Function</link>"
+msgstr ""
+
+#. XVkg2
+#: 03131500.xhp
+msgctxt ""
+"03131500.xhp\n"
+"par_id3150713\n"
+"help.text"
+msgid "<ahelp hid=\".\">Creates an instance of a Uno structure type.</ahelp>"
+msgstr ""
+
+#. ZHPLD
+#: 03131500.xhp
+msgctxt ""
+"03131500.xhp\n"
+"par_id3155341\n"
+"help.text"
+msgid "oStruct = CreateUnoStruct( Uno type name )"
+msgstr ""
+
+#. WBYcA
+#: 03131500.xhp
+msgctxt ""
+"03131500.xhp\n"
+"par_id3147226\n"
+"help.text"
+msgid "Or use the following structure for your statement:"
+msgstr ""
+
+#. XLhUX
+#: 03131600.xhp
+msgctxt ""
+"03131600.xhp\n"
+"tit\n"
+"help.text"
+msgid "CreateUnoService Function"
+msgstr ""
+
+#. AmHDS
+#: 03131600.xhp
+msgctxt ""
+"03131600.xhp\n"
+"bm_id3150682\n"
+"help.text"
+msgid "<bookmark_value>CreateUnoService function</bookmark_value> <bookmark_value>API;FilePicker</bookmark_value> <bookmark_value>API;SimpleFileAccess</bookmark_value>"
+msgstr ""
+
+#. aeYuT
+#: 03131600.xhp
+msgctxt ""
+"03131600.xhp\n"
+"hd_id3150682\n"
+"help.text"
+msgid "<variable id=\"createunoserviceh1\"><link href=\"text/sbasic/shared/03131600.xhp\" name=\"CreateUnoService Function\">CreateUnoService Function</link></variable>"
+msgstr ""
+
+#. ztccV
+#: 03131600.xhp
+msgctxt ""
+"03131600.xhp\n"
+"par_id3152924\n"
+"help.text"
+msgid "Instantiates a Uno service with the <literal>ProcessServiceManager</literal>."
+msgstr ""
+
+#. WN5N9
+#: 03131600.xhp
+msgctxt ""
+"03131600.xhp\n"
+"par_id511629989178074\n"
+"help.text"
+msgid "<input>oService = CreateUnoService( UNO service name )</input>"
+msgstr ""
+
+#. 5oFHA
+#: 03131600.xhp
+msgctxt ""
+"03131600.xhp\n"
+"par_id921629989537850\n"
+"help.text"
+msgid "For a list of available services, visit the <link href=\"https://api.libreoffice.org/docs/idl/ref/namespacecom_1_1sun_1_1star.html\" name=\"UNO_Service_Names\">com::sun::star Module</link> reference page."
+msgstr ""
+
+#. BSPFS
+#: 03131600.xhp
+msgctxt ""
+"03131600.xhp\n"
+"par_id891561653344669\n"
+"help.text"
+msgid "The example below creates the function <literal>FileExists</literal> that uses the service <literal>com.sun.star.ucb.SimpleFileAccess</literal> to test if a given path is an existing file."
+msgstr ""
+
+#. be6H2
+#: 03131600.xhp
+msgctxt ""
+"03131600.xhp\n"
+"par_id351629989310797\n"
+"help.text"
+msgid "UNO services have an extensive online documentation in the <link href=\"https://api.libreoffice.org/\" name=\"API_Website\">api.libreoffice.org</link> website. Visit the <link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1ucb_1_1SimpleFileAccess.html\" name=\"SimpleFileAccess_Page\">SimpleFileAccess Service</link> reference page to learn more about the methods provided by the service used in the example above."
+msgstr ""
+
+#. U26ti
+#: 03131600.xhp
+msgctxt ""
+"03131600.xhp\n"
+"bm_id8334604\n"
+"help.text"
+msgid "<bookmark_value>filepicker;API service</bookmark_value>"
+msgstr ""
+
+#. WR9Yf
+#: 03131600.xhp
+msgctxt ""
+"03131600.xhp\n"
+"par_idN10625\n"
+"help.text"
+msgid "The following code uses the service <literal>com.sun.star.ui.dialogs.FilePicker</literal> to show a file open dialog:"
+msgstr ""
+
+#. WENTD
+#: 03131600.xhp
+msgctxt ""
+"03131600.xhp\n"
+"par_idN1062B\n"
+"help.text"
+msgid "fName = FileOpenDialog (\"Please select a file\")"
+msgstr ""
+
+#. 3e67q
+#: 03131600.xhp
+msgctxt ""
+"03131600.xhp\n"
+"par_idN10630\n"
+"help.text"
+msgid "Print \"file chosen: \"+fName"
+msgstr ""
+
+#. BVUbv
+#: 03131700.xhp
+msgctxt ""
+"03131700.xhp\n"
+"tit\n"
+"help.text"
+msgid "GetProcessServiceManager Function"
+msgstr ""
+
+#. zBqDB
+#: 03131700.xhp
+msgctxt ""
+"03131700.xhp\n"
+"bm_id3153255\n"
+"help.text"
+msgid "<bookmark_value>GetProcessServiceManager function</bookmark_value><bookmark_value>ProcessServiceManager</bookmark_value>"
+msgstr ""
+
+#. 9igPo
+#: 03131700.xhp
+msgctxt ""
+"03131700.xhp\n"
+"hd_id3153255\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03131700.xhp\" name=\"GetProcessServiceManager Function\">GetProcessServiceManager Function</link>"
+msgstr ""
+
+#. L2WEC
+#: 03131700.xhp
+msgctxt ""
+"03131700.xhp\n"
+"par_id3156414\n"
+"help.text"
+msgid "Returns the ProcessServiceManager (central Uno ServiceManager)."
+msgstr ""
+
+#. KsmMT
+#: 03131700.xhp
+msgctxt ""
+"03131700.xhp\n"
+"par_id3145136\n"
+"help.text"
+msgid "This function is required when you want to instantiate a service using CreateInstanceWithArguments."
+msgstr ""
+
+#. hojsP
+#: 03131700.xhp
+msgctxt ""
+"03131700.xhp\n"
+"par_id3148473\n"
+"help.text"
+msgid "' this is the same as the following statement:"
+msgstr ""
+
+#. ZfAue
+#: 03131800.xhp
+msgctxt ""
+"03131800.xhp\n"
+"tit\n"
+"help.text"
+msgid "CreateUnoDialog Function"
+msgstr ""
+
+#. g2fTK
+#: 03131800.xhp
+msgctxt ""
+"03131800.xhp\n"
+"bm_id3150040\n"
+"help.text"
+msgid "<bookmark_value>CreateUnoDialog function</bookmark_value>"
+msgstr ""
+
+#. iSyTd
+#: 03131800.xhp
+msgctxt ""
+"03131800.xhp\n"
+"hd_id3150040\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03131800.xhp\" name=\"CreateUnoDialog Function\">CreateUnoDialog Function</link>"
+msgstr ""
+
+#. ryoxW
+#: 03131800.xhp
+msgctxt ""
+"03131800.xhp\n"
+"par_id3154186\n"
+"help.text"
+msgid "Creates a Basic Uno object that represents a Uno dialog control during Basic runtime."
+msgstr ""
+
+#. BLKpJ
+#: 03131800.xhp
+msgctxt ""
+"03131800.xhp\n"
+"par_id3153750\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 ""
+
+#. A4Fe3
+#: 03131800.xhp
+msgctxt ""
+"03131800.xhp\n"
+"par_id3153681\n"
+"help.text"
+msgid "See <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Examples\">Examples</link>."
+msgstr ""
+
+#. 4W3aw
+#: 03131800.xhp
+msgctxt ""
+"03131800.xhp\n"
+"par_id3159157\n"
+"help.text"
+msgid "' Get dialog description from the dialog library"
+msgstr ""
+
+#. FwAPn
+#: 03131800.xhp
+msgctxt ""
+"03131800.xhp\n"
+"par_id3154923\n"
+"help.text"
+msgid "' Generate \"live\" dialog"
+msgstr ""
+
+#. KxwFT
+#: 03131800.xhp
+msgctxt ""
+"03131800.xhp\n"
+"par_id3148550\n"
+"help.text"
+msgid "' display \"live\" dialog"
+msgstr ""
+
+#. Rdvas
+#: 03131900.xhp
+msgctxt ""
+"03131900.xhp\n"
+"bm_id3150682\n"
+"help.text"
+msgid "<bookmark_value>GlobalScope specifier</bookmark_value><bookmark_value>library systems</bookmark_value><bookmark_value>Library container</bookmark_value><bookmark_value>GlobalScope</bookmark_value><bookmark_value>API; BasicLibraries</bookmark_value><bookmark_value>API; DialogLibraries</bookmark_value><bookmark_value>BasicLibraries; library container</bookmark_value><bookmark_value>DialogLibraries; library container</bookmark_value>"
+msgstr ""
+
+#. 4nALX
+#: 03131900.xhp
+msgctxt ""
+"03131900.xhp\n"
+"hd_id3150682\n"
+"help.text"
+msgid "<variable id=\"GlobalScope_h1\"><link href=\"text/sbasic/shared/03131900.xhp\" name=\"GlobalScope\">GlobalScope specifier</link></variable>"
+msgstr ""
+
+#. Bp3q2
+#: 03131900.xhp
+msgctxt ""
+"03131900.xhp\n"
+"par_id991572457387308\n"
+"help.text"
+msgid "To manage personal or shared library containers (<emph>Application Macros</emph> or <emph>My Macros</emph>) from within a document, use the <literal>GlobalScope</literal> specifier."
+msgstr ""
+
+#. Jz8ET
+#: 03131900.xhp
+msgctxt ""
+"03131900.xhp\n"
+"par_id3153345\n"
+"help.text"
+msgid "Basic source code and dialogs are organized in library containers. Libraries can contain modules and dialogs."
+msgstr ""
+
+#. BhGwB
+#: 03131900.xhp
+msgctxt ""
+"03131900.xhp\n"
+"hd_id3143271\n"
+"help.text"
+msgid "In Basic:"
+msgstr ""
+
+#. JLAkk
+#: 03131900.xhp
+msgctxt ""
+"03131900.xhp\n"
+"par_id3153061\n"
+"help.text"
+msgid "Basic libraries and modules can be managed with the <literal>BasicLibraries</literal> object. Libraries can be searched, explored and loaded on request. <link href=\"text/sbasic/python/python_document_events.xhp\" name=\"Monitoring document events\">Monitoring Documents Events</link> illustrates %PRODUCTNAME library loading."
+msgstr ""
+
+#. retJJ
+#: 03131900.xhp
+msgctxt ""
+"03131900.xhp\n"
+"hd_id3154346\n"
+"help.text"
+msgid "In dialogs:"
+msgstr ""
+
+#. tQBVS
+#: 03131900.xhp
+msgctxt ""
+"03131900.xhp\n"
+"par_id3148663\n"
+"help.text"
+msgid "Dialog libraries and dialogs can be managed with the <literal>DialogLibraries</literal> object. <link href=\"text/sbasic/guide/show_dialog.xhp\" name=\"Opening a Dialog\">Opening a Dialog With Basic</link> illustrates how to display %PRODUCTNAME shared dialogs."
+msgstr ""
+
+#. XUR24
+#: 03131900.xhp
+msgctxt ""
+"03131900.xhp\n"
+"par_id3150543\n"
+"help.text"
+msgid "<literal>BasicLibraries</literal> and <literal>DialogLibraries</literal> containers exist at application level and within every document. Document's library containers do not need the <literal>GlobalScope</literal> specifier to be managed. If you want to call a global library container (located in <emph>Application Macros</emph> or <emph>My Macros</emph>) from within a document, you must use the <literal>GlobalScope</literal> specifier."
+msgstr ""
+
+#. BDRji
+#: 03131900.xhp
+msgctxt ""
+"03131900.xhp\n"
+"par_id3154124\n"
+"help.text"
+msgid "Example in the document Basic"
+msgstr ""
+
+#. 4wLHg
+#: 03131900.xhp
+msgctxt ""
+"03131900.xhp\n"
+"par_id3158408\n"
+"help.text"
+msgid "' calling Dialog1 in the document library Standard"
+msgstr ""
+
+#. BcE6x
+#: 03131900.xhp
+msgctxt ""
+"03131900.xhp\n"
+"par_id3154910\n"
+"help.text"
+msgid "' calling Dialog2 in the application library Library1"
+msgstr ""
+
+#. o6UAK
+#: 03132000.xhp
+msgctxt ""
+"03132000.xhp\n"
+"tit\n"
+"help.text"
+msgid "CreateUnoListener Function"
+msgstr ""
+
+#. kGnFg
+#: 03132000.xhp
+msgctxt ""
+"03132000.xhp\n"
+"bm_id3155150\n"
+"help.text"
+msgid "<bookmark_value>CreateUnoListener function</bookmark_value>"
+msgstr ""
+
+#. uFGpR
+#: 03132000.xhp
+msgctxt ""
+"03132000.xhp\n"
+"hd_id3155150\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03132000.xhp\" name=\"CreateUnoListener Function\">CreateUnoListener Function</link>"
+msgstr ""
+
+#. KPYNU
+#: 03132000.xhp
+msgctxt ""
+"03132000.xhp\n"
+"par_id3149346\n"
+"help.text"
+msgid "Creates a Listener instance."
+msgstr ""
+
+#. X9iCk
+#: 03132000.xhp
+msgctxt ""
+"03132000.xhp\n"
+"par_id3153681\n"
+"help.text"
+msgid "Many Uno interfaces let you register listeners on a special listener interface. This allows you to listen for specific events and call up the appropriate listener method. The CreateUnoListener function waits for the called listener interface and then passes the interface an object that the interface supports. This object is then passed to the method to register the listener."
+msgstr ""
+
+#. JC793
+#: 03132000.xhp
+msgctxt ""
+"03132000.xhp\n"
+"par_id3143228\n"
+"help.text"
+msgid "oListener = CreateUnoListener( Prefixname, ListenerInterfaceName )"
+msgstr ""
+
+#. B3pJi
+#: 03132000.xhp
+msgctxt ""
+"03132000.xhp\n"
+"par_id3154046\n"
+"help.text"
+msgid "The following example is based on a Basic library object."
+msgstr ""
+
+#. XfhKG
+#: 03132000.xhp
+msgctxt ""
+"03132000.xhp\n"
+"par_id3149294\n"
+"help.text"
+msgid "The CreateUnoListener method requires two parameters. The first is a prefix and is explained in detail below. The second parameter is the fully qualified name of the Listener interface that you want to use."
+msgstr ""
+
+#. NxpXn
+#: 03132000.xhp
+msgctxt ""
+"03132000.xhp\n"
+"par_id3149670\n"
+"help.text"
+msgid "The Listener must then be added to the Broadcaster Object. This is done by calling the appropriate method for adding a Listener. These methods always follow the pattern \"addFooListener\", where \"Foo\" is the Listener Interface Type, without the 'X'. In this example, the addContainerListener method is called to register the XContainerListener:"
+msgstr ""
+
+#. dbBi5
+#: 03132000.xhp
+msgctxt ""
+"03132000.xhp\n"
+"par_id3154940\n"
+"help.text"
+msgid "oLib = BasicLibraries.Library1 ' Library1 must exist!"
+msgstr ""
+
+#. bCau9
+#: 03132000.xhp
+msgctxt ""
+"03132000.xhp\n"
+"par_id3150359\n"
+"help.text"
+msgid "oLib.addContainerListener( oListener ) ' Register the listener"
+msgstr ""
+
+#. CSsC5
+#: 03132000.xhp
+msgctxt ""
+"03132000.xhp\n"
+"par_id3154138\n"
+"help.text"
+msgid "The Listener is now registered. When an event occurs, the corresponding Listener calls the appropriate method from the com.sun.star.container.XContainerListener Interface."
+msgstr ""
+
+#. DE8U9
+#: 03132000.xhp
+msgctxt ""
+"03132000.xhp\n"
+"par_id3148922\n"
+"help.text"
+msgid "The prefix calls registered Listeners from Basic-subroutines. The Basic run-time system searches for Basic-subroutines or functions that have the name \"PrefixListenerMethode\" and calls them when found. Otherwise, a run-time error occurs."
+msgstr ""
+
+#. jUJqF
+#: 03132000.xhp
+msgctxt ""
+"03132000.xhp\n"
+"par_id3150768\n"
+"help.text"
+msgid "In this example, the Listener-Interface uses the following methods:"
+msgstr ""
+
+#. yK2Er
+#: 03132000.xhp
+msgctxt ""
+"03132000.xhp\n"
+"par_id3145173\n"
+"help.text"
+msgid "Listener base interface (com.sun.star.lang.XEventListener): base interface for all Listener Interfaces"
+msgstr ""
+
+#. MrmiF
+#: 03132000.xhp
+msgctxt ""
+"03132000.xhp\n"
+"par_id3159254\n"
+"help.text"
+msgid "Method of the com.sun.star.container.XContainerListener interface"
+msgstr ""
+
+#. RDU7w
+#: 03132000.xhp
+msgctxt ""
+"03132000.xhp\n"
+"par_id3146119\n"
+"help.text"
+msgid "Method of the com.sun.star.container.XContainerListener interface"
+msgstr ""
+
+#. SusGE
+#: 03132000.xhp
+msgctxt ""
+"03132000.xhp\n"
+"par_id3154013\n"
+"help.text"
+msgid "Method of the com.sun.star.container.XContainerListener interface"
+msgstr ""
+
+#. 9uxod
+#: 03132000.xhp
+msgctxt ""
+"03132000.xhp\n"
+"par_id3147435\n"
+"help.text"
+msgid "In this example, the prefix is ContListener_. The following subroutines must therefore be implemented in Basic:"
+msgstr ""
+
+#. DkGAT
+#: 03132000.xhp
+msgctxt ""
+"03132000.xhp\n"
+"par_id3150592\n"
+"help.text"
+msgid "An event structure type that contains information about an event exists for every Listener type. When a Listener method is called, an instance of this event is passed to the method as a parameter. Basic Listener methods can also call these event objects, so long as the appropriate parameter is passed in the Sub declaration. For example:"
+msgstr ""
+
+#. LEsCM
+#: 03132000.xhp
+msgctxt ""
+"03132000.xhp\n"
+"par_id3156056\n"
+"help.text"
+msgid "You do not need to include the parameter of an event object if the object is not used:"
+msgstr ""
+
+#. JEkFe
+#: 03132000.xhp
+msgctxt ""
+"03132000.xhp\n"
+"par_id3150042\n"
+"help.text"
+msgid "' Minimal implementation of Sub disposing"
+msgstr ""
+
+#. ptrQ7
+#: 03132000.xhp
+msgctxt ""
+"03132000.xhp\n"
+"par_id3150940\n"
+"help.text"
+msgid "Listener methods must <emph>always</emph> be implemented to avoid Basic run-time errors."
+msgstr ""
+
+#. DkK8h
+#: 03132100.xhp
+msgctxt ""
+"03132100.xhp\n"
+"tit\n"
+"help.text"
+msgid "GetGuiType Function"
+msgstr ""
+
+#. EwV8a
+#: 03132100.xhp
+msgctxt ""
+"03132100.xhp\n"
+"bm_id3147143\n"
+"help.text"
+msgid "<bookmark_value>GetGuiType function</bookmark_value>"
+msgstr ""
+
+#. JzY2R
+#: 03132100.xhp
+msgctxt ""
+"03132100.xhp\n"
+"hd_id3155310\n"
+"help.text"
+msgid "<variable id=\"getguitype2\"><link href=\"text/sbasic/shared/03132100.xhp\" name=\"GetGuiType Function\">GetGuiType Function</link></variable>"
+msgstr ""
+
+#. 2DTJG
+#: 03132100.xhp
+msgctxt ""
+"03132100.xhp\n"
+"par_id3152459\n"
+"help.text"
+msgid "Returns a numerical value that specifies the graphical user interface."
+msgstr ""
+
+#. AtD66
+#: 03132100.xhp
+msgctxt ""
+"03132100.xhp\n"
+"par_id3153323\n"
+"help.text"
+msgid "This function is only provided for downward compatibility to previous versions. The return value is not defined in client-server environments."
+msgstr ""
+
+#. JS4Ln
+#: 03132100.xhp
+msgctxt ""
+"03132100.xhp\n"
+"hd_id3154894\n"
+"help.text"
+msgid "Syntax:"
+msgstr ""
+
+#. DPQAT
+#: 03132100.xhp
+msgctxt ""
+"03132100.xhp\n"
+"hd_id3149346\n"
+"help.text"
+msgid "Return value:"
+msgstr ""
+
+#. M9kBS
+#: 03132100.xhp
+msgctxt ""
+"03132100.xhp\n"
+"par_id3153748\n"
+"help.text"
+msgid "Integer"
+msgstr ""
+
+#. rfPGz
+#: 03132100.xhp
+msgctxt ""
+"03132100.xhp\n"
+"hd_id3149177\n"
+"help.text"
+msgid "Return values:"
+msgstr ""
+
+#. 5Zq2B
+#: 03132100.xhp
+msgctxt ""
+"03132100.xhp\n"
+"par_id3147242\n"
+"help.text"
+msgid "1: Windows"
+msgstr ""
+
+#. oEFAg
+#: 03132100.xhp
+msgctxt ""
+"03132100.xhp\n"
+"par_id3156152\n"
+"help.text"
+msgid "4: UNIX"
+msgstr ""
+
+#. HRBeb
+#: 03132100.xhp
+msgctxt ""
+"03132100.xhp\n"
+"hd_id3148685\n"
+"help.text"
+msgid "Example:"
+msgstr ""
+
+#. EPYGA
+#: 03132200.xhp
+msgctxt ""
+"03132200.xhp\n"
+"tit\n"
+"help.text"
+msgid "ThisComponent Object"
+msgstr ""
+
+#. AKrki
+#: 03132200.xhp
+msgctxt ""
+"03132200.xhp\n"
+"bm_id3155342\n"
+"help.text"
+msgid "<bookmark_value>ThisComponent object</bookmark_value> <bookmark_value>components;addressing</bookmark_value>"
+msgstr ""
+
+#. 88n2h
+#: 03132200.xhp
+msgctxt ""
+"03132200.xhp\n"
+"hd_id3155342\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03132200.xhp\" name=\"ThisComponent Object\">ThisComponent Object</link>"
+msgstr ""
+
+#. ECFFs
+#: 03132200.xhp
+msgctxt ""
+"03132200.xhp\n"
+"par_id3154923\n"
+"help.text"
+msgid "<literal>ThisComponent</literal> represents the current document in Basic macros. It addresses the active component whose properties can be read and set, and whose methods can be called. Properties and methods available through <literal>ThisComponent</literal> depend on the document type."
+msgstr ""
+
+#. gXEZU
+#: 03132200.xhp
+msgctxt ""
+"03132200.xhp\n"
+"par_id241622797081182\n"
+"help.text"
+msgid "When the active window is a Base form, query, report, table or view, <literal>ThisComponent</literal> returns the current <literal>Form</literal> information."
+msgstr ""
+
+#. nJfmS
+#: 03132200.xhp
+msgctxt ""
+"03132200.xhp\n"
+"par_id871622796485123\n"
+"help.text"
+msgid "When active window is the Basic IDE, <literal>ThisComponent</literal> object returns the component owning the current script."
+msgstr ""
+
+#. 6Exm3
+#: 03132200.xhp
+msgctxt ""
+"03132200.xhp\n"
+"par_id3154123\n"
+"help.text"
+msgid "' updates the \"Table of Contents\" in a text doc"
+msgstr ""
+
+#. 3vMxq
+#: 03132200.xhp
+msgctxt ""
+"03132200.xhp\n"
+"par_id3153194\n"
+"help.text"
+msgid "index = allindexes.getByName(\"Table of Contents1\")"
+msgstr ""
+
+#. wXzGW
+#: 03132200.xhp
+msgctxt ""
+"03132200.xhp\n"
+"par_id3156422\n"
+"help.text"
+msgid "' use the default name for Table of Contents and a 1"
+msgstr ""
+
+#. XF28a
+#: 03132200.xhp
+msgctxt ""
+"03132200.xhp\n"
+"par_id101622646874083\n"
+"help.text"
+msgid "<link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1text_1_1TextDocument.html\" name=\"TextDocument API service\">com.sun.star.text.TextDocument</link> API service"
+msgstr ""
+
+#. E7kt6
+#: 03132200.xhp
+msgctxt ""
+"03132200.xhp\n"
+"par_id102622646874083\n"
+"help.text"
+msgid "<link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1sheet_1_1SpreadsheetDocument.html\" name=\"SpreadsheetDocument API service\">com.sun.star.sheet.SpreadsheetDocument</link> API service"
+msgstr ""
+
+#. jsHZ7
+#: 03132200.xhp
+msgctxt ""
+"03132200.xhp\n"
+"par_id103622646874083\n"
+"help.text"
+msgid "<link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1presentation_1_1PresentationDocument.html\" name=\"PresentationDocument API service\">com.sun.star.presentation.PresentationDocument</link> API service"
+msgstr ""
+
+#. uQFSg
+#: 03132200.xhp
+msgctxt ""
+"03132200.xhp\n"
+"par_id104622646874083\n"
+"help.text"
+msgid "<link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1drawing_1_1DrawingDocument.html\" name=\"DrawingDocument API service\">com.sun.star.drawing.DrawingDocument</link> API service"
+msgstr ""
+
+#. HjxZi
+#: 03132200.xhp
+msgctxt ""
+"03132200.xhp\n"
+"par_id105622646874083\n"
+"help.text"
+msgid "<link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1formula_1_1FormulaProperties.html\" name=\"FormulaProperties API service\">com.sun.star.formula.FormulaProperties</link> API service"
+msgstr ""
+
+#. FLbnX
+#: 03132200.xhp
+msgctxt ""
+"03132200.xhp\n"
+"par_id106622646874083\n"
+"help.text"
+msgid "<link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1sdb_1_1OfficeDatabaseDocument.html\" name=\"OfficeDatabaseDocument API service\">com.sun.star.sdb.OfficeDatabaseDocument</link> API service"
+msgstr ""
+
+#. vZW9w
+#: 03132200.xhp
+msgctxt ""
+"03132200.xhp\n"
+"par_id581622646875379\n"
+"help.text"
+msgid "<link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1document_1_1OfficeDocument.html\" name=\"OfficeDocument API service\">com.sun.star.document.OfficeDocument</link> API service"
+msgstr ""
+
+#. QgZSF
+#: 03132300.xhp
+msgctxt ""
+"03132300.xhp\n"
+"tit\n"
+"help.text"
+msgid "CreateUnoValue Function"
+msgstr ""
+
+#. VGQcy
+#: 03132300.xhp
+msgctxt ""
+"03132300.xhp\n"
+"bm_id3150682\n"
+"help.text"
+msgid "<bookmark_value>CreateUnoValue function</bookmark_value>"
+msgstr ""
+
+#. d8Ftc
+#: 03132300.xhp
+msgctxt ""
+"03132300.xhp\n"
+"hd_id3150682\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03132300.xhp\" name=\"CreateUnoValue Function\">CreateUnoValue Function</link>"
+msgstr ""
+
+#. abSpa
+#: 03132300.xhp
+msgctxt ""
+"03132300.xhp\n"
+"par_id3147291\n"
+"help.text"
+msgid "Returns an object that represents a strictly typed value referring to the Uno type system."
+msgstr ""
+
+#. JtnN4
+#: 03132300.xhp
+msgctxt ""
+"03132300.xhp\n"
+"par_id3143267\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 ""
+
+#. JnEAt
+#: 03132300.xhp
+msgctxt ""
+"03132300.xhp\n"
+"par_id3153626\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 ""
+
+#. vixw3
+#: 03132300.xhp
+msgctxt ""
+"03132300.xhp\n"
+"par_id3154760\n"
+"help.text"
+msgid "oUnoValue = CreateUnoValue( \"[]byte\", MyBasicValue ) ' to get a byte sequence."
+msgstr ""
+
+#. pEjGF
+#: 03132300.xhp
+msgctxt ""
+"03132300.xhp\n"
+"par_id3150541\n"
+"help.text"
+msgid "If <literal>CreateUnoValue</literal> cannot be converted to the specified Uno type, and error occurs. For the conversion, the <literal>com.sun.star.script.Converter</literal> service is used."
+msgstr ""
+
+#. bT3DS
+#: 03132300.xhp
+msgctxt ""
+"03132300.xhp\n"
+"par_id3153524\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 <literal>XPropertySet::setPropertyValue( Name, Value )</literal> or <literal>X???Container::insertBy???( ???, Value )</literal>, from $[officename] Basic. The Basic runtime does not recognize these types as they are only defined in the corresponding service."
+msgstr ""
+
+#. TpSGK
+#: 03132300.xhp
+msgctxt ""
+"03132300.xhp\n"
+"par_id3154366\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 <literal>CreateUnoValue()</literal> function to create a value for the unknown Uno type."
+msgstr ""
+
+#. QxoCy
+#: 03132300.xhp
+msgctxt ""
+"03132300.xhp\n"
+"par_id3150769\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 <literal>CreateUnoValue()</literal> function will only lead to additional converting operations that slow down the Basic execution."
+msgstr ""
+
+#. yUCwp
+#: 03132400.xhp
+msgctxt ""
+"03132400.xhp\n"
+"tit\n"
+"help.text"
+msgid "CreateObject Function"
+msgstr ""
+
+#. 6XBLd
+#: 03132400.xhp
+msgctxt ""
+"03132400.xhp\n"
+"bm_id659810\n"
+"help.text"
+msgid "<bookmark_value>CreateObject function</bookmark_value>"
+msgstr ""
+
+#. QpKCT
+#: 03132400.xhp
+msgctxt ""
+"03132400.xhp\n"
+"par_idN10580\n"
+"help.text"
+msgid "<variable id=\"CreateObject_h1\"><link href=\"text/sbasic/shared/03132400.xhp\">CreateObject Function</link></variable>"
+msgstr ""
+
+#. PAXDf
+#: 03132400.xhp
+msgctxt ""
+"03132400.xhp\n"
+"par_idN10590\n"
+"help.text"
+msgid "<ahelp hid=\".\">Creates a UNO object. On Windows, can also create OLE objects.</ahelp>"
+msgstr ""
+
+#. rw8go
+#: 03132400.xhp
+msgctxt ""
+"03132400.xhp\n"
+"par_idN1059F\n"
+"help.text"
+msgid "This method creates instances of the type that is passed as parameter."
+msgstr ""
+
+#. SHgqs
+#: 03132400.xhp
+msgctxt ""
+"03132400.xhp\n"
+"par_id191633632167310\n"
+"help.text"
+msgid "<emph>type:</emph> the type of the object to be created, as a string."
+msgstr ""
+
+#. Gthw7
+#: 03132500.xhp
+msgctxt ""
+"03132500.xhp\n"
+"tit\n"
+"help.text"
+msgid "GetDefaultContext Function"
+msgstr ""
+
+#. BWuFq
+#: 03132500.xhp
+msgctxt ""
+"03132500.xhp\n"
+"bm_id4761192\n"
+"help.text"
+msgid "<bookmark_value>GetDefaultContext function</bookmark_value>"
+msgstr ""
+
+#. 9Eu6p
+#: 03132500.xhp
+msgctxt ""
+"03132500.xhp\n"
+"par_idN10580\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03132500.xhp\">GetDefaultContext Function</link>"
+msgstr ""
+
+#. WkwpA
+#: 03132500.xhp
+msgctxt ""
+"03132500.xhp\n"
+"par_idN10590\n"
+"help.text"
+msgid "Returns the default context of the process service factory, if existent, else returns a null reference."
+msgstr ""
+
+#. SanWM
+#: 03132500.xhp
+msgctxt ""
+"03132500.xhp\n"
+"par_idN10593\n"
+"help.text"
+msgid "This function returns the default component context to be used, if instantiating services via XmultiServiceFactory. See the <item type=\"literal\">Professional UNO</item> chapter in the <item type=\"literal\">Developer's Guide</item> on <link href=\"https://api.libreoffice.org\" name=\"api.libreoffice.org\">api.libreoffice.org</link> for more information."
+msgstr ""
+
+#. DJUpk
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"tit\n"
+"help.text"
+msgid "DDB Function [VBA]"
+msgstr ""
+
+#. d8gef
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>DDB function</bookmark_value>"
+msgstr ""
+
+#. E85CC
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140000.xhp\" name=\"DDB Function [VBA]\">DDB Function [VBA]</link>"
+msgstr ""
+
+#. rGkXG
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the depreciation of an asset for a specified period using the arithmetic-declining method."
+msgstr ""
+
+#. KfuMp
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332738\n"
+"help.text"
+msgid "<emph>Cost</emph> fixes the initial cost of an asset."
+msgstr ""
+
+#. mWGxG
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142331999\n"
+"help.text"
+msgid "<emph>Salvage</emph> fixes the value of an asset at the end of its life."
+msgstr ""
+
+#. FvuQV
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338147\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 ""
+
+#. CXDxf
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338917\n"
+"help.text"
+msgid "<emph>Period</emph> states the period for which the value is to be calculated."
+msgstr ""
+
+#. mWzMf
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142335816\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 ""
+
+#. PSocM
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3145609\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 ""
+
+#. eDUy5
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print ddb_yr1 ' returns 1,721.81 currency units."
+msgstr ""
+
+#. SuN6U
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3149998\">DDB function in CALC</link>"
+msgstr ""
+
+#. CB2Rc
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"tit\n"
+"help.text"
+msgid "FV Function [VBA]"
+msgstr ""
+
+#. uaTHU
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>FV function</bookmark_value>"
+msgstr ""
+
+#. 4mJEP
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140001.xhp\" name=\"FV Function [VBA]\">FV Function [VBA]</link>"
+msgstr ""
+
+#. xLDE6
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the future value of an investment based on periodic, constant payments and a constant interest rate (Future Value)."
+msgstr ""
+
+#. GgpBN
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#. nuLEX
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241668\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods (payment period)."
+msgstr ""
+
+#. Rb8hf
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#. xbRhK
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> (optional) is the (present) cash value of an investment."
+msgstr ""
+
+#. sBDgf
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#. RgSMC
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#. GqcwG
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#. 8F7Qm
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myFV ' returns 4234.00 currency units. The value at the end of the investment is 4234.00 currency units."
+msgstr ""
+
+#. mTaud
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3151205\">FV function in CALC</link>"
+msgstr ""
+
+#. oxTJD
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"tit\n"
+"help.text"
+msgid "IPmt Function [VBA]"
+msgstr ""
+
+#. xFSV4
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IPmt function</bookmark_value>"
+msgstr ""
+
+#. j6Dqb
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140002.xhp\" name=\"IPmt Function [VBA]\">IPmt Function [VBA]</link>"
+msgstr ""
+
+#. NhJBQ
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the periodic amortizement for an investment with regular payments and a constant interest rate."
+msgstr ""
+
+#. U4AjW
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#. d9LjU
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Per</emph> is the period, for which the compound interest is calculated. Period=NPER if compound interest for the last period is calculated."
+msgstr ""
+
+#. pYEPW
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730134582\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
+msgstr ""
+
+#. ThuAb
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730144688\n"
+"help.text"
+msgid "<emph>PV</emph> is the present cash value in sequence of payments."
+msgstr ""
+
+#. M8msq
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730148520\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the desired value (future value) at the end of the periods."
+msgstr ""
+
+#. NAkQG
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730141431\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) is the due date for the periodic payments."
+msgstr ""
+
+#. DAsKq
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#. kvFzu
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#. cc7HY
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myIPmt ' returns -352.97 currency units. The compound interest during the fifth period (year) is 352.97 currency units."
+msgstr ""
+
+#. 8dXzf
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3149339\">IPMT function in CALC</link>"
+msgstr ""
+
+#. dif5D
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"tit\n"
+"help.text"
+msgid "IRR Function [VBA]"
+msgstr ""
+
+#. pBTcf
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IRR function</bookmark_value>"
+msgstr ""
+
+#. htTGN
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140003.xhp\" name=\"IRR Function [VBA]\">IRR Function [VBA]</link>"
+msgstr ""
+
+#. GC4DC
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the internal rate of return for an investment."
+msgstr ""
+
+#. oGM2A
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>The array of values of the cash-flow. 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 ""
+
+#. BFPX6
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Guess</emph> An initial estimate at what the IRR will be."
+msgstr ""
+
+#. BU7LM
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print irrValue ' returns 11.3321028236252 . The internal rate of return of the cash flow."
+msgstr ""
+
+#. CkEV5
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3153948\">IRR function in CALC</link>"
+msgstr ""
+
+#. htBbj
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"tit\n"
+"help.text"
+msgid "MIRR Function [VBA]"
+msgstr ""
+
+#. AZUV5
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>MIRR function</bookmark_value>"
+msgstr ""
+
+#. ztrr4
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140004.xhp\" name=\"MIRR Function [VBA]\">MIRR Function [VBA]</link>"
+msgstr ""
+
+#. iEx4J
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the modified internal rate of return of a series of investments."
+msgstr ""
+
+#. eoGsD
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>An array of cash flows, representing a series of payments and income, where negative values are treated as payments and positive values are treated as income. This array must contain at least one negative and at least one positive value."
+msgstr ""
+
+#. BWkcM
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170513518949\n"
+"help.text"
+msgid "<emph>Investment</emph>: is the rate of interest of the investments (the negative values of the array)."
+msgstr ""
+
+#. HNYms
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>ReinvestRate:</emph> the rate of interest of the reinvestment (the positive values of the array)."
+msgstr ""
+
+#. EL4an
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print mirrValue ' returns 94.16. The modified internal rate of return of the cash flow."
+msgstr ""
+
+#. LLonT
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060119.xhp#bm_id3148974\">MIRR function in CALC</link>"
+msgstr ""
+
+#. m3ULW
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"tit\n"
+"help.text"
+msgid "NPer Function [VBA]"
+msgstr ""
+
+#. 4Ltym
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>NPer function</bookmark_value>"
+msgstr ""
+
+#. ZmG2N
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140005.xhp\" name=\"NPer Function [VBA]\">NPer Function [VBA]</link>"
+msgstr ""
+
+#. SExLZ
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the number of periods for a loan or investment."
+msgstr ""
+
+#. UhApD
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#. oUPFt
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#. 4APw9
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> is the (present) cash value of an investment."
+msgstr ""
+
+#. HxyXz
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061620170603217534\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the future value of the loan / investment."
+msgstr ""
+
+#. BE7hi
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#. L3fxR
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#. vMo5e
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#. kK636
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print period ' returns -12,02. The payment period covers 12.02 periods."
+msgstr ""
+
+#. KsSWF
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3156435\">NPER function in CALC</link>"
+msgstr ""
+
+#. ZEYEy
+#: 03140006.xhp
+msgctxt ""
+"03140006.xhp\n"
+"tit\n"
+"help.text"
+msgid "NPV Function [VBA]"
+msgstr ""
+
+#. GgAG9
+#: 03140006.xhp
+msgctxt ""
+"03140006.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>NPV function</bookmark_value>"
+msgstr ""
+
+#. oTyBY
+#: 03140006.xhp
+msgctxt ""
+"03140006.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140006.xhp\" name=\"NPV Function [VBA]\">NPV Function [VBA]</link>"
+msgstr ""
+
+#. TFoMM
+#: 03140006.xhp
+msgctxt ""
+"03140006.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the Net Present Value of an investment, based on a supplied discount rate, and a series of deposits and withdrawals."
+msgstr ""
+
+#. rPL9G
+#: 03140006.xhp
+msgctxt ""
+"03140006.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the discount rate for a period."
+msgstr ""
+
+#. U73F8
+#: 03140006.xhp
+msgctxt ""
+"03140006.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Values()</emph> is an array that represent deposits (positive values) or withdrawals (negative values)."
+msgstr ""
+
+#. UaBkD
+#: 03140006.xhp
+msgctxt ""
+"03140006.xhp\n"
+"par_id230720172234199811\n"
+"help.text"
+msgid "Print p ' returns 174,894967305331"
+msgstr ""
+
+#. ezmrZ
+#: 03140006.xhp
+msgctxt ""
+"03140006.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060119.xhp#bm_id3149242\">NPV function in CALC</link>"
+msgstr ""
+
+#. FrKMh
+#: 03140007.xhp
+msgctxt ""
+"03140007.xhp\n"
+"tit\n"
+"help.text"
+msgid "Pmt Function [VBA]"
+msgstr ""
+
+#. FF6YQ
+#: 03140007.xhp
+msgctxt ""
+"03140007.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>Pmt function</bookmark_value>"
+msgstr ""
+
+#. UgwFi
+#: 03140007.xhp
+msgctxt ""
+"03140007.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140007.xhp\" name=\"Pmt Function [VBA]\">Pmt Function [VBA]</link>"
+msgstr ""
+
+#. rtk8j
+#: 03140007.xhp
+msgctxt ""
+"03140007.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the constant periodic payments for a loan or investment."
+msgstr ""
+
+#. 9h46E
+#: 03140007.xhp
+msgctxt ""
+"03140007.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#. uSprH
+#: 03140007.xhp
+msgctxt ""
+"03140007.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
+msgstr ""
+
+#. H7Bzz
+#: 03140007.xhp
+msgctxt ""
+"03140007.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> is the (present) cash value of an investment."
+msgstr ""
+
+#. N8dUY
+#: 03140007.xhp
+msgctxt ""
+"03140007.xhp\n"
+"par_id061620170603217534\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the future value of the loan / investment."
+msgstr ""
+
+#. 6FVGg
+#: 03140007.xhp
+msgctxt ""
+"03140007.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#. rJ4Ua
+#: 03140007.xhp
+msgctxt ""
+"03140007.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#. F2UYe
+#: 03140007.xhp
+msgctxt ""
+"03140007.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#. RQknF
+#: 03140007.xhp
+msgctxt ""
+"03140007.xhp\n"
+"par_id230720172323446103\n"
+"help.text"
+msgid "' Calculate the monthly payments to a loan that is to be paid in full over 6 years."
+msgstr ""
+
+#. 3KSqt
+#: 03140007.xhp
+msgctxt ""
+"03140007.xhp\n"
+"par_id230720172323448289\n"
+"help.text"
+msgid "' Interest is 10% per year and payments are made at the end of the month."
+msgstr ""
+
+#. ZhEDv
+#: 03140007.xhp
+msgctxt ""
+"03140007.xhp\n"
+"par_id230720172323444810\n"
+"help.text"
+msgid "print MyPmt 'is calculated to be -1852,58377757705"
+msgstr ""
+
+#. Z5QnF
+#: 03140007.xhp
+msgctxt ""
+"03140007.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060119.xhp#bm_id3149577\">PMT function in CALC</link>"
+msgstr ""
+
+#. asC5n
+#: 03140008.xhp
+msgctxt ""
+"03140008.xhp\n"
+"tit\n"
+"help.text"
+msgid "PPmt Function [VBA]"
+msgstr ""
+
+#. UeDd8
+#: 03140008.xhp
+msgctxt ""
+"03140008.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>PPmt function</bookmark_value>"
+msgstr ""
+
+#. nu8jw
+#: 03140008.xhp
+msgctxt ""
+"03140008.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140008.xhp\" name=\"PPmt Function [VBA]\">PPmt Function [VBA]</link>"
+msgstr ""
+
+#. rqzFy
+#: 03140008.xhp
+msgctxt ""
+"03140008.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "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."
+msgstr ""
+
+#. CDVH2
+#: 03140008.xhp
+msgctxt ""
+"03140008.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#. dThEC
+#: 03140008.xhp
+msgctxt ""
+"03140008.xhp\n"
+"par_id230720172341443986\n"
+"help.text"
+msgid "<emph>Per</emph> The period number for which you want to calculate the principal payment (must be an integer between 1 and Nper)."
+msgstr ""
+
+#. yNqFG
+#: 03140008.xhp
+msgctxt ""
+"03140008.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
+msgstr ""
+
+#. UG2KA
+#: 03140008.xhp
+msgctxt ""
+"03140008.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> is the (present) cash value of an investment."
+msgstr ""
+
+#. Aj55j
+#: 03140008.xhp
+msgctxt ""
+"03140008.xhp\n"
+"par_id061620170603217534\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the future value of the loan / investment."
+msgstr ""
+
+#. CPtSD
+#: 03140008.xhp
+msgctxt ""
+"03140008.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#. XCNmC
+#: 03140008.xhp
+msgctxt ""
+"03140008.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#. vZpEE
+#: 03140008.xhp
+msgctxt ""
+"03140008.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#. A2y2B
+#: 03140008.xhp
+msgctxt ""
+"03140008.xhp\n"
+"par_id230720172348083623\n"
+"help.text"
+msgid "' Calculate the principal payments during months 4 & 5, for a loan that is to be paid in full"
+msgstr ""
+
+#. PxKHY
+#: 03140008.xhp
+msgctxt ""
+"03140008.xhp\n"
+"par_id230720172348089449\n"
+"help.text"
+msgid "' over 6 years. Interest is 10% per year and payments are made at the end of the month."
+msgstr ""
+
+#. sp3CD
+#: 03140008.xhp
+msgctxt ""
+"03140008.xhp\n"
+"par_id230720172348088178\n"
+"help.text"
+msgid "' Principal payment during month 4:"
+msgstr ""
+
+#. wEVUq
+#: 03140008.xhp
+msgctxt ""
+"03140008.xhp\n"
+"par_id230720172348086687\n"
+"help.text"
+msgid "print ppMth4 ' ppMth4 is calculated to be -1044,94463903636."
+msgstr ""
+
+#. QXLgY
+#: 03140008.xhp
+msgctxt ""
+"03140008.xhp\n"
+"par_id230720172348081077\n"
+"help.text"
+msgid "' Principal payment during month 5:"
+msgstr ""
+
+#. YE9wi
+#: 03140008.xhp
+msgctxt ""
+"03140008.xhp\n"
+"par_id230720172348086456\n"
+"help.text"
+msgid "print ppMth5' ppMth5 is calculated to be -1053,65251102833."
+msgstr ""
+
+#. V9w7v
+#: 03140008.xhp
+msgctxt ""
+"03140008.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060119.xhp#bm_id3150026\">PPMT function in CALC</link>"
+msgstr ""
+
+#. vxyjE
+#: 03140009.xhp
+msgctxt ""
+"03140009.xhp\n"
+"tit\n"
+"help.text"
+msgid "PV Function [VBA]"
+msgstr ""
+
+#. DvnkS
+#: 03140009.xhp
+msgctxt ""
+"03140009.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>PV function</bookmark_value>"
+msgstr ""
+
+#. Apiz9
+#: 03140009.xhp
+msgctxt ""
+"03140009.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140009.xhp\" name=\"PV Function [VBA]\">PV Function [VBA]</link>"
+msgstr ""
+
+#. W2mK8
+#: 03140009.xhp
+msgctxt ""
+"03140009.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the Present Value of an investment resulting from a series of regular payments."
+msgstr ""
+
+#. xetQw
+#: 03140009.xhp
+msgctxt ""
+"03140009.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#. SNnA8
+#: 03140009.xhp
+msgctxt ""
+"03140009.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
+msgstr ""
+
+#. Fo6RG
+#: 03140009.xhp
+msgctxt ""
+"03140009.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the regular payment made per period."
+msgstr ""
+
+#. DjGbG
+#: 03140009.xhp
+msgctxt ""
+"03140009.xhp\n"
+"par_id061620170603217534\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the future value of the loan / investment."
+msgstr ""
+
+#. 9v9AD
+#: 03140009.xhp
+msgctxt ""
+"03140009.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#. EhdfK
+#: 03140009.xhp
+msgctxt ""
+"03140009.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#. ap6Cs
+#: 03140009.xhp
+msgctxt ""
+"03140009.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#. 4D5EZ
+#: 03140009.xhp
+msgctxt ""
+"03140009.xhp\n"
+"par_id240720170007446775\n"
+"help.text"
+msgid "' Calculate the present value of an annuity that pays $1,000 per month over 6 years."
+msgstr ""
+
+#. 3VVpF
+#: 03140009.xhp
+msgctxt ""
+"03140009.xhp\n"
+"par_id240720170007459899\n"
+"help.text"
+msgid "' Interest is 10% per year and each payment is made at the end of the month."
+msgstr ""
+
+#. DMzHG
+#: 03140009.xhp
+msgctxt ""
+"03140009.xhp\n"
+"par_id240720170007455988\n"
+"help.text"
+msgid "print pv1 ' pv1 is calculated to be 53978,6654781073."
+msgstr ""
+
+#. pwgGE
+#: 03140009.xhp
+msgctxt ""
+"03140009.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3147556\">PV function in CALC</link>"
+msgstr ""
+
+#. wGrq5
+#: 03140010.xhp
+msgctxt ""
+"03140010.xhp\n"
+"tit\n"
+"help.text"
+msgid "Rate Function [VBA]"
+msgstr ""
+
+#. EJ7LR
+#: 03140010.xhp
+msgctxt ""
+"03140010.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>Rate function</bookmark_value>"
+msgstr ""
+
+#. cFGDM
+#: 03140010.xhp
+msgctxt ""
+"03140010.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140010.xhp\" name=\"Rate Function [VBA]\">Rate Function [VBA]</link>"
+msgstr ""
+
+#. wd5A3
+#: 03140010.xhp
+msgctxt ""
+"03140010.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the interest rate of a loan or an investment."
+msgstr ""
+
+#. dGUHn
+#: 03140010.xhp
+msgctxt ""
+"03140010.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
+msgstr ""
+
+#. MPYBY
+#: 03140010.xhp
+msgctxt ""
+"03140010.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the regular payment made per period."
+msgstr ""
+
+#. CHVqQ
+#: 03140010.xhp
+msgctxt ""
+"03140010.xhp\n"
+"par_id061620170603217534\n"
+"help.text"
+msgid "<emph>PV</emph> is the present value of the loan / investment."
+msgstr ""
+
+#. Td38J
+#: 03140010.xhp
+msgctxt ""
+"03140010.xhp\n"
+"par_id061620171603217534\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the future value of the loan / investment."
+msgstr ""
+
+#. bGV6U
+#: 03140010.xhp
+msgctxt ""
+"03140010.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#. MmFDv
+#: 03140010.xhp
+msgctxt ""
+"03140010.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#. U7fmD
+#: 03140010.xhp
+msgctxt ""
+"03140010.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#. tqLE3
+#: 03140010.xhp
+msgctxt ""
+"03140010.xhp\n"
+"par_id240720170028547253\n"
+"help.text"
+msgid "<emph>Guess</emph>(optional) determines the estimated value of the interest with iterative calculation."
+msgstr ""
+
+#. FCE3H
+#: 03140010.xhp
+msgctxt ""
+"03140010.xhp\n"
+"par_id240720170039056654\n"
+"help.text"
+msgid "' Calculate the interest rate required to pay off a loan of $100,000 over"
+msgstr ""
+
+#. X5UsC
+#: 03140010.xhp
+msgctxt ""
+"03140010.xhp\n"
+"par_id240720170039057978\n"
+"help.text"
+msgid "' 6 years, with payments of $1,500, due at the end of each month."
+msgstr ""
+
+#. GG64r
+#: 03140010.xhp
+msgctxt ""
+"03140010.xhp\n"
+"par_id240720170039052476\n"
+"help.text"
+msgid "print mRate' mRate is calculated to be 0.00213778025343334"
+msgstr ""
+
+#. WG4VC
+#: 03140010.xhp
+msgctxt ""
+"03140010.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3154267\">RATE function in CALC</link>"
+msgstr ""
+
+#. zRgrg
+#: 03140011.xhp
+msgctxt ""
+"03140011.xhp\n"
+"tit\n"
+"help.text"
+msgid "SLN Function [VBA]"
+msgstr ""
+
+#. DW8GD
+#: 03140011.xhp
+msgctxt ""
+"03140011.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>SLN function</bookmark_value>"
+msgstr ""
+
+#. iFETE
+#: 03140011.xhp
+msgctxt ""
+"03140011.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140011.xhp\" name=\"SLN Function [VBA]\">SLN Function [VBA]</link>"
+msgstr ""
+
+#. ikzyz
+#: 03140011.xhp
+msgctxt ""
+"03140011.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the straight-line depreciation of an asset for one period. The amount of the depreciation is constant during the depreciation period."
+msgstr ""
+
+#. z4PzB
+#: 03140011.xhp
+msgctxt ""
+"03140011.xhp\n"
+"par_id240720170117391741\n"
+"help.text"
+msgid "<emph>Cost</emph> is the initial cost of an asset."
+msgstr ""
+
+#. 2DoQ7
+#: 03140011.xhp
+msgctxt ""
+"03140011.xhp\n"
+"par_id24072017011739895\n"
+"help.text"
+msgid "<emph>Salvage</emph> is the value of an asset at the end of the depreciation."
+msgstr ""
+
+#. gEFms
+#: 03140011.xhp
+msgctxt ""
+"03140011.xhp\n"
+"par_id240720170117395610\n"
+"help.text"
+msgid "<emph>Life </emph>is the depreciation period determining the number of periods in the depreciation of the asset."
+msgstr ""
+
+#. wwJAA
+#: 03140011.xhp
+msgctxt ""
+"03140011.xhp\n"
+"par_id24072017011739366\n"
+"help.text"
+msgid "REM Calculate the yearly depreciation of an asset that cost $10,000 at"
+msgstr ""
+
+#. JeAG8
+#: 03140011.xhp
+msgctxt ""
+"03140011.xhp\n"
+"par_id240720170117398814\n"
+"help.text"
+msgid "REM the start of year 1, and has a salvage value of $1,000 after 5 years."
+msgstr ""
+
+#. 4BUi9
+#: 03140011.xhp
+msgctxt ""
+"03140011.xhp\n"
+"par_id240720170117391728\n"
+"help.text"
+msgid "print y_dep ' returns 1500."
+msgstr ""
+
+#. AAatH
+#: 03140011.xhp
+msgctxt ""
+"03140011.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060119.xhp#bm_id3148912\">SLN function in CALC</link>"
+msgstr ""
+
+#. 6nAVP
+#: 03140012.xhp
+msgctxt ""
+"03140012.xhp\n"
+"tit\n"
+"help.text"
+msgid "SYD Function [VBA]"
+msgstr ""
+
+#. Vtujc
+#: 03140012.xhp
+msgctxt ""
+"03140012.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>SYD function</bookmark_value>"
+msgstr ""
+
+#. QAv7h
+#: 03140012.xhp
+msgctxt ""
+"03140012.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140012.xhp\" name=\"SYD Function [VBA]\">SYD Function [VBA]</link>"
+msgstr ""
+
+#. MAefZ
+#: 03140012.xhp
+msgctxt ""
+"03140012.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the arithmetic-declining depreciation rate."
+msgstr ""
+
+#. 3HLSz
+#: 03140012.xhp
+msgctxt ""
+"03140012.xhp\n"
+"par_id240720170117391741\n"
+"help.text"
+msgid "<emph>Cost</emph> is the initial cost of an asset."
+msgstr ""
+
+#. 3WD4k
+#: 03140012.xhp
+msgctxt ""
+"03140012.xhp\n"
+"par_id24072017011739895\n"
+"help.text"
+msgid "<emph>Salvage</emph> is the value of an asset at the end of the depreciation."
+msgstr ""
+
+#. Np8vp
+#: 03140012.xhp
+msgctxt ""
+"03140012.xhp\n"
+"par_id240720170117395610\n"
+"help.text"
+msgid "<emph>Life</emph> is the depreciation period determining the number of periods in the depreciation of the asset."
+msgstr ""
+
+#. TkePs
+#: 03140012.xhp
+msgctxt ""
+"03140012.xhp\n"
+"par_id240720170144224764\n"
+"help.text"
+msgid "<emph>Period</emph> is the period number for which you want to calculate the depreciation."
+msgstr ""
+
+#. Mcu4F
+#: 03140012.xhp
+msgctxt ""
+"03140012.xhp\n"
+"par_id240720170144225698\n"
+"help.text"
+msgid "REM Calculate the yearly depreciation of an asset that cost $10,000 at"
+msgstr ""
+
+#. u9ABj
+#: 03140012.xhp
+msgctxt ""
+"03140012.xhp\n"
+"par_id240720170144223210\n"
+"help.text"
+msgid "REM the start of year 1, and has a salvage value of $1,000 after 5 years."
+msgstr ""
+
+#. 898Jk
+#: 03140012.xhp
+msgctxt ""
+"03140012.xhp\n"
+"par_id240720170144223139\n"
+"help.text"
+msgid "REM Calculate the depreciation during year 1."
+msgstr ""
+
+#. 2NwmB
+#: 03140012.xhp
+msgctxt ""
+"03140012.xhp\n"
+"par_id240720170144221476\n"
+"help.text"
+msgid "print syd_yr1 ' syd_yr1 is now equal to 3000."
+msgstr ""
+
+#. RFwpN
+#: 03140012.xhp
+msgctxt ""
+"03140012.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3152978\">SYD function in CALC</link>"
+msgstr ""
+
+#. EV43G
+#: 03150000.xhp
+msgctxt ""
+"03150000.xhp\n"
+"tit\n"
+"help.text"
+msgid "FormatDateTime Function [VBA]"
+msgstr ""
+
+#. zd78N
+#: 03150000.xhp
+msgctxt ""
+"03150000.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>FormatDateTime function</bookmark_value>"
+msgstr ""
+
+#. R4FFx
+#: 03150000.xhp
+msgctxt ""
+"03150000.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03150000.xhp\" name=\"FormatDateTime Function [VBA]\">FormatDateTime Function [VBA]</link>"
+msgstr ""
+
+#. EFKxm
+#: 03150000.xhp
+msgctxt ""
+"03150000.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Applies a date and/or time format to a date expression and returns the result as a string."
+msgstr ""
+
+#. xsRcr
+#: 03150000.xhp
+msgctxt ""
+"03150000.xhp\n"
+"par_id240720170117391741\n"
+"help.text"
+msgid "<emph>DateExpression</emph>: The date expression to be formatted."
+msgstr ""
+
+#. WC3h8
+#: 03150000.xhp
+msgctxt ""
+"03150000.xhp\n"
+"par_id24072017011739895\n"
+"help.text"
+msgid "<emph>NamedFormat</emph>: An optional <emph>vbDateTimeFormat</emph> enumeration specifying the format that is to be applied to the date and time expression. If omitted, the value <emph>vbGeneralDate</emph> is used."
+msgstr ""
+
+#. 9KCAo
+#: 03150000.xhp
+msgctxt ""
+"03150000.xhp\n"
+"hd_id811512136434300\n"
+"help.text"
+msgid "Date and Time formats (vbDateTimeFormat enumeration)"
+msgstr ""
+
+#. THiYn
+#: 03150000.xhp
+msgctxt ""
+"03150000.xhp\n"
+"par_id201512137337536\n"
+"help.text"
+msgid "Named Constant"
+msgstr ""
+
+#. AoBxM
+#: 03150000.xhp
+msgctxt ""
+"03150000.xhp\n"
+"par_id481512137342798\n"
+"help.text"
+msgid "Value"
+msgstr ""
+
+#. TtduL
+#: 03150000.xhp
+msgctxt ""
+"03150000.xhp\n"
+"par_id781512137345583\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. G67rA
+#: 03150000.xhp
+msgctxt ""
+"03150000.xhp\n"
+"par_id991512137353869\n"
+"help.text"
+msgid "Displays a date and/or time as defined in your system's General Date setting. If a date only, no time is displayed; If a time only, no date is displayed."
+msgstr ""
+
+#. DgHi6
+#: 03150000.xhp
+msgctxt ""
+"03150000.xhp\n"
+"par_id841512137597989\n"
+"help.text"
+msgid "Display a date using the long date format specified in your computer's regional settings."
+msgstr ""
+
+#. qEzCP
+#: 03150000.xhp
+msgctxt ""
+"03150000.xhp\n"
+"par_id841512137397989\n"
+"help.text"
+msgid "Display a date using the short date format specified in your computer's regional settings."
+msgstr ""
+
+#. PdzuG
+#: 03150000.xhp
+msgctxt ""
+"03150000.xhp\n"
+"par_id841512147597989\n"
+"help.text"
+msgid "Displays a time as defined in your system's Long Time settings."
+msgstr ""
+
+#. TJciz
+#: 03150000.xhp
+msgctxt ""
+"03150000.xhp\n"
+"par_id841517137597989\n"
+"help.text"
+msgid "Display a time using the 24-hour format (hh:mm)."
+msgstr ""
+
+#. ghKh3
+#: 03150000.xhp
+msgctxt ""
+"03150000.xhp\n"
+"par_id541512148446032\n"
+"help.text"
+msgid "msgbox(\"General date format : \" & FormatDateTime(d))"
+msgstr ""
+
+#. BEFRi
+#: 03150000.xhp
+msgctxt ""
+"03150000.xhp\n"
+"par_id71512148472413\n"
+"help.text"
+msgid "msgbox(\"Long date format : \" & FormatDateTime(d,vbLongDate))"
+msgstr ""
+
+#. ikvR4
+#: 03150000.xhp
+msgctxt ""
+"03150000.xhp\n"
+"par_id561512148491949\n"
+"help.text"
+msgid "msgbox(\"Short date format : \" & FormatDateTime(d,vbShortDate))"
+msgstr ""
+
+#. 8abRs
+#: 03150000.xhp
+msgctxt ""
+"03150000.xhp\n"
+"par_id521512148501199\n"
+"help.text"
+msgid "msgbox(\"Long time format : \" & FormatDateTime(d,3))"
+msgstr ""
+
+#. aJoCN
+#: 03150000.xhp
+msgctxt ""
+"03150000.xhp\n"
+"par_id521512148513930\n"
+"help.text"
+msgid "msgbox(\"Short time format : \" & FormatDateTime(d,vbShortTime))"
+msgstr ""
+
+#. 8Kkne
+#: 03150001.xhp
+msgctxt ""
+"03150001.xhp\n"
+"tit\n"
+"help.text"
+msgid "WeekdayName Function [VBA]"
+msgstr ""
+
+#. UDBvq
+#: 03150001.xhp
+msgctxt ""
+"03150001.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>WeekdayName function</bookmark_value>"
+msgstr ""
+
+#. pe4vX
+#: 03150001.xhp
+msgctxt ""
+"03150001.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03150001.xhp\" name=\"WeekdayName Function [VBA]\">WeekdayName Function [VBA]</link>"
+msgstr ""
+
+#. cApru
+#: 03150001.xhp
+msgctxt ""
+"03150001.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "The WeekdayName function returns the weekday name of a specified day of the week."
+msgstr ""
+
+#. gqKdB
+#: 03150001.xhp
+msgctxt ""
+"03150001.xhp\n"
+"par_id240720170117391741\n"
+"help.text"
+msgid "<emph>Weekday</emph>: Value from 1 to 7, Mon­day to Sun­day, whose Week Day Name need to be calculated."
+msgstr ""
+
+#. CFF5a
+#: 03150001.xhp
+msgctxt ""
+"03150001.xhp\n"
+"par_id24072017011739895\n"
+"help.text"
+msgid "<emph>Abbreviate</emph>: Optional. A Boolean value that indicates if the weekday name is to be abbreviated."
+msgstr ""
+
+#. WJLAJ
+#: 03150001.xhp
+msgctxt ""
+"03150001.xhp\n"
+"par_id240720170117395610\n"
+"help.text"
+msgid "<emph>FirstDayofWeek</emph>: Optional. Specifies the first day of the week."
+msgstr ""
+
+#. EQ6CL
+#: 03150001.xhp
+msgctxt ""
+"03150001.xhp\n"
+"hd_id521512154797683\n"
+"help.text"
+msgid "First day of Week:"
+msgstr ""
+
+#. kxwYB
+#: 03150001.xhp
+msgctxt ""
+"03150001.xhp\n"
+"par_id921512153192034\n"
+"help.text"
+msgid "Named constant"
+msgstr ""
+
+#. Ni66A
+#: 03150001.xhp
+msgctxt ""
+"03150001.xhp\n"
+"par_id611512153251598\n"
+"help.text"
+msgid "Value"
+msgstr ""
+
+#. 5Naw7
+#: 03150001.xhp
+msgctxt ""
+"03150001.xhp\n"
+"par_id491512153274624\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. cFuMR
+#: 03150001.xhp
+msgctxt ""
+"03150001.xhp\n"
+"par_id611512153338316\n"
+"help.text"
+msgid "Use National Language Support (NLS) API setting"
+msgstr ""
+
+#. vSYde
+#: 03150001.xhp
+msgctxt ""
+"03150001.xhp\n"
+"par_id151512153594420\n"
+"help.text"
+msgid "Sun­day (default)"
+msgstr ""
+
+#. B7qFP
+#: 03150001.xhp
+msgctxt ""
+"03150001.xhp\n"
+"par_id211512153874765\n"
+"help.text"
+msgid "Monday"
+msgstr ""
+
+#. ABsm8
+#: 03150001.xhp
+msgctxt ""
+"03150001.xhp\n"
+"par_id801512153944376\n"
+"help.text"
+msgid "Tuesday"
+msgstr ""
+
+#. naCR8
+#: 03150001.xhp
+msgctxt ""
+"03150001.xhp\n"
+"par_id551512153998501\n"
+"help.text"
+msgid "Wednesday"
+msgstr ""
+
+#. Fd4V6
+#: 03150001.xhp
+msgctxt ""
+"03150001.xhp\n"
+"par_id121512154054207\n"
+"help.text"
+msgid "Thursday"
+msgstr ""
+
+#. pMQ9u
+#: 03150001.xhp
+msgctxt ""
+"03150001.xhp\n"
+"par_id571512154112044\n"
+"help.text"
+msgid "Friday"
+msgstr ""
+
+#. uG94N
+#: 03150001.xhp
+msgctxt ""
+"03150001.xhp\n"
+"par_id541512154172107\n"
+"help.text"
+msgid "Saturday"
+msgstr ""
+
+#. HGFFD
+#: 03150001.xhp
+msgctxt ""
+"03150001.xhp\n"
+"par_id171512156115581\n"
+"help.text"
+msgid "None"
+msgstr ""
+
+#. 9QEDP
+#: 03150002.xhp
+msgctxt ""
+"03150002.xhp\n"
+"tit\n"
+"help.text"
+msgid "MonthName Function [VBA]"
+msgstr ""
+
+#. SRFWh
+#: 03150002.xhp
+msgctxt ""
+"03150002.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>MonthName function</bookmark_value>"
+msgstr ""
+
+#. 2DaT8
+#: 03150002.xhp
+msgctxt ""
+"03150002.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03150002.xhp\" name=\"MonthName Function [VBA]\">MonthName Function [VBA]</link>"
+msgstr ""
+
+#. zW82k
+#: 03150002.xhp
+msgctxt ""
+"03150002.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "The MonthName function returns the localized month name of a specified month number."
+msgstr ""
+
+#. GWDMF
+#: 03150002.xhp
+msgctxt ""
+"03150002.xhp\n"
+"par_id240720170117391741\n"
+"help.text"
+msgid "<emph>Month</emph>: Value from 1 to 12, January to December, whose localized month name need to be returned."
+msgstr ""
+
+#. KbQ6A
+#: 03150002.xhp
+msgctxt ""
+"03150002.xhp\n"
+"par_id24072017011739895\n"
+"help.text"
+msgid "<emph>Abbreviate</emph>: Optional. A Boolean value that indicates if the month name is to be abbreviated."
+msgstr ""
+
+#. uFDFs
+#: 03160000.xhp
+msgctxt ""
+"03160000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Input Function [VBA]"
+msgstr ""
+
+#. EGPiA
+#: 03160000.xhp
+msgctxt ""
+"03160000.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>Input function</bookmark_value>"
+msgstr ""
+
+#. 98TG4
+#: 03160000.xhp
+msgctxt ""
+"03160000.xhp\n"
+"hd_id141626276767913\n"
+"help.text"
+msgid "<variable id=\"Input_h1\"><link href=\"text/sbasic/shared/03160000.xhp\" name=\"Input Function [VBA]\">Input Function [VBA]</link></variable>"
+msgstr ""
+
+#. FGDak
+#: 03160000.xhp
+msgctxt ""
+"03160000.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the open stream of an Input or Binary file (String)."
+msgstr ""
+
+#. h4M8G
+#: 03160000.xhp
+msgctxt ""
+"03160000.xhp\n"
+"par_id240720170117391741\n"
+"help.text"
+msgid "<emph>Number</emph>: Required. Numeric expression specifying the number of characters to return."
+msgstr ""
+
+#. qTBRe
+#: 03160000.xhp
+msgctxt ""
+"03160000.xhp\n"
+"par_id24072017011739895\n"
+"help.text"
+msgid "<emph>#</emph>: Optional."
+msgstr ""
+
+#. LTcsz
+#: 03160000.xhp
+msgctxt ""
+"03160000.xhp\n"
+"par_id240720170117395610\n"
+"help.text"
+msgid "<emph>FileNumber</emph>: Required. Any valid file number."
+msgstr ""
+
+#. on87b
+#: 03170000.xhp
+msgctxt ""
+"03170000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Round Function [VBA]"
+msgstr ""
+
+#. zEB5S
+#: 03170000.xhp
+msgctxt ""
+"03170000.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>Round function (VBA)</bookmark_value>"
+msgstr ""
+
+#. oVQUL
+#: 03170000.xhp
+msgctxt ""
+"03170000.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<variable id=\"Round_VBA_h1\"><link href=\"text/sbasic/shared/03170000.xhp\" name=\"Round Function [VBA]\">Round Function [VBA]</link></variable>"
+msgstr ""
+
+#. B6tFP
+#: 03170000.xhp
+msgctxt ""
+"03170000.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Rounds a numeric value to a specified number of decimal digits."
+msgstr ""
+
+#. yUTFN
+#: 03170000.xhp
+msgctxt ""
+"03170000.xhp\n"
+"par_id741634154499890\n"
+"help.text"
+msgid "This function implements the rounding rule known as \"round-to-even\". With this rule, whenever the difference between the number to be rounded and its nearest integer is equal to 0.5, the number is rounded to the nearest even number. See the examples <link href=\"text/sbasic/shared/03170000.xhp#round_example\" name=\"round_ex_link\">below</link> to learn more about this rule."
+msgstr ""
+
+#. r5HMd
+#: 03170000.xhp
+msgctxt ""
+"03170000.xhp\n"
+"par_id691634217736290\n"
+"help.text"
+msgid "Be aware that VBA's <literal>Round</literal> function works differently than %PRODUCTNAME Calc's <literal>Round</literal> function. In Calc, if the difference between the number to be rounded and the nearest integer is exactly 0.5, then the number is rounded up. Hence, in Calc the number 2.5 is rounded to 3 whereas using VBA's <literal>Round</literal> function the value 2.5 is rounded to 2 due to the \"round-to-even\" rule."
+msgstr ""
+
+#. GSzGj
+#: 03170000.xhp
+msgctxt ""
+"03170000.xhp\n"
+"par_id240720170117391741\n"
+"help.text"
+msgid "<emph>expression</emph>: The numeric expression to be rounded."
+msgstr ""
+
+#. 9E33v
+#: 03170000.xhp
+msgctxt ""
+"03170000.xhp\n"
+"par_id240720170117395610\n"
+"help.text"
+msgid "<emph>numdecimalplaces</emph>: Optional argument that specifies the number of decimal digits in the resulting rounded value. The default value is 0."
+msgstr ""
+
+#. oSEiU
+#: 03170000.xhp
+msgctxt ""
+"03170000.xhp\n"
+"par_id541634154843718\n"
+"help.text"
+msgid "The following examples illustrate the \"round-to-even\" rule:"
+msgstr ""
+
+#. 4DLZC
+#: 03170000.xhp
+msgctxt ""
+"03170000.xhp\n"
+"bas_id651634154984931\n"
+"help.text"
+msgid "' Rounding to the nearest integer (decimalplaces = 0)"
+msgstr ""
+
+#. DQwkT
+#: 03170000.xhp
+msgctxt ""
+"03170000.xhp\n"
+"bas_id651634157812537\n"
+"help.text"
+msgid "' Rounding with 2 decimal digits (decimalplaces = 2)"
+msgstr ""
+
+#. g7CVV
+#: 03170000.xhp
+msgctxt ""
+"03170000.xhp\n"
+"par_id061420170153186193\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060106.xhp#Section21\">Calc ROUND function</link>"
+msgstr ""
+
+#. 3ECTM
+#: 03170010.xhp
+msgctxt ""
+"03170010.xhp\n"
+"tit\n"
+"help.text"
+msgid "FormatNumber Function [VBA]"
+msgstr ""
+
+#. DVTmP
+#: 03170010.xhp
+msgctxt ""
+"03170010.xhp\n"
+"bm_id661542193659245\n"
+"help.text"
+msgid "<bookmark_value>FormatNumber function</bookmark_value>"
+msgstr ""
+
+#. aaK4B
+#: 03170010.xhp
+msgctxt ""
+"03170010.xhp\n"
+"hd_id871542193473857\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03170010.xhp\" name=\"FormatNumber Function [VBA]\">FormatNumber [VBA]</link>"
+msgstr ""
+
+#. GEgN3
+#: 03170010.xhp
+msgctxt ""
+"03170010.xhp\n"
+"par_id351542193473858\n"
+"help.text"
+msgid "Returns a string with a number formatting applied to a numeric expression."
+msgstr ""
+
+#. o7Cjo
+#: 03170010.xhp
+msgctxt ""
+"03170010.xhp\n"
+"par_id761542194361212\n"
+"help.text"
+msgid "String"
+msgstr ""
+
+#. fkeCB
+#: 03170010.xhp
+msgctxt ""
+"03170010.xhp\n"
+"par_id240720170117391741\n"
+"help.text"
+msgid "<emph>expression</emph>: Required. The numeric expression to be formatted."
+msgstr ""
+
+#. mD2xQ
+#: 03170010.xhp
+msgctxt ""
+"03170010.xhp\n"
+"par_id631542195798758\n"
+"help.text"
+msgid "<emph>numDigitsAfterDecimal</emph>: Optional. A numeric value specifying the number of digits that should be displayed after the decimal. If omitted, it defaults to the value -1, meaning that the default settings for user interface locale should be used."
+msgstr ""
+
+#. BN3xY
+#: 03170010.xhp
+msgctxt ""
+"03170010.xhp\n"
+"par_id961542200034362\n"
+"help.text"
+msgid "<emph>includeLeadingDigit</emph>: Optional. A <link href=\"text/sbasic/shared/03040000.xhp#addvbaconstants\" name=\"vbtristate\">vbTriState</link> enumeration value, specifying whether a leading zero should be displayed for fractional values."
+msgstr ""
+
+#. cNFTu
+#: 03170010.xhp
+msgctxt ""
+"03170010.xhp\n"
+"par_id561542198440051\n"
+"help.text"
+msgid "<emph>vbTrue or -1</emph>: Display a leading zero."
+msgstr ""
+
+#. bbFUW
+#: 03170010.xhp
+msgctxt ""
+"03170010.xhp\n"
+"par_id21542198550868\n"
+"help.text"
+msgid "<emph>vbFalse or 0</emph>: Do not display leading zeros."
+msgstr ""
+
+#. ry2bD
+#: 03170010.xhp
+msgctxt ""
+"03170010.xhp\n"
+"par_id241542199046808\n"
+"help.text"
+msgid "<emph>vbUseDefaults or -2</emph>: Use the user interface locale settings. This is the default when omitted."
+msgstr ""
+
+#. CyTLd
+#: 03170010.xhp
+msgctxt ""
+"03170010.xhp\n"
+"par_id311542201637647\n"
+"help.text"
+msgid "<emph>useParensForNegativeNumbers</emph>: Optional. A <link href=\"text/sbasic/shared/03040000.xhp#addvbaconstants\" name=\"vbtristate\">vbTriState</link> enumeration value specifying whether negative numbers should be encased in parenthesis."
+msgstr ""
+
+#. CgCCe
+#: 03170010.xhp
+msgctxt ""
+"03170010.xhp\n"
+"par_id561543198440051\n"
+"help.text"
+msgid "<emph>vbTrue or -1</emph>: Use parenthesis for negative numbers."
+msgstr ""
+
+#. cjUbz
+#: 03170010.xhp
+msgctxt ""
+"03170010.xhp\n"
+"par_id21542398550868\n"
+"help.text"
+msgid "<emph>vbFalse or 0</emph>: Do not display parenthesis."
+msgstr ""
+
+#. s4gZ7
+#: 03170010.xhp
+msgctxt ""
+"03170010.xhp\n"
+"par_id241542191246808\n"
+"help.text"
+msgid "<emph>vbUseDefaults or -2</emph>: Same as vbFalse. This is the default when omitted."
+msgstr ""
+
+#. dsg88
+#: 03170010.xhp
+msgctxt ""
+"03170010.xhp\n"
+"par_id531542201968815\n"
+"help.text"
+msgid "<emph>groupDigits</emph>: Optional. A <link href=\"text/sbasic/shared/03040000.xhp#addvbaconstants\" name=\"vbtristate\">vbTriState</link> enumeration value specifying the number should be grouped (into thousands, etc.), using the group delimiter that is specified on the system's regional settings."
+msgstr ""
+
+#. raMda
+#: 03170010.xhp
+msgctxt ""
+"03170010.xhp\n"
+"par_id561543198560051\n"
+"help.text"
+msgid "<emph>vbTrue or -1</emph>: Group digits."
+msgstr ""
+
+#. a4Y2S
+#: 03170010.xhp
+msgctxt ""
+"03170010.xhp\n"
+"par_id215423985506768\n"
+"help.text"
+msgid "<emph>vbFalse or 0</emph>: Do not group digits."
+msgstr ""
+
+#. tyG7F
+#: 03170010.xhp
+msgctxt ""
+"03170010.xhp\n"
+"par_id241542191267808\n"
+"help.text"
+msgid "<emph>vbUseDefaults or -2</emph>: Same as vbFalse. This is the default when omitted."
+msgstr ""
+
+#. MxFCq
+#: 05060700.xhp
+msgctxt ""
+"05060700.xhp\n"
+"tit\n"
+"help.text"
+msgid "Macro"
+msgstr ""
+
+#. MdG5d
+#: 05060700.xhp
+msgctxt ""
+"05060700.xhp\n"
+"bm_id3153894\n"
+"help.text"
+msgid "<bookmark_value>events;linked to objects</bookmark_value>"
+msgstr ""
+
+#. YEDsK
+#: 05060700.xhp
+msgctxt ""
+"05060700.xhp\n"
+"hd_id3153894\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/05060700.xhp\" name=\"Macro\">Macro</link>"
+msgstr ""
+
+#. ZcEaC
+#: 05060700.xhp
+msgctxt ""
+"05060700.xhp\n"
+"par_id3153748\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 ""
+
+#. eaeQQ
+#: 05060700.xhp
+msgctxt ""
+"05060700.xhp\n"
+"hd_id3150503\n"
+"help.text"
+msgid "Event"
+msgstr ""
+
+#. ugkBE
+#: 05060700.xhp
+msgctxt ""
+"05060700.xhp\n"
+"par_id3149763\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 ""
+
+#. DUsHk
+#: 05060700.xhp
+msgctxt ""
+"05060700.xhp\n"
+"par_id3150670\n"
+"help.text"
+msgid "The following table describes the macros and the events that can by linked to objects in your document:"
+msgstr ""
+
+#. DG8sY
+#: 05060700.xhp
+msgctxt ""
+"05060700.xhp\n"
+"par_id3153360\n"
+"help.text"
+msgid "Event"
+msgstr ""
+
+#. iGfv7
+#: 05060700.xhp
+msgctxt ""
+"05060700.xhp\n"
+"par_id3154365\n"
+"help.text"
+msgid "Event trigger"
+msgstr ""
+
+#. rGdDG
+#: 05060700.xhp
+msgctxt ""
+"05060700.xhp\n"
+"par_id3159149\n"
+"help.text"
+msgid "OLE object"
+msgstr ""
+
+#. HyyKC
+#: 05060700.xhp
+msgctxt ""
+"05060700.xhp\n"
+"par_id3148451\n"
+"help.text"
+msgid "Graphics"
+msgstr ""
+
+#. G8ChH
+#: 05060700.xhp
+msgctxt ""
+"05060700.xhp\n"
+"par_id3125863\n"
+"help.text"
+msgid "Frame"
+msgstr ""
+
+#. MuhWU
+#: 05060700.xhp
+msgctxt ""
+"05060700.xhp\n"
+"par_id3154216\n"
+"help.text"
+msgid "AutoText"
+msgstr ""
+
+#. uhEms
+#: 05060700.xhp
+msgctxt ""
+"05060700.xhp\n"
+"par_id3145785\n"
+"help.text"
+msgid "ImageMap area"
+msgstr ""
+
+#. nRV7g
+#: 05060700.xhp
+msgctxt ""
+"05060700.xhp\n"
+"par_id3153138\n"
+"help.text"
+msgid "Hyperlink"
+msgstr ""
+
+#. 2fEjd
+#: 05060700.xhp
+msgctxt ""
+"05060700.xhp\n"
+"par_id3155306\n"
+"help.text"
+msgid "Click object"
+msgstr ""
+
+#. EMtkk
+#: 05060700.xhp
+msgctxt ""
+"05060700.xhp\n"
+"par_id3152460\n"
+"help.text"
+msgid "Object is selected."
+msgstr ""
+
+#. wR4vp
+#: 05060700.xhp
+msgctxt ""
+"05060700.xhp\n"
+"par_id3150116\n"
+"help.text"
+msgid "Mouse over object"
+msgstr ""
+
+#. 4cmkT
+#: 05060700.xhp
+msgctxt ""
+"05060700.xhp\n"
+"par_id3145253\n"
+"help.text"
+msgid "Mouse moves over the object."
+msgstr ""
+
+#. Fa55w
+#: 05060700.xhp
+msgctxt ""
+"05060700.xhp\n"
+"par_id3155446\n"
+"help.text"
+msgid "Trigger Hyperlink"
+msgstr ""
+
+#. 5B235
+#: 05060700.xhp
+msgctxt ""
+"05060700.xhp\n"
+"par_id3154756\n"
+"help.text"
+msgid "Hyperlink assigned to the object is clicked."
+msgstr ""
+
+#. VNipe
+#: 05060700.xhp
+msgctxt ""
+"05060700.xhp\n"
+"par_id3159333\n"
+"help.text"
+msgid "Mouse leaves object"
+msgstr ""
+
+#. ztcCC
+#: 05060700.xhp
+msgctxt ""
+"05060700.xhp\n"
+"par_id3147003\n"
+"help.text"
+msgid "Mouse moves off of the object."
+msgstr ""
+
+#. zyCGY
+#: 05060700.xhp
+msgctxt ""
+"05060700.xhp\n"
+"par_id3150785\n"
+"help.text"
+msgid "Graphics load successful"
+msgstr ""
+
+#. niCQ5
+#: 05060700.xhp
+msgctxt ""
+"05060700.xhp\n"
+"par_id3153705\n"
+"help.text"
+msgid "Graphics are loaded successfully."
+msgstr ""
+
+#. aW9yK
+#: 05060700.xhp
+msgctxt ""
+"05060700.xhp\n"
+"par_id3150202\n"
+"help.text"
+msgid "Graphics load terminated"
+msgstr ""
+
+#. oK6KV
+#: 05060700.xhp
+msgctxt ""
+"05060700.xhp\n"
+"par_id3145584\n"
+"help.text"
+msgid "Loading of graphics is stopped by the user (for example, when downloading the page)."
+msgstr ""
+
+#. gddj5
+#: 05060700.xhp
+msgctxt ""
+"05060700.xhp\n"
+"par_id3155089\n"
+"help.text"
+msgid "Graphics load faulty"
+msgstr ""
+
+#. RBQsV
+#: 05060700.xhp
+msgctxt ""
+"05060700.xhp\n"
+"par_id3153307\n"
+"help.text"
+msgid "Graphics not successfully loaded, for example, if a graphic was not found."
+msgstr ""
+
+#. E6rKG
+#: 05060700.xhp
+msgctxt ""
+"05060700.xhp\n"
+"par_id3154533\n"
+"help.text"
+msgid "Input of alpha characters"
+msgstr ""
+
+#. snT2H
+#: 05060700.xhp
+msgctxt ""
+"05060700.xhp\n"
+"par_id3155266\n"
+"help.text"
+msgid "Text is entered from the keyboard."
+msgstr ""
+
+#. 3BYuZ
+#: 05060700.xhp
+msgctxt ""
+"05060700.xhp\n"
+"par_id3145659\n"
+"help.text"
+msgid "Input of non-alpha characters"
+msgstr ""
+
+#. SoxKg
+#: 05060700.xhp
+msgctxt ""
+"05060700.xhp\n"
+"par_id3151131\n"
+"help.text"
+msgid "Nonprinting characters are entered from the keyboard, for example, tabs and line breaks."
+msgstr ""
+
+#. L4Hzu
+#: 05060700.xhp
+msgctxt ""
+"05060700.xhp\n"
+"par_id3150405\n"
+"help.text"
+msgid "Resize frame"
+msgstr ""
+
+#. efCtb
+#: 05060700.xhp
+msgctxt ""
+"05060700.xhp\n"
+"par_id3153972\n"
+"help.text"
+msgid "Frame is resized with the mouse."
+msgstr ""
+
+#. Xp4DN
+#: 05060700.xhp
+msgctxt ""
+"05060700.xhp\n"
+"par_id3148900\n"
+"help.text"
+msgid "Move frame"
+msgstr ""
+
+#. kkKMA
+#: 05060700.xhp
+msgctxt ""
+"05060700.xhp\n"
+"par_id3154767\n"
+"help.text"
+msgid "Frame is moved with the mouse."
+msgstr ""
+
+#. 3G3qL
+#: 05060700.xhp
+msgctxt ""
+"05060700.xhp\n"
+"par_id3153010\n"
+"help.text"
+msgid "Before inserting AutoText"
+msgstr ""
+
+#. d5dpp
+#: 05060700.xhp
+msgctxt ""
+"05060700.xhp\n"
+"par_id3147515\n"
+"help.text"
+msgid "Before a text block is inserted."
+msgstr ""
+
+#. gEoab
+#: 05060700.xhp
+msgctxt ""
+"05060700.xhp\n"
+"par_id3150956\n"
+"help.text"
+msgid "After inserting AutoText"
+msgstr ""
+
+#. D2YFB
+#: 05060700.xhp
+msgctxt ""
+"05060700.xhp\n"
+"par_id3147502\n"
+"help.text"
+msgid "After a text block is inserted."
+msgstr ""
+
+#. dFvc6
+#: 05060700.xhp
+msgctxt ""
+"05060700.xhp\n"
+"hd_id3153958\n"
+"help.text"
+msgid "Macros"
+msgstr ""
+
+#. vdnud
+#: 05060700.xhp
+msgctxt ""
+"05060700.xhp\n"
+"par_id3150432\n"
+"help.text"
+msgid "Choose the macro that you want to execute when the selected event occurs."
+msgstr ""
+
+#. pivUH
+#: 05060700.xhp
+msgctxt ""
+"05060700.xhp\n"
+"par_id3147296\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 ""
+
+#. YGm7R
+#: 05060700.xhp
+msgctxt ""
+"05060700.xhp\n"
+"hd_id3155587\n"
+"help.text"
+msgid "Category"
+msgstr ""
+
+#. F3CBN
+#: 05060700.xhp
+msgctxt ""
+"05060700.xhp\n"
+"par_id3154068\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 ""
+
+#. DEuBS
+#: 05060700.xhp
+msgctxt ""
+"05060700.xhp\n"
+"hd_id3149744\n"
+"help.text"
+msgid "Macro name"
+msgstr ""
+
+#. fS7gJ
+#: 05060700.xhp
+msgctxt ""
+"05060700.xhp\n"
+"par_id3151391\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 ""
+
+#. SBpqM
+#: 05060700.xhp
+msgctxt ""
+"05060700.xhp\n"
+"hd_id3159260\n"
+"help.text"
+msgid "Assign"
+msgstr ""
+
+#. 2MGjs
+#: 05060700.xhp
+msgctxt ""
+"05060700.xhp\n"
+"par_id3147406\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 ""
+
+#. JJDYD
+#: 05060700.xhp
+msgctxt ""
+"05060700.xhp\n"
+"hd_id3150533\n"
+"help.text"
+msgid "Remove"
+msgstr ""
+
+#. GvfMa
+#: 05060700.xhp
+msgctxt ""
+"05060700.xhp\n"
+"par_id3166456\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 ""
+
+#. yo5bN
+#: 05060700.xhp
+msgctxt ""
+"05060700.xhp\n"
+"hd_id3159126\n"
+"help.text"
+msgid "Macro selection"
+msgstr ""
+
+#. 8RHGY
+#: 05060700.xhp
+msgctxt ""
+"05060700.xhp\n"
+"par_id3149149\n"
+"help.text"
+msgid "<ahelp hid=\"SFX2_LISTBOX_RID_SFX_TP_MACROASSIGN_LB_SCRIPTTYPE\">Select the macro that you want to assign.</ahelp>"
+msgstr ""
+
+#. nDFX5
+#: CallByName.xhp
+msgctxt ""
+"CallByName.xhp\n"
+"tit\n"
+"help.text"
+msgid "CallByName Function"
+msgstr ""
+
+#. 3957Y
+#: CallByName.xhp
+msgctxt ""
+"CallByName.xhp\n"
+"hd_id3150669\n"
+"help.text"
+msgid "<variable id=\"CallByName_h1\"><link href=\"text/sbasic/shared/CallByName.xhp\">CallByName Function</link></variable>"
+msgstr ""
+
+#. 7EWyG
+#: CallByName.xhp
+msgctxt ""
+"CallByName.xhp\n"
+"par_id3149670\n"
+"help.text"
+msgid "Invokes a subroutine by its string name."
+msgstr ""
+
+#. V4GLV
+#: CallByName.xhp
+msgctxt ""
+"CallByName.xhp\n"
+"bm_id3150669\n"
+"help.text"
+msgid "<bookmark_value>CallByName function</bookmark_value> <bookmark_value>API;OfficeFilePicker</bookmark_value>"
+msgstr ""
+
+#. kJE7K
+#: CallByName.xhp
+msgctxt ""
+"CallByName.xhp\n"
+"par_id3153360\n"
+"help.text"
+msgid "CallByName(object As Object, ProcName As String, CallType As Integer [,arg0 [,arg1 …]])"
+msgstr ""
+
+#. vF2Bi
+#: CallByName.xhp
+msgctxt ""
+"CallByName.xhp\n"
+"par_id3154141\n"
+"help.text"
+msgid "<emph>result</emph>: An optional variable that contains the result of the called method or property."
+msgstr ""
+
+#. 6Hx3V
+#: CallByName.xhp
+msgctxt ""
+"CallByName.xhp\n"
+"par_id3150448\n"
+"help.text"
+msgid "<emph>object</emph>: A Basic module, <link href=\"text/sbasic/shared/classmodule.xhp\" name=\"ClassModule\">ClassModule</link> instance or UNO service holding properties or methods."
+msgstr ""
+
+#. EiVq3
+#: CallByName.xhp
+msgctxt ""
+"CallByName.xhp\n"
+"par_id3150449\n"
+"help.text"
+msgid "<emph>ProcName</emph>: The <literal>Function</literal>, <literal>Sub</literal> or <literal>Property</literal> that is being called."
+msgstr ""
+
+#. YnBZr
+#: CallByName.xhp
+msgctxt ""
+"CallByName.xhp\n"
+"par_id3150450\n"
+"help.text"
+msgid "<emph>CallType</emph>: The type of performed action such as Get, Let, Method and Set."
+msgstr ""
+
+#. PpyR8
+#: CallByName.xhp
+msgctxt ""
+"CallByName.xhp\n"
+"par_id3150451\n"
+"help.text"
+msgid "<emph>arg0, arg1 …</emph>: The <literal>Function</literal> optional parameters given as positional arguments."
+msgstr ""
+
+#. J4tFe
+#: CallByName.xhp
+msgctxt ""
+"CallByName.xhp\n"
+"par_id951642689912087\n"
+"help.text"
+msgid "Arguments are provided in the exact same order defined in the method signature. Keyword arguments are not possible."
+msgstr ""
+
+#. EYBNE
+#: CallByName.xhp
+msgctxt ""
+"CallByName.xhp\n"
+"par_id331644505028463\n"
+"help.text"
+msgid "Value"
+msgstr ""
+
+#. arGjh
+#: CallByName.xhp
+msgctxt ""
+"CallByName.xhp\n"
+"par_id541644505028463\n"
+"help.text"
+msgid "CallType Description"
+msgstr ""
+
+#. 34akS
+#: CallByName.xhp
+msgctxt ""
+"CallByName.xhp\n"
+"par_id661644505028464\n"
+"help.text"
+msgid "<emph>Method</emph>: Calls a procedure as a function or a subroutine."
+msgstr ""
+
+#. vC2DV
+#: CallByName.xhp
+msgctxt ""
+"CallByName.xhp\n"
+"par_id661644505028465\n"
+"help.text"
+msgid "<emph>Get</emph>: Reads a property or variable content."
+msgstr ""
+
+#. 65JuB
+#: CallByName.xhp
+msgctxt ""
+"CallByName.xhp\n"
+"par_id661644505028466\n"
+"help.text"
+msgid "<emph>Let</emph>: Assigns a content to a <literal>Property</literal> or variable."
+msgstr ""
+
+#. AGBZb
+#: CallByName.xhp
+msgctxt ""
+"CallByName.xhp\n"
+"par_id661644505028467\n"
+"help.text"
+msgid "<emph>Set</emph>: Assigns a reference value to an <literal>Object</literal> or <literal>Variant</literal> variable."
+msgstr ""
+
+#. EMgkf
+#: CallByName.xhp
+msgctxt ""
+"CallByName.xhp\n"
+"par_id661644588401903\n"
+"help.text"
+msgid "A <literal>Calc.Maths</literal> module contains a <literal>Multiply</literal> function expecting a varying list of numbers."
+msgstr ""
+
+#. e4GEe
+#: CallByName.xhp
+msgctxt ""
+"CallByName.xhp\n"
+"par_id711644588403951\n"
+"help.text"
+msgid "<literal>ScriptForge.Platform.Architecture</literal> information is retrieved."
+msgstr ""
+
+#. rvtXD
+#: CallByName.xhp
+msgctxt ""
+"CallByName.xhp\n"
+"par_id651644588404943\n"
+"help.text"
+msgid "<literal>DisplayDirectory</literal> property of <link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1ui_1_1dialogs_1_1FilePicker-members.html\" name=\"FilePicker\">com.sun.star.ui.dialogs.FilePicker</link> UNO service is set to the user home folder, its content is read twice."
+msgstr ""
+
+#. 3DsDt
+#: CallByName.xhp
+msgctxt ""
+"CallByName.xhp\n"
+"bas_id791644586147817\n"
+"help.text"
+msgid "BasicLibraries.loadLibrary(\"Calc\") ' Calc.Maths user library.module"
+msgstr ""
+
+#. HBeDy
+#: CallByName.xhp
+msgctxt ""
+"CallByName.xhp\n"
+"hd_id971644589733247\n"
+"help.text"
+msgid "Calc.Maths module"
+msgstr ""
+
+#. jkaab
+#: CallByName.xhp
+msgctxt ""
+"CallByName.xhp\n"
+"bas_id811644589423326\n"
+"help.text"
+msgid "Option Compatible ' Calc.Maths module"
+msgstr ""
+
+#. xbQAQ
+#: CallByName.xhp
+msgctxt ""
+"CallByName.xhp\n"
+"bas_id661644589424096\n"
+"help.text"
+msgid "''' Multiply a variable list of numbers '''"
+msgstr ""
+
+#. Ug7AF
+#: Compiler_options.xhp
+msgctxt ""
+"Compiler_options.xhp\n"
+"tit\n"
+"help.text"
+msgid "Compiler Options"
+msgstr ""
+
+#. 4BZ89
+#: Compiler_options.xhp
+msgctxt ""
+"Compiler_options.xhp\n"
+"bm_id681592403821304\n"
+"help.text"
+msgid "<bookmark_value>Compiler Options</bookmark_value> <bookmark_value>Runtime conditions</bookmark_value>"
+msgstr ""
+
+#. xtwLp
+#: Compiler_options.xhp
+msgctxt ""
+"Compiler_options.xhp\n"
+"hd_id951592401835244\n"
+"help.text"
+msgid "<variable id=\"compileroptions\"><link href=\"text/sbasic/shared/Compiler_options.xhp\" name=\"Compiler Options\">Compiler Options, Runtime Conditions</link></variable>"
+msgstr ""
+
+#. PEuT6
+#: Compiler_options.xhp
+msgctxt ""
+"Compiler_options.xhp\n"
+"N0084\n"
+"help.text"
+msgid "Compiler options specified at the module level affect %PRODUCTNAME <emph>Basic compiler checks</emph> and error messages. Basic syntax as well as Basic set of instructions can be different according to the options that are in use. The less <literal>Option</literal>, the easiest and tolerant %PRODUCTNAME Basic language is. The more <literal>Option</literal>, the richer and controlled Basic language gets."
+msgstr ""
+
+#. auPDi
+#: Compiler_options.xhp
+msgctxt ""
+"Compiler_options.xhp\n"
+"par_id141592406254504\n"
+"help.text"
+msgid "Compiler options must be specified before the executable program code in a module."
+msgstr ""
+
+#. U5B8L
+#: Compiler_options.xhp
+msgctxt ""
+"Compiler_options.xhp\n"
+"par_id491585753339474\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sbasic/Option_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Option Statement diagram</alt></image>"
+msgstr ""
+
+#. AXgWX
+#: Compiler_options.xhp
+msgctxt ""
+"Compiler_options.xhp\n"
+"hd_id331592403410631\n"
+"help.text"
+msgid "Option Private Module"
+msgstr ""
+
+#. DeBTh
+#: Compiler_options.xhp
+msgctxt ""
+"Compiler_options.xhp\n"
+"par_id161592405163812\n"
+"help.text"
+msgid "Specifies that the scope of the module is that of the Basic library it belongs to."
+msgstr ""
+
+#. 4fh7R
+#: Compiler_options.xhp
+msgctxt ""
+"Compiler_options.xhp\n"
+"par_id141592408035462\n"
+"help.text"
+msgid "Options specified at the module level also affect %PRODUCTNAME <emph>Basic runtime conditions</emph>. The behaviour of %PRODUCTNAME Basic instructions can differ."
+msgstr ""
+
+#. cGCiF
+#: Compiler_options.xhp
+msgctxt ""
+"Compiler_options.xhp\n"
+"par_id291592407073335\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/property.xhp\" name=\"Property statement\">Property statement</link>"
+msgstr ""
+
+#. ZbXw2
+#: ErrVBA.xhp
+msgctxt ""
+"ErrVBA.xhp\n"
+"tit\n"
+"help.text"
+msgid "Err VBA Object"
+msgstr ""
+
+#. iHP2L
+#: ErrVBA.xhp
+msgctxt ""
+"ErrVBA.xhp\n"
+"N0010\n"
+"help.text"
+msgid "<bookmark_value>Err object</bookmark_value> <bookmark_value>Error;raising</bookmark_value> <bookmark_value>Error;handling</bookmark_value>"
+msgstr ""
+
+#. pPqhS
+#: ErrVBA.xhp
+msgctxt ""
+"ErrVBA.xhp\n"
+"N0011\n"
+"help.text"
+msgid "<variable id=\"ErrVBAh1\"><link href=\"text/sbasic/shared/ErrVBA.xhp\" name=\"Err object [VBA]\">Err Object [VBA]</link></variable>"
+msgstr ""
+
+#. RZpQL
+#: ErrVBA.xhp
+msgctxt ""
+"ErrVBA.xhp\n"
+"N0012\n"
+"help.text"
+msgid "Use VBA <literal>Err</literal> object to raise or handle runtime errors."
+msgstr ""
+
+#. D7JiE
+#: ErrVBA.xhp
+msgctxt ""
+"ErrVBA.xhp\n"
+"N0012b\n"
+"help.text"
+msgid "<literal>Err</literal> is a built-in VBA global object that allows:"
+msgstr ""
+
+#. VpE8g
+#: ErrVBA.xhp
+msgctxt ""
+"ErrVBA.xhp\n"
+"N0013\n"
+"help.text"
+msgid "to raise predefined Basic errors"
+msgstr ""
+
+#. tFEYq
+#: ErrVBA.xhp
+msgctxt ""
+"ErrVBA.xhp\n"
+"N0014\n"
+"help.text"
+msgid "to throw user-defined exceptions"
+msgstr ""
+
+#. BeB2y
+#: ErrVBA.xhp
+msgctxt ""
+"ErrVBA.xhp\n"
+"N0015\n"
+"help.text"
+msgid "to name the routine originating the error"
+msgstr ""
+
+#. 5FhxC
+#: ErrVBA.xhp
+msgctxt ""
+"ErrVBA.xhp\n"
+"N0016\n"
+"help.text"
+msgid "to describe the error and possible solutions"
+msgstr ""
+
+#. QaZUT
+#: ErrVBA.xhp
+msgctxt ""
+"ErrVBA.xhp\n"
+"N0017\n"
+"help.text"
+msgid "The VBA <literal>Err</literal> object has the following properties and methods:"
+msgstr ""
+
+#. ivkYo
+#: ErrVBA.xhp
+msgctxt ""
+"ErrVBA.xhp\n"
+"N0018\n"
+"help.text"
+msgid "Properties"
+msgstr ""
+
+#. FtD5A
+#: ErrVBA.xhp
+msgctxt ""
+"ErrVBA.xhp\n"
+"N0020\n"
+"help.text"
+msgid "The <emph>Description</emph> property gives the nature of the error. <emph>Description</emph> details the various reasons that may be the cause of the error. Ideally, it provides the multiple course of actions to help solve the issue and prevent its reoccurrence. The Basic alias is the <link href=\"text/sbasic/shared/03050300.xhp\" name=\"Error function\">Error</link> function for %PRODUCTNAME predefined errors."
+msgstr ""
+
+#. jfSHu
+#: ErrVBA.xhp
+msgctxt ""
+"ErrVBA.xhp\n"
+"N0022\n"
+"help.text"
+msgid "The error code associated with the error. <literal>Err</literal> object default property is <emph>Number</emph>. The %PRODUCTNAME Basic alias is the <link href=\"text/sbasic/shared/03050200.xhp\" name=\"Err\">Err</link> function."
+msgstr ""
+
+#. NJEmn
+#: ErrVBA.xhp
+msgctxt ""
+"ErrVBA.xhp\n"
+"N0024\n"
+"help.text"
+msgid "<emph>Source</emph> indicates the name of the routine that produces the error. <emph>Source</emph> is an option for user-defined errors."
+msgstr ""
+
+#. MuyUY
+#: ErrVBA.xhp
+msgctxt ""
+"ErrVBA.xhp\n"
+"N0025\n"
+"help.text"
+msgid "Methods"
+msgstr ""
+
+#. y5Ne4
+#: ErrVBA.xhp
+msgctxt ""
+"ErrVBA.xhp\n"
+"N0027\n"
+"help.text"
+msgid "Resets description, <link href=\"text/sbasic/shared/03050100.xhp\" name=\"error line\">Erl</link>, number and source properties of current error. The %PRODUCTNAME Basic alias is the <link href=\"text/sbasic/shared/03050500.xhp\" name=\"Resume statement\">Resume</link> statement."
+msgstr ""
+
+#. jnyJG
+#: ErrVBA.xhp
+msgctxt ""
+"ErrVBA.xhp\n"
+"N0029\n"
+"help.text"
+msgid "Throws user-defined errors or predefined errors. The %PRODUCTNAME Basic alias is the <link href=\"text/sbasic/shared/03050200.xhp\" name=\"Error statement\">Error</link> statement."
+msgstr ""
+
+#. EyCJv
+#: ErrVBA.xhp
+msgctxt ""
+"ErrVBA.xhp\n"
+"N0030\n"
+"help.text"
+msgid "Parameters"
+msgstr ""
+
+#. 9a9P9
+#: ErrVBA.xhp
+msgctxt ""
+"ErrVBA.xhp\n"
+"N0031\n"
+"help.text"
+msgid "<emph>Number</emph>: A user-defined or predefined error code to be raised."
+msgstr ""
+
+#. DoFG8
+#: ErrVBA.xhp
+msgctxt ""
+"ErrVBA.xhp\n"
+"N0032\n"
+"help.text"
+msgid "Error code range 0-2000 is reserved for %PRODUCTNAME Basic. User-defined errors may start from higher values in order to prevent collision with %PRODUCTNAME Basic future developments."
+msgstr ""
+
+#. VAmhX
+#: ErrVBA.xhp
+msgctxt ""
+"ErrVBA.xhp\n"
+"N0033\n"
+"help.text"
+msgid "<emph>Source</emph>: The name of the routine raising the error. A name in the form of \"myLibrary.myModule.myProc\" is recommended."
+msgstr ""
+
+#. wFqtB
+#: ErrVBA.xhp
+msgctxt ""
+"ErrVBA.xhp\n"
+"N0034\n"
+"help.text"
+msgid "<emph>Description</emph>: A description of the problem leading to stop the running process, accompanied with the various reasons that may cause it. A detailed list of the possible course of actions that may help solve the problem is recommended."
+msgstr ""
+
+#. q9uAh
+#: ErrVBA.xhp
+msgctxt ""
+"ErrVBA.xhp\n"
+"N0041\n"
+"help.text"
+msgid "Err.Raise 2020, Description:=\"This is an intended user-defined error …\""
+msgstr ""
+
+#. vuP6g
+#: ErrVBA.xhp
+msgctxt ""
+"ErrVBA.xhp\n"
+"N0045\n"
+"help.text"
+msgid "errTitle = \"Error \"& Err &\" at line \"& Erl &\" in \"& Err.Source"
+msgstr ""
+
+#. ZXCWy
+#: ErrVBA.xhp
+msgctxt ""
+"ErrVBA.xhp\n"
+"N0050\n"
+"help.text"
+msgid "Exception ClassModule"
+msgstr ""
+
+#. RK2AX
+#: ErrVBA.xhp
+msgctxt ""
+"ErrVBA.xhp\n"
+"N0049\n"
+"help.text"
+msgid "A short <link href=\"text/sbasic/shared/classmodule.xhp\" name=\"ClassModule option\">ClassModule</link>, that wraps VBA <literal>Err</literal> object, can distribute <literal>Err</literal> properties and methods for standard %PRODUCTNAME Basic modules."
+msgstr ""
+
+#. tECEu
+#: ErrVBA.xhp
+msgctxt ""
+"ErrVBA.xhp\n"
+"N0069\n"
+"help.text"
+msgid "Example"
+msgstr ""
+
+#. oA4pq
+#: ErrVBA.xhp
+msgctxt ""
+"ErrVBA.xhp\n"
+"N0078\n"
+"help.text"
+msgid "\"Any multi-line description for this user-defined exception\")"
+msgstr ""
+
+#. hzLgR
+#: ErrVBA.xhp
+msgctxt ""
+"ErrVBA.xhp\n"
+"N0079\n"
+"help.text"
+msgid "' your code goes here …"
+msgstr ""
+
+#. wEaa3
+#: ErrVBA.xhp
+msgctxt ""
+"ErrVBA.xhp\n"
+"N0083\n"
+"help.text"
+msgid "errTitle = \"Error \"& Exc.Number &\" at line \"& Erl &\" in \"& Exc.Source"
+msgstr ""
+
+#. kBsGp
+#: ErrVBA.xhp
+msgctxt ""
+"ErrVBA.xhp\n"
+"N0088\n"
+"help.text"
+msgid "The <link href=\"text/sbasic/shared/03050300.xhp\" name=\"Error statement\">Error</link> statement or an Exception-like class module can be used interchangeably, while the latter adds extra features."
+msgstr ""
+
+#. h6V9P
+#: GetPathSeparator.xhp
+msgctxt ""
+"GetPathSeparator.xhp\n"
+"tit\n"
+"help.text"
+msgid "GetPathSeparator function"
+msgstr ""
+
+#. yoJLS
+#: GetPathSeparator.xhp
+msgctxt ""
+"GetPathSeparator.xhp\n"
+"N0001\n"
+"help.text"
+msgid "<bookmark_value>GetPathSeparator function</bookmark_value>"
+msgstr ""
+
+#. GXeyZ
+#: GetPathSeparator.xhp
+msgctxt ""
+"GetPathSeparator.xhp\n"
+"N0002\n"
+"help.text"
+msgid "<variable id=\"getpathseparator01\"><link href=\"text/sbasic/shared/GetPathSeparator.xhp\" name=\"GetPathSeparator\">GetPathSeparator Function</link></variable>"
+msgstr ""
+
+#. dWBDB
+#: GetPathSeparator.xhp
+msgctxt ""
+"GetPathSeparator.xhp\n"
+"N0003\n"
+"help.text"
+msgid "Returns the operating system-dependent directory separator used to specify file paths."
+msgstr ""
+
+#. 8jaPZ
+#: GetPathSeparator.xhp
+msgctxt ""
+"GetPathSeparator.xhp\n"
+"N0008\n"
+"help.text"
+msgid "\"/\" UNIX, including MacOS"
+msgstr ""
+
+#. p2tHv
+#: GetPathSeparator.xhp
+msgctxt ""
+"GetPathSeparator.xhp\n"
+"N0010\n"
+"help.text"
+msgid "None."
+msgstr ""
+
+#. qqbvK
+#: GetPathSeparator.xhp
+msgctxt ""
+"GetPathSeparator.xhp\n"
+"N0017\n"
+"help.text"
+msgid "It is recommended to use:"
+msgstr ""
+
+#. 6U58g
+#: GetPathSeparator.xhp
+msgctxt ""
+"GetPathSeparator.xhp\n"
+"N0018\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03120313.xhp\" name=\"external\">ConvertFromURL</link> function to convert a file URL to a system file name."
+msgstr ""
+
+#. aFzF4
+#: GetPathSeparator.xhp
+msgctxt ""
+"GetPathSeparator.xhp\n"
+"N0019\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03120312.xhp\" name=\"external\">ConvertToURL</link> function to convert a system file name to a file URL."
+msgstr ""
+
+#. vCq5c
+#: GetPathSeparator.xhp
+msgctxt ""
+"GetPathSeparator.xhp\n"
+"N0020\n"
+"help.text"
+msgid "See also <link href=\"text/sbasic/shared/00000002.xhp\" name=\"external\">URL Notation</link>"
+msgstr ""
+
+#. PRG9t
+#: Resume.xhp
+msgctxt ""
+"Resume.xhp\n"
+"tit\n"
+"help.text"
+msgid "Resume Statement"
+msgstr ""
+
+#. sMcg4
+#: Resume.xhp
+msgctxt ""
+"Resume.xhp\n"
+"N0001\n"
+"help.text"
+msgid "<bookmark_value>Resume statement</bookmark_value>"
+msgstr ""
+
+#. LTupm
+#: Resume.xhp
+msgctxt ""
+"Resume.xhp\n"
+"N0002\n"
+"help.text"
+msgid "<variable id=\"resumeh1\"><link href=\"text/sbasic/shared/Resume.xhp\" name=\"Resume statement\">Resume Statement</link></variable>"
+msgstr ""
+
+#. AVhyb
+#: Resume.xhp
+msgctxt ""
+"Resume.xhp\n"
+"N0003\n"
+"help.text"
+msgid "Resets error information and indicates what to execute next."
+msgstr ""
+
+#. FhZm3
+#: Resume.xhp
+msgctxt ""
+"Resume.xhp\n"
+"par_id491585753339474\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sbasic/Resume_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Resume Statement diagram</alt></image>"
+msgstr ""
+
+#. eafvm
+#: Resume.xhp
+msgctxt ""
+"Resume.xhp\n"
+"par_id481586090298901\n"
+"help.text"
+msgid "<literal>0</literal>: Resets error information and re-executes the instruction that caused the error. <literal>0</literal> is optional."
+msgstr ""
+
+#. fakJ2
+#: Resume.xhp
+msgctxt ""
+"Resume.xhp\n"
+"par_id331586090532804\n"
+"help.text"
+msgid "<emph>label</emph>: Resets error information and resumes execution at the specified label of the current subroutine."
+msgstr ""
+
+#. 7NaeS
+#: Resume.xhp
+msgctxt ""
+"Resume.xhp\n"
+"par_id331586090432804\n"
+"help.text"
+msgid "<literal>Next</literal>: Resets error information and executes the instruction following the one that caused the error."
+msgstr ""
+
+#. 3Jge7
+#: Resume.xhp
+msgctxt ""
+"Resume.xhp\n"
+"par_id441586333320983\n"
+"help.text"
+msgid "Error information is built with <literal>Erl</literal>, <literal>Err</literal> and <literal>Error$</literal> functions."
+msgstr ""
+
+#. PoXod
+#: Resume.xhp
+msgctxt ""
+"Resume.xhp\n"
+"par_id741586333516110\n"
+"help.text"
+msgid "<literal>Erl</literal>: Module line number where error occurs."
+msgstr ""
+
+#. aX9ZN
+#: Resume.xhp
+msgctxt ""
+"Resume.xhp\n"
+"par_id81586333580520\n"
+"help.text"
+msgid "<literal>Err</literal>: Error number."
+msgstr ""
+
+#. ctA2t
+#: Resume.xhp
+msgctxt ""
+"Resume.xhp\n"
+"par_id721586333586263\n"
+"help.text"
+msgid "<literal>Error[$]</literal>: Error description."
+msgstr ""
+
+#. fDJgb
+#: Resume.xhp
+msgctxt ""
+"Resume.xhp\n"
+"par_id941586091561618\n"
+"help.text"
+msgid "Using <emph>Resume</emph> to reset error information prevents the propagation of the handled condition to calling routines."
+msgstr ""
+
+#. coy5D
+#: Resume.xhp
+msgctxt ""
+"Resume.xhp\n"
+"hd_id441586092960246\n"
+"help.text"
+msgid "Examples:"
+msgstr ""
+
+#. 4dyMX
+#: Resume.xhp
+msgctxt ""
+"Resume.xhp\n"
+"par_id961586248539108\n"
+"help.text"
+msgid "Typical error handling routines are: alerting the user, fixing the error, logging error information or re-throwing custom errors that provide explanations with resolution instructions. Use <literal>Resume label</literal> when requiring such mechanisms."
+msgstr ""
+
+#. VCDS3
+#: Resume.xhp
+msgctxt ""
+"Resume.xhp\n"
+"bas_id451586093122848\n"
+"help.text"
+msgid "' routine code goes here"
+msgstr ""
+
+#. BFzfG
+#: Resume.xhp
+msgctxt ""
+"Resume.xhp\n"
+"bas_id515860931234846\n"
+"help.text"
+msgid "Error 91 ' example error"
+msgstr ""
+
+#. uFVnv
+#: Resume.xhp
+msgctxt ""
+"Resume.xhp\n"
+"bas_id361586093126654\n"
+"help.text"
+msgid "' routine cleanup code goes here"
+msgstr ""
+
+#. UNbMJ
+#: Resume.xhp
+msgctxt ""
+"Resume.xhp\n"
+"par_id61586095819168\n"
+"help.text"
+msgid "Use <literal>Resume Next</literal>, for example, when reporting anomalies encountered for an iterating process that must not be interrupted. In which case multiple handling routines may be required."
+msgstr ""
+
+#. AeVfB
+#: Resume.xhp
+msgctxt ""
+"Resume.xhp\n"
+"par_id461586091018138\n"
+"help.text"
+msgid "Using <literal>Resume</literal> without parameters to re-execute the faulty instruction can fit certain situations. However that may cause a never ending loop."
+msgstr ""
+
+#. DeHMt
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"tit\n"
+"help.text"
+msgid "Using Calc Functions in Macros"
+msgstr ""
+
+#. B2ErX
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"bm_id291592361063458\n"
+"help.text"
+msgid "<bookmark_value>calling Calc function;macros</bookmark_value> <bookmark_value>setting Calc function;macros</bookmark_value> <bookmark_value>macros;calling Calc function</bookmark_value> <bookmark_value>macros;setting Calc function</bookmark_value> <bookmark_value>createUNOservice function;calling Calc function</bookmark_value> <bookmark_value>API;sheet.addin.Analysis</bookmark_value> <bookmark_value>API;sheet.FunctionAccess</bookmark_value>"
+msgstr ""
+
+#. oDKGc
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"hd_id91592352089011\n"
+"help.text"
+msgid "<variable id=\"CallingCalcFunctionsh1\"><link href=\"text/sbasic/shared/calc_functions.xhp\" name=\"Calling Calc Functions\">Using Calc Functions in Macros</link></variable>"
+msgstr ""
+
+#. vixak
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id1001592359117987\n"
+"help.text"
+msgid "In addition to the native BASIC functions, you can call Calc functions in your macros and scripts and set Calc functions in cell formulas."
+msgstr ""
+
+#. pFoqw
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"hd_id251592352174921\n"
+"help.text"
+msgid "Calling Internal Calc functions in Basic"
+msgstr ""
+
+#. 2rKcD
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id731592352332694\n"
+"help.text"
+msgid "Use the <literal>CreateUNOService</literal> function to access the <literal>com.sun.star.sheet.FunctionAccess</literal> service."
+msgstr ""
+
+#. LFEou
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id751629987917982\n"
+"help.text"
+msgid "The example below creates a function named <literal>MyVlook</literal> that calls the <literal>VLOOKUP</literal> Calc function over a data array passed as argument and returns the value found by the function."
+msgstr ""
+
+#. NyNyQ
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"bas_id271629987890173\n"
+"help.text"
+msgid "' Always use the function name in English"
+msgstr ""
+
+#. TDuCT
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id241629988142878\n"
+"help.text"
+msgid "The macro below presents an example of how the <literal>MyVlook</literal> function can be called. It first creates a 5-by-2 data array and then calls the function <literal>MyVlook</literal> and shows the returned value using <literal>MsgBox</literal>."
+msgstr ""
+
+#. XincG
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"bas_id331629988249519\n"
+"help.text"
+msgid "' Creates a 5 by 2 array and fills it with data"
+msgstr ""
+
+#. vGqJS
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"bas_id641629988249903\n"
+"help.text"
+msgid "myData(1, 1) = 1 : myData(1, 2) = \"Strongly disagree\""
+msgstr ""
+
+#. tFbTR
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"bas_id201629988250130\n"
+"help.text"
+msgid "myData(2, 1) = 3 : myData(2, 2) = \"Disagree\""
+msgstr ""
+
+#. FtDFM
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"bas_id291629988250317\n"
+"help.text"
+msgid "myData(3, 1) = 5 : myData(3, 2) = \"Undecided\""
+msgstr ""
+
+#. VAGCD
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"bas_id731629988250530\n"
+"help.text"
+msgid "myData(4, 1) = 7 : myData(4, 2) = \"Agree\""
+msgstr ""
+
+#. zVfFm
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"bas_id641629988250759\n"
+"help.text"
+msgid "myData(5, 1) = 9 : myData(5, 2) = \"Strongly agree\""
+msgstr ""
+
+#. bH6aF
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"bas_id521629988250997\n"
+"help.text"
+msgid "' Looks up the data array"
+msgstr ""
+
+#. dbNrF
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"bas_id491629988324413\n"
+"help.text"
+msgid "' Shows the message \"Disagree\""
+msgstr ""
+
+#. u8bVb
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"hd_id261632673377666\n"
+"help.text"
+msgid "Setting Cell Formulas Containing Internal Calc Functions"
+msgstr ""
+
+#. QAMok
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id41632673385259\n"
+"help.text"
+msgid "Use the formula text string to add a formula to a spreadsheet cell."
+msgstr ""
+
+#. o3jiB
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id291632673370039\n"
+"help.text"
+msgid "All Calc functions must be expressed with their English names."
+msgstr ""
+
+#. dfwfw
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id101632673833258\n"
+"help.text"
+msgid "REM Add a formula to cell A1. Function name must be in English."
+msgstr ""
+
+#. BcaTk
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id191632673837838\n"
+"help.text"
+msgid "REM Cell A1 displays the localized function name"
+msgstr ""
+
+#. V3quU
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"hd_id561592352225441\n"
+"help.text"
+msgid "Calling Add-In Calc Functions in BASIC"
+msgstr ""
+
+#. q7CYD
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id261592359338681\n"
+"help.text"
+msgid "The Calc Add-In functions are in the UNO services <link href=\"text/sbasic/shared/calc_functions.xhp#analysis\" name=\"analysis\"><literal>com.sun.star.sheet.addin.Analysis</literal></link>, <link href=\"text/sbasic/shared/calc_functions.xhp#dates\" name=\"dates\"><literal>com.sun.star.sheet.addin.DateFunctions</literal></link> and <link href=\"text/sbasic/shared/calc_functions.xhp#pricing\" name=\"pricing\"><literal>com.sun.star.sheet.addin.PricingFunctions</literal></link>."
+msgstr ""
+
+#. 94wim
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"bas_id421592358343633\n"
+"help.text"
+msgid "REM Example calling Add-in function SQRTPI"
+msgstr ""
+
+#. bFnDA
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"bas_id731592358351744\n"
+"help.text"
+msgid "Function MySQRTPI(arg as double) as double"
+msgstr ""
+
+#. HHyMW
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"bas_id211592358377026\n"
+"help.text"
+msgid "MySQRTPI = oService.getSqrtPi(arg)"
+msgstr ""
+
+#. 4Rj5v
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"hd_id251632673972700\n"
+"help.text"
+msgid "Setting Cell Formulas with Add-In Functions"
+msgstr ""
+
+#. wPiTB
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id431632674656090\n"
+"help.text"
+msgid "The Add-In function must be expressed by its UNO service name."
+msgstr ""
+
+#. nUVAe
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id101632623833258\n"
+"help.text"
+msgid "REM Add an Add-In formula to cell A1. Function name is the UNO service name."
+msgstr ""
+
+#. Q6BTa
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id191632673867838\n"
+"help.text"
+msgid "REM Cell A1 displays the localized function name"
+msgstr ""
+
+#. gtxdC
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"hd_id661632676716180\n"
+"help.text"
+msgid "UNO Service Names for Analysis Add-In Functions"
+msgstr ""
+
+#. SBEpf
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id651629988674793\n"
+"help.text"
+msgid "The table below presents a list of all Calc Analysis Add-In functions and their respective UNO service names."
+msgstr ""
+
+#. 2NxGD
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id511592356505781\n"
+"help.text"
+msgid "Calc Function name"
+msgstr ""
+
+#. b2FSD
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id471592356505782\n"
+"help.text"
+msgid "UNO service name"
+msgstr ""
+
+#. emGWD
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id721592355432992\n"
+"help.text"
+msgid "ACCRINT"
+msgstr ""
+
+#. oKBuD
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id311592355461144\n"
+"help.text"
+msgid "ACCRINTM"
+msgstr ""
+
+#. pBfUh
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id731592355465193\n"
+"help.text"
+msgid "AMORDEGRC"
+msgstr ""
+
+#. ViiCh
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id361592355471024\n"
+"help.text"
+msgid "AMORLINC"
+msgstr ""
+
+#. ZeeMB
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id11592355475920\n"
+"help.text"
+msgid "BESSELI"
+msgstr ""
+
+#. Bv4xD
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id841592355481243\n"
+"help.text"
+msgid "BESSELJ"
+msgstr ""
+
+#. Ana8S
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id781592355488489\n"
+"help.text"
+msgid "BESSELK"
+msgstr ""
+
+#. gPmYm
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id751592355494321\n"
+"help.text"
+msgid "BESSELY"
+msgstr ""
+
+#. Rhr8N
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id661592355500416\n"
+"help.text"
+msgid "BIN2DEC"
+msgstr ""
+
+#. CF6He
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id331592355505769\n"
+"help.text"
+msgid "BIN2HEX"
+msgstr ""
+
+#. XJGN7
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id691592355510409\n"
+"help.text"
+msgid "BIN2OCT"
+msgstr ""
+
+#. trpYC
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id1001592355515562\n"
+"help.text"
+msgid "COMPLEX"
+msgstr ""
+
+#. eHuPF
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id661592355519833\n"
+"help.text"
+msgid "CONVERT"
+msgstr ""
+
+#. yF4wh
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id501592355525049\n"
+"help.text"
+msgid "COUPDAYBS"
+msgstr ""
+
+#. SArWm
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id251592355529338\n"
+"help.text"
+msgid "COUPDAYS"
+msgstr ""
+
+#. CkhYX
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id681592355545522\n"
+"help.text"
+msgid "COUPDAYSNC"
+msgstr ""
+
+#. A4oUG
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id151592355550475\n"
+"help.text"
+msgid "COUPNCD"
+msgstr ""
+
+#. 8Eyr4
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id291592355554258\n"
+"help.text"
+msgid "COUPNUM"
+msgstr ""
+
+#. ur3HX
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id361592355563155\n"
+"help.text"
+msgid "COUPPCD"
+msgstr ""
+
+#. HYaqY
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id591592355570035\n"
+"help.text"
+msgid "CUMIPMT"
+msgstr ""
+
+#. ccwAv
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id681592355573971\n"
+"help.text"
+msgid "CUMPRINC"
+msgstr ""
+
+#. CWYx5
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id591592355577411\n"
+"help.text"
+msgid "DEC2BIN"
+msgstr ""
+
+#. LZGCA
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id651592355580939\n"
+"help.text"
+msgid "DEC2HEX"
+msgstr ""
+
+#. FABUZ
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id981592355585026\n"
+"help.text"
+msgid "DEC2OCT"
+msgstr ""
+
+#. Y2HuZ
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id911592355588619\n"
+"help.text"
+msgid "DELTA"
+msgstr ""
+
+#. XMBJo
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id931592355591947\n"
+"help.text"
+msgid "DISC"
+msgstr ""
+
+#. iTNtK
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id281592355595627\n"
+"help.text"
+msgid "DOLLARDE"
+msgstr ""
+
+#. iWfvp
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id731592355599218\n"
+"help.text"
+msgid "DOLLARFR"
+msgstr ""
+
+#. iq2zc
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id451592355602770\n"
+"help.text"
+msgid "DURATION"
+msgstr ""
+
+#. yzAGQ
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id261592355606039\n"
+"help.text"
+msgid "EDATE"
+msgstr ""
+
+#. ePmwB
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id221592355620084\n"
+"help.text"
+msgid "EFFECT"
+msgstr ""
+
+#. whDH8
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id721592355623964\n"
+"help.text"
+msgid "EOMONTH"
+msgstr ""
+
+#. T8yoU
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id581592355627044\n"
+"help.text"
+msgid "ERF"
+msgstr ""
+
+#. YFhBd
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id451592355631036\n"
+"help.text"
+msgid "ERFC"
+msgstr ""
+
+#. dKas5
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id851592355634629\n"
+"help.text"
+msgid "FACTDOUBLE"
+msgstr ""
+
+#. 87Htt
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id731592355637900\n"
+"help.text"
+msgid "FVSCHEDULE"
+msgstr ""
+
+#. jjTyE
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id431592355641084\n"
+"help.text"
+msgid "GCD"
+msgstr ""
+
+#. mcjKe
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id461592355646844\n"
+"help.text"
+msgid "GESTEP"
+msgstr ""
+
+#. Toc2i
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id471592355650772\n"
+"help.text"
+msgid "HEX2BIN"
+msgstr ""
+
+#. CEWxE
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id91592355654156\n"
+"help.text"
+msgid "HEX2DEC"
+msgstr ""
+
+#. RrpLx
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id401592355657388\n"
+"help.text"
+msgid "HEX2OCT"
+msgstr ""
+
+#. 6GUuy
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id331592355660565\n"
+"help.text"
+msgid "IMABS"
+msgstr ""
+
+#. mUowh
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id401592355663828\n"
+"help.text"
+msgid "IMAGINARY"
+msgstr ""
+
+#. 8GGrD
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id571592355667021\n"
+"help.text"
+msgid "IMARGUMENT"
+msgstr ""
+
+#. AaMnu
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id921592355670053\n"
+"help.text"
+msgid "IMCONJUGATE"
+msgstr ""
+
+#. 4vbCQ
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id171592355673117\n"
+"help.text"
+msgid "IMCOS"
+msgstr ""
+
+#. dr8EH
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id701592355676365\n"
+"help.text"
+msgid "IMCOSH"
+msgstr ""
+
+#. paAHR
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id601592355679652\n"
+"help.text"
+msgid "IMCOT"
+msgstr ""
+
+#. twyK6
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id41592355682724\n"
+"help.text"
+msgid "IMCSC"
+msgstr ""
+
+#. jKEFp
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id61592355685899\n"
+"help.text"
+msgid "IMCSCH"
+msgstr ""
+
+#. Lav7E
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id51592355688940\n"
+"help.text"
+msgid "IMDIV"
+msgstr ""
+
+#. Q3Zxj
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id611592355692012\n"
+"help.text"
+msgid "IMEXP"
+msgstr ""
+
+#. 7DUrG
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id381592355695069\n"
+"help.text"
+msgid "IMLN"
+msgstr ""
+
+#. pVmGz
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id231592355698892\n"
+"help.text"
+msgid "IMLOG10"
+msgstr ""
+
+#. gTxpZ
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id581592355702180\n"
+"help.text"
+msgid "IMLOG2"
+msgstr ""
+
+#. Windb
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id341592355705773\n"
+"help.text"
+msgid "IMPOWER"
+msgstr ""
+
+#. 4RLjP
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id301592355708742\n"
+"help.text"
+msgid "IMPRODUCT"
+msgstr ""
+
+#. mogsD
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id621592355711845\n"
+"help.text"
+msgid "IMREAL"
+msgstr ""
+
+#. kaDjL
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id821592355714852\n"
+"help.text"
+msgid "IMSEC"
+msgstr ""
+
+#. GAsAW
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id871592355718533\n"
+"help.text"
+msgid "IMSECH"
+msgstr ""
+
+#. 8Dtdh
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id871592355721957\n"
+"help.text"
+msgid "IMSIN"
+msgstr ""
+
+#. LnpEu
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id681592355725045\n"
+"help.text"
+msgid "IMSINH"
+msgstr ""
+
+#. HoKey
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id801592355728022\n"
+"help.text"
+msgid "IMSQRT"
+msgstr ""
+
+#. EDQwc
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id851592355731069\n"
+"help.text"
+msgid "IMSUB"
+msgstr ""
+
+#. Qfop5
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id131592355734118\n"
+"help.text"
+msgid "IMSUM"
+msgstr ""
+
+#. DaiAF
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id761592355737109\n"
+"help.text"
+msgid "IMTAN"
+msgstr ""
+
+#. AWW2a
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id91592355740301\n"
+"help.text"
+msgid "INTRATE"
+msgstr ""
+
+#. BNWvt
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id561592355743397\n"
+"help.text"
+msgid "ISEVEN"
+msgstr ""
+
+#. 5Avoj
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id481592355746477\n"
+"help.text"
+msgid "ISODD"
+msgstr ""
+
+#. fwZ3Y
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id621592355749526\n"
+"help.text"
+msgid "LCM"
+msgstr ""
+
+#. WDW3o
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id381592355752413\n"
+"help.text"
+msgid "MDURATION"
+msgstr ""
+
+#. CaC2W
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id161592355755349\n"
+"help.text"
+msgid "MROUND"
+msgstr ""
+
+#. ipDJm
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id601592355758534\n"
+"help.text"
+msgid "MULTINOMIAL"
+msgstr ""
+
+#. wDMMt
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id241592355761822\n"
+"help.text"
+msgid "NETWORKDAYS"
+msgstr ""
+
+#. azBMs
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id121592355764950\n"
+"help.text"
+msgid "NOMINAL"
+msgstr ""
+
+#. FGnXt
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id161592355767958\n"
+"help.text"
+msgid "OCT2BIN"
+msgstr ""
+
+#. npjsC
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id401592355770926\n"
+"help.text"
+msgid "OCT2DEC"
+msgstr ""
+
+#. Bd3s5
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id981592355773838\n"
+"help.text"
+msgid "OCT2HEX"
+msgstr ""
+
+#. iBzAQ
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id51592355776830\n"
+"help.text"
+msgid "ODDFPRICE"
+msgstr ""
+
+#. ParaD
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id581592355779822\n"
+"help.text"
+msgid "ODDFYIELD"
+msgstr ""
+
+#. 9CxRc
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id251592355782710\n"
+"help.text"
+msgid "ODDLPRICE"
+msgstr ""
+
+#. jBECN
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id331592355785647\n"
+"help.text"
+msgid "ODDLYIELD"
+msgstr ""
+
+#. opEEG
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id471592355788791\n"
+"help.text"
+msgid "PRICE"
+msgstr ""
+
+#. kXJnU
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id141592355791678\n"
+"help.text"
+msgid "PRICEDISC"
+msgstr ""
+
+#. 24W75
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id341592355794671\n"
+"help.text"
+msgid "PRICEMAT"
+msgstr ""
+
+#. rvmjF
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id681592355799718\n"
+"help.text"
+msgid "QUOTIENT"
+msgstr ""
+
+#. AC3Lz
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id831592355803591\n"
+"help.text"
+msgid "RANDBETWEEN"
+msgstr ""
+
+#. ZCZFS
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id701592355807287\n"
+"help.text"
+msgid "RECEIVED"
+msgstr ""
+
+#. nfAzV
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id231592355810343\n"
+"help.text"
+msgid "SERIESSUM"
+msgstr ""
+
+#. uC2XH
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id111592355816454\n"
+"help.text"
+msgid "SQRTPI"
+msgstr ""
+
+#. t6kbr
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id521592355819614\n"
+"help.text"
+msgid "TBILLEQ"
+msgstr ""
+
+#. BMCzh
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id351592355822703\n"
+"help.text"
+msgid "TBILLPRICE"
+msgstr ""
+
+#. KFSbi
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id921592355825694\n"
+"help.text"
+msgid "TBILLYIELD"
+msgstr ""
+
+#. Ce7D3
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id751592355828599\n"
+"help.text"
+msgid "WEEKNUM"
+msgstr ""
+
+#. WKvrN
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id851592355831471\n"
+"help.text"
+msgid "WORKDAY"
+msgstr ""
+
+#. jJDdS
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id291592355834479\n"
+"help.text"
+msgid "XIRR"
+msgstr ""
+
+#. JEeBG
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id521592355837464\n"
+"help.text"
+msgid "XNPV"
+msgstr ""
+
+#. JkpJC
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id201592355840359\n"
+"help.text"
+msgid "YEARFRAC"
+msgstr ""
+
+#. SaiBh
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id281592355843559\n"
+"help.text"
+msgid "YIELD"
+msgstr ""
+
+#. qFVKa
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id341592355846704\n"
+"help.text"
+msgid "YIELDDISC"
+msgstr ""
+
+#. HY4dN
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id181592355849664\n"
+"help.text"
+msgid "YIELDMAT"
+msgstr ""
+
+#. 9EfRH
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"hd_id661632676736180\n"
+"help.text"
+msgid "UNO Service Names for Date Add-In Functions"
+msgstr ""
+
+#. QMryg
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id751629988674793\n"
+"help.text"
+msgid "The table below presents a list of all Calc Date Add-In functions and their respective UNO service names."
+msgstr ""
+
+#. dcQK3
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id511593356505781\n"
+"help.text"
+msgid "Calc Function name"
+msgstr ""
+
+#. TEzJG
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id471593356505782\n"
+"help.text"
+msgid "UNO service name"
+msgstr ""
+
+#. J6Jdh
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id721593355432992\n"
+"help.text"
+msgid "DAYSINMONTH"
+msgstr ""
+
+#. yW5C5
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id761641413741892\n"
+"help.text"
+msgid "DAYSINYEAR"
+msgstr ""
+
+#. vXhZ9
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id11641413916930\n"
+"help.text"
+msgid "MONTHS"
+msgstr ""
+
+#. gWTY8
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id761641413962003\n"
+"help.text"
+msgid "WEEKS"
+msgstr ""
+
+#. DjCEK
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id71641413988924\n"
+"help.text"
+msgid "YEARS"
+msgstr ""
+
+#. bNKK9
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id341641414018758\n"
+"help.text"
+msgid "ROT13"
+msgstr ""
+
+#. A7nYJ
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id171641414040589\n"
+"help.text"
+msgid "WEEKSINYEAR"
+msgstr ""
+
+#. qqkuj
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"hd_id661632676732180\n"
+"help.text"
+msgid "UNO Service Names for Pricing Add-In Functions"
+msgstr ""
+
+#. ErZSq
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id751629983674793\n"
+"help.text"
+msgid "The table below presents a list of all Calc Pricing Add-In functions and their respective UNO service names."
+msgstr ""
+
+#. mwzeA
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id511593356506781\n"
+"help.text"
+msgid "Calc Function name"
+msgstr ""
+
+#. TRZn5
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id471593356505762\n"
+"help.text"
+msgid "UNO service name"
+msgstr ""
+
+#. rQJPp
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id701641414383401\n"
+"help.text"
+msgid "OPT_BARRIER"
+msgstr ""
+
+#. zF653
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id131641414493411\n"
+"help.text"
+msgid "OPT_PROB_HIT"
+msgstr ""
+
+#. 2xAys
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id81641414542294\n"
+"help.text"
+msgid "OPT_PROB_INMONEY"
+msgstr ""
+
+#. WKVoC
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id711641414594816\n"
+"help.text"
+msgid "OPT_TOUCH"
+msgstr ""
+
+#. WS3B9
+#: classmodule.xhp
+msgctxt ""
+"classmodule.xhp\n"
+"N0083\n"
+"help.text"
+msgid "<variable id=\"classmodulestatement\"><link href=\"text/sbasic/shared/classmodule.xhp\" name=\"option classmodule\">Option ClassModule Statement</link></variable>"
+msgstr ""
+
+#. 4MQj9
+#: classmodule.xhp
+msgctxt ""
+"classmodule.xhp\n"
+"N0084\n"
+"help.text"
+msgid "Specifies that the module is a class module that contains members, properties, procedures and functions."
+msgstr ""
+
+#. vqr43
+#: classmodule.xhp
+msgctxt ""
+"classmodule.xhp\n"
+"N0089\n"
+"help.text"
+msgid "This statement must be used jointly with <literal>Option Compatible</literal> statement or <literal>Option VBASupport 1</literal>, the former is enabling VBA compatibility mode, while the latter is enforcing VBA support on top of compatibility."
+msgstr ""
+
+#. UoERn
+#: classmodule.xhp
+msgctxt ""
+"classmodule.xhp\n"
+"N0095\n"
+"help.text"
+msgid "' Optional members go here"
+msgstr ""
+
+#. 4Ffze
+#: classmodule.xhp
+msgctxt ""
+"classmodule.xhp\n"
+"N0098\n"
+"help.text"
+msgid "' Optional construction code goes here"
+msgstr ""
+
+#. K5DSq
+#: classmodule.xhp
+msgctxt ""
+"classmodule.xhp\n"
+"N0099\n"
+"help.text"
+msgid "End Sub ' Constructor"
+msgstr ""
+
+#. PwJxP
+#: classmodule.xhp
+msgctxt ""
+"classmodule.xhp\n"
+"N0101\n"
+"help.text"
+msgid "' Optional destruction code goes here"
+msgstr ""
+
+#. AmeAe
+#: classmodule.xhp
+msgctxt ""
+"classmodule.xhp\n"
+"N0102\n"
+"help.text"
+msgid "End Sub ' Destructor"
+msgstr ""
+
+#. Lsaqg
+#: classmodule.xhp
+msgctxt ""
+"classmodule.xhp\n"
+"N0104\n"
+"help.text"
+msgid "' Properties go here."
+msgstr ""
+
+#. RFy5k
+#: classmodule.xhp
+msgctxt ""
+"classmodule.xhp\n"
+"N0106\n"
+"help.text"
+msgid "' Procedures & functions go here."
+msgstr ""
+
+#. Funka
+#: classmodule.xhp
+msgctxt ""
+"classmodule.xhp\n"
+"N0108\n"
+"help.text"
+msgid "Refer to <link href=\"text/sbasic/python/python_platform.xhp\">Identifying the Operating System</link> and <link href=\"text/sbasic/python/python_session.xhp\">Getting Session Information</link> for class module simple examples."
+msgstr ""
+
+#. JQJqh
+#: classmodule.xhp
+msgctxt ""
+"classmodule.xhp\n"
+"N0109\n"
+"help.text"
+msgid "Multiple thorough class examples are available from <link href=\"text/sbasic/guide/access2base.xhp\">Access2Base shared Basic library</link>."
+msgstr ""
+
+#. vSapF
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"tit\n"
+"help.text"
+msgid "Collection Object"
+msgstr ""
+
+#. TdXDY
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"bm_id3149205\n"
+"help.text"
+msgid "<bookmark_value>Collection Object</bookmark_value>"
+msgstr ""
+
+#. 68sg6
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"hd_id791633472607429\n"
+"help.text"
+msgid "<variable id=\"Collection_h1\"><link href=\"text/sbasic/shared/collection.xhp\" name=\"New_Operator\">Collection Object</link></variable>"
+msgstr ""
+
+#. 7xSei
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id581633961735332\n"
+"help.text"
+msgid "Collections can be used to store items of different types. Each item can be accessed by its index or by an optional key associated with it."
+msgstr ""
+
+#. 9b4kg
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id131633961959816\n"
+"help.text"
+msgid "A <literal>Collection</literal> object has the following methods:"
+msgstr ""
+
+#. XoLQr
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id331633962000259\n"
+"help.text"
+msgid "<emph>Add:</emph> inserts a new item into the collection. Optionally a string value can be defined as the key to the item."
+msgstr ""
+
+#. ddAGy
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id181633962000767\n"
+"help.text"
+msgid "<emph>Count:</emph> returns the number of items in the collection."
+msgstr ""
+
+#. ad7qY
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id521633962001072\n"
+"help.text"
+msgid "<emph>Item:</emph> returns the item in the collection by passing its index or key."
+msgstr ""
+
+#. GX6nx
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id981633962001272\n"
+"help.text"
+msgid "<emph>Remove:</emph> removes the specified item from the collection by its index or key."
+msgstr ""
+
+#. yyWx7
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id221633976539661\n"
+"help.text"
+msgid "Items in a Collection can be accessed either by their indices (as in a 1-based single-dimensional Array) or by their associated keys."
+msgstr ""
+
+#. PheLX
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id811634214809970\n"
+"help.text"
+msgid "The <link href=\"text/sbasic/shared/03/sf_dictionary.xhp\" name=\"SFDic_link\"><literal>ScriptForge Dictionary</literal></link> service extends the <literal>Collection</literal> object by providing supplemental features as key retrieval and replacement, as well as import/export to Array objects and JSON strings."
+msgstr ""
+
+#. pJAht
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"hd_id51633962353863\n"
+"help.text"
+msgid "Creating a Collection"
+msgstr ""
+
+#. 28i8B
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id491633962366024\n"
+"help.text"
+msgid "To create a <literal>Collection</literal> use the <literal>New</literal> keyword. The following example creates a <literal>Collection</literal> object and populates it with three items:"
+msgstr ""
+
+#. 8hHmz
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"hd_id421633962742512\n"
+"help.text"
+msgid "Adding Items"
+msgstr ""
+
+#. 3qnWY
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id261633962766238\n"
+"help.text"
+msgid "The <literal>Add</literal> method can be used to add new items into the <literal>Collection</literal> object."
+msgstr ""
+
+#. htAaY
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id501633974650241\n"
+"help.text"
+msgid "<emph>item:</emph> the item to be added to the <literal>Collection</literal>. May be of any type."
+msgstr ""
+
+#. DUGrx
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id181633974650705\n"
+"help.text"
+msgid "<emph>key:</emph> string value used as the unique key used to identify this value."
+msgstr ""
+
+#. yoEzK
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id391633974651050\n"
+"help.text"
+msgid "<emph>before, after:</emph> optional keyword argument that indicates where the new item will be placed in the <literal>Collection</literal>. Only one of the arguments <literal>before</literal> or <literal>after</literal> can be specified to determine the index or key before which (or after which) the new item is to be placed."
+msgstr ""
+
+#. xcdEF
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id211633962988398\n"
+"help.text"
+msgid "The example below adds two elements into a <literal>Collection</literal>. The first has a key associated with it, whereas the second does not."
+msgstr ""
+
+#. ZKBEQ
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id71633963110632\n"
+"help.text"
+msgid "The <literal>Add</literal> method also supports keyword arguments:"
+msgstr ""
+
+#. ZhTZb
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id941633963225913\n"
+"help.text"
+msgid "Keys must be unique in a <literal>Collection</literal> object. Comparison between keys is <emph>case-insensitive</emph>. Adding duplicated keys will result in a runtime error."
+msgstr ""
+
+#. NVgmj
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id891633975568372\n"
+"help.text"
+msgid "The example below illustrates how to use the <literal>Before</literal> and <literal>After</literal> keyword arguments to determine the position of the item that is being added."
+msgstr ""
+
+#. WxjE9
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id121633976325472\n"
+"help.text"
+msgid "Items in a <literal>Collection</literal> object are assigned an integer index value that starts at 1 and corresponds to the order in which they were added."
+msgstr ""
+
+#. 2Lrc6
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"hd_id141633977141797\n"
+"help.text"
+msgid "Accessing Items"
+msgstr ""
+
+#. MquEn
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id431633977156315\n"
+"help.text"
+msgid "Use the <literal>Item</literal> method to access a given item by its index or key."
+msgstr ""
+
+#. DCFTg
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id261633976447187\n"
+"help.text"
+msgid "<emph>index:</emph> an integer value specifying the index of the item to be returned."
+msgstr ""
+
+#. mqA85
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id51633976782487\n"
+"help.text"
+msgid "<emph>key:</emph> a string value specifying the key of the item to be returned."
+msgstr ""
+
+#. egnJW
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"hd_id651633976030220\n"
+"help.text"
+msgid "Removing Items"
+msgstr ""
+
+#. Wteju
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id391633976125206\n"
+"help.text"
+msgid "Use the <literal>Remove</literal> method to delete items from a <literal>Collection</literal> object."
+msgstr ""
+
+#. sHVAN
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id121633976268027\n"
+"help.text"
+msgid "Items can be removed either by their indices or key values."
+msgstr ""
+
+#. o9Eyd
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id261633976447289\n"
+"help.text"
+msgid "<emph>index:</emph> an integer value specifying the index of the item to be removed."
+msgstr ""
+
+#. 8TMiC
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id51633976782455\n"
+"help.text"
+msgid "<emph>key:</emph> a string value specifying the key of the item to be removed."
+msgstr ""
+
+#. WpHmn
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"hd_id491633978085731\n"
+"help.text"
+msgid "Iterating Over all Items"
+msgstr ""
+
+#. FVzmC
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id91633978099143\n"
+"help.text"
+msgid "It is possible to use a <literal>For Each ... Next</literal> statement to iterate over all items in a <literal>Collection</literal>."
+msgstr ""
+
+#. EWDWE
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"hd_id191634215349347\n"
+"help.text"
+msgid "Clearing a Collection"
+msgstr ""
+
+#. V4EZw
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id891634215363485\n"
+"help.text"
+msgid "To remove all items from a <literal>Collection</literal> object call the <literal>Remove</literal> method for each item, as illustrated in the example below:"
+msgstr ""
+
+#. tUMtQ
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"bas_id681634215646028\n"
+"help.text"
+msgid "' Create a sample Collection with two entries"
+msgstr ""
+
+#. Yy5nP
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"bas_id391634215647196\n"
+"help.text"
+msgid "' Removes all items in the collection"
+msgstr ""
+
+#. gvH3T
+#: compatibilitymode.xhp
+msgctxt ""
+"compatibilitymode.xhp\n"
+"tit\n"
+"help.text"
+msgid "CompatibilityMode function"
+msgstr ""
+
+#. 7mPvG
+#: compatibilitymode.xhp
+msgctxt ""
+"compatibilitymode.xhp\n"
+"N0103\n"
+"help.text"
+msgid "<bookmark_value>CompatibilityMode</bookmark_value> <bookmark_value>VBA compatibility mode</bookmark_value>"
+msgstr ""
+
+#. WL5ei
+#: compatibilitymode.xhp
+msgctxt ""
+"compatibilitymode.xhp\n"
+"N0118\n"
+"help.text"
+msgid "<variable id=\"compatibilitymodeh1\"><link href=\"text/sbasic/shared/compatibilitymode.xhp\" name=\"CompatibilityMode\">CompatibilityMode() Function</link></variable>"
+msgstr ""
+
+#. 4EEry
+#: compatibilitymode.xhp
+msgctxt ""
+"compatibilitymode.xhp\n"
+"N0120\n"
+"help.text"
+msgid "<literal>CompatibilityMode()</literal> function controls or queries runtime mode. It affects all code executed after setting or resetting the runtime mode."
+msgstr ""
+
+#. YSokk
+#: compatibilitymode.xhp
+msgctxt ""
+"compatibilitymode.xhp\n"
+"N0119\n"
+"help.text"
+msgid "Use this feature with caution, limit it to document conversion for example."
+msgstr ""
+
+#. VDnNU
+#: compatibilitymode.xhp
+msgctxt ""
+"compatibilitymode.xhp\n"
+"bas_id751645014686110\n"
+"help.text"
+msgid "CompatibilityMode(Optional Enable As Boolean) As Boolean"
+msgstr ""
+
+#. 34s7C
+#: compatibilitymode.xhp
+msgctxt ""
+"compatibilitymode.xhp\n"
+"par_id551648117368688\n"
+"help.text"
+msgid "<literal>CompatibilityMode</literal> function always returns the mode that is active after its execution. That is if called with argument, it returns the new mode, if called without argument, it returns active mode without modifying it."
+msgstr ""
+
+#. buGpD
+#: compatibilitymode.xhp
+msgctxt ""
+"compatibilitymode.xhp\n"
+"par_id971648117815981\n"
+"help.text"
+msgid "<emph>Enable</emph>: Sets or unsets new compatibility mode when the argument is present."
+msgstr ""
+
+#. ouFEB
+#: compatibilitymode.xhp
+msgctxt ""
+"compatibilitymode.xhp\n"
+"par_id371648123169691\n"
+"help.text"
+msgid "<literal>CompatibilityMode</literal> function relates to <link href=\"text/sbasic/shared/03103350.xhp#vbasupportstatement\" name=\"VBASupport compiler option\">Option VBASupport 1</link>, in which case it always returns <literal>True</literal>. It is unrelated to <link href=\"text/sbasic/shared/compatible.xhp#compatiblestatement\" name=\"Option Compatible compiler directive\">Option Compatible</link> compiler directive."
+msgstr ""
+
+#. NM3yP
+#: compatibilitymode.xhp
+msgctxt ""
+"compatibilitymode.xhp\n"
+"N0121\n"
+"help.text"
+msgid "This function may affect or help in the following situations:"
+msgstr ""
+
+#. RSBt2
+#: compatibilitymode.xhp
+msgctxt ""
+"compatibilitymode.xhp\n"
+"par_id301645018760314\n"
+"help.text"
+msgid "Scoping of variables."
+msgstr ""
+
+#. f6LjG
+#: compatibilitymode.xhp
+msgctxt ""
+"compatibilitymode.xhp\n"
+"N0124\n"
+"help.text"
+msgid "Running <literal>RmDir</literal> command in VBA mode. In VBA only empty directories are removed by <literal>RmDir</literal> while %PRODUCTNAME Basic removes a directory recursively."
+msgstr ""
+
+#. KLkKY
+#: compatibilitymode.xhp
+msgctxt ""
+"compatibilitymode.xhp\n"
+"N0125\n"
+"help.text"
+msgid "Changing behavior of Basic <literal>Dir</literal> command. The directory flag (16) for the <literal>Dir</literal> command means that only directories are returned in %PRODUCTNAME Basic, while in VBA normal files and directories are returned."
+msgstr ""
+
+#. DMpTx
+#: compatibilitymode.xhp
+msgctxt ""
+"compatibilitymode.xhp\n"
+"par_id901639929393688\n"
+"help.text"
+msgid "Color components calculation with the <link href=\"text/sbasic/shared/03010303.xhp\" name=\"linkred\"><literal>Red</literal></link> and <link href=\"text/sbasic/shared/03010301.xhp\" name=\"linkblue\"><literal>Blue</literal></link> functions which <emph>are interchanged</emph> (The <link href=\"text/sbasic/shared/03010302.xhp\" name=\"linkgreen\"><literal>Green</literal></link> function is not affected)."
+msgstr ""
+
+#. cFz7C
+#: compatibilitymode.xhp
+msgctxt ""
+"compatibilitymode.xhp\n"
+"par_id541561646705787\n"
+"help.text"
+msgid "Given a NOT empty directory at <emph>file:///home/me/Test</emph>"
+msgstr ""
+
+#. yntDo
+#: compatibilitymode.xhp
+msgctxt ""
+"compatibilitymode.xhp\n"
+"par_id461561646613414\n"
+"help.text"
+msgid "With <literal>CompatibilityMode( True )</literal> the program raises an error, otherwise the <literal>Test</literal> directory and all its content is deleted."
+msgstr ""
+
+#. TcWG2
+#: compatibilitymode.xhp
+msgctxt ""
+"compatibilitymode.xhp\n"
+"par_id411561647797398\n"
+"help.text"
+msgid "Modifying <literal>Dir</literal> behavior"
+msgstr ""
+
+#. RcnAo
+#: compatibilitymode.xhp
+msgctxt ""
+"compatibilitymode.xhp\n"
+"par_id831561647900147\n"
+"help.text"
+msgid "CompatibilityMode( Enable := True ) ' Shows also normal files"
+msgstr ""
+
+#. oBqaD
+#: compatibilitymode.xhp
+msgctxt ""
+"compatibilitymode.xhp\n"
+"bas_id641645017016611\n"
+"help.text"
+msgid "CompatibilityMode Enable := False ' Shows only directories"
+msgstr ""
+
+#. P7qDB
+#: compatibilitymode.xhp
+msgctxt ""
+"compatibilitymode.xhp\n"
+"N0131\n"
+"help.text"
+msgid "Variables scope modification in <link href=\"text/sbasic/shared/01020300.xhp\">Using Procedures and Functions</link> with <literal>CompatibilityMode()</literal> function."
+msgstr ""
+
+#. imVdb
+#: compatible.xhp
+msgctxt ""
+"compatible.xhp\n"
+"N0104\n"
+"help.text"
+msgid "<variable id=\"compatiblestatement\"><link href=\"text/sbasic/shared/compatible.xhp\" name=\"compatible\">Option Compatible Statement</link></variable>"
+msgstr ""
+
+#. 6HFov
+#: compatible.xhp
+msgctxt ""
+"compatible.xhp\n"
+"N0106\n"
+"help.text"
+msgid "<literal>Option Compatible</literal> extends %PRODUCTNAME Basic compiler and runtime, allowing supplemental language constructs to Basic."
+msgstr ""
+
+#. w5NPC
+#: compatible.xhp
+msgctxt ""
+"compatible.xhp\n"
+"N0107\n"
+"help.text"
+msgid "This option may affect or assist in the following situations:"
+msgstr ""
+
+#. T3Ng7
+#: compatible.xhp
+msgctxt ""
+"compatible.xhp\n"
+"N0108\n"
+"help.text"
+msgid "Allow special characters as identifiers. all characters that are defined as letter in the Latin-1 (ISO 8859-1) character set, are accepted as part of identifiers."
+msgstr ""
+
+#. iEB4s
+#: compatible.xhp
+msgctxt ""
+"compatible.xhp\n"
+"N0109\n"
+"help.text"
+msgid "Create <link href=\"text/sbasic/shared/03040000.xhp#addvbaconstants\" name=\"addvbaconstants\">VBA constants including non-printable characters</link>."
+msgstr ""
+
+#. rjfZs
+#: compatible.xhp
+msgctxt ""
+"compatible.xhp\n"
+"N0110\n"
+"help.text"
+msgid "Allow the <literal>New</literal> operator to be optional in <literal>Dim</literal> statements."
+msgstr ""
+
+#. yJQAV
+#: compatible.xhp
+msgctxt ""
+"compatible.xhp\n"
+"N0112\n"
+"help.text"
+msgid "Allow default values for optional parameters in procedures."
+msgstr ""
+
+#. zzETD
+#: compatible.xhp
+msgctxt ""
+"compatible.xhp\n"
+"N0113\n"
+"help.text"
+msgid "Use named arguments when multiple optional parameters exist."
+msgstr ""
+
+#. 6Fb5x
+#: compatible.xhp
+msgctxt ""
+"compatible.xhp\n"
+"N0114\n"
+"help.text"
+msgid "Preload of %PRODUCTNAME Basic libraries"
+msgstr ""
+
+#. uNUqR
+#: compatible.xhp
+msgctxt ""
+"compatible.xhp\n"
+"N0115\n"
+"help.text"
+msgid "<literal>Option Compatible</literal> is required when coding class modules."
+msgstr ""
+
+#. gBqrZ
+#: compatible.xhp
+msgctxt ""
+"compatible.xhp\n"
+"hd_id231561639199292\n"
+"help.text"
+msgid "Special characters as identifiers"
+msgstr ""
+
+#. QkGeQ
+#: compatible.xhp
+msgctxt ""
+"compatible.xhp\n"
+"par_id641581846957447\n"
+"help.text"
+msgid "' With this option the code works, otherwise it causes a compiling error"
+msgstr ""
+
+#. rWE5B
+#: compatible.xhp
+msgctxt ""
+"compatible.xhp\n"
+"par_id381561650119146\n"
+"help.text"
+msgid "Statement <literal>Option VBAsupport 1</literal> implies <literal>Option Compatible</literal> statement automatically."
+msgstr ""
+
+#. j8iHM
+#: compatible.xhp
+msgctxt ""
+"compatible.xhp\n"
+"N0131\n"
+"help.text"
+msgid "Variables scope modification in <link href=\"text/sbasic/shared/01020300.xhp\">Using Procedures and Functions</link> with <literal>CompatibilityMode()</literal> function."
+msgstr ""
+
+#. 2hkYG
+#: compatible.xhp
+msgctxt ""
+"compatible.xhp\n"
+"N0129\n"
+"help.text"
+msgid "Refer to <link href=\"text/sbasic/python/python_platform.xhp\">Identifying the Operating System</link> and <link href=\"text/sbasic/python/python_session.xhp\">Getting Session Information</link> for class module examples, or <link href=\"text/sbasic/guide/access2base.xhp\">Access2Base shared Basic library</link> for other class examples making use of <literal>Option Compatible</literal> compiler mode."
+msgstr ""
+
+#. QF4Ds
+#: conventions.xhp
+msgctxt ""
+"conventions.xhp\n"
+"tit\n"
+"help.text"
+msgid "Syntax Diagrams"
+msgstr ""
+
+#. CkdjC
+#: conventions.xhp
+msgctxt ""
+"conventions.xhp\n"
+"bm_id861593777289558\n"
+"help.text"
+msgid "<bookmark_value>Syntax diagrams; How to read</bookmark_value> <bookmark_value>Statements syntax;How to read</bookmark_value> <bookmark_value>Typographical conventions</bookmark_value>"
+msgstr ""
+
+#. VTTA3
+#: conventions.xhp
+msgctxt ""
+"conventions.xhp\n"
+"hd_id221543446540070\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/conventions.xhp\" name=\"conventions\">How to Read Syntax Diagrams and Statements</link>"
+msgstr ""
+
+#. jJGWn
+#: conventions.xhp
+msgctxt ""
+"conventions.xhp\n"
+"par_id601593699108443\n"
+"help.text"
+msgid "%PRODUCTNAME Basic statements use syntax diagrams and textual conventions that follow these typographical rules:"
+msgstr ""
+
+#. ZnMxE
+#: conventions.xhp
+msgctxt ""
+"conventions.xhp\n"
+"par_id158193699546735\n"
+"help.text"
+msgid "%PRODUCTNAME Basic keywords or functions use proper casing: Call, DimArray, InputBox, Property."
+msgstr ""
+
+#. ny9xr
+#: conventions.xhp
+msgctxt ""
+"conventions.xhp\n"
+"par_id711593699548486\n"
+"help.text"
+msgid "Lowercase characters indicate information to supply: end, expression, start, variable."
+msgstr ""
+
+#. 6cDAC
+#: conventions.xhp
+msgctxt ""
+"conventions.xhp\n"
+"par_id881593760345504\n"
+"help.text"
+msgid "The syntax of a %PRODUCTNAME Basic one line statement is illustrated herewith:"
+msgstr ""
+
+#. 8Co5j
+#: conventions.xhp
+msgctxt ""
+"conventions.xhp\n"
+"hd_id871593700670279\n"
+"help.text"
+msgid "Diagram example"
+msgstr ""
+
+#. 5AfpR
+#: conventions.xhp
+msgctxt ""
+"conventions.xhp\n"
+"par_id181593699574635\n"
+"help.text"
+msgid "Basic statement diagrams start and end with double vertical bars,"
+msgstr ""
+
+#. oNAUQ
+#: conventions.xhp
+msgctxt ""
+"conventions.xhp\n"
+"par_id711596399548486\n"
+"help.text"
+msgid "Loops indicate a possible repetition, an optional separator may be present,"
+msgstr ""
+
+#. qBArU
+#: conventions.xhp
+msgctxt ""
+"conventions.xhp\n"
+"par_id541593706654897\n"
+"help.text"
+msgid "Rectangles denote subsequent diagram fragments,"
+msgstr ""
+
+#. MgRRZ
+#: conventions.xhp
+msgctxt ""
+"conventions.xhp\n"
+"par_id251593706717957\n"
+"help.text"
+msgid "Diagram fragments extremities exhibit single vertical bars."
+msgstr ""
+
+#. 2ERcw
+#: conventions.xhp
+msgctxt ""
+"conventions.xhp\n"
+"par_id831588865616326\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sbasic/a_statement.svg\" id=\"img_id651588865616326\"><alt id=\"alt_id281588865616326\">syntax of a statement</alt></image>"
+msgstr ""
+
+#. QDyRr
+#: conventions.xhp
+msgctxt ""
+"conventions.xhp\n"
+"par_id411579301639711\n"
+"help.text"
+msgid "A set of %PRODUCTNAME Basic statements - with optional labels - is using a colon <literal>:</literal> sign to separate them, it can be terminated with an optional comment. <literal>REM</literal> or an apostrophe sign introduce a comment."
+msgstr ""
+
+#. fR7p7
+#: conventions.xhp
+msgctxt ""
+"conventions.xhp\n"
+"par_id931593707147102\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sbasic/comment_fragment.svg\" id=\"img_id191593707147102\"><alt id=\"alt_id111593707147102\">diagram fragment</alt></image>"
+msgstr ""
+
+#. tMPo2
+#: conventions.xhp
+msgctxt ""
+"conventions.xhp\n"
+"hd_id71593700691968\n"
+"help.text"
+msgid "Textual example"
+msgstr ""
+
+#. vtggd
+#: conventions.xhp
+msgctxt ""
+"conventions.xhp\n"
+"par_id181593700546735\n"
+"help.text"
+msgid "<emph>[opt1|opt2|opt3]</emph> Items inside brackets are optional, alternatives are indicated with a vertical bar,"
+msgstr ""
+
+#. ap6xE
+#: conventions.xhp
+msgctxt ""
+"conventions.xhp\n"
+"par_id181593699546735\n"
+"help.text"
+msgid "<emph>case[[sep]…]</emph> An ellipsis indicates a possible repetition, an optional separator may be specified,"
+msgstr ""
+
+#. FEGF3
+#: conventions.xhp
+msgctxt ""
+"conventions.xhp\n"
+"par_id712593699548486\n"
+"help.text"
+msgid "<emph>{choice1|choice2}</emph> Items inside curly braces are compulsory, alternatives are indicated with a vertical bar."
+msgstr ""
+
+#. VFKcU
+#: conventions.xhp
+msgctxt ""
+"conventions.xhp\n"
+"par_id411593701639711\n"
+"help.text"
+msgid "A set of %PRODUCTNAME Basic statements - with optional labels - is using a colon <literal>:</literal> sign to separate them, it can be terminated with an optional comment. <literal>REM</literal> or an apostrophe sign introduce a comment."
+msgstr ""
+
+#. RUhNn
+#: conventions.xhp
+msgctxt ""
+"conventions.xhp\n"
+"N0018\n"
+"help.text"
+msgid "GoTo there ' skip first statement"
+msgstr ""
+
+#. oCE77
+#: conventions.xhp
+msgctxt ""
+"conventions.xhp\n"
+"N0019\n"
+"help.text"
+msgid "here: Print 1, : there: Print 2 REM explanatory text here"
+msgstr ""
+
+#. 7pf8S
+#: enum.xhp
+msgctxt ""
+"enum.xhp\n"
+"tit\n"
+"help.text"
+msgid "Enum Statement"
+msgstr ""
+
+#. 7XAsc
+#: enum.xhp
+msgctxt ""
+"enum.xhp\n"
+"N0001\n"
+"help.text"
+msgid "<bookmark_value>Enum statement</bookmark_value> <bookmark_value>constant groups</bookmark_value> <bookmark_value>enumerations</bookmark_value>"
+msgstr ""
+
+#. nqumw
+#: enum.xhp
+msgctxt ""
+"enum.xhp\n"
+"hd_id221543446540070\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/enum.xhp\" name=\"command_name\">Enum Statement [VBA]</link>"
+msgstr ""
+
+#. nCNts
+#: enum.xhp
+msgctxt ""
+"enum.xhp\n"
+"N0003\n"
+"help.text"
+msgid "Define enumerations or non UNO constant groups. An enumeration is a value list that facilitates programming and eases code logic review."
+msgstr ""
+
+#. VYBXM
+#: enum.xhp
+msgctxt ""
+"enum.xhp\n"
+"par_id831588865616326\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sbasic/Enum_statement.svg\" id=\"img_id651588865616326\"><alt id=\"alt_id281588865616326\">Enum syntax</alt></image>"
+msgstr ""
+
+#. irGeH
+#: enum.xhp
+msgctxt ""
+"enum.xhp\n"
+"N0006\n"
+"help.text"
+msgid "Parameters:"
+msgstr ""
+
+#. aiEGy
+#: enum.xhp
+msgctxt ""
+"enum.xhp\n"
+"N0007\n"
+"help.text"
+msgid "Within a given enumeration, fit together values that logically relate to one another."
+msgstr ""
+
+#. EYqEn
+#: enum.xhp
+msgctxt ""
+"enum.xhp\n"
+"N0030\n"
+"help.text"
+msgid "Enumerated values are rendered to <emph>Long</emph> datatype. Basic functions are public accessors to enumerations. Enumeration names and value names must be unique within a library and across modules."
+msgstr ""
+
+#. zESQa
+#: enum.xhp
+msgctxt ""
+"enum.xhp\n"
+"N0036\n"
+"help.text"
+msgid "Usage:"
+msgstr ""
+
+#. vA2jL
+#: enum.xhp
+msgctxt ""
+"enum.xhp\n"
+"N0037\n"
+"help.text"
+msgid "Display WindowManager grouped constant values:"
+msgstr ""
+
+#. HBPCv
+#: enum.xhp
+msgctxt ""
+"enum.xhp\n"
+"par_id731573636687662\n"
+"help.text"
+msgid "Enumerations can be extended to other data types using <link href=\"text/sbasic/shared/03090413.xhp\" name=\"Type statement\">Type statement</link> definitions. <link href=\"text/sbasic/guide/basic_2_python.xhp\" name=\"Calling Python Scripts from Basic\">Calling Python Scripts from Basic</link> illustrates that mechanism."
+msgstr ""
+
+#. N48Xe
+#: enum.xhp
+msgctxt ""
+"enum.xhp\n"
+"N0051\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03100700.xhp\" name=\"const\">Const</link> statement, <link href=\"text/sbasic/shared/01020100.xhp\" name=\"external\">constants</link>"
+msgstr ""
+
+#. PEGnc
+#: enum.xhp
+msgctxt ""
+"enum.xhp\n"
+"N0053\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03103350.xhp\" name=\"Option VBASupport\">Option VBASupport</link> statement"
+msgstr ""
+
+#. gfQpy
+#: enum.xhp
+msgctxt ""
+"enum.xhp\n"
+"N0061\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"With\">With</link> statement"
+msgstr ""
+
+#. FFWQn
+#: fragments.xhp
+msgctxt ""
+"fragments.xhp\n"
+"tit\n"
+"help.text"
+msgid "Basic syntax diagrams fragments"
+msgstr ""
+
+#. y2yz2
+#: fragments.xhp
+msgctxt ""
+"fragments.xhp\n"
+"hd_id541587044867073\n"
+"help.text"
+msgid "<variable id=\"fragmentsh1\"><link href=\"text/sbasic/shared/fragments.xhp\" name=\"Syntax fragments\">Syntax fragments</link></variable>"
+msgstr ""
+
+#. qdgmB
+#: fragments.xhp
+msgctxt ""
+"fragments.xhp\n"
+"par_id881587044839050\n"
+"help.text"
+msgid "%PRODUCTNAME Basic syntax fragments."
+msgstr ""
+
+#. 4eH7M
+#: fragments.xhp
+msgctxt ""
+"fragments.xhp\n"
+"hd_id431587045941514\n"
+"help.text"
+msgid "<variable id=\"argumenth2\"><link href=\"text/sbasic/shared/fragments.xhp\" name=\"arguments in Function, Sub and Property statements\"/>argument fragment</variable>"
+msgstr ""
+
+#. pfHq8
+#: fragments.xhp
+msgctxt ""
+"fragments.xhp\n"
+"par_id491585753339474\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sbasic/argument_fragment.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">argument fragment</alt></image>"
+msgstr ""
+
+#. zqKwG
+#: fragments.xhp
+msgctxt ""
+"fragments.xhp\n"
+"hd_id811587303969210\n"
+"help.text"
+msgid "Parameters"
+msgstr ""
+
+#. E7GXy
+#: fragments.xhp
+msgctxt ""
+"fragments.xhp\n"
+"par_id481586090298901\n"
+"help.text"
+msgid "<literal>Optional</literal>: The argument is not mandatory."
+msgstr ""
+
+#. FEs39
+#: fragments.xhp
+msgctxt ""
+"fragments.xhp\n"
+"par_id331586090532804\n"
+"help.text"
+msgid "<literal>ByRef</literal>: The argument is passed by reference. <literal>ByRef</literal> is the default."
+msgstr ""
+
+#. WuCPC
+#: fragments.xhp
+msgctxt ""
+"fragments.xhp\n"
+"par_id331586090432804\n"
+"help.text"
+msgid "<literal>ByVal</literal>: The argument is passed by value. Its value can be modified by the called routine."
+msgstr ""
+
+#. GrfMS
+#: fragments.xhp
+msgctxt ""
+"fragments.xhp\n"
+"par_id651587044335713\n"
+"help.text"
+msgid "<emph>char:</emph> Type declaration character."
+msgstr ""
+
+#. Naxwg
+#: fragments.xhp
+msgctxt ""
+"fragments.xhp\n"
+"par_id651587044336713\n"
+"help.text"
+msgid "<emph>typename</emph>: Primitive data type name. Library or module defined types can also be specified."
+msgstr ""
+
+#. KwsyR
+#: fragments.xhp
+msgctxt ""
+"fragments.xhp\n"
+"par_id11587045141290\n"
+"help.text"
+msgid "<emph>= expression</emph>: Specify a default value for the argument, matching its declared type. <literal>Optional</literal> is necessary for each argument specifying a default value."
+msgstr ""
+
+#. 4Atx8
+#: fragments.xhp
+msgctxt ""
+"fragments.xhp\n"
+"par_id331586091432804\n"
+"help.text"
+msgid "<literal>ParamArray</literal>: Use <literal>ParamArray</literal> when the number of parameters is undetermined. A typical scenario is that of a Calc user-defined function. Using <literal>ParamArray</literal> should be limited to the last argument of a routine."
+msgstr ""
+
+#. GWSD4
+#: fragments.xhp
+msgctxt ""
+"fragments.xhp\n"
+"par_id851587050837107\n"
+"help.text"
+msgid "Using<literal>ParamArray</literal> or <emph>= expression</emph> require <link href=\"text/sbasic/shared/compatible.xhp\" name=\"Option Compatible\">Option Compatible</link> to be placed before the executable program code in a module."
+msgstr ""
+
+#. EDCLX
+#: fragments.xhp
+msgctxt ""
+"fragments.xhp\n"
+"par_id391587571321063\n"
+"help.text"
+msgid "When using <link href=\"text/sbasic/shared/vbasupport.xhp\" name=\"Option VBASupport\">Option VBASupport 1</link>, <literal>Optional</literal> arguments with no default value (<emph>= expression</emph>) are initialized according to their data type, except if <literal>Variant</literal>."
+msgstr ""
+
+#. fDUEu
+#: fragments.xhp
+msgctxt ""
+"fragments.xhp\n"
+"hd_id231587046013456\n"
+"help.text"
+msgid "<variable id=\"arrayh4\"><link href=\"text/sbasic/shared/fragments.xhp\" name=\"array syntax fragment\">array fragment</link></variable>"
+msgstr ""
+
+#. YD32W
+#: fragments.xhp
+msgctxt ""
+"fragments.xhp\n"
+"par_id491586753339473\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sbasic/array_fragment.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">array fragment</alt></image>"
+msgstr ""
+
+#. zrpkq
+#: fragments.xhp
+msgctxt ""
+"fragments.xhp\n"
+"hd_id731587304120258\n"
+"help.text"
+msgid "Parameters"
+msgstr ""
+
+#. dUCSu
+#: fragments.xhp
+msgctxt ""
+"fragments.xhp\n"
+"par_id951587051619162\n"
+"help.text"
+msgid "<emph>start:</emph> Lower bound of a dimension."
+msgstr ""
+
+#. yeb4H
+#: fragments.xhp
+msgctxt ""
+"fragments.xhp\n"
+"par_id951587052619162\n"
+"help.text"
+msgid "<emph>end:</emph> Upper bound of a dimension."
+msgstr ""
+
+#. wyE23
+#: fragments.xhp
+msgctxt ""
+"fragments.xhp\n"
+"par_id961587051702571\n"
+"help.text"
+msgid "Multiple dimensions for an array are denoted using comma (<emph>,</emph>) sign."
+msgstr ""
+
+#. E9UTU
+#: fragments.xhp
+msgctxt ""
+"fragments.xhp\n"
+"hd_id231587046013458\n"
+"help.text"
+msgid "<variable id=\"typenameh4\">typename fragment</variable>"
+msgstr ""
+
+#. AqfYj
+#: fragments.xhp
+msgctxt ""
+"fragments.xhp\n"
+"par_id501586753339474\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sbasic/typename_fragment.svg\" id=\"img_id4157296484514\"><alt id=\"alt_id15152796484515\">primitive data types fragment</alt></image>"
+msgstr ""
+
+#. BSD4e
+#: fragments.xhp
+msgctxt ""
+"fragments.xhp\n"
+"hd_id231587046013459\n"
+"help.text"
+msgid "<variable id=\"charh4\">char fragment</variable>"
+msgstr ""
+
+#. JFwPg
+#: fragments.xhp
+msgctxt ""
+"fragments.xhp\n"
+"par_id511586753339474\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sbasic/char_fragment.svg\" id=\"img_id4157296484514\"><alt id=\"alt_id15152796484516\">type declaration characters</alt></image>"
+msgstr ""
+
+#. tYUK6
+#: is_keyword.xhp
+msgctxt ""
+"is_keyword.xhp\n"
+"tit\n"
+"help.text"
+msgid "Is Operator"
+msgstr ""
+
+#. xvBgn
+#: is_keyword.xhp
+msgctxt ""
+"is_keyword.xhp\n"
+"bm_id3149205\n"
+"help.text"
+msgid "<bookmark_value>Is Operator</bookmark_value>"
+msgstr ""
+
+#. 7otAB
+#: is_keyword.xhp
+msgctxt ""
+"is_keyword.xhp\n"
+"hd_id791633472607429\n"
+"help.text"
+msgid "<variable id=\"IsOperator_h1\"><link href=\"text/sbasic/shared/is_keyword.xhp\" name=\"Is_Operator\">Is Operator</link></variable>"
+msgstr ""
+
+#. mwGMA
+#: is_keyword.xhp
+msgctxt ""
+"is_keyword.xhp\n"
+"par_id3145090\n"
+"help.text"
+msgid "Tests if two Basic variables refer to the same object instance."
+msgstr ""
+
+#. HTVQA
+#: is_keyword.xhp
+msgctxt ""
+"is_keyword.xhp\n"
+"par_id441633531311929\n"
+"help.text"
+msgid "If <literal>oObj1</literal> and <literal>oObj2</literal> are references to the same object instance, the result will be <emph>True</emph>."
+msgstr ""
+
+#. akugg
+#: is_keyword.xhp
+msgctxt ""
+"is_keyword.xhp\n"
+"par_id771633473462939\n"
+"help.text"
+msgid "The example below first defines a new type <literal>Student</literal>. Calling <literal>TestObjects</literal> creates the object <literal>oStudent1</literal> as a new object of this type."
+msgstr ""
+
+#. mAAho
+#: is_keyword.xhp
+msgctxt ""
+"is_keyword.xhp\n"
+"par_id841633532400710\n"
+"help.text"
+msgid "The assignment <literal>oStudent2 = oStudent1</literal> actually copies the reference to the same object. Hence the result of applying the <literal>Is</literal> operator is <emph>True</emph>."
+msgstr ""
+
+#. mvVuR
+#: is_keyword.xhp
+msgctxt ""
+"is_keyword.xhp\n"
+"par_id181633473874216\n"
+"help.text"
+msgid "The example below returns <emph>False</emph> because <literal>oStudent1</literal> and <literal>oStudent2</literal> are references to two different object instances, each created with the <literal>New</literal> operator."
+msgstr ""
+
+#. onSEk
+#: keys.xhp
+msgctxt ""
+"keys.xhp\n"
+"tit\n"
+"help.text"
+msgid "Keyboard Shortcuts in the Basic IDE"
+msgstr ""
+
+#. Zbfyb
+#: keys.xhp
+msgctxt ""
+"keys.xhp\n"
+"bm_id3154760\n"
+"help.text"
+msgid "<bookmark_value>keyboard;in IDE</bookmark_value><bookmark_value>shortcut keys;Basic IDE</bookmark_value><bookmark_value>IDE;keyboard shortcuts</bookmark_value>"
+msgstr ""
+
+#. xoRnY
+#: keys.xhp
+msgctxt ""
+"keys.xhp\n"
+"hd_id3154760\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 ""
+
+#. BRjJ7
+#: keys.xhp
+msgctxt ""
+"keys.xhp\n"
+"par_id3149655\n"
+"help.text"
+msgid "In the Basic IDE you can use the following keyboard shortcuts:"
+msgstr ""
+
+#. ACNp2
+#: keys.xhp
+msgctxt ""
+"keys.xhp\n"
+"par_id3154908\n"
+"help.text"
+msgid "Action"
+msgstr ""
+
+#. vwPiV
+#: keys.xhp
+msgctxt ""
+"keys.xhp\n"
+"par_id3153192\n"
+"help.text"
+msgid "Keyboard shortcut"
+msgstr ""
+
+#. RphtH
+#: keys.xhp
+msgctxt ""
+"keys.xhp\n"
+"par_id3159254\n"
+"help.text"
+msgid "Run code starting from the first line, or from the current breakpoint, if the program stopped there before."
+msgstr ""
+
+#. yc5Fy
+#: keys.xhp
+msgctxt ""
+"keys.xhp\n"
+"par_id3163712\n"
+"help.text"
+msgid "F5"
+msgstr ""
+
+#. 338qg
+#: keys.xhp
+msgctxt ""
+"keys.xhp\n"
+"par_id3150010\n"
+"help.text"
+msgid "Stop"
+msgstr ""
+
+#. YoSNT
+#: keys.xhp
+msgctxt ""
+"keys.xhp\n"
+"par_id3154319\n"
+"help.text"
+msgid "Shift+F5"
+msgstr ""
+
+#. w8dBL
+#: keys.xhp
+msgctxt ""
+"keys.xhp\n"
+"par_id3151073\n"
+"help.text"
+msgid "Add <link href=\"text/sbasic/shared/01050100.xhp\" name=\"watch\">watch</link> for the variable at the cursor."
+msgstr ""
+
+#. denBK
+#: keys.xhp
+msgctxt ""
+"keys.xhp\n"
+"par_id3154731\n"
+"help.text"
+msgid "F7"
+msgstr ""
+
+#. pBuAE
+#: keys.xhp
+msgctxt ""
+"keys.xhp\n"
+"par_id3148455\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 ""
+
+#. DNN5Z
+#: keys.xhp
+msgctxt ""
+"keys.xhp\n"
+"par_id3150716\n"
+"help.text"
+msgid "F8"
+msgstr ""
+
+#. ZbLqF
+#: keys.xhp
+msgctxt ""
+"keys.xhp\n"
+"par_id3156275\n"
+"help.text"
+msgid "Single step as with F8, but a function call is considered to be only <emph>one</emph> statement."
+msgstr ""
+
+#. DKCAB
+#: keys.xhp
+msgctxt ""
+"keys.xhp\n"
+"par_id3153764\n"
+"help.text"
+msgid "Shift+F8"
+msgstr ""
+
+#. FkKFQ
+#: keys.xhp
+msgctxt ""
+"keys.xhp\n"
+"par_id3150323\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 ""
+
+#. 5GBBt
+#: keys.xhp
+msgctxt ""
+"keys.xhp\n"
+"par_id3147339\n"
+"help.text"
+msgid "F9"
+msgstr ""
+
+#. 9P96d
+#: keys.xhp
+msgctxt ""
+"keys.xhp\n"
+"par_id3153963\n"
+"help.text"
+msgid "Enable/disable the breakpoint at the current line or all breakpoints in the current selection."
+msgstr ""
+
+#. zebED
+#: keys.xhp
+msgctxt ""
+"keys.xhp\n"
+"par_id3155175\n"
+"help.text"
+msgid "Shift+F9"
+msgstr ""
+
+#. FETWh
+#: keys.xhp
+msgctxt ""
+"keys.xhp\n"
+"par_id3154702\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 ""
+
+#. UdAFP
+#: main0211.xhp
+msgctxt ""
+"main0211.xhp\n"
+"tit\n"
+"help.text"
+msgid "Macro Toolbar"
+msgstr ""
+
+#. uzA6d
+#: main0211.xhp
+msgctxt ""
+"main0211.xhp\n"
+"bm_id3150543\n"
+"help.text"
+msgid "<bookmark_value>toolbars; Basic IDE</bookmark_value><bookmark_value>macro toolbar</bookmark_value>"
+msgstr ""
+
+#. TBsaV
+#: main0211.xhp
+msgctxt ""
+"main0211.xhp\n"
+"hd_id3150543\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/main0211.xhp\" name=\"Macro Toolbar\">Macro Toolbar</link>"
+msgstr ""
+
+#. ukJ8n
+#: main0211.xhp
+msgctxt ""
+"main0211.xhp\n"
+"par_id3147288\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 ""
+
+#. hWgCC
+#: main0601.xhp
+msgctxt ""
+"main0601.xhp\n"
+"tit\n"
+"help.text"
+msgid "$[officename] Basic Help"
+msgstr ""
+
+#. Fa5sa
+#: main0601.xhp
+msgctxt ""
+"main0601.xhp\n"
+"hd_id3154232\n"
+"help.text"
+msgid "<variable id=\"mainsbasic\"><link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link></variable>"
+msgstr ""
+
+#. 6cHZD
+#: main0601.xhp
+msgctxt ""
+"main0601.xhp\n"
+"par_id3153894\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=\"https://api.libreoffice.org/\" name=\"api.libreoffice.org\">https://api.libreoffice.org</link>"
+msgstr ""
+
+#. iXmNA
+#: main0601.xhp
+msgctxt ""
+"main0601.xhp\n"
+"par_id3147226\n"
+"help.text"
+msgid "This help section explains the most common functions of %PRODUCTNAME Basic. For more in-depth information please refer to the <link href=\"https://wiki.documentfoundation.org/Documentation/BASIC_Guide\" name=\"wiki.documentfoundation.org BASIC Guide\">OpenOffice.org BASIC Programming Guide</link> on the Wiki."
+msgstr ""
+
+#. s6H2V
+#: main0601.xhp
+msgctxt ""
+"main0601.xhp\n"
+"hd_id3146957\n"
+"help.text"
+msgid "Working with %PRODUCTNAME Basic"
+msgstr ""
+
+#. SwqfN
+#: main0601.xhp
+msgctxt ""
+"main0601.xhp\n"
+"hd_id05182017030838384\n"
+"help.text"
+msgid "Working with VBA Macros"
+msgstr ""
+
+#. shBft
+#: main0601.xhp
+msgctxt ""
+"main0601.xhp\n"
+"hd_id191548155077269\n"
+"help.text"
+msgid "Working with Macros in Python"
+msgstr ""
+
+#. 9ChM4
+#: main0601.xhp
+msgctxt ""
+"main0601.xhp\n"
+"hd_id51528998827009\n"
+"help.text"
+msgid "%PRODUCTNAME internal Basic macro libraries"
+msgstr ""
+
+#. ZoN7U
+#: main0601.xhp
+msgctxt ""
+"main0601.xhp\n"
+"par_id441528998842556\n"
+"help.text"
+msgid "%PRODUCTNAME installs a set of Basic macro libraries that can be accessed from your Basic macros."
+msgstr ""
+
+#. 44MBv
+#: new_keyword.xhp
+msgctxt ""
+"new_keyword.xhp\n"
+"tit\n"
+"help.text"
+msgid "New Operator"
+msgstr ""
+
+#. 8iBmc
+#: new_keyword.xhp
+msgctxt ""
+"new_keyword.xhp\n"
+"bm_id3149205\n"
+"help.text"
+msgid "<bookmark_value>New Operator</bookmark_value>"
+msgstr ""
+
+#. T3AA8
+#: new_keyword.xhp
+msgctxt ""
+"new_keyword.xhp\n"
+"hd_id791633472607429\n"
+"help.text"
+msgid "<variable id=\"NewOperator_h1\"><link href=\"text/sbasic/shared/new_keyword.xhp\" name=\"New_Operator\">New Operator</link></variable>"
+msgstr ""
+
+#. BWufp
+#: new_keyword.xhp
+msgctxt ""
+"new_keyword.xhp\n"
+"par_id3145090\n"
+"help.text"
+msgid "Use the <literal>New</literal> operator to instantiate objects of user-defined types, as well as Uno services, structs and enumerations."
+msgstr ""
+
+#. uDGEZ
+#: new_keyword.xhp
+msgctxt ""
+"new_keyword.xhp\n"
+"par_id831633630704012\n"
+"help.text"
+msgid "The <literal>New</literal> operator can be used either during variable declaration or in an assignment operation."
+msgstr ""
+
+#. r6osC
+#: new_keyword.xhp
+msgctxt ""
+"new_keyword.xhp\n"
+"par_id621633630563936\n"
+"help.text"
+msgid "The following example uses the <literal>New</literal> operator to create an instance of the <literal>PropertyValue</literal> Uno struct."
+msgstr ""
+
+#. nPNvc
+#: new_keyword.xhp
+msgctxt ""
+"new_keyword.xhp\n"
+"bas_id631633630856218\n"
+"help.text"
+msgid "' Instantiating the object during variable declaration"
+msgstr ""
+
+#. Ts8iC
+#: new_keyword.xhp
+msgctxt ""
+"new_keyword.xhp\n"
+"bas_id11633631135918\n"
+"help.text"
+msgid "' The same can be accomplished with an assignment"
+msgstr ""
+
+#. 6RJcJ
+#: new_keyword.xhp
+msgctxt ""
+"new_keyword.xhp\n"
+"par_id971633631328827\n"
+"help.text"
+msgid "The example below creates a new type <literal>Student</literal> and instantiates an object of this type:"
+msgstr ""
+
+#. r4nQn
+#: partition.xhp
+msgctxt ""
+"partition.xhp\n"
+"tit\n"
+"help.text"
+msgid "Partition Function"
+msgstr ""
+
+#. nFJKD
+#: partition.xhp
+msgctxt ""
+"partition.xhp\n"
+"bm_id31548421805896\n"
+"help.text"
+msgid "<bookmark_value>Partition Function</bookmark_value>"
+msgstr ""
+
+#. s5UqC
+#: partition.xhp
+msgctxt ""
+"partition.xhp\n"
+"hd_id171548419512929\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/partition.xhp\" name=\"Partition function\">Partition Function [VBA]</link>"
+msgstr ""
+
+#. LDTcg
+#: partition.xhp
+msgctxt ""
+"partition.xhp\n"
+"par_id461548419700445\n"
+"help.text"
+msgid "Returns a string indicating where a number occurs within a calculated series of ranges."
+msgstr ""
+
+#. YyRGM
+#: partition.xhp
+msgctxt ""
+"partition.xhp\n"
+"par_id111548419647867\n"
+"help.text"
+msgid "Partition( Number, Start, End, Interval)"
+msgstr ""
+
+#. EXFRi
+#: partition.xhp
+msgctxt ""
+"partition.xhp\n"
+"par_id481548420000538\n"
+"help.text"
+msgid "<emph>Number</emph>: Required. The number to determine the partition."
+msgstr ""
+
+#. HXMue
+#: partition.xhp
+msgctxt ""
+"partition.xhp\n"
+"par_id841548420006137\n"
+"help.text"
+msgid "<emph>Start</emph>: Required. An integer number defining the lower value of the range of numbers."
+msgstr ""
+
+#. yg4Di
+#: partition.xhp
+msgctxt ""
+"partition.xhp\n"
+"par_id781548420012105\n"
+"help.text"
+msgid "<emph>End</emph>: Required. An integer number defining the highest value of the range."
+msgstr ""
+
+#. VvTEA
+#: partition.xhp
+msgctxt ""
+"partition.xhp\n"
+"par_id371548420017250\n"
+"help.text"
+msgid "<emph>Interval</emph>: Required. An integer number that specifies the size of the partitions within the range of numbers (between Start and End)."
+msgstr ""
+
+#. 9xjpK
+#: partition.xhp
+msgctxt ""
+"partition.xhp\n"
+"par_id561548420541509\n"
+"help.text"
+msgid "print \"20:24 the number 20 occurs in the range: \" & retStr"
+msgstr ""
+
+#. wTzdv
+#: partition.xhp
+msgctxt ""
+"partition.xhp\n"
+"par_id161548420558523\n"
+"help.text"
+msgid "print \" 20: 20 the number 20 occurs in the range: \" & retStr"
+msgstr ""
+
+#. hQuDy
+#: partition.xhp
+msgctxt ""
+"partition.xhp\n"
+"par_id561548420579525\n"
+"help.text"
+msgid "print \"100: the number 120 occurs in the range: \" & retStr"
+msgstr ""
+
+#. x7KVc
+#: partition.xhp
+msgctxt ""
+"partition.xhp\n"
+"par_id921548420596118\n"
+"help.text"
+msgid "print \" : -1 the number -5 occurs in the range: \" & retStr"
+msgstr ""
+
+#. 8fEpA
+#: partition.xhp
+msgctxt ""
+"partition.xhp\n"
+"par_id861548420616153\n"
+"help.text"
+msgid "print \" 2: 3 the number 2 occurs in the range: \" & retStr"
+msgstr ""
+
+#. vye3g
+#: property.xhp
+msgctxt ""
+"property.xhp\n"
+"Property Statement\n"
+"help.text"
+msgid "Property Statement"
+msgstr ""
+
+#. ukCtn
+#: property.xhp
+msgctxt ""
+"property.xhp\n"
+"N0181\n"
+"help.text"
+msgid "<bookmark_value>Property statement</bookmark_value>"
+msgstr ""
+
+#. a5AX6
+#: property.xhp
+msgctxt ""
+"property.xhp\n"
+"N0182\n"
+"help.text"
+msgid "<variable id=\"Property_h1\"><link href=\"text/sbasic/shared/Property.xhp\" name=\"Property statement\">Property Statement</link></variable>"
+msgstr ""
+
+#. CxW74
+#: property.xhp
+msgctxt ""
+"property.xhp\n"
+"N0183\n"
+"help.text"
+msgid "A property, also called field or attribute, characterizes a given object or piece of information. Properties can be used to control access to data. It is common use to include instructions at setting or reading time of properties. Code can vary from simple assignment to complex context dependent routines. Using <emph>Get</emph>, <emph>Let</emph> or <emph>Set</emph> accessors enforces properties' consistency when necessary."
+msgstr ""
+
+#. hD9fA
+#: property.xhp
+msgctxt ""
+"property.xhp\n"
+"N0184\n"
+"help.text"
+msgid "This statement requires <link href=\"text/sbasic/shared/compatible.xhp\" name=\"Option Compatible\">Option Compatible</link> to be placed before the executable program code in a module."
+msgstr ""
+
+#. gSJbV
+#: property.xhp
+msgctxt ""
+"property.xhp\n"
+"par_id971587473488701\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sbasic/Property-Get_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Property Get Statement diagram</alt></image>"
+msgstr ""
+
+#. LNJAH
+#: property.xhp
+msgctxt ""
+"property.xhp\n"
+"par_id972787473488701\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sbasic/Property-Set_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Property Set Statement diagram</alt></image>"
+msgstr ""
+
+#. uowWh
+#: property.xhp
+msgctxt ""
+"property.xhp\n"
+"par_id941588582710020\n"
+"help.text"
+msgid "<emph>name: </emph>The property name."
+msgstr ""
+
+#. hiW2o
+#: property.xhp
+msgctxt ""
+"property.xhp\n"
+"par_id3147229\n"
+"help.text"
+msgid "<emph>argument:</emph> Value to be passed to the <literal>Property</literal> setter routine."
+msgstr ""
+
+#. duS8j
+#: property.xhp
+msgctxt ""
+"property.xhp\n"
+"par_id301588583826717\n"
+"help.text"
+msgid "<literal>Property</literal> setters often use a single argument. Multiple arguments are equally accepted."
+msgstr ""
+
+#. FG2Dc
+#: property.xhp
+msgctxt ""
+"property.xhp\n"
+"N0188\n"
+"help.text"
+msgid "Examples"
+msgstr ""
+
+#. 2n4nC
+#: property.xhp
+msgctxt ""
+"property.xhp\n"
+"N0192\n"
+"help.text"
+msgid "Print ProductName ' displays \"%PRODUCTNAME\""
+msgstr ""
+
+#. oUuG9
+#: property.xhp
+msgctxt ""
+"property.xhp\n"
+"N0202\n"
+"help.text"
+msgid "In the absence of Property <emph>Let</emph> or Property <emph>Set</emph>, Property <emph>Get</emph> helps define protected information, which can not be accidently altered by a foreign module:"
+msgstr ""
+
+#. PP63o
+#: property.xhp
+msgctxt ""
+"property.xhp\n"
+"N0204\n"
+"help.text"
+msgid "Public Property Get PathDelimiter As String ' Read-only variable"
+msgstr ""
+
+#. yNhRi
+#: property.xhp
+msgctxt ""
+"property.xhp\n"
+"N0208\n"
+"help.text"
+msgid "Case 4 : this = \":\" ' Linux or macOS"
+msgstr ""
+
+#. BievJ
+#: property.xhp
+msgctxt ""
+"property.xhp\n"
+"N0209\n"
+"help.text"
+msgid "Case Else : Error 423 ' Property or method not defined: PathDelimiter"
+msgstr ""
+
+#. wnG4s
+#: property.xhp
+msgctxt ""
+"property.xhp\n"
+"N0212\n"
+"help.text"
+msgid "End Property ' read-only PathDelimiter"
+msgstr ""
+
+#. ze9dZ
+#: property.xhp
+msgctxt ""
+"property.xhp\n"
+"N0215\n"
+"help.text"
+msgid "PathDelimiter = \"a sentence\" ' does nothing"
+msgstr ""
+
+#. xR9j7
+#: property.xhp
+msgctxt ""
+"property.xhp\n"
+"N0217\n"
+"help.text"
+msgid "Use <emph>Let</emph> or <emph>Set</emph> when handling UNO services or class objects:"
+msgstr ""
+
+#. mbhy9
+#: property.xhp
+msgctxt ""
+"property.xhp\n"
+"par_id181647247913872\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/01010210.xhp\" name=\"Subroutine basics\">Subroutines basics</link>"
+msgstr ""
+
+#. KbzAx
+#: property.xhp
+msgctxt ""
+"property.xhp\n"
+"N0237\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03090404.xhp\" name=\"End\">End</link>, <link href=\"text/sbasic/shared/03090412.xhp\" name=\"Exit\">Exit</link> statements"
+msgstr ""
+
+#. uM2zs
+#: replace.xhp
+msgctxt ""
+"replace.xhp\n"
+"tit\n"
+"help.text"
+msgid "Replace Function"
+msgstr ""
+
+#. G7eCF
+#: replace.xhp
+msgctxt ""
+"replace.xhp\n"
+"bm_id721552551162491\n"
+"help.text"
+msgid "<bookmark_value>Replace function</bookmark_value>"
+msgstr ""
+
+#. ChEvF
+#: replace.xhp
+msgctxt ""
+"replace.xhp\n"
+"hd_id781552551013521\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/replace.xhp\" name=\"Replace Function\">Replace Function</link>"
+msgstr ""
+
+#. 4xq3F
+#: replace.xhp
+msgctxt ""
+"replace.xhp\n"
+"par_id291552551013522\n"
+"help.text"
+msgid "Replaces some string by another."
+msgstr ""
+
+#. iMDGH
+#: replace.xhp
+msgctxt ""
+"replace.xhp\n"
+"par_id911552552252024\n"
+"help.text"
+msgid "String"
+msgstr ""
+
+#. wwnok
+#: replace.xhp
+msgctxt ""
+"replace.xhp\n"
+"par_id721552552263062\n"
+"help.text"
+msgid "<emph>Expression:</emph> Any string expression that you want to modify."
+msgstr ""
+
+#. DZNvL
+#: replace.xhp
+msgctxt ""
+"replace.xhp\n"
+"par_id901552552269836\n"
+"help.text"
+msgid "<emph>Find:</emph> Any string expression that shall be searched for."
+msgstr ""
+
+#. BRcsD
+#: replace.xhp
+msgctxt ""
+"replace.xhp\n"
+"par_id791552552275383\n"
+"help.text"
+msgid "<emph>Replace:</emph> Any string expression that shall replace the found search string."
+msgstr ""
+
+#. dXu9i
+#: replace.xhp
+msgctxt ""
+"replace.xhp\n"
+"par_id111552552283060\n"
+"help.text"
+msgid "<emph>Start:</emph> Optional numeric expression that indicates the character position where the search starts and also the start of the substring to be returned."
+msgstr ""
+
+#. jCuAB
+#: replace.xhp
+msgctxt ""
+"replace.xhp\n"
+"par_id921552552289833\n"
+"help.text"
+msgid "<emph>Count:</emph> Optional maximum number of times the replace shall be performed. When set to -1, all possible replacements are performed."
+msgstr ""
+
+#. 2VHcc
+#: replace.xhp
+msgctxt ""
+"replace.xhp\n"
+"par_id891552552302894\n"
+"help.text"
+msgid "<emph>Compare:</emph> Optional boolean expression that defines the type of comparison. The value of this parameter can be <literal>True</literal> or <literal>False</literal>. The default value of <literal>True</literal> specifies a text comparison that is not case-sensitive. The value of <literal>False</literal> specifies a binary comparison that is case-sensitive. You can as well use 0 instead of <literal>False</literal> or 1 instead of <literal>True</literal>."
+msgstr ""
+
+#. GoUoB
+#: replace.xhp
+msgctxt ""
+"replace.xhp\n"
+"par_id991552552420717\n"
+"help.text"
+msgid "MsgBox Replace (\"aBbcnnbnn\", \"b\", \"$\", 1, 1, False) 'returns \"aB$cnnbnn\""
+msgstr ""
+
+#. ZHjzn
+#: replace.xhp
+msgctxt ""
+"replace.xhp\n"
+"par_id321552552440672\n"
+"help.text"
+msgid "REM meaning: \"b\" should be replaced, but"
+msgstr ""
+
+#. EKAzY
+#: replace.xhp
+msgctxt ""
+"replace.xhp\n"
+"par_id571552552467647\n"
+"help.text"
+msgid "REM * only when lowercase (compare=False), hence second occurrence of \"b\""
+msgstr ""
+
+#. ACEgG
+#: replace.xhp
+msgctxt ""
+"replace.xhp\n"
+"par_id71552552474769\n"
+"help.text"
+msgid "REM * only first (respecting case) occurrence (count=1)"
+msgstr ""
+
+#. QEPtG
+#: replace.xhp
+msgctxt ""
+"replace.xhp\n"
+"par_id861587778446685\n"
+"help.text"
+msgid "REM returns D*FGHI because the search starts at position 4, which is also the start of the returned string."
+msgstr ""
+
+#. nDtDv
+#: replace.xhp
+msgctxt ""
+"replace.xhp\n"
+"bas_id491622734884707\n"
+"help.text"
+msgid "MsgBox Replace(\"aBbcnnbnn\", \"b\", \"$£\", compare:=False) 'returns \"aB$£cnn$£nn\""
+msgstr ""
+
+#. KMcAt
+#: replace.xhp
+msgctxt ""
+"replace.xhp\n"
+"bas_id341622734993202\n"
+"help.text"
+msgid "REM Replace all (count = -1) \"b\" with \"$£\" respecting casing (compare=False) starting from first letter (start=1)"
+msgstr ""
+
+#. Z9NfM
+#: special_vba_func.xhp
+msgctxt ""
+"special_vba_func.xhp\n"
+"tit\n"
+"help.text"
+msgid "Exclusive VBA functions"
+msgstr ""
+
+#. pXcmP
+#: special_vba_func.xhp
+msgctxt ""
+"special_vba_func.xhp\n"
+"bm_id051920170350145208\n"
+"help.text"
+msgid "<bookmark_value>VBA Functions;Introduction</bookmark_value>"
+msgstr ""
+
+#. Y45G8
+#: special_vba_func.xhp
+msgctxt ""
+"special_vba_func.xhp\n"
+"hd_id051820170313205718\n"
+"help.text"
+msgid "<variable id=\"exclusivevba\"><link href=\"text/sbasic/shared/special_vba_func.xhp\">Exclusive VBA Functions and Statements</link></variable>"
+msgstr ""
+
+#. 2kkjB
+#: special_vba_func.xhp
+msgctxt ""
+"special_vba_func.xhp\n"
+"par_id051820170314436068\n"
+"help.text"
+msgid "<ahelp hid=\".\">%PRODUCTNAME Basic adds this set of functions when VBA support is enabled.</ahelp>"
+msgstr ""
+
+#. hMUXb
+#: special_vba_func.xhp
+msgctxt ""
+"special_vba_func.xhp\n"
+"hd_id051820170407499827\n"
+"help.text"
+msgid "These exclusive VBA functions are enabled when the statement <item type=\"literal\">Option VBASupport 1</item> is placed before the first macro of a %PRODUCTNAME Basic module."
+msgstr ""
+
+#. hWvRQ
+#: special_vba_func.xhp
+msgctxt ""
+"special_vba_func.xhp\n"
+"bm_id71543455697570\n"
+"help.text"
+msgid "<bookmark_value>VBA Statements</bookmark_value>"
+msgstr ""
+
+#. BofRD
+#: special_vba_func.xhp
+msgctxt ""
+"special_vba_func.xhp\n"
+"hd_id31543446449360\n"
+"help.text"
+msgid "VBA Statements"
+msgstr ""
+
+#. ytqmv
+#: special_vba_func.xhp
+msgctxt ""
+"special_vba_func.xhp\n"
+"bm_id05192017035621676\n"
+"help.text"
+msgid "<bookmark_value>VBA Functions;Text Functions</bookmark_value>"
+msgstr ""
+
+#. Dy4pB
+#: special_vba_func.xhp
+msgctxt ""
+"special_vba_func.xhp\n"
+"par_id051820170355592834\n"
+"help.text"
+msgid "Text functions"
+msgstr ""
+
+#. wFBZb
+#: special_vba_func.xhp
+msgctxt ""
+"special_vba_func.xhp\n"
+"bm_id051920170357078705\n"
+"help.text"
+msgid "<bookmark_value>VBA Functions;Financial Functions</bookmark_value>"
+msgstr ""
+
+#. k8m4D
+#: special_vba_func.xhp
+msgctxt ""
+"special_vba_func.xhp\n"
+"par_id051820170355592581\n"
+"help.text"
+msgid "Financial functions"
+msgstr ""
+
+#. sEjTT
+#: special_vba_func.xhp
+msgctxt ""
+"special_vba_func.xhp\n"
+"bm_id051920170358102074\n"
+"help.text"
+msgid "<bookmark_value>VBA Functions;Date and Time Functions</bookmark_value>"
+msgstr ""
+
+#. bcMGY
+#: special_vba_func.xhp
+msgctxt ""
+"special_vba_func.xhp\n"
+"par_id051820170356005357\n"
+"help.text"
+msgid "Date and time functions"
+msgstr ""
+
+#. NEsXU
+#: special_vba_func.xhp
+msgctxt ""
+"special_vba_func.xhp\n"
+"bm_id051920170358002074\n"
+"help.text"
+msgid "<bookmark_value>VBA Functions;I/O Functions</bookmark_value>"
+msgstr ""
+
+#. HEWuk
+#: special_vba_func.xhp
+msgctxt ""
+"special_vba_func.xhp\n"
+"par_id051820170356006501\n"
+"help.text"
+msgid "I/O Functions"
+msgstr ""
+
+#. AsBGC
+#: special_vba_func.xhp
+msgctxt ""
+"special_vba_func.xhp\n"
+"bm_id051920170358346963\n"
+"help.text"
+msgid "<bookmark_value>VBA Functions;Mathematical Functions</bookmark_value><bookmark_value>VBA Functions;formatting numbers</bookmark_value><bookmark_value>VBA Functions;partitioning numbers</bookmark_value>"
+msgstr ""
+
+#. AXMSu
+#: special_vba_func.xhp
+msgctxt ""
+"special_vba_func.xhp\n"
+"par_id051820170356005221\n"
+"help.text"
+msgid "Mathematical Functions"
+msgstr ""
+
+#. G2UxD
+#: special_vba_func.xhp
+msgctxt ""
+"special_vba_func.xhp\n"
+"bm_id051920170359045662\n"
+"help.text"
+msgid "<bookmark_value>VBA Functions;Object Properties and Methods</bookmark_value>"
+msgstr ""
+
+#. puram
+#: special_vba_func.xhp
+msgctxt ""
+"special_vba_func.xhp\n"
+"hd_id051920170347039686\n"
+"help.text"
+msgid "Object Properties and Methods"
+msgstr ""
+
+#. ZEw4t
+#: stardesktop.xhp
+msgctxt ""
+"stardesktop.xhp\n"
+"tit\n"
+"help.text"
+msgid "StarDesktop object"
+msgstr ""
+
+#. S5TDy
+#: stardesktop.xhp
+msgctxt ""
+"stardesktop.xhp\n"
+"N0089\n"
+"help.text"
+msgid "<bookmark_value>StarDesktop</bookmark_value> <bookmark_value>API; Desktop</bookmark_value>"
+msgstr ""
+
+#. awFbD
+#: stardesktop.xhp
+msgctxt ""
+"stardesktop.xhp\n"
+"hd_id401544551916353\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/stardesktop.xhp\" name=\"StarDesktop\">StarDesktop object</link>"
+msgstr ""
+
+#. VZcw3
+#: stardesktop.xhp
+msgctxt ""
+"stardesktop.xhp\n"
+"N0091\n"
+"help.text"
+msgid "The <literal>StarDesktop</literal> object represents %PRODUCTNAME application. Some routines or user interface objects such as current window can be used via <literal>StarDesktop</literal>."
+msgstr ""
+
+#. iDmEB
+#: stardesktop.xhp
+msgctxt ""
+"stardesktop.xhp\n"
+"N0092\n"
+"help.text"
+msgid "Example:"
+msgstr ""
+
+#. Ecjyk
+#: strconv.xhp
+msgctxt ""
+"strconv.xhp\n"
+"tit\n"
+"help.text"
+msgid "StrConv Function [VBA]"
+msgstr ""
+
+#. Gq99z
+#: strconv.xhp
+msgctxt ""
+"strconv.xhp\n"
+"bm_id941622761814292\n"
+"help.text"
+msgid "<bookmark_value>StrConv function</bookmark_value>"
+msgstr ""
+
+#. jBFFC
+#: strconv.xhp
+msgctxt ""
+"strconv.xhp\n"
+"hd_id791622761498015\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/strconv.xhp\" name=\"StrConv Function\">StrConv Function</link>"
+msgstr ""
+
+#. V3uyt
+#: strconv.xhp
+msgctxt ""
+"strconv.xhp\n"
+"par_id621622761498018\n"
+"help.text"
+msgid "<variable id=\"variable name\">Convert a string as specified by a conversion type.</variable>"
+msgstr ""
+
+#. aVAee
+#: strconv.xhp
+msgctxt ""
+"strconv.xhp\n"
+"par_id771622762489917\n"
+"help.text"
+msgid "StrConv(Text, Conversion, [ LCID ])"
+msgstr ""
+
+#. Crvxp
+#: strconv.xhp
+msgctxt ""
+"strconv.xhp\n"
+"par_id421622762822934\n"
+"help.text"
+msgid "<emph>Text</emph>: Any valid string expression."
+msgstr ""
+
+#. 56k2A
+#: strconv.xhp
+msgctxt ""
+"strconv.xhp\n"
+"par_id671622762931475\n"
+"help.text"
+msgid "<emph>Conversion</emph>: The type of conversion to perform, as defined in the table below."
+msgstr ""
+
+#. Y7PoD
+#: strconv.xhp
+msgctxt ""
+"strconv.xhp\n"
+"par_id531622763145456\n"
+"help.text"
+msgid "Conversion"
+msgstr ""
+
+#. gzFBG
+#: strconv.xhp
+msgctxt ""
+"strconv.xhp\n"
+"par_id131622763145457\n"
+"help.text"
+msgid "Value"
+msgstr ""
+
+#. 6dDST
+#: strconv.xhp
+msgctxt ""
+"strconv.xhp\n"
+"par_id411622763145457\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. WmnMz
+#: strconv.xhp
+msgctxt ""
+"strconv.xhp\n"
+"par_id421622763145458\n"
+"help.text"
+msgid "Converts <emph>Text</emph> characters to uppercase."
+msgstr ""
+
+#. FMyrC
+#: strconv.xhp
+msgctxt ""
+"strconv.xhp\n"
+"par_id251622763427976\n"
+"help.text"
+msgid "Converts <emph>Text</emph> characters lowercase."
+msgstr ""
+
+#. 8HoXG
+#: strconv.xhp
+msgctxt ""
+"strconv.xhp\n"
+"par_id531622764070154\n"
+"help.text"
+msgid "Converts the first letter of every word in <emph>Text</emph> to uppercase."
+msgstr ""
+
+#. AF58D
+#: strconv.xhp
+msgctxt ""
+"strconv.xhp\n"
+"par_id881622764192628\n"
+"help.text"
+msgid "Converts narrow (<link href=\"text/shared/00/00000005.xhp#halfwidth\" name=\"halfwidth\">half-width</link>) characters in <emph>Text</emph> to wide (<link href=\"text/shared/00/00000005.xhp#halfwidth\" name=\"halfwidth\">full-width</link>) characters."
+msgstr ""
+
+#. RAUq6
+#: strconv.xhp
+msgctxt ""
+"strconv.xhp\n"
+"par_id71622764459352\n"
+"help.text"
+msgid "Converts wide (<link href=\"text/shared/00/00000005.xhp#halfwidth\" name=\"halfwidth\">full-width</link>) characters in <emph>Text</emph> to narrow (<link href=\"text/shared/00/00000005.xhp#halfwidth\" name=\"halfwidth\">half-width</link>) characters."
+msgstr ""
+
+#. fAVnd
+#: strconv.xhp
+msgctxt ""
+"strconv.xhp\n"
+"par_id371622764565366\n"
+"help.text"
+msgid "Converts Hiragana characters in <emph>Text</emph> to Katakana characters."
+msgstr ""
+
+#. BmF5K
+#: strconv.xhp
+msgctxt ""
+"strconv.xhp\n"
+"par_id911622764728794\n"
+"help.text"
+msgid "Converts Katakana characters in <emph>Text</emph> to Hiragana characters."
+msgstr ""
+
+#. 2tpZF
+#: strconv.xhp
+msgctxt ""
+"strconv.xhp\n"
+"par_id21622764841321\n"
+"help.text"
+msgid "Converts <emph>Text</emph> characters to Unicode characters using the default code page of the system."
+msgstr ""
+
+#. 4VdbE
+#: strconv.xhp
+msgctxt ""
+"strconv.xhp\n"
+"par_id221622764991492\n"
+"help.text"
+msgid "Converts <emph>Text</emph> characters from Unicode to the default code page of the system."
+msgstr ""
+
+#. B2oeo
+#: strconv.xhp
+msgctxt ""
+"strconv.xhp\n"
+"par_id761622765118156\n"
+"help.text"
+msgid "<emph>LCID</emph> Optional. The Locale ID in decimal number. If this parameter is omitted, it assumes the system Locale ID. Refer to the file <link href=\"https://opengrok.libreoffice.org/xref/core/l10ntools/source/ulfconv/msi-encodinglist.txt\" name=\"LCID\">msi-encodinglist.txt</link> for the available LCID values."
+msgstr ""
+
+#. CdCwD
+#: strconv.xhp
+msgctxt ""
+"strconv.xhp\n"
+"par_id311622770486052\n"
+"help.text"
+msgid "REM Converts narrow (single-byte) characters in string to wide"
+msgstr ""
+
+#. ysFBA
+#: strconv.xhp
+msgctxt ""
+"strconv.xhp\n"
+"par_id231622770493491\n"
+"help.text"
+msgid "REM Converts wide (double-byte) characters in string to narrow (single-byte) characters"
+msgstr ""
+
+#. EitmH
+#: strconv.xhp
+msgctxt ""
+"strconv.xhp\n"
+"par_id871622770498992\n"
+"help.text"
+msgid "REM Converts Hiragana characters in string to Katakana characters"
+msgstr ""
+
+#. WxMQr
+#: strconv.xhp
+msgctxt ""
+"strconv.xhp\n"
+"par_id351622770504087\n"
+"help.text"
+msgid "REM Converts Katakana characters in string to Hiragana characters"
+msgstr ""
+
+#. 9sG37
+#: strconv.xhp
+msgctxt ""
+"strconv.xhp\n"
+"par_id861622770508875\n"
+"help.text"
+msgid "REM Assumes CP-1252 encoding associated with en-US locale used in unit tests."
+msgstr ""
+
+#. gcaG4
+#: strconv.xhp
+msgctxt ""
+"strconv.xhp\n"
+"par_id841622770962002\n"
+"help.text"
+msgid "Print UBound(x) ' 8 characters"
+msgstr ""
+
+#. 4wc9E
+#: thisdbdoc.xhp
+msgctxt ""
+"thisdbdoc.xhp\n"
+"tit\n"
+"help.text"
+msgid "ThisDatabaseDocument object"
+msgstr ""
+
+#. rDs9b
+#: thisdbdoc.xhp
+msgctxt ""
+"thisdbdoc.xhp\n"
+"N0089\n"
+"help.text"
+msgid "<bookmark_value>ThisDatabaseDocument</bookmark_value> <bookmark_value>API; Database document</bookmark_value>"
+msgstr ""
+
+#. v4XLY
+#: thisdbdoc.xhp
+msgctxt ""
+"thisdbdoc.xhp\n"
+"hd_id401544551916353\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/thisdbdoc.xhp\" name=\"ThisDatabaseDocument\">ThisDatabaseDocument object</link>"
+msgstr ""
+
+#. CT58E
+#: thisdbdoc.xhp
+msgctxt ""
+"thisdbdoc.xhp\n"
+"N0091\n"
+"help.text"
+msgid "<literal>ThisDatabaseDocument</literal> addresses the active <literal>Base</literal> document whose properties can be read and set, and whose methods can be called."
+msgstr ""
+
+#. umGF9
+#: thisdbdoc.xhp
+msgctxt ""
+"thisdbdoc.xhp\n"
+"par_id241622646033201\n"
+"help.text"
+msgid "<literal>ThisDatabaseDocument</literal> returns an object of type <link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1sdb_1_1OfficeDatabaseDocument.html\" name=\"XOfficeDatabaseDocument interface\">com.sun.star.sdb.XOfficeDatabaseDocument</link>."
+msgstr ""
+
+#. EFj3T
+#: thisdbdoc.xhp
+msgctxt ""
+"thisdbdoc.xhp\n"
+"par_id241622797081182\n"
+"help.text"
+msgid "When the active window does not relate to a Base document, <literal>ThisDatabaseDocument</literal> returns <literal>Nothing</literal>."
+msgstr ""
+
+#. WvPJY
+#: thisdbdoc.xhp
+msgctxt ""
+"thisdbdoc.xhp\n"
+"par_id871622796485123\n"
+"help.text"
+msgid "When the active window is the Basic IDE, <literal>ThisDatabaseDocument</literal> object returns the database owning the current script."
+msgstr ""
+
+#. DrF8G
+#: thisdbdoc.xhp
+msgctxt ""
+"thisdbdoc.xhp\n"
+"par_id631622806529469\n"
+"help.text"
+msgid "Opening current database \"formName\" and maximizing it can be achieved as shown:"
+msgstr ""
+
+#. wxbXC
+#: thisdbdoc.xhp
+msgctxt ""
+"thisdbdoc.xhp\n"
+"par_id251622800540402\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03132200.xhp\" name=\"ThisComponent object\">ThisComponent</link> object"
+msgstr ""
+
+#. 7k6AR
+#: thisdbdoc.xhp
+msgctxt ""
+"thisdbdoc.xhp\n"
+"par_id101622646874083\n"
+"help.text"
+msgid "<link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1sdb_1_1OfficeDatabaseDocument.html\" name=\"OfficeDatabaseDocument API service\">com.sun.star.sdb.OfficeDatabaseDocument</link> API service"
+msgstr ""
+
+#. 7Znag
+#: thisdbdoc.xhp
+msgctxt ""
+"thisdbdoc.xhp\n"
+"par_id581622646875379\n"
+"help.text"
+msgid "<link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1document_1_1OfficeDocument.html\" name=\"OfficeDocument API service\">com.sun.star.document.OfficeDocument</link> API service"
+msgstr ""
+
+#. WMVc9
+#: uno_objects.xhp
+msgctxt ""
+"uno_objects.xhp\n"
+"tit\n"
+"help.text"
+msgid "UNO Objects"
+msgstr ""
+
+#. qDEE8
+#: uno_objects.xhp
+msgctxt ""
+"uno_objects.xhp\n"
+"bm_id171544787218331\n"
+"help.text"
+msgid "<bookmark_value>programming;UNO objects</bookmark_value> <bookmark_value>UNO objects</bookmark_value> <bookmark_value>UNO functions</bookmark_value>"
+msgstr ""
+
+#. DhRpt
+#: uno_objects.xhp
+msgctxt ""
+"uno_objects.xhp\n"
+"hd_id3156027\n"
+"help.text"
+msgid "<variable id=\"UnoObjects_h1\"><link href=\"text/sbasic/shared/uno_objects.xhp\" name=\"UnoObjects_help\">UNO Objects, Functions and Services</link></variable>"
+msgstr ""
+
+#. 9xsDp
+#: uno_objects.xhp
+msgctxt ""
+"uno_objects.xhp\n"
+"par_id3153312\n"
+"help.text"
+msgid "Functions, objects and services of Unified Network Objects (UNO)."
+msgstr ""
+
+#. fiJk2
+#: uno_objects.xhp
+msgctxt ""
+"uno_objects.xhp\n"
+"hd_id121622648046670\n"
+"help.text"
+msgid "%PRODUCTNAME Global Objects"
+msgstr ""
+
+#. xd3nC
+#: uno_objects.xhp
+msgctxt ""
+"uno_objects.xhp\n"
+"hd_id121622648046680\n"
+"help.text"
+msgid "Active document Objects"
+msgstr ""
+
+#. NxFfo
+#: uno_objects.xhp
+msgctxt ""
+"uno_objects.xhp\n"
+"par_id481622648684689\n"
+"help.text"
+msgid "The following objects can be used from the active document."
+msgstr ""
+
+#. yFvUL
+#: uno_objects.xhp
+msgctxt ""
+"uno_objects.xhp\n"
+"hd_id91572461246639\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03131900.xhp#basicdialogs\" name=\"basicanddialog\">BasicLibraries Object</link>"
+msgstr ""
+
+#. PDDjd
+#: uno_objects.xhp
+msgctxt ""
+"uno_objects.xhp\n"
+"hd_id91572461246640\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03131900.xhp#basicdialogs\" name=\"basicanddialog\">DialogLibraries Object</link>"
+msgstr ""
+
+#. G58ts
+#: uno_objects.xhp
+msgctxt ""
+"uno_objects.xhp\n"
+"hd_id151622648087678\n"
+"help.text"
+msgid "UNO Methods"
+msgstr ""
+
+#. WVSFD
+#: uno_objects.xhp
+msgctxt ""
+"uno_objects.xhp\n"
+"par_id481622648684690\n"
+"help.text"
+msgid "Use the following methods to manage or query Unified Network Objects (UNO)."
+msgstr ""
+
+#. 8GF88
+#: uno_objects.xhp
+msgctxt ""
+"uno_objects.xhp\n"
+"par_id81572615048011\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=\"https://api.libreoffice.org/\" name=\"api.libreoffice.org\">https://api.libreoffice.org</link>"
+msgstr ""
+
+#. V3Wow
+#: vbasupport.xhp
+msgctxt ""
+"vbasupport.xhp\n"
+"tit\n"
+"help.text"
+msgid "Support for VBA Macros"
+msgstr ""
+
+#. wbFaL
+#: vbasupport.xhp
+msgctxt ""
+"vbasupport.xhp\n"
+"hd_id051720170332046289\n"
+"help.text"
+msgid "<variable id=\"vbamacros\"><link href=\"text/sbasic/shared/vbasupport.xhp\">Working with VBA Macros</link></variable>"
+msgstr ""
+
+#. dSBGk
+#: vbasupport.xhp
+msgctxt ""
+"vbasupport.xhp\n"
+"par_id05172017033242490\n"
+"help.text"
+msgid "<ahelp hid=\".\">Visual Basic for Applications (VBA) is an implementation of Microsoft's Visual Basic which is built into all Microsoft Office applications. </ahelp>"
+msgstr ""
+
+#. aeKys
+#: vbasupport.xhp
+msgctxt ""
+"vbasupport.xhp\n"
+"par_id051720170332428854\n"
+"help.text"
+msgid "Support for VBA is not complete, but it covers a large portion of the common usage patterns. Most macros use a manageable subset of objects in the Excel API (such as the Range, Worksheet, Workbook, etc.) and the support include those objects, and the most commonly used method/properties of those objects."
+msgstr ""
+
+#. EricB
+#: vbasupport.xhp
+msgctxt ""
+"vbasupport.xhp\n"
+"hd_id051720170350145604\n"
+"help.text"
+msgid "Loading Microsoft Office documents with executable VBA macros"
+msgstr ""
+
+#. CFxLB
+#: vbasupport.xhp
+msgctxt ""
+"vbasupport.xhp\n"
+"par_id051720170350147298\n"
+"help.text"
+msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Load/Save - VBA Properties</emph> and mark the <emph>Executable code</emph> checkbox. Then load or open your document."
+msgstr ""
+
+#. 8YBDK
+#: vbasupport.xhp
+msgctxt ""
+"vbasupport.xhp\n"
+"hd_id051720170400536628\n"
+"help.text"
+msgid "Running VBA Macros"
+msgstr ""
+
+#. PsyXh
+#: vbasupport.xhp
+msgctxt ""
+"vbasupport.xhp\n"
+"par_id051720170400539565\n"
+"help.text"
+msgid "Run VBA macros in the same way as %PRODUCTNAME Basic macros."
+msgstr ""
+
+#. UFECg
+#: vbasupport.xhp
+msgctxt ""
+"vbasupport.xhp\n"
+"par_id051720170407404013\n"
+"help.text"
+msgid "Since support for VBA is not complete, you may have to edit the VBA code and complete the missing support with %PRODUCTNAME Basic objects, statements and functions."
+msgstr ""
+
+#. Z5tKY
+#: vbasupport.xhp
+msgctxt ""
+"vbasupport.xhp\n"
+"hd_id051720170400533411\n"
+"help.text"
+msgid "Editing VBA Macros"
+msgstr ""
+
+#. DLrJq
+#: vbasupport.xhp
+msgctxt ""
+"vbasupport.xhp\n"
+"par_id051720170400532486\n"
+"help.text"
+msgid "VBA macros can be edited in the %PRODUCTNAME Basic IDE."
+msgstr ""
+
+#. ciETb
+#: vbasupport.xhp
+msgctxt ""
+"vbasupport.xhp\n"
+"par_id051720171119254111\n"
+"help.text"
+msgid "<link href=\"text/shared/optionen/01130100.xhp\">VBA Properties</link>"
+msgstr ""
+
+#. LTFGX
+#: vbasupport.xhp
+msgctxt ""
+"vbasupport.xhp\n"
+"par_id051720170407401872\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/01030000.xhp\">%PRODUCTNAME Basic IDE</link>"
+msgstr ""
diff --git a/source/hsb/helpcontent2/source/text/sbasic/shared/01.po b/source/hsb/helpcontent2/source/text/sbasic/shared/01.po
new file mode 100644
index 00000000000..79ff975b2a2
--- /dev/null
+++ b/source/hsb/helpcontent2/source/text/sbasic/shared/01.po
@@ -0,0 +1,619 @@
+#. extracted from helpcontent2/source/text/sbasic/shared/01
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-07-11 18:38+0200\n"
+"PO-Revision-Date: 2022-08-22 14:05+0000\n"
+"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
+"Language-Team: Upper Sorbian <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicshared01/hsb/>\n"
+"Language: hsb\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: Weblate 4.12.2\n"
+
+#. arCRB
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Macro"
+msgstr "Makro"
+
+#. yo43H
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"bm_id3145786\n"
+"help.text"
+msgid "<bookmark_value>macros; Basic IDE</bookmark_value><bookmark_value>Basic IDE; macros</bookmark_value>"
+msgstr "<bookmark_value>Makra; Basic IDE</bookmark_value><bookmark_value>Basic IDE; makra</bookmark_value>"
+
+#. YAAFo
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"hd_id3145786\n"
+"help.text"
+msgid "Macro"
+msgstr "Makro"
+
+#. Knnfd
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"par_id3152886\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 "<variable id=\"makro\"><ahelp hid=\".uno:ChooseMacro\">Wočinja dialog <emph>Makro</emph>, hdźež móžeće makra $[officename] Basic wutworić, wobdźěłać, rjadować a wuwjesć.</ahelp></variable>"
+
+#. YFNsk
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"hd_id3154145\n"
+"help.text"
+msgid "Macro name"
+msgstr "Mjeno makra"
+
+#. oAFgs
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"par_id3151116\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 "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/macronameedit\">Pokazuje mjeno wubraneho makra. Zo byšće mjeno makra wutworił abo změnił, zapodajće tu mjeno.</ahelp>"
+
+#. bAnLi
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"hd_id3153729\n"
+"help.text"
+msgid "Macro from / Save macro in"
+msgstr "Makro z / Makro składować w"
+
+#. VGm8h
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"par_id3153190\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=\"modules/BasicIDE/ui/basicmacrodialog/libraries\">Nalistuje biblioteki a module, hdźež móžeće swoje makra wočinić abo składować. Zo byšće makro z wěstym dokumentom składował, wočińće dokument a potom tutón dialog.</ahelp>"
+
+#. DS2rV
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"hd_id3146975\n"
+"help.text"
+msgid "Run / Save"
+msgstr "Wuwjesć / Składować"
+
+#. FNpEE
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"par_id3154791\n"
+"help.text"
+msgid "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/ok\">Runs or saves the current macro.</ahelp>"
+msgstr "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/ok\">Wuwjedźe aktualne makro abo składuje jo.</ahelp>"
+
+#. q8TCE
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"hd_id3153158\n"
+"help.text"
+msgid "Assign"
+msgstr "Připokazać"
+
+#. oo9tG
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"par_id3149961\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 "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/assign\">Wočinja dialog Přiměrić, hdźež móžeće menijowemu přikazej, symbolowej lajsće abo podawkej wubrane makro připokazać.</ahelp>"
+
+#. FPBtn
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"hd_id3145799\n"
+"help.text"
+msgid "Edit"
+msgstr "Wobdźěłać"
+
+#. FRwKP
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"par_id3147127\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 "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/edit\">Startuje editor $[officename] Basic a wočinja wubrane makro za wobdźěłowanje.</ahelp>"
+
+#. RbUsU
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"hd_id3149400\n"
+"help.text"
+msgid "New/Delete"
+msgstr "Nowy/Zhašeć"
+
+#. 3eRrt
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"par_id3155602\n"
+"help.text"
+msgid "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/delete\">Creates a new macro, or deletes the selected macro.</ahelp>"
+msgstr "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/delete\">Wutwori nowe makro abo zhaša wubrane makro.</ahelp>"
+
+#. XzjjH
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"par_id3149124\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 "Zo byšće nowe makro wutworił, wubjerće modul „Standard“ w lisćinje <emph>Makro z</emph> a klikńće potom na <emph>Nowy</emph>."
+
+#. Bpdkd
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"par_id3150749\n"
+"help.text"
+msgid "To delete a macro, select it, and then click <emph>Delete</emph>."
+msgstr "Zo byšće makro zhašał, wubjerće jo a klikńće potom na <emph>Zhašeć</emph>."
+
+#. caLtQ
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"hd_id3153764\n"
+"help.text"
+msgid "Organizer"
+msgstr "Rjadować"
+
+#. upvjA
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"par_id3148405\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=\"modules/BasicIDE/ui/basicmacrodialog/organize\">Wočinja dialog<emph>Makro rjadować</emph>, hdźež móžeće nowe makrowe module, dialogi a biblioteki přidać abo eksistowace wobdźěłać abo zhašeć.</ahelp>"
+
+#. Ps6dk
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"hd_id3166447\n"
+"help.text"
+msgid "Module/Dialog"
+msgstr "Modul/Dialog"
+
+#. 98PeZ
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"par_id3155959\n"
+"help.text"
+msgid "<ahelp hid=\"modules/BasicIDE/ui/modulepage/library\">Lists the existing macros and dialogs.</ahelp>"
+msgstr "<ahelp hid=\"modules/BasicIDE/ui/modulepage/library\">Nalistuje eksistowace makra a dialogi.</ahelp>"
+
+#. F4DZ9
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"par_id3149922\n"
+"help.text"
+msgid "You can drag-and-drop a module or a dialog between libraries."
+msgstr "Móžeće modul abo dialog mjez bibliotekami ćahnyć a pušćić."
+
+#. nrET3
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"par_id3159333\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 "Zo byšće dialog abo modul kopěrował, dźeržće tastu <switchinline select=\"sys\"><caseinline select=\"MAC\">Cmd</caseinline><defaultinline>Strg</defaultinline></switchinline> stłóčenu, mjeztym zo ćehnjeće a pušćeće."
+
+#. JXD8N
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"hd_id3147131\n"
+"help.text"
+msgid "Edit"
+msgstr "Wobdźěłać"
+
+#. 2fib2
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"par_id3149816\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\">Wočinja wubrane makro abo wubrany dialog za wobdźěłowanje.</ahelp>"
+
+#. ZkR28
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"hd_id3151214\n"
+"help.text"
+msgid "New"
+msgstr "Nowy"
+
+#. vhX73
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"par_id3154202\n"
+"help.text"
+msgid "<ahelp hid=\"modules/BasicIDE/ui/modulepage/newmodule\">Creates a new module.</ahelp>"
+msgstr "<ahelp hid=\"modules/BasicIDE/ui/modulepage/newmodule\">Wutwori nowy modul.</ahelp>"
+
+#. ztEAp
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"par_id3153269\n"
+"help.text"
+msgid "<ahelp hid=\"modules/BasicIDE/ui/modulepage/newdialog\">Creates a new dialog.</ahelp>"
+msgstr "<ahelp hid=\"modules/BasicIDE/ui/modulepage/newdialog\">Wutwori nowy dialog.</ahelp>"
+
+#. 3hGbj
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"hd_id3154587\n"
+"help.text"
+msgid "Libraries tab page"
+msgstr "Rajtark Biblioteki"
+
+#. moZ4B
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"par_id3153705\n"
+"help.text"
+msgid "<ahelp hid=\"modules/BasicIDE/ui/modulepage/newdialog\">Lets you manage the macro libraries.</ahelp>"
+msgstr "<ahelp hid=\"modules/BasicIDE/ui/modulepage/newdialog\">Zmóžnja wam makrowe biblioteki rjadować.</ahelp>"
+
+#. KFVdv
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"hd_id3145259\n"
+"help.text"
+msgid "Location"
+msgstr "Městno"
+
+#. 7LWSS
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"par_id3153234\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\">Wubjerće městno, kotrež makrowe biblioteki wobsahuje, kotrež chceće rjadować.</ahelp>"
+
+#. hCRD2
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"hd_id3148460\n"
+"help.text"
+msgid "Library"
+msgstr "Biblioteka"
+
+#. rFEdG
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"par_id3150828\n"
+"help.text"
+msgid "<ahelp hid=\"modules/BasicIDE/ui/libpage/library\">Lists the macro libraries in the chosen location.</ahelp>"
+msgstr "<ahelp hid=\"modules/BasicIDE/ui/libpage/library\">Nalistuje makrowe biblioteki na wubranym městnje.</ahelp>"
+
+#. aB2et
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"hd_id3145134\n"
+"help.text"
+msgid "Edit"
+msgstr "Wobdźěłać"
+
+#. 9AugT
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"par_id3150518\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\">Wočinja editor $[officename] Basic, zo byšće móhł wubranu biblioteku změnić.</ahelp>"
+
+#. tSCY9
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"hd_id3150371\n"
+"help.text"
+msgid "Password"
+msgstr "Hesło"
+
+#. FBAaE
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"par_id3166430\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\">Připokazuje abo wobdźěłuje <link href=\"text/sbasic/shared/01/06130100.xhp\" name=\"password\">hesło</link> za wubranu biblioteku. Biblioteki „Standard“ njemóža hesło měć.</ahelp>"
+
+#. pGEKe
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"hd_id3154372\n"
+"help.text"
+msgid "New"
+msgstr "Nowy"
+
+#. dwNDg
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"par_id3145387\n"
+"help.text"
+msgid "<ahelp hid=\"modules/BasicIDE/ui/libpage/new\">Creates a new library.</ahelp>"
+msgstr "<ahelp hid=\"modules/BasicIDE/ui/libpage/new\">Wutwori nowu biblioteku.</ahelp>"
+
+#. GsfAY
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"hd_id3154259\n"
+"help.text"
+msgid "Name"
+msgstr "Mjeno"
+
+#. bfokw
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"par_id3156169\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\">Zapodajće mjeno za nowy modul, dialog abo nowu biblioteku.</ahelp>"
+
+#. wHUF6
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"hd_id3151183\n"
+"help.text"
+msgid "Append"
+msgstr "Připowěsnyć"
+
+#. fE5qD
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"par_id3155126\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 <emph>Open</emph>.</ahelp>"
+msgstr "<ahelp hid=\"modules/BasicIDE/ui/libpage/import\">Pytajće biblioteku $[officename] Basic, kotruž chceće aktualnej lisćinje přidać a klikńće potom na <emph>Wočinić</emph>.</ahelp>"
+
+#. tBtMd
+#: 06130100.xhp
+msgctxt ""
+"06130100.xhp\n"
+"tit\n"
+"help.text"
+msgid "Change Password"
+msgstr "Hesło změnić"
+
+#. PESmH
+#: 06130100.xhp
+msgctxt ""
+"06130100.xhp\n"
+"hd_id3159399\n"
+"help.text"
+msgid "Change Password"
+msgstr "Hesło změnić"
+
+#. 3tBDD
+#: 06130100.xhp
+msgctxt ""
+"06130100.xhp\n"
+"par_id3150276\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\">Škita wubranu biblioteku z hesłom.</ahelp> Móžeće nowe hesło zapodać abo aktualne hesło změnić."
+
+#. iWG6y
+#: 06130100.xhp
+msgctxt ""
+"06130100.xhp\n"
+"hd_id3154285\n"
+"help.text"
+msgid "Old password"
+msgstr "Stare hesło"
+
+#. k6nT2
+#: 06130100.xhp
+msgctxt ""
+"06130100.xhp\n"
+"hd_id3153665\n"
+"help.text"
+msgid "Password"
+msgstr "Hesło"
+
+#. dfHfJ
+#: 06130100.xhp
+msgctxt ""
+"06130100.xhp\n"
+"par_id3155628\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\">Zapodajće aktualne hesło za wubranu biblioteku.</ahelp>"
+
+#. SNztA
+#: 06130100.xhp
+msgctxt ""
+"06130100.xhp\n"
+"hd_id3153126\n"
+"help.text"
+msgid "New password"
+msgstr "Nowe hesło"
+
+#. HJt2y
+#: 06130100.xhp
+msgctxt ""
+"06130100.xhp\n"
+"hd_id3153628\n"
+"help.text"
+msgid "Password"
+msgstr "Hesło"
+
+#. ArwCv
+#: 06130100.xhp
+msgctxt ""
+"06130100.xhp\n"
+"par_id3159413\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\">Zapodajće nowe hesło za wubranu biblioteku.</ahelp>"
+
+#. zVSGA
+#: 06130100.xhp
+msgctxt ""
+"06130100.xhp\n"
+"hd_id3148947\n"
+"help.text"
+msgid "Confirm"
+msgstr "Wobkrućić"
+
+#. bhiTx
+#: 06130100.xhp
+msgctxt ""
+"06130100.xhp\n"
+"par_id3149457\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\">Wospjetujće nowe hesło za wubranu biblioteku.</ahelp>"
+
+#. UkFBg
+#: 06130500.xhp
+msgctxt ""
+"06130500.xhp\n"
+"tit\n"
+"help.text"
+msgid "Append libraries"
+msgstr "Biblioteki připowěsnyć"
+
+#. Su8Ye
+#: 06130500.xhp
+msgctxt ""
+"06130500.xhp\n"
+"bm_id3150502\n"
+"help.text"
+msgid "<bookmark_value>libraries; adding</bookmark_value><bookmark_value>inserting;Basic libraries</bookmark_value>"
+msgstr "<bookmark_value>biblioteki; přidać</bookmark_value><bookmark_value>zasadźić;biblioteki Basic</bookmark_value>"
+
+#. oiuro
+#: 06130500.xhp
+msgctxt ""
+"06130500.xhp\n"
+"hd_id3150502\n"
+"help.text"
+msgid "Append libraries"
+msgstr "Biblioteki připowěsnyć"
+
+#. NxEyN
+#: 06130500.xhp
+msgctxt ""
+"06130500.xhp\n"
+"par_id3154840\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 <emph>Open</emph>."
+msgstr "Pytajće biblioteku <item type=\"productname\">%PRODUCTNAME</item> Basic, kotruž chceće aktualnej lisćinje přidać a klikńće potom na <emph>Wočinić</emph>."
+
+#. oHdrZ
+#: 06130500.xhp
+msgctxt ""
+"06130500.xhp\n"
+"hd_id3149119\n"
+"help.text"
+msgid "File name:"
+msgstr "Datajowe mjeno:"
+
+#. F59VP
+#: 06130500.xhp
+msgctxt ""
+"06130500.xhp\n"
+"par_id3147102\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\">Zapodajće mjeno abo šćežku do biblioteki, kotruž chceće připowěsnyć.</ahelp> Móžeće tež biblioteku z lisćiny wubrać."
+
+#. E4gQf
+#: 06130500.xhp
+msgctxt ""
+"06130500.xhp\n"
+"hd_id3147291\n"
+"help.text"
+msgid "Options"
+msgstr "Nastajenja"
+
+#. m2569
+#: 06130500.xhp
+msgctxt ""
+"06130500.xhp\n"
+"hd_id3147226\n"
+"help.text"
+msgid "Insert as reference (read-only)"
+msgstr "Jako referencu zasadźić (jenož za čitanje)"
+
+#. q3kaa
+#: 06130500.xhp
+msgctxt ""
+"06130500.xhp\n"
+"par_id3155892\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\">Přidawa wubranu biblioteku jako přećiwo pisanju škitanu dataju. Biblioteka so kóždy raz znowa začita, hdyž <item type=\"productname\">%PRODUCTNAME</item> startujeće.</ahelp>"
+
+#. kuDaX
+#: 06130500.xhp
+msgctxt ""
+"06130500.xhp\n"
+"hd_id3145071\n"
+"help.text"
+msgid "Replace existing libraries"
+msgstr "Eksistowace biblioteki wuměnić"
+
+#. iBdnG
+#: 06130500.xhp
+msgctxt ""
+"06130500.xhp\n"
+"par_id3149812\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\">Wuměni biblioteku, kotraž ma samsne mjeno kaž aktualna biblioteka.</ahelp>"
diff --git a/source/hsb/helpcontent2/source/text/sbasic/shared/02.po b/source/hsb/helpcontent2/source/text/sbasic/shared/02.po
new file mode 100644
index 00000000000..c78ac71cb3e
--- /dev/null
+++ b/source/hsb/helpcontent2/source/text/sbasic/shared/02.po
@@ -0,0 +1,1852 @@
+#. extracted from helpcontent2/source/text/sbasic/shared/02
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2021-10-04 19:51+0200\n"
+"PO-Revision-Date: 2022-09-09 14:36+0000\n"
+"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
+"Language-Team: Upper Sorbian <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicshared02/hsb/>\n"
+"Language: hsb\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: Weblate 4.12.2\n"
+
+#. 6Kkin
+#: 11010000.xhp
+msgctxt ""
+"11010000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Library"
+msgstr "Biblioteka"
+
+#. uR2gG
+#: 11010000.xhp
+msgctxt ""
+"11010000.xhp\n"
+"hd_id3151100\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=\"Biblioteka\">Biblioteka</link>"
+
+#. MCJF5
+#: 11010000.xhp
+msgctxt ""
+"11010000.xhp\n"
+"par_id3154136\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\">Wubjerće biblioteku, kotruž chceće wobdźěłać.</ahelp> Prěni modul biblioteki, kotryž wuběraće, so w Basic IDE pokazuje."
+
+#. hYM32
+#: 11010000.xhp
+msgctxt ""
+"11010000.xhp\n"
+"par_id3149095\n"
+"help.text"
+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\">Biblioteka lisćinowych polow</alt></image>"
+
+#. 2WAR4
+#: 11010000.xhp
+msgctxt ""
+"11010000.xhp\n"
+"par_id3147654\n"
+"help.text"
+msgid "Library List Box"
+msgstr "Biblioteka lisćinowych polow"
+
+#. QZQhW
+#: 11020000.xhp
+msgctxt ""
+"11020000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Compile"
+msgstr "Kompilować"
+
+#. sG7ET
+#: 11020000.xhp
+msgctxt ""
+"11020000.xhp\n"
+"hd_id3148983\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=\"Kompilować\">Kompilować</link>"
+
+#. FkJqv
+#: 11020000.xhp
+msgctxt ""
+"11020000.xhp\n"
+"par_id3159201\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\">Kompiluje makro Basic.</ahelp> Dyrbiće makro kompilować, po tym zo sće jo změnił, abo jeli makro jednotliwe abo procedurowe kroki wužiwa."
+
+#. LLoQJ
+#: 11020000.xhp
+msgctxt ""
+"11020000.xhp\n"
+"par_id3156426\n"
+"help.text"
+msgid "<image src=\"cmd/sc_compilebasic.png\" id=\"img_id3147576\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3147576\">Icon Compile</alt></image>"
+msgstr "<image src=\"cmd/sc_compilebasic.png\" id=\"img_id3147576\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3147576\">Symbol za Kompilować</alt></image>"
+
+#. 3Z8WW
+#: 11020000.xhp
+msgctxt ""
+"11020000.xhp\n"
+"par_id3149399\n"
+"help.text"
+msgid "Compile"
+msgstr "Kompilować"
+
+#. GjyfZ
+#: 11030000.xhp
+msgctxt ""
+"11030000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Run"
+msgstr "Wuwjesć"
+
+#. n3bkD
+#: 11030000.xhp
+msgctxt ""
+"11030000.xhp\n"
+"hd_id3153255\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=\"Wuwjesć\">Wuwjesć</link>"
+
+#. Vi9DY
+#: 11030000.xhp
+msgctxt ""
+"11030000.xhp\n"
+"par_id3159201\n"
+"help.text"
+msgid "<ahelp hid=\".uno:RunBasic\">Runs the first macro of the current module.</ahelp>"
+msgstr "<ahelp hid=\".uno:RunBasic\">Wuwjedźe prěnje makro aktualneho modula.</ahelp>"
+
+#. s2xuG
+#: 11030000.xhp
+msgctxt ""
+"11030000.xhp\n"
+"par_id3156410\n"
+"help.text"
+msgid "<image id=\"img_id3153311\" src=\"cmd/sc_runbasic.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3153311\">Icon</alt></image>"
+msgstr "<image id=\"img_id3153311\" src=\"cmd/sc_runbasic.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3153311\">Symbol za Wuwjesć</alt></image>"
+
+#. xkBpt
+#: 11030000.xhp
+msgctxt ""
+"11030000.xhp\n"
+"par_id3154750\n"
+"help.text"
+msgid "Run"
+msgstr "Wuwjesć"
+
+#. vbsDe
+#: 11040000.xhp
+msgctxt ""
+"11040000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Stop"
+msgstr "Zastajić"
+
+#. L7Mnk
+#: 11040000.xhp
+msgctxt ""
+"11040000.xhp\n"
+"bm_id3154863\n"
+"help.text"
+msgid "<bookmark_value>macros; stopping</bookmark_value><bookmark_value>program stops</bookmark_value><bookmark_value>stopping macros</bookmark_value>"
+msgstr "<bookmark_value>makra; zastajić</bookmark_value><bookmark_value>programowe přetorhnjenja</bookmark_value><bookmark_value>makra zastajić</bookmark_value>"
+
+#. ZV5Z3
+#: 11040000.xhp
+msgctxt ""
+"11040000.xhp\n"
+"hd_id3154863\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=\"Zastajić\">Zastajić</link>"
+
+#. XevvQ
+#: 11040000.xhp
+msgctxt ""
+"11040000.xhp\n"
+"par_id3147226\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\">Zastaja wuwjedźenje aktualneho makra.</ahelp><switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline> Móžeće tež Umsch+Strg+Q tłóčić.</defaultinline></switchinline>"
+
+#. K8AjD
+#: 11040000.xhp
+msgctxt ""
+"11040000.xhp\n"
+"par_id3146797\n"
+"help.text"
+msgid "<image id=\"img_id3148538\" src=\"cmd/sc_basicstop.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148538\">Icon</alt></image>"
+msgstr "<image id=\"img_id3148538\" src=\"cmd/sc_basicstop.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148538\">Symbol za Zastajić</alt></image>"
+
+#. g3Rn2
+#: 11040000.xhp
+msgctxt ""
+"11040000.xhp\n"
+"par_id3150986\n"
+"help.text"
+msgid "Stop"
+msgstr "Zastajić"
+
+#. AdkXx
+#: 11050000.xhp
+msgctxt ""
+"11050000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Single Step"
+msgstr "Jednotliwy krok"
+
+#. HrJ7h
+#: 11050000.xhp
+msgctxt ""
+"11050000.xhp\n"
+"hd_id3155934\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=\"Jednotliwy krok\">Jednotliwy krok</link>"
+
+#. 5NkKq
+#: 11050000.xhp
+msgctxt ""
+"11050000.xhp\n"
+"par_id3146117\n"
+"help.text"
+msgid "<ahelp hid=\".uno:BasicStepInto\">Runs the macro and stops it after the next command.</ahelp>"
+msgstr "<ahelp hid=\".uno:BasicStepInto\">Wuwjedźe makro a zastaja jo po přichodnym přikazu.</ahelp>"
+
+#. nCFSZ
+#: 11050000.xhp
+msgctxt ""
+"11050000.xhp\n"
+"par_id3152801\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 "Móžeće tutón přikaz hromadźe z přikazom<link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Wobkedźbować\">Wobkedźbować</link> za rozrisowanje problemow wužiwać."
+
+#. SD8E7
+#: 11050000.xhp
+msgctxt ""
+"11050000.xhp\n"
+"par_id3157958\n"
+"help.text"
+msgid "<image id=\"img_id3153345\" src=\"cmd/sc_basicstepinto.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153345\">Icon</alt></image>"
+msgstr "<image id=\"img_id3153345\" src=\"cmd/sc_basicstepinto.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153345\">Symbol za jednotliwy krok</alt></image>"
+
+#. ESgvs
+#: 11050000.xhp
+msgctxt ""
+"11050000.xhp\n"
+"par_id3147573\n"
+"help.text"
+msgid "Single Step"
+msgstr "Jednotliwy krok"
+
+#. NZffL
+#: 11050000.xhp
+msgctxt ""
+"11050000.xhp\n"
+"par_id3149235\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\">Funkcija proceduroweho kroka</link>"
+
+#. JceSB
+#: 11060000.xhp
+msgctxt ""
+"11060000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Procedure Step"
+msgstr "Procedurowy krok"
+
+#. GCdz2
+#: 11060000.xhp
+msgctxt ""
+"11060000.xhp\n"
+"hd_id3148520\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=\"Procedurowy krok\">Procedurowy krok</link>"
+
+#. narAD
+#: 11060000.xhp
+msgctxt ""
+"11060000.xhp\n"
+"par_id3152363\n"
+"help.text"
+msgid "<ahelp hid=\".uno:BasicStepOver\">Runs the macro and stops it after the next procedure.</ahelp>"
+msgstr "<ahelp hid=\".uno:BasicStepOver\">Wuwjedźe makro a zastaja jo po přichodnej procedurje.</ahelp>"
+
+#. Re5BC
+#: 11060000.xhp
+msgctxt ""
+"11060000.xhp\n"
+"par_id3153394\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 "Móžeće tutón přikaz hromadźe z přikazom<link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Wobkedźbować\">Wobkedźbować</link> za rozrisowanje problemow wužiwać."
+
+#. 8z956
+#: 11060000.xhp
+msgctxt ""
+"11060000.xhp\n"
+"par_id3147576\n"
+"help.text"
+msgid "<image id=\"img_id3143267\" src=\"cmd/sc_basicstepover.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3143267\">Icon</alt></image>"
+msgstr "<image id=\"img_id3143267\" src=\"cmd/sc_basicstepover.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3143267\">Symbol za procedurowy krok</alt></image>"
+
+#. 8cnSk
+#: 11060000.xhp
+msgctxt ""
+"11060000.xhp\n"
+"par_id3154307\n"
+"help.text"
+msgid "Procedure Step"
+msgstr "Procedurowy krok"
+
+#. dy7AF
+#: 11060000.xhp
+msgctxt ""
+"11060000.xhp\n"
+"par_id3153562\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\">Funkcija jednotliweho kroka</link>"
+
+#. mK2Ph
+#: 11070000.xhp
+msgctxt ""
+"11070000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Breakpoint"
+msgstr "Zadźeržny dypk"
+
+#. dSrmB
+#: 11070000.xhp
+msgctxt ""
+"11070000.xhp\n"
+"hd_id3154863\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=\"Zadźeržny dypk\">Zadźeržny dypk</link>"
+
+#. iTCUE
+#: 11070000.xhp
+msgctxt ""
+"11070000.xhp\n"
+"par_id3155364\n"
+"help.text"
+msgid "<ahelp hid=\".uno:ToggleBreakPoint\">Inserts a breakpoint in the program line.</ahelp>"
+msgstr "<ahelp hid=\".uno:ToggleBreakPoint\">Zasadźuje zadźeržny dypk w programowej lince.</ahelp>"
+
+#. 2S8i7
+#: 11070000.xhp
+msgctxt ""
+"11070000.xhp\n"
+"par_id3149346\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 "Zadźeržny dypk so na poziciji kursora zasadźuje. Wužiwajće zadźeržny dypk, zo byšće program přetorhnył, prjedy hač zmylk nastawa. Wuwjedźće modus <link href=\"text/sbasic/shared/02/11050000.xhp\" name=\"Single Step\">Jednotliwy krok</link>, doniž zmylk njenastawa, zo byšće potom program za problemami přepytował. Móžeće tež symbol <link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Watch\">Wobkedźbować</link> wužiwać, zo byšće wobsah relewantnych wariablow přepruwował."
+
+#. srCR5
+#: 11070000.xhp
+msgctxt ""
+"11070000.xhp\n"
+"par_id3156346\n"
+"help.text"
+msgid "<image id=\"img_id3152780\" src=\"cmd/sc_togglebreakpoint.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3152780\">Icon</alt></image>"
+msgstr "<image id=\"img_id3152780\" src=\"cmd/sc_togglebreakpoint.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3152780\">Symbol za zadźeržny dypk</alt></image>"
+
+#. GZkfR
+#: 11070000.xhp
+msgctxt ""
+"11070000.xhp\n"
+"par_id3149416\n"
+"help.text"
+msgid "Breakpoint"
+msgstr "Zadźeržny dypk"
+
+#. Xnu9h
+#: 11080000.xhp
+msgctxt ""
+"11080000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Enable Watch"
+msgstr "Wobkedźbowanje zmóžnić"
+
+#. 4X56s
+#: 11080000.xhp
+msgctxt ""
+"11080000.xhp\n"
+"hd_id3154863\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=\"Wobkedźbowanje zmóžnić\">Wobkedźbowanje zmóžnić</link>"
+
+#. TRivb
+#: 11080000.xhp
+msgctxt ""
+"11080000.xhp\n"
+"par_id3093440\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\">Klikńće na tutón symbol, zo byšće sej wariable w makrje wobhladał. Wobsah wariable so w separatnym woknje pokazuje.</ahelp>"
+
+#. JteXo
+#: 11080000.xhp
+msgctxt ""
+"11080000.xhp\n"
+"par_id3147399\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 "Klikńće na mjeno wariable, zo byšće ju wubrał, potom na symbol <emph>Wobkedźbowanje zmóžnić</emph>. Hódnota, kotraž je wariabli připokazana, so pódla jeje mjeno pokazuje. Tuta hódnota so stajnje aktualizuje."
+
+#. XDGmF
+#: 11080000.xhp
+msgctxt ""
+"11080000.xhp\n"
+"par_id3155892\n"
+"help.text"
+msgid "<image id=\"img_id3147209\" src=\"cmd/sc_addwatch.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147209\">Icon</alt></image>"
+msgstr "<image id=\"img_id3147209\" src=\"cmd/sc_addwatch.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147209\">Symbol za Wobkedźbowanje zmóžnić</alt></image>"
+
+#. LEifr
+#: 11080000.xhp
+msgctxt ""
+"11080000.xhp\n"
+"par_id3150276\n"
+"help.text"
+msgid "Enable Watch"
+msgstr "Wobkedźbowanje zmóžnić"
+
+#. CLAjp
+#: 11080000.xhp
+msgctxt ""
+"11080000.xhp\n"
+"par_id3159158\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 "Zo byšće wariablowe wobkedźbowanje wotstronił, wubjerće wariablu we wobkedźbowanskim woknje a klikńće potom na symbol <emph>Wobkedźbowanje wotstronić</emph>."
+
+#. kfzBw
+#: 11090000.xhp
+msgctxt ""
+"11090000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Object Catalog"
+msgstr "Objektowy katalog"
+
+#. EKx2C
+#: 11090000.xhp
+msgctxt ""
+"11090000.xhp\n"
+"hd_id3153255\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=\"Objektowy katalog\">Objektowy katalog</link>"
+
+#. bHCXS
+#: 11090000.xhp
+msgctxt ""
+"11090000.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "<ahelp hid=\".uno:ObjectCatalog\">Opens the <emph>Objects</emph> pane, where you can view Basic objects.</ahelp>"
+msgstr "<ahelp hid=\".uno:ObjectCatalog\">Wočinja wobłuk <emph>Objekty</emph>, hdźež móžeće sej objekty Basic wobhladać.</ahelp>"
+
+#. AVf2T
+#: 11090000.xhp
+msgctxt ""
+"11090000.xhp\n"
+"par_id3147576\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 "Klikńće dwójce na mjeno funkcije abo podfunkcije, zo byšće modul začitał, kotryž tu funkciju abo podfunkciju wobsahuje a zo byšće kursor pozicioněrował. Klikńće dwójce na mjeno modula abo dialoga, zo byšće tón modul abo dialog začitał a pokazał."
+
+#. yNVBJ
+#: 11090000.xhp
+msgctxt ""
+"11090000.xhp\n"
+"par_id3148538\n"
+"help.text"
+msgid "<image id=\"img_id3163803\" src=\"cmd/sc_objectcatalog.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3163803\">Icon</alt></image>"
+msgstr "<image id=\"img_id3163803\" src=\"cmd/sc_objectcatalog.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3163803\">Symbol za objektowy katalog</alt></image>"
+
+#. EtHDn
+#: 11090000.xhp
+msgctxt ""
+"11090000.xhp\n"
+"par_id3154515\n"
+"help.text"
+msgid "Object Catalog"
+msgstr "Objektowy katalog"
+
+#. ATDaF
+#: 11090000.xhp
+msgctxt ""
+"11090000.xhp\n"
+"hd_id3146794\n"
+"help.text"
+msgid "Window Area"
+msgstr "Woknowy wobłuk"
+
+#. 452ze
+#: 11090000.xhp
+msgctxt ""
+"11090000.xhp\n"
+"par_id3149655\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 "<ahelp hid=\"HID_BASICIDE_OBJECTCAT\">Pokazuje hierarchiski napohlad aktualnych bibliotekow makrow, modulow a dialogow w $[officename]. Zo byšće wobsah zapiska we woknje pokazał, klikńće dwójce na jeho mjeno.</ahelp>"
+
+#. gMG3o
+#: 11100000.xhp
+msgctxt ""
+"11100000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Macros"
+msgstr "Makra"
+
+#. FLE8S
+#: 11100000.xhp
+msgctxt ""
+"11100000.xhp\n"
+"hd_id3156183\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=\"Makra\">Makra</link>"
+
+#. 5C9pN
+#: 11100000.xhp
+msgctxt ""
+"11100000.xhp\n"
+"par_id3147399\n"
+"help.text"
+msgid "<ahelp visibility=\"visible\" hid=\".uno:ChooseMacro\">Opens the <emph>Macro</emph> dialog.</ahelp>"
+msgstr "<ahelp visibility=\"visible\" hid=\".uno:ChooseMacro\">Wočinja dialog <emph>Makro</emph>.</ahelp>"
+
+#. ST6ud
+#: 11100000.xhp
+msgctxt ""
+"11100000.xhp\n"
+"par_id3148538\n"
+"help.text"
+msgid "<image src=\"cmd/sc_choosemacro.png\" id=\"img_id3153662\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153662\">Icon Macros</alt></image>"
+msgstr "<image src=\"cmd/sc_choosemacro.png\" id=\"img_id3153662\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153662\">Symbol za makra</alt></image>"
+
+#. ZW2jE
+#: 11100000.xhp
+msgctxt ""
+"11100000.xhp\n"
+"par_id3153542\n"
+"help.text"
+msgid "Macros"
+msgstr "Makra"
+
+#. AzKnt
+#: 11110000.xhp
+msgctxt ""
+"11110000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Modules"
+msgstr "Module"
+
+#. z4nD8
+#: 11110000.xhp
+msgctxt ""
+"11110000.xhp\n"
+"hd_id3148520\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=\"Module\">Module</link>"
+
+#. dGdth
+#: 11110000.xhp
+msgctxt ""
+"11110000.xhp\n"
+"par_id3156414\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\">Klikńće tu, zo byšće dialog <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Makra rjadować\"><emph>Makra rjadować</emph></link> wočinił.</ahelp>"
+
+#. 2pTWM
+#: 11110000.xhp
+msgctxt ""
+"11110000.xhp\n"
+"par_id3157958\n"
+"help.text"
+msgid "<image src=\"cmd/sc_moduledialog.png\" id=\"img_id3155535\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155535\">Icon Modules</alt></image>"
+msgstr "<image src=\"cmd/sc_moduledialog.png\" id=\"img_id3155535\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155535\">Symbol za module</alt></image>"
+
+#. DikyS
+#: 11110000.xhp
+msgctxt ""
+"11110000.xhp\n"
+"par_id3145383\n"
+"help.text"
+msgid "Modules"
+msgstr "Module"
+
+#. D3G7x
+#: 11120000.xhp
+msgctxt ""
+"11120000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Find Parentheses"
+msgstr "Spinki pytać"
+
+#. awTDX
+#: 11120000.xhp
+msgctxt ""
+"11120000.xhp\n"
+"hd_id3149497\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=\"Spinki pytać\">Spinki pytać</link>"
+
+#. Kkd6M
+#: 11120000.xhp
+msgctxt ""
+"11120000.xhp\n"
+"par_id3155150\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\">Wuzběhuje tekst, kotryž so přez dwě wotpowědowacej so spince wopřijima. Stajće tekstowy kursor před wočinjacu abo začinjacu spinku a klikńće potom na tutón symbol.</ahelp>"
+
+#. jPbz5
+#: 11120000.xhp
+msgctxt ""
+"11120000.xhp\n"
+"par_id3149182\n"
+"help.text"
+msgid "<image src=\"cmd/sc_matchgroup.png\" id=\"img_id3155892\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155892\">Icon Find Parentheses</alt></image>"
+msgstr "<image src=\"cmd/sc_matchgroup.png\" id=\"img_id3155892\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155892\">Symbol za Spinki pytać</alt></image>"
+
+#. Y8mTx
+#: 11120000.xhp
+msgctxt ""
+"11120000.xhp\n"
+"par_id3147276\n"
+"help.text"
+msgid "Find Parentheses"
+msgstr "Spinki pytać"
+
+#. c5Phf
+#: 11140000.xhp
+msgctxt ""
+"11140000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Insert Source Text"
+msgstr "Žórłowy tekst zasadźić"
+
+#. FBDRn
+#: 11140000.xhp
+msgctxt ""
+"11140000.xhp\n"
+"hd_id3154044\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\">Žórłowy tekst zasadźić</link>"
+
+#. JscV7
+#: 11140000.xhp
+msgctxt ""
+"11140000.xhp\n"
+"par_id3150702\n"
+"help.text"
+msgid "<ahelp hid=\".uno:LoadBasic\">Opens the Basic source text in the Basic IDE window.</ahelp>"
+msgstr "<ahelp hid=\".uno:LoadBasic\">Wočinja žórłowy tekst Basic we woknje Basic IDE.</ahelp>"
+
+#. vDwRJ
+#: 11140000.xhp
+msgctxt ""
+"11140000.xhp\n"
+"par_id3150445\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 "Stajće kursor do koda, hdźež chceće žórłowy tekst zasadźić a klikńće potom na symbol <emph>Žórłowy tekst zasadźić</emph>. Pytajće dataju, kotraž žórłowy tekst Basic wobsahuje, kotryž chceće zasadźić a klikńće potom na <emph>Wočinić</emph>."
+
+#. 9CHh2
+#: 11140000.xhp
+msgctxt ""
+"11140000.xhp\n"
+"par_id3145136\n"
+"help.text"
+msgid "<image id=\"img_id3147571\" src=\"cmd/sc_loadbasic.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3147571\">Icon</alt></image>"
+msgstr "<image id=\"img_id3147571\" src=\"cmd/sc_loadbasic.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3147571\">Symbol za žórłowy tekst zasadźić</alt></image>"
+
+#. WqWiH
+#: 11140000.xhp
+msgctxt ""
+"11140000.xhp\n"
+"par_id3145346\n"
+"help.text"
+msgid "Insert source text"
+msgstr "Žórłowy tekst zasadźić"
+
+#. FtAKL
+#: 11150000.xhp
+msgctxt ""
+"11150000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Save Source As"
+msgstr "Žórłowy tekst składować jako"
+
+#. QL8Bk
+#: 11150000.xhp
+msgctxt ""
+"11150000.xhp\n"
+"hd_id3149497\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=\"Žórłowy tekst składować jako\">Žórłowy tekst składować jako</link>"
+
+#. C4hju
+#: 11150000.xhp
+msgctxt ""
+"11150000.xhp\n"
+"par_id3147261\n"
+"help.text"
+msgid "<ahelp hid=\".uno:SaveBasicAs\">Saves the source code of the selected Basic macro.</ahelp>"
+msgstr "<ahelp hid=\".uno:SaveBasicAs\">Składuje žórłowy tekst wubraneho makra Basic.</ahelp>"
+
+#. MVAHT
+#: 11150000.xhp
+msgctxt ""
+"11150000.xhp\n"
+"par_id3145071\n"
+"help.text"
+msgid "<image id=\"img_id3149182\" src=\"cmd/sc_savebasicas.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149182\">Icon</alt></image>"
+msgstr "<image id=\"img_id3149182\" src=\"cmd/sc_savebasicas.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149182\">Symbol za Žórłowy tekst składować jako</alt></image>"
+
+#. tHk8j
+#: 11150000.xhp
+msgctxt ""
+"11150000.xhp\n"
+"par_id3151110\n"
+"help.text"
+msgid "Save Source As"
+msgstr "Žórłowy tekst składować jako"
+
+#. GG5kY
+#: 11160000.xhp
+msgctxt ""
+"11160000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Step Out"
+msgstr "Wróćoskok"
+
+#. KeqCM
+#: 11160000.xhp
+msgctxt ""
+"11160000.xhp\n"
+"hd_id3148983\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=\"Wróćoskok\">Wróćoskok</link>"
+
+#. 4rNBj
+#: 11160000.xhp
+msgctxt ""
+"11160000.xhp\n"
+"par_id3157898\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\">Skaka wróćo k předchadnej rutinje w aktualnym makrje.</ahelp>"
+
+#. V7PQF
+#: 11160000.xhp
+msgctxt ""
+"11160000.xhp\n"
+"par_id3156410\n"
+"help.text"
+msgid "<image src=\"cmd/sc_basicstepout.png\" id=\"img_id3159233\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3159233\">Icon Step Out</alt></image>"
+msgstr "<image src=\"cmd/sc_basicstepout.png\" id=\"img_id3159233\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3159233\">Symbol za wróćoskok</alt></image>"
+
+#. aLy3R
+#: 11160000.xhp
+msgctxt ""
+"11160000.xhp\n"
+"par_id3158421\n"
+"help.text"
+msgid "Step Out"
+msgstr "Wróćoskok"
+
+#. p2AD7
+#: 11170000.xhp
+msgctxt ""
+"11170000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Manage Breakpoints"
+msgstr "Zadźeržne dypki rjadować"
+
+#. 9xPeD
+#: 11170000.xhp
+msgctxt ""
+"11170000.xhp\n"
+"hd_id3156183\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=\"Zadźeržne dypki rjadować\">Zadźeržne dypki rjadować</link>"
+
+#. XqJ6C
+#: 11170000.xhp
+msgctxt ""
+"11170000.xhp\n"
+"par_id3152363\n"
+"help.text"
+msgid "<ahelp hid=\".\">Calls a dialog to manage breakpoints.</ahelp>"
+msgstr "<ahelp hid=\".\">Wuwołuje dialog za rjadowanje zadźeržnych dypkow.</ahelp>"
+
+#. EJzPX
+#: 11170000.xhp
+msgctxt ""
+"11170000.xhp\n"
+"par_id3143267\n"
+"help.text"
+msgid "<image id=\"img_id3155339\" src=\"cmd/sc_managebreakpoints.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155339\">Icon</alt></image>"
+msgstr "<image id=\"img_id3155339\" src=\"cmd/sc_managebreakpoints.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155339\">Symbol za Zadźeržne dypki rjadować</alt></image>"
+
+#. drqjA
+#: 11170000.xhp
+msgctxt ""
+"11170000.xhp\n"
+"par_id3145383\n"
+"help.text"
+msgid "Manage Breakpoints"
+msgstr "Zadźeržne dypki rjadować"
+
+#. VEXGo
+#: 11170000.xhp
+msgctxt ""
+"11170000.xhp\n"
+"par_id3154897\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=\"Manage Breakpoints dialog\">Dialog <emph>Zadźeržne dypki rjadować</emph></link>"
+
+#. sBFuo
+#: 11180000.xhp
+msgctxt ""
+"11180000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Import Dialog"
+msgstr "Dialog Importować"
+
+#. DpFcB
+#: 11180000.xhp
+msgctxt ""
+"11180000.xhp\n"
+"hd_id3156183\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/11180000.xhp\" name=\"Dialog importować\">Dialog importować</link>"
+
+#. XBChu
+#: 11180000.xhp
+msgctxt ""
+"11180000.xhp\n"
+"par_id3152363\n"
+"help.text"
+msgid "<ahelp hid=\".\">Calls an \"Open\" dialog to import a BASIC dialog file.</ahelp>"
+msgstr "<ahelp hid=\".\">Wočinja dialog „Wočinić“, zo by dataju dialoga BASIC importował.</ahelp>"
+
+#. FbBoM
+#: 11180000.xhp
+msgctxt ""
+"11180000.xhp\n"
+"par_id0929200903505211\n"
+"help.text"
+msgid "If the imported dialog has a name that already exists in the library, you see a message box where you can decide to rename the imported dialog. In this case the dialog will be renamed to the next free \"automatic\" name like when creating a new dialog. Or you can replace the existing dialog by the imported dialog. If you click Cancel the dialog is not imported."
+msgstr "Jeli importowany dialog mjeno ma, kotrež w bibliotece hižo eksistuje, budźeće zdźělenske polo widźeć, hdźež móžeće importowany dialog přemjenować. W tutym padźe so dialog do přichodneho swobodneho „awtomatiskeho“ mjena přemjenuje, kaž hdyž so nowy dialog wutwori. Abo móžeće eksistowacy dialog přez importowany dialog wuměnić. Jeli na Přetorhnyć klikaće, so dialog njeimportuje."
+
+#. n6QpJ
+#: 11180000.xhp
+msgctxt ""
+"11180000.xhp\n"
+"par_id0929200903505360\n"
+"help.text"
+msgid "Dialogs can contain localization data. When importing a dialog, a mismatch of the dialogs' localization status can occur."
+msgstr "Dialogi móža daty wo lokalizaciji wobsahować. Hdyž so dialog importuje, móže być, zo lokalizaciski status je wopačny."
+
+#. DecXa
+#: 11180000.xhp
+msgctxt ""
+"11180000.xhp\n"
+"par_id0929200903505320\n"
+"help.text"
+msgid "If the library contains additional languages compared to the imported dialog, or if the imported dialog is not localized at all, then the additional languages will silently be added to the imported dialog using the strings of the dialog's default locale."
+msgstr "Hdyž biblioteka přidatne rěče porno importowanemu dialogej wobsahuje, abo jeli importowany dialog docyła lokalizowany njeje, so přidatne rěče importowanemu dialogej z pomocu znamješkowych rjećazkow standardneje rěče dialog mjelčicy přidawaja."
+
+#. mGc9E
+#: 11180000.xhp
+msgctxt ""
+"11180000.xhp\n"
+"par_id0929200903505383\n"
+"help.text"
+msgid "If the imported dialog contains additional languages compared to the library, or if the library is not localized at all, then you see a message box with Add, Omit, and Cancel buttons."
+msgstr "Jeli importowany dialog přidatne rěče pornom bibliotece wobsahuje, abo jeli biblioteka docyła lokalizowana njeje, budźeće zdźělenske polo z tłóčatkami Přidać, Wuwostajić a Přetorhnyć widźeć."
+
+#. XrhtD
+#: 11180000.xhp
+msgctxt ""
+"11180000.xhp\n"
+"par_id0929200903505340\n"
+"help.text"
+msgid "Add: The additional languages from the imported dialog will be added to the already existing dialog. The resources from the library's default language will be used for the new languages. This is the same as if you add these languages manually."
+msgstr "Přidać: Přidatne rěče z importowaneho dialoga so hižo eksistowacemu dialogej přidawaja. Resursy ze standardneje rěče biblioteki so za nowe rěče wužiwaja. To je tak, kaž byšće tute rěče manuelnje přidał."
+
+#. GzYU9
+#: 11180000.xhp
+msgctxt ""
+"11180000.xhp\n"
+"par_id0929200903505367\n"
+"help.text"
+msgid "Omit: The library's language settings will stay unchanged. The imported dialog's resources for the omitted languages are not copied into the library, but they remain in the imported dialog's source files."
+msgstr "Wuwostajić: Rěčne nastajenja biblioteki njezměnjene wostanu. Resursy importowaneho dialoga za wuwostajene rěče so do biblioteki njekopěruja, ale wostanu w žórłowych datajach importowaneho dialoga."
+
+#. CYDb7
+#: 11180000.xhp
+msgctxt ""
+"11180000.xhp\n"
+"par_id3143267\n"
+"help.text"
+msgid "<image id=\"img_id3155339\" src=\"cmd/sc_importdialog.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155339\">Icon</alt></image>"
+msgstr "<image id=\"img_id3155339\" src=\"cmd/sc_importdialog.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155339\">Symbol za Importować</alt></image>"
+
+#. jhUym
+#: 11180000.xhp
+msgctxt ""
+"11180000.xhp\n"
+"par_id3145383\n"
+"help.text"
+msgid "Import Dialog"
+msgstr "Dialog Importować"
+
+#. csTtJ
+#: 11190000.xhp
+msgctxt ""
+"11190000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Export Dialog"
+msgstr "Dialog Eksportować"
+
+#. ZwGyC
+#: 11190000.xhp
+msgctxt ""
+"11190000.xhp\n"
+"hd_id3156183\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/11190000.xhp\" name=\"Export Dialog\">Dialog eksportować</link>"
+
+#. aVo7E
+#: 11190000.xhp
+msgctxt ""
+"11190000.xhp\n"
+"par_id3152363\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 "<ahelp hid=\".\">Tutón přikaz dialog „Składować jako“ w dialogowym editorje wuwołuje, zo byšće aktualny dialog BASIC eksportował.</ahelp>"
+
+#. 7DnCe
+#: 11190000.xhp
+msgctxt ""
+"11190000.xhp\n"
+"par_id3143267\n"
+"help.text"
+msgid "<image id=\"img_id3155339\" src=\"cmd/sc_exportdialog.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155339\">Icon</alt></image>"
+msgstr "<image id=\"img_id3155339\" src=\"cmd/sc_exportdialog.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155339\">Symbol za Eksportować</alt></image>"
+
+#. hESPm
+#: 11190000.xhp
+msgctxt ""
+"11190000.xhp\n"
+"par_id3145383\n"
+"help.text"
+msgid "Export Dialog"
+msgstr "Dialog Eksportować"
+
+#. d2nFH
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Insert Controls"
+msgstr "Wodźenske elementy zasadźić"
+
+#. F2psp
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"bm_id3150402\n"
+"help.text"
+msgid "<bookmark_value>controls; in dialog editor</bookmark_value><bookmark_value>push button control in dialog editor</bookmark_value><bookmark_value>icon control</bookmark_value><bookmark_value>buttons; controls</bookmark_value><bookmark_value>image control</bookmark_value><bookmark_value>check box control</bookmark_value><bookmark_value>radio button control</bookmark_value><bookmark_value>option button control</bookmark_value><bookmark_value>fixed text control</bookmark_value><bookmark_value>label field control</bookmark_value><bookmark_value>editing; controls</bookmark_value><bookmark_value>text boxes; controls</bookmark_value><bookmark_value>list boxes; controls</bookmark_value><bookmark_value>combo box control</bookmark_value><bookmark_value>scroll bar control</bookmark_value><bookmark_value>horizontal scrollbar control</bookmark_value><bookmark_value>vertical scrollbar control</bookmark_value><bookmark_value>group box control</bookmark_value><bookmark_value>progress bar control</bookmark_value><bookmark_value>fixed line control</bookmark_value><bookmark_value>horizontal line control</bookmark_value><bookmark_value>line control</bookmark_value><bookmark_value>vertical line control</bookmark_value><bookmark_value>date field control</bookmark_value><bookmark_value>time field control</bookmark_value><bookmark_value>numerical field control</bookmark_value><bookmark_value>currency field control</bookmark_value><bookmark_value>formatted field control</bookmark_value><bookmark_value>pattern field control</bookmark_value><bookmark_value>masked field control</bookmark_value><bookmark_value>file selection control</bookmark_value><bookmark_value>selection options for controls</bookmark_value><bookmark_value>test mode control</bookmark_value>"
+msgstr "<bookmark_value>wodźenske elementy; w dialogowym editorje</bookmark_value><bookmark_value>tłóčatkowy wodźenski element w dialogowym editorje</bookmark_value><bookmark_value>symbolowy wodźenski element</bookmark_value><bookmark_value>tłóčatka; wodźenske elementy</bookmark_value><bookmark_value>wobrazowy wodźenski element</bookmark_value><bookmark_value>kontrolny kašćik (wodźenski element)</bookmark_value><bookmark_value>opciske tłóčatko (wodźenski element)</bookmark_value><bookmark_value>opciske tłóčatko (wodźenski element)</bookmark_value><bookmark_value>kruty tekst (wodźenski element)</bookmark_value><bookmark_value>popisowe polo (wodźenski element)</bookmark_value><bookmark_value>wobdźěłowanje; wodźenske elementy</bookmark_value><bookmark_value>tekstowe pola; wodźenske elementy</bookmark_value><bookmark_value>lisćinowe pola; wodźenske elementy</bookmark_value><bookmark_value>kombinaciske polo (wodźenski element)</bookmark_value><bookmark_value>suwanska lajsta (wodźenski element)</bookmark_value><bookmark_value>horicontalna suwanska lajsta (wodźenski element)</bookmark_value><bookmark_value>wertikalna suwanska lajsta (wodźenski element)</bookmark_value><bookmark_value>skupinske polo (wodźenski element)</bookmark_value><bookmark_value>postupowa hrjada (wodźenski element)</bookmark_value><bookmark_value>kruta linija (wodźenski element)</bookmark_value><bookmark_value>horicontalna linija (wodźenski element)</bookmark_value><bookmark_value>linija (wodźenski element)</bookmark_value><bookmark_value>wertikalna linija (wodźenski element)</bookmark_value><bookmark_value>datumowe polo (wodźenski element)</bookmark_value><bookmark_value>časowe polo (wodźenski element)</bookmark_value><bookmark_value>numeriske polo (wodźenski element)</bookmark_value><bookmark_value>měnowe polo (wodźenski element)</bookmark_value><bookmark_value>formatowane polo (wodźenski element)</bookmark_value><bookmark_value>mustrowe polo (wodźenski element)</bookmark_value><bookmark_value>maskowane polo (wodźenski element)</bookmark_value><bookmark_value>datajowy wuběr (wodźenski element)</bookmark_value><bookmark_value>wuběranske nastajenja za wodźenske elementy</bookmark_value><bookmark_value>testowy modus (wodźenski element)</bookmark_value>"
+
+#. YL3Za
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"hd_id3150402\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=\"Wodźenske elementy zasadźić\">Wodźenske elementy zasadźić</link>"
+
+#. jnfj9
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"par_id3147000\n"
+"help.text"
+msgid "<ahelp hid=\".uno:ChooseControls\">Opens the <emph>Toolbox</emph> bar.</ahelp>"
+msgstr "<ahelp hid=\".uno:ChooseControls\">Wočinja symbolowu lajstu <emph>Wodźenske elementy</emph>.</ahelp>"
+
+#. tFTAA
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"par_id3147226\n"
+"help.text"
+msgid "<image id=\"img_id3147571\" src=\"cmd/lc_choosecontrols.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3147571\">Icon Choose Controls</alt></image>"
+msgstr "<image id=\"img_id3147571\" src=\"cmd/lc_choosecontrols.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3147571\">Symbol za Wodźenske elementy zasadźić</alt></image>"
+
+#. DCFsK
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"par_id3153749\n"
+"help.text"
+msgid "Insert Controls"
+msgstr "Wodźenske elementy zasadźić"
+
+#. BjneK
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"par_id3157958\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 "Klikńće dwójce we wobdźěłowanskim modusu, zo byšće dialog <link href=\"text/sbasic/shared/01170100.xhp\" name=\"Kajkosće\">Kajkosće</link> wočinił."
+
+#. eo4TR
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"par_id3148538\n"
+"help.text"
+msgid "In edit mode, you can also right-click a control and choose the cut, copy, and paste command."
+msgstr "We wobdźěłowanskim modusu móžeće tež z prawej tastu na wodźenski element kliknyć a přikazy Wutřihać, Kopěrować a Zasadźić wubrać."
+
+#. s9tA6
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"hd_id3148473\n"
+"help.text"
+msgid "Button"
+msgstr "Tłóčatko"
+
+#. extEu
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"par_id3153824\n"
+"help.text"
+msgid "<image id=\"img_id3157909\" src=\"cmd/sc_insertpushbutton.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3157909\">Icon Button</alt></image>"
+msgstr "<image id=\"img_id3157909\" src=\"cmd/sc_insertpushbutton.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3157909\">Symbol za tłóčatko</alt></image>"
+
+#. pGofA
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"par_id3147530\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\">Přidawa přikazowe tłóčatko.</ahelp> Móžeće přikazowe tłóčatko wužiwać, zo byšće přikaz za definowany podawk, na přikład kliknjenje z myšku, wuwjedł."
+
+#. GZHQC
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"par_id3154923\n"
+"help.text"
+msgid "If you want, you can add text or a graphic to the button."
+msgstr "Jeli chceće, móžeće tłóčatku tekst abo grafiku přidać."
+
+#. EFgyZ
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"hd_id3148550\n"
+"help.text"
+msgid "Image Control"
+msgstr "Wobrazowy wodźenski element"
+
+#. GUAtq
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"par_id3154138\n"
+"help.text"
+msgid "<image id=\"img_id3144760\" src=\"cmd/sc_objectcatalog.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3144760\">Icon Image Control</alt></image>"
+msgstr "<image id=\"img_id3144760\" src=\"cmd/sc_objectcatalog.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3144760\">Symbol za wobrazowy wodźenski element</alt></image>"
+
+#. VFc83
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"par_id3151042\n"
+"help.text"
+msgid "<ahelp hid=\".uno:InsertImageControl\">Adds a control that displays a graphic.</ahelp>"
+msgstr "<ahelp hid=\".uno:InsertImageControl\">Přidawa wodźenski element, kotryž grafiku pokazuje.</ahelp>"
+
+#. bYtDg
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"hd_id3150447\n"
+"help.text"
+msgid "Check Box"
+msgstr "Kontrolny kašćik"
+
+#. mDDYe
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"par_id3155131\n"
+"help.text"
+msgid "<image id=\"img_id3150439\" src=\"cmd/sc_checkbox.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150439\">Icon Check Box</alt></image>"
+msgstr "<image id=\"img_id3150439\" src=\"cmd/sc_checkbox.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150439\">Symbol za kontrolny kašćik</alt></image>"
+
+#. QWB7B
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"par_id3147317\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\">Přidawa kontrolny kašćik, kotryž móžeće wužiwać, zo byšće funkciju zmóžnił abo znjemóžnił.</ahelp>"
+
+#. gG6kh
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"hd_id3150486\n"
+"help.text"
+msgid "Option Button"
+msgstr "Opciske tłóčatko"
+
+#. KRCpo
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"par_id3155856\n"
+"help.text"
+msgid "<image id=\"img_id3146921\" src=\"cmd/sc_radiobutton.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146921\">Icon Option Button</alt></image>"
+msgstr "<image id=\"img_id3146921\" src=\"cmd/sc_radiobutton.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146921\">Symbol za opciske tłóčatko</alt></image>"
+
+#. FNGHF
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"par_id3153575\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 order. They are commonly encircled by a group box. If you have two groups of option buttons, you must insert a tab order between the tab orders of the two groups. For example, to the frame of the second group, or to any other control in the dialog, with the exception of another option button."
+msgstr "<ahelp hid=\".uno:Radiobutton\">Přidawa tłóčatko, kotrež wužiwarjej zmóžnja, z rjada móžnosćow wubrać.</ahelp> Zeskupjene opciske tłóčatka dyrbja na so sćěhowacy tabulatorowy porjad měć. Su zwjetša přez skupinske polo wobdate. Jeli dwě skupinje opciskich tłóčatkow maće, dyrbiće tabulatorowy porjad mjez tabulatorowymi porjadami dweju skupinow zasadźić. Na přikład k wobłukej druheje skupiny abo k druhemu wodźenskemu elementej, nimo k druhemu opciskemu tłóčatku."
+
+#. DaRgN
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"hd_id3154729\n"
+"help.text"
+msgid "Label Field"
+msgstr "Popisowe polo"
+
+#. DQafE
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"par_id3149300\n"
+"help.text"
+msgid "<image id=\"img_id3153415\" src=\"cmd/sc_insertfixedtext.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153415\">Icon Label Field</alt></image>"
+msgstr "<image id=\"img_id3153415\" src=\"cmd/sc_insertfixedtext.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153415\">Symbol za popisowe polo</alt></image>"
+
+#. XA4Aw
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"par_id3156181\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\">Přidawa polo za pokazowanje tekstowych popisow.</ahelp> Tute popisy su jenož za pokazowanje předdefinowaneho teksta myslene, nic za zapodawanje teksta."
+
+#. BupCK
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"hd_id3149123\n"
+"help.text"
+msgid "Text Box"
+msgstr "Tekstowe polo"
+
+#. DDKUC
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"par_id3153766\n"
+"help.text"
+msgid "<image id=\"img_id3148996\" src=\"cmd/sc_edit.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3148996\">Icon Text Box</alt></image>"
+msgstr "<image id=\"img_id3148996\" src=\"cmd/sc_edit.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3148996\">Symbol za tekstowe polo</alt></image>"
+
+#. ruGZ2
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"par_id3153712\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\">Přidawa zapodawanske polo, hdźež móžeće tekst zapodać a wobdźěłać.</ahelp>"
+
+#. zPAk2
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"hd_id3154253\n"
+"help.text"
+msgid "List Box"
+msgstr "Lisćinowe polo"
+
+#. LdHYT
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"par_id3155959\n"
+"help.text"
+msgid "<image id=\"img_id3163808\" src=\"cmd/sc_listbox.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3163808\">Icon List Box</alt></image>"
+msgstr "<image id=\"img_id3163808\" src=\"cmd/sc_listbox.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3163808\">Symbol za lisćinowe polo</alt></image>"
+
+#. CZ7M5
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"par_id3155176\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\">Přidawa polo, hdźež móžeće na zapisk w lisćinje kliknyć.</ahelp>"
+
+#. Beb2k
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"hd_id3150644\n"
+"help.text"
+msgid "Combo Box"
+msgstr "Kombinaciske polo"
+
+#. YgGoR
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"par_id3148418\n"
+"help.text"
+msgid "<image id=\"img_id3153200\" src=\"cmd/sc_combobox.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153200\">Icon Combo Box</alt></image>"
+msgstr "<image id=\"img_id3153200\" src=\"cmd/sc_combobox.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153200\">Symbol za kombinaciske polo</alt></image>"
+
+#. Vdn74
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"par_id3154199\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\">Přidawa kombinaciske polo. Kombinaciske polo je jednolinkowe lisćinowe polo, na kotrež wužiwar móže kliknyć a potom zapisk z lisćiny wubrać.</ahelp> Jeli chceće, móžeće zapiski jako „Jenož čitać“ postajić."
+
+#. Q7efB
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"hd_id3154585\n"
+"help.text"
+msgid "Horizontal Scrollbar"
+msgstr "Horicontalna suwanska lajsta"
+
+#. AeTvn
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"par_id3153781\n"
+"help.text"
+msgid "<image id=\"img_id3149530\" src=\"cmd/sc_hscrollbar.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149530\">Icon Horizontal Scrollbar</alt></image>"
+msgstr "<image id=\"img_id3149530\" src=\"cmd/sc_hscrollbar.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149530\">Symbol za horicontalnu suwansku lajstu</alt></image>"
+
+#. Vbp2o
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"par_id3153232\n"
+"help.text"
+msgid "<ahelp hid=\".uno:HScrollbar\">Adds a horizontal scrollbar to the dialog.</ahelp>"
+msgstr "<ahelp hid=\".uno:HScrollbar\">Přidawa dialogej horicontalnu suwansku lajstu.</ahelp>"
+
+#. ECtLc
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"hd_id3154119\n"
+"help.text"
+msgid "Vertical Scrollbar"
+msgstr "Wertikalna suwanska lajsta"
+
+#. 2eBnb
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"par_id3150515\n"
+"help.text"
+msgid "<image id=\"img_id3150203\" src=\"cmd/sc_vscrollbar.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150203\">Icon Vertical Scrollbar</alt></image>"
+msgstr "<image id=\"img_id3150203\" src=\"cmd/sc_vscrollbar.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150203\">Symbol za wertikalnu suwansku lajstu</alt></image>"
+
+#. NmKDo
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"par_id3155376\n"
+"help.text"
+msgid "<ahelp hid=\".uno:VScrollbar\">Adds a vertical scrollbar to the dialog.</ahelp>"
+msgstr "<ahelp hid=\".uno:VScrollbar\">Přidawa dialogej wertikalnu suwansku lajstu.</ahelp>"
+
+#. JmAgh
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"hd_id3150313\n"
+"help.text"
+msgid "Group Box"
+msgstr "Skupinske polo"
+
+#. UCcgq
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"par_id3151184\n"
+"help.text"
+msgid "<image id=\"img_id3151335\" src=\"cmd/sc_groupbox.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3151335\">Icon Group Box</alt></image>"
+msgstr "<image id=\"img_id3151335\" src=\"cmd/sc_groupbox.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3151335\">Symbol za skupinske polo</alt></image>"
+
+#. aMgsB
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"par_id3159622\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\">Přidawa wobłuk, kotryž móžeće wužiwać, zo byšće podobne wodźenske elementy wizuelnje zeskupił, na přikład opciske tłóčatka.</ahelp>"
+
+#. CQpDj
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"par_id3148820\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 "Zo byšće dwě rozdźělnej skupinje opciskich tłóčatkow definował, zawěsćće, zo tabulatorowy indeks skupinskeho wobłuka je mjez tabulatorowymi indeksami tuteju dweju skupinow."
+
+#. qusDD
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"hd_id3149330\n"
+"help.text"
+msgid "Progress Bar"
+msgstr "Postupowa hrjada"
+
+#. SDEqL
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"par_id3159093\n"
+"help.text"
+msgid "<image id=\"img_id3150318\" src=\"cmd/sc_progressbar.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150318\">Icon Progress Bar</alt></image>"
+msgstr "<image id=\"img_id3150318\" src=\"cmd/sc_progressbar.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150318\">Symbol za postupowu hrjadu</alt></image>"
+
+#. AUUic
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"par_id3157979\n"
+"help.text"
+msgid "<ahelp hid=\".uno:ProgressBar\">Adds a progress bar to the dialog.</ahelp>"
+msgstr "<ahelp hid=\".uno:ProgressBar\">Přidawa dialogej postupowu hrjadu.</ahelp>"
+
+#. 2xdUf
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"hd_id3145654\n"
+"help.text"
+msgid "Horizontal Line"
+msgstr "Horicontalna linija"
+
+#. M4v9f
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"par_id3150888\n"
+"help.text"
+msgid "<image id=\"img_id3152872\" src=\"cmd/sc_hfixedline.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152872\">Icon Horizontal Line</alt></image>"
+msgstr "<image id=\"img_id3152872\" src=\"cmd/sc_hfixedline.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152872\">Symbol za horicontalnu liniju</alt></image>"
+
+#. rVrjy
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"par_id3151000\n"
+"help.text"
+msgid "<ahelp hid=\".uno:HFixedLine\">Adds a horizontal line to the dialog.</ahelp>"
+msgstr "<ahelp hid=\".uno:HFixedLine\">Přidawa dialogej horicontalnu liniju.</ahelp>"
+
+#. UcBeW
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"hd_id3155095\n"
+"help.text"
+msgid "Vertical Line"
+msgstr "Wertikalna linija"
+
+#. mXCzj
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"par_id3154913\n"
+"help.text"
+msgid "<image id=\"img_id3153249\" src=\"cmd/sc_vfixedline.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153249\">Icon Vertical Line</alt></image>"
+msgstr "<image id=\"img_id3153249\" src=\"cmd/sc_vfixedline.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153249\">Symbol za wertikalnu liniju</alt></image>"
+
+#. aQQuM
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"par_id3159203\n"
+"help.text"
+msgid "<ahelp hid=\".uno:VFixedLine\">Adds a vertical line to the dialog.</ahelp>"
+msgstr "<ahelp hid=\".uno:VFixedLine\">Přidawa dialogej wertikalnu liniju.</ahelp>"
+
+#. FxkjD
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"hd_id3154540\n"
+"help.text"
+msgid "Date Field"
+msgstr "Datumowe polo"
+
+#. ea37C
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"par_id3148901\n"
+"help.text"
+msgid "<image id=\"img_id3151010\" src=\"cmd/sc_adddatefield.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3151010\">Icon Date Field</alt></image>"
+msgstr "<image id=\"img_id3151010\" src=\"cmd/sc_adddatefield.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3151010\">Symbol za datumowe polo</alt></image>"
+
+#. VU2nc
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"par_id3154214\n"
+"help.text"
+msgid "<ahelp hid=\".uno:AddDateField\">Adds a date field.</ahelp>"
+msgstr "<ahelp hid=\".uno:AddDateField\">Přidawa datumowe polo.</ahelp>"
+
+#. DBqW6
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"par_id3150046\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 "Jeli datumowemu polu kajkosć „Pokazać“ připokazujeće, móže wužiwar protyku pokazać, zo by datum wubrał."
+
+#. Mofqo
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"hd_id3151126\n"
+"help.text"
+msgid "Time Field"
+msgstr "Časowe polo"
+
+#. 7tb5m
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"par_id3154338\n"
+"help.text"
+msgid "<image id=\"img_id3147077\" src=\"cmd/sc_timefield.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3147077\">Icon Time Field</alt></image>"
+msgstr "<image id=\"img_id3147077\" src=\"cmd/sc_timefield.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3147077\">Symbol za časowe polo</alt></image>"
+
+#. 6fSyF
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"par_id3151191\n"
+"help.text"
+msgid "<ahelp hid=\"SID_INSERT_TIMEFIELD\">Adds a time field.</ahelp>"
+msgstr "<ahelp hid=\"SID_INSERT_TIMEFIELD\">Přidawa časowe polo.</ahelp>"
+
+#. 6vzHV
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"hd_id3154733\n"
+"help.text"
+msgid "Numeric Field"
+msgstr "Numeriske polo"
+
+#. GeNcT
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"par_id3146107\n"
+"help.text"
+msgid "<image id=\"img_id3147499\" src=\"cmd/sc_insertnumericfield.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3147499\">Icon Numeric Field</alt></image>"
+msgstr "<image id=\"img_id3147499\" src=\"cmd/sc_insertnumericfield.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3147499\">Symbol za numeriske polo</alt></image>"
+
+#. hMT5t
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"par_id3147244\n"
+"help.text"
+msgid "<ahelp hid=\".uno:InsertNumericField\">Adds a numeric field.</ahelp>"
+msgstr "<ahelp hid=\".uno:InsertNumericField\">Přidawa numeriske polo.</ahelp>"
+
+#. jrbuR
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"hd_id3149870\n"
+"help.text"
+msgid "Currency Field"
+msgstr "Měnowe polo"
+
+#. FEqFW
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"par_id3153958\n"
+"help.text"
+msgid "<image id=\"img_id3150435\" src=\"cmd/sc_currencyfield.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150435\">Icon Currency Field</alt></image>"
+msgstr "<image id=\"img_id3150435\" src=\"cmd/sc_currencyfield.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150435\">Symbol za měnowe polo</alt></image>"
+
+#. BeFRH
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"par_id3154064\n"
+"help.text"
+msgid "<ahelp hid=\".uno:InsertCurrencyField\">Adds a currency field.</ahelp>"
+msgstr "<ahelp hid=\".uno:InsertCurrencyField\">Přidawa měnowe polo.</ahelp>"
+
+#. BJs4P
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"hd_id3150117\n"
+"help.text"
+msgid "Formatted Field"
+msgstr "Formatowane polo"
+
+#. B3cDo
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"par_id3153162\n"
+"help.text"
+msgid "<image id=\"img_id3152807\" src=\"cmd/sc_formattedfield.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152807\">Icon Formatted Field</alt></image>"
+msgstr "<image id=\"img_id3152807\" src=\"cmd/sc_formattedfield.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152807\">Symbol za formatowane polo</alt></image>"
+
+#. QAd5c
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"par_id3146320\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\">Přidawa tekstowe polo, hdźež móžeće formatowanje za zapodaty abo wudaty tekst definować a hódnoty wobmjezować.</ahelp>"
+
+#. 2iDg4
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"hd_id3156160\n"
+"help.text"
+msgid "Pattern Field"
+msgstr "Maskowane polo"
+
+#. t7s46
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"par_id3150379\n"
+"help.text"
+msgid "<image id=\"img_id3150032\" src=\"cmd/sc_insertpatternfield.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150032\">Icon Pattern Field</alt></image>"
+msgstr "<image id=\"img_id3150032\" src=\"cmd/sc_insertpatternfield.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150032\">Symbol za maskowane polo</alt></image>"
+
+#. AJhaK
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"par_id3147382\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\">Přidawa maskowane polo.</ahelp> Maskowane polo so ze zapodawanskeje maski a znamješkoweje maski zestaja. Zapodawanska maska postaja, kotre wužiwarske daty dadźa so zapodać. Znamješkowa maska status maskowaneho pola postaja, hdyž so formular začita."
+
+#. 8rcKD
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"hd_id3146815\n"
+"help.text"
+msgid "File Selection"
+msgstr "Datajowy wuběr"
+
+#. WaVBA
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"par_id3149194\n"
+"help.text"
+msgid "<image id=\"img_id3149101\" src=\"cmd/sc_filecontrol.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149101\">Icon File Selection</alt></image>"
+msgstr "<image id=\"img_id3149101\" src=\"cmd/sc_filecontrol.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149101\">Symbol za datajowy wuběr</alt></image>"
+
+#. 9GHDa
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"par_id3145632\n"
+"help.text"
+msgid "<ahelp hid=\".uno:InsertFileControl\">Adds a button that opens a file selection dialog.</ahelp>"
+msgstr "<ahelp hid=\".uno:InsertFileControl\">Přidawa tłóčatko, kotrež dialog za datajowy wuběr wočinja.</ahelp>"
+
+#. AnFmm
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"hd_id3155912\n"
+"help.text"
+msgid "Select"
+msgstr "Wuběr"
+
+#. 3tedQ
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"par_id3154903\n"
+"help.text"
+msgid "<image id=\"img_id3150653\" src=\"cmd/sc_drawselect.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150653\">Icon Select</alt></image>"
+msgstr "<image id=\"img_id3150653\" src=\"cmd/sc_drawselect.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150653\">Symbol za Wuběr</alt></image>"
+
+#. hAcNy
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"par_id3148465\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=\".\">Zmóžnja abo znjemóžnja wuběranski modus. W tutym modusu móžeće wodźenske elementy wubrać, zo byšće móhł je wobdźěłować.</ahelp>"
+
+#. SSQwJ
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"hd_id3154055\n"
+"help.text"
+msgid "Properties"
+msgstr "Kajkosće"
+
+#. uGYVs
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"par_id3148725\n"
+"help.text"
+msgid "<image id=\"img_id3146874\" src=\"cmd/sc_controlproperties.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146874\">Icon Properties</alt></image>"
+msgstr "<image id=\"img_id3146874\" src=\"cmd/sc_controlproperties.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146874\">Symbol za Kajkosće</alt></image>"
+
+#. pjygv
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"par_id3151105\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\">Wočinja dialog, hdźež móžeće <link href=\"text/sbasic/shared/01170100.xhp\" name=\"kajkosće\">kajkosće</link> wubraneho wodźenskeho elementa wobdźěłować.</ahelp>"
+
+#. GqGSX
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"hd_id3153746\n"
+"help.text"
+msgid "Activate Test Mode"
+msgstr "Testowy modus aktiwizować"
+
+#. zHJyC
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"par_id3147417\n"
+"help.text"
+msgid "<image id=\"img_id3148883\" src=\"cmd/sc_testmode.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3148883\">Icon Activate Test Mode</alt></image>"
+msgstr "<image id=\"img_id3148883\" src=\"cmd/sc_testmode.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3148883\">Symbol za aktiwizowanje testoweho modusa</alt></image>"
+
+#. 9gCL9
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"par_id3150699\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\">Startuje testowy modus. Klikńće na symbol „Dialog začinić“, zo byšće testowy modus skónčił.</ahelp>"
+
+#. 5HbMk
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"hd_id2954191\n"
+"help.text"
+msgid "Manage Language"
+msgstr "Rěč rjadować"
+
+#. BPnzG
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"par_id2320017\n"
+"help.text"
+msgid "<image id=\"img_id2856837\" src=\"cmd/sc_managelanguage.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id2856837\">Manage Language icon</alt></image>"
+msgstr "<image id=\"img_id2856837\" src=\"cmd/sc_managelanguage.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id2856837\">Symbol za Rěč rjadować</alt></image>"
+
+#. adqA5
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"par_id1261940\n"
+"help.text"
+msgid "<ahelp hid=\".uno:ManageLanguage\">Opens a <link href=\"text/sbasic/guide/translation.xhp\">dialog</link> to enable or manage multiple sets of dialog resources for multiple languages.</ahelp>"
+msgstr "<ahelp hid=\".uno:ManageLanguage\">Wočinja <link href=\"text/sbasic/guide/translation.xhp\">dialog</link>, z kotrymž móžeće wjacore sadźby dialogowych resursow za wjacore rěče zmóžnić abo rjadować.</ahelp>"
+
+#. vbEQt
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"hd_id11902\n"
+"help.text"
+msgid "Tree Control"
+msgstr "Štomowy wodźenski element"
+
+#. tiKw8
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"par_id7511520\n"
+"help.text"
+msgid "<image id=\"Graphic2\" src=\"cmd/sc_inserttreecontrol.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id285634\">Icon Tree Control</alt></image>"
+msgstr "<image id=\"Graphic2\" src=\"cmd/sc_inserttreecontrol.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id285634\">Symbol za štomowy wodźenski element</alt></image>"
+
+#. xFjgC
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"par_id9961851\n"
+"help.text"
+msgid "<ahelp hid=\".\">Adds a tree control that can show a hierarchical list. You can populate the list by your program, using API calls (XtreeControl).</ahelp>"
+msgstr "<ahelp hid=\".\">Přidawa štomowy wodźenski element, kotryž móže hierarchisku lisćinu pokazać. Móžeće lisćinu w swojim programje z pomocu API-wuwołanjow (XtreeControl) napjelnić.</ahelp>"
+
+#. KjMwM
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"hd_id11904\n"
+"help.text"
+msgid "Table Control"
+msgstr "Tabelowy wodźenski element"
+
+#. 4bdNw
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"par_id7511524\n"
+"help.text"
+msgid "<image id=\"Graphic3\" src=\"cmd/sc_insertgridcontrol.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id2867837\">Table control icon</alt></image>"
+msgstr "<image id=\"Graphic3\" src=\"cmd/sc_insertgridcontrol.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id2867837\">Symbol za tabelowy wodźenski element</alt></image>"
+
+#. XzXwf
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"par_id9961854\n"
+"help.text"
+msgid "<ahelp hid=\".\">Adds a table control that can show a table data. You can populate the data by your program, using API calls.</ahelp>"
+msgstr "<ahelp hid=\".\">Přidawa tabelu, kotraž móže tabelowe daty pokazać. Móžeće daty w swojim programje z pomocu API-wuwołanjow napjelnić.</ahelp>"
+
+#. BQz8k
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"hd_id11905\n"
+"help.text"
+msgid "Hyperlink Control"
+msgstr "Wotkazowy wodźenski element"
+
+#. CY98t
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"par_id7511525\n"
+"help.text"
+msgid "<image id=\"Graphic3\" src=\"cmd/sc_inserthyperlinkcontrol.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id2896837\">Insert hyperlink control icon</alt></image>"
+msgstr "<image id=\"Graphic3\" src=\"cmd/sc_inserthyperlinkcontrol.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id2896837\">Symbol za wotkazowy wodźenski element</alt></image>"
+
+#. C2Gjm
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"par_id9961856\n"
+"help.text"
+msgid "<ahelp hid=\".\">Adds a hyperlink control that can open an address in web browser.</ahelp>"
+msgstr "<ahelp hid=\".\">Přidawa wotkazowy wodźenski element, kotryž móže adresu we webwobhladowaku wočinić.</ahelp>"
diff --git a/source/hsb/helpcontent2/source/text/sbasic/shared/03.po b/source/hsb/helpcontent2/source/text/sbasic/shared/03.po
new file mode 100644
index 00000000000..5704db08b55
--- /dev/null
+++ b/source/hsb/helpcontent2/source/text/sbasic/shared/03.po
@@ -0,0 +1,30625 @@
+#. extracted from helpcontent2/source/text/sbasic/shared/03
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2022-10-10 13:35+0200\n"
+"PO-Revision-Date: 2022-08-10 13:23+0000\n"
+"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
+"Language-Team: Upper Sorbian <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicshared03/hsb/>\n"
+"Language: hsb\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#. ViEWM
+#: avail_release.xhp
+msgctxt ""
+"avail_release.xhp\n"
+"tit\n"
+"help.text"
+msgid "(Un)Available since release"
+msgstr "Wot wozjewjenja (nic) k dispoziciji"
+
+#. CeSww
+#: avail_release.xhp
+msgctxt ""
+"avail_release.xhp\n"
+"not_BasMeth\n"
+"help.text"
+msgid "This method is not available in Basic."
+msgstr ""
+
+#. LDXQx
+#: avail_release.xhp
+msgctxt ""
+"avail_release.xhp\n"
+"not_BasProp\n"
+"help.text"
+msgid "This property is not available in Basic."
+msgstr ""
+
+#. 4GDXo
+#: avail_release.xhp
+msgctxt ""
+"avail_release.xhp\n"
+"not_PycMeth\n"
+"help.text"
+msgid "This method is not available in Python."
+msgstr ""
+
+#. 3ZUdq
+#: avail_release.xhp
+msgctxt ""
+"avail_release.xhp\n"
+"not_PycProp\n"
+"help.text"
+msgid "This property is not available in Python."
+msgstr ""
+
+#. 9bTEm
+#: avail_release.xhp
+msgctxt ""
+"avail_release.xhp\n"
+"par_id811631775671311\n"
+"help.text"
+msgid "This service is available from %PRODUCTNAME 7.3 onwards."
+msgstr ""
+
+#. J3r7B
+#: avail_release.xhp
+msgctxt ""
+"avail_release.xhp\n"
+"par_id291613654389793\n"
+"help.text"
+msgid "This method is available from %PRODUCTNAME 7.3 onwards."
+msgstr ""
+
+#. ajeAa
+#: avail_release.xhp
+msgctxt ""
+"avail_release.xhp\n"
+"par_id201613654593537\n"
+"help.text"
+msgid "This property is available from %PRODUCTNAME 7.3 onwards."
+msgstr ""
+
+#. 7KtXf
+#: avail_release.xhp
+msgctxt ""
+"avail_release.xhp\n"
+"par_id651551701041690\n"
+"help.text"
+msgid "This service is available from %PRODUCTNAME 7.2 onwards."
+msgstr ""
+
+#. GXE45
+#: avail_release.xhp
+msgctxt ""
+"avail_release.xhp\n"
+"par_id281613660174140\n"
+"help.text"
+msgid "These methods are available from %PRODUCTNAME 7.2 onwards."
+msgstr ""
+
+#. An73n
+#: avail_release.xhp
+msgctxt ""
+"avail_release.xhp\n"
+"par_id291613654389792\n"
+"help.text"
+msgid "This method is available from %PRODUCTNAME 7.2 onwards."
+msgstr ""
+
+#. qjuHF
+#: avail_release.xhp
+msgctxt ""
+"avail_release.xhp\n"
+"par_id981613655373210\n"
+"help.text"
+msgid "This control is available from %PRODUCTNAME 7.2 onwards."
+msgstr ""
+
+#. bAYUN
+#: avail_release.xhp
+msgctxt ""
+"avail_release.xhp\n"
+"par_id831613654401663\n"
+"help.text"
+msgid "These event properties are available from %PRODUCTNAME 7.2 onwards."
+msgstr ""
+
+#. kVj8c
+#: avail_release.xhp
+msgctxt ""
+"avail_release.xhp\n"
+"par_id201613654395537\n"
+"help.text"
+msgid "This property is available from %PRODUCTNAME 7.2 onwards."
+msgstr ""
+
+#. EziC4
+#: lib_ScriptForge.xhp
+msgctxt ""
+"lib_ScriptForge.xhp\n"
+"tit\n"
+"help.text"
+msgid "ScriptForge Libraries"
+msgstr ""
+
+#. ADEeP
+#: lib_ScriptForge.xhp
+msgctxt ""
+"lib_ScriptForge.xhp\n"
+"hd_id31529004750471\n"
+"help.text"
+msgid "<variable id=\"ScriptForge_lib\"><link href=\"text/sbasic/shared/03/lib_ScriptForge.xhp\" name=\"ScriptForge library\">The <literal>ScriptForge</literal> Library</link></variable>"
+msgstr ""
+
+#. Poeai
+#: lib_ScriptForge.xhp
+msgctxt ""
+"lib_ScriptForge.xhp\n"
+"bm_id491529070339774\n"
+"help.text"
+msgid "<bookmark_value>BASIC ScriptForge library</bookmark_value> <bookmark_value>Python scriptforge module</bookmark_value>"
+msgstr ""
+
+#. BtMUU
+#: lib_ScriptForge.xhp
+msgctxt ""
+"lib_ScriptForge.xhp\n"
+"par_id681619700336879\n"
+"help.text"
+msgid "ScriptForge libraries build up an extensible collection of macro scripting resources for %PRODUCTNAME to be invoked from Basic macros or Python scripts."
+msgstr ""
+
+#. fL8KK
+#: lib_ScriptForge.xhp
+msgctxt ""
+"lib_ScriptForge.xhp\n"
+"par_id901528999850603\n"
+"help.text"
+msgid "• Basic macros require to load <literal>ScriptForge</literal> library using the following statement:<br/><literal>GlobalScope.BasicLibraries.loadLibrary(\"ScriptForge\")</literal><br/><br/>• Python scripts require an import from <literal>scriptforge</literal> module:<br/><literal>from scriptforge import CreateScriptService</literal>"
+msgstr ""
+
+#. eotwE
+#: lib_ScriptForge.xhp
+msgctxt ""
+"lib_ScriptForge.xhp\n"
+"par_id1001623412767893\n"
+"help.text"
+msgid "To learn more about how to create and execute Python scripts using the <literal>ScriptForge</literal> library, read the help page <link href=\"text/sbasic/shared/03/sf_intro.xhp\" name=\"sfintro_link\">Creating Python Scripts with ScriptForge</link>."
+msgstr ""
+
+#. 2Fr3S
+#: lib_ScriptForge.xhp
+msgctxt ""
+"lib_ScriptForge.xhp\n"
+"hd_id781637256119733\n"
+"help.text"
+msgid "Invoking ScriptForge services"
+msgstr ""
+
+#. SaBEy
+#: lib_ScriptForge.xhp
+msgctxt ""
+"lib_ScriptForge.xhp\n"
+"par_id781606153472028\n"
+"help.text"
+msgid "The described modules and classes are invoked from user scripts as \"Services\". A generic constructor of those services has been designed for that purpose for each language."
+msgstr ""
+
+#. xhj84
+#: lib_ScriptForge.xhp
+msgctxt ""
+"lib_ScriptForge.xhp\n"
+"par_id871637256506167\n"
+"help.text"
+msgid "The <literal>Dispose</literal> method is available in all services and should be called to free up resources after usage:"
+msgstr ""
+
+#. Depaw
+#: lib_ScriptForge.xhp
+msgctxt ""
+"lib_ScriptForge.xhp\n"
+"hd_id851613836643580\n"
+"help.text"
+msgid "Services provided by the ScriptForge library"
+msgstr ""
+
+#. dw2Fe
+#: lib_ScriptForge.xhp
+msgctxt ""
+"lib_ScriptForge.xhp\n"
+"par_id131613838858931\n"
+"help.text"
+msgid "Category"
+msgstr ""
+
+#. TmFbF
+#: lib_ScriptForge.xhp
+msgctxt ""
+"lib_ScriptForge.xhp\n"
+"par_id441613838858931\n"
+"help.text"
+msgid "Services"
+msgstr ""
+
+#. ZZKBq
+#: lib_ScriptForge.xhp
+msgctxt ""
+"lib_ScriptForge.xhp\n"
+"par_id851613847558931\n"
+"help.text"
+msgid "%PRODUCTNAME Basic"
+msgstr ""
+
+#. jv7Z3
+#: lib_ScriptForge.xhp
+msgctxt ""
+"lib_ScriptForge.xhp\n"
+"par_id131613838825831\n"
+"help.text"
+msgid "Document Content"
+msgstr ""
+
+#. 8fZtg
+#: lib_ScriptForge.xhp
+msgctxt ""
+"lib_ScriptForge.xhp\n"
+"par_id131613947858931\n"
+"help.text"
+msgid "User Interface"
+msgstr ""
+
+#. dAomL
+#: lib_ScriptForge.xhp
+msgctxt ""
+"lib_ScriptForge.xhp\n"
+"par_id131613866258931\n"
+"help.text"
+msgid "Utilities"
+msgstr ""
+
+#. 6gvZc
+#: lib_ScriptForge.xhp
+msgctxt ""
+"lib_ScriptForge.xhp\n"
+"par_id331608220104798\n"
+"help.text"
+msgid "<emph>Note:</emph> Other <literal>ScriptForge</literal> undescribed modules are reserved for internal use. Their content is subject to change without notice."
+msgstr ""
+
+#. uzETY
+#: lib_ScriptForge.xhp
+msgctxt ""
+"lib_ScriptForge.xhp\n"
+"par_id851506659675843\n"
+"help.text"
+msgid "All <literal>ScriptForge</literal> Basic routines or identifiers that are prefixed with an underscore character \"_\" are reserved for internal use. They are not meant be used in Basic macros or Python scripts."
+msgstr ""
+
+#. p9BFG
+#: lib_depot.xhp
+msgctxt ""
+"lib_depot.xhp\n"
+"tit\n"
+"help.text"
+msgid "DEPOT Library"
+msgstr ""
+
+#. rNFGR
+#: lib_depot.xhp
+msgctxt ""
+"lib_depot.xhp\n"
+"hd_id31529004750471\n"
+"help.text"
+msgid "<variable id=\"depot_lib\"><link href=\"text/sbasic/shared/03/lib_depot.xhp\" name=\"Depot library\">The <item type=\"literal\">Depot</item> Library</link></variable>"
+msgstr ""
+
+#. Us2HT
+#: lib_euro.xhp
+msgctxt ""
+"lib_euro.xhp\n"
+"tit\n"
+"help.text"
+msgid "EURO Library"
+msgstr ""
+
+#. 5sJCA
+#: lib_euro.xhp
+msgctxt ""
+"lib_euro.xhp\n"
+"hd_id31529004750471\n"
+"help.text"
+msgid "<variable id=\"euro_lib\"><link href=\"text/sbasic/shared/03/lib_euro.xhp\" name=\"Euro library\">The <item type=\"literal\">Euro</item> Library</link></variable>"
+msgstr ""
+
+#. rH2AG
+#: lib_euro.xhp
+msgctxt ""
+"lib_euro.xhp\n"
+"bm_id231529070133574\n"
+"help.text"
+msgid "<bookmark_value>BASIC Euro library</bookmark_value>"
+msgstr ""
+
+#. 9edb6
+#: lib_euro.xhp
+msgctxt ""
+"lib_euro.xhp\n"
+"hd_id841593518085848\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. DkBkc
+#: lib_euro.xhp
+msgctxt ""
+"lib_euro.xhp\n"
+"par_id921593518140986\n"
+"help.text"
+msgid "The <emph>Euro</emph> library is used by the <emph>Euro converter…</emph> wizard."
+msgstr ""
+
+#. uAg7T
+#: lib_euro.xhp
+msgctxt ""
+"lib_euro.xhp\n"
+"par_id481593518247400\n"
+"help.text"
+msgid "Its entry points are:"
+msgstr ""
+
+#. puNwN
+#: lib_euro.xhp
+msgctxt ""
+"lib_euro.xhp\n"
+"par_id381593519742529\n"
+"help.text"
+msgid "Selecting the <emph>Euro Converter</emph> wizard loads the following libraries in memory:"
+msgstr ""
+
+#. TGAHA
+#: lib_euro.xhp
+msgctxt ""
+"lib_euro.xhp\n"
+"par_id691593519646426\n"
+"help.text"
+msgid "Basic routine name conflicts may exist when multiple Basic libraries are loaded in memory."
+msgstr ""
+
+#. 5NFbA
+#: lib_euro.xhp
+msgctxt ""
+"lib_euro.xhp\n"
+"par_id1001593520257636\n"
+"help.text"
+msgid "ImportWizard and <link href=\"text/sbasic/shared/03/lib_tools.xhp\" name=\"Tools library\">Tools</link> Basic libraries"
+msgstr ""
+
+#. JbBaB
+#: lib_euro.xhp
+msgctxt ""
+"lib_euro.xhp\n"
+"par_id251593518523704\n"
+"help.text"
+msgid "<link href=\"text/shared/autopi/01150000.xhp\" name=\"Euro Converter Wizard\">Euro Converter Wizard</link> describes what the <emph>Euro</emph> library does."
+msgstr ""
+
+#. G8mp2
+#: lib_formwizard.xhp
+msgctxt ""
+"lib_formwizard.xhp\n"
+"tit\n"
+"help.text"
+msgid "FORMWIZARD Library"
+msgstr ""
+
+#. Lehxm
+#: lib_formwizard.xhp
+msgctxt ""
+"lib_formwizard.xhp\n"
+"hd_id31529004750471\n"
+"help.text"
+msgid "<variable id=\"formwizard_lib\"><link href=\"text/sbasic/shared/03/lib_formwizard.xhp\" name=\"FormWizard library\">The <item type=\"literal\">FormWizard</item> Library</link></variable>"
+msgstr ""
+
+#. tmFTn
+#: lib_gimmicks.xhp
+msgctxt ""
+"lib_gimmicks.xhp\n"
+"tit\n"
+"help.text"
+msgid "GIMMICKS Library"
+msgstr ""
+
+#. Q67FR
+#: lib_gimmicks.xhp
+msgctxt ""
+"lib_gimmicks.xhp\n"
+"hd_id31529004750471\n"
+"help.text"
+msgid "<variable id=\"gimmicks_lib\"><link href=\"text/sbasic/shared/03/lib_gimmicks.xhp\" name=\"Gimmicks library\">The <item type=\"literal\">Gimmicks</item> Library</link></variable>"
+msgstr ""
+
+#. XD2GA
+#: lib_gimmicks.xhp
+msgctxt ""
+"lib_gimmicks.xhp\n"
+"bm_id951529070357301\n"
+"help.text"
+msgid "<bookmark_value>BASIC Gimmicks library</bookmark_value>"
+msgstr ""
+
+#. D3BJr
+#: lib_gimmicks.xhp
+msgctxt ""
+"lib_gimmicks.xhp\n"
+"hd_id841593518085848\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. ewcAB
+#: lib_gimmicks.xhp
+msgctxt ""
+"lib_gimmicks.xhp\n"
+"par_id921593518140986\n"
+"help.text"
+msgid "The <emph>Gimmicks</emph> library is used by the <emph>AutoText</emph> wizard."
+msgstr ""
+
+#. kHzUe
+#: lib_gimmicks.xhp
+msgctxt ""
+"lib_gimmicks.xhp\n"
+"par_id481593518247400\n"
+"help.text"
+msgid "Its entry points are:"
+msgstr ""
+
+#. AmCFb
+#: lib_gimmicks.xhp
+msgctxt ""
+"lib_gimmicks.xhp\n"
+"par_id381593519742529\n"
+"help.text"
+msgid "Selecting <menuitem>Tools - AutoText</menuitem> loads the following library in memory:"
+msgstr ""
+
+#. hn8Dw
+#: lib_gimmicks.xhp
+msgctxt ""
+"lib_gimmicks.xhp\n"
+"par_id691593519646426\n"
+"help.text"
+msgid "Basic routine name conflicts may exist when multiple Basic libraries are loaded in memory."
+msgstr ""
+
+#. FGEdL
+#: lib_gimmicks.xhp
+msgctxt ""
+"lib_gimmicks.xhp\n"
+"par_id1001593520257636\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03/lib_tools.xhp\" name=\"Tools library\">Tools</link> Basic library"
+msgstr ""
+
+#. 9DVHn
+#: lib_gimmicks.xhp
+msgctxt ""
+"lib_gimmicks.xhp\n"
+"par_id251593518523704\n"
+"help.text"
+msgid "<link href=\"text/swriter/guide/autotext.xhp\" name=\"Using AutoText\">Using AutoText</link> explains what the <emph>Gimmicks</emph> library does."
+msgstr ""
+
+#. EwqqW
+#: lib_importwiz.xhp
+msgctxt ""
+"lib_importwiz.xhp\n"
+"tit\n"
+"help.text"
+msgid "ImportWizard Library"
+msgstr ""
+
+#. stDZt
+#: lib_importwiz.xhp
+msgctxt ""
+"lib_importwiz.xhp\n"
+"hd_id31529004750471\n"
+"help.text"
+msgid "<variable id=\"importwiz_lib\"><link href=\"text/sbasic/shared/03/lib_importwiz.xhp\" name=\"ImportWizard library\">The <item type=\"literal\">ImportWizard</item> Library</link></variable>"
+msgstr ""
+
+#. pbesX
+#: lib_importwiz.xhp
+msgctxt ""
+"lib_importwiz.xhp\n"
+"bm_id231529070133574\n"
+"help.text"
+msgid "<bookmark_value>BASIC ImportWizard library</bookmark_value>"
+msgstr ""
+
+#. GFoap
+#: lib_importwiz.xhp
+msgctxt ""
+"lib_importwiz.xhp\n"
+"hd_id841593518085848\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. Anhsb
+#: lib_importwiz.xhp
+msgctxt ""
+"lib_importwiz.xhp\n"
+"par_id921593518140986\n"
+"help.text"
+msgid "The <emph>ImportWizard</emph> library is used by the <emph>Document Converter</emph> wizard."
+msgstr ""
+
+#. FaGZt
+#: lib_importwiz.xhp
+msgctxt ""
+"lib_importwiz.xhp\n"
+"par_id481593518247400\n"
+"help.text"
+msgid "Its entry point is:"
+msgstr ""
+
+#. foGsC
+#: lib_importwiz.xhp
+msgctxt ""
+"lib_importwiz.xhp\n"
+"par_id381593519742529\n"
+"help.text"
+msgid "Selecting the <emph>Document Converter</emph> wizard loads the following libraries in memory:"
+msgstr ""
+
+#. vV4TD
+#: lib_importwiz.xhp
+msgctxt ""
+"lib_importwiz.xhp\n"
+"par_id691593519646426\n"
+"help.text"
+msgid "Basic routine name conflicts may exist when multiple Basic libraries are loaded in memory."
+msgstr ""
+
+#. ZCH7G
+#: lib_importwiz.xhp
+msgctxt ""
+"lib_importwiz.xhp\n"
+"par_id1001593520257636\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03/lib_tools.xhp\" name=\"Tools library\">Tools</link> Basic library"
+msgstr ""
+
+#. ZT5z9
+#: lib_importwiz.xhp
+msgctxt ""
+"lib_importwiz.xhp\n"
+"par_id251593518523704\n"
+"help.text"
+msgid "<link href=\"text/shared/autopi/01130000.xhp\" name=\"Document Converter\">Document Converter</link> describes what the <emph>ImportWizard</emph> library does."
+msgstr ""
+
+#. UWzWk
+#: lib_schedule.xhp
+msgctxt ""
+"lib_schedule.xhp\n"
+"tit\n"
+"help.text"
+msgid "SCHEDULE Library"
+msgstr ""
+
+#. CBBt6
+#: lib_schedule.xhp
+msgctxt ""
+"lib_schedule.xhp\n"
+"hd_id31529004750471\n"
+"help.text"
+msgid "<variable id=\"schedule_lib\"><link href=\"text/sbasic/shared/03/lib_schedule.xhp\" name=\"Schedule library\">The <item type=\"literal\">Schedule</item> Library</link></variable>"
+msgstr ""
+
+#. CGA63
+#: lib_schedule.xhp
+msgctxt ""
+"lib_schedule.xhp\n"
+"bm_id671529070099646\n"
+"help.text"
+msgid "<bookmark_value>BASIC Schedule library</bookmark_value>"
+msgstr ""
+
+#. AMFya
+#: lib_script.xhp
+msgctxt ""
+"lib_script.xhp\n"
+"tit\n"
+"help.text"
+msgid "SCRIPTBINDINGLIBRARY Library"
+msgstr ""
+
+#. KS8Yu
+#: lib_script.xhp
+msgctxt ""
+"lib_script.xhp\n"
+"hd_id31529004750471\n"
+"help.text"
+msgid "<variable id=\"script_lib\"><link href=\"text/sbasic/shared/03/lib_script.xhp\" name=\"ScriptBindingLibrary library\">The <item type=\"literal\">ScriptBindingLibrary</item> Library</link></variable>"
+msgstr ""
+
+#. m3NsC
+#: lib_script.xhp
+msgctxt ""
+"lib_script.xhp\n"
+"bm_id851529070366056\n"
+"help.text"
+msgid "<bookmark_value>BASIC ScriptBindingLibrary library</bookmark_value>"
+msgstr ""
+
+#. Z7iSC
+#: lib_script.xhp
+msgctxt ""
+"lib_script.xhp\n"
+"hd_id841593518085848\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. nnxNN
+#: lib_script.xhp
+msgctxt ""
+"lib_script.xhp\n"
+"par_id921593518140986\n"
+"help.text"
+msgid "The <emph>ScriptBindingLibrary</emph> library only contains dialogs, it is used by <emph>Highlight</emph> %PRODUCTNAME example scripts. Its dialogs are shared by Beanshell, Java and JavaScript example scripts."
+msgstr ""
+
+#. JdxBj
+#: lib_script.xhp
+msgctxt ""
+"lib_script.xhp\n"
+"par_id381593519742529\n"
+"help.text"
+msgid "Running any <emph>Highlight</emph> example script loads the <emph>ScriptBindingLibrary</emph> library in memory."
+msgstr ""
+
+#. 9CZwi
+#: lib_script.xhp
+msgctxt ""
+"lib_script.xhp\n"
+"par_id131593538122154\n"
+"help.text"
+msgid "This library is not used by %PRODUCTNAME Basic."
+msgstr ""
+
+#. Qh7KM
+#: lib_script.xhp
+msgctxt ""
+"lib_script.xhp\n"
+"par_id251593524531077\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06130020.xhp\" name=\"Basic macro selector\">Basic macro selector</link>"
+msgstr ""
+
+#. wJqFF
+#: lib_script.xhp
+msgctxt ""
+"lib_script.xhp\n"
+"par_id721593525163663\n"
+"help.text"
+msgid "Beanshell, Java and JavaScript <link href=\"text/shared/01/06130030.xhp\" name=\"Scripts\">Scripts</link>"
+msgstr ""
+
+#. QZNvL
+#: lib_template.xhp
+msgctxt ""
+"lib_template.xhp\n"
+"tit\n"
+"help.text"
+msgid "TEMPLATE Library"
+msgstr ""
+
+#. wzLe7
+#: lib_template.xhp
+msgctxt ""
+"lib_template.xhp\n"
+"hd_id31529004750471\n"
+"help.text"
+msgid "<variable id=\"template_lib\"><link href=\"text/sbasic/shared/03/lib_template.xhp\" name=\"Template library\">The <item type=\"literal\">Template</item> Library</link></variable>"
+msgstr ""
+
+#. adfxB
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
+"tit\n"
+"help.text"
+msgid "Tools Library"
+msgstr ""
+
+#. vRB5r
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
+"hd_id31529004750471\n"
+"help.text"
+msgid "<variable id=\"tools_lib\"><link href=\"text/sbasic/shared/03/lib_tools.xhp\" name=\"Tools library\">The <item type=\"literal\">Tools</item> Library</link></variable>"
+msgstr ""
+
+#. rUPPX
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
+"bm_id491529070339774\n"
+"help.text"
+msgid "<bookmark_value>BASIC Tools library</bookmark_value>"
+msgstr ""
+
+#. DKAzk
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
+"par_id161529001339405\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03/lib_tools.xhp#debug_module\" name=\"debug module\"><item type=\"literal\">Debug</item> Module</link>"
+msgstr ""
+
+#. pFFV7
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
+"par_id41529001348561\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03/lib_tools.xhp#listbox_module\" name=\"listbox module\"><item type=\"literal\">ListBox</item> Module</link>"
+msgstr ""
+
+#. BDvVs
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
+"par_id341529001354451\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03/lib_tools.xhp#misc_module\" name=\"misc module\"><item type=\"literal\">Misc</item> Module</link>"
+msgstr ""
+
+#. 6NCFB
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
+"par_id311529001362049\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03/lib_tools.xhp#modulecontrols_module\" name=\"module controls module\"><item type=\"literal\">ModuleControls</item> Module</link>"
+msgstr ""
+
+#. YaqDd
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
+"par_id701529001368064\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03/lib_tools.xhp#strings_module\" name=\"strings module\"><item type=\"literal\">Strings</item> Module</link>"
+msgstr ""
+
+#. BjA4M
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
+"par_id251529001373426\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03/lib_tools.xhp#ucb_module\" name=\"ucb module\"><item type=\"literal\">UCB</item> Module</link>"
+msgstr ""
+
+#. ctfU3
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
+"bm_id271529062442803\n"
+"help.text"
+msgid "<bookmark_value>BASIC Tools library;Debug module</bookmark_value>"
+msgstr ""
+
+#. TKbhv
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
+"hd_id371529000826947\n"
+"help.text"
+msgid "<item type=\"literal\">Debug</item> Module"
+msgstr ""
+
+#. KBTsC
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
+"par_id441529064369519\n"
+"help.text"
+msgid "Functions and subroutines for debugging Basic macros."
+msgstr ""
+
+#. 7khGi
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
+"bm_id131529062501888\n"
+"help.text"
+msgid "<bookmark_value>BASIC Tools library;ListBox module</bookmark_value>"
+msgstr ""
+
+#. qTCF8
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
+"hd_id11529005753099\n"
+"help.text"
+msgid "<item type=\"literal\">ListBox</item> Module"
+msgstr ""
+
+#. BEjWa
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
+"par_id381529064415052\n"
+"help.text"
+msgid "Functions and subroutines for handling ListBox elements."
+msgstr ""
+
+#. LR48E
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
+"bm_id571529062538621\n"
+"help.text"
+msgid "<bookmark_value>BASIC Tools library;Misc module</bookmark_value>"
+msgstr ""
+
+#. PASgz
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
+"hd_id341529005758494\n"
+"help.text"
+msgid "<item type=\"literal\">Misc</item> Module"
+msgstr ""
+
+#. 8rET3
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
+"par_id681529064596175\n"
+"help.text"
+msgid "Miscellaneous functions and subroutines."
+msgstr ""
+
+#. 534YG
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
+"bm_id21529062611375\n"
+"help.text"
+msgid "<bookmark_value>BASIC Tools library;ModuleControl module</bookmark_value>"
+msgstr ""
+
+#. sonXm
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
+"hd_id451529005764422\n"
+"help.text"
+msgid "<item type=\"literal\">ModuleControls</item> Module"
+msgstr ""
+
+#. 3ASxZ
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
+"par_id841529064645990\n"
+"help.text"
+msgid "Functions and subroutines for module control."
+msgstr ""
+
+#. Wyk6n
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
+"par_id261558858921700\n"
+"help.text"
+msgid "Refer to <link href=\"text/sbasic/guide/show_dialog.xhp#show_dialog\" name=\"Opening a Dialog with Basic\">Opening a Dialog with Basic</link> for an example of LoadDialog function."
+msgstr ""
+
+#. fVAXC
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
+"bm_id271529062660965\n"
+"help.text"
+msgid "<bookmark_value>BASIC Tools library;Strings module</bookmark_value>"
+msgstr ""
+
+#. uFYzk
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
+"hd_id461529005770576\n"
+"help.text"
+msgid "<item type=\"literal\">Strings</item> Module"
+msgstr ""
+
+#. EbUdR
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
+"par_id631529064722315\n"
+"help.text"
+msgid "Advanced functions and subroutines for string manipulation."
+msgstr ""
+
+#. iKnBp
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
+"bm_id731529062695476\n"
+"help.text"
+msgid "<bookmark_value>BASIC Tools library;UCB module</bookmark_value>"
+msgstr ""
+
+#. VeYbp
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
+"hd_id461529005780299\n"
+"help.text"
+msgid "<item type=\"literal\">UCB</item> Module"
+msgstr ""
+
+#. K2Cvw
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
+"par_id131529064870824\n"
+"help.text"
+msgid "<emph>Universal Content Broker</emph> functions and subroutines."
+msgstr ""
+
+#. LsR47
+#: lib_wikieditor.xhp
+msgctxt ""
+"lib_wikieditor.xhp\n"
+"tit\n"
+"help.text"
+msgid "WikiEditor Library"
+msgstr ""
+
+#. QDwwy
+#: lib_wikieditor.xhp
+msgctxt ""
+"lib_wikieditor.xhp\n"
+"hd_id31529004750471\n"
+"help.text"
+msgid "<variable id=\"wikieditor_lib\"><link href=\"text/sbasic/shared/03/lib_wikieditor.xhp\" name=\"WikiEditor library\">The <item type=\"literal\">WikiEditor</item> Library</link></variable>"
+msgstr ""
+
+#. mBGxx
+#: lib_wikieditor.xhp
+msgctxt ""
+"lib_wikieditor.xhp\n"
+"bm_id231529070133574\n"
+"help.text"
+msgid "<bookmark_value>BASIC WikiEditor library</bookmark_value>"
+msgstr ""
+
+#. qGFuz
+#: lib_wikieditor.xhp
+msgctxt ""
+"lib_wikieditor.xhp\n"
+"hd_id841593518085848\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. MdATA
+#: lib_wikieditor.xhp
+msgctxt ""
+"lib_wikieditor.xhp\n"
+"par_id921593518140986\n"
+"help.text"
+msgid "The <emph>WikiEditor</emph> library only contains dialogs, it is used by <emph>Wiki Publisher</emph> bundled Java extension."
+msgstr ""
+
+#. k2E85
+#: lib_wikieditor.xhp
+msgctxt ""
+"lib_wikieditor.xhp\n"
+"par_id131593538122154\n"
+"help.text"
+msgid "This library is not used by %PRODUCTNAME Basic."
+msgstr ""
+
+#. Ns4rA
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"tit\n"
+"help.text"
+msgid "ScriptForge.Array service (SF_Array)"
+msgstr ""
+
+#. 5rg28
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"bm_id281613039222756\n"
+"help.text"
+msgid "<bookmark_value>Array service</bookmark_value>"
+msgstr ""
+
+#. DryH9
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"bm_id781582391760253\n"
+"help.text"
+msgid "<variable id=\"ArrayService\"><link href=\"text/sbasic/shared/03/sf_array.xhp\" name=\"ScriptForge.Array Service\"><literal>ScriptForge</literal>.<literal>Array</literal> service</link></variable>"
+msgstr ""
+
+#. jMjFA
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id991582454416549\n"
+"help.text"
+msgid "Provides a collection of methods for manipulating and transforming arrays of one dimension (vectors) and arrays of two dimensions (matrices). This includes set operations, sorting, importing from and exporting to text files."
+msgstr ""
+
+#. WjgHr
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id681609955015503\n"
+"help.text"
+msgid "Arrays with more than two dimensions cannot be used with the methods in this service, the only exception being the <literal>CountDims</literal> method that accepts Arrays with any number of dimensions."
+msgstr ""
+
+#. CL5tT
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id651582454426538\n"
+"help.text"
+msgid "Array items may contain any type of value, including (sub)arrays."
+msgstr ""
+
+#. hdC3J
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"hd_id981586595097630\n"
+"help.text"
+msgid "Service invocation"
+msgstr ""
+
+#. CPbHQ
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id141609955500101\n"
+"help.text"
+msgid "Before using the <literal>Array</literal> service the <literal>ScriptForge</literal> library needs to be loaded using:"
+msgstr ""
+
+#. FDqCD
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id461609955633383\n"
+"help.text"
+msgid "Loading the library will create the <literal>SF_Array</literal> object that can be used to call the methods in the <literal>Array</literal> service."
+msgstr ""
+
+#. AAdGG
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id63158659509728\n"
+"help.text"
+msgid "The following code snippets show the various ways to call methods in the <literal>Array</literal> service (the <literal>Append</literal> method is used as an example):"
+msgstr ""
+
+#. PZxWC
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id571609956486468\n"
+"help.text"
+msgid "Because Python has built-in list and tuple support, most of the methods in the <literal>Array</literal> service are available for Basic scripts only. The only exception is <literal>ImportFromCSVFile</literal> which is supported in both Basic and Python."
+msgstr ""
+
+#. SFTcE
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id651606319520519\n"
+"help.text"
+msgid "List of Methods in the Array Service"
+msgstr ""
+
+#. qDYGe
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id191582454485250\n"
+"help.text"
+msgid "The first argument of most methods is the array object to be considered. It is always passed by reference and left unchanged. Methods such as Append, Prepend, etc return a new array object after their execution."
+msgstr ""
+
+#. n84zh
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id931582548992953\n"
+"help.text"
+msgid "Appends the items listed as arguments to the end of the input array."
+msgstr ""
+
+#. 2keb6
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id471582548992953\n"
+"help.text"
+msgid "<emph>array_1d</emph>: The pre-existing array, may be empty."
+msgstr ""
+
+#. WaggZ
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id531582548992953\n"
+"help.text"
+msgid "<emph>arg0, arg1, ...</emph>: Items that will be appended to <literal>array_1d</literal>."
+msgstr ""
+
+#. SkBjv
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id241582549679173\n"
+"help.text"
+msgid "Appends a new column to the right side of a two dimensional array. The resulting array has the same lower bounds as the initial two dimensional array."
+msgstr ""
+
+#. dCSCb
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id461582549679175\n"
+"help.text"
+msgid "<emph>array_2d</emph>: The pre-existing array, may be empty. If that array has only one dimension, it is considered as the first column of the resulting two-dimensional array."
+msgstr ""
+
+#. NLrB4
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id991582549679175\n"
+"help.text"
+msgid "<emph>column</emph>: A 1-dimensional array with as many items as there are rows in <literal>array_2d</literal>."
+msgstr ""
+
+#. KDB9L
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id941582551396374\n"
+"help.text"
+msgid "Append to the bottom of a two dimension array a new row. The resulting array has the same lower bounds as the initial two dimension array."
+msgstr ""
+
+#. HEpVM
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id631582551461984\n"
+"help.text"
+msgid "<emph>array_2d</emph>: The pre-existing array, may be empty. If that array has 1 dimension, it is considered as the first row of the resulting 2 dimension array."
+msgstr ""
+
+#. SZZEA
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id101582551483685\n"
+"help.text"
+msgid "<emph>row</emph>: A 1-dimensional array with as many items as there are columns in <literal>array_2d</literal>."
+msgstr ""
+
+#. aM65P
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id391582552517870\n"
+"help.text"
+msgid "Check if a one dimension array contains a certain number, text or date. Text comparison can be case-sensitive or not. <br/>Sorted input arrays must be filled homogeneously, meaning all items must be scalars of the same type (<literal>Empty</literal> and <literal>Null</literal> items are forbidden). <br/>The result of the method is unpredictable when the array is announced as sorted and is in reality not. <br/>A binary search is done when the array is sorted, otherwise, it is simply scanned from top to bottom and <literal>Empty</literal> and <literal>Null</literal> items are ignored."
+msgstr ""
+
+#. CuUGw
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id451582552517871\n"
+"help.text"
+msgid "<emph>array_1d</emph>: The array to scan."
+msgstr ""
+
+#. WZiqW
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id221582552517872\n"
+"help.text"
+msgid "<emph>tofind</emph>: A number, a date or a string to find."
+msgstr ""
+
+#. jFfok
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id981582552517872\n"
+"help.text"
+msgid "<emph>casesensitive</emph>: Only for string comparisons (Default = <literal>False</literal>)."
+msgstr ""
+
+#. 5ARWv
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id641582553128490\n"
+"help.text"
+msgid "<emph>sortorder</emph>: It can be either \"ASC\", \"DESC\" or \"\" (not sorted). The default value is \"\"."
+msgstr ""
+
+#. HVqG3
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id71582557214489\n"
+"help.text"
+msgid "Store the content of a 2-columns array into a <link href=\"text/sbasic/shared/03/sf_dictionary.xhp\" name=\"dictionary\">ScriptForge.Dictionary</link> object. <br/>The key will be extracted from the first column, the item from the second."
+msgstr ""
+
+#. AdhMA
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id561582557214489\n"
+"help.text"
+msgid "<emph>array_2d</emph>: Data to be converted into a <literal>ScriptForge.Dictionary</literal> object."
+msgstr ""
+
+#. 9B9aE
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id781626977460310\n"
+"help.text"
+msgid "The first column must contain exclusively strings with a length greater than zero, in any order. These values will be used as labels in the dictionary."
+msgstr ""
+
+#. GYEkD
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id511626977461127\n"
+"help.text"
+msgid "The second column contains the data that will be associated to the corresponding label in the dictionary."
+msgstr ""
+
+#. bGXKd
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id571627154604275\n"
+"help.text"
+msgid "Creates a copy of a 1D or 2D array."
+msgstr ""
+
+#. EYuiH
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id191627155816815\n"
+"help.text"
+msgid "<emph>array_nd</emph>: The 1D or 2D array to be copied."
+msgstr ""
+
+#. 76Guf
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id451627155478940\n"
+"help.text"
+msgid "A simple assignment of an <literal>Array</literal> object will copy its reference instead of creating a copy of the object's contents. See the example below:"
+msgstr ""
+
+#. B2KZj
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"bas_id801627155939671\n"
+"help.text"
+msgid "' The assignment below is made by reference"
+msgstr ""
+
+#. SoKPK
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"bas_id291627156013810\n"
+"help.text"
+msgid "' Hence changing values in \"b\" will also change \"a\""
+msgstr ""
+
+#. 6NbNZ
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id701627155874259\n"
+"help.text"
+msgid "By using the <literal>Copy</literal> method, a copy of the whole <literal>Array</literal> object is made. In the example below, <literal>a</literal> and <literal>b</literal> are different objects and changing values in <literal>b</literal> will not affect values in <literal>a</literal>."
+msgstr ""
+
+#. UycBx
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"bas_id141627156152196\n"
+"help.text"
+msgid "' Creates a copy of \"a\" using the \"Copy\" method"
+msgstr ""
+
+#. bYzRV
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id671582558126025\n"
+"help.text"
+msgid "Count the number of dimensions of an array. The result can be greater than two. <br/>If the argument is not an array, returns -1 <br/>If the array is not initialized, returns 0."
+msgstr ""
+
+#. xbtFE
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id771582558126027\n"
+"help.text"
+msgid "<emph>array_nd</emph>: The array to examine."
+msgstr ""
+
+#. n2AxD
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id91582558644287\n"
+"help.text"
+msgid "Build a set, as a zero-based array, by applying the difference operator on the two input arrays. Resulting items originate from the first array and not from the second. <br/>The resulting array is sorted in ascending order. <br/>Both input arrays must be filled homogeneously, their items must be scalars of the same type. <literal>Empty</literal> and <literal>Null</literal> items are forbidden. <br/>Text comparison can be case sensitive or not."
+msgstr ""
+
+#. FTb9n
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id271582558644287\n"
+"help.text"
+msgid "<emph>array1_1d</emph>: A 1-dimensional reference array, whose items are examined for removal."
+msgstr ""
+
+#. JXqBK
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id141582558644287\n"
+"help.text"
+msgid "<emph>array2_1d</emph>: A 1-dimensional array, whose items are subtracted from the first input array."
+msgstr ""
+
+#. jK4zC
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id291582559651473\n"
+"help.text"
+msgid "<emph>casesensitive</emph>: This argument is only applicable if the arrays are populated with strings (Default = <literal>False</literal>)."
+msgstr ""
+
+#. mzRus
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id941586179707156\n"
+"help.text"
+msgid "Write all items of the array sequentially to a text file. If the file exists already, it will be overwritten without warning."
+msgstr ""
+
+#. 9mNLT
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id100158617970719\n"
+"help.text"
+msgid "<emph>array_1d</emph>: The array to export. It must contain only strings."
+msgstr ""
+
+#. kXJDE
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id101586179707232\n"
+"help.text"
+msgid "<emph>filename</emph>: The name of the text file where the data will be written to. The name must be expressed according to the current <literal>FileNaming</literal> property of the <literal>SF_FileSystem</literal> service."
+msgstr ""
+
+#. fAeZV
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id70158617970791\n"
+"help.text"
+msgid "<emph>encoding</emph>: The character set that should be used. Use one of the names listed in <link href=\"https://www.iana.org/assignments/character-sets/character-sets.xhtml\" name=\"IANA character sets\">IANA character sets</link>. Note that %PRODUCTNAME may not implement all existing character sets (Default is \"UTF-8\")."
+msgstr ""
+
+#. TtHbe
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id171582560281082\n"
+"help.text"
+msgid "Extract from a two dimension array a specific column as a new array. <br/>Its lower <literal>LBound</literal> and upper <literal>UBound</literal> boundaries are identical to that of the first dimension of the input array."
+msgstr ""
+
+#. j2CVW
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id301582560281083\n"
+"help.text"
+msgid "<emph>array_2d</emph>: The array from which to extract."
+msgstr ""
+
+#. QDqrA
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id421582560281084\n"
+"help.text"
+msgid "<emph>columnindex</emph>: The column number to extract - must be in the interval <literal>[LBound, UBound]</literal>."
+msgstr ""
+
+#. AJxYE
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"bas_id861609975902708\n"
+"help.text"
+msgid "'Creates a 3x3 matrix: |1, 2, 3|"
+msgstr ""
+
+#. uZD8U
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"bas_id431609976009994\n"
+"help.text"
+msgid "'Extracts the third column: |3, 6, 9|"
+msgstr ""
+
+#. is3Zq
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id211582561467219\n"
+"help.text"
+msgid "Extract from a two dimension array a specific row as a new array. <br/>Its lower <literal>LBound</literal> and upper <literal>UBound</literal> boundaries are identical to that of the second dimension of the input array."
+msgstr ""
+
+#. VCBJA
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id911582561542889\n"
+"help.text"
+msgid "<emph>array_2d</emph>: The array from which to extract."
+msgstr ""
+
+#. MjXTV
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id441582561551202\n"
+"help.text"
+msgid "<emph>rowindex</emph>: The row number to extract - must be in the interval <literal>[LBound, UBound]</literal>."
+msgstr ""
+
+#. AajEu
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"bas_id301582561604167\n"
+"help.text"
+msgid "'Creates a 3x3 matrix: |1, 2, 3|"
+msgstr ""
+
+#. txoEC
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"bas_id431609976648017\n"
+"help.text"
+msgid "'Extracts the first row: |1, 2, 3|"
+msgstr ""
+
+#. nGy3S
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id431585757822181\n"
+"help.text"
+msgid "Stack all single items of an array and all items in its subarrays into one new array without subarrays. Empty subarrays are ignored and subarrays with a number of dimensions greater than one are not flattened."
+msgstr ""
+
+#. CNFGJ
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id431585757822869\n"
+"help.text"
+msgid "<emph>array_1d</emph>: The pre-existing array, may be empty."
+msgstr ""
+
+#. DDwn4
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id291610040786530\n"
+"help.text"
+msgid "You can use the <literal>Flatten</literal> method along with other methods such as <literal>Append</literal> or <literal>Prepend</literal> to concatenate a set of 1D arrays into a single 1D array."
+msgstr ""
+
+#. XE4hJ
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id941610040961148\n"
+"help.text"
+msgid "Next is an example of how the methods <literal>Flatten</literal> and <literal>Append</literal> can be combined to concatenate three arrays."
+msgstr ""
+
+#. FyJQi
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"bas_id841610041372527\n"
+"help.text"
+msgid "'Creates three arrays for this example"
+msgstr ""
+
+#. WvdEp
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"bas_id171610041440657\n"
+"help.text"
+msgid "'Concatenates the three arrays into a single 1D array"
+msgstr ""
+
+#. 3Gm5m
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id611585561482373\n"
+"help.text"
+msgid "Import the data contained in a comma-separated values (CSV) file. The comma may be replaced by any character."
+msgstr ""
+
+#. Fft9z
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id41585562158392\n"
+"help.text"
+msgid "The applicable CSV format is described in <link href=\"https://tools.ietf.org/html/rfc4180\" name=\"CSV formats\">IETF Common Format and MIME Type for CSV Files</link>."
+msgstr ""
+
+#. PT3Pq
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id641585562341028\n"
+"help.text"
+msgid "Each line in the file contains a full record (line splitting is not allowed). <br/>However sequences like <literal>\\n</literal>, <literal>\\t</literal>, ... are left unchanged. Use <literal>SF_String</literal>.Unescape() method to manage them."
+msgstr ""
+
+#. dCYB3
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id231585562475026\n"
+"help.text"
+msgid "The method returns a two dimension array whose rows correspond to a single record read in the file and whose columns correspond to a field of the record. No check is made about the coherence of the field types across columns. A best guess will be made to identify numeric and date types."
+msgstr ""
+
+#. FMKSo
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id101585562548245\n"
+"help.text"
+msgid "If a line contains less or more fields than the first line in the file, an exception will be raised. Empty lines however are simply ignored. If the size of the file exceeds the number of items limit (see inside the code), a warning is raised and the array is truncated."
+msgstr ""
+
+#. zGf5A
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id441585561482121\n"
+"help.text"
+msgid "<emph>filename</emph>: The name of the text file containing the data. The name must be expressed according to the current <literal>FileNaming</literal> property of the <literal>SF_FileSystem</literal> service."
+msgstr ""
+
+#. SBuiC
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id251585561482929\n"
+"help.text"
+msgid "<emph>delimiter</emph>: A single character, usually, a comma, a semicolon or a TAB character (Default = \",\")."
+msgstr ""
+
+#. Ehoz6
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id631585563491559\n"
+"help.text"
+msgid "<emph>dateformat</emph>: A special mechanism handles dates when <literal>dateformat</literal> is either \"YYYY-MM-DD\", \"DD-MM-YYYY\" or \"MM-DD-YYYY\". The dash (-) may be replaced by a dot (.), a slash (/) or a space. Other date formats will be ignored. Dates defaulting to an empty string \"\" are considered as normal text."
+msgstr ""
+
+#. oj4Th
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id61585564516409\n"
+"help.text"
+msgid "Consider the CSV file \"myFile.csv\" with the following contents:"
+msgstr ""
+
+#. T6E8L
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id281626980354105\n"
+"help.text"
+msgid "<input>Name,DateOfBirth,Address,City</input>"
+msgstr ""
+
+#. FRZKB
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id301626980648833\n"
+"help.text"
+msgid "<input>Anna,2002/03/31,\"Rue de l'église, 21\",Toulouse</input>"
+msgstr ""
+
+#. g2r8f
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id881626980658900\n"
+"help.text"
+msgid "<input>Fred,1998/05/04,\"Rue Albert Einstein, 113A\",Carcassonne</input>"
+msgstr ""
+
+#. xNCNA
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id181626979812772\n"
+"help.text"
+msgid "The examples below in Basic and Python read the contents of the CSV file into an <literal>Array</literal> object."
+msgstr ""
+
+#. F4yYB
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"bas_id531585561482408\n"
+"help.text"
+msgid "arr = SF_Array.ImportFromCSVFile(\"C:\\Temp\\myFile.csv\", DateFormat := \"YYYY/MM/DD\")"
+msgstr ""
+
+#. wyEqv
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"bas_id621585561482783\n"
+"help.text"
+msgid "MsgBox arr(0, 3) ' City"
+msgstr ""
+
+#. tDMNL
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"bas_id21585564425349\n"
+"help.text"
+msgid "MsgBox arr(1, 2) ' Rue de l'église, 21"
+msgstr ""
+
+#. SBfVW
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"bas_id831585564433851\n"
+"help.text"
+msgid "MsgBox arr(1, 3) ' Toulouse"
+msgstr ""
+
+#. DpxfS
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"pyc_id511626979992999\n"
+"help.text"
+msgid "arr = svc.ImportFromCSVFile(r\"C:\\Temp\\myFile.csv\", dateformat = \"YYYY/MM/DD\")"
+msgstr ""
+
+#. asqiD
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"pyc_id211626979993191\n"
+"help.text"
+msgid "bas.MsgBox(arr[0][3]) # City"
+msgstr ""
+
+#. 2gFXA
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"pyc_id671626979993408\n"
+"help.text"
+msgid "bas.MsgBox(arr[1][2]) # Rue de l'église, 21"
+msgstr ""
+
+#. kYfmG
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"pyc_id481626979993648\n"
+"help.text"
+msgid "bas.MsgBox(arr[1][3]) # Toulouse"
+msgstr ""
+
+#. xCx7D
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id211582562721860\n"
+"help.text"
+msgid "Look in a one dimension array for a number, a string or a date. Text comparison can be case-sensitive or not. <br/>If the array is sorted it must be filled homogeneously, which means that all items must be scalars of the same type (<literal>Empty</literal> and <literal>Null</literal> items are forbidden). <br/>The result of the method is unpredictable when the array is announced as sorted and actually is not. <br/>A binary search is performed on sorted arrays. Otherwise, arrays are simply scanned from top to bottom and <literal>Empty</literal> and <literal>Null</literal> items are ignored. <br/> <br/>The method returns <literal>LBound(input array) - 1</literal> if the search was not successful."
+msgstr ""
+
+#. Bm5Um
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id315825627687760\n"
+"help.text"
+msgid "<emph>array_1d</emph>: The array to scan."
+msgstr ""
+
+#. B5FFj
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id511582562775516\n"
+"help.text"
+msgid "<emph>tofind</emph>: A number, a date or a string to find."
+msgstr ""
+
+#. i4XQT
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id311582562787187\n"
+"help.text"
+msgid "<emph>casesensitive</emph>: Only for string comparisons (Default = <literal>False</literal>)."
+msgstr ""
+
+#. gd5ZZ
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id421582562794501\n"
+"help.text"
+msgid "<emph>sortorder</emph>: It can be either \"ASC\", \"DESC\" or \"\" (not sorted). The default value is \"\"."
+msgstr ""
+
+#. AWJHj
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id911582626951109\n"
+"help.text"
+msgid "Insert before a given index of the input array the items listed as arguments. <br/>Arguments are inserted blindly. Each of them might be either a scalar of any type or a subarray."
+msgstr ""
+
+#. FwHz6
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id251582626951111\n"
+"help.text"
+msgid "<emph>array_1d</emph>: The pre-existing array, may be empty."
+msgstr ""
+
+#. zEACt
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id361582626951111\n"
+"help.text"
+msgid "<emph>before</emph>: The index before which to insert; must be in the interval <literal>[LBound, UBound + 1]</literal>."
+msgstr ""
+
+#. iYFC5
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id41582626951111\n"
+"help.text"
+msgid "<emph>arg0, arg1, ...</emph>: Items that will be inserted into <literal>array_1d</literal>."
+msgstr ""
+
+#. rA4FE
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id441582627664147\n"
+"help.text"
+msgid "Inserts into a sorted array a new item on its place. <br/>The array must be filled homogeneously, meaning that all items must be scalars of the same type. <br/><literal>Empty</literal> and <literal>Null</literal> items are forbidden."
+msgstr ""
+
+#. jBpdF
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id121582627664147\n"
+"help.text"
+msgid "<emph>array_1d</emph>: The array into which the value will be inserted."
+msgstr ""
+
+#. 36fZG
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id315826276641480\n"
+"help.text"
+msgid "<emph>item</emph>: The scalar value to insert, of the same type as the existing array items."
+msgstr ""
+
+#. dHYTn
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id415826279771170\n"
+"help.text"
+msgid "<emph>sortorder</emph>: It can be either \"ASC\" (default) or \"DESC\"."
+msgstr ""
+
+#. TJanG
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id701582627970037\n"
+"help.text"
+msgid "<emph>casesensitive</emph>: Only for string comparisons (Default = <literal>False</literal>)."
+msgstr ""
+
+#. t9UFn
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id71582629177169\n"
+"help.text"
+msgid "Build a set, as a zero-based array, by applying the intersection set operator on the two input arrays. Resulting items are contained in both arrays. <br/>The resulting array is sorted in ascending order. <br/>Both input arrays must be filled homogeneously, in other words all items must be scalars of the same type. <literal>Empty</literal> and <literal>Null</literal> items are forbidden. <br/>Text comparison can be case sensitive or not."
+msgstr ""
+
+#. vCyDN
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id881582629216169\n"
+"help.text"
+msgid "<emph>array1_1d</emph>: The first input array."
+msgstr ""
+
+#. NhXEb
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id191582629223038\n"
+"help.text"
+msgid "<emph>array2_1d</emph>: The second input array."
+msgstr ""
+
+#. Dx32U
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id71582629230275\n"
+"help.text"
+msgid "<emph>casesensitive</emph>: Applies to arrays populated with text items (Default = <literal>False</literal>)."
+msgstr ""
+
+#. cirZm
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id431583064481679\n"
+"help.text"
+msgid "Join a two-dimensional array with two delimiters, one for the columns, one for the rows."
+msgstr ""
+
+#. 8xwfF
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id821583064481534\n"
+"help.text"
+msgid "<emph>array_2d</emph>: Each item must be either text, a number, a date or a boolean. <br/>Dates are transformed into the YYYY-MM-DD hh:mm:ss format. <br/>Invalid items are replaced by a zero-length string."
+msgstr ""
+
+#. TiqUm
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id171583066989446\n"
+"help.text"
+msgid "<emph>columndelimiter</emph>: Delimits each column (default = Tab/Chr(9))."
+msgstr ""
+
+#. WG5wm
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id431583067008842\n"
+"help.text"
+msgid "<emph>rowdelimiter</emph>: Delimits each row (default = LineFeed/Chr(10))"
+msgstr ""
+
+#. VrBJV
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id541583067456273\n"
+"help.text"
+msgid "<emph>quote</emph>: If <literal>True</literal>, protect strings with double quotes. The default is <literal>False</literal>."
+msgstr ""
+
+#. CEE7o
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id731582630075045\n"
+"help.text"
+msgid "Prepend at the beginning of the input array the items listed as arguments."
+msgstr ""
+
+#. HSbWh
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id321582630107068\n"
+"help.text"
+msgid "<emph>array_1d</emph>: The pre-existing array, may be empty."
+msgstr ""
+
+#. jszVE
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id915826301138550\n"
+"help.text"
+msgid "<emph>arg0, arg1, ...</emph>: A list of items to prepend to <literal>array_1d</literal>."
+msgstr ""
+
+#. BokfB
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id91582643223166\n"
+"help.text"
+msgid "Prepend to the left side of a two dimension array a new column. The resulting array has the same lower boundaries as the initial two dimension array."
+msgstr ""
+
+#. iBqEm
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id621582643223545\n"
+"help.text"
+msgid "<emph>array_2d</emph>: The pre-existing array, may be empty. If that array has 1 dimension, it is considered as the last column of the resulting 2 dimension array."
+msgstr ""
+
+#. aKJwC
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id381582643223870\n"
+"help.text"
+msgid "<emph>column</emph>: A 1-dimensional array with as many items as there are rows in <literal>array_2d</literal>."
+msgstr ""
+
+#. vsPSG
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id851582643611291\n"
+"help.text"
+msgid "Prepend a new row at the beginning of a 2-dimensional array. The resulting array has the same lower boundaries as the initial 2-dimensional array."
+msgstr ""
+
+#. g2LFC
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id991582643611645\n"
+"help.text"
+msgid "<emph>array_2d</emph>: The pre-existing array, may be empty. If that array has 1 dimension, it is considered as the last row of the resulting 2-dimensional array."
+msgstr ""
+
+#. RiLGr
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id321582643611415\n"
+"help.text"
+msgid "<emph>row</emph>: A 1-dimensional array containing as many items as there are columns in <literal>array_2d</literal>."
+msgstr ""
+
+#. WmxAd
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id441582648204012\n"
+"help.text"
+msgid "Initialize a new zero-based array with numeric values."
+msgstr ""
+
+#. EVXVL
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id591582648204013\n"
+"help.text"
+msgid "<emph>from</emph>: Value of the first item."
+msgstr ""
+
+#. ciMBJ
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id31582648204013\n"
+"help.text"
+msgid "<emph>upto</emph>: The last item should not exceed <literal>UpTo</literal>."
+msgstr ""
+
+#. 2QZtd
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id581582648204014\n"
+"help.text"
+msgid "<emph>bystep</emph>: The difference between two successive items (Default = 1)."
+msgstr ""
+
+#. SbVGG
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id451582648806764\n"
+"help.text"
+msgid "Return the reversed one dimension input array."
+msgstr ""
+
+#. dG6d8
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id31582648806765\n"
+"help.text"
+msgid "<emph>array_1d</emph>: The array to reverse."
+msgstr ""
+
+#. tkEUv
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id151582649200088\n"
+"help.text"
+msgid "Returns a random permutation of a one-dimensional array."
+msgstr ""
+
+#. xFwWY
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id11582649200088\n"
+"help.text"
+msgid "<emph>array_1d</emph>: The array to shuffle."
+msgstr ""
+
+#. BvV5v
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"bas_id611582649200089\n"
+"help.text"
+msgid "' Array \"a\" is now in random order, f.i. (2, 3, 1, 4)"
+msgstr ""
+
+#. GhFBG
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id111586184185502\n"
+"help.text"
+msgid "Returns a subset of a one-dimensional array."
+msgstr ""
+
+#. YeRkh
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id201586184185438\n"
+"help.text"
+msgid "<emph>array_1d</emph>: The array to slice."
+msgstr ""
+
+#. UzHmT
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id921586184482370\n"
+"help.text"
+msgid "<emph>from</emph>: The lower index in <literal>array_1d</literal> of the subarray to extract (<literal>from</literal> included)"
+msgstr ""
+
+#. 326GB
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id211586184471488\n"
+"help.text"
+msgid "<emph>upto</emph>: The upper index in <literal>array_1d</literal> of the subarray to extract (<literal>upto</literal> included). The default value is the upper bound of <literal>array_1d</literal>. If <literal>upto</literal> < <literal>from</literal> then the returned array is empty."
+msgstr ""
+
+#. oBwcF
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id171582649483675\n"
+"help.text"
+msgid "Sort a one dimension array in ascending or descending order. Text comparisons can be case-sensitive or not. <br/>The array must be filled homogeneously, which means that items must be scalars of the same type. <br/><literal>Empty</literal> and <literal>Null</literal> items are allowed. Conventionally <literal>Empty</literal> < <literal>Null</literal> < any other scalar value."
+msgstr ""
+
+#. eNuB8
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id71158264948346\n"
+"help.text"
+msgid "<emph>array_1d</emph>: The array to sort."
+msgstr ""
+
+#. 7S2Bq
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id21582649483175\n"
+"help.text"
+msgid "<emph>sortorder</emph>: It can be either \"ASC\" (default) or \"DESC\"."
+msgstr ""
+
+#. K4GrR
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id301582649483187\n"
+"help.text"
+msgid "<emph>casesensitive</emph>: Only for string comparisons (Default = <literal>False</literal>)."
+msgstr ""
+
+#. 6CkrZ
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id801582650186957\n"
+"help.text"
+msgid "Return a permutation of the columns of a two dimension array, sorted on the values of a given row. <br/>The row must be filled homogeneously, which means that all items must be scalars of the same type. <br/><literal>Empty</literal> and <literal>Null</literal> items are allowed. Conventionally <literal>Empty</literal> < <literal>Null</literal> < any other scalar value."
+msgstr ""
+
+#. ww7Us
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id921582650186869\n"
+"help.text"
+msgid "<emph>array_2d</emph>: The 2-dimensional array to sort."
+msgstr ""
+
+#. GdFxm
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id311582650186221\n"
+"help.text"
+msgid "<emph>rowindex</emph>: The index of the row that will be used as reference to sort the columns."
+msgstr ""
+
+#. toBNF
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id34158265018698\n"
+"help.text"
+msgid "<emph>sortorder</emph>: It can be either \"ASC\" (default) or \"DESC\"."
+msgstr ""
+
+#. BFduL
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id91158265018699\n"
+"help.text"
+msgid "<emph>casesensitive</emph>: Only for string comparisons (Default = <literal>False</literal>)."
+msgstr ""
+
+#. 7GkBx
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id751582650954576\n"
+"help.text"
+msgid "Return a permutation of the rows of a two dimension array, sorted on the values of a given column. <br/>The column must be filled homogeneously, therefore all items must be scalars of the same type. <br/><literal>Empty</literal> and <literal>Null</literal> items are allowed. Conventionally <literal>Empty</literal> < <literal>Null</literal> < any other scalar value."
+msgstr ""
+
+#. durL8
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id621582650954370\n"
+"help.text"
+msgid "<emph>array_2d</emph>: The array to sort."
+msgstr ""
+
+#. HZqQi
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id361582650954796\n"
+"help.text"
+msgid "<emph>columnindex</emph>: The index of the column that will be used as reference to sort the rows."
+msgstr ""
+
+#. 7TDWy
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id471582650954416\n"
+"help.text"
+msgid "<emph>sortorder</emph>: It can be either \"ASC\" (default) or \"DESC\"."
+msgstr ""
+
+#. 9YDzi
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id111582650954690\n"
+"help.text"
+msgid "<emph>casesensitive</emph>: Only for string comparisons (Default = <literal>False</literal>)."
+msgstr ""
+
+#. skzGA
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id611582651575637\n"
+"help.text"
+msgid "Swaps rows and columns in a two-dimensional array."
+msgstr ""
+
+#. gcbVN
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id61582651575188\n"
+"help.text"
+msgid "<emph>array_2d</emph>: The 2-dimensional array to transpose."
+msgstr ""
+
+#. dwAVQ
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id181582652996483\n"
+"help.text"
+msgid "Remove from a one dimension array all <literal>Null</literal>, <literal>Empty</literal> and zero-length entries. <br/>String items are trimmed with %PRODUCTNAME Basic <literal>Trim()</literal> function."
+msgstr ""
+
+#. L8FQg
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id111582652996147\n"
+"help.text"
+msgid "<emph>array_1d</emph>: The array to trim."
+msgstr ""
+
+#. GAC2A
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id461582653148663\n"
+"help.text"
+msgid "Builds a set, as a zero-based array, by applying the union operator on the two input arrays. Resulting items originate from any of both arrays. <br/>The resulting array is sorted in ascending order. <br/>Both input arrays must be filled homogeneously, their items must be scalars of the same type. <literal>Empty</literal> and <literal>Null</literal> items are forbidden. <br/>Text comparison can be case sensitive or not."
+msgstr ""
+
+#. oHeQj
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id4715826531488\n"
+"help.text"
+msgid "<emph>array1_1d</emph>: The first input array."
+msgstr ""
+
+#. GJuXQ
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id51158265314898\n"
+"help.text"
+msgid "<emph>array2_1d</emph>: The second input array."
+msgstr ""
+
+#. HNhsz
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id821582653148126\n"
+"help.text"
+msgid "<emph>casesensitive</emph>: Applicable only if the arrays are populated with strings (Default = <literal>False</literal>)."
+msgstr ""
+
+#. CGMRq
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id221582653464565\n"
+"help.text"
+msgid "Build a set of unique values derived from the input array. <br/>The input array must be filled homogeneously, its items must be scalars of the same type. <literal>Empty</literal> and <literal>Null</literal> items are forbidden. <br/>Text comparison can be case sensitive or not."
+msgstr ""
+
+#. bcFGM
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id521582653464553\n"
+"help.text"
+msgid "<emph>array_1d</emph>: The input array."
+msgstr ""
+
+#. MYeE2
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id41158265346441\n"
+"help.text"
+msgid "<emph>casesensitive</emph>: Applicable only if the array is populated with strings (Default = <literal>False</literal>)."
+msgstr ""
+
+#. GAXAU
+#: sf_base.xhp
+msgctxt ""
+"sf_base.xhp\n"
+"tit\n"
+"help.text"
+msgid "SFDocuments.Base service"
+msgstr ""
+
+#. TiAmG
+#: sf_base.xhp
+msgctxt ""
+"sf_base.xhp\n"
+"bm_id781582391760253\n"
+"help.text"
+msgid "<variable id=\"ctrls_h1\"><link href=\"text/sbasic/shared/03/sf_base.xhp\" name=\"SFDocuments.Base service\"><literal>SFDocuments</literal>.<literal>Base</literal> service</link></variable>"
+msgstr ""
+
+#. 4KK8s
+#: sf_base.xhp
+msgctxt ""
+"sf_base.xhp\n"
+"par_id901619031958273\n"
+"help.text"
+msgid "The <literal>Base</literal> service provides a number of methods and properties to facilitate the management and handling of %PRODUCTNAME Base documents."
+msgstr ""
+
+#. ZxoY9
+#: sf_base.xhp
+msgctxt ""
+"sf_base.xhp\n"
+"par_id961619032060880\n"
+"help.text"
+msgid "This service is closely related to the <literal>Document</literal> service, which provides generic methods for handling %PRODUCTNAME documents, including Base documents. Hence, the <literal>Base</literal> service extends the <literal>Document</literal> service and provides additional methods that are specific for Base documents, enabling users to:"
+msgstr ""
+
+#. EK3gt
+#: sf_base.xhp
+msgctxt ""
+"sf_base.xhp\n"
+"par_id241619032289964\n"
+"help.text"
+msgid "Get access to the database contained in a Base document."
+msgstr ""
+
+#. y2wmE
+#: sf_base.xhp
+msgctxt ""
+"sf_base.xhp\n"
+"par_id291619032292829\n"
+"help.text"
+msgid "Open form documents stored in a Base document."
+msgstr ""
+
+#. cpnJ7
+#: sf_base.xhp
+msgctxt ""
+"sf_base.xhp\n"
+"par_id421619032296454\n"
+"help.text"
+msgid "Check if a form document from a Base document is currently loaded."
+msgstr ""
+
+#. myHaG
+#: sf_base.xhp
+msgctxt ""
+"sf_base.xhp\n"
+"par_id241619032941497\n"
+"help.text"
+msgid "Refer to the <link href=\"text/sbasic/shared/03/sf_document.xhp\" name=\"Document Service\"><literal>Document</literal> service</link> to learn more about methods and properties that can be used to manage %PRODUCTNAME documents."
+msgstr ""
+
+#. bGpRM
+#: sf_base.xhp
+msgctxt ""
+"sf_base.xhp\n"
+"hd_id581582885621841\n"
+"help.text"
+msgid "Service invocation"
+msgstr ""
+
+#. AvW3k
+#: sf_base.xhp
+msgctxt ""
+"sf_base.xhp\n"
+"par_id141609955500101\n"
+"help.text"
+msgid "Before using the <literal>Base</literal> service the <literal>ScriptForge</literal> library needs to be loaded or imported:"
+msgstr ""
+
+#. vi6hS
+#: sf_base.xhp
+msgctxt ""
+"sf_base.xhp\n"
+"par_id311619033224680\n"
+"help.text"
+msgid "The Base service can be invoked in a variety of ways. The code snippet below uses the method <literal>CreateBaseDocument</literal> from the <literal>UI</literal> service to create a new Base file."
+msgstr ""
+
+#. t4HPk
+#: sf_base.xhp
+msgctxt ""
+"sf_base.xhp\n"
+"par_id101619033666470\n"
+"help.text"
+msgid "Note that in all examples the object <literal>oDoc</literal> is an instance of the <literal>Base</literal> service."
+msgstr ""
+
+#. hKce4
+#: sf_base.xhp
+msgctxt ""
+"sf_base.xhp\n"
+"par_id281619033570656\n"
+"help.text"
+msgid "The <literal>Base</literal> service can also be instantiated while opening an existing Base file, as shown below:"
+msgstr ""
+
+#. noxU9
+#: sf_base.xhp
+msgctxt ""
+"sf_base.xhp\n"
+"par_id331619033713781\n"
+"help.text"
+msgid "If a Base document is already open, it is possible to instantiate the <literal>Base</literal> service directly:"
+msgstr ""
+
+#. DrqrF
+#: sf_base.xhp
+msgctxt ""
+"sf_base.xhp\n"
+"par_id871623102536956\n"
+"help.text"
+msgid "The examples above can be translated to Python as follows:"
+msgstr ""
+
+#. f8Esv
+#: sf_base.xhp
+msgctxt ""
+"sf_base.xhp\n"
+"par_id281619619980185\n"
+"help.text"
+msgid "The use of the <emph>\"SFDocuments.\"</emph> substring in the previous example is optional."
+msgstr ""
+
+#. oMw4m
+#: sf_base.xhp
+msgctxt ""
+"sf_base.xhp\n"
+"par_id451619034669263\n"
+"help.text"
+msgid "List of Methods in the Base Service"
+msgstr ""
+
+#. TvfQt
+#: sf_base.xhp
+msgctxt ""
+"sf_base.xhp\n"
+"par_id801916099743199\n"
+"help.text"
+msgid "Closes the given form document. Returns <literal>True</literal> if closure is successful."
+msgstr ""
+
+#. ycunk
+#: sf_base.xhp
+msgctxt ""
+"sf_base.xhp\n"
+"par_id941619079997810\n"
+"help.text"
+msgid "<emph>formdocument:</emph> The name of the <literal>FormDocument</literal> to be closed, as a case-sensitive string."
+msgstr ""
+
+#. aLKLw
+#: sf_base.xhp
+msgctxt ""
+"sf_base.xhp\n"
+"par_id351619100723505\n"
+"help.text"
+msgid "If form documents are organized in folders, it is necessary to include the folder name to specify the form document to be opened, as illustrated in the following examples:"
+msgstr ""
+
+#. TQCNn
+#: sf_base.xhp
+msgctxt ""
+"sf_base.xhp\n"
+"par_id481619036833610\n"
+"help.text"
+msgid "Returns an array with the full names (path/name) of all form documents in the Base document as a zero-based Array of strings."
+msgstr ""
+
+#. sECnJ
+#: sf_base.xhp
+msgctxt ""
+"sf_base.xhp\n"
+"par_id431619037334440\n"
+"help.text"
+msgid "The code snippet below prints the names of all form documents in the current Base document."
+msgstr ""
+
+#. DQb6z
+#: sf_base.xhp
+msgctxt ""
+"sf_base.xhp\n"
+"par_id921619036922844\n"
+"help.text"
+msgid "To learn more about form documents, refer to the <link href=\"text/sbasic/shared/03/sf_form.xhp\" name=\"Form service\"><literal>Form</literal> service help page</link>."
+msgstr ""
+
+#. gCGqW
+#: sf_base.xhp
+msgctxt ""
+"sf_base.xhp\n"
+"par_id191619037523467\n"
+"help.text"
+msgid "Depending on the parameters provided this method will return:"
+msgstr ""
+
+#. HqFmT
+#: sf_base.xhp
+msgctxt ""
+"sf_base.xhp\n"
+"par_id781619037575043\n"
+"help.text"
+msgid "A zero-based Array with the names of all the forms contained in a form document (if the <literal>Form</literal> argument is absent)"
+msgstr ""
+
+#. Q4Had
+#: sf_base.xhp
+msgctxt ""
+"sf_base.xhp\n"
+"par_id111619037577804\n"
+"help.text"
+msgid "A <literal>SFDocuments.Form</literal> object representing the form specified in the <literal>Form</literal> argument."
+msgstr ""
+
+#. pEtwt
+#: sf_base.xhp
+msgctxt ""
+"sf_base.xhp\n"
+"par_id861619037838260\n"
+"help.text"
+msgid "<emph>formdocument:</emph> The name of a valid form document as a case-sensitive string."
+msgstr ""
+
+#. L3csm
+#: sf_base.xhp
+msgctxt ""
+"sf_base.xhp\n"
+"par_id281619037857187\n"
+"help.text"
+msgid "<emph>form:</emph> The name or index number of the form stored in the form document. If this argument is absent, the method will return a list with the names of all forms available in the form document."
+msgstr ""
+
+#. K4nQh
+#: sf_base.xhp
+msgctxt ""
+"sf_base.xhp\n"
+"par_id921619437863617\n"
+"help.text"
+msgid "Although it is possible to use index numbers to refer to forms, this is only recommended when there is just one form in the form document. If there are two or more forms, it is preferable to use the form name instead."
+msgstr ""
+
+#. DoxrV
+#: sf_base.xhp
+msgctxt ""
+"sf_base.xhp\n"
+"par_id21623104676805\n"
+"help.text"
+msgid "The first line of the example below returns a list of all forms in the form document \"myFormDocument\". The second line returns an instance of the Form service representing the form \"myForm\"."
+msgstr ""
+
+#. 9jA9n
+#: sf_base.xhp
+msgctxt ""
+"sf_base.xhp\n"
+"par_id371619098340303\n"
+"help.text"
+msgid "Returns an instance of the <link href=\"text/sbasic/shared/03/sf_database.xhp\" name=\"Database service\"><literal>Database</literal> service</link> that allows the execution of SQL commands on the database defined and/or stored in the current Base document"
+msgstr ""
+
+#. 9Bncy
+#: sf_base.xhp
+msgctxt ""
+"sf_base.xhp\n"
+"par_id731619098073221\n"
+"help.text"
+msgid "<emph>user, password:</emph> Optional login parameters as strings. The default value for both parameters is an empty string \"\"."
+msgstr ""
+
+#. UbzRD
+#: sf_base.xhp
+msgctxt ""
+"sf_base.xhp\n"
+"bas_id631615147843278\n"
+"help.text"
+msgid "' User and password are supplied below, if needed"
+msgstr ""
+
+#. XBJVn
+#: sf_base.xhp
+msgctxt ""
+"sf_base.xhp\n"
+"bas_id921599408791887\n"
+"help.text"
+msgid "' ... Run queries, SQL statements, ..."
+msgstr ""
+
+#. eRmFK
+#: sf_base.xhp
+msgctxt ""
+"sf_base.xhp\n"
+"pyc_id351623104861223\n"
+"help.text"
+msgid "# ... Run queries, SQL statements, ..."
+msgstr ""
+
+#. mBphD
+#: sf_base.xhp
+msgctxt ""
+"sf_base.xhp\n"
+"par_id871619098478513\n"
+"help.text"
+msgid "Returns <literal>True</literal> if the specified <literal>FormDocument</literal> is currently open."
+msgstr ""
+
+#. njjFg
+#: sf_base.xhp
+msgctxt ""
+"sf_base.xhp\n"
+"par_id981619098545701\n"
+"help.text"
+msgid "<emph>formdocument:</emph> The name of a <literal>FormDocument</literal> to be checked, as a case-sensitive string."
+msgstr ""
+
+#. RS3kj
+#: sf_base.xhp
+msgctxt ""
+"sf_base.xhp\n"
+"par_id801619099743199\n"
+"help.text"
+msgid "Opens the specified <literal>FormDocument</literal> either in normal or in design mode."
+msgstr ""
+
+#. 38vtF
+#: sf_base.xhp
+msgctxt ""
+"sf_base.xhp\n"
+"par_id451619100075330\n"
+"help.text"
+msgid "If the form document is already open, it is activated without changing its mode. The method returns <literal>True</literal> if the form document could be opened."
+msgstr ""
+
+#. dUE6w
+#: sf_base.xhp
+msgctxt ""
+"sf_base.xhp\n"
+"par_id941619099797810\n"
+"help.text"
+msgid "<emph>formDocument:</emph> The name of the <literal>FormDocument</literal> to be opened, as a case-sensitive string."
+msgstr ""
+
+#. Coxpu
+#: sf_base.xhp
+msgctxt ""
+"sf_base.xhp\n"
+"par_id981619099816849\n"
+"help.text"
+msgid "<emph>designmode:</emph> If this argument is <literal>True</literal> the <literal>FormDocument</literal> will be opened in design mode."
+msgstr ""
+
+#. B29ng
+#: sf_base.xhp
+msgctxt ""
+"sf_base.xhp\n"
+"par_id251619100191992\n"
+"help.text"
+msgid "Most form documents are stored in the root of the Base document and they can be opened simply using their names, as in the example below:"
+msgstr ""
+
+#. ACLqQ
+#: sf_base.xhp
+msgctxt ""
+"sf_base.xhp\n"
+"par_id351619100327505\n"
+"help.text"
+msgid "If form documents are organized in folders, it becomes necessary to include the folder name to specify the form document to be opened, as illustrated in the following example:"
+msgstr ""
+
+#. zzgBi
+#: sf_base.xhp
+msgctxt ""
+"sf_base.xhp\n"
+"par_id156589200121138\n"
+"help.text"
+msgid "This method sends the content of the given form document to a default printer or a printer defined by the <literal>SetPrinter()</literal> method."
+msgstr ""
+
+#. oeDSX
+#: sf_base.xhp
+msgctxt ""
+"sf_base.xhp\n"
+"par_id981611169416934\n"
+"help.text"
+msgid "Returns <literal>True</literal> if the document was successfully printed."
+msgstr ""
+
+#. pwm7n
+#: sf_base.xhp
+msgctxt ""
+"sf_base.xhp\n"
+"par_id368519200121646\n"
+"help.text"
+msgid "<emph>formdocument</emph>: A valid document form name as a case-sensitive string. The form document must be open. It is activated by the method."
+msgstr ""
+
+#. nRU4K
+#: sf_base.xhp
+msgctxt ""
+"sf_base.xhp\n"
+"par_id211635436910093\n"
+"help.text"
+msgid "<emph>pages</emph>: The pages to print as a string, like in the user interface. Example: \"1-4;10;15-18\". Default is all pages."
+msgstr ""
+
+#. UxDTL
+#: sf_base.xhp
+msgctxt ""
+"sf_base.xhp\n"
+"par_id141635436912146\n"
+"help.text"
+msgid "<emph>copies</emph>: The number of copies. Default is 1."
+msgstr ""
+
+#. gDM4C
+#: sf_base.xhp
+msgctxt ""
+"sf_base.xhp\n"
+"par_id911298505147502\n"
+"help.text"
+msgid "Define the printer options for a form document. The form document must be open."
+msgstr ""
+
+#. owLwe
+#: sf_base.xhp
+msgctxt ""
+"sf_base.xhp\n"
+"par_id381651114800685\n"
+"help.text"
+msgid "Returns <literal>True</literal> when successful."
+msgstr ""
+
+#. uGA7B
+#: sf_base.xhp
+msgctxt ""
+"sf_base.xhp\n"
+"par_id961635950394507\n"
+"help.text"
+msgid "<emph>formdocument</emph>: A valid document form name as a case-sensitive string."
+msgstr ""
+
+#. 3RzkD
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"tit\n"
+"help.text"
+msgid "ScriptForge.Basic service"
+msgstr ""
+
+#. GxEht
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"hd_id731582733781114\n"
+"help.text"
+msgid "<variable id=\"BasicService\"><link href=\"text/sbasic/shared/03/sf_basic.xhp\" name=\"Basic service\"><literal>ScriptForge</literal>.<literal>Basic</literal> service</link></variable>"
+msgstr ""
+
+#. G5jAV
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id381589189355849\n"
+"help.text"
+msgid "The <literal>ScriptForge.Basic</literal> service proposes a collection of %PRODUCTNAME Basic methods to be executed in a Python context. <literal>Basic</literal> service methods reproduce the exact syntax and behaviour of Basic builtin functions."
+msgstr ""
+
+#. Bb7Br
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id591589189364267\n"
+"help.text"
+msgid "Typical example:"
+msgstr ""
+
+#. fBDsN
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"pyc_id971618493778666\n"
+"help.text"
+msgid "bas.MsgBox('Display this text in a message box from a Python script')"
+msgstr ""
+
+#. kGyCd
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id151618849022977\n"
+"help.text"
+msgid "<literal>ScriptForge</literal>.<literal>Basic</literal> service is limited to Python scripts."
+msgstr ""
+
+#. biAQa
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"hd_id581582885621841\n"
+"help.text"
+msgid "Service invocation"
+msgstr ""
+
+#. pNUsj
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id141610734722352\n"
+"help.text"
+msgid "Before using the <literal>Basic</literal> service, import the <literal>CreateScriptService()</literal> method from the <literal>scriptforge</literal> module:"
+msgstr ""
+
+#. E6SaA
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"hd_id201618922972557\n"
+"help.text"
+msgid "Properties"
+msgstr ""
+
+#. bLzCe
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id401618922991909\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. 5FcQt
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id591618922991909\n"
+"help.text"
+msgid "ReadOnly"
+msgstr ""
+
+#. N5DD5
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id211618922991909\n"
+"help.text"
+msgid "Type"
+msgstr ""
+
+#. qXwST
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id971618923022846\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. KuiAD
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id21619004009875\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. 7DG4F
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id791619004012484\n"
+"help.text"
+msgid "Values: 0, 1, 5, 4, 3"
+msgstr ""
+
+#. 8ie8B
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id201619004097755\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. DQkGQ
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id311619004099683\n"
+"help.text"
+msgid "Values: 48, 64, 32, 16<br/>"
+msgstr ""
+
+#. mCpye
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id581618922991909\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. h3hZE
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id211618923312141\n"
+"help.text"
+msgid "Values: 2, 128, 256, 512"
+msgstr ""
+
+#. kLst4
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id961618924503848\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. Tmtc2
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id871618924506654\n"
+"help.text"
+msgid "Values: 3, 2, 5, 7, 1, 4, 6<br/>Constants indicating <literal>MsgBox</literal> selected button."
+msgstr ""
+
+#. BDtqm
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id731619006254384\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. SKW53
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id711619006255184\n"
+"help.text"
+msgid "UNO<br/>object"
+msgstr ""
+
+#. AA95E
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id541619006255653\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/stardesktop.xhp\" name=\"StarDesktop\"><literal>StarDesktop</literal></link> object represents %PRODUCTNAME Start Center."
+msgstr ""
+
+#. vXq8C
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id651606319520519\n"
+"help.text"
+msgid "List of Methods in the Basic Service"
+msgstr ""
+
+#. GvjSD
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id71621894830071\n"
+"help.text"
+msgid "Converts a numeric expression or a string to a <literal>datetime</literal>.<literal>datetime</literal> Python native object."
+msgstr ""
+
+#. SVk4F
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id431621896441258\n"
+"help.text"
+msgid "This method exposes the Basic builtin function <link href=\"text/sbasic/shared/03100300.xhp\" name=\"CDate_Basic\">CDate</link> to Python scripts."
+msgstr ""
+
+#. xvPTA
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id401621896675880\n"
+"help.text"
+msgid "<emph>expression</emph>: a numeric expression or a string representing a date."
+msgstr ""
+
+#. aBGSG
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id481621950748686\n"
+"help.text"
+msgid "Converts a UNO date/time representation to a <literal>datetime.datetime</literal> Python native object."
+msgstr ""
+
+#. qhCRh
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id41621950816227\n"
+"help.text"
+msgid "<emph>unodate</emph>: A UNO date/time object of one of the following types: <literal>com.sun.star.util.DateTime</literal>, <literal>com.sun.star.util.Date</literal> or <literal>com.sun.star.util.Time</literal>"
+msgstr ""
+
+#. GQ2hL
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id281621952224847\n"
+"help.text"
+msgid "The following example creates a <literal>com.sun.star.util.DateTime</literal> object and converts it to a <literal>datetime.datetime</literal> Python object."
+msgstr ""
+
+#. JXsJN
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id741621952469980\n"
+"help.text"
+msgid "Converts a date representation into a <literal>com.sun.star.util.DateTime</literal> object."
+msgstr ""
+
+#. 7LW9r
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id511621952524000\n"
+"help.text"
+msgid "<emph>date</emph>: A Python date/time object of one of the following types: <literal>datetime.datetime</literal>, <literal>datetime.date</literal>, <literal>datetime.time</literal>, <literal>float (time.time)</literal> or <literal>time.struct_time</literal>."
+msgstr ""
+
+#. vaMxs
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id93158919969864\n"
+"help.text"
+msgid "Returns a system path file name for the given <literal>file:</literal> URL."
+msgstr ""
+
+#. L4crp
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id321618502481706\n"
+"help.text"
+msgid "<emph>url</emph>: An absolute <literal>file:</literal> URL."
+msgstr ""
+
+#. nmEbg
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id81618502493505\n"
+"help.text"
+msgid "A system path file name."
+msgstr ""
+
+#. 7YMKT
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id658519200121138\n"
+"help.text"
+msgid "Returns a <literal>file:</literal> URL for the given system path."
+msgstr ""
+
+#. ZdzNY
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id401618521015903\n"
+"help.text"
+msgid "<emph>systempath</emph>: A system file name as a string."
+msgstr ""
+
+#. BYkqo
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id61658101307414\n"
+"help.text"
+msgid "A <literal>file:</literal> URL as a string."
+msgstr ""
+
+#. kyZyo
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id651589200121138\n"
+"help.text"
+msgid "Instantiates a UNO service with the <literal>ProcessServiceManager</literal>."
+msgstr ""
+
+#. SF7gE
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id361589200121646\n"
+"help.text"
+msgid "<emph>servicename</emph>: A fully qualified service name such as <literal>com.sun.star.ui.dialogs.FilePicker</literal> or <literal>com.sun.star.sheet.FunctionAccess</literal>."
+msgstr ""
+
+#. rZoCx
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id901599410483300\n"
+"help.text"
+msgid "Adds a date or time interval to a given date/time a number of times and returns the resulting date."
+msgstr ""
+
+#. aRMEj
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id581618562143601\n"
+"help.text"
+msgid "<emph>interval</emph>: A string expression from the following table, specifying the date or time interval."
+msgstr ""
+
+#. Vx3AB
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id281618562144897\n"
+"help.text"
+msgid "<emph>number</emph>: A numerical expression specifying how often the <literal>interval</literal> value will be added when positive or subtracted when negative."
+msgstr ""
+
+#. CCveG
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id811618561843272\n"
+"help.text"
+msgid "<emph>date</emph>: A given <literal>datetime.datetime</literal> value, the <literal>interval</literal> value will be added <literal>number</literal> times to this <literal>datetime.datetime</literal> value."
+msgstr ""
+
+#. Zcf9q
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id181618561778320\n"
+"help.text"
+msgid "A <literal>datetime.datetime</literal> value."
+msgstr ""
+
+#. HAVdW
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id991589202413257\n"
+"help.text"
+msgid "Returns the number of date or time intervals between two given date/time values."
+msgstr ""
+
+#. 68XgA
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id481618563770490\n"
+"help.text"
+msgid "<emph>interval</emph>: A string expression specifying the date interval, as detailed in above <literal>DateAdd</literal> method."
+msgstr ""
+
+#. DQFt3
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id121618563772932\n"
+"help.text"
+msgid "<emph>date1</emph>, <emph>date2</emph>: The two <literal>datetime.datetime</literal> values to be compared."
+msgstr ""
+
+#. ZR7AD
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id121618563454738\n"
+"help.text"
+msgid "A number."
+msgstr ""
+
+#. K4Lp7
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id81589202925519\n"
+"help.text"
+msgid "The <literal>DatePart</literal> function returns a specified part of a date."
+msgstr ""
+
+#. vCQGJ
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id761618672192231\n"
+"help.text"
+msgid "<emph>interval</emph>: A string expression specifying the date interval, as detailed in above <literal>DateAdd</literal> method."
+msgstr ""
+
+#. KuDhD
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id61618672313838\n"
+"help.text"
+msgid "<emph>date</emph>: The date/time from which the result is calculated."
+msgstr ""
+
+#. P3vuB
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id511619445271897\n"
+"help.text"
+msgid "<emph>firstdayofweek, firstweekofyear</emph>: optional parameters that respectively specify the starting day of a week and the starting week of a year, as detailed in above <literal>DateDiff</literal> method."
+msgstr ""
+
+#. 5Yz25
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id791618672371743\n"
+"help.text"
+msgid "The extracted part for the given date/time."
+msgstr ""
+
+#. Dc9Cs
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id121589203370778\n"
+"help.text"
+msgid "Computes a date value from a date string."
+msgstr ""
+
+#. qTtuh
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id441618674018955\n"
+"help.text"
+msgid "The computed date."
+msgstr ""
+
+#. GuCbF
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id458161678389887\n"
+"help.text"
+msgid "Converts a number to a string, and then formats it according to the format that you specify."
+msgstr ""
+
+#. St67G
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"hd_id751618825527776\n"
+"help.text"
+msgid "Formatting Codes"
+msgstr ""
+
+#. G2TzF
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"hd_id681618825574599\n"
+"help.text"
+msgid "Predefined Formats"
+msgstr ""
+
+#. osJdR
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id451618876389887\n"
+"help.text"
+msgid "Returns the default context of the process service factory, if existent, else returns a null reference."
+msgstr ""
+
+#. d4EQf
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id881618848030897\n"
+"help.text"
+msgid "<literal>GetDefaultContext</literal> is an alternative to the <link href=\"text/sbasic/python/python_programming.xhp\" name=\"getComponentContext method\">getComponentContext()</link> method available from <literal>XSCRIPTCONTEXT</literal> global variable or from <link href=\"text/sbasic/python/python_programming.xhp\" name=\"uno.py module\">uno.py</link> module."
+msgstr ""
+
+#. dk35X
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id381618831451271\n"
+"help.text"
+msgid "The default component context is used, when instantiating services via <literal>XMultiServiceFactory</literal>. See the <literal>Professional UNO</literal> chapter in the Developer's Guide on <link href=\"https://api.libreoffice.org/\" name=\"API Developer's Guide\">api.libreoffice.org</link> for more information."
+msgstr ""
+
+#. LACDh
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id154618876389887\n"
+"help.text"
+msgid "Returns a numerical value that specifies the graphical user interface. This function is only provided for backward compatibility with previous versions."
+msgstr ""
+
+#. SmsEL
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id341618848532640\n"
+"help.text"
+msgid "Refer to <literal>system()</literal> method from <literal>platform</literal> Python module to <link href=\"text/sbasic/python/python_platform.xhp\" name=\"identify the operating system\">identify the operating system</link>."
+msgstr ""
+
+#. BJTbw
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id451618876389788\n"
+"help.text"
+msgid "Returns the operating system-dependent directory separator used to specify file paths."
+msgstr ""
+
+#. BWvPB
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id341618848562340\n"
+"help.text"
+msgid "Use <literal>os.pathsep</literal> from <literal>os</literal> Python module to <link href=\"text/sbasic/python/python_platform.xhp\" name=\"path delimiter\">identify the path separator</link>."
+msgstr ""
+
+#. Jvd3v
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id451618678389887\n"
+"help.text"
+msgid "Returns the number of system ticks provided by the operating system. You can use this function to optimize certain processes. Use this method to estimate time in milliseconds:"
+msgstr ""
+
+#. t3ADN
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"bm_id61618905161499\n"
+"help.text"
+msgid "<bookmark_value>Basic service;GlobalScope.BasicLibraries</bookmark_value>"
+msgstr ""
+
+#. KRHNc
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id741622396277528\n"
+"help.text"
+msgid "Returns the UNO object containing all shared Basic libraries and modules."
+msgstr ""
+
+#. MCrF8
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id911622396571584\n"
+"help.text"
+msgid "This method is the Python equivalent to <literal>GlobalScope</literal>.<literal>BasicLibraries</literal> in Basic scripts."
+msgstr ""
+
+#. DEARA
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id281622398076950\n"
+"help.text"
+msgid "The following example loads the Gimmicks Basic library if it has not been loaded yet."
+msgstr ""
+
+#. ZaDVN
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"bm_id61618905163671\n"
+"help.text"
+msgid "<bookmark_value>Basic service;GlobalScope.DialogLibraries</bookmark_value>"
+msgstr ""
+
+#. jusQK
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id381622397863419\n"
+"help.text"
+msgid "Returns the UNO object containing all shared dialog libraries."
+msgstr ""
+
+#. QEFwP
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id491622397863810\n"
+"help.text"
+msgid "This method is the Python equivalent to <literal>GlobalScope</literal>.<literal>DialogLibraries</literal> in Basic scripts."
+msgstr ""
+
+#. 8ozVo
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id811622398234384\n"
+"help.text"
+msgid "The following example shows a message box with the names of all available dialog libraries."
+msgstr ""
+
+#. Vb2CW
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"bm_id61618905164342\n"
+"help.text"
+msgid "<bookmark_value>Basic service;InputBox</bookmark_value>"
+msgstr ""
+
+#. qRtw5
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"pyc_id751619081201175\n"
+"help.text"
+msgid "txt = s.InputBox('Please enter a phrase:', \"Dear user\")"
+msgstr ""
+
+#. B2mnv
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"pyc_id261619081319555\n"
+"help.text"
+msgid "s.MsgBox(txt, s.MB_ICONINFORMATION, \"Confirmation of phrase\")"
+msgstr ""
+
+#. 42vSm
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id651618921455396\n"
+"help.text"
+msgid "For in-depth information please refer to <link href=\"https://wiki.documentfoundation.org/Macros/General/IO_to_Screen\" name=\"Input/Output to Screen with Python\">Input/Output to Screen with Python</link> on the Wiki."
+msgstr ""
+
+#. WMifG
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"bm_id681618905411293\n"
+"help.text"
+msgid "<bookmark_value>Basic service;MsgBox</bookmark_value>"
+msgstr ""
+
+#. ogocf
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id231618922407948\n"
+"help.text"
+msgid "Displays a dialog box containing a message and returns an optional value.<br/>MB_xx constants help specify the dialog type, the number and type of buttons to display, plus the icon type. By adding their respective values they form bit patterns, that define the <literal>MsgBox</literal> dialog appearance."
+msgstr ""
+
+#. 5adLA
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id711619082902143\n"
+"help.text"
+msgid "An optional integer as detailed in above <literal>IDxx</literal> properties."
+msgstr ""
+
+#. hvEhT
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"bm_id791618906935711\n"
+"help.text"
+msgid "<bookmark_value>Basic service;Now</bookmark_value>"
+msgstr ""
+
+#. f96nJ
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id191619084216660\n"
+"help.text"
+msgid "Returns the current system date and time as a <literal>datetime</literal>.<literal>datetime</literal> Python native object."
+msgstr ""
+
+#. qxE2n
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"bm_id831618907521168\n"
+"help.text"
+msgid "<bookmark_value>Basic service;RGB</bookmark_value>"
+msgstr ""
+
+#. vBVsk
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id621619448293385\n"
+"help.text"
+msgid "Returns an integer color value consisting of red, green, and blue components."
+msgstr ""
+
+#. SDu3C
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"bm_id81618907850447\n"
+"help.text"
+msgid "<bookmark_value>Basic service;ThisComponent</bookmark_value>"
+msgstr ""
+
+#. 7wnpT
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id141622840830978\n"
+"help.text"
+msgid "If the current component refers to a %PRODUCTNAME document, this method returns the UNO object representing the document."
+msgstr ""
+
+#. 72GZE
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id961622841287976\n"
+"help.text"
+msgid "The method will return <literal>None</literal> when the current component does not correspond to a document."
+msgstr ""
+
+#. xbQ6U
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"bm_id81618907858201\n"
+"help.text"
+msgid "<bookmark_value>Basic service;ThisDatabaseDocument</bookmark_value>"
+msgstr ""
+
+#. GXewr
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id271622912644859\n"
+"help.text"
+msgid "If the script is being executed from a Base document or any of its subcomponents this method returns the main component of the Base instance."
+msgstr ""
+
+#. 6MCpX
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id811622912819443\n"
+"help.text"
+msgid "This method returns <literal>None</literal> otherwise."
+msgstr ""
+
+#. q3CG8
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id201623153844931\n"
+"help.text"
+msgid "Visit the <link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1sdb_1_1OfficeDatabaseDocument.html\" name=\"OfficeDatabaseDocument\">OfficeDatabaseDocument</link> API page to learn more about Base's main component structure."
+msgstr ""
+
+#. mAUuG
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"bm_id81618907851793\n"
+"help.text"
+msgid "<bookmark_value>Basic service;Xray</bookmark_value>"
+msgstr ""
+
+#. TwoGN
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id451619094057178\n"
+"help.text"
+msgid "Inspect Uno objects or variables."
+msgstr ""
+
+#. CDCQx
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id21619094660345\n"
+"help.text"
+msgid "<emph>obj</emph>: A variable or UNO object."
+msgstr ""
+
+#. fMbAm
+#: sf_basic.xhp
+msgctxt ""
+"sf_basic.xhp\n"
+"par_id951618554355538\n"
+"help.text"
+msgid "<link href=\"https://wiki.documentfoundation.org/Macros/General/IO_to_Screen\" name=\"Input/Output to Screen with Python\">Input/Output to Screen with Python</link> on the wiki"
+msgstr ""
+
+#. RYwFj
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"tit\n"
+"help.text"
+msgid "SFDocuments.Calc service"
+msgstr ""
+
+#. nXFgM
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"hd_id731582733781114\n"
+"help.text"
+msgid "<variable id=\"CalcService\"><link href=\"text/sbasic/shared/03/sf_calc.xhp\" name=\"Calc service\"><literal>SFDocuments</literal>.<literal>Calc</literal> service</link></variable>"
+msgstr ""
+
+#. EkFAT
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id381589189355849\n"
+"help.text"
+msgid "The <literal>SFDocuments</literal> shared library provides a number of methods and properties to facilitate the management and handling of %PRODUCTNAME documents."
+msgstr ""
+
+#. CBPyB
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id351591014177269\n"
+"help.text"
+msgid "The <literal>SFDocuments.Calc</literal> service is a subclass of the <link href=\"text/sbasic/shared/03/sf_document.xhp\" name=\"SF_Document_link\"><literal>SFDocuments.Document</literal></link> service. All methods and properties defined for the <literal>Document</literal> service can also be accessed using a <literal>Calc</literal> service instance."
+msgstr ""
+
+#. 4uAEX
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id591589189364267\n"
+"help.text"
+msgid "The <literal>Calc</literal> service is focused on:"
+msgstr ""
+
+#. Gy8dD
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id891589189452545\n"
+"help.text"
+msgid "Handling sheets within a Calc document (copy, insert, move, etc)"
+msgstr ""
+
+#. SCCmJ
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id811589189463041\n"
+"help.text"
+msgid "Exchanging data between Basic data structures and Calc ranges"
+msgstr ""
+
+#. YS7kC
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id141599569935662\n"
+"help.text"
+msgid "Copying and importing massive amounts of data"
+msgstr ""
+
+#. UFCyZ
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id851638217526844\n"
+"help.text"
+msgid "This help page describes methods and properties that are applicable only to Calc documents."
+msgstr ""
+
+#. A47hJ
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"hd_id581582885621841\n"
+"help.text"
+msgid "Service invocation"
+msgstr ""
+
+#. RAtZX
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id141609955500101\n"
+"help.text"
+msgid "Before using the <literal>Calc</literal> service the <literal>ScriptForge</literal> library needs to be loaded or imported:"
+msgstr ""
+
+#. z3JcW
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id591589191059889\n"
+"help.text"
+msgid "The <literal>Calc</literal> service is closely related to the <literal>UI</literal> service of the <literal>ScriptForge</literal> library. Below are a few examples of how the <literal>Calc</literal> service can be invoked."
+msgstr ""
+
+#. mKqEu
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id551621623999947\n"
+"help.text"
+msgid "The code snippet below creates a <literal>Calc</literal> service instance that corresponds to the currently active Calc document."
+msgstr ""
+
+#. gECrc
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id341621467500466\n"
+"help.text"
+msgid "Another way to create an instance of the <literal>Calc</literal> service is using the <literal>UI</literal> service. In the following example, a new Calc document is created and <literal>oDoc</literal> is a <literal>Calc</literal> service instance:"
+msgstr ""
+
+#. x6qdq
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id921621467621019\n"
+"help.text"
+msgid "Or using the <literal>OpenDocument</literal> method from the <literal>UI</literal> service:"
+msgstr ""
+
+#. LA2sA
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id741621467697967\n"
+"help.text"
+msgid "It is also possible to instantiate the <literal>Calc</literal> service specifying a window name for the <literal>CreateScriptService</literal> method:"
+msgstr ""
+
+#. CKafD
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id271621467810774\n"
+"help.text"
+msgid "In the example above, \"MyFile.ods\" is the name of an open document window. If this argument is not provided, the active window is considered."
+msgstr ""
+
+#. ucEa2
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id551658777771853\n"
+"help.text"
+msgid "It is also possible to invoke the <literal>Calc</literal> service using the document referenced by <literal>ThisComponent</literal>. This is specially useful when running a macro from within the Basic IDE."
+msgstr ""
+
+#. gfpHw
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id71158288562139\n"
+"help.text"
+msgid "It is recommended to free resources after use:"
+msgstr ""
+
+#. 3EHn2
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id231611610666018\n"
+"help.text"
+msgid "However, if the document was closed using the <literal>CloseDocument</literal> method, it becomes unnecessary to free resources using the command described above."
+msgstr ""
+
+#. WqVjE
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id71611090922315\n"
+"help.text"
+msgid "The use of the prefix \"<literal>SFDocuments.</literal>\" while calling the service is optional."
+msgstr ""
+
+#. Cpd5a
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"hd_id991591016893982\n"
+"help.text"
+msgid "Definitions"
+msgstr ""
+
+#. 4gE5A
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id511591016999246\n"
+"help.text"
+msgid "Many methods require a \"<emph>Sheet</emph>\" or a \"<emph>Range</emph>\" as argument. Single cells are considered a special case of a <literal>Range</literal>."
+msgstr ""
+
+#. kq2Br
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id511591019278671\n"
+"help.text"
+msgid "Both may be expressed either as a string or as a reference (= object) depending on the situation:"
+msgstr ""
+
+#. du8tS
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id571591019367284\n"
+"help.text"
+msgid "Within a <emph>specific</emph> <literal>Calc</literal> <emph>instance</emph>, sheets and ranges are given as strings such as \"Sheet1\" and \"D2:F6\"."
+msgstr ""
+
+#. HGR2H
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id121591019432157\n"
+"help.text"
+msgid "Additionally, the <literal>.Sheet</literal> and <literal>.Range</literal> properties return a reference that may be used as argument of a method called from <emph>another instance</emph> of the <literal>Calc</literal> service."
+msgstr ""
+
+#. AHSav
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id421591017227464\n"
+"help.text"
+msgid "The example below copies data from document A (opened as read-only and hidden) to document B."
+msgstr ""
+
+#. iED65
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id341591020333849\n"
+"help.text"
+msgid "Either the sheet name as a <literal>string</literal> or an <literal>object</literal> produced by the <literal>.Sheet</literal> property."
+msgstr ""
+
+#. GDuU3
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id651591020343023\n"
+"help.text"
+msgid "The shortcut \"~\" (tilde) represents the current sheet."
+msgstr ""
+
+#. nskFb
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id291591020728110\n"
+"help.text"
+msgid "Either a string designating a set of contiguous cells located in a sheet of the current instance or an <literal>object</literal> produced by the <literal>.Range</literal> property."
+msgstr ""
+
+#. 6CySa
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id691591020711395\n"
+"help.text"
+msgid "The shortcut \"~\" (tilde) represents the current selection or the first selected range if multiple ranges are selected."
+msgstr ""
+
+#. 7JEat
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id701592230700986\n"
+"help.text"
+msgid "The shortcut \"*\" represents all used cells."
+msgstr ""
+
+#. C6fBT
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id641591021597701\n"
+"help.text"
+msgid "The sheet name is optional when defining a range. If no sheet name is provided, then the active sheet is used. Surrounding single quotes and $ signs are allowed but ignored."
+msgstr ""
+
+#. ebNR5
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id231655754032310\n"
+"help.text"
+msgid "When specifying a <literal>SheetName</literal> as a string, the use of single quotes to enclose the sheet name are required if the name contains blank spaces \" \" or periods \".\"."
+msgstr ""
+
+#. BsAKT
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id931655906591984\n"
+"help.text"
+msgid "The examples below illustrate in which cases the use of single quotes is mandatory:"
+msgstr ""
+
+#. DGacM
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"bas_id971655754336388\n"
+"help.text"
+msgid "' The use of single quotes is optional"
+msgstr ""
+
+#. yWFhF
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"bas_id711655754337420\n"
+"help.text"
+msgid "' The use of single quotes is required"
+msgstr ""
+
+#. GVF9g
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id371592406978640\n"
+"help.text"
+msgid "Except for the <literal>CurrentSelection</literal> property, the <literal>Calc</literal> service considers only single ranges of cells."
+msgstr ""
+
+#. vRxTa
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id91591025127496\n"
+"help.text"
+msgid "Examples of valid ranges"
+msgstr ""
+
+#. yADDC
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id481591024294524\n"
+"help.text"
+msgid "1) $'SheetX'.D2<br/>2) $D$2"
+msgstr ""
+
+#. pMZEe
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id721591024294894\n"
+"help.text"
+msgid "A single cell"
+msgstr ""
+
+#. AcGDY
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id21591024294492\n"
+"help.text"
+msgid "1) $'SheetX'.D2:F6<br/>2) D2:D10"
+msgstr ""
+
+#. P7Ete
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id9159102429464\n"
+"help.text"
+msgid "Single range with multiple cells"
+msgstr ""
+
+#. vXrSu
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id161592230749179\n"
+"help.text"
+msgid "$'SheetX'.*"
+msgstr ""
+
+#. eQu5j
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id581592230749243\n"
+"help.text"
+msgid "All used cells in the given sheet"
+msgstr ""
+
+#. C6egy
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id641591024294318\n"
+"help.text"
+msgid "1) $'SheetX'.A:A (column A)<br/>2) 3:5 (rows 3 to 5)"
+msgstr ""
+
+#. qpGBr
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id431591024294723\n"
+"help.text"
+msgid "All cells in contiguous columns or rows up to the last used cell"
+msgstr ""
+
+#. qezwg
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id871591024294202\n"
+"help.text"
+msgid "myRange"
+msgstr ""
+
+#. 97TnU
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id721591024294721\n"
+"help.text"
+msgid "A range named \"myRange\" at spreadsheet level"
+msgstr ""
+
+#. WxyY4
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id181591024294534\n"
+"help.text"
+msgid "1) ~.someRange<br/>2) SheetX.someRange"
+msgstr ""
+
+#. 9gjmL
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id911591024294816\n"
+"help.text"
+msgid "A range name at sheet level"
+msgstr ""
+
+#. Z6dKJ
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id781591024294621\n"
+"help.text"
+msgid "myDoc.Range(\"SheetX.D2:F6\")"
+msgstr ""
+
+#. ENndn
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id681591024294568\n"
+"help.text"
+msgid "A range within the sheet SheetX in file associated with the myDoc Calc instance"
+msgstr ""
+
+#. Yero3
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id101591024294151\n"
+"help.text"
+msgid "~.~ or ~"
+msgstr ""
+
+#. kmjCL
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id22159102429479\n"
+"help.text"
+msgid "The current selection in the active sheet"
+msgstr ""
+
+#. qFqGJ
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"hd_id351582885195476\n"
+"help.text"
+msgid "Properties"
+msgstr ""
+
+#. FeCia
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id151591018231905\n"
+"help.text"
+msgid "All the properties generic to any document are implicitly applicable also to Calc documents. For more information, read the <link href=\"text/sbasic/shared/03/sf_document.xhp\" name=\"Document service\">Document service Help page</link>."
+msgstr ""
+
+#. DTzRF
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id911591018242565\n"
+"help.text"
+msgid "The properties specifically available for Calc documents are:"
+msgstr ""
+
+#. G4iX6
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id41582885195836\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. PK7n2
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id31582885195372\n"
+"help.text"
+msgid "Readonly"
+msgstr ""
+
+#. oFX3A
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id221591018408168\n"
+"help.text"
+msgid "Argument"
+msgstr ""
+
+#. H9m2q
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id31582885195238\n"
+"help.text"
+msgid "Return type"
+msgstr ""
+
+#. DDSFu
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id931582885195131\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. 3MHFG
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id301592407165942\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. pJnFE
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id81592407165611\n"
+"help.text"
+msgid "None"
+msgstr ""
+
+#. UUDuD
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id59159240716522\n"
+"help.text"
+msgid "String or array of strings"
+msgstr ""
+
+#. kAAXc
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id85159240716560\n"
+"help.text"
+msgid "The single selected range as a string or the list of selected ranges as an array."
+msgstr ""
+
+#. PFB5D
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id301592407165606\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. 5GeyC
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id81592407165545\n"
+"help.text"
+msgid "SheetName or RangeName as String"
+msgstr ""
+
+#. TBHV2
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id85159240716828\n"
+"help.text"
+msgid "Returns the first used cell in a given range or sheet."
+msgstr ""
+
+#. BkCoD
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id301592407166642\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. ToQBc
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id81592407165145\n"
+"help.text"
+msgid "SheetName or RangeName as String"
+msgstr ""
+
+#. boSak
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id85159240716225\n"
+"help.text"
+msgid "Returns the leftmost column number in a given range or sheet."
+msgstr ""
+
+#. 3AKqL
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id301592407167972\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. zf3hK
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id81592407165695\n"
+"help.text"
+msgid "SheetName or RangeName as String"
+msgstr ""
+
+#. BXscD
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id85159240716128\n"
+"help.text"
+msgid "Returns the topmost row number in a given range or sheet."
+msgstr ""
+
+#. BHFeu
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id101593094953259\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. KedYU
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id741593094953790\n"
+"help.text"
+msgid "RangeName As String"
+msgstr ""
+
+#. FhLMF
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id311593094953330\n"
+"help.text"
+msgid "The number of rows (>= 1) in the given range."
+msgstr ""
+
+#. cU3Ah
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id221582885195686\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. ALJCP
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id501591018870619\n"
+"help.text"
+msgid "SheetName or RangeName as String"
+msgstr ""
+
+#. SNj7Q
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id881582885195976\n"
+"help.text"
+msgid "Returns the last used cell in a given range or sheet."
+msgstr ""
+
+#. 75PEK
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id601592315106598\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. 3h43j
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id831592315106202\n"
+"help.text"
+msgid "SheetName or RangeName as String"
+msgstr ""
+
+#. bU5vD
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id791592315106790\n"
+"help.text"
+msgid "The last used column in a given range or sheet."
+msgstr ""
+
+#. q9Bx7
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id981591025591597\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. r6diM
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id81591025591696\n"
+"help.text"
+msgid "SheetName or RangeName as String"
+msgstr ""
+
+#. SDdEC
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id421591025591509\n"
+"help.text"
+msgid "The last used row in a given range or sheet."
+msgstr ""
+
+#. 4t3He
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id81591025591672\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. 2BJKz
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id561591025591239\n"
+"help.text"
+msgid "RangeName As String"
+msgstr ""
+
+#. 2tmEj
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id571591025591367\n"
+"help.text"
+msgid "A range reference that can be used as argument of methods like <literal>CopyToRange</literal>."
+msgstr ""
+
+#. boDiE
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id81591025591007\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. kJCwG
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id561591025592149\n"
+"help.text"
+msgid "RangeName As String"
+msgstr ""
+
+#. ey2LS
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id571591025599937\n"
+"help.text"
+msgid "Returns the address of the smallest area that contains the specified range so that the area is surrounded by empty cells or sheet edges. This is equivalent to applying the <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command + *</keycode></caseinline><defaultinline><keycode>Ctrl + *</keycode></defaultinline></switchinline> shortcut to the given range."
+msgstr ""
+
+#. 66iAb
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id541591025591511\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. dWFQE
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id661591025591903\n"
+"help.text"
+msgid "SheetName As String"
+msgstr ""
+
+#. 4KoAw
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id731591025591753\n"
+"help.text"
+msgid "A sheet reference that can be used as argument of methods like <literal>CopySheet</literal>."
+msgstr ""
+
+#. WanFm
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id541591025591322\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. wRCYZ
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id661591025591188\n"
+"help.text"
+msgid "RangeName As String"
+msgstr ""
+
+#. w7Gft
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id731591025591006\n"
+"help.text"
+msgid "Returns the sheet name of a given range address."
+msgstr ""
+
+#. HLpEQ
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id581591025591579\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. V43zC
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id751591025591667\n"
+"help.text"
+msgid "None"
+msgstr ""
+
+#. B5BXR
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id861591025591250\n"
+"help.text"
+msgid "Array of strings"
+msgstr ""
+
+#. qGsms
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id491591025591370\n"
+"help.text"
+msgid "The list with the names of all existing sheets."
+msgstr ""
+
+#. EaAB2
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id711593095062771\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. PFLkD
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id311593095062171\n"
+"help.text"
+msgid "RangeName As String"
+msgstr ""
+
+#. BKFhE
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id681593095062358\n"
+"help.text"
+msgid "The number of columns (>= 1) in the given range."
+msgstr ""
+
+#. cju3B
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id391592315404944\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. DMf2S
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id1001592315404525\n"
+"help.text"
+msgid "RangeName As String"
+msgstr ""
+
+#. VaGpB
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id321592315404430\n"
+"help.text"
+msgid "A <literal>com.sun.star.Table.XCellRange</literal> UNO object."
+msgstr ""
+
+#. nAD2d
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id501592315567199\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. yNxZn
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id411592315560025\n"
+"help.text"
+msgid "RangeName As String"
+msgstr ""
+
+#. UydnH
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id41592315565185\n"
+"help.text"
+msgid "A <literal>com.sun.star.sheet.XSheetCellCursor</literal> UNO object. After moving the cursor, the resulting range address can be accessed through the <literal>AbsoluteName</literal> UNO property of the cursor object, which returns a string value that can be used as argument for properties and methods of the Calc service."
+msgstr ""
+
+#. QbTFX
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id501592315565569\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. jWLAC
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id411592315565235\n"
+"help.text"
+msgid "SheetName As String"
+msgstr ""
+
+#. cJAB7
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id41592315560095\n"
+"help.text"
+msgid "A <literal>com.sun.star.sheet.XSpreadsheet</literal> UNO object."
+msgstr ""
+
+#. hwjGf
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id321611613059105\n"
+"help.text"
+msgid "Visit %PRODUCTNAME API Documentation's website to learn more about <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1table_1_1XCellRange.html\" name=\"XCellRange API\">XCellRange</link>, <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1sheet_1_1XSheetCellCursor.html\" name=\"XSheetCellCursor API\">XSheetCellCursor</link> and <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1sheet_1_1XSpreadsheet.html\" name=\"XSpreadsheet API\">XSpreadsheet</link> UNO objects."
+msgstr ""
+
+#. V5dF8
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"hd_id501582887473754\n"
+"help.text"
+msgid "Methods"
+msgstr ""
+
+#. soCDf
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id891611613601554\n"
+"help.text"
+msgid "List of Methods in the Calc Service"
+msgstr ""
+
+#. Dis6i
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id93158919969228\n"
+"help.text"
+msgid "Returns a range address as a string based on sheet coordinates, i.e. row and column numbers."
+msgstr ""
+
+#. 4TBiF
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id21635434153216\n"
+"help.text"
+msgid "If only a pair of coordinates is given, then an address to a single cell is returned. Additional arguments can specify the bottom-right cell of a rectangular range."
+msgstr ""
+
+#. 2BuFG
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id821591631203080\n"
+"help.text"
+msgid "<emph>row1, column1</emph>: Specify the row and column numbers of the top-left cell in the range to be considered. Row and column numbers start at 1."
+msgstr ""
+
+#. i7N7S
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id821591631203212\n"
+"help.text"
+msgid "<emph>row2, column2</emph>: Specify the row and column numbers of the bottom-right cell in the range to be considered. If these arguments are not provided, or if values smaller than <literal>row1</literal> and <literal>column1</literal> are given, then the address of the single cell range represented by <literal>row1</literal> and <literal>column1</literal> is returned."
+msgstr ""
+
+#. Egj6k
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id821591631203336\n"
+"help.text"
+msgid "<emph>sheetname</emph>: The name of the sheet to be appended to the returned range address. The sheet must exist. The default value is \"~\" corresponding to the currently active sheet."
+msgstr ""
+
+#. idfEg
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id131611616623705\n"
+"help.text"
+msgid "The examples below in Basic and Python consider that \"Sheet1\" is the currently active sheet."
+msgstr ""
+
+#. eXJNG
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id501611617808112\n"
+"help.text"
+msgid "The method <literal>A1Style</literal> can be combined with any of the many properties and methods of the Calc service that require a range as argument, such as <literal>GetValue</literal>, <literal>GetFormula</literal>, <literal>ClearAll</literal>, etc."
+msgstr ""
+
+#. Hfeug
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id93158919969864\n"
+"help.text"
+msgid "If the argument <literal>sheetname</literal> is provided, the given sheet is activated and it becomes the currently selected sheet. If the argument is absent, then the document window is activated."
+msgstr ""
+
+#. EhMzz
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id821591631203996\n"
+"help.text"
+msgid "<emph>sheetname</emph>: The name of the sheet to be activated in the document. The default value is an empty string, meaning that the document window will be activated without changing the active sheet."
+msgstr ""
+
+#. 2cgiA
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id131611616623714\n"
+"help.text"
+msgid "The example below activates the sheet named \"Sheet4\" in the currently active document."
+msgstr ""
+
+#. LRebz
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id501611617808220\n"
+"help.text"
+msgid "Activating a sheet makes sense only if it is performed on a Calc document. To make sure you have a Calc document at hand you can use the <literal>isCalc</literal> property of the document object, which returns <literal>True</literal> if it is a Calc document and <literal>False</literal> otherwise."
+msgstr ""
+
+#. KWFFF
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id93158919969856\n"
+"help.text"
+msgid "Returns either the list with the names of all chart objects in a given sheet or a single <literal>Chart</literal> service instance."
+msgstr ""
+
+#. MKgeJ
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id371635438503202\n"
+"help.text"
+msgid "If only <literal>sheetname</literal> is specified, a zero-based array of strings containing the names of all charts is returned."
+msgstr ""
+
+#. CLbLn
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id371635438509045\n"
+"help.text"
+msgid "If a <literal>chartname</literal> is provided, then a single object corresponding to the desired chart is returned. The specified chart must exist."
+msgstr ""
+
+#. T2e3d
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id821591631205026\n"
+"help.text"
+msgid "<emph>sheetname</emph>: The name of the sheet from which the list of charts is to be retrieved or where the specified chart is located."
+msgstr ""
+
+#. Dhape
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id821591631203566\n"
+"help.text"
+msgid "<emph>chartname</emph>: The user-defined name of the chart object to be returned. If the chart does not have a user-defined name, then the internal object name can be used. If this argument is absent, then the list of chart names in the specified sheet is returned."
+msgstr ""
+
+#. C7CSH
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id431635438771588\n"
+"help.text"
+msgid "Use the <menuitem>Navigator</menuitem> sidebar to check the names assigned to charts under the <menuitem>OLE objects</menuitem> category."
+msgstr ""
+
+#. zbX9R
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id41635439328174\n"
+"help.text"
+msgid "The example below shows the number of chart objects in \"Sheet1\"."
+msgstr ""
+
+#. gsLHX
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id571635439417400\n"
+"help.text"
+msgid "The following example accesses the chart named \"MyChart\" in \"Sheet1\" and prints its type."
+msgstr ""
+
+#. auJdC
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id31592919577984\n"
+"help.text"
+msgid "Clears all the contents and formats of the given range."
+msgstr ""
+
+#. M5PqA
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id441592919577809\n"
+"help.text"
+msgid "<emph>range</emph>: The range to be cleared, as a string."
+msgstr ""
+
+#. Wz6CH
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id211592919864118\n"
+"help.text"
+msgid "Clears the formats and styles in the given range."
+msgstr ""
+
+#. 6Qxnv
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id611592919864268\n"
+"help.text"
+msgid "<emph>range</emph>: The range whose formats and styles are to be cleared, as a string."
+msgstr ""
+
+#. sMwMp
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id841592919928169\n"
+"help.text"
+msgid "Clears the values and formulas in the given range."
+msgstr ""
+
+#. eEGn9
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id771592919928320\n"
+"help.text"
+msgid "<emph>range</emph>: The range whose values and formulas are to be cleared, as a string."
+msgstr ""
+
+#. JWFDb
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id841592919903025\n"
+"help.text"
+msgid "Deletes the columns of a specified range that match a filter expressed as a Calc formula. The filter is applied to each column to decide whether it will be deleted or not."
+msgstr ""
+
+#. 4JWnp
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id601652269911029\n"
+"help.text"
+msgid "The deleted column can be limited to the height of the specified range or span to the height of the entire sheet, thus deleting whole columns."
+msgstr ""
+
+#. VAVU3
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id701652271281106\n"
+"help.text"
+msgid "This method returns a string with the range address of the compacted range. If all columns are deleted, then an empty string is returned."
+msgstr ""
+
+#. j2GAb
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id191652271892064\n"
+"help.text"
+msgid "If a range of cells is selected, calling this method will not impact the selection."
+msgstr ""
+
+#. WsrKe
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id771592919922181\n"
+"help.text"
+msgid "<emph>range</emph>: The range from which columns will be deleted, as a string."
+msgstr ""
+
+#. Q9QBp
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id771592919932260\n"
+"help.text"
+msgid "<emph>wholecolumn</emph>: If this option is set to <literal>True</literal> the entire column will be deleted from the sheet. The default value is <literal>False</literal>, which means that the deleted column will be limited to the height of the specified <literal>range</literal>."
+msgstr ""
+
+#. M7qto
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id771592919915974\n"
+"help.text"
+msgid "<emph>filterformula</emph>: The filter to be applied to each column to determine whether or not it will be deleted. The filter is expressed as a Calc formula that should be applied to the first column. When the formula returns <emph>True</emph> for a column, that column will be deleted. The default filter deletes all empty columns."
+msgstr ""
+
+#. 8sYWa
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id361652271022647\n"
+"help.text"
+msgid "For example, suppose range <emph>A1:J200</emph> is selected (height = 200), so the default formula is <emph>=(COUNTBLANK(A1:A200)=200)</emph>. This means that if all 200 cells are empty in the first column (Column A), then the column is deleted. Note that the formula is expressed with respect to the first column only. Internally the <literal>CompactLeft</literal> method will generalize this formula for all the remaining columns."
+msgstr ""
+
+#. viKpg
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id431657568414625\n"
+"help.text"
+msgid "Calc functions used in the <literal>filterformula</literal> argument must be expressed using their English names. Visit the Wiki page <link href=\"https://wiki.documentfoundation.org/Documentation/Calc_Functions/List_of_Functions\" name=\"CalcFunctions\">List of Calc Functions</link> for a complete list of Calc functions in English."
+msgstr ""
+
+#. FDspT
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"bas_id941652271391005\n"
+"help.text"
+msgid "' Delete all empty columns in the range G1:L10 from Sheet1"
+msgstr ""
+
+#. huH9x
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"bas_id691652271390762\n"
+"help.text"
+msgid "newrange = oDoc.CompactLeft(\"Sheet1.G1:L10\")"
+msgstr ""
+
+#. 2BkcC
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"bas_id921652271392627\n"
+"help.text"
+msgid "' The example below is similar, but the entire column is deleted from the sheet"
+msgstr ""
+
+#. 6GoCu
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"bas_id941652271392873\n"
+"help.text"
+msgid "newrange = oDoc.CompactLeft(\"Sheet1.G1:L10\", WholeColumn := True)"
+msgstr ""
+
+#. KfQRA
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"bas_id751652271393226\n"
+"help.text"
+msgid "' Deletes all columns where the first row is marked with an \"X\""
+msgstr ""
+
+#. fLJ7y
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"bas_id761652271393514\n"
+"help.text"
+msgid "newrange = oDoc.CompactLeft(\"Sheet1.G1:L10\", FilterFormula := \"=(G1=\"\"X\"\")\")"
+msgstr ""
+
+#. UqpQB
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"bas_id241652271725676\n"
+"help.text"
+msgid "' Deletes all columns where the sum of values in the column is odd"
+msgstr ""
+
+#. 5rxDM
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"bas_id531652271726131\n"
+"help.text"
+msgid "newrange = oDoc.CompactLeft(\"Sheet1.G1:L10\", FilterFormula := \"=(MOD(SUM(G1:G10);2)=1)\")"
+msgstr ""
+
+#. i4ux6
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"pyc_id451621536612334\n"
+"help.text"
+msgid "newrange = myDoc.CompactLeft(\"Sheet1.G1:L10\")"
+msgstr ""
+
+#. j5kGd
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"pyc_id201652272121176\n"
+"help.text"
+msgid "newrange = myDoc.CompactLeft(\"Sheet1.G1:L10\", wholecolumn = True)"
+msgstr ""
+
+#. pBca4
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"pyc_id781652272122794\n"
+"help.text"
+msgid "newrange = myDoc.CompactLeft(\"Sheet1.G1:L10\", filterformula = '=(G1=\"X\")')"
+msgstr ""
+
+#. VGAj6
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"pyc_id731652272123209\n"
+"help.text"
+msgid "newrange = myDoc.CompactLeft(\"Sheet1.G1:L10\", filterformula = '=(MOD(SUM(G1:G10);2)=1)')"
+msgstr ""
+
+#. vqJ5B
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id841592919903699\n"
+"help.text"
+msgid "Deletes the rows of a specified range that match a filter expressed as a Calc formula. The filter is applied to each row to decide whether it will be deleted or not."
+msgstr ""
+
+#. RhiRD
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id601652269910091\n"
+"help.text"
+msgid "The deleted rows can be limited to the width of the specified range or span to the width of the entire sheet, thus deleting whole rows."
+msgstr ""
+
+#. Yw3WB
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id701652271283456\n"
+"help.text"
+msgid "This method returns a string with the range address of the compacted range. If all rows are deleted, then an empty string is returned."
+msgstr ""
+
+#. RtGtW
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id191652271893913\n"
+"help.text"
+msgid "If a range of cells is selected, calling this method will not impact the selection."
+msgstr ""
+
+#. X3Ekj
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id771592919922080\n"
+"help.text"
+msgid "<emph>range</emph>: The range from which rows will be deleted, as a string."
+msgstr ""
+
+#. sAtHM
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id771592919921160\n"
+"help.text"
+msgid "<emph>wholerow</emph>: If this option is set to <literal>True</literal> the entire row will be deleted from the sheet. The default value is <literal>False</literal>, which means that the deleted row will be limited to the width of the specified <literal>range</literal>."
+msgstr ""
+
+#. pKXWR
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id771592919926374\n"
+"help.text"
+msgid "<emph>filterformula</emph>: The filter to be applied to each row to determine whether or not it will be deleted. The filter is expressed as a Calc formula that should be applied to the first row. When the formula returns <emph>True</emph> for a row, that row will be deleted. The default filter deletes all empty rows."
+msgstr ""
+
+#. 2DsWD
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id361652271022681\n"
+"help.text"
+msgid "For example, suppose range <emph>A1:J200</emph> is selected (width = 10), so the default formula is <emph>=(COUNTBLANK(A1:J1)=10)</emph>. This means that if all 10 cells are empty in the first row (Row 1), then the row is deleted. Note that the formula is expressed with respect to the first row only. Internally the <literal>CompactUp</literal> method will generalize this formula for all the remaining rows."
+msgstr ""
+
+#. VCrie
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id431657568414714\n"
+"help.text"
+msgid "The Calc functions used in the formula specified in the <literal>filterformula</literal> argument must be expressed using their English names. Visit the Wiki page <link href=\"https://wiki.documentfoundation.org/Documentation/Calc_Functions/List_of_Functions\" name=\"CalcFunctions\">List of Calc Functions</link> for a complete list of Calc functions in English."
+msgstr ""
+
+#. GuWzD
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"bas_id941652271391554\n"
+"help.text"
+msgid "' Delete all empty rows in the range G1:L10 from Sheet1"
+msgstr ""
+
+#. GBrKx
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"bas_id691652271390789\n"
+"help.text"
+msgid "newrange = oDoc.CompactUp(\"Sheet1.G1:L10\")"
+msgstr ""
+
+#. FV3Ev
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"bas_id921652271392567\n"
+"help.text"
+msgid "' The example below is similar, but the entire row is deleted from the sheet"
+msgstr ""
+
+#. Y5YVh
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"bas_id941652271392553\n"
+"help.text"
+msgid "newrange = oDoc.CompactUp(\"Sheet1.G1:L10\", WholeRow := True)"
+msgstr ""
+
+#. mFqmA
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"bas_id751652271393117\n"
+"help.text"
+msgid "' Deletes all rows where the first column is marked with an \"X\""
+msgstr ""
+
+#. gJQRm
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"bas_id761652271393034\n"
+"help.text"
+msgid "newrange = oDoc.CompactUp(\"Sheet1.G1:L10\", FilterFormula := \"=(G1=\"\"X\"\")\")"
+msgstr ""
+
+#. DoDfJ
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"bas_id241652271725065\n"
+"help.text"
+msgid "' Deletes all rows where the sum of values in the row is odd"
+msgstr ""
+
+#. zXErV
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"bas_id531652271726010\n"
+"help.text"
+msgid "newrange = oDoc.CompactUp(\"Sheet1.G1:L10\", FilterFormula := \"=(MOD(SUM(G1:L1);2)=1)\")"
+msgstr ""
+
+#. Mcwq5
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"pyc_id451621536612227\n"
+"help.text"
+msgid "newrange = myDoc.CompactUp(\"Sheet1.G1:L10\")"
+msgstr ""
+
+#. tXmJD
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"pyc_id201652272121288\n"
+"help.text"
+msgid "newrange = myDoc.CompactUp(\"Sheet1.G1:L10\", wholerow = True)"
+msgstr ""
+
+#. WZ3XF
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"pyc_id781652272122931\n"
+"help.text"
+msgid "newrange = myDoc.CompactUp(\"Sheet1.G1:L10\", filterformula = '=(G1=\"X\")')"
+msgstr ""
+
+#. 4DfG9
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"pyc_id731652272123109\n"
+"help.text"
+msgid "newrange = myDoc.CompactUp(\"Sheet1.G1:L10\", filterformula = '=(MOD(SUM(G1:L1);2)=1)')"
+msgstr ""
+
+#. n6vJD
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id591591631693816\n"
+"help.text"
+msgid "Copies a specified sheet before an existing sheet or at the end of the list of sheets. The sheet to be copied may be contained inside any <emph>open</emph> Calc document. Returns <literal>True</literal> if successful."
+msgstr ""
+
+#. YqGL2
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id871591631693741\n"
+"help.text"
+msgid "<emph>sheetname</emph>: The name of the sheet to be copied as a string or its reference as an object."
+msgstr ""
+
+#. 5cEGG
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id351591632126180\n"
+"help.text"
+msgid "<emph>newname</emph>: The name of the sheet to insert. The name must not be in use in the document."
+msgstr ""
+
+#. 8sSno
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id211591632192379\n"
+"help.text"
+msgid "<emph>beforesheet</emph>: The name (string) or index (numeric, starting from 1) of the sheet before which to insert the copied sheet. This argument is optional and the default behavior is to add the copied sheet at the last position."
+msgstr ""
+
+#. yuvEn
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id961591632309410\n"
+"help.text"
+msgid "The following example makes a copy of the sheet \"SheetX\" and places it as the last sheet in the current document. The name of the copied sheet is \"SheetY\"."
+msgstr ""
+
+#. pqVdW
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"bas_id231611706034607\n"
+"help.text"
+msgid "'Gets the Document object of the active window"
+msgstr ""
+
+#. xUG9G
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id461591632297415\n"
+"help.text"
+msgid "The example below copies \"SheetX\" from \"FileA.ods\" and pastes it at the last position of \"FileB.ods\" with the name \"SheetY\":"
+msgstr ""
+
+#. 2AAEx
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id801595695285478\n"
+"help.text"
+msgid "To copy sheets between <emph>open</emph> documents, use <literal>CopySheet</literal>. To copy sheets from documents that are <emph>closed</emph>, use <literal>CopySheetFromFile</literal>."
+msgstr ""
+
+#. 5fctt
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id931591714614755\n"
+"help.text"
+msgid "Copies a specified sheet from a <emph>closed</emph> Calc document and pastes it before an existing sheet or at the end of the list of sheets of the file referred to by a <literal>Document</literal> object."
+msgstr ""
+
+#. M9mDA
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id271611706609445\n"
+"help.text"
+msgid "If the file does not exist, an error is raised. If the file is not a valid Calc file, a blank sheet is inserted. If the source sheet does not exist in the input file, an error message is inserted at the top of the newly pasted sheet."
+msgstr ""
+
+#. tCseT
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id471591714947181\n"
+"help.text"
+msgid "<emph>filename</emph>: Identifies the file to open. It must follow the <literal>SF_FileSystem.FileNaming</literal> notation. The file must not be protected with a password."
+msgstr ""
+
+#. gHjz6
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id9915917146142\n"
+"help.text"
+msgid "<emph>sheetname</emph>: The name of the sheet to be copied as a string."
+msgstr ""
+
+#. PeZ4F
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id71591714614904\n"
+"help.text"
+msgid "<emph>newname</emph>: The name of the copied sheet to be inserted in the document. The name must not be in use in the document."
+msgstr ""
+
+#. 2niVz
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id601591714614407\n"
+"help.text"
+msgid "<emph>beforesheet</emph>: The name (string) or index (numeric, starting from 1) of the sheet before which to insert the copied sheet. This argument is optional and the default behavior is to add the copied sheet at the last position."
+msgstr ""
+
+#. iEHJy
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id981611707192039\n"
+"help.text"
+msgid "The following example copies \"SheetX\" from \"myFile.ods\" and pastes it into the document referred to by \"oDoc\" as \"SheetY\" at the first position."
+msgstr ""
+
+#. kELHv
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id91592558768804\n"
+"help.text"
+msgid "Copies a specified source range (values, formulas and formats) to a destination range or cell. The method reproduces the behaviour of a Copy/Paste operation from a range to a single cell."
+msgstr ""
+
+#. KixB2
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id831611707431984\n"
+"help.text"
+msgid "It returns a string representing the modified range of cells. The size of the modified area is fully determined by the size of the source area."
+msgstr ""
+
+#. KCiyF
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id681592558768463\n"
+"help.text"
+msgid "The source range may belong to another <emph>open</emph> document."
+msgstr ""
+
+#. RBQG9
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id761592558768578\n"
+"help.text"
+msgid "<emph>sourcerange</emph>: The source range as a string when it belongs to the same document or as a reference when it belongs to another open Calc document."
+msgstr ""
+
+#. 3MUwk
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id711592558768466\n"
+"help.text"
+msgid "<emph>destinationcell</emph>: The destination cell where the copied range of cells will be pasted, as a string. If a range is given, only its top-left cell is considered."
+msgstr ""
+
+#. FbkjF
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id431592904964362\n"
+"help.text"
+msgid "Next is an example where the source and destination are in the same file:"
+msgstr ""
+
+#. Zh3Wp
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id751592905035452\n"
+"help.text"
+msgid "The example below illustrates how to copy a range from another open Calc document:"
+msgstr ""
+
+#. uFAEe
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"bas_id351592558768880\n"
+"help.text"
+msgid "'Open the source document in the background (hidden)"
+msgstr ""
+
+#. PBgwL
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"bas_id1001611708508251\n"
+"help.text"
+msgid "'Do not forget to close the source document because it was opened as hidden"
+msgstr ""
+
+#. ZzDAQ
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id61592905442071\n"
+"help.text"
+msgid "To simulate a Copy/Paste from a range to a single cell, use <literal>CopyToCell</literal>. To simulate a Copy/Paste from a range to a larger range (with the same cells being replicated several times), use <literal>CopyToRange</literal>."
+msgstr ""
+
+#. maHke
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id1615929031212\n"
+"help.text"
+msgid "Copies downwards and/or rightwards a specified source range (values, formulas and formats) to a destination range. The method imitates the behaviour of a Copy/Paste operation from a source range to a larger destination range."
+msgstr ""
+
+#. G4qky
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id271592904084534\n"
+"help.text"
+msgid "If the height (or width) of the destination area is > 1 row (or column) then the height (or width) of the source must be <= the height (or width) of the destination. Otherwise nothing happens."
+msgstr ""
+
+#. Pko2R
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id131592904286834\n"
+"help.text"
+msgid "If the height (or width) of the destination is = 1 then the destination is expanded downwards (or rightwards) up to the height (or width) of the source range."
+msgstr ""
+
+#. jYha4
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id661592904348877\n"
+"help.text"
+msgid "The method returns a string representing the modified range of cells."
+msgstr ""
+
+#. wfzcw
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id41592903121807\n"
+"help.text"
+msgid "The source range may belong to another <emph>open</emph> document."
+msgstr ""
+
+#. CEaED
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id841592903121145\n"
+"help.text"
+msgid "<emph>sourcerange</emph>: The source range as a string when it belongs to the same document or as a reference when it belongs to another open Calc document."
+msgstr ""
+
+#. v3d3d
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id5515929031211000\n"
+"help.text"
+msgid "<emph>destinationrange</emph>: The destination of the copied range of cells, as a string."
+msgstr ""
+
+#. LsHF6
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id461592905128991\n"
+"help.text"
+msgid "Copy within the same document:"
+msgstr ""
+
+#. dNdmJ
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"bas_id601592904507182\n"
+"help.text"
+msgid "' Returns a range string: \"$SheetY.$C$5:$J$14\""
+msgstr ""
+
+#. FBbwi
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id1001592905195364\n"
+"help.text"
+msgid "Copy from one file to another:"
+msgstr ""
+
+#. L3GHp
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id1615929033642\n"
+"help.text"
+msgid "Creates a new chart object showing the data in the specified range. The returned chart object can be further manipulated using the <literal>Chart</literal> service."
+msgstr ""
+
+#. 2YZ5H
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id841592903121025\n"
+"help.text"
+msgid "<emph>chartname:</emph> The user-defined name of the chart to be created. The name must be unique in the same sheet."
+msgstr ""
+
+#. BBtB3
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id5515929031213680\n"
+"help.text"
+msgid "<emph>sheetname:</emph> The name of the sheet where the chart will be placed."
+msgstr ""
+
+#. GEiCb
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id5515929031211522\n"
+"help.text"
+msgid "<emph>range:</emph> The range to be used as the data source for the chart. The range may refer to any sheet of the Calc document."
+msgstr ""
+
+#. L3dSo
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id5515929031216390\n"
+"help.text"
+msgid "<emph>columnheader:</emph> When <literal>True</literal>, the topmost row of the range is used as labels for the category axis or the legend (Default = <literal>False</literal>)."
+msgstr ""
+
+#. iyq5m
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id5515929031211633\n"
+"help.text"
+msgid "<emph>rowheader:</emph> When <literal>True</literal>, the leftmost column of the range is used as labels for the category axis or the legend. (Default = <literal>False</literal>)."
+msgstr ""
+
+#. CKzBZ
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id61635441176547\n"
+"help.text"
+msgid "The examples below in Basic and Python create a chart using the data contained in the range \"A1:B5\" of \"Sheet1\" and place the chart in \"Sheet2\"."
+msgstr ""
+
+#. uBCvA
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id231635441342180\n"
+"help.text"
+msgid "Refer to the help page about ScriptForge's <link href=\"text/sbasic/shared/03/sf_chart.xhp\" name=\"Chart service\">Chart service</link> to learn more how to further manipulate chart objects. It is possible to change properties as the chart type, chart and axes titles and chart position."
+msgstr ""
+
+#. DFCVe
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id1615929033065\n"
+"help.text"
+msgid "Creates a new pivot table with the properties defined by the arguments passed to the method."
+msgstr ""
+
+#. gouER
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id1001652794922144\n"
+"help.text"
+msgid "A name must be provided for the pivot table. If a pivot table with the same name already exists in the targeted sheet, it will be replaced without warning."
+msgstr ""
+
+#. SnCCg
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id751652795324382\n"
+"help.text"
+msgid "This method returns a string containing the range where the new pivot table was placed."
+msgstr ""
+
+#. AKjmT
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id841592903128525\n"
+"help.text"
+msgid "<emph>pivottablename:</emph> The user-defined name of the new pivot table."
+msgstr ""
+
+#. vvGTx
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id5515929031203640\n"
+"help.text"
+msgid "<emph>sourcerange:</emph> The range containing the raw data, as a string. It is assumed that the first row contains the field names that are used by the pivot table."
+msgstr ""
+
+#. twWbD
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id5515929031210400\n"
+"help.text"
+msgid "<emph>targetcell:</emph> The top-left cell where the new pivot table will be placed. If a range is specified, only its top-left cell is considered."
+msgstr ""
+
+#. YXG64
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id5515929031951290\n"
+"help.text"
+msgid "<emph>datafields:</emph> It can be either a single string or an array containing strings that define field names and functions to be applied. When an array is specified, it must follow the syntax <input>Array(\"FieldName[;Function]\", ...)</input>."
+msgstr ""
+
+#. cKZ3U
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id361652795942348\n"
+"help.text"
+msgid "The allowed functions are: <literal>Sum</literal>, <literal>Count</literal>, <literal>Average</literal>, <literal>Max</literal>, <literal>Min</literal>, <literal>Product</literal>, <literal>CountNums</literal>, <literal>StDev</literal>, <literal>StDevP</literal>, <literal>Var</literal>, <literal>VarP</literal> and <literal>Median</literal>. Function names must be provided in English. When all values are numerical, <literal>Sum</literal> is the default function, otherwise the default function is <literal>Count</literal>."
+msgstr ""
+
+#. JKCoA
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id5515929031211003\n"
+"help.text"
+msgid "<emph>rowfields:</emph> A single string or an array with the field names that will be used as the pivot table rows."
+msgstr ""
+
+#. 8GW5G
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id5515929031211114\n"
+"help.text"
+msgid "<emph>columnfields:</emph> A single string or an array with the field names that will be used as the pivot table columns."
+msgstr ""
+
+#. iTL7C
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id361652796141240\n"
+"help.text"
+msgid "<emph>filterbutton:</emph> Determines whether a filter button will be displayed above the pivot table (Default = <literal>True</literal>)."
+msgstr ""
+
+#. FXyRo
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id661652796200051\n"
+"help.text"
+msgid "<emph>rowtotals:</emph> Specifies if a separate column for row totals will be added to the pivot table (Default = <literal>True</literal>)."
+msgstr ""
+
+#. xf8Nt
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id671652796274304\n"
+"help.text"
+msgid "<emph>columntotals</emph> Specifies if a separate row for column totals will be added to the pivot table (Default = <literal>True</literal>)"
+msgstr ""
+
+#. EWpPF
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"bas_id201652797038370\n"
+"help.text"
+msgid "vData = Array(Array(\"Item\", \"State\", \"Team\", \"2002\", \"2003\", \"2004\"), _"
+msgstr ""
+
+#. mKCAv
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"bas_id171652797038762\n"
+"help.text"
+msgid "Array(\"Books\", \"Michigan\", \"Jean\", 14788, 30222, 23490), _"
+msgstr ""
+
+#. hCGGn
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"bas_id331652797039146\n"
+"help.text"
+msgid "Array(\"Candy\", \"Michigan\", \"Jean\", 26388, 15641, 32849), _"
+msgstr ""
+
+#. 9ByFz
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"bas_id911652797039570\n"
+"help.text"
+msgid "Array(\"Pens\", \"Michigan\", \"Jean\", 16569, 32675, 25396), _"
+msgstr ""
+
+#. eSDMP
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"bas_id471652797039963\n"
+"help.text"
+msgid "Array(\"Books\", \"Michigan\", \"Volker\", 21961, 21242, 29009), _"
+msgstr ""
+
+#. sJ46a
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"bas_id681652797040338\n"
+"help.text"
+msgid "Array(\"Candy\", \"Michigan\", \"Volker\", 26142, 22407, 32841))"
+msgstr ""
+
+#. J482H
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"bas_id851652797041450\n"
+"help.text"
+msgid "Array(\"2002\", \"2003;count\", \"2004;average\"), _ ' Three data fields"
+msgstr ""
+
+#. aVZWM
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"bas_id791652797306993\n"
+"help.text"
+msgid "\"Item\", _ ' A single row field"
+msgstr ""
+
+#. C77HK
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"bas_id731652797041866\n"
+"help.text"
+msgid "Array(\"State\", \"Team\"), False) ' Two column fields"
+msgstr ""
+
+#. 4c6uZ
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"pyc_id971652797474132\n"
+"help.text"
+msgid "vData = [[\"Item\", \"State\", \"Team\", \"2002\", \"2003\", \"2004\"],"
+msgstr ""
+
+#. 7ZNex
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"pyc_id921652797555153\n"
+"help.text"
+msgid "[\"Books\", \"Michigan\", \"Jean\", 14788, 30222, 23490],"
+msgstr ""
+
+#. Ab4Va
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"pyc_id891652797555537\n"
+"help.text"
+msgid "[\"Candy\", \"Michigan\", \"Jean\", 26388, 15641, 32849],"
+msgstr ""
+
+#. jCYsL
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"pyc_id321652797555864\n"
+"help.text"
+msgid "[\"Pens\", \"Michigan\", \"Jean\", 16569, 32675, 25396)],"
+msgstr ""
+
+#. LFzAq
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"pyc_id121652797556264\n"
+"help.text"
+msgid "[\"Books\", \"Michigan\", \"Volker\", 21961, 21242, 29009],"
+msgstr ""
+
+#. GRrTW
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"pyc_id881652797556680\n"
+"help.text"
+msgid "[\"Candy\", \"Michigan\", \"Volker\", 26142, 22407, 32841]]"
+msgstr ""
+
+#. sbEVQ
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"pyc_id941652797992017\n"
+"help.text"
+msgid "[\"2002\", \"2003;count\", \"2004;average\"],"
+msgstr ""
+
+#. 3JAyy
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"pyc_id471652797992561\n"
+"help.text"
+msgid "\"Item\","
+msgstr ""
+
+#. oL69n
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"pyc_id561652797992185\n"
+"help.text"
+msgid "[\"State\", \"Team\"], False)"
+msgstr ""
+
+#. XsF9b
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id231635441342284\n"
+"help.text"
+msgid "To learn more about Pivot Tables in %PRODUCTNAME Calc, read the <link href=\"text/scalc/guide/datapilot.xhp\" name=\"Pivot table\">Pivot Table</link> help page."
+msgstr ""
+
+#. so8uw
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id601595777001498\n"
+"help.text"
+msgid "Apply the functions Average, Count, Max, Min and Sum, respectively, to all the cells containing numeric values on a given range."
+msgstr ""
+
+#. F2UTC
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id741595777001537\n"
+"help.text"
+msgid "<emph>range</emph>: The range to which the function will be applied, as a string."
+msgstr ""
+
+#. ZhAYY
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id121611752704572\n"
+"help.text"
+msgid "The example below applies the <literal>Sum</literal> function to the range \"A1:A1000\" of the currently selected sheet:"
+msgstr ""
+
+#. iTEts
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id31611752782288\n"
+"help.text"
+msgid "Cells in the given range that contain text will be ignored by all of these functions. For example, the <literal>DCount</literal> method will not count cells with text, only numerical cells."
+msgstr ""
+
+#. S6JvC
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id501623063693113\n"
+"help.text"
+msgid "Exports the specified range as an image or PDF file."
+msgstr ""
+
+#. eKaCo
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id401655654738754\n"
+"help.text"
+msgid "This method returns <literal>True</literal> if the destination file was successfully saved."
+msgstr ""
+
+#. p6Hg5
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id871655655302952\n"
+"help.text"
+msgid "Hidden rows or columns in the specified range are not exported to the destination file."
+msgstr ""
+
+#. DpqDV
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id441623090896470\n"
+"help.text"
+msgid "<emph>range</emph>: A sheet name or a cell range to be exported, as a string."
+msgstr ""
+
+#. v5QXP
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id451623063452651\n"
+"help.text"
+msgid "<emph>filename</emph>: The name of the file to be saved. It must follow the <literal>SF_FileSystem.FileNaming</literal> notation."
+msgstr ""
+
+#. 3nTsB
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id441623090895310\n"
+"help.text"
+msgid "<emph>imagetype</emph>: Identifies the destination file type. Possible values are \"jpeg\", \"pdf\" (default) and \"png\"."
+msgstr ""
+
+#. Wx3ea
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id441623090896317\n"
+"help.text"
+msgid "<emph>overwrite</emph>: When set to <literal>True</literal>, the destination file may be overwritten (Default = <literal>False</literal>)."
+msgstr ""
+
+#. twaNW
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"bas_id561655655121456\n"
+"help.text"
+msgid "' Exports the entire sheet as a PDF file"
+msgstr ""
+
+#. RRxag
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"bas_id991655655060661\n"
+"help.text"
+msgid "' Exports the range as a PNG file and overwrites the destination file if it exists"
+msgstr ""
+
+#. BVKEy
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id501623063693649\n"
+"help.text"
+msgid "Depending on the parameters provided this method will return:"
+msgstr ""
+
+#. pBZm6
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id611623063742045\n"
+"help.text"
+msgid "A zero-based Array (or a tuple in Python) with the names of all the forms contained in a given sheet (if the <literal>form</literal> argument is absent)"
+msgstr ""
+
+#. FHWZs
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id641623063744536\n"
+"help.text"
+msgid "A <literal>SFDocuments.Form</literal> service instance representing the form specified as argument."
+msgstr ""
+
+#. YdQaD
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id441623090893210\n"
+"help.text"
+msgid "<emph>sheetname</emph>: The name of the sheet, as a string, from which the form will be retrieved."
+msgstr ""
+
+#. BV8GH
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id451623063459286\n"
+"help.text"
+msgid "<emph>form</emph>: The name or index corresponding to a form stored in the specified sheet. If this argument is absent, the method will return a list with the names of all forms available in the sheet."
+msgstr ""
+
+#. sFFyE
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id251623063305557\n"
+"help.text"
+msgid "In the following examples, the first line gets the names of all forms stored in \"Sheet1\" and the second line retrieves the <literal>Form</literal> object of the form named \"Form_A\" which is stored in \"Sheet1\"."
+msgstr ""
+
+#. y9kCE
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id401591632726431\n"
+"help.text"
+msgid "Converts a column number ranging between 1 and 1024 into its corresponding letter (column 'A', 'B', ..., 'AMJ'). If the given column number is outside the allowed range, a zero-length string is returned."
+msgstr ""
+
+#. EfsXe
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id83159163272628\n"
+"help.text"
+msgid "<emph>columnnumber</emph>: The column number as an integer value in the interval 1 ... 1024."
+msgstr ""
+
+#. 6yjtp
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id11621539831303\n"
+"help.text"
+msgid "Displays a message box with the name of the third column, which by default is \"C\"."
+msgstr ""
+
+#. XNAhU
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id451611753568778\n"
+"help.text"
+msgid "The maximum number of columns allowed on a Calc sheet is 1024."
+msgstr ""
+
+#. ksYoG
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id921593880142573\n"
+"help.text"
+msgid "Get the formula(s) stored in the given range of cells as a single string, a 1D or a 2D array of strings."
+msgstr ""
+
+#. ojiDi
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id291658146319931\n"
+"help.text"
+msgid "The names of Calc functions used in the returned formulas are expressed in English. Visit the Wiki page <link href=\"https://wiki.documentfoundation.org/Documentation/Calc_Functions/List_of_Functions\" name=\"CalcFunctions\">List of Calc Functions</link> for a complete list of Calc functions in English."
+msgstr ""
+
+#. KDFkQ
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id891593880142588\n"
+"help.text"
+msgid "<emph>range</emph>: The range where to get the formulas from, as a string."
+msgstr ""
+
+#. tBeSN
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id461611755257141\n"
+"help.text"
+msgid "The following example returns a 3 by 2 array with the formulas in the range \"A1:B3\" (3 rows by 2 columns):"
+msgstr ""
+
+#. AoHGB
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id331592231156425\n"
+"help.text"
+msgid "Get the value(s) stored in the given range of cells as a single value, a 1D array or a 2D array. All values are either doubles or strings."
+msgstr ""
+
+#. XACNZ
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id91592231156434\n"
+"help.text"
+msgid "<emph>range</emph>: The range where to get the values from, as a string."
+msgstr ""
+
+#. ojRBo
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id991611756492772\n"
+"help.text"
+msgid "If a cell contains a date, the number corresponding to that date will be returned. To convert numeric values to dates in Basic scripts, use the Basic <link href=\"text/sbasic/shared/03100300.xhp\" name=\"CDate Basic\"><literal>CDate</literal> builtin function</link>. In Python scripts, use the <link href=\"text/sbasic/shared/03/sf_basic.xhp#CDate\" name=\"CDate Python\"><literal>CDate</literal> function from the <literal>Basic</literal> service.</link>"
+msgstr ""
+
+#. YYMuH
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id771593685490395\n"
+"help.text"
+msgid "Imports the contents of a CSV-formatted text file and places it on a given destination cell."
+msgstr ""
+
+#. cxrHr
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id751611756909199\n"
+"help.text"
+msgid "The destination area is cleared of all contents and formats before inserting the contents of the CSV file. The size of the modified area is fully determined by the contents of the input file."
+msgstr ""
+
+#. D2w2A
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id911593685490873\n"
+"help.text"
+msgid "The method returns a string representing the modified range of cells."
+msgstr ""
+
+#. GrquM
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id851593685490824\n"
+"help.text"
+msgid "<emph>filename</emph>: Identifies the file to open. It must follow the <literal>SF_FileSystem.FileNaming</literal> notation."
+msgstr ""
+
+#. VdTtY
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id641593685490936\n"
+"help.text"
+msgid "<emph>destinationcell</emph>: The destination cell to insert the imported data, as a string. If instead a range is given, only its top-left cell is considered."
+msgstr ""
+
+#. BrTfu
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id641593685863838\n"
+"help.text"
+msgid "<emph>filteroptions</emph>: The arguments for the CSV input filter. The default filter makes following assumptions:"
+msgstr ""
+
+#. Mb4c6
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id661593686250471\n"
+"help.text"
+msgid "The input file encoding is UTF8."
+msgstr ""
+
+#. CEpDn
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id161593686260876\n"
+"help.text"
+msgid "The field separator is a comma, a semi-colon or a Tab character."
+msgstr ""
+
+#. CDfys
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id711593686274293\n"
+"help.text"
+msgid "The string delimiter is the double quote (\")."
+msgstr ""
+
+#. qowXx
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id171593686280838\n"
+"help.text"
+msgid "All lines are included."
+msgstr ""
+
+#. MBwZg
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id881593686287161\n"
+"help.text"
+msgid "Quoted strings are formatted as text."
+msgstr ""
+
+#. bujFG
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id161593686293473\n"
+"help.text"
+msgid "Special numbers are detected."
+msgstr ""
+
+#. TYXKD
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id791593686300499\n"
+"help.text"
+msgid "All columns are presumed to be texts, except if recognized as valid numbers."
+msgstr ""
+
+#. Byno7
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id381593686307406\n"
+"help.text"
+msgid "The language is English/US, which implies that the decimal separator is \".\" and the thousands separator is \",\"."
+msgstr ""
+
+#. tDYGo
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id531611757154931\n"
+"help.text"
+msgid "To learn more about the CSV Filter Options, refer to the <link href=\"text/shared/guide/csv_params.xhp\" name=\"CSV Filter Options\">CSV Filter Options help page</link>."
+msgstr ""
+
+#. vPPYx
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id881599568986824\n"
+"help.text"
+msgid "Imports the contents of a database table, query or resultset, i.e. the result of a SELECT SQL command, inserting it on a destination cell."
+msgstr ""
+
+#. DorV6
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id81611763957509\n"
+"help.text"
+msgid "The destination area is cleared of all contents and formats before inserting the imported contents. The size of the modified area is fully determined by the contents in the table or query."
+msgstr ""
+
+#. tfp3o
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id51599568986387\n"
+"help.text"
+msgid "The method returns <literal>True</literal> when the import was successful."
+msgstr ""
+
+#. rgoAd
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id311599568986784\n"
+"help.text"
+msgid "<emph>filename</emph>: Identifies the file to open. It must follow the <literal>SF_FileSystem.FileNaming</literal> notation."
+msgstr ""
+
+#. j2J5e
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id711596555746281\n"
+"help.text"
+msgid "<emph>registrationname</emph>: The name to use to find the database in the databases register. This argument is ignored if a <literal>filename</literal> is provided."
+msgstr ""
+
+#. 2hSHw
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id211599568986329\n"
+"help.text"
+msgid "<emph>destinationcell</emph>: The destination of the imported data, as a string. If a range is given, only its top-left cell is considered."
+msgstr ""
+
+#. aMfVw
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id451599489278429\n"
+"help.text"
+msgid "<emph>sqlcommand</emph>: A table or query name (without surrounding quotes or square brackets) or a SELECT SQL statement in which table and field names may be surrounded by square brackets or quotes to improve its readability."
+msgstr ""
+
+#. wFpLr
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id271599489278141\n"
+"help.text"
+msgid "<emph>directsql</emph>: When <literal>True</literal>, the SQL command is sent to the database engine without pre-analysis. Default is <literal>False</literal>. The argument is ignored for tables. For queries, the applied option is the one set when the query was defined."
+msgstr ""
+
+#. toj8z
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id121591698472929\n"
+"help.text"
+msgid "Inserts a new empty sheet before an existing sheet or at the end of the list of sheets."
+msgstr ""
+
+#. Xbm7k
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id941591698472748\n"
+"help.text"
+msgid "<emph>sheetname</emph>: The name of the new sheet."
+msgstr ""
+
+#. XbXNM
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id84159169847269\n"
+"help.text"
+msgid "<emph>beforesheet</emph>: The name (string) or index (numeric, starting from 1) of the sheet before which to insert the new sheet. This argument is optional and the default behavior is to insert the sheet at the last position."
+msgstr ""
+
+#. UCmit
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id241611764359510\n"
+"help.text"
+msgid "The following example inserts a new empty sheet named \"SheetX\" and places it before \"SheetY\":"
+msgstr ""
+
+#. DcrWC
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id6415925694762\n"
+"help.text"
+msgid "Moves a specified source range to a destination range of cells. The method returns a string representing the modified range of cells. The dimension of the modified area is fully determined by the size of the source area."
+msgstr ""
+
+#. UqxZv
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id571592569476332\n"
+"help.text"
+msgid "<emph>source</emph>: The source range of cells, as a string."
+msgstr ""
+
+#. G6BSW
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id891592569476362\n"
+"help.text"
+msgid "<emph>destination</emph>: The destination cell, as a string. If a range is given, its top-left cell is considered as the destination."
+msgstr ""
+
+#. NorEd
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id831591698903829\n"
+"help.text"
+msgid "Moves an existing sheet and places it before a specified sheet or at the end of the list of sheets."
+msgstr ""
+
+#. dgAxB
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id351591698903911\n"
+"help.text"
+msgid "<emph>sheetname</emph>: The name of the sheet to move. The sheet must exist or an exception is raised."
+msgstr ""
+
+#. fevuS
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id9159169890334\n"
+"help.text"
+msgid "<emph>beforesheet</emph>: The name (string) or index (numeric, starting from 1) of the sheet before which the original sheet will be placed. This argument is optional and the default behavior is to move the sheet to the last position."
+msgstr ""
+
+#. pd5t4
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id951611766058734\n"
+"help.text"
+msgid "The example below moves the existing sheet \"SheetX\" and places it before \"SheetY\":"
+msgstr ""
+
+#. Q9iwN
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id51592233506371\n"
+"help.text"
+msgid "Returns a new range (as a string) offset by a certain number of rows and columns from a given range."
+msgstr ""
+
+#. VCUXL
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id61611768400376\n"
+"help.text"
+msgid "This method has the same behavior as the homonymous Calc's <link href=\"text/scalc/01/04060109.xhp\" name=\"Offset function\">Offset function</link>."
+msgstr ""
+
+#. G2oD2
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id901592233506293\n"
+"help.text"
+msgid "<emph>reference</emph>: The range, as a string, that the method will use as reference to perform the offset operation."
+msgstr ""
+
+#. Ra7aW
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id781592234124856\n"
+"help.text"
+msgid "<emph>rows</emph>: The number of rows by which the initial range is offset upwards (negative value) or downwards (positive value). Use 0 (default) to stay in the same row."
+msgstr ""
+
+#. FvqjV
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id971592234138769\n"
+"help.text"
+msgid "<emph>columns</emph>: The number of columns by which the initial range is offset to the left (negative value) or to the right (positive value). Use 0 (default) to stay in the same column."
+msgstr ""
+
+#. VzgGM
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id321592234150061\n"
+"help.text"
+msgid "<emph>height</emph>: The vertical height for an area that starts at the new range position. Omit this argument when no vertical resizing is needed."
+msgstr ""
+
+#. JxENN
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id271592234165247\n"
+"help.text"
+msgid "<emph>width</emph>: The horizontal width for an area that starts at the new range position. Omit this argument when no horizontal resizing is needed."
+msgstr ""
+
+#. t9QDN
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id871592234172652\n"
+"help.text"
+msgid "Arguments <literal>rows</literal> and <literal>columns</literal> must not lead to zero or negative start row or column."
+msgstr ""
+
+#. JAxEm
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id211592234180073\n"
+"help.text"
+msgid "Arguments <literal>height</literal> and <literal>width</literal> must not lead to zero or negative count of rows or columns."
+msgstr ""
+
+#. BkCDz
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"bas_id651592234465732\n"
+"help.text"
+msgid "'SheetX.$C$3 (A1 moved by two rows and two columns down)"
+msgstr ""
+
+#. 8ukCQ
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"bas_id521592234478848\n"
+"help.text"
+msgid "'SheetX.$C$3:$H$7 (A1 offset by two rows and columns with width of 5 rows and 6 columns)"
+msgstr ""
+
+#. GwPQh
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id51592233506021\n"
+"help.text"
+msgid "Opens a non-modal dialog that can be used to select a range in the document and returns a string containing the selected range."
+msgstr ""
+
+#. CWn2A
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id301637936295380\n"
+"help.text"
+msgid "This method opens the same dialog that is used by %PRODUCTNAME when the Shrink button is pressed. For example, the <menuitem>Tools - Goal Seek</menuitem> dialog has a Shrink button to the right of the <menuitem>Formula cell</menuitem> field."
+msgstr ""
+
+#. XUoah
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id551637936545121\n"
+"help.text"
+msgid "This method does not change the current selection."
+msgstr ""
+
+#. tAHiV
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id901592233506001\n"
+"help.text"
+msgid "<emph>title</emph>: The title of the dialog, as a string."
+msgstr ""
+
+#. Yyn74
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id781592234124502\n"
+"help.text"
+msgid "<emph>selection</emph>: An optional range that is initially selected when the dialog is displayed."
+msgstr ""
+
+#. zo7VK
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id971592234138989\n"
+"help.text"
+msgid "<emph>singlecell</emph>: When <literal>True</literal> (default) only single-cell selection is allowed. When <literal>False</literal> range selection is allowed."
+msgstr ""
+
+#. SqEWv
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id321592234150345\n"
+"help.text"
+msgid "<emph>closeafterselect</emph>: When <literal>True</literal> (default) the dialog is closed immediately after the selection is made. When <literal>False</literal> the user can change the selection as many times as needed and then manually close the dialog."
+msgstr ""
+
+#. yDiCm
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id51592233503441\n"
+"help.text"
+msgid "Returns the input string after substituting its token characters by their values in a given range."
+msgstr ""
+
+#. Qu4DK
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id551637936596521\n"
+"help.text"
+msgid "This method does not change the current selection."
+msgstr ""
+
+#. eEqCY
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id171637938442558\n"
+"help.text"
+msgid "This method can be used to quickly extract specific parts of a range name, such as the sheet name or first cell column and row, and use them to compose a new range address."
+msgstr ""
+
+#. RAAVz
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id901592233506232\n"
+"help.text"
+msgid "<emph>inputstr</emph>: The string containing the tokens that will be replaced by the corresponding values in <literal>range</literal>."
+msgstr ""
+
+#. NJdUy
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id781592234161102\n"
+"help.text"
+msgid "<emph>range</emph>: A <literal>RangeName</literal> from which values will be extracted. If it contains a sheet name, the sheet must exist."
+msgstr ""
+
+#. BgCCD
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id971592234102889\n"
+"help.text"
+msgid "<emph>tokencharacter</emph>: Character used to identify tokens. By default \"%\" is the token character. The following tokens are accepted:"
+msgstr ""
+
+#. WTDwR
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id261637943912156\n"
+"help.text"
+msgid "<emph>%S</emph> - The sheet name containing the range, including single quotes when necessary."
+msgstr ""
+
+#. YHLeU
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id441637943912380\n"
+"help.text"
+msgid "<emph>%R1</emph> - The row number of the top left cell of the range."
+msgstr ""
+
+#. joJi7
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id521637943912620\n"
+"help.text"
+msgid "<emph>%C1</emph> - The column letter of the top left cell of the range."
+msgstr ""
+
+#. YAfmV
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id371637943912860\n"
+"help.text"
+msgid "<emph>%R2</emph> - The row number of the bottom right cell of the range."
+msgstr ""
+
+#. imuBD
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id291637943913116\n"
+"help.text"
+msgid "<emph>%C2</emph> - The column letter of the bottom right cell of the range."
+msgstr ""
+
+#. gpmpG
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id941637943467476\n"
+"help.text"
+msgid "The example below extracts each element of the <literal>RangeName</literal> defined in <literal>sRange</literal> and uses them to compose a message."
+msgstr ""
+
+#. nbJ59
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id241637944350648\n"
+"help.text"
+msgid "The <literal>Printf</literal> method can be combined with <literal>SetFormula</literal> to create formulas over multiple cells. For instance, consider a table with numeric values in the range \"A1:E10\" from which formulas are to be created to sum the values in each row and place the results in the range \"F1:F10\":"
+msgstr ""
+
+#. foAvd
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"bas_id371637944971921\n"
+"help.text"
+msgid "' Note the use of the \"$\" character"
+msgstr ""
+
+#. wBpRw
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id156589200121138\n"
+"help.text"
+msgid "This method sends the contents of the given sheet to the default printer or to the printer defined by the <literal>SetPrinter</literal> method of the <literal>Document</literal> service."
+msgstr ""
+
+#. BaDL9
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id981611169416934\n"
+"help.text"
+msgid "Returns <literal>True</literal> if the sheet was successfully printed."
+msgstr ""
+
+#. CnNEC
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id368519200121646\n"
+"help.text"
+msgid "<emph>sheetname</emph>: The sheet to print, default is the active sheet."
+msgstr ""
+
+#. xk3k3
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id211635436910093\n"
+"help.text"
+msgid "<emph>pages</emph>: The pages to print as a string, like in the user interface. Example: \"1-4;10;15-18\". Default is all pages."
+msgstr ""
+
+#. DBFDA
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id141635436912146\n"
+"help.text"
+msgid "<emph>copies</emph>: The number of copies. Default is 1."
+msgstr ""
+
+#. C8abL
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id661591699085351\n"
+"help.text"
+msgid "Removes an existing sheet from the document."
+msgstr ""
+
+#. dVxiA
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id331591699085330\n"
+"help.text"
+msgid "<emph>sheetname</emph>: The name of the sheet to remove."
+msgstr ""
+
+#. GwKHr
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id971591704316873\n"
+"help.text"
+msgid "Renames the given sheet and returns <literal>True</literal> if successful."
+msgstr ""
+
+#. ofAiN
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id161591704316337\n"
+"help.text"
+msgid "<emph>sheetname</emph>: The name of the sheet to rename."
+msgstr ""
+
+#. JHEDe
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id931591704316998\n"
+"help.text"
+msgid "<emph>newname</emph>: the new name of the sheet. It must not exist yet."
+msgstr ""
+
+#. bwtAA
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id351611775260443\n"
+"help.text"
+msgid "This example renames the active sheet to \"SheetY\":"
+msgstr ""
+
+#. qEM6N
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id191592745582983\n"
+"help.text"
+msgid "Stores the given value starting from a specified target cell. The updated area expands itself from the target cell or from the top-left corner of the given range to accommodate the size of the input <literal>value</literal> argument. Vectors are always expanded vertically."
+msgstr ""
+
+#. tm6AR
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id671592745582573\n"
+"help.text"
+msgid "The method returns a string representing the modified area as a range of cells."
+msgstr ""
+
+#. FAuKq
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id801592745582116\n"
+"help.text"
+msgid "<emph>targetcell</emph>: The cell or a range as a string from where to start to store the given value."
+msgstr ""
+
+#. aK7EZ
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id321592745582192\n"
+"help.text"
+msgid "<emph>value</emph>: A scalar, a vector or an array (in Python, one or two-dimensional lists and tuples) with the new values to be stored from the target cell or from the top-left corner of the range if <literal>targetcell</literal> is a range. The new values must be strings, numeric values or dates. Other types will cause the corresponding cells to be emptied."
+msgstr ""
+
+#. 7BCXQ
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id331611776151376\n"
+"help.text"
+msgid "The following example uses the builtin <link href=\"text/sbasic/shared/03104300.xhp\" name=\"DimArray function\">DimArray function</link> to create an array and then store it in cell \"A1\":"
+msgstr ""
+
+#. fZfKc
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id601611775600983\n"
+"help.text"
+msgid "This example uses the <literal>RangeInit</literal> method of the <link href=\"text/sbasic/shared/03/sf_array.xhp#RangeInit\" name=\"CHANGE ME\">ScriptForge Array service</link> to create an array with values that are then stored from cell \"A1\" and downwards."
+msgstr ""
+
+#. kmatN
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"bas_id251592745582536\n"
+"help.text"
+msgid "'Fill 1st column with values from 1 to 1000"
+msgstr ""
+
+#. YNGtV
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id291592905671530\n"
+"help.text"
+msgid "To dump the full contents of an array in a sheet, use <emph>SetArray</emph>. To dump the contents of an array only within the boundaries of the targeted range of cells, use <emph>SetValue</emph>."
+msgstr ""
+
+#. g8mER
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id521595767687154\n"
+"help.text"
+msgid "Applies the specified cell style to the given target range. The full range is updated and the remainder of the sheet is left untouched. If the cell style does not exist, an error is raised."
+msgstr ""
+
+#. nxDCd
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id70159576768715\n"
+"help.text"
+msgid "The method returns a string representing the modified area as a range of cells."
+msgstr ""
+
+#. FtFpL
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id22159576768782\n"
+"help.text"
+msgid "<emph>targetrange</emph>: The range to which the style will be applied, as a string."
+msgstr ""
+
+#. aAGcy
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id181595767687247\n"
+"help.text"
+msgid "<emph>style</emph>: The name of the cell style to apply."
+msgstr ""
+
+#. DCAWV
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id481593880376480\n"
+"help.text"
+msgid "Inserts the given (array of) formula(s) in the specified range. The size of the modified area is equal to the size of the range."
+msgstr ""
+
+#. d8CAU
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id711593880376106\n"
+"help.text"
+msgid "The method returns a string representing the modified area as a range of cells."
+msgstr ""
+
+#. F5XDi
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id891593880376776\n"
+"help.text"
+msgid "<emph>targetrange</emph>: The range to insert the formulas, as a string."
+msgstr ""
+
+#. A2UQF
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id941593880376500\n"
+"help.text"
+msgid "<emph>formula</emph>: A string, a vector or an array of strings with the new formulas for each cell in the target range."
+msgstr ""
+
+#. 746E8
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id551593880376513\n"
+"help.text"
+msgid "The full range is updated and the remainder of the sheet is left unchanged."
+msgstr ""
+
+#. Wot7x
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id811593880756356\n"
+"help.text"
+msgid "If the given formula is a string, the unique formula is pasted along the whole range with adjustment of the relative references."
+msgstr ""
+
+#. zr47n
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id491593880857823\n"
+"help.text"
+msgid "If the size of <literal>formula</literal> is smaller than the size of <literal>targetrange</literal>, then the remaining cells are emptied."
+msgstr ""
+
+#. LwoGL
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id701611778103306\n"
+"help.text"
+msgid "If the size of <literal>formula</literal> is larger than the size of <literal>targetrange</literal>, then the formulas are only partially copied until it fills the size of <literal>targetrange</literal>."
+msgstr ""
+
+#. GQC3N
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id761611777946581\n"
+"help.text"
+msgid "Vectors are always expanded vertically, except if <literal>targetrange</literal> has a height of exactly 1 row."
+msgstr ""
+
+#. XbQTz
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id431657568413185\n"
+"help.text"
+msgid "Calc functions used in the <literal>formula</literal> argument must be expressed using their English names. Visit the Wiki page <link href=\"https://wiki.documentfoundation.org/Documentation/Calc_Functions/List_of_Functions\" name=\"CalcFunctions\">List of Calc Functions</link> for a complete list of Calc functions in English."
+msgstr ""
+
+#. rNEEY
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"bas_id681593880376489\n"
+"help.text"
+msgid "'Horizontal vector, partially empty"
+msgstr ""
+
+#. 52GZX
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"bas_id961593881331390\n"
+"help.text"
+msgid "'D2 contains the formula \"=H2\""
+msgstr ""
+
+#. ecovS
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id601592231799489\n"
+"help.text"
+msgid "Stores the given value in the specified range. The size of the modified area is equal to the size of the target range."
+msgstr ""
+
+#. PeoKo
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id1001592233389953\n"
+"help.text"
+msgid "The method returns a string representing the modified area as a range of cells."
+msgstr ""
+
+#. xYrHQ
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id361592231799255\n"
+"help.text"
+msgid "<emph>targetrange</emph>: The range where to store the given value, as a string."
+msgstr ""
+
+#. dydXF
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id461592232081985\n"
+"help.text"
+msgid "<emph>value</emph>: A scalar, a vector or an array with the new values for each cell of the range. The new values must be strings, numeric values or dates. Other types will cause the corresponding cells to be emptied."
+msgstr ""
+
+#. CgwVF
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id841592745785192\n"
+"help.text"
+msgid "The full range is updated and the remainder of the sheet is left unchanged. If the size of <literal>value</literal> is smaller than the size of <literal>targetrange</literal>, then the remaining cells will be emptied."
+msgstr ""
+
+#. QFkLr
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id191611776838396\n"
+"help.text"
+msgid "If the size of <literal>value</literal> is larger than the size of <literal>targetrange</literal>, then <literal>value</literal> is only partially copied until it fills the size of <literal>targetrange</literal>."
+msgstr ""
+
+#. ykBk6
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id71611776941663\n"
+"help.text"
+msgid "Vectors are expanded vertically, except if <literal>targetrange</literal> has a height of exactly 1 row."
+msgstr ""
+
+#. FJCPf
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"bas_id541592232948567\n"
+"help.text"
+msgid "'Below the Value array is smaller than the TargetRange (remaining cells are emptied)"
+msgstr ""
+
+#. vuu9B
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"bas_id541592232948825\n"
+"help.text"
+msgid "'Below the Value and TargetRange have the same size"
+msgstr ""
+
+#. 4LFnH
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id731621689592755\n"
+"help.text"
+msgid "If you want to fill a single row with values, you can use the <literal>Offset</literal> function. In the example below, consider that <literal>arrData</literal> is a one-dimensional array:"
+msgstr ""
+
+#. gF7Gb
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id481593880373070\n"
+"help.text"
+msgid "Moves a given range of cells downwards by inserting empty rows. The current selection is not affected."
+msgstr ""
+
+#. 5qm5w
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id801637929435655\n"
+"help.text"
+msgid "Depending on the value of the <literal>wholerow</literal> argument the inserted rows can either span the width of the specified range or span all columns in the row."
+msgstr ""
+
+#. uvH4j
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id711593880370247\n"
+"help.text"
+msgid "This method returns a string representing the new location of the initial range."
+msgstr ""
+
+#. cvqws
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id811637929284110\n"
+"help.text"
+msgid "If the shifted range exceeds the sheet edges, then nothing happens."
+msgstr ""
+
+#. bUdZp
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id891593880376123\n"
+"help.text"
+msgid "<emph>range</emph>: The range above which rows will be inserted, as a string."
+msgstr ""
+
+#. fVYpB
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id941593880376566\n"
+"help.text"
+msgid "<emph>wholerow</emph>: If set to <literal>False</literal> (default), then the width of the inserted rows will be the same as the width of the specified <literal>range</literal>. Otherwise, the inserted row will span all columns in the sheet."
+msgstr ""
+
+#. rXzZX
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id551593880373045\n"
+"help.text"
+msgid "<emph>rows</emph>: The number of rows to be inserted. The default value is the height of the original <literal>range</literal>. The number of rows must be a positive number."
+msgstr ""
+
+#. dacHK
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"bas_id881637931053547\n"
+"help.text"
+msgid "' Moves the range \"A3:D3\" down by one row; affects only columns A to D"
+msgstr ""
+
+#. v4w3P
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"bas_id661637931232893\n"
+"help.text"
+msgid "' The inserted row spans all columns in the sheet"
+msgstr ""
+
+#. vsryg
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"bas_id291637931053897\n"
+"help.text"
+msgid "' Moves the range \"A3:D3\" down by five rows"
+msgstr ""
+
+#. pwuUG
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"bas_id501638218784265\n"
+"help.text"
+msgid "' Moves the range \"A3:D10\" down by two rows and shows the new location of the original range"
+msgstr ""
+
+#. hVfv3
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id481593880376255\n"
+"help.text"
+msgid "Deletes the leftmost columns of a given range and moves to the left all cells to the right of the affected range. The current selection is not affected."
+msgstr ""
+
+#. EzzWo
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id801637929460261\n"
+"help.text"
+msgid "Depending on the value of the <literal>wholecolumn</literal> argument the deleted columns can either span the height of the specified range or span all rows in the column."
+msgstr ""
+
+#. BXEkG
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id711593880371259\n"
+"help.text"
+msgid "This method returns a string representing the location of the remaining portion of the initial range. If all cells in the original range have been deleted, then an empty string is returned."
+msgstr ""
+
+#. CyRpL
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id891593880376205\n"
+"help.text"
+msgid "<emph>range</emph>: The range from which cells will be deleted, as a string."
+msgstr ""
+
+#. zWG3Y
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id941593880356026\n"
+"help.text"
+msgid "<emph>wholecolumn</emph>: If set to <literal>False</literal> (default), then the height of the deleted columns will be the same as the height of the specified <literal>range</literal>. Otherwise, the deleted columns will span all rows in the sheet."
+msgstr ""
+
+#. JLdBr
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id551593880373306\n"
+"help.text"
+msgid "<emph>columns</emph>: The number of columns to be deleted from the specified <literal>range</literal>. The default value is the width of the original <literal>range</literal>, which is also the maximum value of this argument."
+msgstr ""
+
+#. 8UycD
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"bas_id881637931064919\n"
+"help.text"
+msgid "' Deletes the range \"B3:B6\"; moves left all cells to the right"
+msgstr ""
+
+#. vM8hB
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"bas_id291637931056991\n"
+"help.text"
+msgid "' Deletes the first column in the range \"A3:D6\""
+msgstr ""
+
+#. FPVSg
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"bas_id661637931232569\n"
+"help.text"
+msgid "' The deleted columns (A to D) spans all rows in the sheet"
+msgstr ""
+
+#. TAB2b
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id481593880373529\n"
+"help.text"
+msgid "Deletes the topmost rows of a given range and moves upwards all cells below the affected range. The current selection is not affected."
+msgstr ""
+
+#. zkYo7
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id801637929435361\n"
+"help.text"
+msgid "Depending on the value of the <literal>wholerow</literal> argument the deleted rows can either span the width of the specified range or span all columns in the row."
+msgstr ""
+
+#. s9Nfb
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id711593880370299\n"
+"help.text"
+msgid "This method returns a string representing the location of the remaining portion of the initial range. If all cells in the original range have been deleted, then an empty string is returned."
+msgstr ""
+
+#. H5EtV
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id891593880376583\n"
+"help.text"
+msgid "<emph>range</emph>: The range from which cells will be deleted, as a string."
+msgstr ""
+
+#. JQtGb
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id941593880300966\n"
+"help.text"
+msgid "<emph>wholerow</emph>: If set to <literal>False</literal> (default), then the width of the deleted rows will be the same as the width of the specified <literal>range</literal>. Otherwise, the deleted row will span all columns in the sheet."
+msgstr ""
+
+#. ueo8E
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id551593880373265\n"
+"help.text"
+msgid "<emph>rows</emph>: The number of rows to be deleted from the specified <literal>range</literal>. The default value is the height of the original <literal>range</literal>, which is also the maximum value of this argument."
+msgstr ""
+
+#. jHP9x
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"bas_id881637931064667\n"
+"help.text"
+msgid "' Deletes the range \"A3:D3\"; moves all cells below it by one row up"
+msgstr ""
+
+#. Make5
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"bas_id291637931056647\n"
+"help.text"
+msgid "' Deletes the first row in the range \"A3:D6\""
+msgstr ""
+
+#. APQKA
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"bas_id661637931232493\n"
+"help.text"
+msgid "' The deleted rows spans all columns in the sheet"
+msgstr ""
+
+#. gKkbB
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id481593880372568\n"
+"help.text"
+msgid "Moves a given range of cells to the right by inserting empty columns. The current selection is not affected."
+msgstr ""
+
+#. CDi3E
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id801637929335255\n"
+"help.text"
+msgid "Depending on the value of the <literal>wholecolumn</literal> argument the inserted columns can either span the height of the specified range or span all rows in the column."
+msgstr ""
+
+#. Fh33o
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id711593880372560\n"
+"help.text"
+msgid "This method returns a string representing the new location of the initial range."
+msgstr ""
+
+#. pLAHD
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id811637929283210\n"
+"help.text"
+msgid "If the shifted range exceeds the sheet edges, then nothing happens."
+msgstr ""
+
+#. SeAGD
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id891593880370543\n"
+"help.text"
+msgid "<emph>range</emph>: The range which will have empty columns inserted to its left, as a string."
+msgstr ""
+
+#. KtD6Y
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id941593880373316\n"
+"help.text"
+msgid "<emph>wholecolumn</emph>: If set to <literal>False</literal> (default), then the height of the inserted columns will be the same as the height of the specified <literal>range</literal>. Otherwise, the inserted columns will span all rows in the sheet."
+msgstr ""
+
+#. fBzCG
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id5515938803791960\n"
+"help.text"
+msgid "<emph>columns</emph>: The number of columns to be inserted. The default value is the width of the original <literal>range</literal>."
+msgstr ""
+
+#. nmXTU
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"bas_id881637931052587\n"
+"help.text"
+msgid "' Moves the range \"A3:A6\" right by one column; affects only rows 3 to 6"
+msgstr ""
+
+#. 5mWBq
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"bas_id291637931053225\n"
+"help.text"
+msgid "' Moves the range \"A3:A6\" right by five columns"
+msgstr ""
+
+#. G53xT
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"bas_id661637931232548\n"
+"help.text"
+msgid "' The inserted column spans all rows in the sheet"
+msgstr ""
+
+#. FrC59
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id141595692394382\n"
+"help.text"
+msgid "Sorts the given range based on up to 3 columns/rows. The sorting order may vary by column/row. It returns a string representing the modified range of cells. The size of the modified area is fully determined by the size of the source area."
+msgstr ""
+
+#. MVGBC
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id171595692394598\n"
+"help.text"
+msgid "<emph>range</emph>: The range to be sorted, as a string."
+msgstr ""
+
+#. aenrK
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id171595692814163\n"
+"help.text"
+msgid "<emph>sortkeys</emph>: A scalar (if 1 column/row) or an array of column/row numbers starting from 1. The maximum number of keys is 3."
+msgstr ""
+
+#. aQF93
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id421595692962095\n"
+"help.text"
+msgid "<emph>sortorder</emph>: A scalar or an array of strings containing the values \"ASC\" (ascending), \"DESC\" (descending) or \"\" (which defaults to ascending). Each item is paired with the corresponding item in <literal>sortkeys</literal>. If the <literal>sortorder</literal> array is shorter than <literal>sortkeys</literal>, the remaining keys are sorted in ascending order."
+msgstr ""
+
+#. GVpuf
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id361595692394604\n"
+"help.text"
+msgid "<emph>destinationcell</emph>: The destination cell of the sorted range of cells, as a string. If a range is given, only its top-left cell is considered. By default the source Range is overwritten."
+msgstr ""
+
+#. QyaTf
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id441595693011034\n"
+"help.text"
+msgid "<emph>containsheader</emph>: When <literal>True</literal>, the first row/column is not sorted."
+msgstr ""
+
+#. AbVtY
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id241595693169032\n"
+"help.text"
+msgid "<emph>casesensitive</emph>: Only for string comparisons. Default = <literal>False</literal>"
+msgstr ""
+
+#. CL5Gm
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id1001595693326226\n"
+"help.text"
+msgid "<emph>sortcolumns</emph>: When <literal>True</literal>, the columns are sorted from left to right. Default = <literal>False</literal> : rows are sorted from top to bottom."
+msgstr ""
+
+#. LvjpD
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"bas_id641595692394484\n"
+"help.text"
+msgid "'Sort range based on columns A (ascending) and C (descending)"
+msgstr ""
+
+#. HyPhE
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"tit\n"
+"help.text"
+msgid "SFDocuments.Chart service"
+msgstr ""
+
+#. bv49k
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"bm_id681600788076499\n"
+"help.text"
+msgid "<variable id=\"ChartService\"><link href=\"text/sbasic/shared/03/sf_chart.xhp\" name=\"Chart service\"><literal>SFDocuments</literal>.<literal>Chart</literal> service</link></variable>"
+msgstr ""
+
+#. nPHDK
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"par_id181600788076612\n"
+"help.text"
+msgid "The <literal>Chart</literal> service provides a set of properties and methods to handle charts in Calc documents. With this service it is possible to:"
+msgstr ""
+
+#. uEEEZ
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"par_id301600788076785\n"
+"help.text"
+msgid "Access chart objects in Calc documents and manipulate their properties."
+msgstr ""
+
+#. rzioM
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"par_id1001600788076848\n"
+"help.text"
+msgid "Create and insert new charts into a Calc document."
+msgstr ""
+
+#. grjQS
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"par_id67160078807676\n"
+"help.text"
+msgid "Export charts as image files."
+msgstr ""
+
+#. mZuuF
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"hd_id331635273472588\n"
+"help.text"
+msgid "Chart names"
+msgstr ""
+
+#. QPAjE
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"par_id251635273489315\n"
+"help.text"
+msgid "Charts may have two different names:"
+msgstr ""
+
+#. GdHpK
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"par_id41635273536840\n"
+"help.text"
+msgid "An <emph>internal name</emph> given by %PRODUCTNAME as soon as the chart object is created (usually \"Object 1\", \"Object 2\" and so on)."
+msgstr ""
+
+#. 3zCYQ
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"par_id641635273537122\n"
+"help.text"
+msgid "A <emph>user-defined name</emph>, which can be defined by right-clicking the chart and choosing <menuitem>Name</menuitem> in the context menu."
+msgstr ""
+
+#. 6CV3D
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"par_id191635273980553\n"
+"help.text"
+msgid "The <literal>Chart</literal> service primarily uses the user-defined name to access a chart object. If it does not exist, than the internal name is used."
+msgstr ""
+
+#. yYSdL
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"hd_id281600788076359\n"
+"help.text"
+msgid "Service invocation"
+msgstr ""
+
+#. jkE4f
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"par_id141609955500101\n"
+"help.text"
+msgid "Before using the <literal>Chart</literal> service the <literal>ScriptForge</literal> library needs to be loaded or imported:"
+msgstr ""
+
+#. LvW6m
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"par_id321614902851541\n"
+"help.text"
+msgid "The <literal>Chart</literal> service is instantiated from a <literal>Calc</literal> service instance either using the <literal>Charts</literal> or <literal>CreateChart</literal> methods."
+msgstr ""
+
+#. QtZnt
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"par_id531635274285114\n"
+"help.text"
+msgid "The example below creates a <literal>Chart</literal> service instance from an existing chart in the current Calc document:"
+msgstr ""
+
+#. Cqd8G
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"par_id851635274721129\n"
+"help.text"
+msgid "The following example instantiate the <literal>Chart</literal> service by creating a new chart object based on the data contained in the range \"Sheet1.A1:C10\"."
+msgstr ""
+
+#. BZ2EU
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"par_id881635275036852\n"
+"help.text"
+msgid "Read the <link href=\"text/sbasic/shared/03/sf_calc.xhp#CreateChart\" name=\"CreateChart_link\">CreateChart</link> method description to learn more about its arguments."
+msgstr ""
+
+#. gjYRg
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"par_id131635275172617\n"
+"help.text"
+msgid "The examples above can be written in Python as follows:"
+msgstr ""
+
+#. QxXb9
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"hd_id711600788076834\n"
+"help.text"
+msgid "Properties"
+msgstr ""
+
+#. z42Tx
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"par_id461600788076917\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. 5RCfg
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"par_id221600788076591\n"
+"help.text"
+msgid "Readonly"
+msgstr ""
+
+#. 5Ckhe
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"par_id761600788076328\n"
+"help.text"
+msgid "Type"
+msgstr ""
+
+#. EJsLr
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"par_id67160078807636\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. 5yKq5
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"par_id311600788076756\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. BURxX
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"par_id441600788076826\n"
+"help.text"
+msgid "Specifies the chart type as a string that can assume one of the following values: \"Pie\", \"Bar\", \"Donut\", \"Column\", \"Area\", \"Line\", \"XY\", \"Bubble\", \"Net\"."
+msgstr ""
+
+#. MEEhi
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"par_id49160078807654\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. qaDDb
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"par_id81600788076419\n"
+"help.text"
+msgid "When <literal>True</literal> indicates that the chart is three-dimensional and each series is arranged in the z-direction."
+msgstr ""
+
+#. YkDSU
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"par_id471635276257118\n"
+"help.text"
+msgid "When <literal>False</literal> series are arranged considering only two dimensions."
+msgstr ""
+
+#. qEBab
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"par_id711600788076534\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. gk8ns
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"par_id541600788076645\n"
+"help.text"
+msgid "Specifies if the chart is displayed with 3D elements. If the value is a string, it must be either \"Bar\", \"Cylinder\", \"Cone\" or \"Pyramid\"."
+msgstr ""
+
+#. HgqhX
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"par_id541600788076141\n"
+"help.text"
+msgid "If the boolean <literal>True</literal> value is specified, then the chart is displayed using 3D bars."
+msgstr ""
+
+#. vDs4z
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"par_id891600788076190\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. m224E
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"par_id91600788076674\n"
+"help.text"
+msgid "Specifies how much pie segments are offset from the chart center as a percentage of the radius. Applicable to pie and donut charts only."
+msgstr ""
+
+#. hbjwH
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"par_id561633021747903\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. AaBHr
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"par_id831633021749007\n"
+"help.text"
+msgid "When <literal>True</literal>, specifies a filled net chart. Applicable to net charts only."
+msgstr ""
+
+#. xgCB2
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"par_id391600788076253\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. 8YDHE
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"par_id21600788076541\n"
+"help.text"
+msgid "Specifies whether or not the chart has a legend."
+msgstr ""
+
+#. BNBDQ
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"par_id211600788076138\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. MLPCx
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"par_id521600788076371\n"
+"help.text"
+msgid "When <literal>True</literal>, chart series are stacked and each category sums up to 100%. Applicable to Area, Bar, Bubble, Column and Net charts."
+msgstr ""
+
+#. yGCZ7
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"par_id21600788076758\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. Gbsst
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"par_id781600788076694\n"
+"help.text"
+msgid "When <literal>True</literal>, chart series are stacked. Applicable to Area, Bar, Bubble, Column and Net charts."
+msgstr ""
+
+#. 9Dnwe
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"par_id261600788076841\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. VwMyU
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"par_id11600788076757\n"
+"help.text"
+msgid "Specifies the main title of the chart."
+msgstr ""
+
+#. FGSKV
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"par_id531600789141795\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. eH3Ag
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"par_id301600789141619\n"
+"help.text"
+msgid "Specifies the title of the X axis."
+msgstr ""
+
+#. mmRtZ
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"par_id541600789286532\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. scox2
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"par_id701600789286280\n"
+"help.text"
+msgid "Specifies the title of the Y axis."
+msgstr ""
+
+#. CRLf5
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"par_id941608709527698\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. YCRTC
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"par_id100100678952791\n"
+"help.text"
+msgid "UNO Object"
+msgstr ""
+
+#. cDJES
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"par_id661300789527859\n"
+"help.text"
+msgid "Returns the object representing the chart, which is an instance of the <link href=\"https://docs.libreoffice.org/sc/html/classScChartObj.html\" name=\"ScChartObj\"><literal>ScChartObj</literal></link> class."
+msgstr ""
+
+#. kDUCf
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"par_id941600789527698\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. LAgXE
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"par_id100160078952791\n"
+"help.text"
+msgid "UNO Object"
+msgstr ""
+
+#. yRYAq
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"par_id631600789527859\n"
+"help.text"
+msgid "Returns the <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1chart_1_1XDiagram.html\" name=\"XDiagram\"><literal>com.sun.star.chart.XDiagram</literal></link> object representing the diagram of the chart."
+msgstr ""
+
+#. CAXYe
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"par_id941600789527099\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. yh7k9
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"par_id100160078953251\n"
+"help.text"
+msgid "UNO Object"
+msgstr ""
+
+#. FpeAy
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"par_id631600789522587\n"
+"help.text"
+msgid "Returns the <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1drawing_1_1XShape.html\" name=\"XShape\"><literal>com.sun.star.drawing.XShape</literal></link> object representing the shape of the chart."
+msgstr ""
+
+#. DdVs9
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"par_id941600789527208\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. winTd
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"par_id100160078952007\n"
+"help.text"
+msgid "UNO Object"
+msgstr ""
+
+#. 5GESc
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"par_id631600789527364\n"
+"help.text"
+msgid "Returns the <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1table_1_1XTableChart.html\" name=\"XTableChart\"><literal>com.sun.star.table.XTableChart</literal></link> object representing the data being displayed in the chart."
+msgstr ""
+
+#. A278T
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"hd_id581635335807782\n"
+"help.text"
+msgid "Creating a chart"
+msgstr ""
+
+#. EK2E7
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"par_id231635335826090\n"
+"help.text"
+msgid "Consider the following data in the range \"A1:B6\" of a sheet named \"Report\"."
+msgstr ""
+
+#. ZSw7Y
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"par_id911635336313498\n"
+"help.text"
+msgid "The examples below in Basic and Python show how to create a line chart from this data with legends."
+msgstr ""
+
+#. whbDd
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"par_id931635338174647\n"
+"help.text"
+msgid "The chart does not need to be created in the same sheet where the data is located. It can be created in any existing sheet in the current file by specifying the sheet name in the second argument of the <literal>CreateChart</literal> method."
+msgstr ""
+
+#. RtuMk
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"hd_id501582887473754\n"
+"help.text"
+msgid "Methods"
+msgstr ""
+
+#. mNZFS
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"par_id891611613601554\n"
+"help.text"
+msgid "List of Methods in the Chart Service"
+msgstr ""
+
+#. WfVxL
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"par_id93158919969864\n"
+"help.text"
+msgid "Saves the chart as an image file in a specified location. Returns <literal>True</literal> if the image file could be successfully created."
+msgstr ""
+
+#. SAtUt
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"par_id821591631203996\n"
+"help.text"
+msgid "<emph>filename</emph>: Identifies the path and file name where the image will be saved. It must follow the notation defined in <literal>SF_FileSystem.FileNaming</literal>."
+msgstr ""
+
+#. 2YEEE
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"par_id821591631203116\n"
+"help.text"
+msgid "<emph>imagetype</emph>: The name of the image type to be created. The following values are accepted: \"gif\", \"jpeg\", \"png\" (default), \"svg\" and \"tiff\"."
+msgstr ""
+
+#. XRASx
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"par_id821591631203133\n"
+"help.text"
+msgid "<emph>overwrite</emph>: Specifies if the destination file can be overwritten (Default = <literal>False</literal>)."
+msgstr ""
+
+#. MCGBa
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"par_id93158919969165\n"
+"help.text"
+msgid "Changes the position of the chart in the current sheet and modifies its width and height. Returns <literal>True</literal> if resizing was successful."
+msgstr ""
+
+#. aMKE5
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"par_id821591631200626\n"
+"help.text"
+msgid "<emph>xpos, ypos:</emph> Specify the new X and Y positions of the chart. If any of these values are omitted or if negative values are provided, the corresponding positions are left unchanged."
+msgstr ""
+
+#. qvsYR
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"par_id821591631204288\n"
+"help.text"
+msgid "<emph>width:</emph> Specify the new width of the chart. If this argument is omitted or if a negative value is provided, the chart width is left unchanged."
+msgstr ""
+
+#. nGioo
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"par_id821591631203208\n"
+"help.text"
+msgid "<emph>height:</emph> Specify the new height of the chart. If this argument is omitted or if a negative value is provided, the chart height is left unchanged."
+msgstr ""
+
+#. EyY7j
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"par_id301635340527472\n"
+"help.text"
+msgid "All arguments are provided as integer values that correspond to 1/100 of a millimeter."
+msgstr ""
+
+#. h7zov
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"bas_id431635340711712\n"
+"help.text"
+msgid "' Changes only X and Y position"
+msgstr ""
+
+#. VHc2V
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"bas_id241635340728398\n"
+"help.text"
+msgid "' Changes only the chart width and height"
+msgstr ""
+
+#. BEAYa
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"bas_id201635340749006\n"
+"help.text"
+msgid "' Keyword arguments are supported"
+msgstr ""
+
+#. zNFY6
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"tit\n"
+"help.text"
+msgid "SFDatabases.Database service"
+msgstr ""
+
+#. K7nuj
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"hd_id371587913266310\n"
+"help.text"
+msgid "<variable id=\"DatabaseService\"><link href=\"text/sbasic/shared/03/sf_database.xhp\" name=\"Database service\"><literal>SFDatabases</literal>.<literal>Database</literal> service</link></variable>"
+msgstr ""
+
+#. RByov
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id891599407198144\n"
+"help.text"
+msgid "The <literal>Database</literal> service provides access to databases either embedded or described in Base documents. This service provides methods to:"
+msgstr ""
+
+#. 7dqXS
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id551615386924481\n"
+"help.text"
+msgid "Get access to data in database tables."
+msgstr ""
+
+#. 29pT5
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id551615386924285\n"
+"help.text"
+msgid "Run <literal>SELECT</literal> queries and perform aggregate functions."
+msgstr ""
+
+#. LYsPD
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id551615386924111\n"
+"help.text"
+msgid "Run SQL action statements such as <literal>INSERT</literal>, <literal>UPDATE</literal>, <literal>DELETE</literal>, etc."
+msgstr ""
+
+#. 7CSTo
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id811599407236602\n"
+"help.text"
+msgid "Each instance of the <literal>Database</literal> service represents a single database and gives access to its tables, queries and data."
+msgstr ""
+
+#. JopCB
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id111625692871642\n"
+"help.text"
+msgid "This service does not provide access to forms or reports in the Base document that contains the database. To access forms in a Base document, refer to the method <link href=\"text/sbasic/shared/03/sf_base.xhp#FormDocuments\" name=\"FormDocuments\"><literal>FormDocuments</literal></link> of the <literal>Base</literal> service."
+msgstr ""
+
+#. Snu6R
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id231615386789950\n"
+"help.text"
+msgid "All exchanges between this service and the database are done using SQL only."
+msgstr ""
+
+#. MiGUE
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id121599407322804\n"
+"help.text"
+msgid "SQL statements may be run in <emph>direct</emph> or <emph>indirect</emph> mode. In direct mode the statement is transferred to the database engine without any syntax checking or review."
+msgstr ""
+
+#. Kg5Cn
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id681599407189019\n"
+"help.text"
+msgid "The provided interfaces include simple tables and queries lists, as well as access to database data."
+msgstr ""
+
+#. 644XA
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id891599407280007\n"
+"help.text"
+msgid "To make SQL statements more readable, you may use square brackets \"[ ]\" to enclose names of tables, queries and fields instead of using other enclosing characters that may be exclusive to certain Relational Database Management Systems (RDBMS). But beware that enclosing characters are mandatory in this context."
+msgstr ""
+
+#. CAFnK
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"hd_id91587913266988\n"
+"help.text"
+msgid "Service invocation"
+msgstr ""
+
+#. 8ASCW
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id141609955500101\n"
+"help.text"
+msgid "Before using the <literal>Database</literal> service the <literal>ScriptForge</literal> library needs to be loaded or imported:"
+msgstr ""
+
+#. Cr4oo
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id541599408159668\n"
+"help.text"
+msgid "To create a instance of the <literal>Database</literal> service you can use the <literal>CreateScriptService</literal> method:"
+msgstr ""
+
+#. ArhV5
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id551625693442959\n"
+"help.text"
+msgid "In the syntax described above you can use either \"SFDatabases.Database\" or simply \"Database\" as the first argument of the <literal>CreateScriptService</literal> method."
+msgstr ""
+
+#. S7oNc
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id111615146818256\n"
+"help.text"
+msgid "<emph>filename</emph>: The name of the Base file. Must be expressed using <literal>SF_FileSystem.FileNaming</literal> notation."
+msgstr ""
+
+#. fUxEZ
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id771615146944307\n"
+"help.text"
+msgid "<emph>registrationname</emph>: The name of a registered database. If <literal>filename</literal> is provided, this argument should not be used."
+msgstr ""
+
+#. J2NA3
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id491615147048748\n"
+"help.text"
+msgid "Conversely, if a <literal>registrationname</literal> is specified, the <literal>filename</literal> parameter should not be defined."
+msgstr ""
+
+#. YQF4D
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id841615147168279\n"
+"help.text"
+msgid "<emph>readonly</emph>: Determines if the database will be opened as readonly (Default = <literal>True</literal>)."
+msgstr ""
+
+#. 9FEG5
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id291615147236001\n"
+"help.text"
+msgid "<emph>user, password</emph>: Additional connection parameters to the database server."
+msgstr ""
+
+#. ZG5pH
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"bas_id871625698095504\n"
+"help.text"
+msgid "' Run queries, SQL statements, ..."
+msgstr ""
+
+#. uWJrQ
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"pyc_id791625698186675\n"
+"help.text"
+msgid "# Run queries, SQL statements, ..."
+msgstr ""
+
+#. Z2VVg
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"hd_id771615147491563\n"
+"help.text"
+msgid "Accessing Databases with the UI Service"
+msgstr ""
+
+#. 5Kifs
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id901599408410712\n"
+"help.text"
+msgid "It is also possible to access the database associated with a Base document using the <link href=\"text/sbasic/shared/03/sf_ui.xhp\" name=\"UI Service\"><literal>ScriptForge.UI</literal></link> service, as shown in the examples below:"
+msgstr ""
+
+#. T6mkQ
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"bas_id631615147843278\n"
+"help.text"
+msgid "' User and password are supplied below, if needed"
+msgstr ""
+
+#. F43tz
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"bas_id921599408791887\n"
+"help.text"
+msgid "' Run queries, SQL statements, ..."
+msgstr ""
+
+#. FsCDs
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"pyc_id731625699527917\n"
+"help.text"
+msgid "# User and password are supplied below, if needed"
+msgstr ""
+
+#. BDNDo
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"pyc_id201625699438702\n"
+"help.text"
+msgid "# Run queries, SQL statements, ..."
+msgstr ""
+
+#. 2Znjy
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id361619188184750\n"
+"help.text"
+msgid "The <link href=\"text/sbasic/shared/03/sf_base.xhp#GetDatabase\" name=\"GetDatabase method\">GetDatabase</link> method used in the example above is part of ScriptForge's <literal>Base</literal> service."
+msgstr ""
+
+#. EF9Lc
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"hd_id841587913266618\n"
+"help.text"
+msgid "Properties"
+msgstr ""
+
+#. x4Z5A
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id521587913266568\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. QUrYT
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id421587913266368\n"
+"help.text"
+msgid "Readonly"
+msgstr ""
+
+#. 3kQCm
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id631587914939732\n"
+"help.text"
+msgid "Type"
+msgstr ""
+
+#. RYuuo
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id951587913266220\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. BzLQb
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id651587913266754\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. up8WT
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id421587914989890\n"
+"help.text"
+msgid "Array of strings"
+msgstr ""
+
+#. dGoYp
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id351587913266349\n"
+"help.text"
+msgid "The list of stored queries."
+msgstr ""
+
+#. bfdLR
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id931599409717463\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. 2DDTs
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id71599409717945\n"
+"help.text"
+msgid "Array of strings"
+msgstr ""
+
+#. rGTvw
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id341599409717612\n"
+"help.text"
+msgid "The list of stored tables."
+msgstr ""
+
+#. u5YE4
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id741599409777967\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. evuSw
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id551599409777759\n"
+"help.text"
+msgid "The UNO object representing the current database connection."
+msgstr ""
+
+#. w9YZG
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id271599409887585\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. NeTGg
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id861599409887284\n"
+"help.text"
+msgid "The UNO object representing the metadata describing the database system attributes."
+msgstr ""
+
+#. ApsdK
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id231614360519973\n"
+"help.text"
+msgid "List of Methods in the Database Service"
+msgstr ""
+
+#. emrA2
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id201587913266596\n"
+"help.text"
+msgid "Closes the current database connection."
+msgstr ""
+
+#. nwbSh
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id13159655484952\n"
+"help.text"
+msgid "Computes the given aggregate function on a field or expression belonging to a table."
+msgstr ""
+
+#. E9LsG
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id101615148468548\n"
+"help.text"
+msgid "Optionally, a SQL <literal>WHERE</literal> clause can be specified as a filter that will be applied prior to the aggregate function."
+msgstr ""
+
+#. AKqei
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id441596554849949\n"
+"help.text"
+msgid "<emph>expression</emph>: A SQL expression in which the field names are surrounded with square brackets."
+msgstr ""
+
+#. c2Rzq
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id381596554849698\n"
+"help.text"
+msgid "<emph>tablename</emph>: A table name (without square brackets)."
+msgstr ""
+
+#. cjGPp
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id521596554849185\n"
+"help.text"
+msgid "<emph>criteria</emph>: A <literal>WHERE</literal> clause without the \"WHERE\" keyword, in which field names are surrounded with square brackets."
+msgstr ""
+
+#. AGBFS
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id781615150306678\n"
+"help.text"
+msgid "The example below assumes the file <literal>Employees.odb</literal> has a table named <literal>EmployeeData</literal>."
+msgstr ""
+
+#. KAqZB
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"bas_id871615150277916\n"
+"help.text"
+msgid "' Counts the number of employees in the table"
+msgstr ""
+
+#. AVstM
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"bas_id291615150373387\n"
+"help.text"
+msgid "' Returns the sum of all salaries in the table"
+msgstr ""
+
+#. cMiVJ
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"bas_id931615150423062\n"
+"help.text"
+msgid "' Below are some examples of how tables can be filtered"
+msgstr ""
+
+#. kCmmv
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id41599488113961\n"
+"help.text"
+msgid "Computes a SQL expression on a single record returned by a <literal>WHERE</literal> clause defined by the <literal>Criteria</literal> parameter."
+msgstr ""
+
+#. 8yUaz
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id601615381471954\n"
+"help.text"
+msgid "If the query returns multiple records, only the first one is considered. Use the <literal>OrderClause</literal> parameter to determine how query results are sorted."
+msgstr ""
+
+#. tNnSe
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id671599488113986\n"
+"help.text"
+msgid "<emph>expression</emph>: A SQL expression in which the field names are surrounded with square brackets."
+msgstr ""
+
+#. eGbAr
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id441599488113247\n"
+"help.text"
+msgid "<emph>tablename</emph>: A table name (without square brackets)."
+msgstr ""
+
+#. F9xaH
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id40159948811316\n"
+"help.text"
+msgid "<emph>criteria</emph>: A <literal>WHERE</literal> clause without the \"WHERE\" keyword, in which field names are surrounded with square brackets."
+msgstr ""
+
+#. SusUk
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id71599488689029\n"
+"help.text"
+msgid "<emph>orderclause</emph>: An <literal>ORDER BY</literal> clause without the \"ORDER BY\" keywords. Field names should be surrounded with square brackets."
+msgstr ""
+
+#. CPoBx
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id481599489278579\n"
+"help.text"
+msgid "Stores the contents of a table or the results of a <literal>SELECT</literal> query or of an SQL statement in a two-dimensional array. The first index in the array corresponds to the rows and the second index refers to the columns."
+msgstr ""
+
+#. GXji8
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id821615384762425\n"
+"help.text"
+msgid "An upper limit can be specified to the number of returned rows. Optionally column names may be inserted in the first row of the array."
+msgstr ""
+
+#. gX7AY
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id271599490209915\n"
+"help.text"
+msgid "The returned array will be empty if no rows are returned and the column headers are not required."
+msgstr ""
+
+#. y5u8i
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id451599489278429\n"
+"help.text"
+msgid "<emph>sqlcommand</emph>: A table or query name (without square brackets) or a <literal>SELECT</literal> SQL statement."
+msgstr ""
+
+#. xAbDx
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id271599489278141\n"
+"help.text"
+msgid "<emph>directsql</emph>: When <literal>True</literal>, the SQL command is sent to the database engine without pre-analysis. Default is <literal>False</literal>. This argument is ignored for tables. For queries, the applied option is the one set when the query was defined."
+msgstr ""
+
+#. DEzQD
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id941599489278747\n"
+"help.text"
+msgid "<emph>header</emph>: When <literal>True</literal>, the first row of the returned array contains the column headers."
+msgstr ""
+
+#. P2SMx
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id591599489278926\n"
+"help.text"
+msgid "<emph>maxrows</emph>: The maximum number of rows to return. The default is zero, meaning there is no limit to the number of returned rows."
+msgstr ""
+
+#. 3XZPf
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id721615385125947\n"
+"help.text"
+msgid "Below are a few examples of how the <literal>GetRows</literal> method can be used:"
+msgstr ""
+
+#. zkeuW
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"bas_id171615385196045\n"
+"help.text"
+msgid "' Returns all rows in the table with column headers"
+msgstr ""
+
+#. eFmmE
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"bas_id371615385230721\n"
+"help.text"
+msgid "' Returns the first 50 employee records ordered by the 'FirstName' field"
+msgstr ""
+
+#. FMBEy
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id31599490609759\n"
+"help.text"
+msgid "Executes an action query of an SQL statement such as creating a table, as well as inserting, updating and deleting records."
+msgstr ""
+
+#. gyiQy
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id331615385491925\n"
+"help.text"
+msgid "The method returns <literal>True</literal> when successful."
+msgstr ""
+
+#. G5bDE
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id21599490810021\n"
+"help.text"
+msgid "The <literal>RunSql</literal> method is rejected with an error message in case the database was previously opened in read-only mode."
+msgstr ""
+
+#. WnUpF
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id701599490609473\n"
+"help.text"
+msgid "<emph>sqlcommand</emph>: A query name (without square brackets) or a SQL statement."
+msgstr ""
+
+#. uNMDN
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id51599490609377\n"
+"help.text"
+msgid "<emph>directsql</emph>: When <literal>True</literal>, the SQL command is sent to the database engine without pre-analysis. (Default = <literal>False</literal>). For queries, the applied option is the one set when the query was defined."
+msgstr ""
+
+#. BC4Sc
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"tit\n"
+"help.text"
+msgid "SFDialogs.Dialog service"
+msgstr ""
+
+#. LzQoS
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"bm_id781582391760253\n"
+"help.text"
+msgid "<variable id=\"dlg_h1\"><link href=\"text/sbasic/shared/03/sf_dialog.xhp\" name=\"SFDialogs.Dialog\"><literal>SFDialogs</literal>.<literal>Dialog</literal> service</link></variable>"
+msgstr ""
+
+#. ny8EV
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id931583589764919\n"
+"help.text"
+msgid "The <literal>Dialog</literal> service contributes to the management of dialogs created with the Basic <link href=\"text/sbasic/guide/create_dialog.xhp\" name=\"Dialog Editor\">Dialog Editor</link>. Each instance of the current class represents a single dialog box displayed to the user."
+msgstr ""
+
+#. vxEvV
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id831598110550771\n"
+"help.text"
+msgid "A dialog box can be displayed in modal or in non-modal modes."
+msgstr ""
+
+#. LVjBj
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id221598110444025\n"
+"help.text"
+msgid "In modal mode, the box is displayed and the execution of the macro process is suspended until one of the OK or Cancel buttons is pressed. In the meantime, user actions executed on the box can trigger specific actions."
+msgstr ""
+
+#. FFTSj
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id981598110463521\n"
+"help.text"
+msgid "In non-modal mode, the dialog box is \"floating\" on the user desktop and the execution of the macro process continues normally. A non-modal dialog closes when it is terminated with the <literal>Terminate()</literal> method or when the %PRODUCTNAME session ends. The window close button is inactive in non-modal dialogs."
+msgstr ""
+
+#. GrpyR
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id721598110472337\n"
+"help.text"
+msgid "A dialog box disappears from memory after its explicit termination."
+msgstr ""
+
+#. asacX
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id891598188164936\n"
+"help.text"
+msgid "The <literal>SFDialogs.Dialog</literal> service is closely related to the <literal>SFDialogs.DialogControl</literal> service."
+msgstr ""
+
+#. CByHp
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"hd_id581582885621841\n"
+"help.text"
+msgid "Service invocation and usage"
+msgstr ""
+
+#. FfZWj
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id141609955500101\n"
+"help.text"
+msgid "Before using the <literal>Dialog</literal> service the <literal>ScriptForge</literal> library needs to be loaded or imported:"
+msgstr ""
+
+#. S8GrJ
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id361598174756160\n"
+"help.text"
+msgid "The <literal>Dialog</literal> service is invoked through the <literal>CreateScriptService</literal> method. It requires three positional arguments to specify the dialog box to activate:"
+msgstr ""
+
+#. Ntzqh
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id31612271944733\n"
+"help.text"
+msgid "<emph>Container</emph>: \"<link href=\"text/sbasic/shared/03131900.xhp\" name=\"GlobalScope specifier\"><literal>GlobalScope</literal></link>\" for preinstalled libraries or a window name as defined by <link href=\"text/sbasic/shared/03/sf_ui.xhp\" name=\"ScriptForge.UI\"><literal>ScriptForge.UI</literal></link> service. Empty string \"\" default value stands for the current document."
+msgstr ""
+
+#. juLgm
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id311612271947124\n"
+"help.text"
+msgid "<emph>Library</emph>: The case-sensitive name of a library contained in the container. Default value is \"Standard\"."
+msgstr ""
+
+#. FSp5N
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id821612271946316\n"
+"help.text"
+msgid "<emph>DialogName</emph>: A case-sensitive string designating the dialog."
+msgstr ""
+
+#. r5vY5
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id761620142701399\n"
+"help.text"
+msgid "Below %PRODUCTNAME Basic and Python examples are displaying the <literal>dlgConsole</literal> dialog that belongs to <literal>ScriptForge</literal> shared library:"
+msgstr ""
+
+#. mqjFF
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"bas_id321598171269873\n"
+"help.text"
+msgid "'... controls initialization goes here..."
+msgstr ""
+
+#. yn6sy
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"bas_id471598176518738\n"
+"help.text"
+msgid "'Default mode = Modal"
+msgstr ""
+
+#. h9a9G
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"bas_id551598171288547\n"
+"help.text"
+msgid "'... Process controls and do what is needed here"
+msgstr ""
+
+#. VD35X
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id601619622310089\n"
+"help.text"
+msgid "Or using Python:"
+msgstr ""
+
+#. knENA
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"pyc_id41619622700314\n"
+"help.text"
+msgid "# ... controls initialization goes here..."
+msgstr ""
+
+#. 2PTBU
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"pyc_id661611699964814\n"
+"help.text"
+msgid "# Default mode is Modal"
+msgstr ""
+
+#. ABoA2
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"pyc_id681619619965191\n"
+"help.text"
+msgid "# ... Process controls and do what is needed here"
+msgstr ""
+
+#. eehkB
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id951598174966322\n"
+"help.text"
+msgid "Alternatively a <literal>Dialog</literal> instance can be retrieved via the <literal>SFDialogs.DialogEvent</literal> service, providing that the dialog was initiated with the <literal>Dialog</literal> service. <literal>DialogEvent</literal> returns the <literal>SFDialogs.Dialog</literal> service instance that triggered the event."
+msgstr ""
+
+#. QBG5g
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id741619625211462\n"
+"help.text"
+msgid "with Python:"
+msgstr ""
+
+#. n72Hv
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id251598176312571\n"
+"help.text"
+msgid "Note that in previous examples, the prefix <literal>\"SFDialogs.\"</literal> may be omitted when deemed appropriate."
+msgstr ""
+
+#. nXGkZ
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"hd_id651583668365757\n"
+"help.text"
+msgid "Properties"
+msgstr ""
+
+#. zVLEC
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id871583668386455\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. FBCFG
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id491583668386455\n"
+"help.text"
+msgid "ReadOnly"
+msgstr ""
+
+#. ByVDE
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id271583668474014\n"
+"help.text"
+msgid "Type"
+msgstr ""
+
+#. 8AUBJ
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id401583668386455\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. iZZec
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id371583668519172\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. av994
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id771583668386455\n"
+"help.text"
+msgid "Value = 1. An OK button was pressed."
+msgstr ""
+
+#. GKcTG
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id541583839708548\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. z4BZ4
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id731583839708412\n"
+"help.text"
+msgid "Value = 0. A Cancel button was pressed."
+msgstr ""
+
+#. cThsX
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id761584027709516\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. 48bDT
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id971584027709752\n"
+"help.text"
+msgid "Specify the title of the dialog."
+msgstr ""
+
+#. 2pjyZ
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id31583839767743\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. 3Rypn
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id111583839767195\n"
+"help.text"
+msgid "Specify the height of the dialog box."
+msgstr ""
+
+#. KD2zy
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id771583839920487\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. ABrxD
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id451583839920858\n"
+"help.text"
+msgid "Specifies if the dialog box is currently in execution in modal mode."
+msgstr ""
+
+#. sA5Nj
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id571588333908716\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. JoAYu
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id721588333908708\n"
+"help.text"
+msgid "The name of the dialog"
+msgstr ""
+
+#. jcbwB
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id501583774433513\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. Tfrah
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id151598177605296\n"
+"help.text"
+msgid "A dialog may have several pages that can be traversed by the user step by step. The Page property of the Dialog object defines which page of the dialog is active."
+msgstr ""
+
+#. FZG3n
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id271588334016191\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. 3sRE5
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id251588334016874\n"
+"help.text"
+msgid "Specify if the dialog box is visible on the desktop. By default it is not visible until the Execute() method is run and visible afterwards."
+msgstr ""
+
+#. w6DwG
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id451598177924437\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. W2CkE
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id191598177924897\n"
+"help.text"
+msgid "The UNO object representing the dialog model. Refer to <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1awt_1_1XControlModel.html\" name=\"XControlModel interface\">XControlModel</link> and <link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1awt_1_1UnoControlDialogModel-members.html\" name=\"css.awt.UnoControlDialogModel\">UnoControlDialogModel</link> in Application Programming Interface (API) documentation for detailed information."
+msgstr ""
+
+#. YFYi4
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id811598178083501\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. bmedG
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id731598178083442\n"
+"help.text"
+msgid "The UNO object representing the dialog view. Refer to <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1awt_1_1XControlModel.html\" name=\"XControl interface\">XControl</link> and <link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1awt_1_1UnoControlDialog-members.html\" name=\"UnoControlDialog interface\">UnoControlDialog</link> in Application Programming Interface (API) documentation for detailed information."
+msgstr ""
+
+#. S4DWL
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id31385839767743\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. G6Qsw
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id111583839717695\n"
+"help.text"
+msgid "Specify the width of the dialog box."
+msgstr ""
+
+#. q8eyc
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"hd_id421612628828054\n"
+"help.text"
+msgid "Event properties"
+msgstr ""
+
+#. tn52Y
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id41612629140856\n"
+"help.text"
+msgid "Returns a URI string with the reference to the script triggered by the event. Read its specification in the <link href=\"https://wiki.documentfoundation.org/Documentation/DevGuide/Scripting_Framework#Scripting_Framework_URI_Specification\" name=\"URI specification\">scripting framework URI specification</link>."
+msgstr ""
+
+#. XCC7C
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id961612628879819\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. V3bin
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id401612628879819\n"
+"help.text"
+msgid "ReadOnly"
+msgstr ""
+
+#. uW85z
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id281612628879819\n"
+"help.text"
+msgid "Basic IDE Description"
+msgstr ""
+
+#. dFkbN
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id111612629836630\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. aKBvg
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id1001612629836902\n"
+"help.text"
+msgid "When receiving focus"
+msgstr ""
+
+#. 4FBaJ
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id291612629836294\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. 8U7FZ
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id62161262983683\n"
+"help.text"
+msgid "When losing focus"
+msgstr ""
+
+#. wBCKi
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id81612629836634\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. CK5vU
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id881612629836744\n"
+"help.text"
+msgid "Key pressed"
+msgstr ""
+
+#. gXJGu
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id591612629836830\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. CJwi7
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id161612629836775\n"
+"help.text"
+msgid "Key released"
+msgstr ""
+
+#. wS7GH
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id891612629836630\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. GcDU7
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id461612629836679\n"
+"help.text"
+msgid "Mouse moved while key presses"
+msgstr ""
+
+#. eUS49
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id131612629836291\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. QrByH
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id151612629836151\n"
+"help.text"
+msgid "Mouse inside"
+msgstr ""
+
+#. CRGTF
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id211612629836725\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. 69s4B
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id361612629836624\n"
+"help.text"
+msgid "Mouse outside"
+msgstr ""
+
+#. ojLRr
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id311612629836481\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. XaS8A
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id721612629836752\n"
+"help.text"
+msgid "Mouse moved"
+msgstr ""
+
+#. MnMUF
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id981612629836116\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. NtqPz
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id381612629836635\n"
+"help.text"
+msgid "Mouse button pressed"
+msgstr ""
+
+#. czknv
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id711612629836704\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. J2uzg
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id35161262983642\n"
+"help.text"
+msgid "Mouse button released"
+msgstr ""
+
+#. gTQjc
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id921606472825856\n"
+"help.text"
+msgid "Methods"
+msgstr ""
+
+#. DiCyL
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id871583933076448\n"
+"help.text"
+msgid "Set the focus on the current <literal>Dialog</literal> instance. Return <literal>True</literal> if focusing was successful."
+msgstr ""
+
+#. 7QdPA
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id151598178880227\n"
+"help.text"
+msgid "This method is called from a dialog or control event, or when a dialog is displayed in non-modal mode."
+msgstr ""
+
+#. uoBhE
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id811620109056270\n"
+"help.text"
+msgid "Python and %PRODUCTNAME Basic examples both assume that the dialog is stored in current document's <literal>Standard</literal> library."
+msgstr ""
+
+#. 7VrwE
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id391651225506119\n"
+"help.text"
+msgid "Centers the current dialog instance in the middle of a parent window. Without arguments, the method centers the dialog in the middle of the current window."
+msgstr ""
+
+#. xEJEH
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id391651552206119\n"
+"help.text"
+msgid "Returns <literal>True</literal> when successful."
+msgstr ""
+
+#. Woksx
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id1001585441257789\n"
+"help.text"
+msgid "<emph>Parent</emph>: An optional object that can be either …"
+msgstr ""
+
+#. DCeY9
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id412598177970993\n"
+"help.text"
+msgid "a ScriptForge dialog object"
+msgstr ""
+
+#. D5yN3
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id81591858229301\n"
+"help.text"
+msgid "a ScriptForge document (Calc, Base, ...) object"
+msgstr ""
+
+#. 8DDWf
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"bas_id12598185484092\n"
+"help.text"
+msgid "Set oDialog1 = CreateScriptService(\"DialogEvent\", oEvent) ' The dialog that caused the event"
+msgstr ""
+
+#. dx9rf
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"bas_id641598184589492\n"
+"help.text"
+msgid "Set oDialog2 = CreateScriptService(\"Dialog\", ...) ' Open a second dialog"
+msgstr ""
+
+#. kqFdv
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"pyc_id351619267575732\n"
+"help.text"
+msgid "dlg1 = CreateScriptService('DialogEvent.Dialog', event) # The dialog having caused the event"
+msgstr ""
+
+#. fDQAG
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"pyc_id431619267576082\n"
+"help.text"
+msgid "dlg2 = CreateScriptService('Dialog', ...) # Open a second dialog"
+msgstr ""
+
+#. 4qLn9
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id161584541257982\n"
+"help.text"
+msgid "Return either:"
+msgstr ""
+
+#. isSnB
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id421598179770993\n"
+"help.text"
+msgid "the list of the controls contained in the dialog"
+msgstr ""
+
+#. hdSWz
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id81598185229301\n"
+"help.text"
+msgid "a <literal>DialogControl</literal> class instance based on its name"
+msgstr ""
+
+#. AEAHd
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id1001584541257789\n"
+"help.text"
+msgid "<emph>ControlName</emph> : A valid control name as a case-sensitive string. If absent, the list of control names is returned as a zero-based array."
+msgstr ""
+
+#. j8x9C
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id381598185776500\n"
+"help.text"
+msgid "Ends the display of a modal dialog and gives back the argument as return value for the current <literal>Execute()</literal> running action."
+msgstr ""
+
+#. gjvwy
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id551598185953362\n"
+"help.text"
+msgid "<literal>EndExecute()</literal> is usually contained in the processing of a macro triggered by a dialog or control event."
+msgstr ""
+
+#. yukGC
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id451598185776957\n"
+"help.text"
+msgid "<emph>returnvalue</emph>: The value passed to the running <literal>Execute()</literal> method."
+msgstr ""
+
+#. ABome
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id411620110780170\n"
+"help.text"
+msgid "Using %PRODUCTNAME Basic:"
+msgstr ""
+
+#. EtAN6
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id11620110819754\n"
+"help.text"
+msgid "Using Python:"
+msgstr ""
+
+#. ML9Mz
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id81620201915101\n"
+"help.text"
+msgid "Above <link href=\"https://api.libreoffice.org/docs/idl/ref/structcom_1_1sun_1_1star_1_1lang_1_1EventObject.html\" name=\"com.sun.star.lang.EventObject\">com.sun.star.lang.EventObject</link> mentions are optional. Such annotations help identify %PRODUCTNAME Application Programming Interface (API)."
+msgstr ""
+
+#. FD9fr
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id29159818646178\n"
+"help.text"
+msgid "Display the dialog box and, when modal, wait for its termination by the user. The returned value is either:"
+msgstr ""
+
+#. PRCaG
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id541598186676277\n"
+"help.text"
+msgid "0 : <literal>Cancel</literal> button pressed"
+msgstr ""
+
+#. eCGBY
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id821598186716345\n"
+"help.text"
+msgid "1 : <literal>OK</literal> button pressed"
+msgstr ""
+
+#. MovhC
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id951598186738346\n"
+"help.text"
+msgid "Otherwise the dialog stopped with an <literal>EndExecute()</literal> statement issued by a dialog or control event"
+msgstr ""
+
+#. eBFXT
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id741598187335869\n"
+"help.text"
+msgid "For non-modal dialog boxes the method always returns 0 and the execution of the macro continues."
+msgstr ""
+
+#. Ej2iF
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id11598186461227\n"
+"help.text"
+msgid "<emph>modal</emph>: <literal>False</literal> when non-modal dialog. Default = <literal>True</literal>."
+msgstr ""
+
+#. fGatm
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id231620110023843\n"
+"help.text"
+msgid "In this Basic example <literal>myDialog</literal> dialog is stored in current document's <literal>Standard</literal> library."
+msgstr ""
+
+#. ouEVN
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id191620110162627\n"
+"help.text"
+msgid "This Python code displays <literal>DlgConvert</literal> modal dialog from <literal>Euro</literal> shared Basic library."
+msgstr ""
+
+#. HU6Jv
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id21598187900349\n"
+"help.text"
+msgid "Replaces all fixed text strings in a dialog by their translated versions based on a <literal>L10N</literal> service instance. This method translates the following strings:"
+msgstr ""
+
+#. JixXU
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id641625855723650\n"
+"help.text"
+msgid "The method returns <literal>True</literal> if successful."
+msgstr ""
+
+#. v5Zt5
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id61637871260604\n"
+"help.text"
+msgid "To create a list of translatable strings in a dialog use the <link href=\"text/sbasic/shared/03/sf_l10n.xhp#AddTextsFromDialog\" name=\"AddTextsFromDialog\">AddTextsFromDialog</link> method from the L10N service."
+msgstr ""
+
+#. ECNVg
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id451598185776205\n"
+"help.text"
+msgid "<emph>l10n</emph>: A <literal>L10N</literal> service instance from which translated strings will be retrieved."
+msgstr ""
+
+#. MeJAT
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id951620300689850\n"
+"help.text"
+msgid "The following example loads translated strings and applies them to the dialog \"MyDialog\"."
+msgstr ""
+
+#. p3KMX
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id901637872163895\n"
+"help.text"
+msgid "Read the <link href=\"text/sbasic/shared/03/sf_l10n.xhp\" name=\"L10N\">L10N service</link> help page to learn more about how PO and POT files are handled."
+msgstr ""
+
+#. mA4Nm
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id21598187953697\n"
+"help.text"
+msgid "Moves the topleft corner of a dialog to new coordinates and/or modify its dimensions. All distances are expressed in 1/100 mm. Without arguments, the method resets the initial dimensions. Return <literal>True</literal> if the resize was successful."
+msgstr ""
+
+#. XRdLE
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id481651236673068\n"
+"help.text"
+msgid "<emph>Left</emph>: the horizontal distance from the top-left corner"
+msgstr ""
+
+#. FcTcU
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id721651236674379\n"
+"help.text"
+msgid "<emph>Top</emph>: the vertical distance from the top-left corner"
+msgstr ""
+
+#. uX7ps
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id991651236674995\n"
+"help.text"
+msgid "<emph>Width</emph>: the width of the rectangle containing the dialog"
+msgstr ""
+
+#. ApqA8
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id771651236675564\n"
+"help.text"
+msgid "<emph>Height</emph>: the height of the rectangle containing the dialog"
+msgstr ""
+
+#. H4CtP
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id211651236676180\n"
+"help.text"
+msgid "Negative or missing arguments are left unchanged"
+msgstr ""
+
+#. guvaM
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"bas_id791620301085031\n"
+"help.text"
+msgid "oDialog.Resize(1000, 2000, Height := 6000) ' Width is not changed"
+msgstr ""
+
+#. pEVvm
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id181620112217958\n"
+"help.text"
+msgid "With Python:"
+msgstr ""
+
+#. gBerj
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"pyc_id941620303073866\n"
+"help.text"
+msgid "oDialog.Resize(1000, 2000, Height = 6000) # Width is not changed"
+msgstr ""
+
+#. ARCGg
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id21598187953679\n"
+"help.text"
+msgid "Terminate the <literal>Dialog</literal> service for the current instance. Return <literal>True</literal> if the termination was successful."
+msgstr ""
+
+#. CgAYf
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id951620300687150\n"
+"help.text"
+msgid "Below Basic and Python examples open <literal>DlgConsole</literal> and <literal>dlgTrace</literal> non-modal dialogs. They are respectively stored in <literal>ScriptForge</literal> and <literal>Access2Base</literal> shared libraries. Dialog close buttons are disabled and explicit termination is performed at the end of a running process."
+msgstr ""
+
+#. W3W3Y
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id301620302137482\n"
+"help.text"
+msgid "In this example a button in <literal>DlgConsole</literal> is substituting inhibited window closing:"
+msgstr ""
+
+#. 7z7hg
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id811620112217958\n"
+"help.text"
+msgid "With Python:"
+msgstr ""
+
+#. BFfGX
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"tit\n"
+"help.text"
+msgid "SFDialogs.DialogControl service"
+msgstr ""
+
+#. UBz5i
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"bm_id781582391760253\n"
+"help.text"
+msgid "<variable id=\"ctrls_h1\"><link href=\"text/sbasic/shared/03/sf_dialogcontrol.xhp\" name=\"SFDialogs.DialogControl service\"><literal>SFDialogs</literal>.<literal>DialogControl</literal> service</link></variable>"
+msgstr ""
+
+#. tZzKc
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id931583589764919\n"
+"help.text"
+msgid "The <literal>DialogControl</literal> service manages the controls belonging to a dialog defined with the Basic <link href=\"text/sbasic/guide/create_dialog.xhp\" name=\"Dialog Editor\">Dialog Editor</link>. Each instance of the current service represents a single control within a dialog box."
+msgstr ""
+
+#. 7dDgL
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id701598191157426\n"
+"help.text"
+msgid "The focus is set on getting and setting the values displayed by the controls of the dialog box. Formatting is accessible via the <literal>XControlModel</literal> and <literal>XControlView</literal> properties."
+msgstr ""
+
+#. fFfwe
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id981598191184526\n"
+"help.text"
+msgid "Note that the unique <literal>DialogControl.Value</literal> property content varies according to the control type."
+msgstr ""
+
+#. MBrzA
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id991612698027551\n"
+"help.text"
+msgid "A special attention is given to controls of type tree control. It is easy to populate a tree, either branch by branch, or with a set of branches at once. Populating a tree control can be performed statically or dynamically."
+msgstr ""
+
+#. 9LpGF
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id891598188164936\n"
+"help.text"
+msgid "The <literal>SFDialogs.DialogControl</literal> service is closely related to the <link href=\"text/sbasic/shared/03/sf_dialog.xhp\" name=\"Dialog service\"><literal>SFDialogs.Dialog</literal></link> service."
+msgstr ""
+
+#. uGTGK
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"hd_id581582885621841\n"
+"help.text"
+msgid "Service invocation"
+msgstr ""
+
+#. LGkgR
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id141609955500101\n"
+"help.text"
+msgid "Before using the <literal>DialogControl</literal> service the <literal>ScriptForge</literal> library needs to be loaded or imported:"
+msgstr ""
+
+#. EnxDs
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id361598174756160\n"
+"help.text"
+msgid "The <literal>DialogControl</literal> service is invoked from an existing <literal>Dialog</literal> service instance through its <literal>Controls()</literal> method. The dialog must be initiated with the <literal>SFDialogs.Dialog</literal> service."
+msgstr ""
+
+#. RCFrE
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"bas_id581598453210170\n"
+"help.text"
+msgid "myControl.Value = \"Dialog started at \" & Now()"
+msgstr ""
+
+#. WVG8J
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"bas_id961598453222539\n"
+"help.text"
+msgid "' ... process the controls actual values"
+msgstr ""
+
+#. gxhUu
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"pyc_id861620225235002\n"
+"help.text"
+msgid "text.Value = \"Dialog started at \" + strftime(\"%a, %d %b %Y %H:%M:%S\", localtime())"
+msgstr ""
+
+#. nu3f3
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"pyc_id841620225235377\n"
+"help.text"
+msgid "# ... process the controls actual values"
+msgstr ""
+
+#. 2PPv4
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id951598174966322\n"
+"help.text"
+msgid "Alternatively a control instance can be retrieved via the <literal>SFDialogs.DialogEvent</literal> service, providing the dialog was initiated with the <literal>Dialog</literal> service. <literal>DialogEvent</literal> returns the <literal>SFDialogs.DialogControl</literal> class instance that triggered the event."
+msgstr ""
+
+#. 75WJy
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id251598176312571\n"
+"help.text"
+msgid "Note that in previous examples, the prefix <literal>\"SFDialogs.\"</literal> may be omitted."
+msgstr ""
+
+#. F9uKj
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"hd_id71598455687512\n"
+"help.text"
+msgid "Control types"
+msgstr ""
+
+#. jKJBV
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id851598455863395\n"
+"help.text"
+msgid "The <literal>DialogControl</literal> service is available for these control types:"
+msgstr ""
+
+#. 7xddb
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"hd_id651583668365757\n"
+"help.text"
+msgid "Properties"
+msgstr ""
+
+#. 94RMV
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id871583668386455\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. eccsg
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id491583668386455\n"
+"help.text"
+msgid "ReadOnly"
+msgstr ""
+
+#. KRYNv
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id271583668474014\n"
+"help.text"
+msgid "Type"
+msgstr ""
+
+#. U9ZYU
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id291598538799794\n"
+"help.text"
+msgid "Applicable to"
+msgstr ""
+
+#. emDac
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id401583668386455\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. xNGhR
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id371583668519172\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. aTyMC
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id771583668386455\n"
+"help.text"
+msgid "Specifies if a command button has or not the behaviour of a Cancel button."
+msgstr ""
+
+#. Gft3Z
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id541583839708548\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. UXoyn
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id731583839708412\n"
+"help.text"
+msgid "Specifies the text associated with the control."
+msgstr ""
+
+#. Uo2SP
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id761584027709516\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. YKEAg
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id261598539120502\n"
+"help.text"
+msgid "All"
+msgstr ""
+
+#. c5GAw
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id971584027709752\n"
+"help.text"
+msgid "One of the types listed above."
+msgstr ""
+
+#. oMipU
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id67161270548283\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. 59ovD
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id341612705482566\n"
+"help.text"
+msgid "UNO<br/>object"
+msgstr ""
+
+#. w2ZhT
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id1001612705482919\n"
+"help.text"
+msgid "The currently upmost node selected in the tree control. Refer to <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1awt_1_1tree_1_1XMutableTreeNode.html\" name=\"awt.tree.XMutableTreeNode\">XmutableTreeNode</link> in Application Programming Interface (API) documentation for detailed information."
+msgstr ""
+
+#. veivJ
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id31583839767743\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. y2irQ
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id111583839767195\n"
+"help.text"
+msgid "Specifies whether a command button is the default (OK) button."
+msgstr ""
+
+#. GAdvJ
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id771583839920487\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. tBmrq
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id891598539196786\n"
+"help.text"
+msgid "All"
+msgstr ""
+
+#. 8S9xG
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id451583839920858\n"
+"help.text"
+msgid "Specifies if the control is accessible with the cursor."
+msgstr ""
+
+#. 2E9Cb
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id571588333908716\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. 6L9ke
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id491598529331618\n"
+"help.text"
+msgid "(read-only)"
+msgstr ""
+
+#. QbN5U
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id721588333908708\n"
+"help.text"
+msgid "Specifies the format used to display dates and times. It must be one these strings:"
+msgstr ""
+
+#. 5eRkE
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id891598456980194\n"
+"help.text"
+msgid "For dates: \"Standard (short)\", \"Standard (short YY)\", \"Standard (short YYYY)\", \"Standard (long)\", \"DD/MM/YY\", \"MM/DD/YY\", \"YY/MM/DD\", \"DD/MM/YYYY\", \"MM/DD/YYYY\" , \"YYYY/MM/DD\", \"YY-MM-DD\", \"YYYY-MM-DD\"."
+msgstr ""
+
+#. CDCLC
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id221598456991070\n"
+"help.text"
+msgid "For times: \"24h short\", \"24h long\", \"12h short\", \"12h long\"."
+msgstr ""
+
+#. nLCxq
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id501583774433513\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. rDJFC
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id151598177605296\n"
+"help.text"
+msgid "Specifies the number of rows in a ListBox, a ComboBox or a TableControl."
+msgstr ""
+
+#. kaaLt
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id271588334016191\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. Ey9iG
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id251588334016874\n"
+"help.text"
+msgid "Specifies which item is selected in a ListBox, a ComboBox or a TableControl."
+msgstr ""
+
+#. azv7C
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id961598457655506\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. 6N6Eb
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id2159845765568\n"
+"help.text"
+msgid "Specifies if the control is read-only."
+msgstr ""
+
+#. bubBB
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id621598457951781\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. r83sC
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id821598457951782\n"
+"help.text"
+msgid "Specifies whether a user can make multiple selections in a listbox."
+msgstr ""
+
+#. BBJCw
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id351598458170114\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. uHsgi
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id151598539764402\n"
+"help.text"
+msgid "All"
+msgstr ""
+
+#. HLjFU
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id621598458170392\n"
+"help.text"
+msgid "The name of the control."
+msgstr ""
+
+#. jSSnv
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id80159845835726\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. 8GZkA
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id841598539781888\n"
+"help.text"
+msgid "All"
+msgstr ""
+
+#. BdxvF
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id791598458357756\n"
+"help.text"
+msgid "A dialog may have several pages that can be traversed by the user step by step. The Page property of the Dialog object defines which page of the dialog is active."
+msgstr ""
+
+#. isrYW
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id441598458459145\n"
+"help.text"
+msgid "The Page property of a control defines the page of the dialog on which the control is visible."
+msgstr ""
+
+#. Cj3Kq
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id161598458580581\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. 6EFh7
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id921598458580608\n"
+"help.text"
+msgid "<literal>Dialog</literal><br/>service"
+msgstr ""
+
+#. SDCx4
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id181598539807426\n"
+"help.text"
+msgid "All"
+msgstr ""
+
+#. sqEuV
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id801598458580456\n"
+"help.text"
+msgid "The parent <literal>SFDialogs.Dialog</literal> class object instance."
+msgstr ""
+
+#. GTGu9
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id971598458773352\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. LP96H
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id451598458773588\n"
+"help.text"
+msgid "Specifies the file name containing a bitmap or other type of graphic to be displayed on the specified control. The filename must comply with the <literal>FileNaming</literal> attribute of the <literal>ScriptForge.FileSystem</literal> service."
+msgstr ""
+
+#. LZLsc
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id831612700624650\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. QxAW9
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id711612700624483\n"
+"help.text"
+msgid "UNO<br/>object"
+msgstr ""
+
+#. m4N4j
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id11612700624514\n"
+"help.text"
+msgid "An object representing the lowest root node (usually there is only one such root node). Refer to <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1awt_1_1tree_1_1XMutableTreeNode.html\" name=\"awt.tree.XMutableTreeNode\">XmutableTreeNode</link> in Application Programming Interface (API) documentation for detailed information."
+msgstr ""
+
+#. PqsSY
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id401598516577225\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. AciNr
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id311598516577712\n"
+"help.text"
+msgid "Specifies the data contained in a combobox or a listbox."
+msgstr ""
+
+#. q532w
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id781598516764550\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. 4h8VF
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id11159851676440\n"
+"help.text"
+msgid "Gives access to the text being displayed by the control."
+msgstr ""
+
+#. We5gv
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id411598517275112\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. EijF2
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id171598539985022\n"
+"help.text"
+msgid "All"
+msgstr ""
+
+#. CbBZJ
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id651598517275384\n"
+"help.text"
+msgid "Specifies the text that appears as a tooltip when you hold the mouse pointer over the control."
+msgstr ""
+
+#. kVtki
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id821598517418463\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. ZemBe
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id141598517418822\n"
+"help.text"
+msgid "Specifies if the checkbox control may appear dimmed (grayed) or not."
+msgstr ""
+
+#. BDWA7
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id701598517671373\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. ZHrsm
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id1001598540024225\n"
+"help.text"
+msgid "Refer to <link href=\"text/sbasic/shared/03/sf_dialogcontrol.xhp#hd_id81598540704978\" name=\"Value property\">Value property</link>"
+msgstr ""
+
+#. PqKgo
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id661598517730941\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. 8r3sG
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id761598540042290\n"
+"help.text"
+msgid "All"
+msgstr ""
+
+#. xLL83
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id881598517730836\n"
+"help.text"
+msgid "Specifies if the control is hidden or visible."
+msgstr ""
+
+#. Xw6X9
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id451598177924437\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. dBNCA
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id94159817792441\n"
+"help.text"
+msgid "UNO<br/>object"
+msgstr ""
+
+#. gbjHB
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id311598540066789\n"
+"help.text"
+msgid "All"
+msgstr ""
+
+#. F8rNE
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id191598177924897\n"
+"help.text"
+msgid "The UNO object representing the control model. Refer to <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1awt_1_1XControlModel.html\" name=\"awt.XControlModel\">XControlModel</link> and <link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1awt_1_1UnoControlDialogModel.html)\" name=\"awt.XControlDialogModel\">UnoControlDialogModel</link> in Application Programming Interface (API) documentation for detailed information."
+msgstr ""
+
+#. xfhaP
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id811598178083501\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. o2H9W
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id981598178083938\n"
+"help.text"
+msgid "UNO<br/>object"
+msgstr ""
+
+#. rrwm6
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id551598540079329\n"
+"help.text"
+msgid "All"
+msgstr ""
+
+#. ZM6sk
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id731598178083442\n"
+"help.text"
+msgid "The UNO object representing the control view. Refer to <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1awt_1_1XControl.html\" name=\"awt.XControl\">XControl</link> and <link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1awt_1_1UnoControlDialog.html)\" name=\"awt.UnoControlDialog\">UnoControlDialog</link> in Application Programming Interface (API) documentation for detailed information."
+msgstr ""
+
+#. SAkJX
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id741612699446459\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. yuAdF
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id311612699446893\n"
+"help.text"
+msgid "UNO<br/>object"
+msgstr ""
+
+#. 7XckG
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id691612699446892\n"
+"help.text"
+msgid "The UNO object representing the tree control data model. Refer to <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1awt_1_1tree_1_1XMutableTreeDataModel.html\" name=\"awt.tree.XMutableTreeDataModel\">XMutableTreeDataModel</link> in Application Programming Interface (API) documentation for detailed information."
+msgstr ""
+
+#. dfWTW
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"hd_id81598540704978\n"
+"help.text"
+msgid "The <variable id=\"ValueProperty\">Value property</variable>"
+msgstr ""
+
+#. JHK7w
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id10159854325492\n"
+"help.text"
+msgid "Control type"
+msgstr ""
+
+#. 33wWa
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id741598543254158\n"
+"help.text"
+msgid "Type"
+msgstr ""
+
+#. QLVMB
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id961598543254444\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. jEyx9
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id741598543254108\n"
+"help.text"
+msgid "For toggle buttons only"
+msgstr ""
+
+#. gCWiY
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id741598543254376\n"
+"help.text"
+msgid "Boolean or Integer"
+msgstr ""
+
+#. 7GZGS
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id521598543254630\n"
+"help.text"
+msgid "0, False: not checked<br/>1, True: checked<br/>2: grayed, don't know"
+msgstr ""
+
+#. nZVA5
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id331598543254947\n"
+"help.text"
+msgid "The selected value. The <literal>ListIndex</literal> property is an alternate option."
+msgstr ""
+
+#. MWkEW
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id5159854325443\n"
+"help.text"
+msgid "Numeric"
+msgstr ""
+
+#. kgfXR
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id971598543254757\n"
+"help.text"
+msgid "A file name formatted in accordance with the <literal>FileNaming</literal> property of the <literal>ScriptForge.FileSystem</literal> service"
+msgstr ""
+
+#. 9NVHN
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id221598543254760\n"
+"help.text"
+msgid "String or Numeric"
+msgstr ""
+
+#. 53Ztp
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id42159854325422\n"
+"help.text"
+msgid "String or array of strings"
+msgstr ""
+
+#. 9NwJs
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id601598543254780\n"
+"help.text"
+msgid "The selected row(s) as a scalar or as an array depending on the <literal>MultiSelect</literal> attribute"
+msgstr ""
+
+#. tFGhf
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id461598543254909\n"
+"help.text"
+msgid "Numeric"
+msgstr ""
+
+#. YvPAp
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id631598543254771\n"
+"help.text"
+msgid "Numeric"
+msgstr ""
+
+#. fBArb
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id91598543254766\n"
+"help.text"
+msgid "Must be within the predefined bounds"
+msgstr ""
+
+#. ZragT
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id851598543254624\n"
+"help.text"
+msgid "Each button has its own name. They are linked together if their TAB positions are contiguous. If a radiobutton is set to <literal>True</literal>, the other related buttons are automatically set to <literal>False</literal>"
+msgstr ""
+
+#. m6Uyb
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id531598543254869\n"
+"help.text"
+msgid "Numeric"
+msgstr ""
+
+#. MWdGb
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id21598543254994\n"
+"help.text"
+msgid "Must be within the predefined bounds"
+msgstr ""
+
+#. CVTcE
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id441598543254951\n"
+"help.text"
+msgid "One-dimensional array with the data of the currently selected row."
+msgstr ""
+
+#. a9AMF
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id441598543254738\n"
+"help.text"
+msgid "The text appearing in the field"
+msgstr ""
+
+#. CABLr
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"hd_id421612628828054\n"
+"help.text"
+msgid "Event properties"
+msgstr ""
+
+#. Vo6Ch
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id41612629140856\n"
+"help.text"
+msgid "Returns a URI string with the reference to the script triggered by the event. Read its specification in the <link href=\"https://wiki.documentfoundation.org/Documentation/DevGuide/Scripting_Framework#Scripting_Framework_URI_Specification\" name=\"URI specification\">scripting framework URI specification</link>."
+msgstr ""
+
+#. fkFAt
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id961612628879819\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. 2sB8F
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id401612628879819\n"
+"help.text"
+msgid "ReadOnly"
+msgstr ""
+
+#. 2A2Ex
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id281612628879819\n"
+"help.text"
+msgid "Description as labeled in the Basic IDE"
+msgstr ""
+
+#. rSRBQ
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id91612707166532\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. aABgD
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id291612707166258\n"
+"help.text"
+msgid "Execute action"
+msgstr ""
+
+#. KnFdW
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id79161270716675\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. JrRob
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id831612707166731\n"
+"help.text"
+msgid "While adjusting"
+msgstr ""
+
+#. mpuj3
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id111612629836630\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. 7Swj5
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id1001612629836902\n"
+"help.text"
+msgid "When receiving focus"
+msgstr ""
+
+#. Mp4i7
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id291612629836294\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. ozGia
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id62161262983683\n"
+"help.text"
+msgid "When losing focus"
+msgstr ""
+
+#. TR5uW
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id51612707354544\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. HREcr
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id211612707354899\n"
+"help.text"
+msgid "Item status changed"
+msgstr ""
+
+#. L6e2x
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id81612629836634\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. sVo6A
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id881612629836744\n"
+"help.text"
+msgid "Key pressed"
+msgstr ""
+
+#. pPBHX
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id591612629836830\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. P6NX8
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id161612629836775\n"
+"help.text"
+msgid "Key released"
+msgstr ""
+
+#. XJGHA
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id891612629836630\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. oCDXm
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id461612629836679\n"
+"help.text"
+msgid "Mouse moved while key presses"
+msgstr ""
+
+#. nLbMG
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id131612629836291\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. 9XdcG
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id151612629836151\n"
+"help.text"
+msgid "Mouse inside"
+msgstr ""
+
+#. BZ7sC
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id211612629836725\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. mzbBD
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id361612629836624\n"
+"help.text"
+msgid "Mouse outside"
+msgstr ""
+
+#. fAD8Y
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id311612629836481\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. FCBxu
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id721612629836752\n"
+"help.text"
+msgid "Mouse moved"
+msgstr ""
+
+#. 4DCtC
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id981612629836116\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. 8B9ct
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id381612629836635\n"
+"help.text"
+msgid "Mouse button pressed"
+msgstr ""
+
+#. krueU
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id711612629836704\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. 4c5qE
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id35161262983642\n"
+"help.text"
+msgid "Mouse button released"
+msgstr ""
+
+#. FkyLb
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id851612707606863\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. VudpK
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id351612707606197\n"
+"help.text"
+msgid "(Not in Basic IDE) when the expansion button is pressed on a node in a tree control"
+msgstr ""
+
+#. TkEgQ
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id121612707606251\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. quWBQ
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id881612707606121\n"
+"help.text"
+msgid "(Not in Basic IDE) when a node in a tree control is selected"
+msgstr ""
+
+#. qyb3B
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id811612707606330\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. th6Kr
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id621612707606219\n"
+"help.text"
+msgid "Text modified"
+msgstr ""
+
+#. YFbGT
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"hd_id421583670049913\n"
+"help.text"
+msgid "Methods"
+msgstr ""
+
+#. xNrc5
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id891611613601554\n"
+"help.text"
+msgid "List of Methods in the DialogControl Service"
+msgstr ""
+
+#. 5jtfg
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id831612711823126\n"
+"help.text"
+msgid "Create and return a new node of the tree control as a UNO object subordinate to a parent node. <variable id=\"XMutableTreeNode\">Refer to <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1awt_1_1tree_1_1XMutableTreeNode.html\" name=\"awt.tree.XMutableTreeNode\">XMutableTreeNode</link> in Application Programming Interface (API) documentation for detailed information.</variable>"
+msgstr ""
+
+#. MrQnS
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id741612711823706\n"
+"help.text"
+msgid "This method may be called before displaying the dialog box to build the initial tree. It may also be called from a dialog or control event - using the <literal>OnNodeExpanded</literal> event - to complete the tree dynamically."
+msgstr ""
+
+#. T8xdA
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id761612711823834\n"
+"help.text"
+msgid "<emph>parentnode</emph>: A node UNO object, of type <literal>com.sun.star.awt.tree.XMutableTreeNode</literal>."
+msgstr ""
+
+#. qJ9ej
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id791612711823819\n"
+"help.text"
+msgid "<emph>displayvalue</emph>: The text appearing in the tree control box."
+msgstr ""
+
+#. Pzz72
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id911612711823382\n"
+"help.text"
+msgid "<emph>datavalue</emph>: Any value associated with the new node. <literal>datavalue</literal> may be a string, a number or a date. Omit the argument when not applicable."
+msgstr ""
+
+#. 2pLPL
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id901620317110685\n"
+"help.text"
+msgid "%PRODUCTNAME Basic and Python examples pick up current document's <literal>myDialog</literal> dialog from <literal>Standard</literal> library."
+msgstr ""
+
+#. 8B3qP
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id221612713087885\n"
+"help.text"
+msgid "Return <literal>True</literal> when a subtree, subordinate to a parent node, could be inserted successfully in a tree control. If the parent node had already child nodes before calling this method, the child nodes are erased."
+msgstr ""
+
+#. beond
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id781612713087722\n"
+"help.text"
+msgid "<emph>parentnode</emph>: A node UNO object, of type <literal>com.sun.star.awt.tree.XMutableTreeNode</literal>."
+msgstr ""
+
+#. QJ73V
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id36161271308759\n"
+"help.text"
+msgid "<emph>flattree</emph>: a two dimension array sorted on the columns containing the display values. Such an array can be issued by the <literal>GetRows</literal> method applied on the <literal>SFDatabases.Database</literal> service. When an array item containing the text to be displayed is <literal>Empty</literal> or <literal>Null</literal>, no new subnode is created and the remainder of the row is skipped."
+msgstr ""
+
+#. r5QNj
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"bas_id61612716027443\n"
+"help.text"
+msgid "Flat tree >>>> Resulting subtree"
+msgstr ""
+
+#. MUi8U
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id51612713087915\n"
+"help.text"
+msgid "<emph>withdatavalue</emph>: When <literal>False</literal> default value is used, every column of <literal>flattree</literal> contains the text to be displayed in the tree control. When <literal>True</literal>, the texts to be displayed (<literal>displayvalue</literal>) are in columns 0, 2, 4, ... while the data values (<literal>datavalue</literal>) are in columns 1, 3, 5, ..."
+msgstr ""
+
+#. fWnhZ
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id151612780723320\n"
+"help.text"
+msgid "Returns a new root node of the tree control, as a node UNO object of type <literal>com.sun.star.awt.tree.XMutableTreeNode</literal>. The new tree root is inserted below pre-existing root nodes. <embedvar href=\"text/sbasic/shared/03/sf_dialogcontrol.xhp#XMutableTreeNode\"/>"
+msgstr ""
+
+#. YT845
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id821612780723965\n"
+"help.text"
+msgid "This method may be called before displaying the dialog box to build the initial tree. It may also be called from a dialog or control event to complete the tree dynamically."
+msgstr ""
+
+#. JXyjD
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id791612117823819\n"
+"help.text"
+msgid "<emph>displayvalue</emph>: The text appearing in the tree control box."
+msgstr ""
+
+#. XxGFd
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id171612781589503\n"
+"help.text"
+msgid "Traverses the tree and finds recursively, starting from the root, a node meeting some criteria. Either - 1 match is enough - having its display value matching <literal>displayvalue</literal> pattern or having its data value equal to <literal>datavalue</literal>. The comparisons may be or not case-sensitive. The first matching occurrence is returned as a node UNO object of type <literal>com.sun.star.awt.tree.XMutableTreeNode</literal>. <embedvar href=\"text/sbasic/shared/03/sf_dialogcontrol.xhp#XMutableTreeNode\"/>"
+msgstr ""
+
+#. 5Jxkj
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id741612782475457\n"
+"help.text"
+msgid "When not found, the method returns <literal>Nothing</literal>, to be tested with the <literal>IsNull()</literal> builtin function."
+msgstr ""
+
+#. n7pE8
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id41612781589363\n"
+"help.text"
+msgid "This method may be called before displaying the dialog box to build the initial tree. It may also be called from a dialog or control event."
+msgstr ""
+
+#. Dd4Ti
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id541613670199211\n"
+"help.text"
+msgid "One argument out of <literal>displayvalue</literal> or <literal>datavalue</literal> must be specified. If both present, one match is sufficient to select the node."
+msgstr ""
+
+#. MF7PA
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id591612781589560\n"
+"help.text"
+msgid "<emph>displayvalue</emph>: The pattern to be matched. Refer to <link href=\"text/sbasic/shared/03/sf_string.xhp#IsLike\" name=\"String service IsLike() method\"><literal>SF_String.IsLike()</literal></link> method for the list of possible wildcards. When equal to the zero-length string (default), this display value is not searched for."
+msgstr ""
+
+#. BE58W
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id141582384726168\n"
+"help.text"
+msgid "<emph>casesensitive</emph>: Default value is <literal>False</literal>"
+msgstr ""
+
+#. 3oU3L
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id871583933076448\n"
+"help.text"
+msgid "Set the focus on the control. Return <literal>True</literal> if focusing was successful."
+msgstr ""
+
+#. 6YvuU
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id151598178880227\n"
+"help.text"
+msgid "This method is often called from a dialog or control event."
+msgstr ""
+
+#. it2QN
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id541638553960464\n"
+"help.text"
+msgid "Fills a <literal>TableControl</literal> with the given data. All preexisting data is cleared before inserting the new data passed as argument."
+msgstr ""
+
+#. Vmmag
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id551638554058131\n"
+"help.text"
+msgid "When the <literal>TableControl</literal> is added to the dialog, it is possible to use the Basic IDE to define whether column and row headers will be shown in the table. If the <literal>TableControl</literal> has column and/or row headers, the first column and/or row in the provided data array are used as labels for the table headers."
+msgstr ""
+
+#. qn4UN
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id411638569396108\n"
+"help.text"
+msgid "This method returns <literal>True</literal> when successful."
+msgstr ""
+
+#. LESVB
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id1001584541257133\n"
+"help.text"
+msgid "<emph>dataarray</emph>: Data to be entered into the table represented as an Array of Arrays in Basic or a tuple of tuples in Python. The data must include column and row headers if they are to be displayed by the <literal>TableControl</literal>."
+msgstr ""
+
+#. 6AKaJ
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id1001584541257025\n"
+"help.text"
+msgid "<emph>widths</emph>: Array containing the relative widths of each column. In other words, <literal>widths = Array(1, 2)</literal> means that the second column is twice as wide as the first one. If the number of values in the array is smaller than the number of columns in the table, then the last value in the array is used to define the width of the remaining columns."
+msgstr ""
+
+#. AEGq3
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id1001584541257007\n"
+"help.text"
+msgid "<emph>alignments</emph>: Defines the alignment in each column as a string in which each character can be \"L\" (Left), \"C\" (Center), \"R\" (Right) or \" \" (whitespace, default, meaning left for strings and right for numeric values). If the length of the string is shorter than the number of columns in the table, then the last character in the string is used to define the alignment of the remaining columns."
+msgstr ""
+
+#. CK6RC
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id381638569172413\n"
+"help.text"
+msgid "The following example assumes that the dialog <literal>myDialog</literal> has a <literal>TableControl</literal> named <literal>Grid1</literal> with \"Show row header\" and \"Show column header\" properties set to \"Yes\"."
+msgstr ""
+
+#. N9Byz
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id171638650502346\n"
+"help.text"
+msgid "The <literal>Value</literal> property returns the selected row in the table. If no row is selected, an empty Array object is returned. The following code snippet shows how to test if any row is selected in the table."
+msgstr ""
+
+#. C3f3k
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"bas_id361638651540588\n"
+"help.text"
+msgid "MsgBox \"No row selected.\""
+msgstr ""
+
+#. iQ94A
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"bas_id781638651541028\n"
+"help.text"
+msgid "MsgBox \"Row \" & oTable.ListIndex & \" is selected.\""
+msgstr ""
+
+#. HNmmm
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id671598619892378\n"
+"help.text"
+msgid "Add a new line at the end of a multiline text field. A newline character will be inserted when appropriate. The method returns <literal>True</literal> when successful."
+msgstr ""
+
+#. D29nu
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id941598619892915\n"
+"help.text"
+msgid "An error is raised if the actual control is not of the type <literal>TextField</literal> or is not multiline."
+msgstr ""
+
+#. jmBh7
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id1001584541257789\n"
+"help.text"
+msgid "<emph>Line</emph>: The string to insert. Default is an empty line."
+msgstr ""
+
+#. opNus
+#: sf_dictionary.xhp
+msgctxt ""
+"sf_dictionary.xhp\n"
+"tit\n"
+"help.text"
+msgid "ScriptForge.Dictionary service"
+msgstr ""
+
+#. 4L4A6
+#: sf_dictionary.xhp
+msgctxt ""
+"sf_dictionary.xhp\n"
+"hd_id731582733781114\n"
+"help.text"
+msgid "<variable id=\"SFDictionary\"><link href=\"text/sbasic/shared/03/sf_dictionary.xhp\" name=\"ScriptForge.Dictionary service\"><literal>ScriptForge</literal>.<literal>Dictionary</literal> service</link></variable>"
+msgstr ""
+
+#. LJG3Z
+#: sf_dictionary.xhp
+msgctxt ""
+"sf_dictionary.xhp\n"
+"par_id891582884466217\n"
+"help.text"
+msgid "A dictionary is a collection of key-item pairs"
+msgstr ""
+
+#. fZDre
+#: sf_dictionary.xhp
+msgctxt ""
+"sf_dictionary.xhp\n"
+"par_id861582884516571\n"
+"help.text"
+msgid "The key is a case-insensitive string"
+msgstr ""
+
+#. 2AdDG
+#: sf_dictionary.xhp
+msgctxt ""
+"sf_dictionary.xhp\n"
+"par_id531582884549542\n"
+"help.text"
+msgid "Items may be of any type"
+msgstr ""
+
+#. Bqyf3
+#: sf_dictionary.xhp
+msgctxt ""
+"sf_dictionary.xhp\n"
+"par_id891582884593057\n"
+"help.text"
+msgid "Keys and items can be retrieved, counted, updated, and much more."
+msgstr ""
+
+#. LtaTT
+#: sf_dictionary.xhp
+msgctxt ""
+"sf_dictionary.xhp\n"
+"par_id971582884636922\n"
+"help.text"
+msgid "The Dictionary service is similar to the built-in %PRODUCTNAME Basic <literal>Collection</literal> object, however with more features. For example, <literal>Collection</literal> objects do not support the retrieval of keys. Moreover, Dictionaries provide additional capabilities as replacing keys, testing if a specific key already exists and converting the Dictionary into an Array object or JSON string."
+msgstr ""
+
+#. RkMHR
+#: sf_dictionary.xhp
+msgctxt ""
+"sf_dictionary.xhp\n"
+"hd_id581582885621841\n"
+"help.text"
+msgid "Service invocation"
+msgstr ""
+
+#. Qp3A4
+#: sf_dictionary.xhp
+msgctxt ""
+"sf_dictionary.xhp\n"
+"par_id821610388789467\n"
+"help.text"
+msgid "The following example creates <literal>myDict</literal> as an empty dictionary."
+msgstr ""
+
+#. BghTS
+#: sf_dictionary.xhp
+msgctxt ""
+"sf_dictionary.xhp\n"
+"par_id71158288562139\n"
+"help.text"
+msgid "It is recommended to free resources after use:"
+msgstr ""
+
+#. gpGvc
+#: sf_dictionary.xhp
+msgctxt ""
+"sf_dictionary.xhp\n"
+"par_id551626869252987\n"
+"help.text"
+msgid "The example below creates an empty instance of the <literal>Dictionary</literal> service and uses the Python native <literal>update</literal> method to populate it with the contents of a Python <literal>dict</literal> object."
+msgstr ""
+
+#. bnDdK
+#: sf_dictionary.xhp
+msgctxt ""
+"sf_dictionary.xhp\n"
+"pyc_id61626869417128\n"
+"help.text"
+msgid "# Initialize myDict as an empty dict object"
+msgstr ""
+
+#. Zijqj
+#: sf_dictionary.xhp
+msgctxt ""
+"sf_dictionary.xhp\n"
+"pyc_id921626869402748\n"
+"help.text"
+msgid "# Load the values of dico into myDict"
+msgstr ""
+
+#. G4WCE
+#: sf_dictionary.xhp
+msgctxt ""
+"sf_dictionary.xhp\n"
+"par_id981626869718081\n"
+"help.text"
+msgid "It is possible to create an instance of the <literal>Dictionary</literal> service using a Python <literal>dict</literal> object as argument as shown in the following example."
+msgstr ""
+
+#. ymvAC
+#: sf_dictionary.xhp
+msgctxt ""
+"sf_dictionary.xhp\n"
+"pyc_id201626869185236\n"
+"help.text"
+msgid "# Initialize myDict with the content of dico"
+msgstr ""
+
+#. UHQFC
+#: sf_dictionary.xhp
+msgctxt ""
+"sf_dictionary.xhp\n"
+"par_id211626699007613\n"
+"help.text"
+msgid "Because Python has built-in dictionary support, most of the methods in the <literal>Dictionary</literal> service are available for Basic scripts only. Exceptions are <literal>ConvertToPropertyValues</literal> and <literal>ImportFromPropertyValues</literal> that are supported in both Basic and Python."
+msgstr ""
+
+#. Dd4Pp
+#: sf_dictionary.xhp
+msgctxt ""
+"sf_dictionary.xhp\n"
+"hd_id351582885195476\n"
+"help.text"
+msgid "Properties"
+msgstr ""
+
+#. hYF2s
+#: sf_dictionary.xhp
+msgctxt ""
+"sf_dictionary.xhp\n"
+"par_id41582885195836\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. EgAoj
+#: sf_dictionary.xhp
+msgctxt ""
+"sf_dictionary.xhp\n"
+"par_id31582885195372\n"
+"help.text"
+msgid "Read-only"
+msgstr ""
+
+#. pHem5
+#: sf_dictionary.xhp
+msgctxt ""
+"sf_dictionary.xhp\n"
+"par_id31582885195238\n"
+"help.text"
+msgid "Type"
+msgstr ""
+
+#. NnCGT
+#: sf_dictionary.xhp
+msgctxt ""
+"sf_dictionary.xhp\n"
+"par_id931582885195131\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. B8ZfD
+#: sf_dictionary.xhp
+msgctxt ""
+"sf_dictionary.xhp\n"
+"par_id221582885195686\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. JnMbF
+#: sf_dictionary.xhp
+msgctxt ""
+"sf_dictionary.xhp\n"
+"par_id881582885195976\n"
+"help.text"
+msgid "The number of entries in the dictionary"
+msgstr ""
+
+#. TZ37p
+#: sf_dictionary.xhp
+msgctxt ""
+"sf_dictionary.xhp\n"
+"par_id441582886030118\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. G6fcd
+#: sf_dictionary.xhp
+msgctxt ""
+"sf_dictionary.xhp\n"
+"par_id131582886030297\n"
+"help.text"
+msgid "Array of Variants"
+msgstr ""
+
+#. EykBP
+#: sf_dictionary.xhp
+msgctxt ""
+"sf_dictionary.xhp\n"
+"par_id471582886030489\n"
+"help.text"
+msgid "The list of items as a one dimensional array"
+msgstr ""
+
+#. HTnKu
+#: sf_dictionary.xhp
+msgctxt ""
+"sf_dictionary.xhp\n"
+"par_id971582886791838\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. mXmC9
+#: sf_dictionary.xhp
+msgctxt ""
+"sf_dictionary.xhp\n"
+"par_id271582886791111\n"
+"help.text"
+msgid "Array of Strings"
+msgstr ""
+
+#. MxjyM
+#: sf_dictionary.xhp
+msgctxt ""
+"sf_dictionary.xhp\n"
+"par_id16158288679167\n"
+"help.text"
+msgid "The list of keys as a one dimensional array"
+msgstr ""
+
+#. EvjDj
+#: sf_dictionary.xhp
+msgctxt ""
+"sf_dictionary.xhp\n"
+"par_id461582886731495\n"
+"help.text"
+msgid "The <literal>Keys</literal> and <literal>Items</literal> properties return their respective contents, using an identical ordering. The order is unrelated to the creation sequence."
+msgstr ""
+
+#. suQ9E
+#: sf_dictionary.xhp
+msgctxt ""
+"sf_dictionary.xhp\n"
+"par_id931610389113917\n"
+"help.text"
+msgid "The following example uses the <literal>Keys</literal> property to iterate over all keys in the dictionary <literal>myDict</literal>."
+msgstr ""
+
+#. Thoy8
+#: sf_dictionary.xhp
+msgctxt ""
+"sf_dictionary.xhp\n"
+"par_id921606472825856\n"
+"help.text"
+msgid "Methods"
+msgstr ""
+
+#. PqSBg
+#: sf_dictionary.xhp
+msgctxt ""
+"sf_dictionary.xhp\n"
+"par_id831582887670029\n"
+"help.text"
+msgid "Adds a new key-item pair into the dictionary. Returns <literal>True</literal> if successful."
+msgstr ""
+
+#. 4zw8b
+#: sf_dictionary.xhp
+msgctxt ""
+"sf_dictionary.xhp\n"
+"par_id341582887670030\n"
+"help.text"
+msgid "<emph>key</emph>: String value used to identify the Item. The key is not case-sensitive."
+msgstr ""
+
+#. UFFFG
+#: sf_dictionary.xhp
+msgctxt ""
+"sf_dictionary.xhp\n"
+"par_id401582887670030\n"
+"help.text"
+msgid "<emph>item</emph>: Any value, including an array, a Basic object, a UNO object, a dictionary, etc."
+msgstr ""
+
+#. aNDWv
+#: sf_dictionary.xhp
+msgctxt ""
+"sf_dictionary.xhp\n"
+"par_id1001610391308765\n"
+"help.text"
+msgid "Every key must be unique in the same dictionary. If the key already exists in the dictionary, a <literal>DUPLICATEKEYERROR</literal> will be raised. Keys that are made of space characters will raise a <literal>INVALIDKEYERROR</literal> error."
+msgstr ""
+
+#. FDWkm
+#: sf_dictionary.xhp
+msgctxt ""
+"sf_dictionary.xhp\n"
+"par_id81582888424104\n"
+"help.text"
+msgid "Stores the contents of the dictionary in a two-columns zero-based array. The keys are stored in the first column and the items are stored in the second column."
+msgstr ""
+
+#. FdwcF
+#: sf_dictionary.xhp
+msgctxt ""
+"sf_dictionary.xhp\n"
+"par_id341610391565678\n"
+"help.text"
+msgid "If the dictionary is empty, this method will return an empty <literal>Array</literal>."
+msgstr ""
+
+#. MnEGs
+#: sf_dictionary.xhp
+msgctxt ""
+"sf_dictionary.xhp\n"
+"par_id831601296836981\n"
+"help.text"
+msgid "Converts the contents of a dictionary to <link href=\"https://en.wikipedia.org/wiki/JSON\" name=\"JSON text\">JSON (JavaScript Object Notation)</link> text."
+msgstr ""
+
+#. nAZ9s
+#: sf_dictionary.xhp
+msgctxt ""
+"sf_dictionary.xhp\n"
+"hd_id261601297024828\n"
+"help.text"
+msgid "Limitations"
+msgstr ""
+
+#. DDmVt
+#: sf_dictionary.xhp
+msgctxt ""
+"sf_dictionary.xhp\n"
+"par_id401601297178073\n"
+"help.text"
+msgid "This method supports the following data types: <literal>String</literal>, <literal>Boolean</literal>, numbers, <literal>Null</literal> and <literal>Empty</literal>. Arrays containing items of those types are also allowed, whatever their dimensions. Dates are converted into strings, however they cannot be used inside Arrays. Other data types are converted to their string representation using the <literal>SF_String.Represent</literal> service."
+msgstr ""
+
+#. stuTQ
+#: sf_dictionary.xhp
+msgctxt ""
+"sf_dictionary.xhp\n"
+"par_id8816012968362\n"
+"help.text"
+msgid "<emph>indent</emph>: When <literal>indent</literal> is a positive number or a text, JSON array elements and object members are pretty-printed with that indentation level. A negative <literal>indent</literal> value will add new lines with no indentation. The default value is an empty string \"\" which selects the most compact representation. Using a positive integer for <literal>indent</literal> indents that many spaces per level. When <literal>indent</literal> is a string, such as <literal>Chr(9)</literal> or <literal>Tab(1)</literal>, the Tab character is used to indent each level."
+msgstr ""
+
+#. sQuKi
+#: sf_dictionary.xhp
+msgctxt ""
+"sf_dictionary.xhp\n"
+"par_id151582889470596\n"
+"help.text"
+msgid "Stores the contents of the dictionary into an array of <literal>PropertyValues</literal>."
+msgstr ""
+
+#. rTa2V
+#: sf_dictionary.xhp
+msgctxt ""
+"sf_dictionary.xhp\n"
+"par_id231610392665049\n"
+"help.text"
+msgid "Each entry in the array is a <literal>com.sun.star.beans.PropertyValue</literal>. The key is stored in <literal>Name</literal>, the item is stored in <literal>Value</literal>."
+msgstr ""
+
+#. 5MnFS
+#: sf_dictionary.xhp
+msgctxt ""
+"sf_dictionary.xhp\n"
+"par_id341610392705367\n"
+"help.text"
+msgid "If one of the items has a type <literal>Date</literal>, it is converted to a <literal>com.sun.star.util.DateTime</literal> structure. If one of the items is an empty array, it is converted to <literal>Null</literal>. The resulting array is empty when the dictionary is empty."
+msgstr ""
+
+#. EU4BC
+#: sf_dictionary.xhp
+msgctxt ""
+"sf_dictionary.xhp\n"
+"bas_id531610393130289\n"
+"help.text"
+msgid "'Adds some properties to the dictionary"
+msgstr ""
+
+#. dEAPF
+#: sf_dictionary.xhp
+msgctxt ""
+"sf_dictionary.xhp\n"
+"bas_id571610393137959\n"
+"help.text"
+msgid "'Converts to an Array of PropertyValue objects"
+msgstr ""
+
+#. XCGFp
+#: sf_dictionary.xhp
+msgctxt ""
+"sf_dictionary.xhp\n"
+"par_id771626700938786\n"
+"help.text"
+msgid "Note in the example below that a Python dictionary needs to be passed as the second argument of the <literal>CreateScriptService</literal> method."
+msgstr ""
+
+#. oZEpN
+#: sf_dictionary.xhp
+msgctxt ""
+"sf_dictionary.xhp\n"
+"par_id421610393306916\n"
+"help.text"
+msgid "Many services and methods in the UNO library take in parameters represented using the <literal>PropertyValue</literal> struct, which is part of the %PRODUCTNAME API."
+msgstr ""
+
+#. 3afLF
+#: sf_dictionary.xhp
+msgctxt ""
+"sf_dictionary.xhp\n"
+"par_id841582889812916\n"
+"help.text"
+msgid "Determines if a key exists in the dictionary."
+msgstr ""
+
+#. RgUSD
+#: sf_dictionary.xhp
+msgctxt ""
+"sf_dictionary.xhp\n"
+"par_id971582889812917\n"
+"help.text"
+msgid "<emph>key</emph>: The key to be looked up in the dictionary."
+msgstr ""
+
+#. UAkEx
+#: sf_dictionary.xhp
+msgctxt ""
+"sf_dictionary.xhp\n"
+"bas_id811606485130666\n"
+"help.text"
+msgid "'Adds some properties to the dictionary"
+msgstr ""
+
+#. JBBVt
+#: sf_dictionary.xhp
+msgctxt ""
+"sf_dictionary.xhp\n"
+"par_id791601391980978\n"
+"help.text"
+msgid "Adds the content of a <link href=\"https://en.wikipedia.org/wiki/JSON\" name=\"JSON text\">JSON (JavaScript Object Notation)</link> string into the current dictionary. Returns <literal>True</literal> if successful."
+msgstr ""
+
+#. NtQCD
+#: sf_dictionary.xhp
+msgctxt ""
+"sf_dictionary.xhp\n"
+"hd_id961601392113644\n"
+"help.text"
+msgid "Limitations"
+msgstr ""
+
+#. dGRph
+#: sf_dictionary.xhp
+msgctxt ""
+"sf_dictionary.xhp\n"
+"par_id481601392181131\n"
+"help.text"
+msgid "The JSON string may contain numbers, text, booleans, null values and arrays containing those types. It must not contain JSON objects namely sub-dictionaries."
+msgstr ""
+
+#. LyxQD
+#: sf_dictionary.xhp
+msgctxt ""
+"sf_dictionary.xhp\n"
+"par_id511601392205908\n"
+"help.text"
+msgid "An attempt is made to convert text to date if the item matches one of these patterns: YYYY-MM-DD, HH:MM:SS or YYYY-MM-DD HH:MM:SS."
+msgstr ""
+
+#. 5cknM
+#: sf_dictionary.xhp
+msgctxt ""
+"sf_dictionary.xhp\n"
+"par_id69160139198061\n"
+"help.text"
+msgid "<emph>inputstr</emph>: The string to import."
+msgstr ""
+
+#. eCfBF
+#: sf_dictionary.xhp
+msgctxt ""
+"sf_dictionary.xhp\n"
+"par_id201601391980268\n"
+"help.text"
+msgid "<emph>overwrite</emph>: When <literal>True</literal>, entries with same name may exist in the dictionary and their values are overwritten. When <literal>False</literal> (default), repeated keys will raise an error. Be aware that dictionary keys are not case-sensitive while names are case-sensitive in JSON strings."
+msgstr ""
+
+#. aBFC5
+#: sf_dictionary.xhp
+msgctxt ""
+"sf_dictionary.xhp\n"
+"bas_id521601393254694\n"
+"help.text"
+msgid "'The (sub)-dictionaries \"address\" and \"phoneNumbers\" (0) and (1) are imported as Empty values."
+msgstr ""
+
+#. 9j5u2
+#: sf_dictionary.xhp
+msgctxt ""
+"sf_dictionary.xhp\n"
+"par_id651588941968228\n"
+"help.text"
+msgid "Inserts the contents of an array of <literal>PropertyValue</literal> objects into the current dictionary. <literal>PropertyValue</literal> Names are used as Keys in the dictionary, whereas Values contain the corresponding values. Returns <literal>True</literal> if successful."
+msgstr ""
+
+#. BQybf
+#: sf_dictionary.xhp
+msgctxt ""
+"sf_dictionary.xhp\n"
+"par_id751588941968522\n"
+"help.text"
+msgid "<emph>propertyvalues</emph>: A zero-based 1-dimensional array containing <literal>com.sun.star.beans.PropertyValue</literal> objects. This parameter may also be a single <literal>PropertyValue</literal> object not contained in an Array."
+msgstr ""
+
+#. g5bHm
+#: sf_dictionary.xhp
+msgctxt ""
+"sf_dictionary.xhp\n"
+"par_id21588941968131\n"
+"help.text"
+msgid "<emph>overwrite</emph>: When <literal>True</literal>, entries with same name may exist in the dictionary and their values are overwritten. When <literal>False</literal> (default), repeated keys will raise an error. Note that dictionary keys are not case-sensitive in Basic, whereas names are case-sensitive in sets of property values and in Python dictionaries."
+msgstr ""
+
+#. GKtsH
+#: sf_dictionary.xhp
+msgctxt ""
+"sf_dictionary.xhp\n"
+"par_id641626703615898\n"
+"help.text"
+msgid "The examples below first create an array with two <literal>PropertyValue</literal> objects and then convert it to a dictionary."
+msgstr ""
+
+#. 3rJRP
+#: sf_dictionary.xhp
+msgctxt ""
+"sf_dictionary.xhp\n"
+"par_id891582890366737\n"
+"help.text"
+msgid "Retrieves an existing dictionary entry based on its key. Returns the value of the item if successful, otherwise returns <literal>Empty</literal>."
+msgstr ""
+
+#. MV7Wq
+#: sf_dictionary.xhp
+msgctxt ""
+"sf_dictionary.xhp\n"
+"par_id551582890399669\n"
+"help.text"
+msgid "<emph>key</emph>: Not case-sensitive. If it does not exist, <literal>Empty</literal> value is returned."
+msgstr ""
+
+#. rGqyT
+#: sf_dictionary.xhp
+msgctxt ""
+"sf_dictionary.xhp\n"
+"par_id181610395933967\n"
+"help.text"
+msgid "The following example iterates over all keys in the dictionary and uses the <literal>Item</literal> method to access their values."
+msgstr ""
+
+#. QJTte
+#: sf_dictionary.xhp
+msgctxt ""
+"sf_dictionary.xhp\n"
+"par_id891582890388737\n"
+"help.text"
+msgid "Removes an existing dictionary entry based on its key. Returns <literal>True</literal> if successful."
+msgstr ""
+
+#. EhVL2
+#: sf_dictionary.xhp
+msgctxt ""
+"sf_dictionary.xhp\n"
+"par_id551582890366999\n"
+"help.text"
+msgid "<emph>key</emph>: Not case-sensitive. Must exist in the dictionary, otherwise an <literal>UNKNOWNKEYERROR</literal> error is raised."
+msgstr ""
+
+#. GyK3j
+#: sf_dictionary.xhp
+msgctxt ""
+"sf_dictionary.xhp\n"
+"par_id921582896275624\n"
+"help.text"
+msgid "Removes all the entries from the dictionary. Returns <literal>True</literal> if successful."
+msgstr ""
+
+#. GSzP5
+#: sf_dictionary.xhp
+msgctxt ""
+"sf_dictionary.xhp\n"
+"par_id281582895615444\n"
+"help.text"
+msgid "Replaces an existing item value based on its key. Returns <literal>True</literal> if successful."
+msgstr ""
+
+#. w4w9A
+#: sf_dictionary.xhp
+msgctxt ""
+"sf_dictionary.xhp\n"
+"par_id991582895615535\n"
+"help.text"
+msgid "<emph>key</emph>: String value representing the key whose value will be replaced. Not case-sensitive. If the key does not exist in the dictionary, an <literal>UNKNOWNKEYERROR</literal> error is raised."
+msgstr ""
+
+#. FA4hz
+#: sf_dictionary.xhp
+msgctxt ""
+"sf_dictionary.xhp\n"
+"par_id721582895615186\n"
+"help.text"
+msgid "<emph>value</emph>: The new value of the item referred to with the <literal>key</literal> parameter."
+msgstr ""
+
+#. Y46D4
+#: sf_dictionary.xhp
+msgctxt ""
+"sf_dictionary.xhp\n"
+"par_id571582896597766\n"
+"help.text"
+msgid "Replaces an existing key in the dictionary by a new key. The item value is left unchanged. Returns <literal>True</literal> if successful."
+msgstr ""
+
+#. jKp7C
+#: sf_dictionary.xhp
+msgctxt ""
+"sf_dictionary.xhp\n"
+"par_id911582896597619\n"
+"help.text"
+msgid "<emph>key</emph>: String value representing the key to be replaced. Not case-sensitive. If the key does not exist in the dictionary, a <literal>UNKNOWNKEYERROR</literal> error is raised."
+msgstr ""
+
+#. Dku2D
+#: sf_dictionary.xhp
+msgctxt ""
+"sf_dictionary.xhp\n"
+"par_id531582896597989\n"
+"help.text"
+msgid "<emph>value</emph>: String value for the new key. Not case-sensitive. If the new key already exists in the dictionary, an <literal>DUPLICATEKEYERROR</literal> error is raised."
+msgstr ""
+
+#. jasej
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"tit\n"
+"help.text"
+msgid "SFDocuments.Document service"
+msgstr ""
+
+#. KmD7j
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"hd_id731582733781114\n"
+"help.text"
+msgid "<variable id=\"DocumentService\"><link href=\"text/sbasic/shared/03/sf_document.xhp\" name=\"Exception service\"><literal>SFDocuments</literal>.<literal>Document</literal> service</link></variable>"
+msgstr ""
+
+#. VTWbF
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id381589189355849\n"
+"help.text"
+msgid "The <literal>SFDocuments</literal> library provides methods and properties to facilitate the management and manipulation of %PRODUCTNAME documents."
+msgstr ""
+
+#. urZhL
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id591589189364267\n"
+"help.text"
+msgid "Methods that are applicable for all types of documents (Text Documents, Sheets, Presentations, etc) are provided by the <literal>SFDocuments.Document</literal> service. Some examples are:"
+msgstr ""
+
+#. VgG69
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id891589189452545\n"
+"help.text"
+msgid "Opening, closing and saving documents"
+msgstr ""
+
+#. XfHGF
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id811589189463041\n"
+"help.text"
+msgid "Accessing standard or custom properties of documents"
+msgstr ""
+
+#. C6JgF
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id301611085807704\n"
+"help.text"
+msgid "The properties, methods or arguments marked with <emph>(*)</emph> are <emph>NOT applicable to Base documents</emph>."
+msgstr ""
+
+#. rh5iz
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id241589189701274\n"
+"help.text"
+msgid "Methods and properties that are specific to certain %PRODUCTNAME components are stored in separate services, such as <literal>SFDocuments.SF_Calc</literal> and <literal>SFDocuments.SF_Base</literal>."
+msgstr ""
+
+#. Fdi8i
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id641611090052376\n"
+"help.text"
+msgid "Although the Basic language does not offer inheritance between object classes, the latter services may be considered as subclasses of the <literal>SFDocuments.Document</literal> service. Such subclasses can invoke the properties and methods described below."
+msgstr ""
+
+#. YMWaA
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"hd_id581582885621841\n"
+"help.text"
+msgid "Service invocation"
+msgstr ""
+
+#. XVADJ
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id141609955500101\n"
+"help.text"
+msgid "Before using the <literal>Document</literal> service the <literal>ScriptForge</literal> library needs to be loaded or imported:"
+msgstr ""
+
+#. X6BV3
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id581611090387382\n"
+"help.text"
+msgid "Below are three variants of how the <literal>Document</literal> service can be invoked."
+msgstr ""
+
+#. o39cT
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id181622816732197\n"
+"help.text"
+msgid "Using the <literal>getDocument</literal> method from the <literal>ScriptForge</literal>.<literal>UI</literal> service:"
+msgstr ""
+
+#. 6AZF9
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id181622818236233\n"
+"help.text"
+msgid "Alternatively you can use the methods <literal>CreateDocument</literal> and <literal>OpenDocument</literal> from the <literal>UI</literal> service."
+msgstr ""
+
+#. uwA2W
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id691622816765571\n"
+"help.text"
+msgid "Using a window name if the document is already open."
+msgstr ""
+
+#. yRfyT
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id551658777771853\n"
+"help.text"
+msgid "Using the document referenced by <literal>ThisComponent</literal>. This is specially useful when running a macro from within the Basic IDE."
+msgstr ""
+
+#. yFDEW
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id821622816825012\n"
+"help.text"
+msgid "From a macro triggered by a document event."
+msgstr ""
+
+#. FxfW2
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id831622816562430\n"
+"help.text"
+msgid "The <literal>Document</literal> service is closely related to the <literal>UI</literal> and <literal>FileSystem</literal> services."
+msgstr ""
+
+#. QF9FG
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id891582733781994\n"
+"help.text"
+msgid "Except when the document was closed by program with the CloseDocument method (it is then superfluous), it is recommended to free resources after use:"
+msgstr ""
+
+#. LyvNw
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id71611090922315\n"
+"help.text"
+msgid "The use of the prefix \"<literal>SFDocuments.</literal>\" while calling the service is optional."
+msgstr ""
+
+#. z3oxC
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"hd_id351582885195476\n"
+"help.text"
+msgid "Properties"
+msgstr ""
+
+#. 6NTY6
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id41582885195836\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. wUbi9
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id31582885195372\n"
+"help.text"
+msgid "Readonly"
+msgstr ""
+
+#. NfJEr
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id31582885195238\n"
+"help.text"
+msgid "Type"
+msgstr ""
+
+#. QZzvi
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id931582885195131\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. wBpru
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id861582885655779\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. QEZC4
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id581582885655885\n"
+"help.text"
+msgid "Returns a <literal>ScriptForge.Dictionary</literal> object instance. After update, can be passed again to the property for updating the document.<br/>Individual items of the dictionary may be either strings, numbers, (Basic) dates or <link href=\"https://api.libreoffice.org/docs/idl/ref/structcom_1_1sun_1_1star_1_1util_1_1Duration.html\" name=\"Duration API\"><literal>com.sun.star.util.Duration</literal></link> items."
+msgstr ""
+
+#. DktDb
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id441582886030118\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. DNFGz
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id471582886030489\n"
+"help.text"
+msgid "Gives access to the Description property of the document (also known as \"Comments\")"
+msgstr ""
+
+#. wMzx8
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id971582886791838\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. Mm6E5
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id16158288679167\n"
+"help.text"
+msgid "Returns a <literal>ScriptForge.Dictionary</literal> object containing all the entries. Document statistics are included. Note that they are specific to the type of document. As an example, a Calc document includes a \"CellCount\" entry. Other documents do not."
+msgstr ""
+
+#. Ew7vi
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id201589194571955\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. Aw2Tv
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id941589194571801\n"
+"help.text"
+msgid "String value with the document type (\"Base\", \"Calc\", \"Writer\", etc)"
+msgstr ""
+
+#. UcEJi
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id201589194571699\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. EZzPF
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id941589194571327\n"
+"help.text"
+msgid "Returns a list with the export filter names applicable to the current document as a zero-based array of strings. Filters used for both import/export are also returned."
+msgstr ""
+
+#. 7vqDq
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id201589194571067\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. UmCHS
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id941589194571922\n"
+"help.text"
+msgid "Returns a list with the import filter names applicable to the current document as a zero-based array of strings. Filters used for both import/export are also returned."
+msgstr ""
+
+#. Yo8T4
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id761589194633950\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. pSbRu
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id611589194633853\n"
+"help.text"
+msgid "Exactly one of these properties is <literal>True</literal> for a given document."
+msgstr ""
+
+#. oKQWB
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id231589194910179\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. CDTBC
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id311589194910190\n"
+"help.text"
+msgid "Gives access to the Keywords property of the document. Represented as a comma-separated list of keywords"
+msgstr ""
+
+#. EHM84
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id921589638614972\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. JGTQz
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id801589638614518\n"
+"help.text"
+msgid "<literal>True</literal> if the document is actually in read-only mode"
+msgstr ""
+
+#. zK55N
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id201589195028733\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. 99ZxC
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id371589195028843\n"
+"help.text"
+msgid "Gives access to the Subject property of the document."
+msgstr ""
+
+#. dH6ct
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id451589195028910\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. TCiBh
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id771589195028748\n"
+"help.text"
+msgid "Gives access to the Title property of the document."
+msgstr ""
+
+#. SwDBh
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id221582885195686\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. PRmJE
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id371582885195525\n"
+"help.text"
+msgid "UNO Object"
+msgstr ""
+
+#. 9TNH3
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id881582885195976\n"
+"help.text"
+msgid "The UNO object <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1lang_1_1XComponent.html\" name=\"XComponent API\"><literal>com.sun.star.lang.XComponent</literal></link> or <link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1sdb_1_1OfficeDatabaseDocument.html\" name=\"ODatabaseDocument API\"><literal>com.sun.star.comp.dba.ODatabaseDocument</literal></link> representing the document"
+msgstr ""
+
+#. coFyk
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id861611146581334\n"
+"help.text"
+msgid "The example below prints all the properties of a document. Note that the <literal>oDoc</literal> object returned by the <literal>UI.OpenDocument</literal> method is a <literal>SFDocuments.Document</literal> object."
+msgstr ""
+
+#. eqL5J
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id571622826920742\n"
+"help.text"
+msgid "To access document properties in a Python script the user needs to directly access them using their names, as shown below:"
+msgstr ""
+
+#. wmiy9
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id651606319520519\n"
+"help.text"
+msgid "List of Methods in the Document Service"
+msgstr ""
+
+#. UVWQb
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id93158919969864\n"
+"help.text"
+msgid "Returns <literal>True</literal> if the document could be activated. Otherwise, there is no change in the actual user interface. It is equivalent to the <literal>Activate</literal> method of the <literal>UI</literal> service."
+msgstr ""
+
+#. qcuXA
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id421611148353046\n"
+"help.text"
+msgid "This method is useful when one needs to give focus for a document that is minimized or hidden."
+msgstr ""
+
+#. vFzrg
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id601611148017930\n"
+"help.text"
+msgid "The example below considers that the file \"My_File.ods\" is already open but not active."
+msgstr ""
+
+#. zGRcs
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id601611148080503\n"
+"help.text"
+msgid "Keep in mind that you can invoke the <literal>Document</literal> service by passing to <literal>CreateScriptService</literal> either \"Document\" or \"SFDocuments.Document\""
+msgstr ""
+
+#. rB7Ab
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id651589200121138\n"
+"help.text"
+msgid "Closes the document. If the document is already closed, regardless of how the document was closed, this method has no effect and returns <literal>False</literal>."
+msgstr ""
+
+#. 64F7E
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id341611149562894\n"
+"help.text"
+msgid "The method will also return <literal>False</literal> if the user declines to close it."
+msgstr ""
+
+#. AGBjg
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id981611149616934\n"
+"help.text"
+msgid "Returns <literal>True</literal> if the document was successfully closed."
+msgstr ""
+
+#. Wt7L9
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id361589200121646\n"
+"help.text"
+msgid "<emph>saveask</emph> : If <literal>True</literal> (default), the user is invited to confirm if the changes should be written on disk. This argument is ignored if the document was not modified."
+msgstr ""
+
+#. RhAbC
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id651589200121080\n"
+"help.text"
+msgid "Creates a new menu entry in the menubar of a given document window."
+msgstr ""
+
+#. A7owo
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id981611149616155\n"
+"help.text"
+msgid "This method returns an instance of the <link href=\"text/sbasic/shared/03/sf_menu.xhp\" name=\"Menu_link1\"><input>SFWidgets.Menu</input></link> service."
+msgstr ""
+
+#. GKeq5
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id721643121487974\n"
+"help.text"
+msgid "The menu created is only available during the current %PRODUCTNAME session and is not saved neither in the document nor in the global application settings. Hence closing the document window will make the menu disappear. It will only reappear when the macro that creates the menu is executed again."
+msgstr ""
+
+#. szVYB
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id361589200120316\n"
+"help.text"
+msgid "<emph>menuheader</emph>: The toplevel name of the new menu."
+msgstr ""
+
+#. iCSZE
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id361589200129686\n"
+"help.text"
+msgid "<emph>before</emph>: The name (as a string) or position (as an integer starting at 1) of an existing menu before which the new menu will be placed. If no value is defined for this argument, the menu will be created at the last position in the menubar."
+msgstr ""
+
+#. LX4b9
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id361589200122507\n"
+"help.text"
+msgid "<emph>submenuchar</emph>: The delimiter used to create menu trees when calling methods as <literal>AddItem</literal> from the <literal>Menu</literal> service. The default value is \">\"."
+msgstr ""
+
+#. FhwFZ
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"bas_id751622827903865\n"
+"help.text"
+msgid "Set oMenu = oDoc.CreateMenu(\"My Menu\")"
+msgstr ""
+
+#. iDefE
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"bas_id391643120224507\n"
+"help.text"
+msgid "' Add items to the menu"
+msgstr ""
+
+#. t4cXb
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"bas_id100164312025160\n"
+"help.text"
+msgid "' After creating the menu, the service instance can be disposed of"
+msgstr ""
+
+#. WuNHU
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"pyc_id221622827943208\n"
+"help.text"
+msgid "menu = doc.CreateMenu(\"My Menu\")"
+msgstr ""
+
+#. Jx4RF
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id271643139068194\n"
+"help.text"
+msgid "Refer to the <link href=\"text/sbasic/shared/03/sf_menu.xhp\" name=\"Menu_link2\"><input>SFWidgets.Menu</input></link> help page to learn more about how to create/remove menus in %PRODUCTNAME document windows."
+msgstr ""
+
+#. CGKZA
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id156589200123048\n"
+"help.text"
+msgid "Exports the document directly as a PDF file to the specified location. Returns <literal>True</literal> if the PDF file was successfully created."
+msgstr ""
+
+#. PBk4E
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id811638276067119\n"
+"help.text"
+msgid "The export options can be set either manually using the <menuitem>File - Export As - Export as PDF</menuitem> dialog or by calling the methods <literal>GetPDFExportOptions</literal> and <literal>SetPDFExportOptions</literal> from the <link href=\"text/sbasic/shared/03/sf_session.xhp\" name=\"SFSession\">Session</link> service."
+msgstr ""
+
+#. SFwEd
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id211635436910641\n"
+"help.text"
+msgid "<emph>filename</emph>: The full path and file name of the PDF to be created. It must follow the <literal>SF_FileSystem.FileNaming</literal> notation."
+msgstr ""
+
+#. E6KyY
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id141635436912005\n"
+"help.text"
+msgid "<emph>overwrite</emph>: Specifies if the destination file can be overwritten (Default = <literal>False</literal>). An error will occur if <literal>overwrite</literal> is set to <literal>False</literal> and the destination file already exists."
+msgstr ""
+
+#. d9RRn
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id141635436913587\n"
+"help.text"
+msgid "<emph>pages</emph><emph/>: String specifying which pages will be exported. This argument uses the same notation as in the dialog <menuitem>File - Export As - Export as PDF</menuitem>."
+msgstr ""
+
+#. kBDPk
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id141635436919655\n"
+"help.text"
+msgid "<emph>password</emph><emph/>: Specifies a password to open the PDF file."
+msgstr ""
+
+#. joeXi
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id141635436913365\n"
+"help.text"
+msgid "<emph>watermark</emph>: Text to be used as watermark in the PDF file, which will be drawn in every page of the resulting PDF."
+msgstr ""
+
+#. NmChF
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id301638234284727\n"
+"help.text"
+msgid "The following example exports the current document as a PDF file, defines a password and overwrites the destination file if it already exists."
+msgstr ""
+
+#. wEW7B
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id311638276257020\n"
+"help.text"
+msgid "The code snippet below gets the current PDF export options and uses them to create the PDF file."
+msgstr ""
+
+#. 7uUWr
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"bas_id851638277174798\n"
+"help.text"
+msgid "' Sets to True the option to export comments as PDF notes"
+msgstr ""
+
+#. HNC9m
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id156589200121138\n"
+"help.text"
+msgid "This method sends the contents of the document to the default printer or to the printer defined by the <literal>SetPrinter</literal> method."
+msgstr ""
+
+#. CJxTR
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id981611169416934\n"
+"help.text"
+msgid "Returns <literal>True</literal> if the document was successfully printed."
+msgstr ""
+
+#. uQMeV
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id211635436910093\n"
+"help.text"
+msgid "<emph>pages</emph>: The pages to print as a string, like in the user interface. Example: \"1-4;10;15-18\". Default is all pages."
+msgstr ""
+
+#. EHtFi
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id141635436912146\n"
+"help.text"
+msgid "<emph>copies</emph>: The number of copies. Default is 1."
+msgstr ""
+
+#. VDMiZ
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id651589200165470\n"
+"help.text"
+msgid "Removes a toplevel menu from the menubar of a given document window."
+msgstr ""
+
+#. wfDbr
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id981611149610695\n"
+"help.text"
+msgid "Returns <literal>True</literal> if the specified menu could be removed. If the specified menu does not exist, the method returns <literal>False</literal>."
+msgstr ""
+
+#. eNVDJ
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id571643121106014\n"
+"help.text"
+msgid "This method can be used to remove any menu entry from the document window, including default menus. However, none of these changes in the menubar are saved to the document or to the application settings. To restore the menubar to the default settings, simply close and reopen the document window."
+msgstr ""
+
+#. E6ahL
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id361589200121156\n"
+"help.text"
+msgid "<emph>menuheader</emph>: The toplevel name of the menu to be removed."
+msgstr ""
+
+#. yRoDW
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"bas_id391643120223147\n"
+"help.text"
+msgid "oDoc.RemoveMenu(\"My Menu\")"
+msgstr ""
+
+#. BnmiF
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"pyc_id221622827946338\n"
+"help.text"
+msgid "doc.RemoveMenu(\"My Menu\")"
+msgstr ""
+
+#. Ab7PE
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id991589202413257\n"
+"help.text"
+msgid "Runs a UNO command on the document window associated with the service instance. A few typical commands are: Save, SaveAs, ExportToPDF, Undo, Copy, Paste, etc."
+msgstr ""
+
+#. qBhYc
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id261589202778896\n"
+"help.text"
+msgid "The document itself does not need to be active to be able to run commands."
+msgstr ""
+
+#. 9FuBU
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id921611152932311\n"
+"help.text"
+msgid "Commands can be run with or without arguments. Arguments are not validated before running the command. If the command or its arguments are invalid, then nothing will happen."
+msgstr ""
+
+#. w62Bk
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id31644182402479\n"
+"help.text"
+msgid "For a complete list of UNO commands that can be run in %PRODUCTNAME, refer to the Wiki page <link href=\"https://wiki.documentfoundation.org/Development/DispatchCommands\" name=\"Commands_Wiki\">Development/DispatchCommands</link>."
+msgstr ""
+
+#. HBVsV
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id401589202413575\n"
+"help.text"
+msgid "<emph>command</emph>: Case-sensitive string containing the UNO command name. The inclusion of the prefix \".uno:\" in the command is optional. The command itself is not checked for correctness. If nothing happens after the command call, then the command is probably wrong."
+msgstr ""
+
+#. xi32t
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id521644182774710\n"
+"help.text"
+msgid "<emph>args</emph>: For each argument to be passed to the command, specify a pair containing the argument name and value."
+msgstr ""
+
+#. MqEx7
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id721611153068137\n"
+"help.text"
+msgid "The following example runs the <literal>SelectData</literal> command in a Calc file named \"MyFile.ods\", which will result in the selection of the data area based on the currently selected cell. Note that this command does not require any arguments."
+msgstr ""
+
+#. GGDgF
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id371644184276886\n"
+"help.text"
+msgid "Below is an example that runs the UNO command <literal>ReplaceAll</literal> and passes values for its arguments <literal>SearchString</literal> and <literal>ReplaceString</literal>. Running this command will replace all occurrence of the string \"abc\" by \"ABC\" in the current sheet."
+msgstr ""
+
+#. Z4Egf
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"bas_id631644184414955\n"
+"help.text"
+msgid "' Arguments passed to the command:"
+msgstr ""
+
+#. H5eQ9
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id41644184549167\n"
+"help.text"
+msgid "Note that calling the command <literal>ReplaceAll</literal> without arguments will open the <menuitem>Find and Replace</menuitem> dialog."
+msgstr ""
+
+#. Cp7Wk
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id811644243228448\n"
+"help.text"
+msgid "In Python it is also possible to call <literal>RunCommand</literal> using keyword arguments:"
+msgstr ""
+
+#. m9AyA
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id191611153511038\n"
+"help.text"
+msgid "Each %PRODUCTNAME component has its own set of commands available. One easy way to learn commands is going to <emph>Tools - Customize - Keyboard</emph>. When you position your mouse over a function in the <emph>Function</emph> list, a tooltip will appear with the corresponding UNO command."
+msgstr ""
+
+#. enSv9
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id81589202925519\n"
+"help.text"
+msgid "Stores the document to the file location from which it was loaded. The method is ignored if the document was not modified."
+msgstr ""
+
+#. sFUcr
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id731611153918907\n"
+"help.text"
+msgid "Returns <literal>False</literal> if the document could not be saved. An error is raised if the file is open as read-only, or if it is a new file that has not been saved yet."
+msgstr ""
+
+#. Ys5oF
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id211589203690937\n"
+"help.text"
+msgid "The document itself does not need to be active to run this method."
+msgstr ""
+
+#. 75K92
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id121589203370778\n"
+"help.text"
+msgid "Stores the document to the given file location. The new location becomes the new file name on which simple Save method calls will be applied."
+msgstr ""
+
+#. R8D2A
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id31611154475602\n"
+"help.text"
+msgid "Returns <literal>False</literal> if the document could not be saved. An error is raised when overwriting the destination is rejected or when the destination has its read-only attribute set."
+msgstr ""
+
+#. GAAfy
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id391589203370902\n"
+"help.text"
+msgid "The document itself does not need to be active to run this method."
+msgstr ""
+
+#. 7tX6c
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id331589203370950\n"
+"help.text"
+msgid "<emph>filename</emph>: A string containing the file name to be used. It must follow the <literal>SF_FileSystem.FileNaming</literal> notation."
+msgstr ""
+
+#. niFkh
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id631589204010142\n"
+"help.text"
+msgid "<emph>overwrite</emph>: If <literal>True</literal>, the destination file may be overwritten (default = <literal>False</literal>)."
+msgstr ""
+
+#. snX8q
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id811589204084107\n"
+"help.text"
+msgid "<emph>password</emph> (*): A non-space string to protect the document."
+msgstr ""
+
+#. g3wDy
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id451589204163772\n"
+"help.text"
+msgid "<emph>filtername</emph> (*): The name of a filter that should be used for saving the document. If this argument is passed, then the filter must exist."
+msgstr ""
+
+#. qZaAJ
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id981589204207800\n"
+"help.text"
+msgid "<emph>filteroptions</emph> (*): An optional string of options associated with the filter."
+msgstr ""
+
+#. FJywB
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id911589205147502\n"
+"help.text"
+msgid "Stores a copy of or export the document to the given file location. The actual location is unchanged."
+msgstr ""
+
+#. ovvew
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id381611154800685\n"
+"help.text"
+msgid "Returns <literal>False</literal> if the document could not be saved. An error is raised when overwriting the destination is rejected or when the destination has its read-only attribute set."
+msgstr ""
+
+#. BFKFn
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id11589205147643\n"
+"help.text"
+msgid "The document itself does not need to be active to run this method."
+msgstr ""
+
+#. FAjhF
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id301589205147697\n"
+"help.text"
+msgid "<emph>filename</emph>: A string containing the file name to be used. It must follow the <literal>SF_FileSystem.FileNaming</literal> notation."
+msgstr ""
+
+#. zr6Rx
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id851589205147348\n"
+"help.text"
+msgid "<emph>overwrite</emph>: If <literal>True</literal>, the destination file may be overwritten (default = <literal>False</literal>)."
+msgstr ""
+
+#. k2uRD
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id821589205147330\n"
+"help.text"
+msgid "<emph>password</emph> (*): A non-space string to protect the document."
+msgstr ""
+
+#. eyrsV
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id67158920514729\n"
+"help.text"
+msgid "<emph>filtername</emph> (*): The name of a filter that should be used for saving the document. If this argument is passed, then the filter must exist."
+msgstr ""
+
+#. vA4NU
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id881589205147911\n"
+"help.text"
+msgid "<emph>filteroptions</emph> (*): An optional string of options associated with the filter."
+msgstr ""
+
+#. 96EBt
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id911298505147502\n"
+"help.text"
+msgid "Defines the printer options for the document."
+msgstr ""
+
+#. zoaQX
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id381651114800685\n"
+"help.text"
+msgid "Returns <literal>True</literal> when successful."
+msgstr ""
+
+#. hGfVh
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id301589205741697\n"
+"help.text"
+msgid "<emph>printer</emph>: The name of the printer queue where to print to. When absent, the default printer is set."
+msgstr ""
+
+#. mRrfG
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id851985205147348\n"
+"help.text"
+msgid "<emph>orientation</emph>: Either <literal>PORTRAIT</literal> or <literal>LANDSCAPE</literal>. When absent, left unchanged with respect to the printer settings."
+msgstr ""
+
+#. ENyZH
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id821985205147330\n"
+"help.text"
+msgid "<emph>paperformat</emph>: Specifies the paper format as a string value that can be either <literal>A3</literal>, <literal>A4</literal>, <literal>A5</literal>, <literal>LETTER</literal>, <literal>LEGAL</literal> or <literal>TABLOID</literal>. Left unchanged when absent."
+msgstr ""
+
+#. WCH7E
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"tit\n"
+"help.text"
+msgid "ScriptForge.Exception service (SF_Exception)"
+msgstr ""
+
+#. ikEsF
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"hd_id521580038927003\n"
+"help.text"
+msgid "<variable id=\"ExceptionService\"><link href=\"text/sbasic/shared/03/sf_exception.xhp\" name=\"Exception service\"><literal>ScriptForge</literal>.<literal>Exception</literal> service</link></variable>"
+msgstr ""
+
+#. 4X7Xk
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id181587139648008\n"
+"help.text"
+msgid "The <literal>Exception</literal> service is a collection of methods to assist in code debugging in Basic and Python scripts and in error handling in Basic scripts."
+msgstr ""
+
+#. XeYa4
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id141587140927573\n"
+"help.text"
+msgid "In <emph>Basic scripts</emph>, when a run-time error occurs, the methods and properties of the <literal>Exception</literal> service help identify the error context and allow to handle it."
+msgstr ""
+
+#. ENY3v
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id401621450898070\n"
+"help.text"
+msgid "The <literal>SF_Exception</literal> service is similar to the <link href=\"text/sbasic/shared/ErrVBA.xhp\" name=\"VBA Err object\">VBA <literal>Err</literal> object</link>."
+msgstr ""
+
+#. vpB42
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id361621450908874\n"
+"help.text"
+msgid "The <literal>Number</literal> property identifies the error."
+msgstr ""
+
+#. TnWpD
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id861621450910254\n"
+"help.text"
+msgid "Use the <literal>Raise</literal> method to interrupt processing. The <literal>RaiseWarning</literal> method can be used to trap an anomaly without interrupting the macro execution."
+msgstr ""
+
+#. CpxKC
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id621587225732733\n"
+"help.text"
+msgid "Errors and warnings raised with the <literal>Exception</literal> service are stored in memory and can be retrieved using the <literal>Console</literal> method."
+msgstr ""
+
+#. CpBSQ
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id411587141146677\n"
+"help.text"
+msgid "The <literal>Exception</literal> service console stores events, variable values and information about errors. Use the console when the Basic IDE is not easily accessible, for example in <link href=\"text/scalc/guide/userdefined_function.xhp\" name=\"Calc user-defined function\">Calc user defined functions (UDF)</link> or during events processing."
+msgstr ""
+
+#. NrY9C
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id251621034725811\n"
+"help.text"
+msgid "Use the <literal>DebugPrint</literal> method to add any relevant information to the console. Console entries can be dumped to a text file or visualized in a dialog window."
+msgstr ""
+
+#. 9AW2i
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id111587141158495\n"
+"help.text"
+msgid "When an error occurs, an application macro may:"
+msgstr ""
+
+#. hxxxr
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id451587141202844\n"
+"help.text"
+msgid "Report the error in the <literal>Exception</literal> console"
+msgstr ""
+
+#. N9X2f
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id751587141235313\n"
+"help.text"
+msgid "Inform the user about the error using either a standard message or a custom message"
+msgstr ""
+
+#. C3NMD
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id931587141260777\n"
+"help.text"
+msgid "Optionally stop its execution"
+msgstr ""
+
+#. vFJRL
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id771621035263403\n"
+"help.text"
+msgid "In <emph>Python scripts</emph> the <literal>Exception</literal> service is mostly used for debugging purposes. Methods such as <literal>DebugPrint</literal>, <literal>Console</literal> and <literal>DebugDisplay</literal> are useful to quickly print messages, log data and open the console window from within a Python script."
+msgstr ""
+
+#. VAaLU
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id211621035276160\n"
+"help.text"
+msgid "Not all methods and properties are available for Python scripts since the Python language already has a comprehensive exception handling system."
+msgstr ""
+
+#. yQzKr
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"hd_id201586594659135\n"
+"help.text"
+msgid "Service invocation"
+msgstr ""
+
+#. T8o7G
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id161610652161795\n"
+"help.text"
+msgid "The following examples show three different approaches to call the method <literal>Raise</literal>. All other methods can be executed in a similar fashion."
+msgstr ""
+
+#. tGmaZ
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id901621036227048\n"
+"help.text"
+msgid "The code snippet below creates an instance of the <literal>Exception</literal> service, logs a message and displays the <literal>Console</literal> window."
+msgstr ""
+
+#. HABsh
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"hd_id651584978211886\n"
+"help.text"
+msgid "Properties"
+msgstr ""
+
+#. JDNi6
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id911621036526404\n"
+"help.text"
+msgid "The properties listed below are only available for <emph>Basic</emph> scripts."
+msgstr ""
+
+#. s3E9G
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id271584978211792\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. b96rE
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id241584978211550\n"
+"help.text"
+msgid "Readonly"
+msgstr ""
+
+#. TkMLa
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id621584978211403\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. tJZkJ
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id71584978715562\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. RyJkE
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id581584978715701\n"
+"help.text"
+msgid "The error message text."
+msgstr ""
+
+#. Wcy7s
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id241610652688334\n"
+"help.text"
+msgid "Default value is \"\" or a string containing the Basic run-time error message."
+msgstr ""
+
+#. BT7GF
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id211584978211383\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. AnFVG
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id691584978211774\n"
+"help.text"
+msgid "The code of the error. It can be a numeric value or text."
+msgstr ""
+
+#. dCADC
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id151610652632828\n"
+"help.text"
+msgid "Default value is 0 or the numeric value corresponding to the Basic run-time error code."
+msgstr ""
+
+#. uLE2Q
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id671584978666689\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. G3q2n
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id951584978666296\n"
+"help.text"
+msgid "The location in the code where the error occurred. It can be a numeric value or text."
+msgstr ""
+
+#. kBXGC
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id681610652723345\n"
+"help.text"
+msgid "Default value is 0 or the code line number for a standard Basic run-time error."
+msgstr ""
+
+#. mnFGS
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id461584978880380\n"
+"help.text"
+msgid "Raising or clearing an <literal>Exception</literal> resets its properties."
+msgstr ""
+
+#. ssXEB
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id881608131596153\n"
+"help.text"
+msgid "List of Methods in the Exception Service"
+msgstr ""
+
+#. CDgEM
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id271579683706571\n"
+"help.text"
+msgid "Resets the current error status and clears the <literal>SF_Exception</literal> properties."
+msgstr ""
+
+#. 7jFLi
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id701610654263121\n"
+"help.text"
+msgid "The following example shows how to catch a division-by-zero exception, whose error code is 11."
+msgstr ""
+
+#. JhADn
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"bas_id51587215508130\n"
+"help.text"
+msgid "'If division by zero, ignore the error"
+msgstr ""
+
+#. afnTr
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id201610654368082\n"
+"help.text"
+msgid "For a complete list of Basic run-time error codes, refer to <link href=\"text/sbasic/shared/01030300.xhp\" name=\"Run-Time Error Codes\">Debugging a Basic Program</link>."
+msgstr ""
+
+#. efEEX
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id651598718179382\n"
+"help.text"
+msgid "Displays the console messages in a modal or non-modal dialog. In both modes, all the past messages issued by a <literal>DebugPrint()</literal> method or resulting from an exception are displayed. In non-modal mode, subsequent entries are added automatically."
+msgstr ""
+
+#. KKgdp
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id161598718286205\n"
+"help.text"
+msgid "If the console is already open, when non-modal, it is brought to the front."
+msgstr ""
+
+#. ypzYc
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id801598718629151\n"
+"help.text"
+msgid "A modal console can only be closed by the user. A non-modal console can either be closed by the user or upon macro termination."
+msgstr ""
+
+#. HUgnb
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id511598718179819\n"
+"help.text"
+msgid "<emph>modal</emph>: Determine if the console window is modal (<literal>True</literal>) or non-modal (<literal>False</literal>). Default value is <literal>True</literal>."
+msgstr ""
+
+#. xu6FA
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id641587215098903\n"
+"help.text"
+msgid "Clears the console keeping an optional number of recent messages. If the console is activated in non-modal mode, it is refreshed."
+msgstr ""
+
+#. SE7ei
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id351587215098527\n"
+"help.text"
+msgid "<emph>keep</emph>: The number of recent messages to be kept. Default value is 0."
+msgstr ""
+
+#. GLEVv
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id521610655023824\n"
+"help.text"
+msgid "The following example clears the console keeping the 10 most recent messages."
+msgstr ""
+
+#. 4LD2d
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id281587218077400\n"
+"help.text"
+msgid "Exports the contents of the console to a text file. If the file already exists and the console is not empty, it will be overwritten without warning. Returns <literal>True</literal> if successful."
+msgstr ""
+
+#. HEXvU
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id851587218077862\n"
+"help.text"
+msgid "<emph>filename</emph>: The name of the text file the console should be dumped into. The name is expressed according to the current <literal>FileNaming</literal> property of the <literal>SF_FileSystem</literal> service. By default, <link href=\"text/sbasic/shared/00000002.xhp\" name=\"Url notation\">URL notation</link> and the native operating system's format are both admitted."
+msgstr ""
+
+#. F3tVM
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id701621043185177\n"
+"help.text"
+msgid "Concatenates all the arguments into a single human-readable string and displays it in a <literal>MsgBox</literal> with an Information icon and an OK button."
+msgstr ""
+
+#. KaGM6
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id791621097689492\n"
+"help.text"
+msgid "The final string is also added to the Console."
+msgstr ""
+
+#. QhRgF
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id481587218636884\n"
+"help.text"
+msgid "<emph>arg0[, arg1, ...]</emph>: Any number of arguments of any type."
+msgstr ""
+
+#. 2qser
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id281587218637490\n"
+"help.text"
+msgid "Assembles all the given arguments into a single human-readable string and adds it as a new entry in the console."
+msgstr ""
+
+#. mUSEP
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id481587218637988\n"
+"help.text"
+msgid "<emph>arg0[, arg1, ...]</emph>: Any number of arguments of any type."
+msgstr ""
+
+#. sCSES
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id111621624672183\n"
+"help.text"
+msgid "Displays the list of arguments in a readable form in the platform console. Arguments are separated by a TAB character (simulated by spaces)."
+msgstr ""
+
+#. ujSFu
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id841621426229467\n"
+"help.text"
+msgid "The same string is added to the ScriptForge debug console."
+msgstr ""
+
+#. yreJF
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id551655563148866\n"
+"help.text"
+msgid "If <link href=\"https://extensions.libreoffice.org/en/extensions/show/apso-alternative-script-organizer-for-python\" name=\"APSO Python shell\">Python shell (APSO)</link> is active, <literal>PythonPrint</literal> content is written to APSO console in place of the platform console."
+msgstr ""
+
+#. ixNfF
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id391126449167833\n"
+"help.text"
+msgid "<emph>arg0[, arg1, ...]</emph>: Any number of arguments of any type. The maximum length of each individual argument is 1024 characters."
+msgstr ""
+
+#. U88JC
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id261123015276160\n"
+"help.text"
+msgid "In Python use a <literal>print</literal> statement to print to the APSO console or use the <literal>DebugPrint</literal> method to print to ScriptForge's console."
+msgstr ""
+
+#. CUoch
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id111621426672183\n"
+"help.text"
+msgid "Opens an APSO Python shell as a non-modal window. The Python script keeps running after the shell is opened. The output from <literal>print</literal> statements inside the script are shown in the shell."
+msgstr ""
+
+#. f9ZzM
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id841621426922467\n"
+"help.text"
+msgid "Only a single instance of the APSO Python shell can be opened at any time. Hence, if a Python shell is already open, then calling this method will have no effect."
+msgstr ""
+
+#. KGi8B
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id391621449167833\n"
+"help.text"
+msgid "<emph>variables</emph>: a Python dictionary with variable names and values that will be passed on to the APSO Python shell. By default all local variables are passed using Python's builtin <literal>locals()</literal> function."
+msgstr ""
+
+#. zT7Gq
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id991621449657850\n"
+"help.text"
+msgid "The example below opens the APSO Python shell passing all global and local variables considering the context where the script is running."
+msgstr ""
+
+#. yUoFK
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id521621449800348\n"
+"help.text"
+msgid "When the APSO Python shell is open, any subsequent output printed by the script will be shown in the shell. Hence, the string printed in the example below will be displayed in the Python shell."
+msgstr ""
+
+#. 5xNCX
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"pyc_id731621449899901\n"
+"help.text"
+msgid "print(\"Hello world!\")"
+msgstr ""
+
+#. aXDEK
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id541587219824771\n"
+"help.text"
+msgid "Generates a run-time error. An error message is displayed to the user and reported in the console. The execution is stopped. The <literal>Raise()</literal> method can be placed inside the normal script flow or in a dedicated error-handling routine."
+msgstr ""
+
+#. RuDTE
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id921587220542454\n"
+"help.text"
+msgid "The code snippets presented next are equivalent. They show alternative ways to raise an exception with code 2100."
+msgstr ""
+
+#. 6wEJq
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id851587219824597\n"
+"help.text"
+msgid "<emph>Number</emph>: The error code, as a number or as a string. Default value is that of <literal>Err</literal> Basic builtin function."
+msgstr ""
+
+#. 7zRRT
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id461587220986452\n"
+"help.text"
+msgid "<emph>Source</emph>: The location of the error, as a number or as a string. Default value is that of <literal>Erl</literal> Basic builtin function."
+msgstr ""
+
+#. fSwCd
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id721587221018162\n"
+"help.text"
+msgid "<emph>Description</emph>: The message to display to the user and to report in the console. Default value is that of <literal>Error$</literal> Basic builtin function."
+msgstr ""
+
+#. Kzh7r
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"bas_id211587222852310\n"
+"help.text"
+msgid "'See variants below ..."
+msgstr ""
+
+#. DV6VJ
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id111587222580987\n"
+"help.text"
+msgid "To raise an exception with the standard values:"
+msgstr ""
+
+#. SABN3
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id751587222598238\n"
+"help.text"
+msgid "To raise an exception with a specific code:"
+msgstr ""
+
+#. QXgCy
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id501587222607771\n"
+"help.text"
+msgid "To replace the usual message:"
+msgstr ""
+
+#. gdvqM
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"bas_id431587222670849\n"
+"help.text"
+msgid "SF_Exception.Raise(, , \"It is not a good idea to divide by zero.\")"
+msgstr ""
+
+#. TaFgn
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id611587222617174\n"
+"help.text"
+msgid "To raise an application error:"
+msgstr ""
+
+#. ifrWg
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"bas_id71587222694657\n"
+"help.text"
+msgid "SF_Exception.Raise(\"MyAppError\", \"Example_Raise()\", \"Something wrong happened !\")"
+msgstr ""
+
+#. LuTSJ
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id1001587224839900\n"
+"help.text"
+msgid "This method has exactly the same syntax, arguments and behavior as the <literal>Raise()</literal> method."
+msgstr ""
+
+#. AXEnW
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id761587224839624\n"
+"help.text"
+msgid "However, when a warning is raised, <emph>the macro execution is not stopped</emph>."
+msgstr ""
+
+#. QTGXf
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"tit\n"
+"help.text"
+msgid "ScriptForge.FileSystem service"
+msgstr ""
+
+#. Nkwib
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"bm_id781582391760253\n"
+"help.text"
+msgid "<variable id=\"FileSystemService\"><link href=\"text/sbasic/shared/03/sf_filesystem.xhp\" name=\"FileSystem service\"><literal>ScriptForge</literal>.<literal>FileSystem</literal> service</link></variable>"
+msgstr ""
+
+#. wXVQJ
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id931583589764919\n"
+"help.text"
+msgid "The <literal>FileSystem</literal> service includes routines to handle files and folders. Next are some examples of the features provided by this service:"
+msgstr ""
+
+#. NtXUq
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id121612917070593\n"
+"help.text"
+msgid "Verify whether a file or folder exists."
+msgstr ""
+
+#. gqggf
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id121612917070594\n"
+"help.text"
+msgid "Create and delete folders and files."
+msgstr ""
+
+#. FFUnD
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id121612917070595\n"
+"help.text"
+msgid "Launch dialog boxes to open/save files."
+msgstr ""
+
+#. bgECC
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id121612917070596\n"
+"help.text"
+msgid "Access the list of files in a folder, etc."
+msgstr ""
+
+#. J2NqD
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id121612917368946\n"
+"help.text"
+msgid "The methods in the FileSystem service are mostly based on the <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1ucb_1_1XSimpleFileAccess.html\" name=\"XSimpleFileAccess API\"><literal>XSimpleFileAccess</literal> UNO interface.</link>"
+msgstr ""
+
+#. wEqaV
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"hd_id961583589783025\n"
+"help.text"
+msgid "Definitions"
+msgstr ""
+
+#. bczfJ
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id821612988815351\n"
+"help.text"
+msgid "The table below lists the main parameters used by most of the methods in the <literal>FileSystem</literal> service."
+msgstr ""
+
+#. fV4jz
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id891612988600163\n"
+"help.text"
+msgid "Parameter"
+msgstr ""
+
+#. KdPjY
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id711612988600163\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. dEUyj
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id321612988600163\n"
+"help.text"
+msgid "The full name of the file including the path without a path separator at the end."
+msgstr ""
+
+#. Da76k
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id321612988600165\n"
+"help.text"
+msgid "The full name of the folder including the path. It may or may not contain the ending path separator."
+msgstr ""
+
+#. LwB6Z
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id321612988600167\n"
+"help.text"
+msgid "The last component of the <emph>Folder Name</emph> or <emph>File Name</emph> including its extension. This parameter is always expressed using the native format of the operating system."
+msgstr ""
+
+#. fjYSD
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id321612988600169\n"
+"help.text"
+msgid "The last component of the <emph>Folder Name</emph> or <emph>File Name</emph> without its extension."
+msgstr ""
+
+#. 57Aab
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id321612988600172\n"
+"help.text"
+msgid "Any of the above names containing wildcards in its last component. Admitted wildcards are:"
+msgstr ""
+
+#. arzQR
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id851583590809104\n"
+"help.text"
+msgid "\"?\" represents any single character"
+msgstr ""
+
+#. wG8Bw
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id161583590819320\n"
+"help.text"
+msgid "\"*\" represents zero, one, or multiple characters"
+msgstr ""
+
+#. BjZMB
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id911584540527980\n"
+"help.text"
+msgid "The <literal>FileSystem</literal> service allows to perform operations over multiple files at the same time. By using name patterns, user scripts can copy, move or delete multiple files. Conversely, Basic built-in methods can only handle single files."
+msgstr ""
+
+#. zNCtF
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"hd_id991612918109871\n"
+"help.text"
+msgid "File Naming Notation"
+msgstr ""
+
+#. ZfsFV
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id791612918141083\n"
+"help.text"
+msgid "The notation used to express file and folder names, both for arguments and returned values, is defined by the <literal>FileNaming</literal> property of the <literal>FileSystem</literal> service."
+msgstr ""
+
+#. KV9FF
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id951612918220255\n"
+"help.text"
+msgid "In short, the possible representation types are \"URL\" (URL file notation), \"SYS\" (operating system notation) and \"ANY\" (default). See more information <link href=\"text/sbasic/shared/03/sf_filesystem.xhp#properties\" name=\"Properties Table\">below</link>."
+msgstr ""
+
+#. L84BJ
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id861583589907100\n"
+"help.text"
+msgid "An example of the URL notation is <emph>file:///C:/Documents/my_file.odt</emph>. Whenever possible consider using the URL notation because it is a more portable alternative."
+msgstr ""
+
+#. QrDqQ
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id931626652451855\n"
+"help.text"
+msgid "The use of the shortcut \"~\" (tilde), which is common in Linux-based operating systems, is not supported to express a path to a folder and file name. Instead of using <emph>\"~/Documents/my_file.odt\"</emph> use the full path <emph>\"/home/user/Documents/my_file.odt\"</emph>."
+msgstr ""
+
+#. mao7x
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"hd_id581582885621841\n"
+"help.text"
+msgid "Service invocation"
+msgstr ""
+
+#. Miw3e
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id691612990276070\n"
+"help.text"
+msgid "The following code snippet invokes the <literal>FileSystem</literal> service. The method <literal>BuildPath</literal> was used as an example."
+msgstr ""
+
+#. Gsznv
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"hd_id651583668365757\n"
+"help.text"
+msgid "Properties"
+msgstr ""
+
+#. QFtWW
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id871583668386455\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. iXYjt
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id491583668386455\n"
+"help.text"
+msgid "Readonly"
+msgstr ""
+
+#. GC4Vu
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id271583668474014\n"
+"help.text"
+msgid "Type"
+msgstr ""
+
+#. FFkx3
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id401583668386455\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. CyEEJ
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id371583668519172\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. Gihmg
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id771583668386455\n"
+"help.text"
+msgid "Sets or returns the current files and folders notation, either \"ANY\", \"URL\" or \"SYS\":"
+msgstr ""
+
+#. QQGcp
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id881585396501844\n"
+"help.text"
+msgid "<emph>\"ANY\"</emph>: (default) the methods of the <literal>FileSystem</literal> service accept both URL and current operating system's notation for input arguments but always return URL strings."
+msgstr ""
+
+#. 6FA2G
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id261583669091722\n"
+"help.text"
+msgid "<emph>\"URL\"</emph>: the methods of the <literal>FileSystem</literal> service expect URL notation for input arguments and return URL strings."
+msgstr ""
+
+#. QxFC6
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id731583669120436\n"
+"help.text"
+msgid "<emph>\"SYS\"</emph>: the methods of the <literal>FileSystem</literal> service expect current operating system's notation for both input arguments and return strings."
+msgstr ""
+
+#. VBAzn
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id211583765169579\n"
+"help.text"
+msgid "Once set, the <literal>FileNaming</literal> property remains unchanged either until the end of the %PRODUCTNAME session or until it is set again."
+msgstr ""
+
+#. FayZT
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id541583839708548\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. ygE64
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id731583839708412\n"
+"help.text"
+msgid "Returns the configuration folder of %PRODUCTNAME."
+msgstr ""
+
+#. svPxn
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id761584027709516\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. gjTpP
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id971584027709752\n"
+"help.text"
+msgid "Returns the folder where extensions are installed."
+msgstr ""
+
+#. DTGEP
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id31583839767743\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. FP6D9
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id111583839767195\n"
+"help.text"
+msgid "Returns the user home folder."
+msgstr ""
+
+#. LUE79
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id771583839920487\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. dz5ju
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id451583839920858\n"
+"help.text"
+msgid "Returns the installation folder of %PRODUCTNAME."
+msgstr ""
+
+#. trBL7
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id571588333908716\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. 3yNj2
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id721588333908708\n"
+"help.text"
+msgid "Returns the folder containing the system templates files."
+msgstr ""
+
+#. hDFSQ
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id501583774433513\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. e2ruR
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id71583774433459\n"
+"help.text"
+msgid "Returns the temporary files folder defined in the %PRODUCTNAME path settings."
+msgstr ""
+
+#. wjVgE
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id271588334016191\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. Ggnnt
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id251588334016874\n"
+"help.text"
+msgid "Returns the folder containing the user-defined template files."
+msgstr ""
+
+#. rpvtx
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id891611613601554\n"
+"help.text"
+msgid "List of Methods in the FileSystem Service"
+msgstr ""
+
+#. EgkPG
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id871583933076448\n"
+"help.text"
+msgid "Joins a folder path and the name of a file and returns the full file name with a valid path separator. The path separator is added only if necessary."
+msgstr ""
+
+#. 2pwBF
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id90158393307695\n"
+"help.text"
+msgid "<emph>foldername</emph>: The path with which <literal>name</literal> will be combined. The specified path does not need to be an existing folder."
+msgstr ""
+
+#. xFCWJ
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id891583933076975\n"
+"help.text"
+msgid "<emph>name</emph>: The name of the file to be appended to <literal>foldername</literal>. This parameter uses the notation of the current operating system."
+msgstr ""
+
+#. DwTpc
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id33160111891079\n"
+"help.text"
+msgid "Compares two files and returns <literal>True</literal> when they seem identical."
+msgstr ""
+
+#. 6A5Da
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id631601119001315\n"
+"help.text"
+msgid "Depending on the value of the <literal>comparecontents</literal> argument, the comparison between both files can be either based only on file attributes (such as the last modified date), or based on the file contents."
+msgstr ""
+
+#. MGA4A
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id481601118910755\n"
+"help.text"
+msgid "<emph>filename1, filename2</emph>: The files to compare."
+msgstr ""
+
+#. aKfwh
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id111601118910848\n"
+"help.text"
+msgid "<emph>comparecontents</emph>: When <literal>True</literal>, the contents of the files are compared (default = <literal>False</literal>)."
+msgstr ""
+
+#. EZNG5
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id161584541257982\n"
+"help.text"
+msgid "Copies one or more files from one location to another. Returns <literal>True</literal> if at least one file has been copied or <literal>False</literal> if an error occurred."
+msgstr ""
+
+#. xE9SU
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id401612998805699\n"
+"help.text"
+msgid "An error will also occur if the <literal>source</literal> parameter uses wildcard characters and does not match any files."
+msgstr ""
+
+#. AZCsn
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id331612998814805\n"
+"help.text"
+msgid "The method stops immediately after it encounters an error. The method does not roll back nor does it undo changes made before the error occurred."
+msgstr ""
+
+#. aVGzZ
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id1001584541257789\n"
+"help.text"
+msgid "<emph>source</emph>: It can be a <literal>FileName</literal> or a <literal>NamePattern</literal> indicating one or more files to be copied."
+msgstr ""
+
+#. ycEpt
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id111584542310166\n"
+"help.text"
+msgid "<emph>destination</emph>: It can be either a <literal>FileName</literal> specifying where the single <literal>source</literal> file is to be copied, or a <literal>FolderName</literal> into which the multiple files from <literal>source</literal> are to be copied."
+msgstr ""
+
+#. frwD2
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id491612999134752\n"
+"help.text"
+msgid "If <literal>destination</literal> does not exist, it is created."
+msgstr ""
+
+#. z3Tok
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id591612999166788\n"
+"help.text"
+msgid "Wildcard characters are not allowed in <literal>destination</literal>."
+msgstr ""
+
+#. zFyVX
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id251584542431558\n"
+"help.text"
+msgid "<emph>overwrite</emph>: If <literal>True</literal> (default), files may be overwritten. The method will fail if <literal>destination</literal> is readonly, regardless of the value specified in <literal>overwrite</literal>."
+msgstr ""
+
+#. uRMe8
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id691626216252568\n"
+"help.text"
+msgid "In the examples below the first line copies a single file whereas the second line copies multiple files using wildcards."
+msgstr ""
+
+#. 7xndg
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id411626216328023\n"
+"help.text"
+msgid "Be aware that subfolders and their contents are not copied when wildcards are used in the <emph>source</emph> argument."
+msgstr ""
+
+#. TdGi7
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id731584544734412\n"
+"help.text"
+msgid "Copies one or more folders from one location to another. Returns <literal>True</literal> if at least one folder has been copied or <literal>False</literal> if an error occurred."
+msgstr ""
+
+#. TSLCU
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id21612999775377\n"
+"help.text"
+msgid "An error will also occur if the <literal>source</literal> parameter uses wildcard characters and does not match any folders."
+msgstr ""
+
+#. m3Hzh
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id701612999808912\n"
+"help.text"
+msgid "The method stops immediately after it encounters an error. The method does not roll back nor does it undo changes made before the error occurred."
+msgstr ""
+
+#. GCCf3
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id851584544734202\n"
+"help.text"
+msgid "<emph>source</emph>: It can be a <literal>FolderName</literal> or a <literal>NamePattern</literal> indicating one or more folders to be copied."
+msgstr ""
+
+#. msqGq
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id321584544734273\n"
+"help.text"
+msgid "<emph>destination</emph>: Specifies the <literal>FolderName</literal> into which the single or multiple folders defined in <literal>source</literal> are to be copied."
+msgstr ""
+
+#. iLKYc
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id491612999134762\n"
+"help.text"
+msgid "If <literal>destination</literal> does not exist, it is created."
+msgstr ""
+
+#. TvYDS
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id591612999166740\n"
+"help.text"
+msgid "Wildcard characters are not allowed in <literal>destination</literal>."
+msgstr ""
+
+#. 3A2C2
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id251584542431525\n"
+"help.text"
+msgid "<emph>overwrite</emph>: If <literal>True</literal> (default), files may be overwritten. The method will fail if <literal>destination</literal> is readonly, regardless of the value specified in <literal>overwrite</literal>."
+msgstr ""
+
+#. 7CxBB
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id751626216627481\n"
+"help.text"
+msgid "In the examples below all files, folders and subfolders are copied."
+msgstr ""
+
+#. fNBgH
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id31158454067562\n"
+"help.text"
+msgid "Creates the specified <literal>FolderName</literal>. Returns <literal>True</literal> if the folder could be successfully created."
+msgstr ""
+
+#. 9H3cp
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id431613000475359\n"
+"help.text"
+msgid "If the specified folder has a parent folder that does not exist, it is created."
+msgstr ""
+
+#. 7gTts
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id491584540675469\n"
+"help.text"
+msgid "<emph>foldername</emph>: A string representing the folder to be created. If the folder already exists, an exception will be raised."
+msgstr ""
+
+#. 2zcfH
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id731585322689518\n"
+"help.text"
+msgid "Creates a specified file and returns a <literal>TextStream</literal> service instance that can be used to write to the file."
+msgstr ""
+
+#. YMZDA
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id821613001057759\n"
+"help.text"
+msgid "The method returns a <literal>Null</literal> object if an error occurred."
+msgstr ""
+
+#. 2NPVD
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id901585322689715\n"
+"help.text"
+msgid "<emph>filename</emph>: The name of the file to be created."
+msgstr ""
+
+#. gEJA4
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id501585322689209\n"
+"help.text"
+msgid "<emph>overwrite</emph>: Boolean value that determines if <literal>filename</literal> can be overwritten (default = <literal>True</literal>)."
+msgstr ""
+
+#. CkbhC
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id551585322689192\n"
+"help.text"
+msgid "<emph>encoding</emph>: The character set to be used. The default encoding is \"UTF-8\"."
+msgstr ""
+
+#. Pas6f
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id141613001281573\n"
+"help.text"
+msgid "To learn more about the names of character sets, visit <link href=\"https://www.iana.org/assignments/character-sets/character-sets.xhtml\" name=\"Character Sets\">IANA's Character Set</link> page. Be aware that %PRODUCTNAME does not implement all existing character sets."
+msgstr ""
+
+#. DVGxr
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id11584882040881\n"
+"help.text"
+msgid "Deletes one or more files. Returns <literal>True</literal> if at least one file has been deleted or <literal>False</literal> if an error occurred."
+msgstr ""
+
+#. y69YZ
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id21612999775356\n"
+"help.text"
+msgid "An error will also occur if the <literal>filename</literal> parameter uses wildcard characters and does not match any files."
+msgstr ""
+
+#. TWJRd
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id21613001848493\n"
+"help.text"
+msgid "The files to be deleted must not be readonly."
+msgstr ""
+
+#. PEFBq
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id701612999808832\n"
+"help.text"
+msgid "The method stops immediately after it encounters an error. The method does not roll back nor does it undo changes made before the error occurred."
+msgstr ""
+
+#. DkCdk
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id441584882040860\n"
+"help.text"
+msgid "<emph>filename</emph>: It can be a <literal>FileName</literal> or a <literal>NamePattern</literal> indicating one or more files to be deleted."
+msgstr ""
+
+#. FnaSi
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id851626217167909\n"
+"help.text"
+msgid "In the examples below only files are deleted, subfolders are not deleted."
+msgstr ""
+
+#. c9ZCd
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id11584882015881\n"
+"help.text"
+msgid "Deletes one or more folders. Returns <literal>True</literal> if at least one folder has been deleted or <literal>False</literal> if an error occurred."
+msgstr ""
+
+#. bGmGo
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id21612999775346\n"
+"help.text"
+msgid "An error will also occur if the <literal>foldername</literal> parameter uses wildcard characters and does not match any folders."
+msgstr ""
+
+#. GsqDD
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id21613001848853\n"
+"help.text"
+msgid "The folders to be deleted must not be readonly."
+msgstr ""
+
+#. kRSqe
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id701612999808842\n"
+"help.text"
+msgid "The method stops immediately after it encounters an error. The method does not roll back nor does it undo changes made before the error occurred."
+msgstr ""
+
+#. 7YCXM
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id451584882542247\n"
+"help.text"
+msgid "<emph>foldername</emph>: It can be a <literal>FolderName</literal> or a <literal>NamePattern</literal> indicating one or more folders to be deleted."
+msgstr ""
+
+#. cCnG9
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id651626217314709\n"
+"help.text"
+msgid "In the examples below only folders and their contents are deleted. Files in the parent folder \"C:\\Temp\" are not deleted."
+msgstr ""
+
+#. gSG9s
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id11584882015025\n"
+"help.text"
+msgid "Returns a string containing the folder where the specified extension package is installed."
+msgstr ""
+
+#. pJWi2
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id711658780480236\n"
+"help.text"
+msgid "The current value of the property <literal>SF_FileSystem.FileNaming</literal> is used to determine the notation of the returned string."
+msgstr ""
+
+#. jWSSt
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id891644442917193\n"
+"help.text"
+msgid "Use the property <link href=\"text/sbasic/shared/03/sf_platform.xhp#hd_id711600788076834\" name=\"Extensions_link\"><literal>Extensions</literal></link> from the <literal>Platform</literal> service to get string array with the IDs of all installed extensions."
+msgstr ""
+
+#. w9vDF
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id451584882542121\n"
+"help.text"
+msgid "<emph>extension</emph>: A string value with the ID of the extension. If the extension is not installed, an exception is raised."
+msgstr ""
+
+#. YhQmv
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id651626217313369\n"
+"help.text"
+msgid "The examples below in Basic and Python return the folder where the APSO extension is installed."
+msgstr ""
+
+#. ZbyLn
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id161583764426709\n"
+"help.text"
+msgid "Returns <literal>True</literal> if a given file name is valid and exists, otherwise the method returns <literal>False</literal>."
+msgstr ""
+
+#. 7j5TN
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id91613003122613\n"
+"help.text"
+msgid "If the <literal>filename</literal> parameter is actually an existing folder name, the method returns <literal>False</literal>."
+msgstr ""
+
+#. fr2Ei
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id361583764426547\n"
+"help.text"
+msgid "<emph>filename</emph>: A string representing the file to be tested."
+msgstr ""
+
+#. ChDCL
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id11158394432779\n"
+"help.text"
+msgid "Returns a zero-based array of the files stored in a given folder. Each entry in the array is a string containing the full path and file name."
+msgstr ""
+
+#. JVjE3
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id641613003790120\n"
+"help.text"
+msgid "If the argument <literal>foldername</literal> specifies a folder that does not exist, an exception is raised."
+msgstr ""
+
+#. nFaPD
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id821613003779799\n"
+"help.text"
+msgid "The resulting list may be filtered with wildcards."
+msgstr ""
+
+#. bq6vD
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id731583944543140\n"
+"help.text"
+msgid "<emph>foldername</emph>: A string representing a folder. The folder must exist. This argument must not designate a file."
+msgstr ""
+
+#. EM5cJ
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id591585648450060\n"
+"help.text"
+msgid "<emph>filter</emph>: A string containing wildcards (\"?\" and \"*\") that will be applied to the resulting list of files (default = \"\")."
+msgstr ""
+
+#. zG7ec
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id51583765642590\n"
+"help.text"
+msgid "Returns <literal>True</literal> if the specified <literal>FolderName</literal> is valid and exists, otherwise the method returns <literal>False</literal>."
+msgstr ""
+
+#. 9xtCG
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id151613004111990\n"
+"help.text"
+msgid "If the <literal>foldername</literal> parameter is actually an existing file name, the method returns <literal>False</literal>."
+msgstr ""
+
+#. qrf4A
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id1001583765642211\n"
+"help.text"
+msgid "<emph>foldername</emph>: A string representing the folder to be tested."
+msgstr ""
+
+#. eAFVs
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id521584110618989\n"
+"help.text"
+msgid "Returns the <literal>BaseName</literal> (equal to the last component) of a folder or file name, without its extension."
+msgstr ""
+
+#. YnBXv
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id731613004316790\n"
+"help.text"
+msgid "The method does not check if the specified file or folder exists."
+msgstr ""
+
+#. 3FPjB
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id691584110618308\n"
+"help.text"
+msgid "<emph>filename</emph>: A string representing the file name and its path."
+msgstr ""
+
+#. jwFaP
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id1001626271201609\n"
+"help.text"
+msgid "In the examples below, the first <literal>GetBaseName</literal> method call corresponds to a folder, so the function returns the last component of the path. The second call receives a file name as input, so the name of the file is returned without its extension."
+msgstr ""
+
+#. A56XC
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id831584032680866\n"
+"help.text"
+msgid "Returns the extension part of a file or folder name without the dot \".\" character."
+msgstr ""
+
+#. pdCJv
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id941613060736524\n"
+"help.text"
+msgid "The method does not check for the existence of the specified file or folder."
+msgstr ""
+
+#. Aqvwt
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id561613060896361\n"
+"help.text"
+msgid "If this method is applied to a folder name or to a file without an extension, then an empty string is returned."
+msgstr ""
+
+#. NzK5z
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id821584032680311\n"
+"help.text"
+msgid "<emph>filename</emph>: A string representing the file name and its path."
+msgstr ""
+
+#. Am6Bu
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id48160068505010\n"
+"help.text"
+msgid "The builtin <literal>FileLen</literal> Basic function returns the number of bytes contained in a file as a <literal>Long</literal> value, i.e. up to 2GB."
+msgstr ""
+
+#. 2FHpa
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id571613061005426\n"
+"help.text"
+msgid "The <literal>GetFileLen</literal> method can handle files with much larger sizes by returning a <literal>Currency</literal> value."
+msgstr ""
+
+#. PK2Fo
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id161600685050367\n"
+"help.text"
+msgid "<emph>filename</emph>: A string representing an existing file."
+msgstr ""
+
+#. o2GGJ
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id191584811478936\n"
+"help.text"
+msgid "Returns the last modified date of a given file."
+msgstr ""
+
+#. VMB4i
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id25158481147822\n"
+"help.text"
+msgid "<emph>filename</emph>: A string representing an existing file."
+msgstr ""
+
+#. VEZR6
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id711584032366587\n"
+"help.text"
+msgid "Returns the last component of a file or folder name in native operating system format."
+msgstr ""
+
+#. 4vAvz
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id541613061300811\n"
+"help.text"
+msgid "The method does not check if the specified file or folder exists."
+msgstr ""
+
+#. iajZD
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id671584032366193\n"
+"help.text"
+msgid "<emph>filename</emph>: A string representing the file name and its path."
+msgstr ""
+
+#. ffxFe
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id871584113432747\n"
+"help.text"
+msgid "Returns a string containing the name of the parent folder of a specified file or folder name."
+msgstr ""
+
+#. 2eBgA
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id611613061603039\n"
+"help.text"
+msgid "The method does not check if the specified file or folder exists."
+msgstr ""
+
+#. YUAQ3
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id471584113432231\n"
+"help.text"
+msgid "<emph>filename</emph>: A string with the file or folder name to be analyzed."
+msgstr ""
+
+#. Uc93M
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id82158385117289\n"
+"help.text"
+msgid "Returns a randomly generated temporary file name that is useful for performing operations that require a temporary file."
+msgstr ""
+
+#. FS3qq
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id391613061770924\n"
+"help.text"
+msgid "The returned file name does not have any suffix. The folder part of the returned string is the system's temporary folder."
+msgstr ""
+
+#. W7gF7
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id971613061774934\n"
+"help.text"
+msgid "The method does not create the temporary file."
+msgstr ""
+
+#. ch2AJ
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id58160104251423\n"
+"help.text"
+msgid "Hash functions are used by some cryptographic algorithms, in digital signatures, message authentication codes, fraud detection, fingerprints, checksums (message integrity check), hash tables, password storage and much more."
+msgstr ""
+
+#. qxDnP
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id301601042791356\n"
+"help.text"
+msgid "The <literal>HashFile</literal> method returns the result of a hash function, applied on a given file and using a specified algorithm. The returned value is a string of lower-case hexadecimal digits."
+msgstr ""
+
+#. eAW33
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id861601043268484\n"
+"help.text"
+msgid "The hash algorithms supported are: <literal>MD5</literal>, <literal>SHA1</literal>, <literal>SHA224</literal>, <literal>SHA256</literal>, <literal>SHA384</literal> and <literal>SHA512</literal>."
+msgstr ""
+
+#. s5ZiA
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id28160104251451\n"
+"help.text"
+msgid "<emph>filename</emph>: A string representing an existing file."
+msgstr ""
+
+#. Eomhm
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id71601042959846\n"
+"help.text"
+msgid "<emph>algorithm</emph>: One of the supported algorithms."
+msgstr ""
+
+#. HzFs2
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id51584791330688\n"
+"help.text"
+msgid "Moves one or more files from one location to another. Returns <literal>True</literal> if at least one file has been moved or <literal>False</literal> if an error occurred."
+msgstr ""
+
+#. RFrNE
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id631613062890648\n"
+"help.text"
+msgid "An error will also occur if the <literal>source</literal> parameter uses wildcard characters and does not match any files."
+msgstr ""
+
+#. ETmEP
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id241613062902777\n"
+"help.text"
+msgid "The method stops immediately after it encounters an error. The method does not roll back nor does it undo changes made before the error occurred."
+msgstr ""
+
+#. DbC6F
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id721584791330406\n"
+"help.text"
+msgid "<emph>source</emph>: It can be a <literal>FileName</literal> or <literal>NamePattern</literal> to designate one or more files to be moved."
+msgstr ""
+
+#. BHa7Y
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id291584791330181\n"
+"help.text"
+msgid "<emph>destination</emph>: If <literal>source</literal> is a <literal>FileName</literal> then this parameter indicates the new path and file name of the moved file."
+msgstr ""
+
+#. ZzA3Y
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id31613063334246\n"
+"help.text"
+msgid "If the move operation involves multiple files, then <literal>destination</literal> must be a folder name. If it does not exist, it is created."
+msgstr ""
+
+#. 39oR8
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id391613063494599\n"
+"help.text"
+msgid "If <literal>source</literal> and <literal>destination</literal> have the same parent folder, the method will rename the <literal>source</literal>."
+msgstr ""
+
+#. 7bzK4
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id941613063476533\n"
+"help.text"
+msgid "Wildcard characters are not allowed in <literal>destination</literal>."
+msgstr ""
+
+#. Bysqd
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id91626272612758\n"
+"help.text"
+msgid "In the following examples only files are moved, subfolders are not."
+msgstr ""
+
+#. iYBMe
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id301584791330868\n"
+"help.text"
+msgid "Moves one or more folders from one location to another. Returns <literal>True</literal> if at least one folder has been moved or <literal>False</literal> if an error occurred."
+msgstr ""
+
+#. RHjYG
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id411613072570664\n"
+"help.text"
+msgid "An error will also occur if the <literal>source</literal> parameter uses wildcard characters and does not match any folders."
+msgstr ""
+
+#. F2DaD
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id601613072595264\n"
+"help.text"
+msgid "The method stops immediately after it encounters an error. The method does not roll back nor does it undo changes made before the error occurred."
+msgstr ""
+
+#. xVGBy
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id541584791330777\n"
+"help.text"
+msgid "<emph>source</emph>: It can be a <literal>FolderName</literal> or <literal>NamePattern</literal> to designate one or more folders to be moved."
+msgstr ""
+
+#. 4Ampu
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id551584791330279\n"
+"help.text"
+msgid "<emph>destination</emph>: If the move operation involves a single folder, then <literal>destination</literal> is the name and path of the moved folder and it must not exist."
+msgstr ""
+
+#. dD7SB
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id11613072890641\n"
+"help.text"
+msgid "If multiple folders are being moved, then <literal>destination</literal> designates where the folders in <literal>source</literal> will be moved into. If <literal>destination</literal> does not exist, it is created."
+msgstr ""
+
+#. A69QS
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id301613072928159\n"
+"help.text"
+msgid "Wildcard characters are not allowed in <literal>destination</literal>."
+msgstr ""
+
+#. DqpaF
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id871583670342051\n"
+"help.text"
+msgid "Returns a string containing the normalized path name by collapsing redundant separators and up-level references."
+msgstr ""
+
+#. heCzw
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id541658780038027\n"
+"help.text"
+msgid "For instance, the path names <literal>A//B</literal>, <literal>A/B/</literal>, <literal>A/./B</literal> and <literal>A/foo/../B</literal> are all normalized to <literal>A/B</literal>."
+msgstr ""
+
+#. A6mAb
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id881613074436118\n"
+"help.text"
+msgid "On Windows, forward slashes \"/\" are converted to backward slashes \"\\\"."
+msgstr ""
+
+#. 56xkN
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id381658780455018\n"
+"help.text"
+msgid "The current value of the property <literal>SF_FileSystem.FileNaming</literal> is used to determine the notation of the <literal>filename</literal> argument as well as the format of the returned string."
+msgstr ""
+
+#. G9ARW
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id481583670340107\n"
+"help.text"
+msgid "<emph>filename</emph>: a string representing a valid path name. The file or directory represented by this argument may not exist."
+msgstr ""
+
+#. JNTia
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id121585320922117\n"
+"help.text"
+msgid "Opens a file and returns a <literal>TextStream</literal> object that can be used to read from, write to, or append to the file."
+msgstr ""
+
+#. ePMpQ
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id591613073104711\n"
+"help.text"
+msgid "Note that the method does not check if the given file is really a text file."
+msgstr ""
+
+#. SGJCd
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id951613073135036\n"
+"help.text"
+msgid "The method returns a <literal>Null</literal> object (in Basic) or <literal>None</literal> (in Python) if an error occurred."
+msgstr ""
+
+#. mxuwo
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id551585320922678\n"
+"help.text"
+msgid "<emph>filename</emph>: Identifies the file to open."
+msgstr ""
+
+#. tsRLR
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id671585320922388\n"
+"help.text"
+msgid "<emph>iomode</emph>: Indicates the input/output mode. It can be one of three constants: <literal>svc.ForReading</literal> (default), <literal>svc.ForWriting</literal>, or <literal>svc.ForAppending</literal>."
+msgstr ""
+
+#. z27vT
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id21585321398586\n"
+"help.text"
+msgid "<emph>create</emph>: Boolean value that indicates whether a new file can be created if the specified <literal>filename</literal> doesn't exist:"
+msgstr ""
+
+#. VDFAi
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id721613073434797\n"
+"help.text"
+msgid "If <literal>True</literal> a new file and its parent folders will be created if they do not exist;"
+msgstr ""
+
+#. EypVC
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id201613073469289\n"
+"help.text"
+msgid "If <literal>False</literal> then new files are not created (default)."
+msgstr ""
+
+#. wjGYH
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id771585321576210\n"
+"help.text"
+msgid "<emph>encoding</emph>: The character set to be used. The default encoding is \"UTF-8\"."
+msgstr ""
+
+#. FuYwe
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id871583670342501\n"
+"help.text"
+msgid "Opens a dialog box to open or save files."
+msgstr ""
+
+#. SjDBv
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id881613074436979\n"
+"help.text"
+msgid "If the <literal>SAVE</literal> mode is set and the picked file exists, a warning message will be displayed."
+msgstr ""
+
+#. YgsLZ
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id481583670342502\n"
+"help.text"
+msgid "<emph>defaultfile</emph>: This argument is a string composed of a folder and file name:"
+msgstr ""
+
+#. fyVCs
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id511613074665951\n"
+"help.text"
+msgid "The folder part indicates the folder that will be shown when the dialog opens (default = the last selected folder)."
+msgstr ""
+
+#. xs5hU
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id631613074685308\n"
+"help.text"
+msgid "The file part designates the default file to open or save."
+msgstr ""
+
+#. fBHyg
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id981583670342502\n"
+"help.text"
+msgid "<emph>mode</emph>: A string value that can be either \"OPEN\" (for input files) or \"SAVE\" (for output files). The default value is \"OPEN\"."
+msgstr ""
+
+#. uvwDP
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id31583670342502\n"
+"help.text"
+msgid "<emph>filter</emph>: The extension of the files displayed when the dialog is opened (default = no filter)."
+msgstr ""
+
+#. niaGR
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id881626276134300\n"
+"help.text"
+msgid "The examples below open a file picker with the \"txt\" filter applied."
+msgstr ""
+
+#. HkwaR
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id521583671701777\n"
+"help.text"
+msgid "Opens a dialog box to select a folder."
+msgstr ""
+
+#. mG6QD
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id951583671701872\n"
+"help.text"
+msgid "<emph>defaultfolder</emph>: A string containing the folder name that will be displayed when the dialog is opened (default = the last selected folder)."
+msgstr ""
+
+#. ymABK
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id821583671701764\n"
+"help.text"
+msgid "<emph>freetext</emph>: Text to display in the dialog (default = \"\")."
+msgstr ""
+
+#. 4FFby
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"bas_id921583671701610\n"
+"help.text"
+msgid "aFolder = FSO.PickFolder(\"C:\\Documents\", \"Choose a folder or press Cancel\")"
+msgstr ""
+
+#. nW8Rx
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"pyc_id631626276402296\n"
+"help.text"
+msgid "aFolder = fs.PickFolder(r\"C:\\Documents\", \"Choose a folder or press Cancel\")"
+msgstr ""
+
+#. xdfBh
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id431584016761996\n"
+"help.text"
+msgid "Returns a zero-based array of strings corresponding to the folders stored in a given <literal>foldername</literal>."
+msgstr ""
+
+#. LVNZq
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id431613075267241\n"
+"help.text"
+msgid "The list may be filtered with wildcards."
+msgstr ""
+
+#. 7pDiA
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id701584016761945\n"
+"help.text"
+msgid "<emph>foldername</emph>: A string representing a folder. The folder must exist. <literal>foldername</literal> must not designate a file."
+msgstr ""
+
+#. Xmg8b
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id471585648674921\n"
+"help.text"
+msgid "<emph>filter</emph>: A string containing wildcards (\"?\" and \"*\") that will be applied to the resulting list of folders (default = \"\")."
+msgstr ""
+
+#. XQG8t
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"tit\n"
+"help.text"
+msgid "SFDocuments.Form service"
+msgstr ""
+
+#. kanuY
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"bm_id781582391760253\n"
+"help.text"
+msgid "<variable id=\"FormService\"><link href=\"text/sbasic/shared/03/sf_form.xhp\" name=\"SFDocuments.Form\"><literal>SFDocuments</literal>.<literal>Form</literal> service</link></variable>"
+msgstr ""
+
+#. LDpRB
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id931583589764919\n"
+"help.text"
+msgid "The <literal>Form</literal> service provides methods and properties to manage forms in %PRODUCTNAME documents. This service supports forms in Base, Calc and Writer documents and allows to:"
+msgstr ""
+
+#. U3zGB
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id381618172063851\n"
+"help.text"
+msgid "Open and activate forms."
+msgstr ""
+
+#. SC6Yb
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id261618172129782\n"
+"help.text"
+msgid "Navigate through records shown by the form."
+msgstr ""
+
+#. krQfB
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id281618172141607\n"
+"help.text"
+msgid "Get access to the controls inside the form."
+msgstr ""
+
+#. itKdZ
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id371618172155483\n"
+"help.text"
+msgid "Get access to subforms of a parent form."
+msgstr ""
+
+#. QcJ24
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id351616768789190\n"
+"help.text"
+msgid "The <literal>SFDocuments</literal>.<literal>Form</literal> service is available from %PRODUCTNAME 7.2 onwards."
+msgstr ""
+
+#. Ga5NU
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id451616765867881\n"
+"help.text"
+msgid "Forms are usually used in %PRODUCTNAME documents to create user interfaces connected to relational databases. Hence, the <literal>Form</literal> service provides quick access to the linked database through the <link href=\"text/sbasic/shared/03/sf_database.xhp\" name=\"SFDatabases.Database\"><literal>SFDatabases</literal>.<literal>Database</literal> service</link>."
+msgstr ""
+
+#. rGB5M
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id891598188164936\n"
+"help.text"
+msgid "The <literal>SFDocuments</literal>.<literal>Form</literal> service is closely related to the <link href=\"text/sbasic/shared/03/sf_formcontrol.xhp\" name=\"SFDocuments.FormControl\"><literal>SFDocuments</literal>.<literal>FormControl</literal> service.</link>"
+msgstr ""
+
+#. 3HUmh
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"hd_id161616766330804\n"
+"help.text"
+msgid "Definitions"
+msgstr ""
+
+#. GYDbT
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id951618172906010\n"
+"help.text"
+msgid "Forms are usually created in Base documents, but they can be added to Writer and Calc documents as well."
+msgstr ""
+
+#. nKUdb
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id671618173380680\n"
+"help.text"
+msgid "In Base, each form you create using the <menuitem>Insert - Form</menuitem> functionality or through the <link href=\"text/shared/autopi/01090000.xhp\" name=\"FormWizard\">Form Wizard</link> is actually a <literal>FormDocument</literal> that can be handled with the <literal>Form</literal> service. Base documents can contain an unlimited number of form documents."
+msgstr ""
+
+#. kegBD
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id841618177362626\n"
+"help.text"
+msgid "Below is an example showing the hierarchy of all the elements involved in accessing forms and subforms in a Base document. Suppose you have a Base file named <literal>Employees.odb</literal> and inside it you created a form document to add new employees to the database. The form document contains a main form named <literal>EmployeeData</literal> that gives access to a table. There is also a subform <literal>WorksAtPlant</literal> that allows you to associate the new employee to one of the plants of the company."
+msgstr ""
+
+#. izkiB
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"bas_id151618176848874\n"
+"help.text"
+msgid "Employees.odb (Base document)"
+msgstr ""
+
+#. cz2fJ
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"bas_id941618176869485\n"
+"help.text"
+msgid "|-- EmployeeData (Main Form)"
+msgstr ""
+
+#. k8nxK
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id221618173444457\n"
+"help.text"
+msgid "A <literal>FormDocument</literal> can be seen as a set of forms that provide access to datasets such as database tables and queries from within %PRODUCTNAME documents. The names of forms and subforms inside a FormDocument can be accessed using the <link href=\"text/shared/02/01170600.xhp\" name=\"FormNavigator\">Form Navigator</link>."
+msgstr ""
+
+#. AMFVt
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"hd_id851616767037521\n"
+"help.text"
+msgid "Forms and Subforms"
+msgstr ""
+
+#. GA63u
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id681616767265034\n"
+"help.text"
+msgid "A form document is composed of one or more forms which, in turn, may also contain any number of subforms. A Form is an abstract set of controls that are linked to a specified data source, which can be a database table, a query or a SQL <literal>SELECT</literal> statement."
+msgstr ""
+
+#. fDvBD
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id711618178831976\n"
+"help.text"
+msgid "In Calc and Writer documents, each form can be linked to datasets located in different databases. On the other hand, in Base documents the database contained in the document is common to all forms."
+msgstr ""
+
+#. wDfhy
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id191616837111507\n"
+"help.text"
+msgid "To invoke the <literal>SFDocuments</literal>.<literal>Form</literal> service refer to the methods <literal>Forms()</literal>, <literal>FormDocuments()</literal> and <literal>OpenFormDocument()</literal> of the <link href=\"text/sbasic/shared/03/sf_document.xhp\" name=\"SFDocuments\"><literal>SFDocuments</literal>.<literal>Document</literal></link> service"
+msgstr ""
+
+#. gs4KC
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"hd_id581582885621841\n"
+"help.text"
+msgid "Service invocation"
+msgstr ""
+
+#. WyEtQ
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id141609955500101\n"
+"help.text"
+msgid "Before using the <literal>Form</literal> service the <literal>ScriptForge</literal> library needs to be loaded or imported:"
+msgstr ""
+
+#. KfjEA
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"hd_id991618179698545\n"
+"help.text"
+msgid "In Writer documents"
+msgstr ""
+
+#. 8s4VD
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id51616767892693\n"
+"help.text"
+msgid "The code snippet below shows how to access the form named <literal>Form1</literal> that is inside a Writer file:"
+msgstr ""
+
+#. NFikt
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id531618179517628\n"
+"help.text"
+msgid "Forms can be accessed by their names or by their indices, as shown below:"
+msgstr ""
+
+#. 8PHy6
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id181618250546617\n"
+"help.text"
+msgid "If you try to access a <literal>FormDocument</literal> that is currently opened in <emph>Design Mode</emph> an exception will be raised."
+msgstr ""
+
+#. xNr3R
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"hd_id921618179792926\n"
+"help.text"
+msgid "In Calc documents"
+msgstr ""
+
+#. yCpnG
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id481618179851104\n"
+"help.text"
+msgid "A form in a Calc file must have a unique name inside its sheet. Hence, the <literal>Forms</literal> method requires two arguments, the first indicating the sheet name and the second specifying the form name."
+msgstr ""
+
+#. i9Um4
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id51622028165429\n"
+"help.text"
+msgid "This is achieved identically using Python:"
+msgstr ""
+
+#. 2fB94
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"hd_id201618180055756\n"
+"help.text"
+msgid "In Base documents"
+msgstr ""
+
+#. J3Btp
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id711616768164987\n"
+"help.text"
+msgid "A <literal>FormDocument</literal> inside a Base document is accessed by its name. The following example opens the form document named <literal>thisFormDocument</literal> and accesses the form <literal>MainForm</literal>:"
+msgstr ""
+
+#. pbtEM
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"bas_id271598171225874\n"
+"help.text"
+msgid "' The statement below is necessary only if the form hasn't been opened yet"
+msgstr ""
+
+#. EDADK
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"bas_id51616768358888\n"
+"help.text"
+msgid "' Or, alternatively, to access the form by its index ..."
+msgstr ""
+
+#. 2v2aG
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id991618249636036\n"
+"help.text"
+msgid "To perform any action on a form using the <literal>Form</literal> service, the <literal>FormDocument</literal> must have been opened either manually by the user or programmatically in a user script. The latter can be done by calling the <literal>OpenFormDocument</literal> method of the <link href=\"text/sbasic/shared/03/sf_base.xhp\" name=\"ScriptForge Base Service\"><literal>Base</literal> service</link>."
+msgstr ""
+
+#. DDerZ
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id11618180564274\n"
+"help.text"
+msgid "To access a given subform of a form use the <literal>SubForms</literal> method. Note that in the example below <literal>mySubForm</literal> is a new instance of the <literal>Form</literal> service."
+msgstr ""
+
+#. e7fcY
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id681622028653480\n"
+"help.text"
+msgid "Previous examples translate in Python as:"
+msgstr ""
+
+#. ebc4K
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"pyc_id811622808499801\n"
+"help.text"
+msgid "# The statement below is necessary only if the form hasn't been opened yet"
+msgstr ""
+
+#. GdyX6
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"pyc_id511622808538351\n"
+"help.text"
+msgid "# Or, alternatively, to access the form by its index ..."
+msgstr ""
+
+#. QFFzk
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"hd_id211618180379064\n"
+"help.text"
+msgid "In Form events"
+msgstr ""
+
+#. WBzCD
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id421616768529754\n"
+"help.text"
+msgid "To invoke the <literal>Form</literal> service when a form event takes place:"
+msgstr ""
+
+#. k2fKf
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id721623150543016\n"
+"help.text"
+msgid "It is recommended to free resources after use of the Form service."
+msgstr ""
+
+#. pF9UQ
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id221623150547406\n"
+"help.text"
+msgid "This operation is done implicitly when a form document is closed with the <literal>CloseFormDocument()</literal> method described below."
+msgstr ""
+
+#. GueeT
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"hd_id651583668365757\n"
+"help.text"
+msgid "Properties"
+msgstr ""
+
+#. 9LaxS
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id871583668386455\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. SpGw6
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id491583668386455\n"
+"help.text"
+msgid "Readonly"
+msgstr ""
+
+#. K7Bsy
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id271583668474014\n"
+"help.text"
+msgid "Type"
+msgstr ""
+
+#. ekeZU
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id401583668386455\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. wSC47
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id371583668519172\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. jJ2dL
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id771583668386455\n"
+"help.text"
+msgid "Specifies if the form allows to delete records."
+msgstr ""
+
+#. DBxgx
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id541583839708548\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. j5J3C
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id731583839708412\n"
+"help.text"
+msgid "Specifies if the form allows to add records."
+msgstr ""
+
+#. FCFEk
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id761584027709516\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. 8qCAE
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id971584027709752\n"
+"help.text"
+msgid "Specifies if the form allows to update records."
+msgstr ""
+
+#. VxAL4
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id31583839767743\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. CRA7v
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id111583839767195\n"
+"help.text"
+msgid "Specifies the hierarchical name of the Base Form containing the actual form."
+msgstr ""
+
+#. FehA2
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id771583839920487\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. V8tZX
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id451583839920858\n"
+"help.text"
+msgid "Specifies uniquely the current record of the form's underlying table, query or SQL statement."
+msgstr ""
+
+#. 3jDxi
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id571588333908716\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. 7NUo8
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id721588333908708\n"
+"help.text"
+msgid "Identifies the current record in the dataset being viewed on a form. If the row number is positive, the cursor moves to the given row number with respect to the beginning of the result set. Row count starts at 1. If the given row number is negative, the cursor moves to an absolute row position with respect to the end of the result set. Row -1 refers to the last row in the result set."
+msgstr ""
+
+#. FKDA7
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id501583774433513\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. eAsdX
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id151598177605296\n"
+"help.text"
+msgid "Specifies a subset of records to be displayed as a <literal>SQL</literal> <literal>WHERE</literal>-clause without the <literal>WHERE</literal> keyword."
+msgstr ""
+
+#. uyje5
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id271588334016191\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. FQDDW
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id251588334016874\n"
+"help.text"
+msgid "Specifies how records in a child subform are linked to records in its parent form."
+msgstr ""
+
+#. DMwPW
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id901616774153495\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. 2EiCA
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id981616774153723\n"
+"help.text"
+msgid "Specifies how records in a child subform are linked to records in its parent form."
+msgstr ""
+
+#. ppCiD
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id501616774304840\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. kPfzG
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id461616774304497\n"
+"help.text"
+msgid "The name of the current form."
+msgstr ""
+
+#. vpBCA
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id751616774384451\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. ppErx
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id321616774384489\n"
+"help.text"
+msgid "Specifies in which order the records should be displayed as a <literal>SQL</literal> <literal>ORDER BY</literal> clause without the <literal>ORDER BY</literal> keywords."
+msgstr ""
+
+#. AGC5s
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id261616774918923\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. rjCpM
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id171616774918881\n"
+"help.text"
+msgid "The parent of the current form. It can be either a <literal>SFDocuments</literal>.<literal>Form</literal> or a <literal>SFDocuments</literal>.<literal>Document</literal> object."
+msgstr ""
+
+#. rLS8r
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id501616777650751\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. USDVC
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id91616777650933\n"
+"help.text"
+msgid "Specifies the source of the data, as a table name, a query name or a SQL statement."
+msgstr ""
+
+#. rtCsj
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id451598177924437\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. GxHLP
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id94159817792441\n"
+"help.text"
+msgid "UNO<br/>object"
+msgstr ""
+
+#. VYFDs
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id191598177924897\n"
+"help.text"
+msgid "The UNO object representing interactions with the form. Refer to <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1form_1_1XForm.html\" name=\"XForm interface\">XForm</link> and <link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1form_1_1component_1_1DataForm.html\" name=\"DataForm service\">DataForm</link> in the API documentation for detailed information."
+msgstr ""
+
+#. cwE3k
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"hd_id421612628828054\n"
+"help.text"
+msgid "Event properties"
+msgstr ""
+
+#. eTuoa
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id41612629140856\n"
+"help.text"
+msgid "The properties below return or set URI strings that define the script triggered by the event."
+msgstr ""
+
+#. fdses
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id961612628879819\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. DsQGQ
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id401612628879819\n"
+"help.text"
+msgid "ReadOnly"
+msgstr ""
+
+#. 5FemG
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id281612628879819\n"
+"help.text"
+msgid "Basic IDE Description"
+msgstr ""
+
+#. PgdP8
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id111612629836630\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. GAgms
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id1001612629836902\n"
+"help.text"
+msgid "Before record change"
+msgstr ""
+
+#. Mr9ns
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id291612629836294\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. DwhZn
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id62161262983683\n"
+"help.text"
+msgid "Fill parameters"
+msgstr ""
+
+#. DrMbU
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id81612629836634\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. eAJAN
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id881612629836744\n"
+"help.text"
+msgid "Prior to reset"
+msgstr ""
+
+#. Y9d6z
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id591612629836830\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. LKxEu
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id161612629836775\n"
+"help.text"
+msgid "Before record action"
+msgstr ""
+
+#. Zyx2S
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id891612629836630\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. 2HBeC
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id461612629836679\n"
+"help.text"
+msgid "Before submitting"
+msgstr ""
+
+#. 2fJrZ
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id131612629836291\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. BX4AH
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id151612629836151\n"
+"help.text"
+msgid "Confirm deletion"
+msgstr ""
+
+#. W9izF
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id211612629836725\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. pDvPB
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id361612629836624\n"
+"help.text"
+msgid "After record change"
+msgstr ""
+
+#. WprGG
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id311612629836481\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. Xn2CS
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id721612629836752\n"
+"help.text"
+msgid "Error occurred"
+msgstr ""
+
+#. B3zCy
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id981612629836116\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. L3Ac6
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id381612629836635\n"
+"help.text"
+msgid "When loading"
+msgstr ""
+
+#. 9Z9vv
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id711612629836704\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. XL4Js
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id35161262983642\n"
+"help.text"
+msgid "When reloading"
+msgstr ""
+
+#. P6DEi
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id44161677878329\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. ywCsh
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id661616778783899\n"
+"help.text"
+msgid "Before reloading"
+msgstr ""
+
+#. eGnRj
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id651616778529764\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. E6JUH
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id311616778529570\n"
+"help.text"
+msgid "After resetting"
+msgstr ""
+
+#. VDAk5
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id601616778529481\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. 99FfH
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id351616778529352\n"
+"help.text"
+msgid "After record action"
+msgstr ""
+
+#. CxndA
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id711616778529292\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. DTDCq
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id981616778529250\n"
+"help.text"
+msgid "When unloading"
+msgstr ""
+
+#. iWroa
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id521616778529932\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. pVPR9
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id511616778529291\n"
+"help.text"
+msgid "Before unloading"
+msgstr ""
+
+#. EoCKE
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id961618181634322\n"
+"help.text"
+msgid "To learn more about URI strings, refer to the <link href=\"https://wiki.documentfoundation.org/Documentation/DevGuide/Scripting_Framework#Scripting_Framework_URI_Specification\" name=\"URI specification\">Scripting Framework URI Specification</link>."
+msgstr ""
+
+#. bkBH8
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id921606472825856\n"
+"help.text"
+msgid "List of methods in the Form service"
+msgstr ""
+
+#. KwDij
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id871583933076448\n"
+"help.text"
+msgid "Sets the focus on the current <literal>Form</literal> instance. Returns <literal>True</literal> if focusing was successful."
+msgstr ""
+
+#. 9qj5F
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id81616858956290\n"
+"help.text"
+msgid "The behavior of the <literal>Activate</literal> method depends on the type of document where the form is located:"
+msgstr ""
+
+#. YVgyr
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id761616858967361\n"
+"help.text"
+msgid "<emph>In Writer documents:</emph> Sets the focus on that document."
+msgstr ""
+
+#. HKFTw
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id931616859010103\n"
+"help.text"
+msgid "<emph>In Calc documents:</emph> Sets the focus on the sheet to which the form belongs."
+msgstr ""
+
+#. 6jx5G
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id41616859019478\n"
+"help.text"
+msgid "<emph>In Base documents:</emph> Sets the focus on the <literal>FormDocument</literal> the <literal>Form</literal> refers to."
+msgstr ""
+
+#. J5C7y
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id921618228229529\n"
+"help.text"
+msgid "The following example assumes you want to activate the form named <literal>FormA</literal> located in <literal>Sheet1</literal> of the currently open Calc file. It first gets access to the document using the <literal>Document</literal> service and <literal>ThisComponent</literal> and then activates the form."
+msgstr ""
+
+#. 4EC5M
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"bas_id21618228468066\n"
+"help.text"
+msgid "'Gets hold of the form that will be activated"
+msgstr ""
+
+#. M2Wks
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"bas_id201618228487565\n"
+"help.text"
+msgid "'Activates the form"
+msgstr ""
+
+#. YHxMm
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id81618228720782\n"
+"help.text"
+msgid "<literal>ThisComponent</literal> applies to Calc and Writer documents. For Base documents use <literal>ThisDataBaseDocument</literal>."
+msgstr ""
+
+#. QznyJ
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id501616860541195\n"
+"help.text"
+msgid "Closes the form document containing the actual <literal>Form</literal> instance. The <literal>Form</literal> instance is disposed."
+msgstr ""
+
+#. CcCpD
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id611618229004669\n"
+"help.text"
+msgid "This method only closes form documents located in Base documents. If the form is stored in a Writer or Calc document, calling <literal>CloseFormDocument</literal> will have no effect."
+msgstr ""
+
+#. a8CxQ
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id161584541257982\n"
+"help.text"
+msgid "The value returned by the <literal>Controls</literal> method depends on the arguments provided:"
+msgstr ""
+
+#. VXWwg
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id421598179770993\n"
+"help.text"
+msgid "If the method is called <emph>without arguments</emph>, then it returns the list of the controls contained in the form. Be aware that the returned list does not contain any subform controls."
+msgstr ""
+
+#. SsiUX
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id81598185229301\n"
+"help.text"
+msgid "If the optional <literal>ControlName</literal> argument is provided, the method returns a <literal>FormControl</literal> class instance referring to the specified control."
+msgstr ""
+
+#. 7CFJU
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id1001584541257789\n"
+"help.text"
+msgid "<emph>controlname</emph> : A valid control name as a case-sensitive string. If absent, the list of control names is returned as a zero-based array."
+msgstr ""
+
+#. unh4B
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id291616861407907\n"
+"help.text"
+msgid "Return a <link href=\"text/sbasic/shared/03/sf_database.xhp\" name=\"DBService\"><literal>SFDatabases</literal>.<literal>Database</literal></link> instance giving access to the execution of SQL commands on the database the current form is connected to and/or that is stored in the current Base document."
+msgstr ""
+
+#. fZRst
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id991616861417207\n"
+"help.text"
+msgid "Each form has its own database connection, except in Base documents where they all share the same connection."
+msgstr ""
+
+#. wFSWb
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id701616861134906\n"
+"help.text"
+msgid "<emph>user, password</emph>: The login optional parameters (Default = \"\")."
+msgstr ""
+
+#. 83Jju
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id771616861842867\n"
+"help.text"
+msgid "The form cursor is positioned on the first record. Returns <literal>True</literal> if successful."
+msgstr ""
+
+#. rapRE
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id331616863143187\n"
+"help.text"
+msgid "The form cursor is positioned on the last record. Returns <literal>True</literal> if successful."
+msgstr ""
+
+#. HZELb
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id361616863143954\n"
+"help.text"
+msgid "The form cursor is positioned on the new record area. Returns <literal>True</literal> if successful."
+msgstr ""
+
+#. 2QwcR
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id541616863143461\n"
+"help.text"
+msgid "The form cursor is positioned on the next record. Returns <literal>True</literal> if successful."
+msgstr ""
+
+#. a2gGn
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id271616863582607\n"
+"help.text"
+msgid "<emph>offset</emph>: The number of records to go forward (Default = 1)."
+msgstr ""
+
+#. e6huC
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id616168637945\n"
+"help.text"
+msgid "The form cursor is positioned on the previous record. Returns <literal>True</literal> if successful."
+msgstr ""
+
+#. tAnVw
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id751616863794125\n"
+"help.text"
+msgid "<emph>offset</emph>: The number of records to go backwards (Default = 1)."
+msgstr ""
+
+#. Kp4Wo
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id811616864216529\n"
+"help.text"
+msgid "Reloads the current data from the database and refreshes the form. The cursor is positioned on the first record. Returns <literal>True</literal> if successful."
+msgstr ""
+
+#. 5gBGr
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id891616864510614\n"
+"help.text"
+msgid "The value returned by the <literal>Subforms</literal> method depends on the arguments provided:"
+msgstr ""
+
+#. 4yG2j
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id951616864510585\n"
+"help.text"
+msgid "If the method is called <emph>without any arguments</emph>, then it returns the list of subforms contained in the current form or subform instance."
+msgstr ""
+
+#. AD3Q6
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id591616864510445\n"
+"help.text"
+msgid "If the optional <literal>subform</literal> argument is provided, the method returns a new <literal>SFDocuments</literal>.<literal>Form</literal> instance based on the specified form/subform name or index."
+msgstr ""
+
+#. GCRsS
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id341616864510747\n"
+"help.text"
+msgid "<emph>subform</emph>: A subform stored in the current <literal>Form</literal> class instance given by its name or index."
+msgstr ""
+
+#. uKm6R
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id211618230389251\n"
+"help.text"
+msgid "When this argument is absent, the method returns a list of available subforms as a zero-based array. If the form has a single subform, you can set <literal>subform = 0</literal> to get access to it."
+msgstr ""
+
+#. CfGgB
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"tit\n"
+"help.text"
+msgid "SFDocuments.FormControl service"
+msgstr ""
+
+#. vND8Z
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"bm_id781582391760253\n"
+"help.text"
+msgid "<variable id=\"FormControlService\"><link href=\"text/sbasic/shared/03/sf_formcontrol.xhp\" name=\"SFDocuments.FormControl service\"><literal>SFDocuments</literal>.<literal>FormControl</literal> service</link></variable>"
+msgstr ""
+
+#. XFkrG
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id931583589764919\n"
+"help.text"
+msgid "The <literal>FormControl</literal> service provides access to the controls that belong to a form, a subform or a table control of a <literal>FormDocument</literal>. Each instance of the <literal>FormControl</literal> service refers to a single control in the form. This service allows users to:"
+msgstr ""
+
+#. irNFC
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id451618771561326\n"
+"help.text"
+msgid "Get and set the properties of the control represented by the <literal>FormControl</literal> instance."
+msgstr ""
+
+#. S5aH9
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id601618771565183\n"
+"help.text"
+msgid "Access the current value displayed by the control."
+msgstr ""
+
+#. P5xzV
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id981618771567951\n"
+"help.text"
+msgid "Set the focus on the desired control."
+msgstr ""
+
+#. LUDRM
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id301616939922857\n"
+"help.text"
+msgid "To use the <literal>FormControl</literal> service in a particular form, subform or table control, all controls must have unique names."
+msgstr ""
+
+#. JMFEb
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id541618771629112\n"
+"help.text"
+msgid "Radio buttons that share the same group name must also have unique control names."
+msgstr ""
+
+#. mAwyv
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id51618771641273\n"
+"help.text"
+msgid "The main purpose of the <literal>FormControl</literal> service is setting and getting the properties and values displayed by the controls in a form."
+msgstr ""
+
+#. K2Bgc
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id81618774023346\n"
+"help.text"
+msgid "All controls have a <literal>Value</literal> property. However, its contents will vary according to the control type. For more information, read <link href=\"text/sbasic/shared/03/sf_formcontrol.xhp#hd_id81598540704978\" name=\"Value property\">The <literal>Value</literal> Property</link> below."
+msgstr ""
+
+#. kF29h
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id881618771651907\n"
+"help.text"
+msgid "It is also possible to format the controls via the <literal>XControlModel</literal> and <literal>XControlView</literal> properties."
+msgstr ""
+
+#. WEST9
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id891598188164936\n"
+"help.text"
+msgid "The <literal>SFDocuments.FormControl</literal> service is closely related to the <link href=\"text/sbasic/shared/03/sf_form.xhp\" name=\"Form service\"><literal>SFDocuments.Form</literal></link> service."
+msgstr ""
+
+#. rUEuw
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"hd_id581582885621841\n"
+"help.text"
+msgid "Service invocation"
+msgstr ""
+
+#. pzkhK
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id141609955500101\n"
+"help.text"
+msgid "Before using the <literal>FormControl</literal> service the <literal>ScriptForge</literal> library needs to be loaded or imported:"
+msgstr ""
+
+#. BeDqF
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id361598174756160\n"
+"help.text"
+msgid "The <literal>FormControl</literal> service is invoked from an existing <literal>Form</literal> service instance through its <literal>Controls</literal> method."
+msgstr ""
+
+#. 56bE7
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"pyc_id721622556808773\n"
+"help.text"
+msgid "control.Value = 'Current Time = ' + strftime(\"%a, %d %b %Y %H:%M:%S\", localtime())"
+msgstr ""
+
+#. FaP92
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id781618772761258\n"
+"help.text"
+msgid "To learn more about how to open a <literal>FormDocument</literal> and get access to its forms, refer to the <link href=\"text/sbasic/shared/03/sf_form.xhp\" name=\"Form service\">SFDocuments.Form</link> service help page."
+msgstr ""
+
+#. qeXCN
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id951598174966322\n"
+"help.text"
+msgid "Alternatively a <literal>FormControl</literal> instance can be retrieved via the <literal>SFDocuments.FormEvent</literal> service, which returns the <literal>SFDocuments.FormControl</literal> class instance that triggered the event."
+msgstr ""
+
+#. bSfxy
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"bas_id801598175242937\n"
+"help.text"
+msgid "' oControl now represents the instance of the FormControl class that triggered the current event"
+msgstr ""
+
+#. EgCtB
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id251598176312571\n"
+"help.text"
+msgid "Note that in previous examples, the prefix <literal>\"SFDocuments.\"</literal> may be omitted."
+msgstr ""
+
+#. 7gE8Y
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id951618773412097\n"
+"help.text"
+msgid "The <literal>FormEvent</literal> service is used exclusively to create instances of the <literal>SFDocuments.Form</literal> and <literal>SFDocuments.FormControl</literal> services when a form or control event takes place."
+msgstr ""
+
+#. AppFj
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"hd_id71598455687512\n"
+"help.text"
+msgid "Control types"
+msgstr ""
+
+#. ezcW8
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id851598455863395\n"
+"help.text"
+msgid "The <literal>FormControl</literal> service is available for the following control types:"
+msgstr ""
+
+#. BESBv
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"hd_id651583668365757\n"
+"help.text"
+msgid "Properties"
+msgstr ""
+
+#. VrBfK
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id871583668386455\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. hDr9G
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id491583668386455\n"
+"help.text"
+msgid "Readonly"
+msgstr ""
+
+#. kWac7
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id271583668474014\n"
+"help.text"
+msgid "Type"
+msgstr ""
+
+#. dXwGN
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id291598538799794\n"
+"help.text"
+msgid "Applicable to"
+msgstr ""
+
+#. bEQWc
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id401583668386455\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. N3ejK
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id371583668519172\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. PszFp
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id771583668386455\n"
+"help.text"
+msgid "Specifies the action triggered when the button is clicked. Accepted values are: <literal>none</literal>, <literal>submitForm</literal>, <literal>resetForm</literal>, <literal>refreshForm</literal>, <literal>moveToFirst</literal>, <literal>moveToLast</literal>, <literal>moveToNext</literal>, <literal>moveToPrev</literal>, <literal>saveRecord</literal>, <literal>moveToNew</literal>, <literal>deleteRecord</literal>, <literal>undoRecord</literal>."
+msgstr ""
+
+#. fmzNT
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id541583839708548\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. 62Bud
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id731583839708412\n"
+"help.text"
+msgid "Specifies the text displayed by the control."
+msgstr ""
+
+#. nFFDY
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id411616942306677\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. 8H6BR
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id461616942306745\n"
+"help.text"
+msgid "Specifies the rowset field mapped onto the current control."
+msgstr ""
+
+#. AJUH6
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id761584027709516\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. Enqxp
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id261598539120502\n"
+"help.text"
+msgid "All"
+msgstr ""
+
+#. FsCJK
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id971584027709752\n"
+"help.text"
+msgid "One of the control types listed above."
+msgstr ""
+
+#. DH84k
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id31583839767743\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. pRrwC
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id111583839767195\n"
+"help.text"
+msgid "Specifies whether a command button is the default OK button."
+msgstr ""
+
+#. 2dP2A
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id241616942739459\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. Sukx9
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id271616942739359\n"
+"help.text"
+msgid "Specifies the default value used to initialize a control in a new record."
+msgstr ""
+
+#. nFBUQ
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id771583839920487\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. fQYqd
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id891598539196786\n"
+"help.text"
+msgid "All (except HiddenControl)"
+msgstr ""
+
+#. MmDQ5
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id451583839920858\n"
+"help.text"
+msgid "Specifies if the control is accessible with the cursor."
+msgstr ""
+
+#. VDkDh
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id571588333908716\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. 8X3Ho
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id721588333908708\n"
+"help.text"
+msgid "Specifies the format used to display dates and times. It must be one of following strings:"
+msgstr ""
+
+#. 6CqCN
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id891598456980194\n"
+"help.text"
+msgid "For dates: \"Standard (short)\", \"Standard (short YY)\", \"Standard (short YYYY)\", \"Standard (long)\", \"DD/MM/YY\", \"MM/DD/YY\", \"YY/MM/DD\", \"DD/MM/YYYY\", \"MM/DD/YYYY\" , \"YYYY/MM/DD\", \"YY-MM-DD\", \"YYYY-MM-DD\"."
+msgstr ""
+
+#. f6gni
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id221598456991070\n"
+"help.text"
+msgid "For times: \"24h short\", \"24h long\", \"12h short\", \"12h long\"."
+msgstr ""
+
+#. RqjAh
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id501583774433513\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. E4aHX
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id151598177605296\n"
+"help.text"
+msgid "Returns the number of rows in a ListBox or a ComboBox."
+msgstr ""
+
+#. ApC5v
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id271588334016191\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. XQ3AV
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id251588334016874\n"
+"help.text"
+msgid "Specifies which item is selected in a ListBox or ComboBox. In case of multiple selection, the index of the first item is returned or only one item is set."
+msgstr ""
+
+#. 5DjjX
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id891616944120697\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. nNqW5
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id901616944120614\n"
+"help.text"
+msgid "Specifies the data contained in a ComboBox or a ListBox as a zero-based array of string values."
+msgstr ""
+
+#. rvVZ7
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id21616944586559\n"
+"help.text"
+msgid "Combined with <literal>ListSourceType</literal>, may also contain the name of a table, a query or a complete <literal>SQL</literal> statement."
+msgstr ""
+
+#. jqgF5
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id821616944631740\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. sqr2g
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id131616944631625\n"
+"help.text"
+msgid "Specifies the type of data contained in a combobox or a listbox."
+msgstr ""
+
+#. Fdm4C
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id881616944631341\n"
+"help.text"
+msgid "It must be one of the <link href=\"https://api.libreoffice.org/docs/idl/ref/ListSourceType_8idl_source.html\" name=\"ListSourceType\"><literal>com.sun.star.form.ListSourceType.*</literal></link> constants."
+msgstr ""
+
+#. BQ7JE
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id961598457655506\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. EV4jD
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id2159845765568\n"
+"help.text"
+msgid "Specifies if the control is read-only."
+msgstr ""
+
+#. CXDED
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id621598457951781\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. e7HnA
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id821598457951782\n"
+"help.text"
+msgid "Specifies whether the user can select multiple items in a listbox."
+msgstr ""
+
+#. TZuvX
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id351598458170114\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. AtLKa
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id151598539764402\n"
+"help.text"
+msgid "All"
+msgstr ""
+
+#. EuBGK
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id621598458170392\n"
+"help.text"
+msgid "The name of the control."
+msgstr ""
+
+#. SNTgh
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id161598458580581\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. CTjAM
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id181598539807426\n"
+"help.text"
+msgid "All"
+msgstr ""
+
+#. z8w8o
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id801598458580456\n"
+"help.text"
+msgid "Depending on the parent type, a form, a subform or a tablecontrol, returns the parent <literal>SFDocuments</literal>.<literal>Form</literal> or <literal>SFDocuments</literal>.<literal>FormControl</literal> class object instance."
+msgstr ""
+
+#. fyoXF
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id971598458773352\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. RnXeR
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id451598458773588\n"
+"help.text"
+msgid "Specifies the file name containing a bitmap or other type of graphic to be displayed on the control. The filename must comply with the <literal>FileNaming</literal> attribute of the <literal>ScriptForge.FileSystem</literal> service."
+msgstr ""
+
+#. PHBtj
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id251616946015886\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. oYA7V
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id91616946015258\n"
+"help.text"
+msgid "A control is said required when the underlying data must not contain a <literal>null</literal> value."
+msgstr ""
+
+#. NbTpX
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id781598516764550\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. Rv448
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id11159851676440\n"
+"help.text"
+msgid "Gives access to the text being displayed by the control."
+msgstr ""
+
+#. 7kxit
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id411598517275112\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. MNqBi
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id171598539985022\n"
+"help.text"
+msgid "All (except HiddenControl)"
+msgstr ""
+
+#. VXR9Y
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id651598517275384\n"
+"help.text"
+msgid "Specifies the text that appears as a tooltip when you hover the mouse pointer over the control."
+msgstr ""
+
+#. Awzep
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id821598517418463\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. 6S5EL
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id141598517418822\n"
+"help.text"
+msgid "Specifies if the checkbox control may appear dimmed (grayed) or not."
+msgstr ""
+
+#. mCQFz
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id701598517671373\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. mHxWu
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id1001598540024225\n"
+"help.text"
+msgid "This property depends on the current control type. Refer to <link href=\"text/sbasic/shared/03/sf_formcontrol.xhp#hd_id81598540704978\" name=\"Value property\">The <literal>Value</literal> property</link> for more information."
+msgstr ""
+
+#. ybVim
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id661598517730941\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. G52FE
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id761598540042290\n"
+"help.text"
+msgid "All (except HiddenControl)"
+msgstr ""
+
+#. 5juZG
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id881598517730836\n"
+"help.text"
+msgid "Specifies if the control is hidden or visible."
+msgstr ""
+
+#. FAYCA
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id451598177924437\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. UZ7ug
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id94159817792441\n"
+"help.text"
+msgid "UNO<br/>object"
+msgstr ""
+
+#. 65CSA
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id311598540066789\n"
+"help.text"
+msgid "All"
+msgstr ""
+
+#. 25EFH
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id191598177924897\n"
+"help.text"
+msgid "The UNO object representing the control model. Refer to <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1awt_1_1XControlModel.html\" name=\"awt.XControlModel\">XControlModel</link> and <link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1awt_1_1UnoControlModel.html\" name=\"awt.UnoControlModel\">UnoControlModel</link> in the API documentation for more information."
+msgstr ""
+
+#. FzDR6
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id811598178083501\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. Bdvyd
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id981598178083938\n"
+"help.text"
+msgid "UNO<br/>object"
+msgstr ""
+
+#. DFQ5P
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id551598540079329\n"
+"help.text"
+msgid "All"
+msgstr ""
+
+#. XahSM
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id731598178083442\n"
+"help.text"
+msgid "The UNO object representing the control view. Refer to <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1awt_1_1XControl.html\" name=\"awt.XControl\">XControl</link> and <link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1awt_1_1UnoControl.html\" name=\"awt.UnoControl\">UnoControl</link> in the API documentation for more information."
+msgstr ""
+
+#. pqsod
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"hd_id81598540704978\n"
+"help.text"
+msgid "The <variable id=\"ValueProperty\"><literal>Value</literal> property</variable>"
+msgstr ""
+
+#. PbEBw
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id10159854325492\n"
+"help.text"
+msgid "Control type"
+msgstr ""
+
+#. bsmCC
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id741598543254158\n"
+"help.text"
+msgid "Type"
+msgstr ""
+
+#. MWgHB
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id961598543254444\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. FLUGH
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id741598543254108\n"
+"help.text"
+msgid "Applicable to toggle buttons only."
+msgstr ""
+
+#. jpLCR
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id741598543254376\n"
+"help.text"
+msgid "Boolean or Integer"
+msgstr ""
+
+#. ErAZY
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id521598543254630\n"
+"help.text"
+msgid "0, False: not checked<br/>1, True: checked<br/>2: grayed out, don't know (applicable if <literal>TripleState</literal> is <literal>True</literal>)"
+msgstr ""
+
+#. 3frrW
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id331598543254947\n"
+"help.text"
+msgid "The selected value, as a String. The <literal>ListIndex</literal> property is an alternate option to access the index of the selected value."
+msgstr ""
+
+#. faEEm
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id5159854325443\n"
+"help.text"
+msgid "Numeric"
+msgstr ""
+
+#. VyagB
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id971598543254757\n"
+"help.text"
+msgid "A file name formatted in accordance with the <literal>FileNaming</literal> property of the <literal>ScriptForge.FileSystem</literal> service"
+msgstr ""
+
+#. CaGtr
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id221598543254760\n"
+"help.text"
+msgid "String or Numeric"
+msgstr ""
+
+#. gtxJY
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id42159854325422\n"
+"help.text"
+msgid "String or array of strings"
+msgstr ""
+
+#. kBH32
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id601598543254780\n"
+"help.text"
+msgid "The selected row(s) as a single string or an array of strings. Only a single value can be set. If the box is linked to a database, this property gets or sets the underlying data. Otherwise it gets or sets the data being displayed."
+msgstr ""
+
+#. f7EZX
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id461598543254909\n"
+"help.text"
+msgid "Numeric"
+msgstr ""
+
+#. DrhU9
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id851598543254624\n"
+"help.text"
+msgid "Each button has its own name. Multiple RadioButton controls are linked together when they share the same group name. If a RadioButton is set to <literal>True</literal>, the other related buttons are automatically set to <literal>False</literal>"
+msgstr ""
+
+#. WEsqT
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id531598543254869\n"
+"help.text"
+msgid "Numeric"
+msgstr ""
+
+#. LxeLY
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id21598543254994\n"
+"help.text"
+msgid "Must be within the predefined bounds"
+msgstr ""
+
+#. mpoa7
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id951616947400919\n"
+"help.text"
+msgid "Numeric"
+msgstr ""
+
+#. x6ZLt
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id48161694740085\n"
+"help.text"
+msgid "Must be within the predefined bounds"
+msgstr ""
+
+#. UZLYC
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id441598543254738\n"
+"help.text"
+msgid "The text appearing in the field"
+msgstr ""
+
+#. WBHoJ
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"hd_id421612628828054\n"
+"help.text"
+msgid "Event properties"
+msgstr ""
+
+#. tqnsA
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id41612629140856\n"
+"help.text"
+msgid "The properties below return or set URI strings that define the script triggered by the event."
+msgstr ""
+
+#. 7Azyz
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id961612628879819\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. N4btE
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id401612628879819\n"
+"help.text"
+msgid "ReadOnly"
+msgstr ""
+
+#. RXoDM
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id281612628879819\n"
+"help.text"
+msgid "Description as labeled in the Basic IDE"
+msgstr ""
+
+#. yhjPA
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id91612707166532\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. HVTKN
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id291612707166258\n"
+"help.text"
+msgid "Execute action"
+msgstr ""
+
+#. T5CTw
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id79161270716675\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. qs3LA
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id831612707166731\n"
+"help.text"
+msgid "While adjusting"
+msgstr ""
+
+#. vUbN6
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id301616948330694\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. PopWN
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id901616948330305\n"
+"help.text"
+msgid "Approve action"
+msgstr ""
+
+#. PmE7k
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id821616948330888\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. rjQCJ
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id111616948330257\n"
+"help.text"
+msgid "Prior to reset"
+msgstr ""
+
+#. octLi
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id271616948330553\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. D7yir
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id451616948330759\n"
+"help.text"
+msgid "Before updating"
+msgstr ""
+
+#. YM7Nt
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id71616948330769\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. pHG54
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id211616948330895\n"
+"help.text"
+msgid "Changed"
+msgstr ""
+
+#. UaRoN
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id121616948330654\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. tfW7M
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id2216169483303\n"
+"help.text"
+msgid "Error occurred"
+msgstr ""
+
+#. vDFhJ
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id111612629836630\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. NN9FK
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id1001612629836902\n"
+"help.text"
+msgid "When receiving focus"
+msgstr ""
+
+#. tLp7Y
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id291612629836294\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. DDcCF
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id62161262983683\n"
+"help.text"
+msgid "When losing focus"
+msgstr ""
+
+#. EBVQM
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id51612707354544\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. PLPUr
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id211612707354899\n"
+"help.text"
+msgid "Item status changed"
+msgstr ""
+
+#. zBci2
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id81612629836634\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. vPrAA
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id881612629836744\n"
+"help.text"
+msgid "Key pressed"
+msgstr ""
+
+#. 8cFqR
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id591612629836830\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. 6rrBt
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id161612629836775\n"
+"help.text"
+msgid "Key released"
+msgstr ""
+
+#. 7Pzmy
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id891612629836630\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. 2pMWG
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id461612629836679\n"
+"help.text"
+msgid "Mouse moved while key presses"
+msgstr ""
+
+#. SGYBr
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id131612629836291\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. AJGQd
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id151612629836151\n"
+"help.text"
+msgid "Mouse inside"
+msgstr ""
+
+#. 6cFkB
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id211612629836725\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. tfmtf
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id361612629836624\n"
+"help.text"
+msgid "Mouse outside"
+msgstr ""
+
+#. 6E7WA
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id311612629836481\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. CeNku
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id721612629836752\n"
+"help.text"
+msgid "Mouse moved"
+msgstr ""
+
+#. iSxsS
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id981612629836116\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. 9yirD
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id381612629836635\n"
+"help.text"
+msgid "Mouse button pressed"
+msgstr ""
+
+#. b6pFV
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id711612629836704\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. D5vXU
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id35161262983642\n"
+"help.text"
+msgid "Mouse button released"
+msgstr ""
+
+#. 9Ui2H
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id31616948666215\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. mdLSp
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id951616948666674\n"
+"help.text"
+msgid "After resetting"
+msgstr ""
+
+#. jb4at
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id811612707606330\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. m3Rb7
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id621612707606219\n"
+"help.text"
+msgid "Text modified"
+msgstr ""
+
+#. bfgkG
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id41616948721642\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. imn6B
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id311616948721872\n"
+"help.text"
+msgid "After updating"
+msgstr ""
+
+#. CrwBN
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id961618181634181\n"
+"help.text"
+msgid "To learn more about URI strings, refer to the <link href=\"https://wiki.documentfoundation.org/Documentation/DevGuide/Scripting_Framework#Scripting_Framework_URI_Specification\" name=\"URI specification\">Scripting Framework URI Specification</link>."
+msgstr ""
+
+#. RpNkd
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id891611613601554\n"
+"help.text"
+msgid "List of Methods in the FormControl Service"
+msgstr ""
+
+#. CKZDf
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id161584541257982\n"
+"help.text"
+msgid "This method is applicable only to controls of the <literal>TableControl</literal> type. The returned value depends on the arguments provided."
+msgstr ""
+
+#. DB3PG
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id701618777636827\n"
+"help.text"
+msgid "If the optional argument <literal>controlname</literal> is absent, then a zero-based Array containing the names of all controls is returned."
+msgstr ""
+
+#. GgAeu
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id851618777715892\n"
+"help.text"
+msgid "On the other hand, if a <literal>controlname</literal> is provided, the method returns a <literal>FormControl</literal> class instance corresponding to the specified control."
+msgstr ""
+
+#. eoLJG
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id1001584541257789\n"
+"help.text"
+msgid "<emph>controlname</emph>: A valid control name as a case-sensitive string. If absent, the list of control names is returned as a zero-based array."
+msgstr ""
+
+#. F4Sdy
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"bas_id471618778075117\n"
+"help.text"
+msgid "' Returns an Array with the names of all controls in \"myTableControl\""
+msgstr ""
+
+#. YoHSo
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id931618778110273\n"
+"help.text"
+msgid "' Returns a FormControl class instance corresponding to \"myCheckBox\""
+msgstr ""
+
+#. AGA7Z
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id391622559441530\n"
+"help.text"
+msgid "Using Python:"
+msgstr ""
+
+#. CprjV
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id871583933076448\n"
+"help.text"
+msgid "Sets the focus on the control. Returns <literal>True</literal> if focusing was successful."
+msgstr ""
+
+#. LuxFE
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id151598178880227\n"
+"help.text"
+msgid "This method is often called from a form or control event."
+msgstr ""
+
+#. haAXC
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"hd_id141618777179310\n"
+"help.text"
+msgid "Additional examples"
+msgstr ""
+
+#. JopFS
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id331618777195723\n"
+"help.text"
+msgid "Below are two examples that illustrate the use of the <literal>FormControl</literal> service."
+msgstr ""
+
+#. 5iGmg
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id371618776324489\n"
+"help.text"
+msgid "The first example reads the current value in a ComboBox containing city names and writes it to a FixedTest control in a Form:"
+msgstr ""
+
+#. 3eh6E
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"pyc_id991622562833004\n"
+"help.text"
+msgid "bas = CreateScriptService('ScriptForge.Basic') # Basic-like methods"
+msgstr ""
+
+#. 8jneo
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"pyc_id781622561048794\n"
+"help.text"
+msgid "lbl_city.Caption = \"Selected city: \" + combo_city.Value"
+msgstr ""
+
+#. kz9SK
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id251618776614814\n"
+"help.text"
+msgid "The following code snippet can be used to process RadioButton controls that share the same group name. In this example, suppose there are three radio buttons with names <literal>optA</literal>, <literal>optB</literal> and <literal>optC</literal> and we wish to display the caption of the selected control."
+msgstr ""
+
+#. hRhNC
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"bas_id251618776933304\n"
+"help.text"
+msgid "MsgBox \"Selected option: \" & optControl.Caption"
+msgstr ""
+
+#. YnBgM
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"pyc_id991622562822004\n"
+"help.text"
+msgid "bas = CreateScriptService('ScriptForge.Basic') # Basic-like methods"
+msgstr ""
+
+#. TNTT9
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"pyc_id441622562080419\n"
+"help.text"
+msgid "bas.MsgBox('Selected option: ' + control.Caption)"
+msgstr ""
+
+#. czP76
+#: sf_intro.xhp
+msgctxt ""
+"sf_intro.xhp\n"
+"tit\n"
+"help.text"
+msgid "Creating Python Scripts with ScriptForge"
+msgstr ""
+
+#. 8BEWT
+#: sf_intro.xhp
+msgctxt ""
+"sf_intro.xhp\n"
+"hd_id461623364876507\n"
+"help.text"
+msgid "<variable id=\"title\"><link href=\"text/sbasic/shared/03/sf_intro.xhp\" name=\"SF_Intro_Page\">Creating Python Scripts with <literal>ScriptForge</literal></link></variable>"
+msgstr ""
+
+#. 6JuA3
+#: sf_intro.xhp
+msgctxt ""
+"sf_intro.xhp\n"
+"hd_id361623410405420\n"
+"help.text"
+msgid "Differences between Basic and Python"
+msgstr ""
+
+#. 3GzhB
+#: sf_intro.xhp
+msgctxt ""
+"sf_intro.xhp\n"
+"par_id41623410443946\n"
+"help.text"
+msgid "The <link href=\"text/sbasic/shared/03/lib_ScriptForge.xhp\" name=\"SF_Lib\">ScriptForge library</link> is available both for Basic and Python. Most services, methods and properties work identically in both programming languages. However, due to differences in how each language works, <literal>ScriptForge</literal> users must be aware of some characteristics of the library when using Python:"
+msgstr ""
+
+#. HsKzK
+#: sf_intro.xhp
+msgctxt ""
+"sf_intro.xhp\n"
+"par_id551623410718241\n"
+"help.text"
+msgid "<emph>Methods and Property names:</emph> In Python, all methods and properties can be used in lowercased, ProperCased or camelCased formats."
+msgstr ""
+
+#. Rg29x
+#: sf_intro.xhp
+msgctxt ""
+"sf_intro.xhp\n"
+"par_id741623411104297\n"
+"help.text"
+msgid "<emph>Arguments:</emph> All keyword arguments passed on to methods are lowercased."
+msgstr ""
+
+#. C6VCu
+#: sf_intro.xhp
+msgctxt ""
+"sf_intro.xhp\n"
+"par_id441623411216354\n"
+"help.text"
+msgid "<emph>Dates:</emph> All date objects are passed and returned as <literal>datetime.datetime</literal> native Python objects."
+msgstr ""
+
+#. FcX93
+#: sf_intro.xhp
+msgctxt ""
+"sf_intro.xhp\n"
+"par_id891623411367669\n"
+"help.text"
+msgid "<emph>Arrays:</emph> One-dimensional arrays are passed and returned as tuples (which is an immutable object). Two-dimensional arrays are passed and returned as tuples of tuples."
+msgstr ""
+
+#. S6wwX
+#: sf_intro.xhp
+msgctxt ""
+"sf_intro.xhp\n"
+"par_id981623411507442\n"
+"help.text"
+msgid "<emph>None:</emph> Python's <literal>None</literal> keyword is equivalent to Basic's <literal>Null</literal>, <literal>Empty</literal> or <literal>Nothing</literal>."
+msgstr ""
+
+#. 2G2uk
+#: sf_intro.xhp
+msgctxt ""
+"sf_intro.xhp\n"
+"par_id21623411611447\n"
+"help.text"
+msgid "<emph>UNO objects:</emph> All UNO structures are exchanged between Basic and Python without any changes."
+msgstr ""
+
+#. WFDrN
+#: sf_intro.xhp
+msgctxt ""
+"sf_intro.xhp\n"
+"par_id651623412069496\n"
+"help.text"
+msgid "<emph>Debugging:</emph> Whenever an error occurs in Python scripts that use <literal>ScriptForge</literal>, the error message provided by the Python execution stack displays the line of code that triggered the error. In Basic error messages do not display this information."
+msgstr ""
+
+#. cPtYB
+#: sf_intro.xhp
+msgctxt ""
+"sf_intro.xhp\n"
+"par_id31623411828158\n"
+"help.text"
+msgid "Visit <link href=\"text/sbasic/python/main0000.xhp#\" name=\"pyscripts_link\">%PRODUCTNAME Python Scripts Help</link> for more information on Python scripting using %PRODUCTNAME."
+msgstr ""
+
+#. CZiTF
+#: sf_intro.xhp
+msgctxt ""
+"sf_intro.xhp\n"
+"hd_id391623411150080\n"
+"help.text"
+msgid "Running Python scripts on %PRODUCTNAME"
+msgstr ""
+
+#. 2j29F
+#: sf_intro.xhp
+msgctxt ""
+"sf_intro.xhp\n"
+"par_id411623364895100\n"
+"help.text"
+msgid "Depending on what you intend to achieve, you may choose one of the following approaches to running Python scripts in %PRODUCTNAME:"
+msgstr ""
+
+#. XHP4Z
+#: sf_intro.xhp
+msgctxt ""
+"sf_intro.xhp\n"
+"par_id681623365274024\n"
+"help.text"
+msgid "<emph>Run Scripts inside the current %PRODUCTNAME process:</emph> Python scripts are executed from within the %PRODUCTNAME process by using the <menuitem>Tools - Macros - Run Macro</menuitem> menu or the APSO extension to call user scripts stored in the Python scripts folder. You can also use the APSO Python shell to interactively run Python scripts."
+msgstr ""
+
+#. pnXQT
+#: sf_intro.xhp
+msgctxt ""
+"sf_intro.xhp\n"
+"par_id761623365278133\n"
+"help.text"
+msgid "<emph>Run Scripts separately from the %PRODUCTNAME process:</emph> Python scripts are executed from an external process that connects to an ongoing %PRODUCTNAME process using a socket."
+msgstr ""
+
+#. uyCPN
+#: sf_intro.xhp
+msgctxt ""
+"sf_intro.xhp\n"
+"par_id631623365667011\n"
+"help.text"
+msgid "If you plan to run scripts from inside the %PRODUCTNAME process, it is recommended to install the <link href=\"https://extensions.libreoffice.org/en/extensions/show/apso-alternative-script-organizer-for-python\" name=\"APSO\">APSO (Alternative Script Organizer for Python) extension</link>. However, to develop Python scripts from outside %PRODUCTNAME, you can choose your preferred Python IDE."
+msgstr ""
+
+#. R4Rfk
+#: sf_intro.xhp
+msgctxt ""
+"sf_intro.xhp\n"
+"hd_id431623365836802\n"
+"help.text"
+msgid "Running Scripts from inside the %PRODUCTNAME process"
+msgstr ""
+
+#. UFGaA
+#: sf_intro.xhp
+msgctxt ""
+"sf_intro.xhp\n"
+"hd_id111623365861568\n"
+"help.text"
+msgid "Using the APSO extension"
+msgstr ""
+
+#. GAQwg
+#: sf_intro.xhp
+msgctxt ""
+"sf_intro.xhp\n"
+"par_id681623365892513\n"
+"help.text"
+msgid "The easiest way to get started with Python scripting in %PRODUCTNAME is by installing the APSO extension. After installing it, open any %PRODUCTNAME component and go to <menuitem>Tools - Macros - Organize Python Scripts</menuitem>."
+msgstr ""
+
+#. iXiDt
+#: sf_intro.xhp
+msgctxt ""
+"sf_intro.xhp\n"
+"par_id111623366334727\n"
+"help.text"
+msgid "In APSO's main window go to <menuitem>Menu - Python Shell</menuitem>."
+msgstr ""
+
+#. JBFa3
+#: sf_intro.xhp
+msgctxt ""
+"sf_intro.xhp\n"
+"par_id931623366329927\n"
+"help.text"
+msgid "Alternatively you can open APSO using the default shortcut <keycode>Alt + Shift + F11</keycode>."
+msgstr ""
+
+#. TKAXE
+#: sf_intro.xhp
+msgctxt ""
+"sf_intro.xhp\n"
+"par_id661623366478092\n"
+"help.text"
+msgid "Now you can start typing Python commands and the shell will print the corresponding output after each line of code is executed."
+msgstr ""
+
+#. zGCxS
+#: sf_intro.xhp
+msgctxt ""
+"sf_intro.xhp\n"
+"par_id581623366559478\n"
+"help.text"
+msgid "To start using the <literal>ScriptForge</literal> library, you need to import the <literal>CreateScriptService</literal> method, with which you will be able to access the services provided by the library. The example below uses the <literal>Basic</literal> service to display a message box."
+msgstr ""
+
+#. F7c8N
+#: sf_intro.xhp
+msgctxt ""
+"sf_intro.xhp\n"
+"par_id701623366829587\n"
+"help.text"
+msgid "To run the example above, enter each line in the Python shell, one by one, pressing the Enter key after you type each line of code."
+msgstr ""
+
+#. 4PS26
+#: sf_intro.xhp
+msgctxt ""
+"sf_intro.xhp\n"
+"par_id471623366906045\n"
+"help.text"
+msgid "Now you can start executing Python commands using any of the ScriptForge services. For example, the code snippet below uses the <literal>UI</literal> service to create a blank Writer document."
+msgstr ""
+
+#. N5A9E
+#: sf_intro.xhp
+msgctxt ""
+"sf_intro.xhp\n"
+"hd_id961623367376768\n"
+"help.text"
+msgid "Creating Python script files"
+msgstr ""
+
+#. xqmvY
+#: sf_intro.xhp
+msgctxt ""
+"sf_intro.xhp\n"
+"par_id821623367433650\n"
+"help.text"
+msgid "You can create your own Python files and edit them with your preferred text editor. Later you can call them from within any %PRODUCTNAME component."
+msgstr ""
+
+#. arDpS
+#: sf_intro.xhp
+msgctxt ""
+"sf_intro.xhp\n"
+"par_id51623367560321\n"
+"help.text"
+msgid "The first step is to locate where your user scripts are stored. For that, refer to <link href=\"text/sbasic/python/python_locations.xhp\" name=\"Python_Scripts_Path\">Python Scripts Organization and Location</link> help page."
+msgstr ""
+
+#. NdM4Y
+#: sf_intro.xhp
+msgctxt ""
+"sf_intro.xhp\n"
+"par_id821623367773032\n"
+"help.text"
+msgid "Now you can create a text file inside your Python user scripts folder, for instance <emph>sf_test.py</emph>, and start typing your scripts."
+msgstr ""
+
+#. rFyBp
+#: sf_intro.xhp
+msgctxt ""
+"sf_intro.xhp\n"
+"par_id271623367917630\n"
+"help.text"
+msgid "Next is a simple example that gets the numeric value from a Calc cell and increments it by 1. Simply type the following code into the <emph>sf_test.py</emph> file."
+msgstr ""
+
+#. EQxF2
+#: sf_intro.xhp
+msgctxt ""
+"sf_intro.xhp\n"
+"par_id171623368511426\n"
+"help.text"
+msgid "This example creates the <literal>increment_cell</literal> function. Note that <literal>g_exportedScripts</literal> is a tuple that tells which functions will be displayed in %PRODUCTNAME as user scripts."
+msgstr ""
+
+#. UUnv4
+#: sf_intro.xhp
+msgctxt ""
+"sf_intro.xhp\n"
+"par_id471623368615244\n"
+"help.text"
+msgid "To run this script from within a Calc document:"
+msgstr ""
+
+#. FynYm
+#: sf_intro.xhp
+msgctxt ""
+"sf_intro.xhp\n"
+"par_id811623368677444\n"
+"help.text"
+msgid "Create or open a Calc file."
+msgstr ""
+
+#. qdWEL
+#: sf_intro.xhp
+msgctxt ""
+"sf_intro.xhp\n"
+"par_id281623368679141\n"
+"help.text"
+msgid "Enter some numeric value into cell \"A1\" in the current sheet."
+msgstr ""
+
+#. bFQSh
+#: sf_intro.xhp
+msgctxt ""
+"sf_intro.xhp\n"
+"par_id111623368679893\n"
+"help.text"
+msgid "Go to <menuitem>Tools - Macros - Run Macros</menuitem> ."
+msgstr ""
+
+#. HkBwz
+#: sf_intro.xhp
+msgctxt ""
+"sf_intro.xhp\n"
+"par_id421623368680565\n"
+"help.text"
+msgid "Choose My Macros - sf_test in the library selector. Then choose the <literal>increment_cell</literal> function under the <menuitem>Macro Name</menuitem> list."
+msgstr ""
+
+#. FPZD6
+#: sf_intro.xhp
+msgctxt ""
+"sf_intro.xhp\n"
+"par_id131623368875763\n"
+"help.text"
+msgid "Click <emph>Run</emph>. Note that the value in cell \"A1\" was incremented by 1."
+msgstr ""
+
+#. 9FozC
+#: sf_intro.xhp
+msgctxt ""
+"sf_intro.xhp\n"
+"par_id781623368934689\n"
+"help.text"
+msgid "You can also use APSO to run Python scripts in a similar manner:"
+msgstr ""
+
+#. Lyyxc
+#: sf_intro.xhp
+msgctxt ""
+"sf_intro.xhp\n"
+"par_id501623369002537\n"
+"help.text"
+msgid "First open APSO by going to <menuitem>Tools - Macros - Organize Python Scripts</menuitem>."
+msgstr ""
+
+#. ayPs5
+#: sf_intro.xhp
+msgctxt ""
+"sf_intro.xhp\n"
+"par_id521623369004825\n"
+"help.text"
+msgid "In the macro list, navigate to <menuitem>My Macros - sf_test - increment_cell</menuitem>."
+msgstr ""
+
+#. WaGHv
+#: sf_intro.xhp
+msgctxt ""
+"sf_intro.xhp\n"
+"par_id101623369005929\n"
+"help.text"
+msgid "Click <menuitem>Execute</menuitem>."
+msgstr ""
+
+#. ujB4e
+#: sf_intro.xhp
+msgctxt ""
+"sf_intro.xhp\n"
+"hd_id531623369208159\n"
+"help.text"
+msgid "Running Scripts separately from the %PRODUCTNAME process"
+msgstr ""
+
+#. 9yG9z
+#: sf_intro.xhp
+msgctxt ""
+"sf_intro.xhp\n"
+"hd_id261623370168228\n"
+"help.text"
+msgid "Determining the Installation Path"
+msgstr ""
+
+#. 2ijCM
+#: sf_intro.xhp
+msgctxt ""
+"sf_intro.xhp\n"
+"par_id261623369722023\n"
+"help.text"
+msgid "The first step to run scripts from a separate process is to find the folder where %PRODUCTNAME is installed. There are several ways to do that, but <literal>ScriptForge</literal> provides a quick way to identify your installation path. For that, open APSO's Python shell and type:"
+msgstr ""
+
+#. UEwkB
+#: sf_intro.xhp
+msgctxt ""
+"sf_intro.xhp\n"
+"par_id81623370150730\n"
+"help.text"
+msgid "The output from the code above is the base directory where %PRODUCTNAME is installed. Now you need to add the \"program\" subfolder to the resulting path. This is the base folder from which you will run Python scripts from a separate process."
+msgstr ""
+
+#. EvDcx
+#: sf_intro.xhp
+msgctxt ""
+"sf_intro.xhp\n"
+"par_id451623370201479\n"
+"help.text"
+msgid "For example, suppose you get <emph>/usr/lib/libreoffice/</emph> as the result from running the Python code above. Then you need to consider <emph>/usr/lib/libreoffice/program</emph> as the path to run your Python scripts."
+msgstr ""
+
+#. 6EYGe
+#: sf_intro.xhp
+msgctxt ""
+"sf_intro.xhp\n"
+"hd_id231623370501084\n"
+"help.text"
+msgid "Start %PRODUCTNAME with socket settings"
+msgstr ""
+
+#. F94mp
+#: sf_intro.xhp
+msgctxt ""
+"sf_intro.xhp\n"
+"par_id721623369245475\n"
+"help.text"
+msgid "To run Python scripts from a separate process, you need to start %PRODUCTNAME with a few additional options that specify the hostname and port through which the external process will communicate with the %PRODUCTNAME component process."
+msgstr ""
+
+#. mfbEM
+#: sf_intro.xhp
+msgctxt ""
+"sf_intro.xhp\n"
+"par_id221623369584132\n"
+"help.text"
+msgid "Open the your operating system's command prompt, navigate to the program folder of your %PRODUCTNAME installation directory and type:"
+msgstr ""
+
+#. 6hDm4
+#: sf_intro.xhp
+msgctxt ""
+"sf_intro.xhp\n"
+"par_id981623370706743\n"
+"help.text"
+msgid "The command above will start %PRODUCTNAME with a communication channel open so that other processes can exchange messages with it."
+msgstr ""
+
+#. SB5LE
+#: sf_intro.xhp
+msgctxt ""
+"sf_intro.xhp\n"
+"par_id621623370871360\n"
+"help.text"
+msgid "Note that the previous example opens %PRODUCTNAME start center. If you want to open a specific component, for instance Writer, you can add the --writer flag to the command, as follows."
+msgstr ""
+
+#. cVRuV
+#: sf_intro.xhp
+msgctxt ""
+"sf_intro.xhp\n"
+"par_id431623373618951\n"
+"help.text"
+msgid "Take note of the <literal>host</literal> and <literal>port</literal> parameters, which in this example are <emph>localhost</emph> and <emph>2021</emph>, respectively."
+msgstr ""
+
+#. Z7z5C
+#: sf_intro.xhp
+msgctxt ""
+"sf_intro.xhp\n"
+"hd_id861623370468356\n"
+"help.text"
+msgid "Running an External Python Shell"
+msgstr ""
+
+#. eBmVz
+#: sf_intro.xhp
+msgctxt ""
+"sf_intro.xhp\n"
+"par_id621623371253647\n"
+"help.text"
+msgid "Start the Python shell from within the <emph>program</emph> folder inside your %PRODUCTNAME installation path. Follow the steps <link href=\"text/sbasic/shared/03/sf_intro.xhp#InstallPath\" name=\"Install_Path\">above</link> to learn how to find your installation path."
+msgstr ""
+
+#. 69F7S
+#: sf_intro.xhp
+msgctxt ""
+"sf_intro.xhp\n"
+"par_id11623373098602\n"
+"help.text"
+msgid "<emph>On Linux / Mac OS:</emph>"
+msgstr ""
+
+#. PFWiq
+#: sf_intro.xhp
+msgctxt ""
+"sf_intro.xhp\n"
+"par_id311623373151552\n"
+"help.text"
+msgid "<emph>On Windows:</emph>"
+msgstr ""
+
+#. HGBuK
+#: sf_intro.xhp
+msgctxt ""
+"sf_intro.xhp\n"
+"par_id791623373520018\n"
+"help.text"
+msgid "This will open the Python shell and now you can start typing commands that will be executed by %PRODUCTNAME. But first you need to set up the socket connection."
+msgstr ""
+
+#. s54tE
+#: sf_intro.xhp
+msgctxt ""
+"sf_intro.xhp\n"
+"par_id351623373686414\n"
+"help.text"
+msgid "The second line of code above defines the <literal>host</literal> and <literal>port</literal> settings so that the Python shell can communicate with an ongoing %PRODUCTNAME process opened with the same socket settings."
+msgstr ""
+
+#. RiXDx
+#: sf_intro.xhp
+msgctxt ""
+"sf_intro.xhp\n"
+"par_id721623373769471\n"
+"help.text"
+msgid "Now you can run other Python commands and they will be able to communicate with the %PRODUCTNAME process. For example:"
+msgstr ""
+
+#. VCRTD
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"tit\n"
+"help.text"
+msgid "ScriptForge.L10N service"
+msgstr ""
+
+#. q7BSh
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"hd_id521585843652750\n"
+"help.text"
+msgid "<variable id=\"L10NService\"><link href=\"text/sbasic/shared/03/sf_l10n.xhp\" name=\"L10N service\"><literal>ScriptForge</literal>.<literal>L10N</literal> service</link></variable>"
+msgstr ""
+
+#. FRAiJ
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id411585843652556\n"
+"help.text"
+msgid "This service provides a number of methods related to the translation of strings with minimal impact on the program's source code. The methods provided by the <literal>L10N</literal> service can be used mainly to:"
+msgstr ""
+
+#. gw2rW
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id601614351922212\n"
+"help.text"
+msgid "Create POT files that can be used as templates for translation of all strings in the program."
+msgstr ""
+
+#. sbVQL
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id131614352196513\n"
+"help.text"
+msgid "Get translated strings at runtime for the language defined in the <literal>Locale</literal> property."
+msgstr ""
+
+#. kCrgU
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id971614966420419\n"
+"help.text"
+msgid "The acronym <literal>L10N</literal> stands for Localization and refers to a set of procedures for translating software to a specific country or region."
+msgstr ""
+
+#. supr5
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id291585843652438\n"
+"help.text"
+msgid "PO files have long been promoted in the free software community as a means to providing multilingual user interfaces. This is accomplished through the use of human-readable text files with a well defined structure that specifies, for any given language, the source language string and the localized string."
+msgstr ""
+
+#. j6xsd
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id181585843652814\n"
+"help.text"
+msgid "The main advantage of the PO format is dissociation of the programmer and the translator. PO files are independent text files, so the programmer can send POT template files to translators, who will then translate their contents and return the translated PO files for each supported language."
+msgstr ""
+
+#. iBQxR
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id811614352321187\n"
+"help.text"
+msgid "The <literal>L10N</literal> service is based on the GNU implementation of PO (portable object) files. To learn more about this file format, visit <link href=\"https://www.gnu.org/software/gettext/manual/html_node/PO-Files.html\" name=\"GetText\">GNU gettext Utilities: PO Files</link>."
+msgstr ""
+
+#. DGiG9
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id91585843652832\n"
+"help.text"
+msgid "This service implements the methods listed below:"
+msgstr ""
+
+#. fBXDW
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id1158584365237\n"
+"help.text"
+msgid "<emph>AddText</emph>: Used by the programmer to build a set of strings that will be translated later."
+msgstr ""
+
+#. BtuQ3
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id81637866601151\n"
+"help.text"
+msgid "<emph>AddTextsFromDialog</emph>: Extracts all strings from a <literal>Dialog</literal> service instance."
+msgstr ""
+
+#. cm7fq
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id681585843652331\n"
+"help.text"
+msgid "<emph>ExportToPOTFile</emph>: Exports the strings added by the <literal>AddText</literal> method to a POT file."
+msgstr ""
+
+#. Z7dU5
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id531585843652697\n"
+"help.text"
+msgid "<emph>GetText</emph>: Gets the translated strings at runtime."
+msgstr ""
+
+#. D4Fyf
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id361614361362393\n"
+"help.text"
+msgid "Note that the first two methods are used to build a set of translatable strings and export them to a POT file. However, it is not mandatory to create POT files using these methods. Since they are text files, the programmer could have created them using any text editor."
+msgstr ""
+
+#. Rn7FL
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"hd_id351585843652312\n"
+"help.text"
+msgid "Service invocation"
+msgstr ""
+
+#. 2WXAQ
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id141609955500101\n"
+"help.text"
+msgid "Before using the <literal>L10N</literal> service the <literal>ScriptForge</literal> library needs to be loaded or imported:"
+msgstr ""
+
+#. 9xE8t
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id421614353247163\n"
+"help.text"
+msgid "There are several ways to invoke the <literal>L10N</literal> service using up to five optional arguments that specify the folder where PO files are stored, the locale and encoding to be used, as well as a fallback PO file and its encoding."
+msgstr ""
+
+#. cCwBS
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id331585843652877\n"
+"help.text"
+msgid "<emph>foldername</emph>: The folder containing the PO files. It must be expressed in the <literal>FileSystem.FileNaming</literal> notation."
+msgstr ""
+
+#. oQD4m
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id581585843652789\n"
+"help.text"
+msgid "<emph>locale</emph>: A string in the form \"la-CO\" (language-COUNTRY) or in the form \"la\" (language) only."
+msgstr ""
+
+#. gswGR
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id591646219881864\n"
+"help.text"
+msgid "<emph>encoding</emph>: The character set to be used. The default encoding is \"UTF-8\"."
+msgstr ""
+
+#. CXd3e
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id281646219882464\n"
+"help.text"
+msgid "<emph>locale2</emph>: A string specifying the fallback locale to be used in case the PO file corresponding to the locale defined the <literal>locale</literal> parameter does not exist. This parameter is expressed in the form \"la-CO\" (language-COUNTRY) or \"la\" (language) only."
+msgstr ""
+
+#. TaFFX
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id881646219882951\n"
+"help.text"
+msgid "<emph>encoding2</emph>: The character set of the fallback PO file corresponding to the <literal>locale2</literal> argument. The default encoding is \"UTF-8\"."
+msgstr ""
+
+#. M2NBE
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id141613001281573\n"
+"help.text"
+msgid "To learn more about the names of character sets, visit <link href=\"https://www.iana.org/assignments/character-sets/character-sets.xhtml\" name=\"Character Sets\">IANA's Character Set</link> page. Be aware that %PRODUCTNAME does not implement all existing character sets."
+msgstr ""
+
+#. 3ApdD
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id891614358528334\n"
+"help.text"
+msgid "The following example instantiates the <literal>L10N</literal> service without any optional arguments. This will only enable the <literal>AddText</literal> and <literal>ExportToPOTFile</literal> methods, which is useful for creating POT files."
+msgstr ""
+
+#. rFfgF
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id611614358672609\n"
+"help.text"
+msgid "The example below specifies the folder containing the PO files. Because the locale is not defined, the service instance will use the locale defined for the %PRODUCTNAME user interface, which is the same locale defined in the <literal>OfficeLocale</literal> property of the <link href=\"text/sbasic/shared/03/sf_platform.xhp\" name=\"OfficeLocale_link\">Platform</link> service."
+msgstr ""
+
+#. FewYJ
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id391625855630975\n"
+"help.text"
+msgid "The example above will result in an runtime error if the PO file corresponding to the <literal>OfficeLocale</literal> locale does not exist in the specified folder."
+msgstr ""
+
+#. gSzLN
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id321614358809763\n"
+"help.text"
+msgid "In the example below, the locale is explicitly defined to be Belgian French (\"fr-BE\"), hence the service will load the file \"fr-BE.po\" from the folder \"C:\\myPOFiles\". If the file does not exist, an error will occur."
+msgstr ""
+
+#. WpYLF
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id271646220649616\n"
+"help.text"
+msgid "To avoid errors, it is possible to specify a preferred and a fallback locale and encoding. The following example will first try to load the file \"fr-BE.po\" from the specified folder and if it does not exist, the file \"en-US.po\" will be loaded."
+msgstr ""
+
+#. UGFWB
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id411585843652496\n"
+"help.text"
+msgid "PO files must be named in the form \"la-CO.po\" or \"la.po\", where \"la\" refers to the language and \"CO\" is the country. Some examples are: \"en-US.po\", \"fr-BE.po\" or \"fr.po\"."
+msgstr ""
+
+#. zQhHX
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id171585843652545\n"
+"help.text"
+msgid "It is recommended to free resources after use:"
+msgstr ""
+
+#. CmhnJ
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id281625854773330\n"
+"help.text"
+msgid "The examples above can be translated to Python as follows:"
+msgstr ""
+
+#. Z5Pb3
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id301614358956087\n"
+"help.text"
+msgid "Several instances of the <literal>L10N</literal> service may coexist. However, each instance must use a separate directory for its PO files."
+msgstr ""
+
+#. 6mcLb
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"hd_id561585843652465\n"
+"help.text"
+msgid "Properties"
+msgstr ""
+
+#. mJaFd
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id181585843652958\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. FFbDK
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id741585843652162\n"
+"help.text"
+msgid "Readonly"
+msgstr ""
+
+#. X3tJK
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id291585843652823\n"
+"help.text"
+msgid "Type"
+msgstr ""
+
+#. 8ECBX
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id351585843652638\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. j3wEj
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id451585843652928\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. uED9S
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id751585843652642\n"
+"help.text"
+msgid "The folder containing the PO files (see the <link href=\"text/sbasic/shared/03/sf_filesystem.xhp#bm_id901612991354326\" name=\"FileNaming property\"><literal>FileSystem.FileNaming</literal></link> property to learn about the notation used)."
+msgstr ""
+
+#. Zsp7p
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id96158584365279\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. vdfiw
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id331585843652912\n"
+"help.text"
+msgid "A zero-based array listing all the base names (without the \".po\" extension) of the PO-files found in the specified <literal>Folder</literal>."
+msgstr ""
+
+#. NWxhu
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id961585843652589\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. LSNA3
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id561585843652947\n"
+"help.text"
+msgid "The currently active language-COUNTRY combination. This property will be initially empty if the service was instantiated without any of the optional arguments."
+msgstr ""
+
+#. 5cs7h
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id231614360519973\n"
+"help.text"
+msgid "List of Methods in the L10N Service"
+msgstr ""
+
+#. Q24j9
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id1001585843652271\n"
+"help.text"
+msgid "Adds a new entry in the list of localizable strings. It must not exist yet."
+msgstr ""
+
+#. 5Fs5v
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id641625855725050\n"
+"help.text"
+msgid "The method returns <literal>True</literal> if successful."
+msgstr ""
+
+#. gyUYQ
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id391585843652753\n"
+"help.text"
+msgid "<emph>context</emph>: The key to retrieve the translated string with the <literal>GetText</literal> method. This parameter has a default value of \"\"."
+msgstr ""
+
+#. YVUWx
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id581585844419114\n"
+"help.text"
+msgid "<emph>msgid</emph>: The untranslated string, which is the text appearing in the program code. It must not be empty. The <literal>msgid</literal> becomes the key to retrieve the translated string via <literal>GetText</literal> method when <literal>context</literal> is empty."
+msgstr ""
+
+#. 7FDE9
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id311614361926844\n"
+"help.text"
+msgid "The <literal>msgid</literal> string may contain any number of placeholders (%1 %2 %3 ...) for dynamically modifying the string at runtime."
+msgstr ""
+
+#. ioGmP
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id541585844475331\n"
+"help.text"
+msgid "<emph>comment</emph>: Optional comment to be added alongside the string to help translators."
+msgstr ""
+
+#. TAyPG
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id461614364298440\n"
+"help.text"
+msgid "The example below creates a set of strings in English:"
+msgstr ""
+
+#. rWt7U
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id1001585843659821\n"
+"help.text"
+msgid "Automatically extracts strings from a dialog and adds them to the list of localizable text strings. The following strings are extracted:"
+msgstr ""
+
+#. bS7ZL
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id621637863440015\n"
+"help.text"
+msgid "The title of the dialog."
+msgstr ""
+
+#. EBFAC
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id61637863440399\n"
+"help.text"
+msgid "The caption of the following control types: Button, CheckBox, FixedLine, FixedText, GroupBox and RadioButton."
+msgstr ""
+
+#. uCL85
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id251637863440626\n"
+"help.text"
+msgid "Static strings in ListBoxes and ComboBoxes."
+msgstr ""
+
+#. HWkAU
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id811637863596791\n"
+"help.text"
+msgid "The tooltip or help text displayed when the mouse hovers over the control."
+msgstr ""
+
+#. gKbEN
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id641625855723650\n"
+"help.text"
+msgid "The method returns <literal>True</literal> if successful."
+msgstr ""
+
+#. Kcowa
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id731637863894577\n"
+"help.text"
+msgid "The dialog from which strings will be extracted must not be open when the method is called."
+msgstr ""
+
+#. 75EGY
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id911637864050221\n"
+"help.text"
+msgid "When a <literal>L10N</literal> service instance is created from an existing PO file, use the <link href=\"text/sbasic/shared/03/sf_dialog.xhp#GetTextsFromL10N\" name=\"GetTextsFromL10N\">GetTextsFromL10N</link> method from the <literal>Dialog</literal> service to automatically load all translated strings into the dialog."
+msgstr ""
+
+#. ejhbN
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id391585843652113\n"
+"help.text"
+msgid "<emph>dialog</emph>: a Dialog service instance corresponding to the dialog from which strings will be extracted."
+msgstr ""
+
+#. QzWzG
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id461614364298983\n"
+"help.text"
+msgid "The following example extracts all strings from the dialog \"MyDialog\" stored in the \"Standard\" library and exports them to a POT file:"
+msgstr ""
+
+#. DqFBf
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id281586102707242\n"
+"help.text"
+msgid "Exports a set of untranslated strings as a POT file."
+msgstr ""
+
+#. NABBq
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id711586102939257\n"
+"help.text"
+msgid "To build a set of strings you can use either a succession of <literal>AddText</literal> method calls, or by a successful invocation of the <literal>L10N</literal> service with the <literal>foldername</literal> argument present. It is also possible to use a combination of both techniques."
+msgstr ""
+
+#. Pb4VF
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id641625855725141\n"
+"help.text"
+msgid "The method returns <literal>True</literal> if successful."
+msgstr ""
+
+#. BsmCX
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id31586102707537\n"
+"help.text"
+msgid "<emph>filename</emph>: The output file in <literal>FileSystem.FileNaming</literal> notation."
+msgstr ""
+
+#. jQV77
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id851586102707579\n"
+"help.text"
+msgid "<emph>header</emph>: Comments that will be added on top of the generated POT file."
+msgstr ""
+
+#. YhYbQ
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id111614364686973\n"
+"help.text"
+msgid "Do not include any leading \"#\" characters. If you want the header to be broken into multiple lines, insert escape sequences (\\n) where relevant. A standard header will be added alongside the text specified in the <literal>header</literal> argument."
+msgstr ""
+
+#. E2Loj
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id5158610270728\n"
+"help.text"
+msgid "<emph>encoding</emph>: The character set to be used (Default = \"UTF-8\")."
+msgstr ""
+
+#. uDu7z
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id581614364494235\n"
+"help.text"
+msgid "The generated file should successfully pass the <literal>msgfmt --check</literal> GNU command."
+msgstr ""
+
+#. 32fPj
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id891586165768715\n"
+"help.text"
+msgid "Gets the translated string corresponding to the given <literal>msgid</literal> argument."
+msgstr ""
+
+#. NzGZC
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id291614365296959\n"
+"help.text"
+msgid "A list of arguments may be specified to replace the placeholders (%1, %2, ...) in the string."
+msgstr ""
+
+#. 9DBFa
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id231586166181909\n"
+"help.text"
+msgid "If no translated string is found, the method returns the untranslated string after replacing the placeholders with the specified arguments."
+msgstr ""
+
+#. bAcmJ
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id871586352505927\n"
+"help.text"
+msgid "This method can be called either by the full name <literal>GetText</literal> or by the shortcut <literal>_</literal> (a single underscore):"
+msgstr ""
+
+#. mvB66
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id421614967136502\n"
+"help.text"
+msgid "In the ScriptForge library, all methods starting with the \"_\" character are reserved for internal use only. However, the shortcut <literal>_</literal> used for <literal>GetText</literal> is the only exception to this rule, hence it can be safely used in Basic and Python scripts."
+msgstr ""
+
+#. 2ZVAQ
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id51586165768525\n"
+"help.text"
+msgid "<emph>msgid</emph>: The untranslated string, which is the text appearing in the program code. It must not be empty. It may contain any number of placeholders (%1 %2 %3 ...) that can be used to dynamically insert text at runtime."
+msgstr ""
+
+#. dALxK
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id11614365537450\n"
+"help.text"
+msgid "Besides using a single <literal>msgid</literal> string, this method also accepts the following formats:"
+msgstr ""
+
+#. Q7Bbm
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id961614365557277\n"
+"help.text"
+msgid "The <literal>context</literal> string with which the method will retrieve the <literal>msgid</literal> in the PO file, or;"
+msgstr ""
+
+#. rTDrq
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id981614365589866\n"
+"help.text"
+msgid "A combination <literal>context|msgid</literal>, instructing the method to retrieve the <literal>msgid</literal> using specified <literal>context</literal> value. The second part of the argument is used to improve code readability."
+msgstr ""
+
+#. dW6RE
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id571586165768106\n"
+"help.text"
+msgid "<emph>args</emph>: Values to be inserted into the placeholders. Any variable type is allowed, however only strings, numbers and dates will be considered."
+msgstr ""
+
+#. cCZDK
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id701614365961454\n"
+"help.text"
+msgid "Consider the following code is running on a %PRODUCTNAME installation with locale set to \"es-ES\". Additionally, there is a file \"es-ES.po\" inside the specified folder that translates the string passed to the <literal>GetText</literal> method:"
+msgstr ""
+
+#. yD78g
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"tit\n"
+"help.text"
+msgid "SFWidgets.Menu service"
+msgstr ""
+
+#. F5KPb
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"bm_id681600788076499\n"
+"help.text"
+msgid "<variable id=\"MenuService\"><link href=\"text/sbasic/shared/03/sf_menu.xhp\" name=\"Menu service\"><literal>SFWidgets</literal>.<literal>Menu</literal> service</link></variable>"
+msgstr ""
+
+#. FqGPg
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id181600788076612\n"
+"help.text"
+msgid "The <literal>Menu</literal> service can be used to create and remove menus from the menubar of a %PRODUCTNAME document window. Each menu entry can be associated with a script or with a UNO command. This service provides the following capabilities:"
+msgstr ""
+
+#. UYDdv
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id301600788076785\n"
+"help.text"
+msgid "Creation of menus with custom entries, checkboxes, radio buttons and separators."
+msgstr ""
+
+#. KB9XF
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id1001600788076848\n"
+"help.text"
+msgid "Decoration of menu items with icons and tooltips."
+msgstr ""
+
+#. JSwJW
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id581643133675012\n"
+"help.text"
+msgid "Menus created with this service are available only for a specified document window. They are not saved into the document or as application settings. Closing and opening the document will restore the default menubar settings."
+msgstr ""
+
+#. FEfWE
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id291643224925643\n"
+"help.text"
+msgid "When OLE objects such as Math formulas or Calc charts are edited from within a document, %PRODUCTNAME reconfigures the menubar according to the object. When this happens, the menus created with the <literal>Menu</literal> service are removed and are not be restored after editing the OLE object."
+msgstr ""
+
+#. GftK9
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"hd_id281600788076359\n"
+"help.text"
+msgid "Service invocation"
+msgstr ""
+
+#. o7QCg
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id141609955500101\n"
+"help.text"
+msgid "Before using the <literal>Menu</literal> service the <literal>ScriptForge</literal> library needs to be loaded or imported:"
+msgstr ""
+
+#. DzDmt
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id321614902851541\n"
+"help.text"
+msgid "The <literal>Menu</literal> service is instantiated by calling the <link href=\"text/sbasic/shared/03/sf_document.xhp#CreateMenu\" name=\"CreateMenu_link\"><literal>CreateMenu</literal></link> method from the <literal>Document</literal> service. The code snippet below creates a menu named <emph>My Menu</emph> in the current document window with two entries <emph>Item A</emph> and <emph>Item B</emph>."
+msgstr ""
+
+#. pf7FV
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"bas_id261643134374056\n"
+"help.text"
+msgid "Set oMenu = oDoc.CreateMenu(\"My Menu\")"
+msgstr ""
+
+#. Hoh4Q
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"bas_id431643134582213\n"
+"help.text"
+msgid ".AddItem(\"Item A\", Command := \"About\")"
+msgstr ""
+
+#. u52BY
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"bas_id571643134582396\n"
+"help.text"
+msgid ".AddItem(\"Item B\", Script := \"vnd.sun.star.script:Standard.Module1.ItemB_Listener?language=Basic&location=application\")"
+msgstr ""
+
+#. nd5od
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id371643135157996\n"
+"help.text"
+msgid "After creating the menu, it is recommended to call the <literal>Dispose</literal> method to free the resources used by the <literal>Menu</literal> service instance."
+msgstr ""
+
+#. 2VDkD
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id341636718182262\n"
+"help.text"
+msgid "In the example above, <emph>Item A</emph> is associated with the UNO command <literal>.uno:About</literal> whereas <emph>Item B</emph> is associated with the script <literal>ItemB_Listener</literal> defined in <literal>Module1</literal> of the <literal>Standard</literal> library of the <literal>My Macros</literal> container."
+msgstr ""
+
+#. 9G7de
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id851635274721129\n"
+"help.text"
+msgid "The following example defines <literal>ItemB_Listener</literal> that will be called when <emph>Item B</emph> is clicked. This listener simply splits the argument string passed to the <literal>Sub</literal> and shows them in a message box."
+msgstr ""
+
+#. AFHBG
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"bas_id716431354225603\n"
+"help.text"
+msgid "' Process the argument string passed to the listener"
+msgstr ""
+
+#. GzLwF
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"bas_id901643135423012\n"
+"help.text"
+msgid "MsgBox \"Menu name: \" & sArgs(0) & Chr(13) & _"
+msgstr ""
+
+#. qGB7L
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"bas_id301643136028263\n"
+"help.text"
+msgid "\"Menu item: \" & sArgs(1) & Chr(13) & _"
+msgstr ""
+
+#. wFTww
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"bas_id181643136028557\n"
+"help.text"
+msgid "\"Item ID: \" & sArgs(2) & Chr(13) & _"
+msgstr ""
+
+#. 9SGVd
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"bas_id561643136028710\n"
+"help.text"
+msgid "\"Item status: \" & sArgs(3)"
+msgstr ""
+
+#. MQJ7M
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id531636493797707\n"
+"help.text"
+msgid "As shown in the example above, menu entries associated with a script receive a comma-separated string argument with the following values:"
+msgstr ""
+
+#. uprfo
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id921643136489994\n"
+"help.text"
+msgid "The toplevel name of the menu."
+msgstr ""
+
+#. 7Jxz9
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id611643136491059\n"
+"help.text"
+msgid "The string ID of the selected menu entry."
+msgstr ""
+
+#. hENoG
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id961643136491491\n"
+"help.text"
+msgid "The numeric ID of the selected menu entry."
+msgstr ""
+
+#. nYABy
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id381643136494580\n"
+"help.text"
+msgid "The current state of the menu item. This is useful for checkboxes and radio buttons. If the item is checked, the value \"1\" is returned, otherwise \"0\" is returned."
+msgstr ""
+
+#. HHjiV
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id131635275172617\n"
+"help.text"
+msgid "The examples above can be written in Python as follows:"
+msgstr ""
+
+#. 6LQF4
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"pyc_id981636717957632\n"
+"help.text"
+msgid "msg = f\"Menu name: {s_args[0]}\\n\""
+msgstr ""
+
+#. GPKGe
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"pyc_id851636718008427\n"
+"help.text"
+msgid "msg += f\"Menu item: {s_args[1]}\\n\""
+msgstr ""
+
+#. EfEaE
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"pyc_id331636727047102\n"
+"help.text"
+msgid "msg += f\"Item ID: {s_args[2]}\\n\""
+msgstr ""
+
+#. FPzcf
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"pyc_id71643137333404\n"
+"help.text"
+msgid "msg += f\"Item status: {s_args[3]}\""
+msgstr ""
+
+#. XxChZ
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"hd_id711600788076834\n"
+"help.text"
+msgid "Properties"
+msgstr ""
+
+#. 98USM
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id461600788076917\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. fT8mQ
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id221600788076591\n"
+"help.text"
+msgid "Readonly"
+msgstr ""
+
+#. DGBgA
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id761600788076328\n"
+"help.text"
+msgid "Type"
+msgstr ""
+
+#. 2EE9k
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id67160078807636\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. qnRDA
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id49160078807654\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. LE27e
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id81600788076419\n"
+"help.text"
+msgid "Character used to define the access key of a menu item. The default character is \"~\"."
+msgstr ""
+
+#. GSJAG
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id311600788076756\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. fb3iG
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id441600788076826\n"
+"help.text"
+msgid "Character or string that defines how menu items are nested. The default character is \">\"."
+msgstr ""
+
+#. bDCZ8
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"hd_id181636719707892\n"
+"help.text"
+msgid "Menu and Submenus"
+msgstr ""
+
+#. YE5FL
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id741636719725402\n"
+"help.text"
+msgid "To create a menu with submenus, use the character defined in the <literal>SubmenuCharacter</literal> property while creating the menu entry to define where it will be placed. For instance, consider the following menu/submenu hierarchy."
+msgstr ""
+
+#. Y4ETY
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id211636720111489\n"
+"help.text"
+msgid "The code below uses the default submenu character \">\" to create the menu/submenu hierarchy defined above:"
+msgstr ""
+
+#. WkCis
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id121636721243578\n"
+"help.text"
+msgid "The string \"---\" is used to define line separators in menus or submenus."
+msgstr ""
+
+#. CYbLC
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"hd_id501582887473754\n"
+"help.text"
+msgid "Methods"
+msgstr ""
+
+#. Lofgb
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id891611613601554\n"
+"help.text"
+msgid "List of Methods in the Menu Service"
+msgstr ""
+
+#. aDqJH
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id93158919969864\n"
+"help.text"
+msgid "Inserts a check box in the menu. Returns an integer value that identifies the inserted item."
+msgstr ""
+
+#. T8Fkq
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id821591631203996\n"
+"help.text"
+msgid "<emph>menuitem:</emph> Defines the text to be displayed in the menu. This argument also defines the hierarchy of the item inside the menu by using the submenu character."
+msgstr ""
+
+#. SkMmC
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id821591631203116\n"
+"help.text"
+msgid "<emph>name:</emph> String value used to identify the menu item. By default, the last component of the menu hierarchy is used."
+msgstr ""
+
+#. 7zhpM
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id821591631203133\n"
+"help.text"
+msgid "<emph>status:</emph> Defines whether the item is selected when the menu is created (Default = <literal>False</literal>)."
+msgstr ""
+
+#. JPboo
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id11636721653313\n"
+"help.text"
+msgid "<emph>icon:</emph> Path and name of the icon to be displayed without the leading path separator. The actual icon shown depends on the icon set being used."
+msgstr ""
+
+#. YzJwB
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id11636721653208\n"
+"help.text"
+msgid "<emph>tooltip:</emph> Text to be displayed as tooltip."
+msgstr ""
+
+#. 3WPXT
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id11636721653328\n"
+"help.text"
+msgid "<emph>command:</emph> The name of a UNO command without the <literal>.uno:</literal> prefix. If the command name does not exist, nothing happens."
+msgstr ""
+
+#. LaF26
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id11636721653107\n"
+"help.text"
+msgid "<emph>script:</emph> The URI for a Basic or Python script that will be executed when the item is clicked."
+msgstr ""
+
+#. PTXhK
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id31643198954204\n"
+"help.text"
+msgid "The arguments <literal>command</literal> and <literal>script</literal> are mutually exclusive, hence only one of them can be set for each menu item."
+msgstr ""
+
+#. 57vEy
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id31643148484084\n"
+"help.text"
+msgid "Read <link href=\"https://wiki.documentfoundation.org/Documentation/DevGuide/Scripting_Framework#Scripting_Framework_URI_Specification\" name=\"URI_Notation\">Scripting Framework URI Specification</link> to learn more about the URI syntax used in the <literal>script</literal> argument."
+msgstr ""
+
+#. Aj8cF
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"bas_id191643306748853\n"
+"help.text"
+msgid "' Menu entry associated with the .uno:Paste command"
+msgstr ""
+
+#. gQCkK
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"bas_id271643147793320\n"
+"help.text"
+msgid "' Runs the Basic script Standard.Module1.MyListener stored in the document"
+msgstr ""
+
+#. 5fxEG
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"bas_id801643306742620\n"
+"help.text"
+msgid "' Runs the Python script MyListener located in file myScripts.py in the user scripts folder"
+msgstr ""
+
+#. uAbp9
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id93158919963364\n"
+"help.text"
+msgid "Inserts a label entry in the menu. Returns an integer value that identifies the inserted item."
+msgstr ""
+
+#. tCHcD
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id821591631203021\n"
+"help.text"
+msgid "<emph>menuitem:</emph> Defines the text to be displayed in the menu. This argument also defines the hierarchy of the item inside the menu by using the submenu character."
+msgstr ""
+
+#. yFQns
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id821591631203026\n"
+"help.text"
+msgid "<emph>name:</emph> String value to be returned when the item is clicked. By default, the last component of the menu hierarchy is used."
+msgstr ""
+
+#. DMEeJ
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id11636721652886\n"
+"help.text"
+msgid "<emph>icon:</emph> Path and name of the icon to be displayed without the leading path separator. The actual icon shown depends on the icon set being used."
+msgstr ""
+
+#. aZPNP
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id11636721653118\n"
+"help.text"
+msgid "<emph>tooltip:</emph> Text to be displayed as tooltip."
+msgstr ""
+
+#. 23fax
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id11636721653314\n"
+"help.text"
+msgid "<emph>command:</emph> The name of a UNO command without the <literal>.uno:</literal> prefix. If the command name does not exist, nothing happens."
+msgstr ""
+
+#. wysyV
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id11636721652057\n"
+"help.text"
+msgid "<emph>script:</emph> The URI for a Basic or Python script that will be executed when the item is clicked."
+msgstr ""
+
+#. QYzCL
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"bas_id41158919969106\n"
+"help.text"
+msgid "oMenu.AddItem(\"Item A\", Tooltip := \"A descriptive message\")"
+msgstr ""
+
+#. dxYAv
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"pyc_id321621534170554\n"
+"help.text"
+msgid "oMenu.AddItem(\"Item A\", tooltip = \"A descriptive message\")"
+msgstr ""
+
+#. qB7zU
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id93158919969399\n"
+"help.text"
+msgid "Inserts a radio button entry in the menu. Returns an integer value that identifies the inserted item."
+msgstr ""
+
+#. FTrvY
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id821591631203501\n"
+"help.text"
+msgid "<emph>menuitem:</emph> Defines the text to be displayed in the menu. This argument also defines the hierarchy of the item inside the menu by using the submenu character."
+msgstr ""
+
+#. syjtC
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id821591631228716\n"
+"help.text"
+msgid "<emph>name:</emph> String value to be returned when the item is clicked. By default, the last component of the menu hierarchy is used."
+msgstr ""
+
+#. 7WBgE
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id821591631203643\n"
+"help.text"
+msgid "<emph>status:</emph> Defines whether the item is selected when the menu is created (Default = <literal>False</literal>)."
+msgstr ""
+
+#. 4uxXA
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id11636721653228\n"
+"help.text"
+msgid "<emph>icon:</emph> Path and name of the icon to be displayed without the leading path separator. The actual icon shown depends on the icon set being used."
+msgstr ""
+
+#. ZfFDR
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id11636721653114\n"
+"help.text"
+msgid "<emph>tooltip:</emph> Text to be displayed as tooltip."
+msgstr ""
+
+#. Sx9Bm
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id11636721653447\n"
+"help.text"
+msgid "<emph>command:</emph> The name of a UNO command without the <literal>.uno:</literal> prefix. If the command name does not exist, nothing happens."
+msgstr ""
+
+#. AEnA6
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id11636721652598\n"
+"help.text"
+msgid "<emph>script:</emph> The URI for a Basic or Python script that will be executed when the item is clicked."
+msgstr ""
+
+#. yYNtX
+#: sf_methods.xhp
+msgctxt ""
+"sf_methods.xhp\n"
+"tit\n"
+"help.text"
+msgid "ScriptForge Method Signatures"
+msgstr ""
+
+#. ycA6s
+#: sf_methods.xhp
+msgctxt ""
+"sf_methods.xhp\n"
+"hd_id31529004750471\n"
+"help.text"
+msgid "<variable id=\"SF_Signatures\"><link href=\"text/sbasic/shared/03/sf_methods.xhp\" name=\"ScriptForge Method Signatures\"><literal>ScriptForge</literal> Method Signatures</link></variable>"
+msgstr ""
+
+#. gEAos
+#: sf_methods.xhp
+msgctxt ""
+"sf_methods.xhp\n"
+"bm_id491529070339774\n"
+"help.text"
+msgid "<bookmark_value>ScriptForge; Method signatures</bookmark_value>"
+msgstr ""
+
+#. Xq2N5
+#: sf_methods.xhp
+msgctxt ""
+"sf_methods.xhp\n"
+"par_id681619700336879\n"
+"help.text"
+msgid "ScriptForge libraries aggregate macro scripting resources for %PRODUCTNAME to be invoked from Basic macros or Python scripts. Its modules and classes are invoked from user scripts as \"Services\" that expose properties, methods and events."
+msgstr ""
+
+#. paARG
+#: sf_methods.xhp
+msgctxt ""
+"sf_methods.xhp\n"
+"par_id681623415196030\n"
+"help.text"
+msgid "Whenever service methods are proposed solely for %PRODUCTNAME Basic, their syntax presentation matches that of Basic subroutines, functions or properties."
+msgstr ""
+
+#. 4dWnv
+#: sf_methods.xhp
+msgctxt ""
+"sf_methods.xhp\n"
+"par_id401623415235965\n"
+"help.text"
+msgid "Whenever service methods are proposed for Python and Basic, or solely for Python, their syntax and arguments use a specific textual layout."
+msgstr ""
+
+#. McY36
+#: sf_methods.xhp
+msgctxt ""
+"sf_methods.xhp\n"
+"hd_id1001623415980365\n"
+"help.text"
+msgid "Basic only service method"
+msgstr ""
+
+#. tCvuL
+#: sf_methods.xhp
+msgctxt ""
+"sf_methods.xhp\n"
+"par_id791623418737799\n"
+"help.text"
+msgid "Typographical characters such as brackets, ellipsis or curly braces denote optional, repetitive or compulsory arguments:"
+msgstr ""
+
+#. FkDFy
+#: sf_methods.xhp
+msgctxt ""
+"sf_methods.xhp\n"
+"hd_id711623416000470\n"
+"help.text"
+msgid "Python or Basic service methods"
+msgstr ""
+
+#. 8C6EM
+#: sf_methods.xhp
+msgctxt ""
+"sf_methods.xhp\n"
+"par_id221623415475781\n"
+"help.text"
+msgid "The following typographical rules are mixing the UML notation, the API documentation layout and the UNO object inspector user interface:"
+msgstr ""
+
+#. aSSDq
+#: sf_methods.xhp
+msgctxt ""
+"sf_methods.xhp\n"
+"par_id661623417427142\n"
+"help.text"
+msgid "Optional parameters are indicated with either opt, '=' accompanying a default value, or '[ ]' brackets."
+msgstr ""
+
+#. 534sD
+#: sf_methods.xhp
+msgctxt ""
+"sf_methods.xhp\n"
+"par_id351623417430814\n"
+"help.text"
+msgid "arguments are lowercased, in order to comply with Python PEP 8 while Basic is case-agnostic."
+msgstr ""
+
+#. kFDAg
+#: sf_methods.xhp
+msgctxt ""
+"sf_methods.xhp\n"
+"par_id781623417432494\n"
+"help.text"
+msgid "Collections arguments or API sequences are denoted using UML multiplicity. That applies also to return values."
+msgstr ""
+
+#. bmVjq
+#: sf_methods.xhp
+msgctxt ""
+"sf_methods.xhp\n"
+"par_id741623417433319\n"
+"help.text"
+msgid "Basic data types and Python annotations are syntactically transposed as:"
+msgstr ""
+
+#. GGeNU
+#: sf_methods.xhp
+msgctxt ""
+"sf_methods.xhp\n"
+"par_id441613838858931\n"
+"help.text"
+msgid "Syntax"
+msgstr ""
+
+#. ENqPg
+#: sf_methods.xhp
+msgctxt ""
+"sf_methods.xhp\n"
+"par_id851613847558931\n"
+"help.text"
+msgid "Boolean"
+msgstr ""
+
+#. vWABe
+#: sf_methods.xhp
+msgctxt ""
+"sf_methods.xhp\n"
+"par_id931623419595424\n"
+"help.text"
+msgid "UNO Object"
+msgstr ""
+
+#. 2q5Bk
+#: sf_methods.xhp
+msgctxt ""
+"sf_methods.xhp\n"
+"par_id951623419595631\n"
+"help.text"
+msgid "User Defined<br/>Type (UDT)"
+msgstr ""
+
+#. h4Tu4
+#: sf_methods.xhp
+msgctxt ""
+"sf_methods.xhp\n"
+"par_id451623419793734\n"
+"help.text"
+msgid "<literal>ScriptForge</literal><br/>service"
+msgstr ""
+
+#. Ah5Gj
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"tit\n"
+"help.text"
+msgid "ScriptForge.Platform service"
+msgstr ""
+
+#. PCkEG
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"bm_id681600788076499\n"
+"help.text"
+msgid "<variable id=\"PlatformService\"><link href=\"text/sbasic/shared/03/sf_platform.xhp\" name=\"Platform service\"><literal>ScriptForge</literal>.<literal>Platform</literal> service</link></variable>"
+msgstr ""
+
+#. 7D6Dx
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id181600788076612\n"
+"help.text"
+msgid "The <literal>Platform</literal> service provides a collection of properties about the current execution environment and context, such as:"
+msgstr ""
+
+#. FDJFB
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id301600788076785\n"
+"help.text"
+msgid "The hardware platform (architecture, CPU count, machine type, etc)"
+msgstr ""
+
+#. i9FbJ
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id1001600788076848\n"
+"help.text"
+msgid "Operating system information (OS type, release, version, etc)"
+msgstr ""
+
+#. 6sN8Q
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id67160078807676\n"
+"help.text"
+msgid "The %PRODUCTNAME version"
+msgstr ""
+
+#. BrEr7
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id671600788076855\n"
+"help.text"
+msgid "The current user name"
+msgstr ""
+
+#. ZvBqs
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id951614903258253\n"
+"help.text"
+msgid "All properties of the <literal>Platform</literal> service are read-only."
+msgstr ""
+
+#. iK4Gv
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"hd_id281600788076359\n"
+"help.text"
+msgid "Service invocation"
+msgstr ""
+
+#. dogmo
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id141609955500101\n"
+"help.text"
+msgid "Before using the <literal>Platform</literal> service the <literal>ScriptForge</literal> library needs to be loaded or imported:"
+msgstr ""
+
+#. mHGZk
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id321614902851541\n"
+"help.text"
+msgid "The examples below in Basic and Python instantiate the <literal>Platform</literal> service and access the <literal>Architecture</literal> property."
+msgstr ""
+
+#. KC5eN
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"hd_id711600788076834\n"
+"help.text"
+msgid "Properties"
+msgstr ""
+
+#. VXJ8a
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id461600788076917\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. JN68D
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id221600788076591\n"
+"help.text"
+msgid "Readonly"
+msgstr ""
+
+#. ZndAt
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id761600788076328\n"
+"help.text"
+msgid "Type"
+msgstr ""
+
+#. dAoKA
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id67160078807636\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. XdLGG
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id311600788076756\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. EEWuL
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id441600788076826\n"
+"help.text"
+msgid "The hardware bit architecture. Example: '<literal>32bit</literal>' or '<literal>64bit</literal>'"
+msgstr ""
+
+#. 8EZ8A
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id49160078807654\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. iG4iH
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id81600788076419\n"
+"help.text"
+msgid "The computer's network name."
+msgstr ""
+
+#. hvAeY
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id711600788076534\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. v3N6U
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id541600788076645\n"
+"help.text"
+msgid "The number of central processing units."
+msgstr ""
+
+#. 89Lo8
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id891600788076190\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. rmGRV
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id91600788076674\n"
+"help.text"
+msgid "The name of the currently logged user."
+msgstr ""
+
+#. rCN2h
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id561633021747014\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. T2MVx
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id201633021748566\n"
+"help.text"
+msgid "String array"
+msgstr ""
+
+#. 5Fkqe
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id831633021749125\n"
+"help.text"
+msgid "Returns a zero-based array of strings containing the internal IDs of all installed extensions."
+msgstr ""
+
+#. HE2VZ
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id561633021747209\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. MgENM
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id201633021748322\n"
+"help.text"
+msgid "String array"
+msgstr ""
+
+#. bhBD2
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id831633021749118\n"
+"help.text"
+msgid "Returns a zero-based unsorted array of strings containing the available document import and export filter names."
+msgstr ""
+
+#. 9aGdF
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id561633021747903\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. yuuvA
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id201633021748455\n"
+"help.text"
+msgid "String array"
+msgstr ""
+
+#. BvYt3
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id831633021749007\n"
+"help.text"
+msgid "Returns a zero-based array of strings containing the names of all available fonts."
+msgstr ""
+
+#. 86VFG
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id561633021748013\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. 9qBZR
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id831633021749297\n"
+"help.text"
+msgid "Returns the locale used for numbers and dates as a string in the format \"la-CO\" (language-COUNTRY)."
+msgstr ""
+
+#. Av85C
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id561633021743188\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. sYrDn
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id831633021749018\n"
+"help.text"
+msgid "Returns the locale of the operating system as a string in the format \"la-CO\" (language-COUNTRY). This is equivalent to the <literal>SystemLocale</literal> property."
+msgstr ""
+
+#. Dt7J5
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id391600788076253\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. LA6EN
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id21600788076541\n"
+"help.text"
+msgid "The machine type. Examples are: '<literal>i386</literal>' or '<literal>x86_64</literal>'."
+msgstr ""
+
+#. LbQr2
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id561633021706513\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. ZZcSc
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id831633021741117\n"
+"help.text"
+msgid "Returns the locale of the user interface as a string in the format \"la-CO\" (language-COUNTRY)."
+msgstr ""
+
+#. tqwyD
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id211600788076138\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. WLRju
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id521600788076371\n"
+"help.text"
+msgid "The actual %PRODUCTNAME version expressed as<br/>' <literal>%PRODUCTNAME w.x.y.z (The Document Foundation)</literal>'."
+msgstr ""
+
+#. 2q29b
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id621614902220807\n"
+"help.text"
+msgid "Example: '<literal>LibreOffice 7.4.1.2 (The Document Foundation, Debian and Ubuntu)</literal>'"
+msgstr ""
+
+#. 7WDer
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id21600788076758\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. NUSby
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id781600788076694\n"
+"help.text"
+msgid "The operating system type. Example: '<literal>Darwin</literal>, <literal>Linux</literal>' or '<literal>Windows</literal>'."
+msgstr ""
+
+#. cLiaw
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id261600788076841\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. nepQ6
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id11600788076757\n"
+"help.text"
+msgid "A single string identifying the underlying platform with as much useful and human-readable information as possible."
+msgstr ""
+
+#. EH36m
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id501614902381381\n"
+"help.text"
+msgid "Example: '<literal>Linux-5.8.0-44-generic-x86_64-with-glibc2.32</literal>'"
+msgstr ""
+
+#. hbyth
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id531600789141795\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. 4iEvV
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id301600789141619\n"
+"help.text"
+msgid "The operating system's release. Example: '<literal>5.8.0-44-generic</literal>'"
+msgstr ""
+
+#. 2fBtD
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id541600789286532\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. iukPq
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id701600789286280\n"
+"help.text"
+msgid "The operating system's build or version."
+msgstr ""
+
+#. DWQNA
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id351614902520555\n"
+"help.text"
+msgid "Example: '<literal>#50-Ubuntu SMP Tue Feb 9 06:29:41 UTC 2021</literal>'"
+msgstr ""
+
+#. E8DzK
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id941608709527698\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. ArFcn
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id661300789527859\n"
+"help.text"
+msgid "The list of available printers as a zero-based array."
+msgstr ""
+
+#. nN5EG
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id111614952098396\n"
+"help.text"
+msgid "The default printer is put in the first position of the list (index = 0)."
+msgstr ""
+
+#. fCdYi
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id941600789527698\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. wkthE
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id631600789527859\n"
+"help.text"
+msgid "The real processor name. Example: '<literal>amdk6</literal>'."
+msgstr ""
+
+#. MYY9M
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id111614902598396\n"
+"help.text"
+msgid "This property may return the same value as the <literal>Machine</literal> property."
+msgstr ""
+
+#. yWwgE
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id941608709527036\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. Rw373
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id661300789527994\n"
+"help.text"
+msgid "Returns the version of the Python interpreter being used as a string in the format \"Python major.minor.patchlevel\" (ex: \"Python 3.9.7\")."
+msgstr ""
+
+#. Ad9Cw
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id561633021708547\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. Aue6E
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id831633021741336\n"
+"help.text"
+msgid "Returns the locale of the operating system as a string in the format \"la-CO\" (language-COUNTRY). This is equivalent to the <literal>Locale</literal> property."
+msgstr ""
+
+#. FJs9t
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id311633022159446\n"
+"help.text"
+msgid "The following examples in Basic and Python illustrate how to use the <literal>Fonts</literal> property to write the names of all available fonts to the current Calc sheet starting at cell \"A1\":"
+msgstr ""
+
+#. 3yeMr
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id301613065794148\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060104.xhp#bm_id3691824\" name=\"Calc_Info\">Platform information with INFO(\"system\") Calc formula</link>"
+msgstr ""
+
+#. h6atN
+#: sf_popupmenu.xhp
+msgctxt ""
+"sf_popupmenu.xhp\n"
+"tit\n"
+"help.text"
+msgid "SFWidgets.PopupMenu service"
+msgstr ""
+
+#. QADne
+#: sf_popupmenu.xhp
+msgctxt ""
+"sf_popupmenu.xhp\n"
+"bm_id681600788076499\n"
+"help.text"
+msgid "<variable id=\"PopupMenuService\"><link href=\"text/sbasic/shared/03/sf_popupmenu.xhp\" name=\"PopupMenu service\"><literal>SFWidgets</literal>.<literal>PopupMenu</literal> service</link></variable>"
+msgstr ""
+
+#. DGbZ3
+#: sf_popupmenu.xhp
+msgctxt ""
+"sf_popupmenu.xhp\n"
+"par_id181600788076612\n"
+"help.text"
+msgid "The <literal>PopupMenu</literal> service can be used to create popup menus that can be associated with events or executed by scripts. This service provides the following capabilities:"
+msgstr ""
+
+#. fGtNp
+#: sf_popupmenu.xhp
+msgctxt ""
+"sf_popupmenu.xhp\n"
+"par_id301600788076785\n"
+"help.text"
+msgid "Creation of popup menus with custom entries, checkboxes and radio buttons."
+msgstr ""
+
+#. QvyBB
+#: sf_popupmenu.xhp
+msgctxt ""
+"sf_popupmenu.xhp\n"
+"par_id1001600788076848\n"
+"help.text"
+msgid "Decoration of menu items with icons and tooltips."
+msgstr ""
+
+#. GA9DY
+#: sf_popupmenu.xhp
+msgctxt ""
+"sf_popupmenu.xhp\n"
+"hd_id281600788076359\n"
+"help.text"
+msgid "Service invocation"
+msgstr ""
+
+#. wHrLq
+#: sf_popupmenu.xhp
+msgctxt ""
+"sf_popupmenu.xhp\n"
+"par_id141609955500101\n"
+"help.text"
+msgid "Before using the <literal>PopupMenu</literal> service the <literal>ScriptForge</literal> library needs to be loaded or imported:"
+msgstr ""
+
+#. aGukU
+#: sf_popupmenu.xhp
+msgctxt ""
+"sf_popupmenu.xhp\n"
+"par_id321614902851541\n"
+"help.text"
+msgid "The <literal>PopupMenu</literal> service can be instantiated in multiple ways. The example below creates a popup menu without associating it with a mouse or application event."
+msgstr ""
+
+#. zEX7M
+#: sf_popupmenu.xhp
+msgctxt ""
+"sf_popupmenu.xhp\n"
+"bas_id841636717357955\n"
+"help.text"
+msgid "MsgBox(\"Selected item ID: \" & vResponse)"
+msgstr ""
+
+#. XcbWz
+#: sf_popupmenu.xhp
+msgctxt ""
+"sf_popupmenu.xhp\n"
+"par_id341636718182262\n"
+"help.text"
+msgid "Running the <literal>Sub</literal> defined above will create a popup menu with two entries in the position X=300 and Y=300 on the screen."
+msgstr ""
+
+#. AySnz
+#: sf_popupmenu.xhp
+msgctxt ""
+"sf_popupmenu.xhp\n"
+"par_id711636493696169\n"
+"help.text"
+msgid "The prefix <literal>SFWidgets</literal> can be suppressed while invoking the <literal>PopupMenu</literal> service."
+msgstr ""
+
+#. HnBew
+#: sf_popupmenu.xhp
+msgctxt ""
+"sf_popupmenu.xhp\n"
+"par_id851635274721129\n"
+"help.text"
+msgid "The following example defines a <literal>Sub</literal> that can be associated with a mouse event:"
+msgstr ""
+
+#. iZdDG
+#: sf_popupmenu.xhp
+msgctxt ""
+"sf_popupmenu.xhp\n"
+"bas_id721636488722999\n"
+"help.text"
+msgid "' Populate popupmenu with items"
+msgstr ""
+
+#. Czn9U
+#: sf_popupmenu.xhp
+msgctxt ""
+"sf_popupmenu.xhp\n"
+"bas_id311636488724795\n"
+"help.text"
+msgid "' Do something based on vResponse"
+msgstr ""
+
+#. ChBWz
+#: sf_popupmenu.xhp
+msgctxt ""
+"sf_popupmenu.xhp\n"
+"par_id991636718278125\n"
+"help.text"
+msgid "Use the <literal>Dispose</literal> method to free resources after executing the popup menu."
+msgstr ""
+
+#. K8FAQ
+#: sf_popupmenu.xhp
+msgctxt ""
+"sf_popupmenu.xhp\n"
+"par_id531636493797707\n"
+"help.text"
+msgid "It is also possible to associate a popup menu with events triggered by %PRODUCTNAME applications, form and dialog controls. Events such as \"Mouse button pressed\" and \"Mouse button released\" are commonly associated with popup menus."
+msgstr ""
+
+#. L5Dhq
+#: sf_popupmenu.xhp
+msgctxt ""
+"sf_popupmenu.xhp\n"
+"par_id131635275172617\n"
+"help.text"
+msgid "The examples above can be written in Python as follows:"
+msgstr ""
+
+#. 6esys
+#: sf_popupmenu.xhp
+msgctxt ""
+"sf_popupmenu.xhp\n"
+"pyc_id916367179574588\n"
+"help.text"
+msgid "# Populate popupmenu with items"
+msgstr ""
+
+#. Nj85P
+#: sf_popupmenu.xhp
+msgctxt ""
+"sf_popupmenu.xhp\n"
+"pyc_id851636718008427\n"
+"help.text"
+msgid "# Do something based on response"
+msgstr ""
+
+#. Bkw3n
+#: sf_popupmenu.xhp
+msgctxt ""
+"sf_popupmenu.xhp\n"
+"hd_id711600788076834\n"
+"help.text"
+msgid "Properties"
+msgstr ""
+
+#. 7remQ
+#: sf_popupmenu.xhp
+msgctxt ""
+"sf_popupmenu.xhp\n"
+"par_id461600788076917\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. zWaD9
+#: sf_popupmenu.xhp
+msgctxt ""
+"sf_popupmenu.xhp\n"
+"par_id221600788076591\n"
+"help.text"
+msgid "Readonly"
+msgstr ""
+
+#. 3bRwD
+#: sf_popupmenu.xhp
+msgctxt ""
+"sf_popupmenu.xhp\n"
+"par_id761600788076328\n"
+"help.text"
+msgid "Type"
+msgstr ""
+
+#. yAUC9
+#: sf_popupmenu.xhp
+msgctxt ""
+"sf_popupmenu.xhp\n"
+"par_id67160078807636\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. qnMK2
+#: sf_popupmenu.xhp
+msgctxt ""
+"sf_popupmenu.xhp\n"
+"par_id49160078807654\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. zYGVp
+#: sf_popupmenu.xhp
+msgctxt ""
+"sf_popupmenu.xhp\n"
+"par_id81600788076419\n"
+"help.text"
+msgid "Character used to define the access key of a menu item. The default character is \"~\"."
+msgstr ""
+
+#. G2c6G
+#: sf_popupmenu.xhp
+msgctxt ""
+"sf_popupmenu.xhp\n"
+"par_id311600788076756\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. bcd7a
+#: sf_popupmenu.xhp
+msgctxt ""
+"sf_popupmenu.xhp\n"
+"par_id441600788076826\n"
+"help.text"
+msgid "Character or string that defines how menu items are nested. The default character is \">\"."
+msgstr ""
+
+#. drBFS
+#: sf_popupmenu.xhp
+msgctxt ""
+"sf_popupmenu.xhp\n"
+"hd_id181636719707892\n"
+"help.text"
+msgid "Menu and Submenus"
+msgstr ""
+
+#. XGwV6
+#: sf_popupmenu.xhp
+msgctxt ""
+"sf_popupmenu.xhp\n"
+"par_id741636719725402\n"
+"help.text"
+msgid "To create a popup menu with submenus, use the character defined in the <literal>SubmenuCharacter</literal> property while creating the menu entry to define where it will be placed. For instance, consider the following menu/submenu hierarchy."
+msgstr ""
+
+#. D3b2e
+#: sf_popupmenu.xhp
+msgctxt ""
+"sf_popupmenu.xhp\n"
+"par_id211636720111489\n"
+"help.text"
+msgid "The code below uses the default submenu character \">\" to create the menu/submenu hierarchy defined above:"
+msgstr ""
+
+#. MvF78
+#: sf_popupmenu.xhp
+msgctxt ""
+"sf_popupmenu.xhp\n"
+"par_id121636721243578\n"
+"help.text"
+msgid "The string \"---\" is used to define line separators in menus or submenus.."
+msgstr ""
+
+#. nA7BW
+#: sf_popupmenu.xhp
+msgctxt ""
+"sf_popupmenu.xhp\n"
+"hd_id211636723438558\n"
+"help.text"
+msgid "Using icons"
+msgstr ""
+
+#. UKLV5
+#: sf_popupmenu.xhp
+msgctxt ""
+"sf_popupmenu.xhp\n"
+"par_id981636723485402\n"
+"help.text"
+msgid "Items in the menu can have icons, which are specified as arguments in the <literal>AddCheckBox</literal>, <literal>AddItem</literal> and <literal>AddRadioButton</literal> methods."
+msgstr ""
+
+#. TLDpD
+#: sf_popupmenu.xhp
+msgctxt ""
+"sf_popupmenu.xhp\n"
+"par_id881636724112434\n"
+"help.text"
+msgid "All icons available in %PRODUCTNAME can be used by specifying their path relative to the folder where icon files are located in the installation folder. Icons are located in the following folder:"
+msgstr ""
+
+#. n2owj
+#: sf_popupmenu.xhp
+msgctxt ""
+"sf_popupmenu.xhp\n"
+"par_id941636724808906\n"
+"help.text"
+msgid "Use the <literal>InstallFolder</literal> property of the <literal>FileSystem</literal> service to determine where %PRODUCTNAME is installed in your system."
+msgstr ""
+
+#. xbEsC
+#: sf_popupmenu.xhp
+msgctxt ""
+"sf_popupmenu.xhp\n"
+"par_id201636724575911\n"
+"help.text"
+msgid "This folder contains a series of ZIP files containing the image files of each available icon set. The images inside these ZIP files are organized into folders. To use an icon, specify the icon file with the path to its location inside the ZIP file."
+msgstr ""
+
+#. 5yvv9
+#: sf_popupmenu.xhp
+msgctxt ""
+"sf_popupmenu.xhp\n"
+"par_id641636724972071\n"
+"help.text"
+msgid "The example below uses the icon \"sc_newdoc.svg\" that is located inside the \"cmd\" folder. The forward slash \"/\" character is used as the path separator regardless of the operating system."
+msgstr ""
+
+#. 2QW4m
+#: sf_popupmenu.xhp
+msgctxt ""
+"sf_popupmenu.xhp\n"
+"par_id691636725233961\n"
+"help.text"
+msgid "All icon sets have the same internal structure. The actual icon displayed depends on the icon set currently in use."
+msgstr ""
+
+#. v6wRS
+#: sf_popupmenu.xhp
+msgctxt ""
+"sf_popupmenu.xhp\n"
+"hd_id501582887473754\n"
+"help.text"
+msgid "Methods"
+msgstr ""
+
+#. CWGtf
+#: sf_popupmenu.xhp
+msgctxt ""
+"sf_popupmenu.xhp\n"
+"par_id891611613601554\n"
+"help.text"
+msgid "List of Methods in the PopupMenu Service"
+msgstr ""
+
+#. RAcsN
+#: sf_popupmenu.xhp
+msgctxt ""
+"sf_popupmenu.xhp\n"
+"par_id93158919969864\n"
+"help.text"
+msgid "Inserts a check box in the popup menu. Returns an integer value that identifies the inserted item."
+msgstr ""
+
+#. ZZrDA
+#: sf_popupmenu.xhp
+msgctxt ""
+"sf_popupmenu.xhp\n"
+"par_id821591631203996\n"
+"help.text"
+msgid "<emph>menuitem:</emph> Defines the text to be displayed in the menu. This argument also defines the hierarchy of the item inside the menu by using the submenu character."
+msgstr ""
+
+#. riy7p
+#: sf_popupmenu.xhp
+msgctxt ""
+"sf_popupmenu.xhp\n"
+"par_id821591631203116\n"
+"help.text"
+msgid "<emph>name:</emph> String value to be returned when the item is clicked. By default, the last component of the menu hierarchy is used."
+msgstr ""
+
+#. yxK8E
+#: sf_popupmenu.xhp
+msgctxt ""
+"sf_popupmenu.xhp\n"
+"par_id821591631203133\n"
+"help.text"
+msgid "<emph>status:</emph> Defines whether the item is selected when the menu is created (Default = <literal>False</literal>)."
+msgstr ""
+
+#. Q4ZNV
+#: sf_popupmenu.xhp
+msgctxt ""
+"sf_popupmenu.xhp\n"
+"par_id11636721653313\n"
+"help.text"
+msgid "<emph>icon:</emph> Path and name of the icon to be displayed without the leading path separator. The actual icon shown depends on the icon set being used."
+msgstr ""
+
+#. dkqgP
+#: sf_popupmenu.xhp
+msgctxt ""
+"sf_popupmenu.xhp\n"
+"par_id11636721653208\n"
+"help.text"
+msgid "<emph>tooltip:</emph> Text to be displayed as tooltip."
+msgstr ""
+
+#. NEE76
+#: sf_popupmenu.xhp
+msgctxt ""
+"sf_popupmenu.xhp\n"
+"par_id93158919963364\n"
+"help.text"
+msgid "Inserts a menu entry in the popup menu. Returns an integer value that identifies the inserted item."
+msgstr ""
+
+#. vdtEn
+#: sf_popupmenu.xhp
+msgctxt ""
+"sf_popupmenu.xhp\n"
+"par_id821591631203021\n"
+"help.text"
+msgid "<emph>menuitem:</emph> Defines the text to be displayed in the menu. This argument also defines the hierarchy of the item inside the menu by using the submenu character."
+msgstr ""
+
+#. 8eE5y
+#: sf_popupmenu.xhp
+msgctxt ""
+"sf_popupmenu.xhp\n"
+"par_id821591631203026\n"
+"help.text"
+msgid "<emph>name:</emph> String value to be returned when the item is clicked. By default, the last component of the menu hierarchy is used."
+msgstr ""
+
+#. F646F
+#: sf_popupmenu.xhp
+msgctxt ""
+"sf_popupmenu.xhp\n"
+"par_id11636721652886\n"
+"help.text"
+msgid "<emph>icon:</emph> Path and name of the icon to be displayed without the leading path separator. The actual icon shown depends on the icon set being used."
+msgstr ""
+
+#. XFkGB
+#: sf_popupmenu.xhp
+msgctxt ""
+"sf_popupmenu.xhp\n"
+"par_id11636721653118\n"
+"help.text"
+msgid "<emph>tooltip:</emph> Text to be displayed as tooltip."
+msgstr ""
+
+#. dJTZs
+#: sf_popupmenu.xhp
+msgctxt ""
+"sf_popupmenu.xhp\n"
+"bas_id41158919969106\n"
+"help.text"
+msgid "myPopup.AddItem(\"Item A\", Tooltip := \"A descriptive message\")"
+msgstr ""
+
+#. VDLFK
+#: sf_popupmenu.xhp
+msgctxt ""
+"sf_popupmenu.xhp\n"
+"pyc_id321621534170554\n"
+"help.text"
+msgid "my_popup.AddItem(\"Item A\", tooltip = \"A descriptive message\")"
+msgstr ""
+
+#. U2vBb
+#: sf_popupmenu.xhp
+msgctxt ""
+"sf_popupmenu.xhp\n"
+"par_id93158919969399\n"
+"help.text"
+msgid "Inserts a radio button entry in the popup menu. Returns an integer value that identifies the inserted item."
+msgstr ""
+
+#. 92F32
+#: sf_popupmenu.xhp
+msgctxt ""
+"sf_popupmenu.xhp\n"
+"par_id821591631203501\n"
+"help.text"
+msgid "<emph>menuitem:</emph> Defines the text to be displayed in the menu. This argument also defines the hierarchy of the item inside the menu by using the submenu character."
+msgstr ""
+
+#. 2PuBE
+#: sf_popupmenu.xhp
+msgctxt ""
+"sf_popupmenu.xhp\n"
+"par_id821591631228716\n"
+"help.text"
+msgid "<emph>name:</emph> String value to be returned when the item is clicked. By default, the last component of the menu hierarchy is used."
+msgstr ""
+
+#. yLvRM
+#: sf_popupmenu.xhp
+msgctxt ""
+"sf_popupmenu.xhp\n"
+"par_id821591631203643\n"
+"help.text"
+msgid "<emph>status:</emph> Defines whether the item is selected when the menu is created (Default = <literal>False</literal>)."
+msgstr ""
+
+#. 6XiD7
+#: sf_popupmenu.xhp
+msgctxt ""
+"sf_popupmenu.xhp\n"
+"par_id11636721653228\n"
+"help.text"
+msgid "<emph>icon:</emph> Path and name of the icon to be displayed without the leading path separator. The actual icon shown depends on the icon set being used."
+msgstr ""
+
+#. cRTRD
+#: sf_popupmenu.xhp
+msgctxt ""
+"sf_popupmenu.xhp\n"
+"par_id11636721653114\n"
+"help.text"
+msgid "<emph>tooltip:</emph> Text to be displayed as tooltip."
+msgstr ""
+
+#. nQrD3
+#: sf_popupmenu.xhp
+msgctxt ""
+"sf_popupmenu.xhp\n"
+"par_id93158919963279\n"
+"help.text"
+msgid "Displays the popup menu and waits for a user action. Returns the item clicked by the user."
+msgstr ""
+
+#. qwwKx
+#: sf_popupmenu.xhp
+msgctxt ""
+"sf_popupmenu.xhp\n"
+"par_id101636726249788\n"
+"help.text"
+msgid "If the user clicks outside the popup menu or presses the <keycode>Esc</keycode> key, then no item is selected. In such cases, the returned value depends on the <literal>returnid</literal> parameter. If <literal>returnid = True</literal> and no item is selected, then the value 0 (zero) is returned. Otherwise an empty string \"\" is returned."
+msgstr ""
+
+#. EFriZ
+#: sf_popupmenu.xhp
+msgctxt ""
+"sf_popupmenu.xhp\n"
+"par_id821591631202088\n"
+"help.text"
+msgid "<emph>returnid:</emph> If <literal>True</literal> the selected item ID is returned. If <literal>False</literal> the method returns the item's name (Default = <literal>True</literal>)."
+msgstr ""
+
+#. y4PWP
+#: sf_popupmenu.xhp
+msgctxt ""
+"sf_popupmenu.xhp\n"
+"par_id51636726671698\n"
+"help.text"
+msgid "In the examples below, a popup menu is created and the item's name is returned because the <literal>returnid</literal> argument is set to <literal>False</literal>."
+msgstr ""
+
+#. b8bDr
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"tit\n"
+"help.text"
+msgid "ScriptForge.Region service"
+msgstr ""
+
+#. SYtNX
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"bm_id681600788076499\n"
+"help.text"
+msgid "<variable id=\"RegionService\"><link href=\"text/sbasic/shared/03/sf_region.xhp\" name=\"Region service\"><literal>ScriptForge</literal>.<literal>Region</literal> service</link></variable>"
+msgstr ""
+
+#. w3WgP
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id181600788076612\n"
+"help.text"
+msgid "The <literal>Region</literal> service provides a collection of properties and methods to handle locale and region-related aspects of programming, such as:"
+msgstr ""
+
+#. TEk7a
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id301600788076785\n"
+"help.text"
+msgid "Accessing locale and region-dependent settings such as number formatting, currency and timezones."
+msgstr ""
+
+#. 2f7KC
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id1001600788076848\n"
+"help.text"
+msgid "Converting timezones and calculate Daylight Saving Time (DST) offsets."
+msgstr ""
+
+#. tqznj
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id67160078807676\n"
+"help.text"
+msgid "Transforming numbers into text in any supported language."
+msgstr ""
+
+#. 9nRv7
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"hd_id851656012844548\n"
+"help.text"
+msgid "Definitions"
+msgstr ""
+
+#. sGNu7
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"hd_id421656012886648\n"
+"help.text"
+msgid "Locale or Region"
+msgstr ""
+
+#. FiW7z
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id191656012908838\n"
+"help.text"
+msgid "A string combining a language and a country in the format \"la-CO\". The language part is expressed with 2 or 3 lowercase characters followed by a dash and 2 uppercase characters representing the country."
+msgstr ""
+
+#. GQEGW
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id431656013368415\n"
+"help.text"
+msgid "For instance, \"en-US\" corresponds to the English language in the United States; \"fr-BE\" corresponds to the French language in Belgium, and so forth."
+msgstr ""
+
+#. CQYAX
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id981656013623018\n"
+"help.text"
+msgid "On some situations the full locale is not required and only the language or country may be specified."
+msgstr ""
+
+#. 4qFTD
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id261656013132204\n"
+"help.text"
+msgid "Most properties and methods accept a locale as argument. If no locale is specified, then the user-interface locale is used, which is defined in the <link href=\"text/sbasic/shared/03/sf_platform.xhp#bm_id111614901524769\" name=\"OfficeLocale_link\"><literal>OfficeLocale</literal></link> property of the <literal>Platform</literal> service."
+msgstr ""
+
+#. 6ToTC
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"hd_id51656013825718\n"
+"help.text"
+msgid "Timezone"
+msgstr ""
+
+#. pV5MS
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id541656013854150\n"
+"help.text"
+msgid "A string in the format \"Region/City\" such as \"Europe/Berlin\", or a timezone ID such as \"UTC\" or \"GMT-8:00\". Refer to the wiki page <link href=\"https://wikipedia.org/wiki/List_of_tz_database_time_zones\" name=\"TimeZones_List\">List of tz database and timezones</link> for a list of possible timezone names and IDs."
+msgstr ""
+
+#. exa3B
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id981656078937577\n"
+"help.text"
+msgid "Providing an invalid timezone string to any of the methods in the <literal>Region</literal> service will not result in a runtime error. Instead, methods as <literal>UTCDateTime</literal> and <literal>UTCNow</literal> will return the current operating system date and time."
+msgstr ""
+
+#. 7GTLU
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id611656014040098\n"
+"help.text"
+msgid "The time offset between the timezone and the Greenwich Meridian Time (GMT) is expressed in minutes."
+msgstr ""
+
+#. ottwV
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id121656014053670\n"
+"help.text"
+msgid "The Daylight Saving Time (DST) is an additional offset."
+msgstr ""
+
+#. yXHrp
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id591656014140929\n"
+"help.text"
+msgid "The timezone and DST offsets may be positive or negative."
+msgstr ""
+
+#. EyNvN
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"hd_id281600788076359\n"
+"help.text"
+msgid "Service invocation"
+msgstr ""
+
+#. F9Wnj
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id141609955500101\n"
+"help.text"
+msgid "Before using the <literal>Region</literal> service the <literal>ScriptForge</literal> library needs to be loaded or imported:"
+msgstr ""
+
+#. 7AXFZ
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id321614902851541\n"
+"help.text"
+msgid "The examples below in Basic and Python instantiate the <literal>Region</literal> service and access the <literal>Country</literal> property."
+msgstr ""
+
+#. 69CF7
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"bas_id791600788431935\n"
+"help.text"
+msgid "MsgBox oRegion.Country(\"en-US\") ' United States"
+msgstr ""
+
+#. FDNKL
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"hd_id711600788076834\n"
+"help.text"
+msgid "Properties"
+msgstr ""
+
+#. VEB3D
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id601656018689690\n"
+"help.text"
+msgid "All properties listed below accept a <literal>locale</literal> argument, provided as a string. Some properties require this argument to be in the format \"la-CO\", whereas others may receive \"la\" or \"CO\" as input."
+msgstr ""
+
+#. vzB4T
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id461600788076917\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. ay9iH
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id221600788076591\n"
+"help.text"
+msgid "Readonly"
+msgstr ""
+
+#. rBUEm
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id761600788076328\n"
+"help.text"
+msgid "Type"
+msgstr ""
+
+#. FpD5h
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id131656330679679\n"
+"help.text"
+msgid "Locale"
+msgstr ""
+
+#. FxnFK
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id67160078807636\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. 4Ss2G
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id311600788076756\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. ExbtG
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id441600788076826\n"
+"help.text"
+msgid "Returns the country name in English corresponding to a given region."
+msgstr ""
+
+#. FN4XC
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id49160078807654\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. vpDwN
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id81600788076419\n"
+"help.text"
+msgid "Returns the ISO 4217 currency code of the specified region."
+msgstr ""
+
+#. Aqcuy
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id711600788076534\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. 6cgk7
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id911600788076842\n"
+"help.text"
+msgid "String array"
+msgstr ""
+
+#. Jhkc3
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id541600788076645\n"
+"help.text"
+msgid "Returns a zero-based array of strings containing the date acceptance patterns for the specified region."
+msgstr ""
+
+#. T4sUQ
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id891600788076190\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. vAJYH
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id91600788076674\n"
+"help.text"
+msgid "Returns the date separator used in the given region."
+msgstr ""
+
+#. QKyGp
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id561633021747014\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. jSVY8
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id201633021748566\n"
+"help.text"
+msgid "String array"
+msgstr ""
+
+#. CnTuU
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id831633021745014\n"
+"help.text"
+msgid "Returns a zero-based array of strings containing the list of abbreviated weekday names in the specified language."
+msgstr ""
+
+#. jRUnx
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id561633021747209\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. CGeKU
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id201633021748322\n"
+"help.text"
+msgid "String array"
+msgstr ""
+
+#. tjGhP
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id831633021748865\n"
+"help.text"
+msgid "Returns a zero-based array of strings containing the list of weekday names in the specified language."
+msgstr ""
+
+#. gVevH
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id561633021747903\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. hL4sb
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id201633021748455\n"
+"help.text"
+msgid "String array"
+msgstr ""
+
+#. GHdGz
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id831633021747711\n"
+"help.text"
+msgid "Returns a zero-based array of strings containing the list of the initials of weekday names in the specified language."
+msgstr ""
+
+#. TFzKG
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id561633021748013\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. CWLzi
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id831633021749297\n"
+"help.text"
+msgid "Returns the decimal separator used in numbers in the specified region."
+msgstr ""
+
+#. pqWDC
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id561633021743188\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. droDW
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id831633021749018\n"
+"help.text"
+msgid "Returns the name of the language, in English, of the specified region."
+msgstr ""
+
+#. ojXGP
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id391600788076253\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. a4SKv
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id21600788076541\n"
+"help.text"
+msgid "Returns the list separator used in the specified region."
+msgstr ""
+
+#. vUwhJ
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id561633021706513\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. 79WHE
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id201633021746335\n"
+"help.text"
+msgid "String array"
+msgstr ""
+
+#. Dz2X6
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id831633021741117\n"
+"help.text"
+msgid "Returns a zero-based array of strings containing the list of abbreviated month names in the specified language."
+msgstr ""
+
+#. NvQaB
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id211600788076138\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. ZMsz8
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id221600788076518\n"
+"help.text"
+msgid "String array"
+msgstr ""
+
+#. EbAXk
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id521600788076371\n"
+"help.text"
+msgid "Returns a zero-based array of strings containing the list of month names in the specified language."
+msgstr ""
+
+#. GeqFt
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id21600788076758\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. wGD4y
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id871600788076196\n"
+"help.text"
+msgid "String array"
+msgstr ""
+
+#. RisPb
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id781600788076694\n"
+"help.text"
+msgid "Returns a zero-based array of strings containing the list of the initials of month names in the specified language."
+msgstr ""
+
+#. DBDyW
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id261600788076841\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. fLZD2
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id116007880767507\n"
+"help.text"
+msgid "Returns the thousands separator used in numbers in the specified region."
+msgstr ""
+
+#. AUNfp
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id531600789141795\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. MjrCr
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id301600789141619\n"
+"help.text"
+msgid "Returns the separator used to format times in the specified region."
+msgstr ""
+
+#. Bog4G
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id651606319520519\n"
+"help.text"
+msgid "List of Methods in the Region Service"
+msgstr ""
+
+#. szpDY
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id71621894830071\n"
+"help.text"
+msgid "Computes the additional Daylight Saving Time (DST) offset, in minutes, that is applicable to a given region and timezone."
+msgstr ""
+
+#. CbDHo
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id401621896675880\n"
+"help.text"
+msgid "<emph>localdatetime</emph>: the local date and time expressed as a date."
+msgstr ""
+
+#. cA2tD
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id401621896675125\n"
+"help.text"
+msgid "<emph>timezone</emph>: the timezone for which the offset will be calculated."
+msgstr ""
+
+#. w5gKK
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id401621896675963\n"
+"help.text"
+msgid "<emph>locale</emph>: the locale specifying the country for which the offset will be calculated, given either in \"la-CO\" or \"CO\" formats. The default value is the locale defined in the <link href=\"text/sbasic/shared/03/sf_platform.xhp#bm_id111614901524769\" name=\"OfficeLocale_link\"><literal>OfficeLocale</literal></link> property of the <literal>Platform</literal> service."
+msgstr ""
+
+#. cBF4y
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"bas_id531656022497519\n"
+"help.text"
+msgid "' Calculates the offset applicable in the \"America/Los_Angeles\" timezone"
+msgstr ""
+
+#. XYu4u
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"bas_id801656022498143\n"
+"help.text"
+msgid "offset = oRegion.DSTOffset(aDateTime, \"America/Los_Angeles\", \"US\") ' 60 (minutes)"
+msgstr ""
+
+#. CfiFK
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"bas_id831656022498543\n"
+"help.text"
+msgid "offset = oRegion.DSTOffset(aDateTime, \"America/Los_Angeles\", \"US\") ' 0 (minutes)"
+msgstr ""
+
+#. 4CkKJ
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"pyc_id871621898933281\n"
+"help.text"
+msgid "offset = oRegion.DSTOffset(aDateTime, \"America/Los_Angeles\", \"US\") ' 60 (minutes)"
+msgstr ""
+
+#. nkcRi
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"pyc_id871621898934141\n"
+"help.text"
+msgid "offset = oRegion.DSTOffset(aDateTime, \"America/Los_Angeles\", \"US\") ' 0 (minutes)"
+msgstr ""
+
+#. BbUgj
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id71621894832058\n"
+"help.text"
+msgid "Computes the local date and time from a UTC date and time."
+msgstr ""
+
+#. v4YSt
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id401621896674716\n"
+"help.text"
+msgid "<emph>utcdatetime</emph>: the UTC date and time, expressed using a date object."
+msgstr ""
+
+#. i63on
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id401621896675449\n"
+"help.text"
+msgid "<emph>timezone</emph>: the timezone for which the local time will be calculated."
+msgstr ""
+
+#. YWDWQ
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id401621896675193\n"
+"help.text"
+msgid "<emph>locale</emph>: the locale specifying the country for which the local time will be calculated, given either in \"la-CO\" or \"CO\" formats. The default value is the locale defined in the <link href=\"text/sbasic/shared/03/sf_platform.xhp#bm_id111614901524769\" name=\"OfficeLocale_link\"><literal>OfficeLocale</literal></link> property of the <literal>Platform</literal> service."
+msgstr ""
+
+#. 8UTFQ
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"bas_id201656022497017\n"
+"help.text"
+msgid "' June 6th, 2022 at 10:30:45 (used here as UTC time)"
+msgstr ""
+
+#. Hcjqt
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"bas_id531656022497121\n"
+"help.text"
+msgid "' Calculates local time in Sao Paulo, Brazil"
+msgstr ""
+
+#. yhKtd
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"bas_id601656022498318\n"
+"help.text"
+msgid "' June 6th, 2022 at 07:30:45"
+msgstr ""
+
+#. YJv72
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id71621894832089\n"
+"help.text"
+msgid "Converts numbers and monetary values into written text for any of the currently supported languages."
+msgstr ""
+
+#. qu8dt
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id971656026551328\n"
+"help.text"
+msgid "For a list of all supported languages visit the <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1linguistic2_1_1XNumberText.html\" name=\"XNumberText\">XNumberText Interface</link> API reference."
+msgstr ""
+
+#. xTUD6
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id401621896675306\n"
+"help.text"
+msgid "<emph>number</emph>: the number to be converted into written text. It can be provided either as a numeric type or as a string. When a string is provided, it can be preceded by a prefix informing how the numbers should be written. It is also possible to include ISO 4217 currency codes. See examples below for more information."
+msgstr ""
+
+#. eppdr
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id401621896675412\n"
+"help.text"
+msgid "<emph>locale</emph>: the locale defining the language into which the number will be converted to, given either in \"la-CO\" or \"la\" formats. The default value is the locale defined in the <link href=\"text/sbasic/shared/03/sf_platform.xhp#bm_id111614901524769\" name=\"OfficeLocale_link\"><literal>OfficeLocale</literal></link> property of the <literal>Platform</literal> service."
+msgstr ""
+
+#. QeBpA
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"bas_id301656027173020\n"
+"help.text"
+msgid "' Returns \"one hundred five\""
+msgstr ""
+
+#. 7xovc
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"bas_id531656022496631\n"
+"help.text"
+msgid "numText = oRegion.Number2Text(105, \"en-US\")"
+msgstr ""
+
+#. UGGvv
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"bas_id771656027217144\n"
+"help.text"
+msgid "' Returns: \"two point four two\""
+msgstr ""
+
+#. Xr7no
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"bas_id201656022493367\n"
+"help.text"
+msgid "numText = oRegion.Number2Text(2.42, \"en-US\")"
+msgstr ""
+
+#. 7hYbk
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"bas_id281656027262234\n"
+"help.text"
+msgid "' Returns: \"twenty-five euro and ten cents\" Notice the \"EUR\" currency symbol"
+msgstr ""
+
+#. DBPc8
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"bas_id201656022497171\n"
+"help.text"
+msgid "numText = oRegion.Number2Text(\"EUR 25.10\", \"en-US\")"
+msgstr ""
+
+#. pd3Fm
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"bas_id981656027330132\n"
+"help.text"
+msgid "' Returns: \"fifteenth\"; Notice the \"ordinal\" prefix"
+msgstr ""
+
+#. ggt2A
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"bas_id841656027330394\n"
+"help.text"
+msgid "numText = oRegion.Number2Text(\"ordinal 15\", \"en-US\")"
+msgstr ""
+
+#. YQCCF
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"pyc_id401656027481473\n"
+"help.text"
+msgid "numText = oRegion.Number2Text(105, \"en-US\")"
+msgstr ""
+
+#. FTGnF
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"pyc_id781656027481769\n"
+"help.text"
+msgid "numText = oRegion.Number2Text(2.42, \"en-US\")"
+msgstr ""
+
+#. RCDq5
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"pyc_id951656027482096\n"
+"help.text"
+msgid "numText = oRegion.Number2Text(\"EUR 25.10\", \"en-US\")"
+msgstr ""
+
+#. vtGFv
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"pyc_id231656027482425\n"
+"help.text"
+msgid "numText = oRegion.Number2Text(\"ordinal 15\", \"en-US\")"
+msgstr ""
+
+#. 3T93o
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id801656027524051\n"
+"help.text"
+msgid "To get a list of all supported prefixes in a given language, call <literal>Number2Text</literal> with the special \"help\" argument. In the example below, assume your locale is set to \"en-US\", then the list of available prefixes for \"en-US\" will be shown by <literal>MsgBox</literal>:"
+msgstr ""
+
+#. RBkxp
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id781656027840633\n"
+"help.text"
+msgid "The first line in the message box does not have a prefix, which means that it is the standard format. The subsequent lines include the prefix and some examples of numbers using its format."
+msgstr ""
+
+#. WYDkd
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id781656028528520\n"
+"help.text"
+msgid "Each language has its own set of supported prefixes. The number of available prefixes may vary from language to language."
+msgstr ""
+
+#. gcMPN
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id531663849363398\n"
+"help.text"
+msgid "To get the list of prefixes for a specific language or locale, it can be specified as the second argument in <literal>Number2Text</literal>. The example below shows the available prefixes available for the \"pt-BR\" locale:"
+msgstr ""
+
+#. dShiA
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id71621894832117\n"
+"help.text"
+msgid "Returns the offset between GMT and the given timezone and locale, in minutes."
+msgstr ""
+
+#. xCAjE
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id401621896675018\n"
+"help.text"
+msgid "<emph>timezone</emph>: the timezone for which the offset to the GMT will be calculated."
+msgstr ""
+
+#. egZXu
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id401621896675691\n"
+"help.text"
+msgid "<emph>locale</emph>: the locale specifying the country for which the offset will be calculated, given either in \"la-CO\" or \"CO\" formats. The default value is the locale defined in the <link href=\"text/sbasic/shared/03/sf_platform.xhp#bm_id111614901524769\" name=\"OfficeLocale_link\"><literal>OfficeLocale</literal></link> property of the <literal>Platform</literal> service."
+msgstr ""
+
+#. JiFjE
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id71621894864217\n"
+"help.text"
+msgid "Returns the UTC date and time considering a given local date and time in a timezone."
+msgstr ""
+
+#. AK3nQ
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id401621896674748\n"
+"help.text"
+msgid "<emph>localdatetime</emph>: the local date and time in a specific timezone expressed as a date."
+msgstr ""
+
+#. hpxBF
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id401621896675739\n"
+"help.text"
+msgid "<emph>timezone</emph>: the timezone for which the <literal>localdatetime</literal> argument was given."
+msgstr ""
+
+#. aEuir
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id401621896675550\n"
+"help.text"
+msgid "<emph>locale</emph>: the locale specifying the country for which the <literal>localdatetime</literal> argument was given, expressed either in \"la-CO\" or \"CO\" formats. The default value is the locale defined in the <link href=\"text/sbasic/shared/03/sf_platform.xhp#bm_id111614901524769\" name=\"OfficeLocale_link\"><literal>OfficeLocale</literal></link> property of the <literal>Platform</literal> service."
+msgstr ""
+
+#. y3NSm
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"bas_id861656077547861\n"
+"help.text"
+msgid "' Date/Time in Berlin, June 23, 2022 at 14:30:00"
+msgstr ""
+
+#. HjSnk
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"bas_id731656077523173\n"
+"help.text"
+msgid "' The UTC date/time is June 23, 2022 at 12:30:00"
+msgstr ""
+
+#. tZoWt
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id71621894835287\n"
+"help.text"
+msgid "Returns the current UTC date and time, given a timezone and locale."
+msgstr ""
+
+#. zzSQA
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id491656078254442\n"
+"help.text"
+msgid "This method uses the current date and time of your operating system to calculate the UTC time."
+msgstr ""
+
+#. XxBE8
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id401621896673318\n"
+"help.text"
+msgid "<emph>timezone</emph>: the timezone for which the current UTC time will be calculated."
+msgstr ""
+
+#. FDJ5e
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"par_id401621896674831\n"
+"help.text"
+msgid "<emph>locale</emph>: the locale specifying the country for which the current UTC time will be calculated, given either in \"la-CO\" or \"CO\" formats. The default value is the locale defined in the <link href=\"text/sbasic/shared/03/sf_platform.xhp#bm_id111614901524769\" name=\"OfficeLocale_link\"><literal>OfficeLocale</literal></link> property of the <literal>Platform</literal> service."
+msgstr ""
+
+#. FWSJp
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"bas_id861656078128374\n"
+"help.text"
+msgid "' Suppose the operating system time is June 23rd, 2022 at 10:42:00"
+msgstr ""
+
+#. CWY76
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"bas_id691656078180784\n"
+"help.text"
+msgid "' If the computer is in Europe/Berlin, then UTC time is June 23rd, 2022 at 08:42:00"
+msgstr ""
+
+#. NPVe5
+#: sf_region.xhp
+msgctxt ""
+"sf_region.xhp\n"
+"pyc_id821656078645252\n"
+"help.text"
+msgid "utcTime = oRegion.UTCNow(\"Europe/Berlin\", \"DE\")"
+msgstr ""
+
+#. GpvmN
+#: sf_services.xhp
+msgctxt ""
+"sf_services.xhp\n"
+"tit\n"
+"help.text"
+msgid "ScriptForge.Services service"
+msgstr ""
+
+#. bFtkf
+#: sf_services.xhp
+msgctxt ""
+"sf_services.xhp\n"
+"hd_id471582710868716\n"
+"help.text"
+msgid "<variable id=\"ScriptForgeServices\"><link href=\"text/sbasic/shared/03/sf_services.xhp\" name=\"Services service\"><literal>ScriptForge</literal>.<literal>Services</literal> service</link></variable>"
+msgstr ""
+
+#. SDbDJ
+#: sf_services.xhp
+msgctxt ""
+"sf_services.xhp\n"
+"par_id241627513489594\n"
+"help.text"
+msgid "The main purpose of the <literal>Services</literal> module is to provide access to the <literal>CreateScriptService</literal> method, which can be called in user scripts to instantiate services that are implemented using the ScriptForge framework."
+msgstr ""
+
+#. 7B2KJ
+#: sf_services.xhp
+msgctxt ""
+"sf_services.xhp\n"
+"par_id351582710868545\n"
+"help.text"
+msgid "In ScriptForge terminology a service is a collection of methods and properties that can be used for a common purpose. For example, the <literal>String</literal> service provides methods for manipulating strings whereas the <literal>FileSystem</literal> service allows for the manipulation of files and folders."
+msgstr ""
+
+#. NW4BS
+#: sf_services.xhp
+msgctxt ""
+"sf_services.xhp\n"
+"par_id541627513771828\n"
+"help.text"
+msgid "The <literal>Services</literal> module of the ScriptForge library provides additional methods that are used either internally to register available services or by developers who are interested in extending ScriptForge by creating new services. The only method that is relevant for user scripts is <literal>CreateScriptService</literal>."
+msgstr ""
+
+#. FW4FC
+#: sf_services.xhp
+msgctxt ""
+"sf_services.xhp\n"
+"par_id871582714020043\n"
+"help.text"
+msgid "This method is used to instantiate a ScriptForge service so it can be called in user scripts."
+msgstr ""
+
+#. jG6U9
+#: sf_services.xhp
+msgctxt ""
+"sf_services.xhp\n"
+"par_id711627514310039\n"
+"help.text"
+msgid "The returned value is a Basic object or <literal>Nothing</literal> if an error occurred."
+msgstr ""
+
+#. oojMF
+#: sf_services.xhp
+msgctxt ""
+"sf_services.xhp\n"
+"par_id971582714020045\n"
+"help.text"
+msgid "<emph>service</emph>: The name of the service identified as a string in the format \"library.service\":"
+msgstr ""
+
+#. CEqku
+#: sf_services.xhp
+msgctxt ""
+"sf_services.xhp\n"
+"par_id11627475954271\n"
+"help.text"
+msgid "The <emph>library</emph> is a Basic library that must exist in the <link href=\"text/sbasic/shared/03131900.xhp\" name=\"GlobalScope\">GlobalScope</link>. The default value is \"ScriptForge\"."
+msgstr ""
+
+#. BBFeA
+#: sf_services.xhp
+msgctxt ""
+"sf_services.xhp\n"
+"par_id811627475954641\n"
+"help.text"
+msgid "The <emph>service</emph> is one of the services registered by the ScriptForge library."
+msgstr ""
+
+#. btbtw
+#: sf_services.xhp
+msgctxt ""
+"sf_services.xhp\n"
+"par_id391582714020045\n"
+"help.text"
+msgid "<emph>arg0, ...</emph>: A list of arguments required by the invoked service."
+msgstr ""
+
+#. yAaks
+#: sf_services.xhp
+msgctxt ""
+"sf_services.xhp\n"
+"par_id841627475900817\n"
+"help.text"
+msgid "If the first argument refers to an event manager, then <literal>arg0</literal> is mandatory and must be the UNO object representing the event provided as argument to the user macro."
+msgstr ""
+
+#. wuR7S
+#: sf_services.xhp
+msgctxt ""
+"sf_services.xhp\n"
+"bas_id981582898174133\n"
+"help.text"
+msgid "' To be done once"
+msgstr ""
+
+#. oqovE
+#: sf_services.xhp
+msgctxt ""
+"sf_services.xhp\n"
+"bas_id311582715700844\n"
+"help.text"
+msgid "' Refers to the \"ScriptForge.Array\" service or SF_Array"
+msgstr ""
+
+#. KvcPo
+#: sf_services.xhp
+msgctxt ""
+"sf_services.xhp\n"
+"bas_id61582715759468\n"
+"help.text"
+msgid "' Returns a new empty dictionary class instance; \"ScriptForge.\" is optional"
+msgstr ""
+
+#. pMGcR
+#: sf_services.xhp
+msgctxt ""
+"sf_services.xhp\n"
+"bas_id901582715797722\n"
+"help.text"
+msgid "' Refers to the Calc service, implemented in the associated SFDocuments library"
+msgstr ""
+
+#. BoXHx
+#: sf_services.xhp
+msgctxt ""
+"sf_services.xhp\n"
+"bas_id361582715845747\n"
+"help.text"
+msgid "' Returns a Timer class instance starting immediately"
+msgstr ""
+
+#. 9bmdn
+#: sf_services.xhp
+msgctxt ""
+"sf_services.xhp\n"
+"bas_id571596298708062\n"
+"help.text"
+msgid "' Refers to the DocumentEvent service implemented in the associated SFDocuments library"
+msgstr ""
+
+#. DFhat
+#: sf_services.xhp
+msgctxt ""
+"sf_services.xhp\n"
+"bas_id121613492254532\n"
+"help.text"
+msgid "' Returns the instance of the Document class that fired the event"
+msgstr ""
+
+#. zhCyY
+#: sf_services.xhp
+msgctxt ""
+"sf_services.xhp\n"
+"par_id321627570607194\n"
+"help.text"
+msgid "Python scripts support keyword arguments when calling <literal>CreateScriptService</literal>. The following example illustrates this concept by instantiating the <literal>Timer</literal> and <literal>Document</literal> services using keyword arguments."
+msgstr ""
+
+#. jah7F
+#: sf_services.xhp
+msgctxt ""
+"sf_services.xhp\n"
+"par_id901627576693156\n"
+"help.text"
+msgid "To make writing Python scripts more fluid, ScriptForge provides the <literal>Basic</literal> service which allows Python scripts to call a collection of methods with the same syntax and meaning as their homonymous native Basic functions."
+msgstr ""
+
+#. SDQ7m
+#: sf_services.xhp
+msgctxt ""
+"sf_services.xhp\n"
+"par_id41627644806288\n"
+"help.text"
+msgid "The following example instantiates the <literal>Basic</literal> service and calls the <literal>MsgBox</literal> method, which is equivalent to the <literal>MsgBox</literal> function available in Basic:"
+msgstr ""
+
+#. TFMGE
+#: sf_services.xhp
+msgctxt ""
+"sf_services.xhp\n"
+"par_id581627645023307\n"
+"help.text"
+msgid "Be aware that the <literal>Basic</literal> service has to be instantiated in Python scripts using the <literal>CreateScriptService</literal> method."
+msgstr ""
+
+#. LCVem
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"tit\n"
+"help.text"
+msgid "ScriptForge.Session service"
+msgstr ""
+
+#. DxnDG
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"hd_id901582814720985\n"
+"help.text"
+msgid "<variable id=\"SessionService\"><link href=\"text/sbasic/shared/03/sf_session.xhp\" name=\"Session service\"><literal>ScriptForge.Session</literal> service</link></variable>"
+msgstr ""
+
+#. yTgFK
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id861582814720987\n"
+"help.text"
+msgid "The <literal>Session</literal> service gathers various general-purpose methods about:"
+msgstr ""
+
+#. a2DCM
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id34158281472051\n"
+"help.text"
+msgid "the installation or execution environment"
+msgstr ""
+
+#. cf5WG
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id411582814720361\n"
+"help.text"
+msgid "UNO introspection"
+msgstr ""
+
+#. fBApv
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id321582814720863\n"
+"help.text"
+msgid "the invocation of external scripts or programs"
+msgstr ""
+
+#. 63uDb
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"hd_id91582814720116\n"
+"help.text"
+msgid "Service invocation"
+msgstr ""
+
+#. XRvpV
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id141609955500101\n"
+"help.text"
+msgid "Before using the <literal>Session</literal> service the <literal>ScriptForge</literal> library needs to be loaded or imported:"
+msgstr ""
+
+#. 8BEnm
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"hd_id291582814720762\n"
+"help.text"
+msgid "Constants"
+msgstr ""
+
+#. zcRQu
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id82158281472034\n"
+"help.text"
+msgid "Below is a list of constants available to ease the designation of the library containing a Basic or Python script to invoke. Use them as <literal>session.CONSTANT</literal>."
+msgstr ""
+
+#. yyF2R
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id9158281472045\n"
+"help.text"
+msgid "Value"
+msgstr ""
+
+#. Wd88w
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id241582814720636\n"
+"help.text"
+msgid "Where to find the library?"
+msgstr ""
+
+#. k58kN
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id361582814720116\n"
+"help.text"
+msgid "Applicable"
+msgstr ""
+
+#. DJspw
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id451582814720105\n"
+"help.text"
+msgid "in the document"
+msgstr ""
+
+#. Q2KtM
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id73158281472032\n"
+"help.text"
+msgid "in any shared library"
+msgstr ""
+
+#. 2GN3X
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id391582814720487\n"
+"help.text"
+msgid "in <emph>My Macros</emph>"
+msgstr ""
+
+#. MiuWT
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id56158281472073\n"
+"help.text"
+msgid "in an extension installed for the current user"
+msgstr ""
+
+#. MfbpF
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id21582814720997\n"
+"help.text"
+msgid "in <emph>Application Macros</emph>"
+msgstr ""
+
+#. LnKrt
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id981582814720125\n"
+"help.text"
+msgid "in an extension installed for all users"
+msgstr ""
+
+#. gCi9j
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id93158281472047\n"
+"help.text"
+msgid "in an extension but the installation parameters are unknown"
+msgstr ""
+
+#. mLURi
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id891611613601554\n"
+"help.text"
+msgid "List of Methods in the Session Service"
+msgstr ""
+
+#. JvBuZ
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id491613061572993\n"
+"help.text"
+msgid "<literal>Execute...</literal> methods in <literal>Session</literal> service behave as follows: <br/>Arguments are passed by value. Changes made by the called function to the arguments do not update their values in the calling script. <br/>A single value or an array of values is returned to the calling script."
+msgstr ""
+
+#. 72GZi
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id451582815407230\n"
+"help.text"
+msgid "Execute the Basic script given its name and location and fetch its result if any."
+msgstr ""
+
+#. yFnSG
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id921600856780901\n"
+"help.text"
+msgid "If the script returns nothing, which is the case of procedures defined with <literal>Sub</literal>, the returned value is <literal>Empty</literal>."
+msgstr ""
+
+#. VTyCE
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id631582815407231\n"
+"help.text"
+msgid "<emph>scope</emph>: String specifying where the script is stored. It can be either \"document\" (constant <literal>session.SCRIPTISEMBEDDED</literal>) or \"application\" (constant <literal>session.SCRIPTISAPPLICATION</literal>)."
+msgstr ""
+
+#. SCCpE
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id691582815407231\n"
+"help.text"
+msgid "<emph>script</emph>: String specifying the script to be called in the format \"library.module.method\" as a case-sensitive string."
+msgstr ""
+
+#. hS5x4
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id741626828862265\n"
+"help.text"
+msgid "The library is loaded in memory if necessary."
+msgstr ""
+
+#. D8AL6
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id981626828863001\n"
+"help.text"
+msgid "The module must not be a class module."
+msgstr ""
+
+#. VsUFD
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id721626828863257\n"
+"help.text"
+msgid "The method may be a <literal>Sub</literal> or a <literal>Function</literal>."
+msgstr ""
+
+#. eExjm
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id881582815407231\n"
+"help.text"
+msgid "<emph>args</emph>: The arguments to be passed to the called script."
+msgstr ""
+
+#. mg5WG
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id21626809513802\n"
+"help.text"
+msgid "Consider the following Basic function named <literal>DummyFunction</literal> that is stored in \"My Macros\" in the \"Standard\" library inside a module named \"Module1\"."
+msgstr ""
+
+#. PMyrB
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id551626810319766\n"
+"help.text"
+msgid "The function simply takes in two integer values <literal>v1</literal> and <literal>v2</literal> and return the sum of all values starting in <literal>v1</literal> and ending in <literal>v2</literal>."
+msgstr ""
+
+#. Gx6fV
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id461626810470057\n"
+"help.text"
+msgid "The examples below show how to call <literal>DummyFunction</literal> from within Basic and Python scripts."
+msgstr ""
+
+#. Yr22N
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id111582816585181\n"
+"help.text"
+msgid "Execute a Calc function using its English name and based on the given arguments. <br/>If the arguments are arrays, the function is executed as an <link href=\"text/scalc/01/04060107.xhp\" name=\"array formula\">array formula</link>."
+msgstr ""
+
+#. EDU9x
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id771582816585183\n"
+"help.text"
+msgid "<emph>calcfunction</emph>: The name of the Calc function to be called, in English."
+msgstr ""
+
+#. FJJJh
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id371582816585183\n"
+"help.text"
+msgid "<emph>args</emph>: The arguments to be passed to the called Calc function. Each argument must be either a string, a numeric value or an array of arrays combining those types."
+msgstr ""
+
+#. XMfUD
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"bas_id881582816585185\n"
+"help.text"
+msgid "' Generates an error."
+msgstr ""
+
+#. ygESx
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id571582818023245\n"
+"help.text"
+msgid "Execute the Python script given its location and name, fetch its result if any. Result can be a single value or an array of values."
+msgstr ""
+
+#. SB2gx
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id71600856817410\n"
+"help.text"
+msgid "If the script is not found, or if it returns nothing, the returned value is <literal>Empty</literal>."
+msgstr ""
+
+#. jdWTU
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id791582818023246\n"
+"help.text"
+msgid "<emph>scope</emph>: One of the applicable constants listed <link href=\"text/sbasic/shared/03/sf_session.xhp#constants\" name=\"Session constants\">above</link>. The default value is <literal>session.SCRIPTISSHARED</literal>."
+msgstr ""
+
+#. ELfda
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id71582818023247\n"
+"help.text"
+msgid "<emph>script</emph>: Either \"library/module.py$method\" or \"module.py$method\" or \"myExtension.oxt|myScript|module.py$method\" as a case-sensitive string."
+msgstr ""
+
+#. P6ZKD
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id501613061041313\n"
+"help.text"
+msgid "library: The folder path to the Python module."
+msgstr ""
+
+#. ktFHu
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id771613061043097\n"
+"help.text"
+msgid "myScript: The folder containing the Python module."
+msgstr ""
+
+#. ANBoy
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id301613061123849\n"
+"help.text"
+msgid "module.py: The Python module."
+msgstr ""
+
+#. f4B8C
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id241613061044560\n"
+"help.text"
+msgid "method: The Python function."
+msgstr ""
+
+#. ByFdE
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id711582818023247\n"
+"help.text"
+msgid "<emph>args</emph>: The arguments to be passed to the called script."
+msgstr ""
+
+#. ckvXs
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id701626817164878\n"
+"help.text"
+msgid "Consider the Python function <literal>odd_integers</literal> defined below that creates a list with odd integer values between <literal>v1</literal> and <literal>v2</literal>. Suppose this function is stored in a file named <emph>my_macros.py</emph> in your user scripts folder."
+msgstr ""
+
+#. o6DUm
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id751626817335715\n"
+"help.text"
+msgid "Read the help page <link href=\"text/sbasic/python/python_locations.xhp\" name=\"pylocation_link\">Python Scripts Organization and Location</link> to learn more about where Python scripts can be stored."
+msgstr ""
+
+#. vqBm9
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id121626817725471\n"
+"help.text"
+msgid "The following examples show how to call the function <literal>odd_integers</literal> from within Basic and Python scripts."
+msgstr ""
+
+#. pbmij
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id111582816585087\n"
+"help.text"
+msgid "Returns the current PDF export settings defined in the <menuitem>PDF Options</menuitem> dialog, which can be accessed by choosing <menuitem>File - Export as - Export as PDF</menuitem>."
+msgstr ""
+
+#. K7j2q
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id931638383270026\n"
+"help.text"
+msgid "Export options set with the <menuitem>PDF Options</menuitem> dialog are kept for future use. Hence <literal>GetPDFExportOptions</literal> returns the settings currently defined. In addition, use <literal>SetPDFExportOptions</literal> to change current PDF export options."
+msgstr ""
+
+#. uFCEq
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id801638383659558\n"
+"help.text"
+msgid "This method returns a <literal>Dictionary</literal> object wherein each key represent export options and the corresponding values are the current PDF export settings."
+msgstr ""
+
+#. 6kXBe
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id751638383457198\n"
+"help.text"
+msgid "Read the <link href=\"https://wiki.openoffice.org/wiki/API/Tutorials/PDF_export\" name=\"PDFExport_Wiki\">PDF Export wiki page</link> to learn more about all available options."
+msgstr ""
+
+#. Lv4iA
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id111587477335982\n"
+"help.text"
+msgid "Returns <literal>True</literal> if an UNO object contains the given method. Returns <literal>False</literal> when the method is not found or when an argument is invalid."
+msgstr ""
+
+#. HAw32
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id921587477335673\n"
+"help.text"
+msgid "<emph>unoobject</emph>: The object to inspect."
+msgstr ""
+
+#. DDw6g
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id631587477566016\n"
+"help.text"
+msgid "<emph>methodname</emph>: the method as a case-sensitive string"
+msgstr ""
+
+#. gDBRB
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id191587477832959\n"
+"help.text"
+msgid "Returns <literal>True</literal> if a UNO object has the given property. Returns <literal>False</literal> when the property is not found or when an argument is invalid."
+msgstr ""
+
+#. 54oXs
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id121587477832805\n"
+"help.text"
+msgid "<emph>unoobject</emph>: The object to inspect."
+msgstr ""
+
+#. hCTCk
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id701587477832750\n"
+"help.text"
+msgid "<emph>propertyname</emph>: the property as a case-sensitive string"
+msgstr ""
+
+#. QWaTF
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id97160112964017\n"
+"help.text"
+msgid "Open a Uniform Resource Locator (<link href=\"text/shared/00/00000002.xhp#URL\" name=\"URL\">URL</link>) in the default browser."
+msgstr ""
+
+#. 4tFWV
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id241601129640549\n"
+"help.text"
+msgid "<emph>url</emph>: The URL to open."
+msgstr ""
+
+#. hJqsF
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id311582819697897\n"
+"help.text"
+msgid "Executes an arbitrary system command and returns <literal>True</literal> if it was launched successfully."
+msgstr ""
+
+#. D483F
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id461582819697898\n"
+"help.text"
+msgid "<emph>command</emph>: The command to execute. This may be an executable file or a document which is registered with an application so that the system knows what application to launch for that document. The command must be expressed in the current <literal>SF_FileSystem.FileNaming</literal> notation."
+msgstr ""
+
+#. b8hbC
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id611582819697899\n"
+"help.text"
+msgid "<emph>parameters</emph>: A list of space separated parameters as a single string. The method does not validate the given parameters, but only passes them to the specified command."
+msgstr ""
+
+#. 2hTM7
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id131601030349755\n"
+"help.text"
+msgid "Send a message - with optional attachments - to recipients from the user's mail client. The message may be edited by the user before sending or, alternatively, be sent immediately."
+msgstr ""
+
+#. FCn8e
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id701601030349896\n"
+"help.text"
+msgid "<emph>recipient</emph>: An email address (the \"To\" recipient)."
+msgstr ""
+
+#. BdMiD
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id571601030349904\n"
+"help.text"
+msgid "<emph>cc</emph>: A comma-separated list of email addresses (the \"carbon copy\" recipients)."
+msgstr ""
+
+#. ADjaV
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id961601031043346\n"
+"help.text"
+msgid "<emph>bcc</emph>: A comma-separated list of email addresses (the \"blind carbon copy\" recipients)."
+msgstr ""
+
+#. zAkWZ
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id891601031050814\n"
+"help.text"
+msgid "<emph>subject</emph>: the header of the message."
+msgstr ""
+
+#. 69CFR
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id191601031056673\n"
+"help.text"
+msgid "<emph>body</emph>: The contents of the message as an unformatted text."
+msgstr ""
+
+#. McuEx
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id511601031063269\n"
+"help.text"
+msgid "<emph>filenames</emph>: a comma-separated list of file names. Each file name must respect the <literal>SF_FileSystem.FileNaming</literal> notation."
+msgstr ""
+
+#. h9Urq
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id161601032784063\n"
+"help.text"
+msgid "<emph>editmessage</emph>: When <literal>True</literal> (default), the message is edited before being sent."
+msgstr ""
+
+#. g7zLC
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id111582816583005\n"
+"help.text"
+msgid "Modifies the PDF export settings defined in the <menuitem>PDF Options</menuitem> dialog, which can be accessed by choosing <menuitem>File - Export as - Export as PDF</menuitem>."
+msgstr ""
+
+#. T2DkW
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id181638385131806\n"
+"help.text"
+msgid "Calling this method changes the actual values set in the <menuitem>PDF Options</menuitem> dialog, which are used by the <literal>ExportAsPDF</literal> method from the <literal>Document</literal> service."
+msgstr ""
+
+#. FBrKg
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id391638385313847\n"
+"help.text"
+msgid "This method returns <literal>True</literal> when successful."
+msgstr ""
+
+#. 9BqH3
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id751638383457321\n"
+"help.text"
+msgid "Read the <link href=\"https://wiki.openoffice.org/wiki/API/Tutorials/PDF_export\" name=\"PDFExport_Wiki\">PDF Export wiki page</link> to learn more about all available options."
+msgstr ""
+
+#. JhhXU
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id771582816585233\n"
+"help.text"
+msgid "<emph>pdfoptions</emph>: <literal>Dictionary</literal> object that defines the PDF export settings to be changed. Each key-value pair represents an export option and the value that will be set in the dialog."
+msgstr ""
+
+#. 8DKZK
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id141638386087986\n"
+"help.text"
+msgid "The following example changes the maximum image resolution to 150 dpi and exports the current document as a PDF file."
+msgstr ""
+
+#. HtzHP
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id321587478024997\n"
+"help.text"
+msgid "Returns a list of the methods callable from an UNO object. The list is a zero-based array of strings and may be empty."
+msgstr ""
+
+#. DX8qb
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id251587478024311\n"
+"help.text"
+msgid "<emph>unoobject</emph>: The object to inspect."
+msgstr ""
+
+#. sL6Ri
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id141587478343306\n"
+"help.text"
+msgid "Returns a list of the properties of an UNO object. The list is a zero-based array of strings and may be empty."
+msgstr ""
+
+#. CFZRP
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id241587478343323\n"
+"help.text"
+msgid "<emph>unoobject</emph>: The object to inspect."
+msgstr ""
+
+#. Cm4eK
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id371582820251347\n"
+"help.text"
+msgid "Identify the type of a UNO object as a string."
+msgstr ""
+
+#. Cs3VC
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id921582820251349\n"
+"help.text"
+msgid "<emph>unoobject</emph>: The object to identify."
+msgstr ""
+
+#. UAy4i
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id341582821057373\n"
+"help.text"
+msgid "Get some web content from a URI."
+msgstr ""
+
+#. BU5XR
+#: sf_session.xhp
+msgctxt ""
+"sf_session.xhp\n"
+"par_id771582821057374\n"
+"help.text"
+msgid "<emph>uri</emph>: URI address of the web service."
+msgstr ""
+
+#. gn6AM
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"tit\n"
+"help.text"
+msgid "ScriptForge.String service (SF_String)"
+msgstr ""
+
+#. ZhvDP
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"hd_id521580038927003\n"
+"help.text"
+msgid "<variable id=\"StringService\"><link href=\"text/sbasic/shared/03/sf_string.xhp\" name=\"String service\"><literal>ScriptForge</literal>.<literal>String</literal> service</link></variable>"
+msgstr ""
+
+#. yaisH
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id351579602570526\n"
+"help.text"
+msgid "The <literal>String</literal> service provides a collection of methods for string processing. These methods can be used to:"
+msgstr ""
+
+#. oNvbV
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id611611952070366\n"
+"help.text"
+msgid "Validate the contents of strings"
+msgstr ""
+
+#. UmFAv
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id611611952070376\n"
+"help.text"
+msgid "Format strings by trimming, justifying or wrapping their contents"
+msgstr ""
+
+#. EZKAi
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id611611952070367\n"
+"help.text"
+msgid "Use regular expressions to search and replace substrings"
+msgstr ""
+
+#. D2qPU
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id611611952070368\n"
+"help.text"
+msgid "Apply hash algorithms on strings, etc."
+msgstr ""
+
+#. Nd4es
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"hd_id961579603699855\n"
+"help.text"
+msgid "Definitions"
+msgstr ""
+
+#. dQjPv
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"hd_id441579603838777\n"
+"help.text"
+msgid "Line breaks"
+msgstr ""
+
+#. ePyj2
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id791611946942340\n"
+"help.text"
+msgid "The <literal>String</literal> service recognizes the following line breaks:"
+msgstr ""
+
+#. o2TiZ
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id151611947117831\n"
+"help.text"
+msgid "Symbolic name"
+msgstr ""
+
+#. fEbm9
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id721611947117831\n"
+"help.text"
+msgid "ASCII number"
+msgstr ""
+
+#. yqVHd
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id761611947117831\n"
+"help.text"
+msgid "Line feed<br/> Vertical tab<br/> Carriage return<br/> Line feed + Carriage return<br/> File separator<br/> Group separator<br/> Record separator<br/> Next line<br/> Line separator<br/> Paragraph separator"
+msgstr ""
+
+#. WCvgW
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"hd_id161579604225813\n"
+"help.text"
+msgid "Whitespaces"
+msgstr ""
+
+#. mFfbq
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id401611948279056\n"
+"help.text"
+msgid "The <literal>String</literal> service recognizes the following whitespaces:"
+msgstr ""
+
+#. U3GSy
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id151611947117893\n"
+"help.text"
+msgid "Symbolic name"
+msgstr ""
+
+#. ZsSFF
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id721611947117855\n"
+"help.text"
+msgid "ASCII number"
+msgstr ""
+
+#. TXAFP
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id761611947117835\n"
+"help.text"
+msgid "Space<br/> Horizontal tab<br/> Line feed<br/> Vertical tab<br/> Form feed<br/> Carriage return<br/> Next line<br/> No-break space<br/> Line separator<br/> Paragraph separator"
+msgstr ""
+
+#. UPByW
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"hd_id191580480825160\n"
+"help.text"
+msgid "Escape sequences"
+msgstr ""
+
+#. JD6CK
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id971611949145057\n"
+"help.text"
+msgid "Below is a list of escape sequences that can be used in strings."
+msgstr ""
+
+#. D4DjE
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id151611947117287\n"
+"help.text"
+msgid "Escape Sequence"
+msgstr ""
+
+#. xzDai
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id721611947117732\n"
+"help.text"
+msgid "Symbolic name"
+msgstr ""
+
+#. rrxV4
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id721611947117144\n"
+"help.text"
+msgid "ASCII number"
+msgstr ""
+
+#. fS24a
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id761611947119834\n"
+"help.text"
+msgid "Line feed<br/> Carriage return<br/> Horizontal tab"
+msgstr ""
+
+#. wAbkt
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id251611949474763\n"
+"help.text"
+msgid "To have the escape sequence \"\\n\" interpreted as an actual string, simply use \"\\\\n\" instead of <literal>\"\\\" & Chr(10).</literal>"
+msgstr ""
+
+#. AYQbH
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"hd_id771579606799550\n"
+"help.text"
+msgid "Non-printable characters:"
+msgstr ""
+
+#. WXEDi
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id531579606877342\n"
+"help.text"
+msgid "Characters defined in the Unicode Character Database as “Other” or “Separator” are considered as non-printable characters."
+msgstr ""
+
+#. EsBdD
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id221611949584320\n"
+"help.text"
+msgid "Control characters (ascii code <= 0x1F) are also considered as non-printable."
+msgstr ""
+
+#. GfNfK
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"hd_id661579604944268\n"
+"help.text"
+msgid "Quotes inside strings:"
+msgstr ""
+
+#. 6KLF9
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id551579605035332\n"
+"help.text"
+msgid "To add quotes in strings use \\' (single quote) or \\\" (double quote). For example:"
+msgstr ""
+
+#. BKoHN
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id201611949691285\n"
+"help.text"
+msgid "The string <literal>[str\\'i\\'ng]</literal> is interpreted as <literal>[str'i'ng]</literal>"
+msgstr ""
+
+#. eRosR
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id201611949691323\n"
+"help.text"
+msgid "The string <literal>[str\\\"i\\\"ng]</literal> is interpreted as <literal>[str\"i\"ng]</literal>"
+msgstr ""
+
+#. FtzhT
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"hd_id201586594659135\n"
+"help.text"
+msgid "Service invocation"
+msgstr ""
+
+#. 4WFve
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id141609955500101\n"
+"help.text"
+msgid "Before using the <literal>ScriptForge.String</literal> service the <literal>ScriptForge</literal> library needs to be loaded using:"
+msgstr ""
+
+#. znLHV
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id271627158844922\n"
+"help.text"
+msgid "Loading the library will create the <literal>SF_String</literal> object that can be used to call the methods in the <literal>String</literal> service."
+msgstr ""
+
+#. e2Gty
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id63158659509728\n"
+"help.text"
+msgid "The following code snippets show the three ways to call methods from the <literal>String</literal> service (the <literal>Capitalize</literal> method is used as an example):"
+msgstr ""
+
+#. UE3DL
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id761627158463235\n"
+"help.text"
+msgid "The code snippet below illustrates how to invoke methods from the <literal>String</literal> service in Python scripts. The <literal>IsIPv4</literal> method is used as an example."
+msgstr ""
+
+#. GfEcK
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"hd_id651584978211886\n"
+"help.text"
+msgid "Properties"
+msgstr ""
+
+#. qKhL4
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id241611950267068\n"
+"help.text"
+msgid "The <literal>SF_String</literal> object provides the following properties for Basic scripts:"
+msgstr ""
+
+#. FDjPb
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id271584978211792\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. HGYbF
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id241584978211550\n"
+"help.text"
+msgid "ReadOnly"
+msgstr ""
+
+#. 5qXzL
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id621584978211403\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. 6DG3u
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id71584978715562\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. YJA6w
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id581584978715701\n"
+"help.text"
+msgid "Carriage return: Chr(13)"
+msgstr ""
+
+#. NCbTs
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id211584978211383\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. xht7K
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id691584978211774\n"
+"help.text"
+msgid "Carriage return + Linefeed: Chr(13) & Chr(10)"
+msgstr ""
+
+#. ennLs
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id671584978666689\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. pdykp
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id951584978666296\n"
+"help.text"
+msgid "Linefeed: Chr(10)"
+msgstr ""
+
+#. TTF6v
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id421584978666327\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. 9djV3
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id901584978666158\n"
+"help.text"
+msgid "Carriage return + Linefeed, which can be<br/>1) Chr(13) & Chr(10) or <br/>2) Linefeed: Chr(10) <br/>depending on the operating system."
+msgstr ""
+
+#. EMV7g
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id541584978666991\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. VrjGQ
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id741584978666508\n"
+"help.text"
+msgid "Horizontal tabulation: Chr(9)"
+msgstr ""
+
+#. Ee5CF
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id461584978880380\n"
+"help.text"
+msgid "You can use the properties above to identify or insert the corresponding characters inside strings. For example, the Linefeed can be replaced by <literal>SF_String.sfLF</literal>."
+msgstr ""
+
+#. DDXd3
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id891611613601554\n"
+"help.text"
+msgid "List of Methods in the String Service"
+msgstr ""
+
+#. TFfR3
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id151611951803163\n"
+"help.text"
+msgid "The first argument of most methods is the string to be considered. It is always passed by reference and left unchanged. Methods such as <literal>Capitalize</literal>, <literal>Escape</literal>, etc return a new string after their execution."
+msgstr ""
+
+#. PYcny
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id371627158142730\n"
+"help.text"
+msgid "Because Python has comprehensive built-in string support, most of the methods in the <literal>String</literal> service are available for Basic scripts only. The methods available for Basic and Python are: <literal>HashStr</literal>, <literal>IsADate</literal>, <literal>IsEmail</literal>, <literal>IsFileName</literal>, <literal>IsIBAN</literal>, <literal>IsIPv4</literal>, <literal>IsLike</literal>, <literal>IsSheetName</literal>, <literal>IsUrl</literal>, <literal>SplitNotQuoted</literal> and <literal>Wrap</literal>."
+msgstr ""
+
+#. jaBZR
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id271579683706571\n"
+"help.text"
+msgid "Capitalizes the first character from each word in the input string."
+msgstr ""
+
+#. ibgky
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id941582304592013\n"
+"help.text"
+msgid "<emph>inputstr</emph>: The string to be capitalized."
+msgstr ""
+
+#. DB982
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id891582384556756\n"
+"help.text"
+msgid "Counts the number of occurrences of a substring or a regular expression within a string."
+msgstr ""
+
+#. DxK5L
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id571582384689863\n"
+"help.text"
+msgid "<emph>inputstr</emph>: The input string to be examined"
+msgstr ""
+
+#. QUeur
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id601582384696486\n"
+"help.text"
+msgid "<emph>substring</emph>: The substring or the regular expression to be used during search"
+msgstr ""
+
+#. vGiqm
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id451582384703719\n"
+"help.text"
+msgid "<emph>isregex</emph>: Use <literal>True</literal> if the substring is a regular expression (Default = <literal>False</literal>)"
+msgstr ""
+
+#. WiFme
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id141582384726168\n"
+"help.text"
+msgid "<emph>casesensitive</emph>: The search can be case sensitive or not (Default = <literal>False</literal>)."
+msgstr ""
+
+#. QcE5q
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"bas_id371582384749769\n"
+"help.text"
+msgid "'Counts the occurrences of the substring \"or\" inside the input string (returns 2)"
+msgstr ""
+
+#. XXCR4
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"bas_id561582384801586\n"
+"help.text"
+msgid "'Counts the number of words with only lowercase letters (returns 7)"
+msgstr ""
+
+#. aJNDg
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id131612223767126\n"
+"help.text"
+msgid "To learn more about regular expressions, refer to the Python's documentation on <link href=\"https://docs.python.org/3/library/re.html\" name=\"Regular expressions\">Regular Expression Operations</link>."
+msgstr ""
+
+#. CCzMc
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id581579687739629\n"
+"help.text"
+msgid "Returns <literal>True</literal> if a string ends with a specified substring."
+msgstr ""
+
+#. cAmFW
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id21612306392239\n"
+"help.text"
+msgid "The function returns <literal>False</literal> when either the string or the substring have a length = 0 or when the substring is longer than the string."
+msgstr ""
+
+#. qk5nE
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id191579861552201\n"
+"help.text"
+msgid "<emph>inputstr</emph>: The string to be tested."
+msgstr ""
+
+#. ErigR
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id211579861561473\n"
+"help.text"
+msgid "<emph>substring</emph>: The substring to be searched at the end of <literal>inputstr</literal>."
+msgstr ""
+
+#. 4DKkW
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id801579861574009\n"
+"help.text"
+msgid "<emph>casesensitive</emph>: The search can be case sensitive or not (Default = <literal>False</literal>)."
+msgstr ""
+
+#. gn2F8
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"bas_id811579862998452\n"
+"help.text"
+msgid "'Returns True because the method was called with the default CaseSensitive = False"
+msgstr ""
+
+#. vJDmx
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"bas_id231579863168747\n"
+"help.text"
+msgid "'Returns False due to the CaseSensitive parameter"
+msgstr ""
+
+#. zThMM
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id921585921441429\n"
+"help.text"
+msgid "Converts linebreaks and tabs contained in the input string to their equivalent escaped sequence (\\\\, \\n, \\r, \\t)."
+msgstr ""
+
+#. kBiBE
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id9158592144110\n"
+"help.text"
+msgid "<emph>inputstr</emph>: The string to be converted."
+msgstr ""
+
+#. cpLKD
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"bas_id901585921441483\n"
+"help.text"
+msgid "'Returns the string \"abc\\n\\tdef\\\\n\""
+msgstr ""
+
+#. ADN8M
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id271579868053137\n"
+"help.text"
+msgid "Replaces Tab characters <literal>Chr(9)</literal> by space characters to replicate the behavior of tab stops."
+msgstr ""
+
+#. Eb23Z
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id951579868064344\n"
+"help.text"
+msgid "If a line break is found, a new line is started and the character counter is reset."
+msgstr ""
+
+#. E73Ko
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id231579868290408\n"
+"help.text"
+msgid "<emph>inputstr</emph>: The string to be expanded"
+msgstr ""
+
+#. 9dyYc
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id281579868299807\n"
+"help.text"
+msgid "<emph>tabsize</emph>: This parameter is used to determine the Tab stops using the formula: TabSize + 1, 2 * TabSize + 1 , ... N * TabSize + 1 (Default = 8)"
+msgstr ""
+
+#. GUoE8
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id161579874552729\n"
+"help.text"
+msgid "Replaces all non-printable characters in the input string by a given character."
+msgstr ""
+
+#. GpHwp
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id431579874633865\n"
+"help.text"
+msgid "<emph>inputstr</emph>: The string to be searched"
+msgstr ""
+
+#. GttDN
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id31579874656437\n"
+"help.text"
+msgid "<emph>replacedby</emph>: Zero, one or more characters that will replace all non-printable characters in <literal>inputstr</literal> (Default = \"\")"
+msgstr ""
+
+#. W44TL
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id1001579876228707\n"
+"help.text"
+msgid "Finds in a string a substring matching a given regular expression."
+msgstr ""
+
+#. aq28M
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id131579876314120\n"
+"help.text"
+msgid "<emph>inputstr</emph>: The string to be searched"
+msgstr ""
+
+#. hRrBB
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id751579876371545\n"
+"help.text"
+msgid "<emph>regex</emph>: The regular expression"
+msgstr ""
+
+#. y2Fqs
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id881579876394584\n"
+"help.text"
+msgid "<emph>start</emph>: The position in the string where the search will begin. This parameter is passed by reference, so after execution the value of <literal>start</literal> will point to the first character of the found substring. If no matching substring is found, <literal>start</literal> will be set to 0."
+msgstr ""
+
+#. yZMDg
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id251579876403831\n"
+"help.text"
+msgid "<emph>casesensitive</emph>: The search can be case sensitive or not (Default = <literal>False</literal>)."
+msgstr ""
+
+#. A4JC7
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id841579876412287\n"
+"help.text"
+msgid "<emph>forward</emph>: Determines the direction of the search. If <literal>True</literal>, search moves forward. If <literal>False</literal> search moves backwards (Default = <literal>True</literal>)"
+msgstr ""
+
+#. SkaCi
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id451612309155653\n"
+"help.text"
+msgid "At the first iteration, if <literal>forward = True</literal>, then <literal>start</literal> should be equal to 1, whereas if <literal>forward = False</literal> then <literal>start</literal> should be equal to <literal>Len(inputstr)</literal>"
+msgstr ""
+
+#. gv3oo
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id221612309579001\n"
+"help.text"
+msgid "In the example above, the new value of <literal>lStart</literal> can be used to keep searching the same input string by setting the <literal>Start</literal> parameter to <literal>lStart + Len(result)</literal> at the next iteration."
+msgstr ""
+
+#. qAkN4
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id471601048983628\n"
+"help.text"
+msgid "Hash functions are used inside some cryptographic algorithms, in digital signatures, message authentication codes, manipulation detection, fingerprints, checksums (message integrity check), hash tables, password storage and much more."
+msgstr ""
+
+#. HupGD
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id301601048983765\n"
+"help.text"
+msgid "The <literal>HashStr</literal> method returns the result of a hash function applied on a given string and using a specified algorithm, as a string of lowercase hexadecimal digits."
+msgstr ""
+
+#. ZRZEF
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id631601048983149\n"
+"help.text"
+msgid "The hash algorithms supported are: <literal>MD5</literal>, <literal>SHA1</literal>, <literal>SHA224</literal>, <literal>SHA256</literal>, <literal>SHA384</literal> and <literal>SHA512</literal>."
+msgstr ""
+
+#. yUmmb
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id621601048983210\n"
+"help.text"
+msgid "<emph>inputstr</emph>: The string to hash. It is presumed to be encoded in UTF-8. The hashing algorithm will consider the string as a stream of bytes."
+msgstr ""
+
+#. nuQRb
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id941601048983822\n"
+"help.text"
+msgid "<emph>algorithm</emph>: One of the supported algorithms listed above, passed as a string."
+msgstr ""
+
+#. TXGmB
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id221579879516929\n"
+"help.text"
+msgid "Encodes the input string into the HTML character codes, replacing special characters by their <literal>&</literal> counterparts."
+msgstr ""
+
+#. YNfid
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id341612351999692\n"
+"help.text"
+msgid "For example, the character <literal>é</literal> would be replaced by <literal>&eacute;</literal> or an equivalent numerical HTML code."
+msgstr ""
+
+#. CGFQH
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"bas_id501579879570781\n"
+"help.text"
+msgid "<emph>inputstr</emph>: The string to encode."
+msgstr ""
+
+#. jpv97
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id171579880990533\n"
+"help.text"
+msgid "Returns <literal>True</literal> if the input string is a valid date according to a specified date format."
+msgstr ""
+
+#. tBGBH
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id151579881091821\n"
+"help.text"
+msgid "<emph>inputstr</emph>: The string to be checked. If empty, the method returns <literal>False</literal>"
+msgstr ""
+
+#. nmTv3
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id991579881107670\n"
+"help.text"
+msgid "<emph>dateformat</emph>: The date format, as a string. It can be either \"YYYY-MM-DD\" (default), \"DD-MM-YYYY\" or \"MM-DD-YYYY\""
+msgstr ""
+
+#. GvZLC
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id291579881117126\n"
+"help.text"
+msgid "The dash (-) may be replaced by a dot (.), a slash (/) or a space."
+msgstr ""
+
+#. yCA3T
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id51579881125801\n"
+"help.text"
+msgid "If the format is invalid, the method returns <literal>False</literal>."
+msgstr ""
+
+#. qFmWW
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id211612370427721\n"
+"help.text"
+msgid "This method checks the format of the input string without performing any calendar-specific checks. Hence it does not test the input string for leap years or months with 30 or 31 days. For that, refer to the <link href=\"text/sbasic/shared/03102300.xhp\" name=\"IsDate function\"><literal>IsDate</literal> built-in function</link>."
+msgstr ""
+
+#. DJQFQ
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id181612371147364\n"
+"help.text"
+msgid "The example below shows the difference between the methods <literal>IsADate</literal> (ScriptForge) and the <literal>IsDate</literal> (built-in) function."
+msgstr ""
+
+#. hAADi
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id161579881600317\n"
+"help.text"
+msgid "Returns <literal>True</literal> if all characters in the string are alphabetic."
+msgstr ""
+
+#. Cpeo3
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id251579881615469\n"
+"help.text"
+msgid "Alphabetic characters are those characters defined in the <link href=\"https://unicode.org/reports/tr44/\" name=\"Unicode documentation\">Unicode Character Database</link> as <literal>Letter</literal>."
+msgstr ""
+
+#. a9rTa
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id11579881691826\n"
+"help.text"
+msgid "<emph>inputstr</emph>: The string to be checked. If empty, the method returns <literal>False</literal>."
+msgstr ""
+
+#. KaLGv
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id421579883181382\n"
+"help.text"
+msgid "Returns <literal>True</literal> if all characters in the string are alphabetic, digits or \"_\" (underscore). The first character must not be a digit."
+msgstr ""
+
+#. BAEB4
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id31579884464101\n"
+"help.text"
+msgid "<emph>inputstr</emph>: The string to be checked. If empty, the method returns <literal>False</literal>."
+msgstr ""
+
+#. qAZpA
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id671580039484786\n"
+"help.text"
+msgid "Returns <literal>True</literal> if all characters in the string are Ascii characters."
+msgstr ""
+
+#. 3DNou
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id791580039528838\n"
+"help.text"
+msgid "<emph>inputstr</emph>: The string to be checked. If empty, the method returns <literal>False</literal>."
+msgstr ""
+
+#. iuPF4
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id861580044805749\n"
+"help.text"
+msgid "Returns <literal>True</literal> if all characters in the string are digits."
+msgstr ""
+
+#. yU7cc
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id41580044873043\n"
+"help.text"
+msgid "<emph>inputstr</emph>: The string to be checked. If empty, the method returns <literal>False</literal>."
+msgstr ""
+
+#. J8Ykx
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id521580045221758\n"
+"help.text"
+msgid "Returns <literal>True</literal> if the string is a valid email address."
+msgstr ""
+
+#. 8Pxsn
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id841580045280071\n"
+"help.text"
+msgid "<emph>inputstr</emph>: The string to be checked. If empty, the method returns <literal>False</literal>."
+msgstr ""
+
+#. R6MsU
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id41580047039666\n"
+"help.text"
+msgid "Returns <literal>True</literal> if the string is a valid filename in a given operating system."
+msgstr ""
+
+#. aQbRF
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id801580047079938\n"
+"help.text"
+msgid "<emph>inputstr</emph>: The string to be checked. If empty, the method returns <literal>False</literal>."
+msgstr ""
+
+#. jWMpJ
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id781580047088954\n"
+"help.text"
+msgid "<emph>osname</emph>: The operating system name, as a string. It can be \"WINDOWS\", \"LINUX\", \"MACOSX\" or \"SOLARIS\"."
+msgstr ""
+
+#. GnrxA
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id991612372824234\n"
+"help.text"
+msgid "The default value is the current operating system on which the script is running."
+msgstr ""
+
+#. FPuAV
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id911580047551929\n"
+"help.text"
+msgid "Returns <literal>True</literal> if all characters in the string are hexadecimal digits."
+msgstr ""
+
+#. hWqAh
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id331580047594144\n"
+"help.text"
+msgid "<emph>inputstr</emph>: The string to be checked. If empty, the method returns <literal>False</literal>."
+msgstr ""
+
+#. kEz4y
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id521612377109554\n"
+"help.text"
+msgid "The hexadecimal digits may be prefixed with \"0x\" or \"&H\"."
+msgstr ""
+
+#. 3WKNf
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id791584008420941\n"
+"help.text"
+msgid "Returns <literal>True</literal> if the string is a valid International Bank Account Number (IBAN). The comparison is not case-sensitive."
+msgstr ""
+
+#. DnC6i
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id951880048466565\n"
+"help.text"
+msgid "<emph>inputstr</emph>: The string to be checked. If empty, the method returns <literal>False</literal>."
+msgstr ""
+
+#. VgT3x
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id631619526542367\n"
+"help.text"
+msgid "<literal>True</literal> if the string contains a valid IBAN number."
+msgstr ""
+
+#. CcTNk
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id791580048420941\n"
+"help.text"
+msgid "Returns <literal>True</literal> if the string is a valid IP(v4) address."
+msgstr ""
+
+#. rMpXB
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id981580048466565\n"
+"help.text"
+msgid "<emph>inputstr</emph>: The string to be checked. If empty, the method returns <literal>False</literal>."
+msgstr ""
+
+#. yWHew
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id831580049093038\n"
+"help.text"
+msgid "Returns <literal>True</literal> if the whole input string matches a given pattern containing wildcards."
+msgstr ""
+
+#. PzigS
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id141580049142548\n"
+"help.text"
+msgid "<emph>inputstr</emph>: The string to be checked. If empty, the method returns <literal>False</literal>."
+msgstr ""
+
+#. XEBzh
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id31580049154551\n"
+"help.text"
+msgid "<emph>pattern</emph>: The pattern as a string. Wildcards are:"
+msgstr ""
+
+#. ZCzDP
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id181612441703306\n"
+"help.text"
+msgid "\"?\" represents any single character;"
+msgstr ""
+
+#. CFPcW
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id861612377611438\n"
+"help.text"
+msgid "\"*\" represents zero, one, or multiple characters."
+msgstr ""
+
+#. eLYBF
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id991580049206617\n"
+"help.text"
+msgid "<emph>casesensitive</emph>: The search can be case sensitive or not (Default = <literal>False</literal>)."
+msgstr ""
+
+#. kSMmn
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id581580050048679\n"
+"help.text"
+msgid "Returns <literal>True</literal> if all characters in the string are in lowercase. Non-alphabetic characters are ignored."
+msgstr ""
+
+#. nWGvX
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id751580050122938\n"
+"help.text"
+msgid "<emph>InputStr</emph>: The string to be checked. If empty, the method returns <literal>False</literal>."
+msgstr ""
+
+#. BzD3y
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id231580051650488\n"
+"help.text"
+msgid "Returns <literal>True</literal> if all characters in the string are printable."
+msgstr ""
+
+#. gUhut
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id721580051706431\n"
+"help.text"
+msgid "<emph>inputstr</emph>: The string to be checked. If empty, the method returns <literal>False</literal>."
+msgstr ""
+
+#. HYBp5
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id281580052400960\n"
+"help.text"
+msgid "Returns <literal>True</literal> if the whole input string matches a given regular expression."
+msgstr ""
+
+#. ZuBxC
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id161580052454770\n"
+"help.text"
+msgid "<emph>inputstr</emph>: The string to be checked. If empty, the method returns <literal>False</literal>."
+msgstr ""
+
+#. mi4mi
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id581580052467973\n"
+"help.text"
+msgid "<emph>regex</emph>: The regular expression. If empty, the method returns <literal>False</literal>."
+msgstr ""
+
+#. vmqZM
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id621580052654341\n"
+"help.text"
+msgid "<emph>casesensitive</emph>: The search can be case sensitive or not (Default = <literal>False</literal>)."
+msgstr ""
+
+#. iZSEw
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id1001589460240467\n"
+"help.text"
+msgid "Returns <literal>True</literal> if the input string is a valid Calc sheet name."
+msgstr ""
+
+#. xPFLm
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id671589460240552\n"
+"help.text"
+msgid "<emph>inputstr</emph>: The string to be checked. If empty, the method returns <literal>False</literal>."
+msgstr ""
+
+#. uE5gz
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id551612442002823\n"
+"help.text"
+msgid "A sheet name must not contain the characters [ ] * ? : / \\ or the character ' (apostrophe) as first or last character."
+msgstr ""
+
+#. ALdgg
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id371580293093655\n"
+"help.text"
+msgid "Returns <literal>True</literal> if the first character of every word is in uppercase and the other characters are in lowercase."
+msgstr ""
+
+#. uVF9U
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id471580293142283\n"
+"help.text"
+msgid "<emph>inputstr</emph>: The string to be checked. If empty, the method returns <literal>False</literal>."
+msgstr ""
+
+#. 7Ryzp
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id801580128672004\n"
+"help.text"
+msgid "Returns <literal>True</literal> if all characters in the string are in uppercase. Non alphabetic characters are ignored."
+msgstr ""
+
+#. HFDCW
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id391580128736809\n"
+"help.text"
+msgid "<emph>inputstr</emph>: The string to be checked. If empty, the method returns <literal>False</literal>."
+msgstr ""
+
+#. BTRpG
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id531580132067813\n"
+"help.text"
+msgid "Returns <literal>True</literal> if the string is a valid absolute URL (Uniform Resource Locator) address. Only the http, https and ftp protocols are supported."
+msgstr ""
+
+#. HrFqG
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id321580132113593\n"
+"help.text"
+msgid "<emph>inputstr</emph>: The string to be checked. If empty, the method returns <literal>False</literal>."
+msgstr ""
+
+#. wBAqG
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id41580132491698\n"
+"help.text"
+msgid "Returns <literal>True</literal> if all characters in the string are whitespaces"
+msgstr ""
+
+#. JDD85
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id801580132535511\n"
+"help.text"
+msgid "<emph>inputstr</emph>: The string to be checked. If empty, the method returns <literal>False</literal>."
+msgstr ""
+
+#. 7EBbA
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id891580133307100\n"
+"help.text"
+msgid "Returns the input string center-justified."
+msgstr ""
+
+#. TLmnE
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id571612380829021\n"
+"help.text"
+msgid "The leading and trailing white spaces are stripped and the remaining characters are completed left and right up to a specified total <literal>length</literal> with the character <literal>padding</literal>."
+msgstr ""
+
+#. 4uuQT
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id911580133391827\n"
+"help.text"
+msgid "<emph>inputstr</emph>: The string to be center-justified. If empty, the method returns an empty string."
+msgstr ""
+
+#. jHJNT
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id671580133694946\n"
+"help.text"
+msgid "<emph>length</emph>: The length of the resulting string (default = the length of the input string)."
+msgstr ""
+
+#. A3qof
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id511612381090109\n"
+"help.text"
+msgid "If the specified length is shorter than the center-justified input string, then the returned string is truncated."
+msgstr ""
+
+#. fys4j
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id101580133705268\n"
+"help.text"
+msgid "<emph>padding</emph>: The single character to be used as padding (default = the Ascii space \" \")."
+msgstr ""
+
+#. 4zk3p
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id911580135466348\n"
+"help.text"
+msgid "Returns the input string left-justified."
+msgstr ""
+
+#. 9KeCE
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id431612381917641\n"
+"help.text"
+msgid "The leading white spaces are stripped and the remaining characters are completed to the right up to a specified total <literal>length</literal> with the character <literal>padding</literal>."
+msgstr ""
+
+#. UQXSM
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id281580135523448\n"
+"help.text"
+msgid "<emph>inputstr</emph>: The string to be left-justified. If empty, the method returns an empty string."
+msgstr ""
+
+#. EAwAa
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id431580135534910\n"
+"help.text"
+msgid "<emph>length</emph>: The length of the resulting string (default = the length of the input string)."
+msgstr ""
+
+#. ntKXx
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id161612381664182\n"
+"help.text"
+msgid "If the specified length is shorter than the left-justified input string, then the returned string is truncated."
+msgstr ""
+
+#. wBnmv
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id221580135568475\n"
+"help.text"
+msgid "<emph>padding</emph>: The single character to be used as padding (default = the Ascii space \" \")."
+msgstr ""
+
+#. TTokb
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id821580136091225\n"
+"help.text"
+msgid "Returns the input string right-justified."
+msgstr ""
+
+#. 4fG7c
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id771612382000293\n"
+"help.text"
+msgid "The leading white spaces are stripped and the remaining characters are completed to the left up to a specified total <literal>length</literal> with the character <literal>padding</literal>."
+msgstr ""
+
+#. KxskT
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id201580136154170\n"
+"help.text"
+msgid "<emph>inputstr</emph>: The string to be right-justified. If empty, the method returns an empty string."
+msgstr ""
+
+#. FboQc
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id71580136164632\n"
+"help.text"
+msgid "<emph>length</emph>: The length of the resulting string (default = the length of the input string)."
+msgstr ""
+
+#. dshKE
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id191612381732163\n"
+"help.text"
+msgid "If the specified length is shorter than the right-justified input string, then the returned string is truncated."
+msgstr ""
+
+#. LtcVG
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id751580136200680\n"
+"help.text"
+msgid "<emph>padding</emph>: The single character to be used as padding (default = the Ascii space \" \")."
+msgstr ""
+
+#. Wn55u
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id251580136888958\n"
+"help.text"
+msgid "Returns the input string enclosed in single or double quotes. Existing quotes are left unchanged, including leading and/or trailing quotes."
+msgstr ""
+
+#. YBvt4
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id811580136944674\n"
+"help.text"
+msgid "<emph>inputstr</emph>: The string to quote."
+msgstr ""
+
+#. GynWV
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id581599129397412\n"
+"help.text"
+msgid "<emph>quotechar</emph>: Either the single (') or double (\") quote (default)."
+msgstr ""
+
+#. fY3PC
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id911612382537087\n"
+"help.text"
+msgid "This method can be useful while preparing a string field to be stored in a csv-like file, which requires that text values be enclosed with single or double quotes."
+msgstr ""
+
+#. 8Rr4M
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id951580139124650\n"
+"help.text"
+msgid "Replaces all occurrences of the characters specified in the <literal>Before</literal> parameter by the corresponding characters specified in <literal>After</literal>."
+msgstr ""
+
+#. 5hn2y
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id1001612384040018\n"
+"help.text"
+msgid "If the length of <literal>Before</literal> is greater than the length of <literal>After</literal>, the residual characters in <literal>Before</literal> are replaced by the last character in <literal>After</literal>."
+msgstr ""
+
+#. DD2CL
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id11580139160633\n"
+"help.text"
+msgid "<emph>inputstr</emph>: The input string on which replacements will occur."
+msgstr ""
+
+#. DvaRE
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id111580139169795\n"
+"help.text"
+msgid "<emph>before</emph>: A string with the characters that will be searched in the input string for replacement."
+msgstr ""
+
+#. N46b3
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id851580139182113\n"
+"help.text"
+msgid "<emph>after</emph>: A string with the new characters that will replace those defined in <literal>before</literal>."
+msgstr ""
+
+#. CDuCC
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"bas_id921580139218457\n"
+"help.text"
+msgid "' Replaces accented characters"
+msgstr ""
+
+#. 5ww5A
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id151612442904499\n"
+"help.text"
+msgid "The <literal>SF_String</literal> service provides useful public constants for the Latin character sets, as shown in the example below:"
+msgstr ""
+
+#. 9SPjv
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id671580140272818\n"
+"help.text"
+msgid "Replaces all occurrences of a given regular expression by a new string."
+msgstr ""
+
+#. ujCyu
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id471580140311626\n"
+"help.text"
+msgid "<emph>inputstr</emph>: The input string on which replacements will occur."
+msgstr ""
+
+#. o2DS2
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id651580140322666\n"
+"help.text"
+msgid "<emph>regex</emph>: The regular expression."
+msgstr ""
+
+#. itEEd
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id891580140334754\n"
+"help.text"
+msgid "<emph>newstr</emph>: The replacing string."
+msgstr ""
+
+#. gJRAr
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id581580140345221\n"
+"help.text"
+msgid "<emph>casesensitive</emph>: The search can be case sensitive or not (Default = <literal>False</literal>)."
+msgstr ""
+
+#. ykPVR
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"bas_id961612384647003\n"
+"help.text"
+msgid "' \"Lxxxx xxxxx xxxxx xxx xxxx, xxxxxxxxxxx xxxxxxxxxx xxxx.\" (each lowercase letter is replaced by \"x\")"
+msgstr ""
+
+#. rkMsv
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"bas_id751612384623936\n"
+"help.text"
+msgid "' \"x x x x x, x x x.\" (each word is replaced by \"x\")"
+msgstr ""
+
+#. 2Gd5C
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id51580146471894\n"
+"help.text"
+msgid "Replaces in a string some or all occurrences of an array of strings by an array of new strings."
+msgstr ""
+
+#. SDpot
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id831580146504326\n"
+"help.text"
+msgid "<emph>inputstr</emph>: The input string on which replacements will occur."
+msgstr ""
+
+#. UfuEm
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id411580146514927\n"
+"help.text"
+msgid "<emph>oldstr</emph>: A single string or an array of strings. Zero-length strings are ignored."
+msgstr ""
+
+#. Ukr3F
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id591580146532966\n"
+"help.text"
+msgid "<emph>newstr</emph>: The replacing string or the array of replacing strings."
+msgstr ""
+
+#. 7BQ7F
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id611612384873347\n"
+"help.text"
+msgid "If <literal>oldstr</literal> is an array, each occurrence of any of the items in <literal>oldstr</literal> is replaced by <literal>newstr</literal>."
+msgstr ""
+
+#. AfRz6
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id611612384880820\n"
+"help.text"
+msgid "If <literal>oldstr</literal> and <literal>newstr</literal> are arrays, replacements occur one by one up to the <literal>UBound(newstr)</literal>."
+msgstr ""
+
+#. E39aH
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id241612385058264\n"
+"help.text"
+msgid "If <literal>oldstr</literal> has more entries than <literal>newstr</literal>, then the residual elements in <literal>oldstr</literal> are replaced by the last element in <literal>newstr</literal>."
+msgstr ""
+
+#. MkqW5
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id701580146547619\n"
+"help.text"
+msgid "<emph>occurrences</emph>: The maximum number of replacements. The default value is 0, meaning that all occurrences will be replaced."
+msgstr ""
+
+#. QX33p
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id741612385380533\n"
+"help.text"
+msgid "When <literal>oldstr</literal> is an array, the <literal>occurrence</literal> parameter is computed separately for each item in the array."
+msgstr ""
+
+#. aWrvA
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id301580146556599\n"
+"help.text"
+msgid "<emph>casesensitive</emph>: The search can be case sensitive or not (Default = <literal>False</literal>)."
+msgstr ""
+
+#. eygyi
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id901580147558931\n"
+"help.text"
+msgid "Returns a string with a readable representation of the argument, truncated at a given length. This is useful mainly for debugging or logging purposes."
+msgstr ""
+
+#. cU3Ev
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id11612386054691\n"
+"help.text"
+msgid "If the <literal>anyvalue</literal> parameter is an object, it will be enclosed with square brackets \"[\" and \"]\"."
+msgstr ""
+
+#. gVB32
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id491612386081802\n"
+"help.text"
+msgid "In strings, tabs and line breaks are replaced by \\t, \\n or \\r."
+msgstr ""
+
+#. SfUGD
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id921612386089103\n"
+"help.text"
+msgid "If the final length exceeds the <literal>maxlength</literal> parameter, the latter part of the string is replaced by \" ... (N)\" where N is the total length of the original string before truncation."
+msgstr ""
+
+#. zLfNR
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id91580147593626\n"
+"help.text"
+msgid "<emph>anyvalue</emph>: The input value to be represented. It can be any value, such as a string, an array, a Basic object, a UNO object, etc."
+msgstr ""
+
+#. hdDFi
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id811580147609322\n"
+"help.text"
+msgid "<emph>maxlength</emph>: The maximum length of the resulting string. The default value is 0, meaning there is no limit to the length of the resulting representation."
+msgstr ""
+
+#. Ape7i
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id641612386659292\n"
+"help.text"
+msgid "Note that the representation of data types such as Arrays and <literal>ScriptForge.Dictionary</literal> object instances include both the data type and their values:"
+msgstr ""
+
+#. ZFFAD
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"bas_id971612386906463\n"
+"help.text"
+msgid "' An example with a Basic built-in Array"
+msgstr ""
+
+#. GEZzM
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"bas_id401612386876329\n"
+"help.text"
+msgid "' An example with a ScriptForge Array"
+msgstr ""
+
+#. mZ3ar
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"bas_id551612386931680\n"
+"help.text"
+msgid "' An example with a ScriptForge Dictionary"
+msgstr ""
+
+#. vvADG
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id411580312925741\n"
+"help.text"
+msgid "Returns the input string in reversed order."
+msgstr ""
+
+#. EEyG6
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id141612387177873\n"
+"help.text"
+msgid "This method is equivalent to the built-in <link href=\"text/sbasic/shared/03120412.xhp\" name=\"StrReverse function\"><literal>StrReverse</literal> Basic function</link>."
+msgstr ""
+
+#. ZEarP
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id961612387463144\n"
+"help.text"
+msgid "To use the <literal>StrReverse</literal> function, the statement <literal>Option VBASupport 1</literal> must be present in the module."
+msgstr ""
+
+#. pSyL6
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id241580312964497\n"
+"help.text"
+msgid "<emph>inputstr</emph>: The string to be reversed."
+msgstr ""
+
+#. KBFDk
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id721580210762286\n"
+"help.text"
+msgid "Returns a zero-based array of strings with the lines in the input string. Each item in the array is obtained by splitting the input string at newline characters."
+msgstr ""
+
+#. nuUF6
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id481580210806878\n"
+"help.text"
+msgid "<emph>inputstr</emph>: The string to be split."
+msgstr ""
+
+#. FEFUw
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id231580210820309\n"
+"help.text"
+msgid "<emph>keepbreaks</emph>: When <literal>True</literal>, line breaks are preserved in the output array (default = <literal>False</literal>)."
+msgstr ""
+
+#. HAG8Q
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id471580211762739\n"
+"help.text"
+msgid "Splits a string into an array of elements using a specified delimiter."
+msgstr ""
+
+#. zsADB
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id281612388034501\n"
+"help.text"
+msgid "If a quoted substring contains a delimiter, it is ignored. This is useful when parsing CSV-like records that contain quoted strings."
+msgstr ""
+
+#. JKAaG
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id881580211809490\n"
+"help.text"
+msgid "<emph>inputstr</emph>: The string to be split."
+msgstr ""
+
+#. zFjwe
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id811580211821162\n"
+"help.text"
+msgid "<emph>delimiter</emph>: A string of one or more characters that will be used as delimiter. The default delimiter is the Ascii space \" \" character."
+msgstr ""
+
+#. 3rGRu
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id181580211833778\n"
+"help.text"
+msgid "<emph>occurrences</emph>: The maximum number of substrings to return. The default value is 0, meaning that there is no limit to the number of returned strings."
+msgstr ""
+
+#. W2og7
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id421599123777334\n"
+"help.text"
+msgid "<emph>quotechar</emph>: Either the single (') or double (\") quote."
+msgstr ""
+
+#. DiYMJ
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id661627251379676\n"
+"help.text"
+msgid "Beware of the differences between Basic and Python when representing strings. For example, in Basic two \"\" characters inside a string are interpreted as a single \" character. In Python, strings enclosed with single quotes can contain \" characters without having to double them."
+msgstr ""
+
+#. 6Q2tJ
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id771580212837884\n"
+"help.text"
+msgid "Returns <literal>True</literal> if the first characters of a string are identical to a given substring."
+msgstr ""
+
+#. BYx4G
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id781612393174350\n"
+"help.text"
+msgid "This method returns <literal>False</literal> if either the input string or the substring have a length = 0 or when the substring is longer than the input string."
+msgstr ""
+
+#. jrzxu
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id271580212876135\n"
+"help.text"
+msgid "<emph>inputstr</emph>: The string to be tested."
+msgstr ""
+
+#. tE9WD
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id571580212889462\n"
+"help.text"
+msgid "<emph>substring</emph>: The substring to be searched at the start of <literal>inputstr</literal>."
+msgstr ""
+
+#. ZeQP4
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id811580212900799\n"
+"help.text"
+msgid "<emph>casesensitive</emph>: The search can be case sensitive or not (Default = <literal>False</literal>)."
+msgstr ""
+
+#. DGgBx
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id911580295999690\n"
+"help.text"
+msgid "Returns the input string without its leading and trailing whitespaces."
+msgstr ""
+
+#. BESEu
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id541580296044377\n"
+"help.text"
+msgid "<emph>inputstr</emph>: The string to trim."
+msgstr ""
+
+#. 9t9vX
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id61580483096936\n"
+"help.text"
+msgid "Converts any escaped sequence (\\\\, \\n, \\r, \\t) in the input string to their corresponding Ascii character."
+msgstr ""
+
+#. mzTsG
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id971580483124743\n"
+"help.text"
+msgid "<emph>inputstr</emph>: The string to be converted."
+msgstr ""
+
+#. BoYHV
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id831580213634029\n"
+"help.text"
+msgid "Removes the single or double quotes enclosing the input string."
+msgstr ""
+
+#. Ae8c5
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id811612393585600\n"
+"help.text"
+msgid "This is useful when parsing CSV-like records that contain quoted strings."
+msgstr ""
+
+#. BhVvp
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id761580213677493\n"
+"help.text"
+msgid "<emph>inputstr</emph>: The string to unquote."
+msgstr ""
+
+#. gRUHA
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id211599129509890\n"
+"help.text"
+msgid "<emph>quotechar</emph>: Either the single (') or double (\") quote (default)."
+msgstr ""
+
+#. nGq4Q
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"bas_id371580213702598\n"
+"help.text"
+msgid "' s = \"Some text\" (without enclosing quotes)"
+msgstr ""
+
+#. Fp8ip
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"bas_id51580213693694\n"
+"help.text"
+msgid "' The string below does not have enclosing quotes, so it remains unchanged"
+msgstr ""
+
+#. A4Eki
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"bas_id961612393917830\n"
+"help.text"
+msgid "' s = \"Some text\" (unchanged)"
+msgstr ""
+
+#. ULtxx
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"bas_id461612394182689\n"
+"help.text"
+msgid "' Quotes inside the string are not removed"
+msgstr ""
+
+#. 8w4ia
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"bas_id961612394171208\n"
+"help.text"
+msgid "' s = \"The \"\"true\"\" meaning\" (unchanged)"
+msgstr ""
+
+#. JGhWK
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id871585834468102\n"
+"help.text"
+msgid "Converts the input string into an array of substrings so that each item in the array has at most a given number of characters."
+msgstr ""
+
+#. 4G9FU
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id21612394465120\n"
+"help.text"
+msgid "In practice, this method returns a zero-based array of output lines, without newlines at the end, except for the pre-existing line-breaks."
+msgstr ""
+
+#. qgd6X
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id601612395193333\n"
+"help.text"
+msgid "Tabs are expanded using the same procedure performed by the <link href=\"text/sbasic/shared/03/sf_string.xhp#ExpandTabs\" name=\"ExpandTabs method\">ExpandTabs</link> method."
+msgstr ""
+
+#. kTwEG
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id641612394826616\n"
+"help.text"
+msgid "Symbolic line breaks are replaced by their equivalent Ascii characters."
+msgstr ""
+
+#. y7VvP
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id361612394859733\n"
+"help.text"
+msgid "If the wrapped output has no content, the returned array is empty."
+msgstr ""
+
+#. SNRzH
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id251585834468498\n"
+"help.text"
+msgid "<emph>inputstr</emph>: The string to wrap."
+msgstr ""
+
+#. MiptC
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id351585834773177\n"
+"help.text"
+msgid "<emph>width</emph>: The maximum number of characters in each line (Default = 70)."
+msgstr ""
+
+#. epG6z
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id741585834874500\n"
+"help.text"
+msgid "<emph>tabsize</emph>: Before wrapping the text, the existing TAB <literal>Chr(9)</literal> characters are replaced with spaces. The argument <literal>tabsize</literal> defines the TAB stops at TabSize + 1, 2 * TabSize + 1 , ... N * TabSize + 1 (Default = 8)."
+msgstr ""
+
+#. HjZDB
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"tit\n"
+"help.text"
+msgid "ScriptForge.TextStream service"
+msgstr ""
+
+#. cEA5U
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"bm_id351585330787295\n"
+"help.text"
+msgid "<variable id=\"TextStreamService\"><link href=\"text/sbasic/shared/03/sf_textstream.xhp\" name=\"TextStream service\"><literal>ScriptForge</literal>.<literal>TextStream</literal> service</link></variable>"
+msgstr ""
+
+#. nBJsE
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id511585330787205\n"
+"help.text"
+msgid "The <literal>TextStream</literal> service is used to sequentially read from and write to files opened or created using the <literal>ScriptForge.FileSystem</literal> service."
+msgstr ""
+
+#. TeRTa
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id41613596903894\n"
+"help.text"
+msgid "The methods <literal>OpenTextFile</literal> and <literal>CreateTextFile</literal> from the <literal>FileSystem</literal> service return an instance of the <literal>TextStream</literal> service."
+msgstr ""
+
+#. MVFWC
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id161585330787262\n"
+"help.text"
+msgid "Line delimiters may be specified by the user. In input operations CR, LF or CR+LF are supported. In output operations, the default line delimiter is the one used by the operating system."
+msgstr ""
+
+#. GDkir
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id831613598137669\n"
+"help.text"
+msgid "The line delimiter for the operating system where the macro is being executed can be accessed using the <literal>SF_String.sfNEWLINE</literal> property."
+msgstr ""
+
+#. SvXzF
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id851613597445432\n"
+"help.text"
+msgid "All operations needed to read from or write to a file (open, read/write and close) are presumed to happen during the same macro run."
+msgstr ""
+
+#. dc5KN
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"hd_id83158533078741\n"
+"help.text"
+msgid "Service invocation"
+msgstr ""
+
+#. AuQX2
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id351613598192725\n"
+"help.text"
+msgid "The examples below in Basic and Python use the <literal>OpenTextFile</literal> method to create an instance of the <literal>TextStream</literal> Service."
+msgstr ""
+
+#. UUudg
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id371585330787197\n"
+"help.text"
+msgid "The file must be closed with the <literal>CloseFile</literal> method after all read or write operations have been executed:"
+msgstr ""
+
+#. zNveN
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id891582733781994\n"
+"help.text"
+msgid "Optionally, the resources used by the <literal>TextStream</literal> instance can be released using the <literal>Dispose</literal> method:"
+msgstr ""
+
+#. nsGCZ
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id121612917368946\n"
+"help.text"
+msgid "The methods in the <literal>TextStream</literal> service are mostly based on the <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1io_1_1XTextInputStream.html\" name=\"XTextInputStream API\"><literal>XTextInputStream</literal></link> and <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1io_1_1XTextOutputStream.html\" name=\"XTextOutputStream API\"><literal>XTextOutputStream</literal></link> UNO interfaces."
+msgstr ""
+
+#. JAmgD
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"hd_id941585330787948\n"
+"help.text"
+msgid "Properties"
+msgstr ""
+
+#. aN9zM
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id631585330787267\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. vwGC5
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id401585330787370\n"
+"help.text"
+msgid "Readonly"
+msgstr ""
+
+#. GpL38
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id581585330787700\n"
+"help.text"
+msgid "Type"
+msgstr ""
+
+#. 6FDuM
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id551585330787608\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. ECkTm
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id181585330787752\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. YFkaY
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id901585330787680\n"
+"help.text"
+msgid "Used in read mode. A <literal>True</literal> value indicates that the end of the file has been reached. A test using this property should precede calls to the <literal>ReadLine</literal> method."
+msgstr ""
+
+#. EFEnA
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id561585330787568\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. cVCoJ
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id741585330787777\n"
+"help.text"
+msgid "The character set to be used. The default encoding is \"UTF-8\"."
+msgstr ""
+
+#. p5s3X
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id641585330787207\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. JjEqX
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id281585330787614\n"
+"help.text"
+msgid "Returns the name of the current file either in URL format or in the native operating system's format, depending on the current value of the <literal>FileNaming</literal> property of the <literal>FileSystem</literal> service."
+msgstr ""
+
+#. goEnw
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id111585330787410\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. MZS6Z
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id861585330787417\n"
+"help.text"
+msgid "Indicates the input/output mode. Possible values are \"READ\", \"WRITE\" or \"APPEND\"."
+msgstr ""
+
+#. 7nTb9
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id87158533078795\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. j45gC
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id561585330787741\n"
+"help.text"
+msgid "Returns the number of lines read or written so far."
+msgstr ""
+
+#. CLAvQ
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id531585330787157\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. rdA5M
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id691585330787279\n"
+"help.text"
+msgid "Sets or returns the current delimiter to be inserted between two successive written lines. The default value is the native line delimiter in the current operating system."
+msgstr ""
+
+#. EuWCP
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id141613001281573\n"
+"help.text"
+msgid "To learn more about the names of character sets, visit <link href=\"https://www.iana.org/assignments/character-sets/character-sets.xhtml\" name=\"Character Sets\">IANA's Character Set</link> page. Be aware that %PRODUCTNAME does not implement all existing character sets."
+msgstr ""
+
+#. hKJkD
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id891611613601554\n"
+"help.text"
+msgid "List of Methods in the TextStream Service"
+msgstr ""
+
+#. DBBKM
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id421585330787675\n"
+"help.text"
+msgid "Closes the current input or output stream and empties the output buffer if relevant. Returns <literal>True</literal> if the file was successfully closed."
+msgstr ""
+
+#. MCW3q
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id65158533078799\n"
+"help.text"
+msgid "Returns all the remaining lines in the text stream as a single string. Line breaks are not removed."
+msgstr ""
+
+#. Vr34D
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id71613600347125\n"
+"help.text"
+msgid "The resulting string can be split in lines either by using the <literal>Split</literal> built-in Basic function if the line delimiter is known, or with the <literal>SF_String.SplitLines</literal> method."
+msgstr ""
+
+#. VRLGn
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id91585330787373\n"
+"help.text"
+msgid "For large files, using the <literal>ReadAll</literal> method wastes memory resources. In such cases it is recommended to read the file line by line using the <literal>ReadLine</literal> method."
+msgstr ""
+
+#. BuBVA
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id921613595637851\n"
+"help.text"
+msgid "Consider the text file \"Students.txt\" with the following contents (a name in each line):"
+msgstr ""
+
+#. hk7q4
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id391613596019750\n"
+"help.text"
+msgid "The examples below in Basic and Python use the <literal>ReadAll</literal> and <literal>SplitLines</literal> methods to read the contents of the file into an array of strings:"
+msgstr ""
+
+#. BuRJE
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"bas_id251613595640550\n"
+"help.text"
+msgid "'Loads the FileSystem service"
+msgstr ""
+
+#. L2a3D
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"bas_id181613595641087\n"
+"help.text"
+msgid "'Opens the text file with the names to be read"
+msgstr ""
+
+#. rDCSD
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"bas_id711613595642109\n"
+"help.text"
+msgid "'Reads all the contents in the input file as a single string"
+msgstr ""
+
+#. 6w73J
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"bas_id961613595643093\n"
+"help.text"
+msgid "'Splits the string into an array"
+msgstr ""
+
+#. 7Fq9E
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id871585330787885\n"
+"help.text"
+msgid "Returns the next line in the text stream as a string. Line breaks are removed from the returned string."
+msgstr ""
+
+#. 6iDcF
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id431613600221626\n"
+"help.text"
+msgid "The <literal>AtEndOfStream</literal> test should precede the <literal>ReadLine</literal> method like in the example below."
+msgstr ""
+
+#. GRRkq
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id171585330787774\n"
+"help.text"
+msgid "An error will be raised if the <literal>AtEndOfStream</literal> was reached during the previous <literal>ReadLine</literal> or <literal>SkipLine</literal> method call."
+msgstr ""
+
+#. mAty4
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id11585330787847\n"
+"help.text"
+msgid "Skips the next line in the input stream when reading a <literal>TextStream</literal> file."
+msgstr ""
+
+#. FDMJB
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id441613600704766\n"
+"help.text"
+msgid "This method can result in <literal>AtEndOfStream</literal> being set to <literal>True</literal>."
+msgstr ""
+
+#. D4JVb
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id141585330787657\n"
+"help.text"
+msgid "Writes a specified number of empty lines to the output stream."
+msgstr ""
+
+#. YsBUm
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id291585330787357\n"
+"help.text"
+msgid "<emph>lines</emph>: The number of empty lines to write to the file."
+msgstr ""
+
+#. GCPCC
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id101585330787215\n"
+"help.text"
+msgid "Writes the given string to the output stream as a single line."
+msgstr ""
+
+#. Eska7
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id421613601002074\n"
+"help.text"
+msgid "The character defined in the <literal>NewLine</literal> property is used as the line delimiter."
+msgstr ""
+
+#. LXFPE
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id491585330787650\n"
+"help.text"
+msgid "<emph>line</emph>: The line to write, may be empty."
+msgstr ""
+
+#. PM5Bx
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id821626894480105\n"
+"help.text"
+msgid "The examples below in Basic and Python create a text file in CSV format in which each line contains a value and its square until <literal>lastValue</literal> is reached."
+msgstr ""
+
+#. 39u4o
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"bas_id21613321528612\n"
+"help.text"
+msgid "'Instantiates the FileSystem Service"
+msgstr ""
+
+#. FnTiG
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"bas_id191613321529277\n"
+"help.text"
+msgid "'Creates a text file"
+msgstr ""
+
+#. f5RSB
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"bas_id641613321530181\n"
+"help.text"
+msgid "'Writes the Value and Value squared, separated by \";\""
+msgstr ""
+
+#. FCowk
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"bas_id141613321530960\n"
+"help.text"
+msgid "myFile.WriteLine(\"Value;Value Squared\")"
+msgstr ""
+
+#. m9Mo4
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"bas_id881613321532598\n"
+"help.text"
+msgid "'Closes the file and free resources"
+msgstr ""
+
+#. PCSPY
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"tit\n"
+"help.text"
+msgid "ScriptForge.Timer service"
+msgstr ""
+
+#. cxRDS
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"hd_id731582733781114\n"
+"help.text"
+msgid "<variable id=\"TimerService\"><link href=\"text/sbasic/shared/03/sf_timer.xhp\" name=\"ScriptForge.Timer service\"><literal>ScriptForge</literal>.<literal>Timer</literal> service</link></variable>"
+msgstr ""
+
+#. WyVvH
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"par_id961582733781662\n"
+"help.text"
+msgid "The <literal>Timer</literal> service measures the amount of time it takes to run user scripts."
+msgstr ""
+
+#. qDa8E
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"par_id181582733781323\n"
+"help.text"
+msgid "A <literal>Timer</literal> measures <emph>durations</emph>. It can be:"
+msgstr ""
+
+#. ErpLm
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"par_id711582733781252\n"
+"help.text"
+msgid "Started, to indicate when to start measuring time."
+msgstr ""
+
+#. NAAFg
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"par_id631582733781431\n"
+"help.text"
+msgid "Suspended, to pause measuring running time."
+msgstr ""
+
+#. nt9Qc
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"par_id691582733781498\n"
+"help.text"
+msgid "Resumed, to continue tracking running time after the Timer has been suspended."
+msgstr ""
+
+#. DVCBM
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"par_id31582733781344\n"
+"help.text"
+msgid "Restarted, which will cancel previous measurements and start the <literal>Timer</literal> at zero."
+msgstr ""
+
+#. dm7yA
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"par_id991582733781280\n"
+"help.text"
+msgid "Durations are expressed in seconds with a precision of 3 decimal digits (milliseconds). A duration value of 12.345 means 12 seconds and 345 milliseconds"
+msgstr ""
+
+#. CVhDR
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"hd_id201582733781265\n"
+"help.text"
+msgid "Service invocation"
+msgstr ""
+
+#. fYto9
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"par_id141609955500101\n"
+"help.text"
+msgid "Before using the <literal>Timer</literal> service the <literal>ScriptForge</literal> library needs to be loaded or imported:"
+msgstr ""
+
+#. SCYEX
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"par_id891610734806133\n"
+"help.text"
+msgid "The example below creates a <literal>Timer</literal> object named <literal>myTimer</literal> and starts it immediately."
+msgstr ""
+
+#. WMZog
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"bas_id681582733781715\n"
+"help.text"
+msgid "'The timer starts immediately when the second argument = True, default = False"
+msgstr ""
+
+#. CnZqc
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"par_id891582733781994\n"
+"help.text"
+msgid "It is recommended to free resources after use:"
+msgstr ""
+
+#. 8h3fp
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"hd_id521582733781450\n"
+"help.text"
+msgid "Properties"
+msgstr ""
+
+#. dVncX
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"par_id71582733781260\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. hFnkK
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"par_id711582733781103\n"
+"help.text"
+msgid "Readonly"
+msgstr ""
+
+#. NvqK9
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"par_id76158273378122\n"
+"help.text"
+msgid "Type"
+msgstr ""
+
+#. 7zFYh
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"par_id751582733781926\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. T92or
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"par_id621582733781588\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. 9yDgM
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"par_id731582733781476\n"
+"help.text"
+msgid "The actual running time elapsed since start or between start and stop (does not consider suspended time)"
+msgstr ""
+
+#. ThAaG
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"par_id301582733781498\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. tqpDU
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"par_id401582733781608\n"
+"help.text"
+msgid "<literal>True</literal> when timer is started or suspended"
+msgstr ""
+
+#. pSPgk
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"par_id181582733781551\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. SGyi4
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"par_id161582733781328\n"
+"help.text"
+msgid "<literal>True</literal> when timer is started and suspended"
+msgstr ""
+
+#. qoNpD
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"par_id651582733781874\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. E45MD
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"par_id171582733781456\n"
+"help.text"
+msgid "The actual time elapsed while suspended since start or between start and stop"
+msgstr ""
+
+#. gxF8S
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"par_id141582733781303\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. FeCob
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"par_id411582733781932\n"
+"help.text"
+msgid "The actual time elapsed since start or between start and stop (including suspensions and running time)"
+msgstr ""
+
+#. a63gW
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"par_id9158273378151\n"
+"help.text"
+msgid "Note that the <literal>TotalDuration</literal> property is equivalent to summing the <literal>Duration</literal> and <literal>SuspendDuration</literal> properties."
+msgstr ""
+
+#. Mav4g
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"hd_id141582734141895\n"
+"help.text"
+msgid "Methods"
+msgstr ""
+
+#. P8RQj
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"par_id291582734377752\n"
+"help.text"
+msgid "All methods do not require arguments and return a <literal>Boolean</literal> value."
+msgstr ""
+
+#. onEib
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"par_id311582734894257\n"
+"help.text"
+msgid "If the returned value is <literal>False</literal>, then nothing happened."
+msgstr ""
+
+#. U82Do
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"par_id871582734180676\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. 6oGwx
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"par_id971582734180676\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. ZMfpe
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"par_id911582734180676\n"
+"help.text"
+msgid "Returned value"
+msgstr ""
+
+#. 6DJTP
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"par_id301582734180676\n"
+"help.text"
+msgid "Resumes the <literal>Timer</literal> if it has been suspended"
+msgstr ""
+
+#. ixF7A
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"par_id661582734180676\n"
+"help.text"
+msgid "<literal>False</literal> if the timer is not suspended"
+msgstr ""
+
+#. AAozF
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"par_id821582734649305\n"
+"help.text"
+msgid "Terminates the <literal>Timer</literal> and discards its current property values, restarting as a new clean <literal>Timer</literal>"
+msgstr ""
+
+#. UtCTT
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"par_id761582734649305\n"
+"help.text"
+msgid "<literal>False</literal> if the timer is inactive"
+msgstr ""
+
+#. AkgAy
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"par_id641582734802443\n"
+"help.text"
+msgid "Starts a new clean timer"
+msgstr ""
+
+#. B4gTh
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"par_id921582734802443\n"
+"help.text"
+msgid "<literal>False</literal> if the timer is already started"
+msgstr ""
+
+#. D7CoH
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"par_id81582734905507\n"
+"help.text"
+msgid "Suspends a running timer"
+msgstr ""
+
+#. YbeSJ
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"par_id661582734905507\n"
+"help.text"
+msgid "<literal>False</literal> if the timer is not started or already suspended"
+msgstr ""
+
+#. sgXra
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"par_id861582734996722\n"
+"help.text"
+msgid "Stops a running timer"
+msgstr ""
+
+#. WkCCC
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"par_id381582734996722\n"
+"help.text"
+msgid "<literal>False</literal> if the timer is neither started nor suspended"
+msgstr ""
+
+#. DuD3h
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"par_id731626871820490\n"
+"help.text"
+msgid "The examples below in Basic and Python illustrate the use of the methods and properties in the <literal>Timer</literal> service."
+msgstr ""
+
+#. UgBnC
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"bas_id141582735926821\n"
+"help.text"
+msgid "'The time elapsed while the Dialog box is open will be counted as suspended time"
+msgstr ""
+
+#. 4jHcj
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"bas_id901582735961725\n"
+"help.text"
+msgid "'The time elapsed while the Dialog box is open will be counted as running time"
+msgstr ""
+
+#. 7QhZU
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"bas_id941610739926687\n"
+"help.text"
+msgid "'Shows the final time measurements"
+msgstr ""
+
+#. J6XGB
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"par_id281610740093006\n"
+"help.text"
+msgid "If you call the <literal>Terminate</literal> method, subsequent calls for the <literal>Continue</literal> method will not resume time measurement. Similarly, after a Timer has been terminated, calling the <literal>Start</literal> method will restart it as if it were a clean new Timer."
+msgstr ""
+
+#. AqGfb
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"par_id391626872019832\n"
+"help.text"
+msgid "Be aware that the <literal>Wait</literal> function in BASIC takes in a duration argument in milliseconds whereas the <literal>sleep</literal> function in Python uses seconds in its argument."
+msgstr ""
+
+#. bHEyr
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"hd_id431610989623086\n"
+"help.text"
+msgid "Working with Multiple Timers"
+msgstr ""
+
+#. dr779
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"par_id741610989639201\n"
+"help.text"
+msgid "It is possible to instantiate multiple <literal>Timer</literal> services in parallel, which gives flexibility in measuring time in different parts of the code."
+msgstr ""
+
+#. ueLgB
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"par_id921610989722908\n"
+"help.text"
+msgid "The following example illustrates how to create two <literal>Timer</literal> objects and start them separately."
+msgstr ""
+
+#. PtA4E
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"bas_id481610989853679\n"
+"help.text"
+msgid "'Starts myTimerA"
+msgstr ""
+
+#. VUdGW
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"bas_id331610989849501\n"
+"help.text"
+msgid "'Starts myTimerB"
+msgstr ""
+
+#. t98Fv
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"bas_id931610989837747\n"
+"help.text"
+msgid "'Terminate both timers"
+msgstr ""
+
+#. dphFv
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"tit\n"
+"help.text"
+msgid "ScriptForge.UI service"
+msgstr ""
+
+#. QWA6E
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"hd_id371587913266310\n"
+"help.text"
+msgid "<variable id=\"UIService\"><link href=\"text/sbasic/shared/03/sf_ui.xhp\" name=\"ScriptForge.UI service\"><literal>ScriptForge</literal>.<literal>UI</literal> service</link></variable>"
+msgstr ""
+
+#. cAtxQ
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id31587913266153\n"
+"help.text"
+msgid "The UI (User Interface) service simplifies the identification and the manipulation of the different windows composing the whole %PRODUCTNAME application:"
+msgstr ""
+
+#. nTqj5
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id591587913266547\n"
+"help.text"
+msgid "Windows selection"
+msgstr ""
+
+#. 45jFA
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id511587913266292\n"
+"help.text"
+msgid "Windows moving and resizing"
+msgstr ""
+
+#. UKRyn
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id51587913266596\n"
+"help.text"
+msgid "Statusbar settings"
+msgstr ""
+
+#. oj2kC
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id401599404339702\n"
+"help.text"
+msgid "Display of a floating progress bar"
+msgstr ""
+
+#. iE5hR
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id761587913266388\n"
+"help.text"
+msgid "Creation of new windows"
+msgstr ""
+
+#. Dxuyy
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id591587913266489\n"
+"help.text"
+msgid "Access to the underlying \"documents\""
+msgstr ""
+
+#. W5BL2
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id181620312953395\n"
+"help.text"
+msgid "The UI service is the starting point to open, create or access to the content of new or existing documents from a user script."
+msgstr ""
+
+#. ERvRF
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"hd_id881587913266307\n"
+"help.text"
+msgid "Definitions"
+msgstr ""
+
+#. L8Ate
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id741587913266919\n"
+"help.text"
+msgid "A window can be designated using various ways:"
+msgstr ""
+
+#. Bhs9h
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id291587913946648\n"
+"help.text"
+msgid "a full path and file name"
+msgstr ""
+
+#. CK62z
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id991587914045862\n"
+"help.text"
+msgid "the last component of the full file name or even only the last component without its suffix"
+msgstr ""
+
+#. 8qLrG
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id541587914079744\n"
+"help.text"
+msgid "the title of the window"
+msgstr ""
+
+#. rdSGt
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id191587914134221\n"
+"help.text"
+msgid "for new documents, something like \"Untitled 1\""
+msgstr ""
+
+#. GrAxe
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id911587914185746\n"
+"help.text"
+msgid "one of the special windows \"<literal>BASICIDE</literal>\" and \"<literal>WELCOMESCREEN</literal>\""
+msgstr ""
+
+#. n5ZLz
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id181587914255236\n"
+"help.text"
+msgid "The window name is case-sensitive."
+msgstr ""
+
+#. CC5D5
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"hd_id541588520711430\n"
+"help.text"
+msgid "Document object"
+msgstr ""
+
+#. w8QcA
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id841588521238711\n"
+"help.text"
+msgid "The methods <literal>CreateDocument</literal>, <literal>CreateBaseDocument</literal>, <literal>GetDocument</literal>, <literal>OpenBaseDocument</literal> and <literal>OpenDocument</literal>, described below, generate document objects. When a window contains a document, an instance of the <literal>Document</literal> class represents that document. A counterexample the Basic IDE is not a document but is a window in our terminology. Additionally a document has a type: <literal>Calc</literal>, <literal>Impress</literal>, <literal>Writer</literal>, ..."
+msgstr ""
+
+#. CbJ8H
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id331588521254916\n"
+"help.text"
+msgid "The specific properties and methods applicable on documents are implemented in a document class."
+msgstr ""
+
+#. CEisb
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id971588521292976\n"
+"help.text"
+msgid "The implementation of the document objects class is done in the <literal>SFDocuments</literal> associated library. See its \"<literal>Document</literal>\" service."
+msgstr ""
+
+#. 8NGPA
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"hd_id91587913266988\n"
+"help.text"
+msgid "Service invocation"
+msgstr ""
+
+#. WhLKN
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id141609955500101\n"
+"help.text"
+msgid "Before using the <literal>UI</literal> service the <literal>ScriptForge</literal> library needs to be loaded or imported:"
+msgstr ""
+
+#. 2tFG6
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"hd_id841587913266618\n"
+"help.text"
+msgid "Properties"
+msgstr ""
+
+#. m8i6L
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id521587913266568\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. 48SHW
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id421587913266368\n"
+"help.text"
+msgid "ReadOnly"
+msgstr ""
+
+#. GpADs
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id631587914939732\n"
+"help.text"
+msgid "Type"
+msgstr ""
+
+#. nB9z5
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id951587913266220\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. c5EiC
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id651587913266754\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. vQ8TT
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id351587913266349\n"
+"help.text"
+msgid "a valid and unique <literal>WindowName</literal> for the currently active window. When the window cannot be identified, a zero-length string is returned."
+msgstr ""
+
+#. DiCRC
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id658517913266754\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. Bjyuv
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id153587913266349\n"
+"help.text"
+msgid "The list of the currently open documents. Special windows are ignored. This list consists of a zero-based one dimensional array either of filenames (in SF_FileSystem.FileNaming notation) or of window titles for unsaved documents."
+msgstr ""
+
+#. 5oGpF
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id651587913266945\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. 2RdP5
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id351587913266211\n"
+"help.text"
+msgid "Returns the height of the active window in pixels."
+msgstr ""
+
+#. AM4nR
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id651587913266645\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. MmDG7
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id351587913266036\n"
+"help.text"
+msgid "Returns the width of the active window in pixels."
+msgstr ""
+
+#. uZMBs
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id651587913266312\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. 9AKCg
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id351587913266296\n"
+"help.text"
+msgid "Returns the X coordinate of the active window, which is the distance to the left edge of the screen in pixels."
+msgstr ""
+
+#. aBiGF
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id651587913266670\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. 3DBVb
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id351587913266216\n"
+"help.text"
+msgid "Returns the Y coordinate of the active window, which is the distance to the top edge of the screen in pixels. This value does not consider window decorations added by your operating system, so even when the window is maximized this value may not be zero."
+msgstr ""
+
+#. BH9YJ
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"hd_id511620762163390\n"
+"help.text"
+msgid "Constants"
+msgstr ""
+
+#. ziD2D
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id761620761856238\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. eBD6E
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id591620761856238\n"
+"help.text"
+msgid "Value"
+msgstr ""
+
+#. 2DU4R
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id711620761856238\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. adCUF
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id341620761856238\n"
+"help.text"
+msgid "Macros are always executed"
+msgstr ""
+
+#. 7hEDg
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id101620761893011\n"
+"help.text"
+msgid "Macros are never executed"
+msgstr ""
+
+#. 6Jgt7
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id11620761899780\n"
+"help.text"
+msgid "Macro execution depends on user settings"
+msgstr ""
+
+#. BTUQ4
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id311620312548992\n"
+"help.text"
+msgid "The examples below show a <literal>MsgBox</literal> with the names of all currently open documents."
+msgstr ""
+
+#. DfpBz
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id881608131596153\n"
+"help.text"
+msgid "List of Methods in the UI Service"
+msgstr ""
+
+#. 4fc2p
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id431620322170443\n"
+"help.text"
+msgid "Note, as an exception, that the methods marked <emph>(*)</emph> are <emph>not applicable to Base documents</emph>."
+msgstr ""
+
+#. 778Fh
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id201587913266596\n"
+"help.text"
+msgid "Make the specified window active. The method returns <literal>True</literal> if the given window is found and can be activated. There is no change in the actual user interface if no window matches the selection."
+msgstr ""
+
+#. w9DR4
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id381587913266946\n"
+"help.text"
+msgid "<emph>windowname</emph>: see the definitions above."
+msgstr ""
+
+#. 5kwSb
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id13159655484952\n"
+"help.text"
+msgid "Creates and stores a new %PRODUCTNAME Base document embedding an empty database of the given type. The method returns a <literal>Document</literal> service instance."
+msgstr ""
+
+#. gqGpB
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id441596554849949\n"
+"help.text"
+msgid "<emph>filename</emph> : Identifies the file to create. It must follow the <literal>SF_FileSystem.FileNaming</literal> notation. If the file already exists, it is overwritten without warning"
+msgstr ""
+
+#. Jub7D
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id381596554849698\n"
+"help.text"
+msgid "<emph>embeddeddatabase</emph> : Either \"HSQLDB\" (default), \"FIREBIRD\" or \"CALC\"."
+msgstr ""
+
+#. BWgpN
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id521596554849185\n"
+"help.text"
+msgid "<emph>registrationname</emph> : The name used to store the new database in the databases register. When = \"\" (default), no registration takes place. If the name already exists it is overwritten without warning."
+msgstr ""
+
+#. AFin6
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id181629364905056\n"
+"help.text"
+msgid "<emph>calcfilename</emph> : Only when <literal>embeddeddatabase</literal> = \"CALC\", <literal>calcfilename</literal> represents the file containing the tables as Calc sheets. The file must exist or an error is raised."
+msgstr ""
+
+#. GtB5n
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id651588521753997\n"
+"help.text"
+msgid "Create a new %PRODUCTNAME document of a given type or based on a given template. The method returns a document object."
+msgstr ""
+
+#. JnBPt
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id51588521753302\n"
+"help.text"
+msgid "<emph>documenttype</emph> : \"Calc\", \"Writer\", etc. If absent, the <literal>templatefile</literal> argument must be present."
+msgstr ""
+
+#. BQ6UD
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id401588522663325\n"
+"help.text"
+msgid "<emph>templatefile</emph> : The full <literal>FileName</literal> of the template to build the new document on. If the file does not exist, the argument is ignored. The <literal>FileSystem</literal> service provides the <literal>TemplatesFolder</literal> and <literal>UserTemplatesFolder</literal> properties to help to build the argument."
+msgstr ""
+
+#. VeNQg
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id131588522824366\n"
+"help.text"
+msgid "<emph>hidden</emph>: if <literal>True</literal>, open the new document in the background (default = <literal>False</literal>). To use with caution: activation or closure afterwards can only happen programmatically."
+msgstr ""
+
+#. gWFt9
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id701620762417802\n"
+"help.text"
+msgid "In both examples below, the first call to <literal>CreateDocument</literal> method creates a blank Calc document, whereas the second creates a document from a template file."
+msgstr ""
+
+#. shCRf
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id201588520551463\n"
+"help.text"
+msgid "Returns an open document object referring to either the active window, a given window or the active document."
+msgstr ""
+
+#. xgMAv
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id851588520551368\n"
+"help.text"
+msgid "<emph>windowname</emph>: See the definitions <link href=\"text/sbasic/shared/03/sf_ui.xhp#WindowName\" name=\"WindowName section\">above</link>. If this argument is absent, the active window is used. UNO objects of types <literal>com.sun.star.lang.XComponent</literal> or <literal>com.sun.star.comp.dba.ODatabaseDocument</literal> are also accepted. Thus passing <literal>ThisComponent</literal> or <literal>ThisDatabaseDocument</literal> as argument creates a new <link href=\"text/sbasic/shared/03/sf_document.xhp\" name=\"Document service\">SFDocuments.Document</link>, <link href=\"text/sbasic/shared/03/sf_base.xhp\" name=\"Base service\">Base</link> or <link href=\"text/sbasic/shared/03/sf_calc.xhp\" name=\"Calc service\">Calc</link> service."
+msgstr ""
+
+#. AAjDB
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id521620330287071\n"
+"help.text"
+msgid "To access the name of the currently active window, refer to the <literal>ActiveWindow</literal> property."
+msgstr ""
+
+#. CYsyC
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id24158798644169\n"
+"help.text"
+msgid "Maximizes the active window or the given window."
+msgstr ""
+
+#. hD4TC
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id951587986441954\n"
+"help.text"
+msgid "<emph>windowname</emph>: see the definitions <link href=\"text/sbasic/shared/03/sf_ui.xhp#WindowName\" name=\"WindowName section\">above</link>. If this argument is absent, the active window is maximized."
+msgstr ""
+
+#. vzDdG
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id871587986592696\n"
+"help.text"
+msgid "Minimizes the active window or the given window."
+msgstr ""
+
+#. Enys5
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id751587986592626\n"
+"help.text"
+msgid "<emph>windowname</emph>: see the definitions <link href=\"text/sbasic/shared/03/sf_ui.xhp#WindowName\" name=\"WindowName section\">above</link>. If this argument is absent, the active window is minimized."
+msgstr ""
+
+#. WHDDQ
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id691596555746539\n"
+"help.text"
+msgid "Open an existing %PRODUCTNAME Base document. The method returns a document object."
+msgstr ""
+
+#. CZBya
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id231596555746385\n"
+"help.text"
+msgid "<emph>filename</emph>: Identifies the file to open. It must follow the <literal>SF_FileSystem.FileNaming</literal> notation."
+msgstr ""
+
+#. mtpoL
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id711596555746281\n"
+"help.text"
+msgid "<emph>registrationname</emph>: The name to use to find the database in the databases register. It is ignored if <literal>FileName</literal> <> \"\"."
+msgstr ""
+
+#. TqAd2
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"id721596556313545\n"
+"help.text"
+msgid "<emph>macroexecution</emph>: 0 = behaviour is defined by the user configuration, 1 = macros are not executable, 2 = macros are executable."
+msgstr ""
+
+#. Dok5e
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id941620762989833\n"
+"help.text"
+msgid "To improve code readability you can use <link href=\"text/sbasic/shared/03/sf_ui.xhp#Constants\" name=\"CHANGE ME\">predefined constants</link> for the <literal>macroexecution</literal> argument, as in the examples above."
+msgstr ""
+
+#. LBgGQ
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id541588523635283\n"
+"help.text"
+msgid "Opens an existing %PRODUCTNAME document with the given options. Returns a document object or one of its subclasses. The method returns <literal>Nothing</literal> (in Basic) / <literal>None</literal> (in Python) if the opening failed, even when the failure is caused by a user decision."
+msgstr ""
+
+#. 8tjbg
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id481588523635890\n"
+"help.text"
+msgid "<emph>filename</emph>: Identifies the file to open. It must follow the <literal>FileNaming</literal> notation of the <literal>FileSystem</literal> service."
+msgstr ""
+
+#. PWvQz
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id451588523635507\n"
+"help.text"
+msgid "<emph>password</emph>: To use when the document is protected. If wrong or absent while the document is protected, the user will be prompted to enter a password."
+msgstr ""
+
+#. 2jjFK
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id611588524329781\n"
+"help.text"
+msgid "<emph>readonly</emph>: Default = <literal>False</literal>."
+msgstr ""
+
+#. BcyEp
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id641588523635497\n"
+"help.text"
+msgid "<emph>hidden</emph>: if <literal>True</literal>, open the new document in the background (default = <literal>False</literal>). To use with caution: activation or closure afterwards can only happen programmatically."
+msgstr ""
+
+#. sbgeH
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id981588524474719\n"
+"help.text"
+msgid "<emph>macroexecution</emph>: 0 = behaviour is defined by the user configuration, 1 = macros are not executable, 2 = macros are executable."
+msgstr ""
+
+#. AF7iF
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id611588524584693\n"
+"help.text"
+msgid "<emph>filtername</emph>: The name of a filter that should be used for loading the document. If present, the filter must exist."
+msgstr ""
+
+#. MKueU
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id191588524634348\n"
+"help.text"
+msgid "<emph>filteroptions</emph>: An optional string of options associated with the filter."
+msgstr ""
+
+#. qMTrj
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id751587986945965\n"
+"help.text"
+msgid "Resizes and/or moves the active window. Absent and negative arguments are ignored. If the window is minimized or maximized, calling <literal>Resize</literal> without arguments restores it."
+msgstr ""
+
+#. 6NUcv
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id441587986945696\n"
+"help.text"
+msgid "<emph>left, top</emph>: Distances of the top-left corner from top and left edges of the screen, in pixels."
+msgstr ""
+
+#. AdcjG
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id601587987453825\n"
+"help.text"
+msgid "<emph>width, height</emph>: New dimensions of the window, in pixels."
+msgstr ""
+
+#. vDNVH
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id801587987507028\n"
+"help.text"
+msgid "In the following examples, the <literal>width</literal> and <literal>height</literal> of the window are changed while <literal>top</literal> and <literal>left</literal> are left unchanged."
+msgstr ""
+
+#. HP2Jb
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id21620332301809\n"
+"help.text"
+msgid "To resize a window that is not active, first activate it using the <literal>Activate</literal> method."
+msgstr ""
+
+#. mDaA5
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id991589202413257\n"
+"help.text"
+msgid "Runs a UNO command on the current window. A few typical commands are: Save, SaveAs, ExportToPDF, Undo, Copy, Paste, etc."
+msgstr ""
+
+#. x52HD
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id921611152932311\n"
+"help.text"
+msgid "Commands can be run with or without arguments. Arguments are not validated before running the command. If the command or its arguments are invalid, then nothing will happen."
+msgstr ""
+
+#. rhYJj
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id31644182402479\n"
+"help.text"
+msgid "For a complete list of UNO commands that can be run in %PRODUCTNAME, refer to the Wiki page <link href=\"https://wiki.documentfoundation.org/Development/DispatchCommands\" name=\"Commands_Wiki\">Development/DispatchCommands</link>."
+msgstr ""
+
+#. Fkf3T
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id401589202413575\n"
+"help.text"
+msgid "<emph>command</emph>: Case-sensitive string containing the UNO command name. The inclusion of the prefix \".uno:\" in the command is optional. The command itself is not checked for correctness. If nothing happens after the command call, then the command is probably wrong."
+msgstr ""
+
+#. cZgrF
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id521644182774710\n"
+"help.text"
+msgid "<emph>args</emph>: For each argument to be passed to the command, specify a pair containing the argument name and value."
+msgstr ""
+
+#. t3CjC
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id721611153068137\n"
+"help.text"
+msgid "The following example runs the <literal>.uno:About</literal> command in the current window."
+msgstr ""
+
+#. cFYc9
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id371644184276886\n"
+"help.text"
+msgid "Below is an example that runs the UNO command <literal>.uno:BasicIDEAppear</literal> and passes the arguments required to open the Basic IDE at a specific line of a module."
+msgstr ""
+
+#. fTXvL
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"bas_id631644184414955\n"
+"help.text"
+msgid "' Arguments passed to the command:"
+msgstr ""
+
+#. cyWLC
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id41644184549167\n"
+"help.text"
+msgid "Note that calling the command <literal>BasicIDEAppear</literal> without arguments will simply open the <menuitem>Basic IDE</menuitem>."
+msgstr ""
+
+#. BKNap
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id311644243516674\n"
+"help.text"
+msgid "In Python it is also possible to call <literal>RunCommand</literal> using keyword arguments:"
+msgstr ""
+
+#. Em5in
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id191611153511038\n"
+"help.text"
+msgid "Each %PRODUCTNAME component has its own set of commands available. One easy way to learn commands is going to <emph>Tools - Customize - Keyboard</emph>. When you position your mouse over a function in the <emph>Function</emph> list, a tooltip will appear with the corresponding UNO command."
+msgstr ""
+
+#. NnBWM
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id281587996421580\n"
+"help.text"
+msgid "Display a text and a progressbar in the status bar of the active window. Any subsequent calls in the same macro run refer to the same status bar of the same window, even if the window is not visible anymore. A call without arguments resets the status bar to its normal state."
+msgstr ""
+
+#. rDr2L
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id71587996421829\n"
+"help.text"
+msgid "<emph>text</emph>: An optional text to be displayed in front of the progress bar."
+msgstr ""
+
+#. hbCpG
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id881587996421777\n"
+"help.text"
+msgid "<emph>percentage</emph>: an optional degree of progress between 0 and 100."
+msgstr ""
+
+#. qbGdy
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"bas_id651620332601083\n"
+"help.text"
+msgid "' Resets the statusbar"
+msgstr ""
+
+#. oQfWc
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id571598864255776\n"
+"help.text"
+msgid "Displays a non-modal dialog box. Specify its title, an explicatory text and a percentage of progress to be represented on a progressbar. The dialog will remain visible until a call to the method without arguments or until the user manually closes the dialog."
+msgstr ""
+
+#. drhV6
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id441598864535695\n"
+"help.text"
+msgid "<emph>title</emph> : The title appearing on top of the dialog box. Default = \"ScriptForge\"."
+msgstr ""
+
+#. jvrZV
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id311598864255297\n"
+"help.text"
+msgid "<emph>text</emph>: An optional text to be displayed above the progress bar."
+msgstr ""
+
+#. Qj3N3
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id881598864255424\n"
+"help.text"
+msgid "<emph>percentage</emph>: an optional degree of progress between 0 and 100."
+msgstr ""
+
+#. rVBX3
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"bas_id651620333289753\n"
+"help.text"
+msgid "' Closes the Progress Bar window"
+msgstr ""
+
+#. u3gZ8
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id761620333269236\n"
+"help.text"
+msgid "# Closes the Progress Bar window"
+msgstr ""
+
+#. ZEG6t
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id431588587119925\n"
+"help.text"
+msgid "Returns <literal>True</literal> if the given window could be identified."
+msgstr ""
+
+#. rkJbT
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id45158858711917\n"
+"help.text"
+msgid "<emph>windowname</emph>: see the definitions above."
+msgstr ""
+
+#. BuQiK
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"tit\n"
+"help.text"
+msgid "SFUnitTests.UnitTest service"
+msgstr ""
+
+#. iVee6
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"bm_id681600788076499\n"
+"help.text"
+msgid "<variable id=\"UnitTestService\"><link href=\"text/sbasic/shared/03/sf_unittest.xhp\" name=\"UnitTest service\"><literal>SFUnitTests</literal>.<literal>UnitTest</literal> service</link></variable>"
+msgstr ""
+
+#. iRNwD
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id181600788076612\n"
+"help.text"
+msgid "The <literal>UnitTest</literal> service provides a framework for automating unit tests using the Basic language, including the ability to:"
+msgstr ""
+
+#. wkD9p
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id301600788076785\n"
+"help.text"
+msgid "Aggregate test cases into test suites and unit tests."
+msgstr ""
+
+#. Dgg9t
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id1001600788076848\n"
+"help.text"
+msgid "Share setup and shutdown code among test cases."
+msgstr ""
+
+#. 768q7
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id67160078807676\n"
+"help.text"
+msgid "Report test results using the <literal>Console</literal>."
+msgstr ""
+
+#. UEt5G
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id411656351918942\n"
+"help.text"
+msgid "Both the unit tests and the code to be tested must be written in Basic. The code being tested may call functions written in other languages."
+msgstr ""
+
+#. CCgbB
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id601656621416963\n"
+"help.text"
+msgid "The <literal>UnitTest</literal> service is not available for Python scripts."
+msgstr ""
+
+#. PBJpL
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"hd_id491656351958796\n"
+"help.text"
+msgid "Definitions"
+msgstr ""
+
+#. kTZBz
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"hd_id31656351967453\n"
+"help.text"
+msgid "Test Case"
+msgstr ""
+
+#. 2SE2W
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id571656351977812\n"
+"help.text"
+msgid "A test case is the individual unit of testing. It checks for a specific response to a particular set of inputs."
+msgstr ""
+
+#. XiXCu
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id391656352078166\n"
+"help.text"
+msgid "In the <literal>UnitTest</literal> service, a test case is represented by a single Basic <literal>Sub</literal> whose name starts with a common prefix (the default is \"Test_\")."
+msgstr ""
+
+#. 2g5tx
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id701656352338645\n"
+"help.text"
+msgid "The test case fails if one of the <literal>AssertX</literal> methods returns <literal>False</literal>."
+msgstr ""
+
+#. 6yQXs
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"hd_id431656352497598\n"
+"help.text"
+msgid "Test Suite"
+msgstr ""
+
+#. Jk79j
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id771656352513789\n"
+"help.text"
+msgid "A test suite is a collection of test cases that should be executed together."
+msgstr ""
+
+#. cFV9D
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id941656352597973\n"
+"help.text"
+msgid "All test cases of a test suite are stored in a single Basic module."
+msgstr ""
+
+#. UEVyk
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id51656352696989\n"
+"help.text"
+msgid "A test suite may implement the <literal>SetUp</literal> and <literal>TearDown</literal> methods to prepare for test cases in its module."
+msgstr ""
+
+#. nEFMy
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"hd_id351656352884283\n"
+"help.text"
+msgid "Unit Test"
+msgstr ""
+
+#. xieZW
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id461656352894003\n"
+"help.text"
+msgid "A full unit test consists of a set of test suites in the same Basic library."
+msgstr ""
+
+#. 6XiCa
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"hd_id991656353328287\n"
+"help.text"
+msgid "Service invocation"
+msgstr ""
+
+#. FVzhB
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id141609955500101\n"
+"help.text"
+msgid "Before using the <literal>UnitTest</literal> service the <literal>ScriptForge</literal> library needs to be loaded or imported:"
+msgstr ""
+
+#. GHXzG
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"hd_id941656357981021\n"
+"help.text"
+msgid "Simple mode"
+msgstr ""
+
+#. C5qBi
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id381656357996613\n"
+"help.text"
+msgid "Invoke the service in <emph>simple mode</emph> to call <literal>AssertX</literal> functions without having to build the full hierarchy of test suites and test cases."
+msgstr ""
+
+#. DRzjW
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id331656358092318\n"
+"help.text"
+msgid "In simple mode, the service is invoked inside the test case, as shown in the example below:"
+msgstr ""
+
+#. RuMFA
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"bas_id501656358186053\n"
+"help.text"
+msgid "' A few dummy tests"
+msgstr ""
+
+#. 2Firz
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"bas_id981656421186233\n"
+"help.text"
+msgid "MsgBox(\"All tests passed\")"
+msgstr ""
+
+#. nMFgq
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"bas_id971656421186872\n"
+"help.text"
+msgid "myTest.ReportError(\"A test failed\")"
+msgstr ""
+
+#. ki4xc
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id321656421319505\n"
+"help.text"
+msgid "In this example, if any of the <literal>AssertEqual</literal> calls fail, the interpreter will go to the <literal>CatchError</literal> label and report the error by calling the <literal>ReportError</literal> method."
+msgstr ""
+
+#. AMsHe
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"hd_id341656353807950\n"
+"help.text"
+msgid "Full mode"
+msgstr ""
+
+#. Cev96
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id881656353390116\n"
+"help.text"
+msgid "When invoked in <emph>full mode</emph>, the service creation is external to the test code and all tests are organized into test cases and test suites inside a single library."
+msgstr ""
+
+#. kRFxC
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id41656354017140\n"
+"help.text"
+msgid "The following example creates a <literal>UnitTest</literal> instance whose tests are located inside the current document (<literal>ThisComponent</literal>) in the \"Tests\" library."
+msgstr ""
+
+#. 3pPFr
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"hd_id731656421609300\n"
+"help.text"
+msgid "A minimalist example in full mode"
+msgstr ""
+
+#. ktFcg
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id721656421629357\n"
+"help.text"
+msgid "Consider that a ODS file has a module named \"MathUtils\" in its \"Standard\" library with the following code:"
+msgstr ""
+
+#. ZijqG
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"bas_id821656421926586\n"
+"help.text"
+msgid "' Code in module Standard.MathUtils"
+msgstr ""
+
+#. N8ifA
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id871656422027581\n"
+"help.text"
+msgid "To create a full test suite, consider that a new library named \"Tests\" is created in the file with a single module \"AllTests\" containing the code below:"
+msgstr ""
+
+#. TdD5n
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"bas_id731656422341011\n"
+"help.text"
+msgid "' Code in module Tests.AllTests"
+msgstr ""
+
+#. TeQGD
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"bas_id671656422476689\n"
+"help.text"
+msgid "' Preparation code ran prior to the first test case"
+msgstr ""
+
+#. 5YeqU
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"bas_id621656422479007\n"
+"help.text"
+msgid "' Optional cleanup code called after the last test case"
+msgstr ""
+
+#. ANk96
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"bas_id141656422684085\n"
+"help.text"
+msgid "test.AssertEqual(Sum(1, 1), 2, \"Sum two positive integers\")"
+msgstr ""
+
+#. vZeA5
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"bas_id491656422684324\n"
+"help.text"
+msgid "test.AssertEqual(Sum(-10, 20), 10, \"Sum of negative and positive integers\")"
+msgstr ""
+
+#. xAf6Z
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"bas_id201656422684556\n"
+"help.text"
+msgid "test.AssertEqual(Sum(1.5, 1), 2.5, \"Sum of float and integer values\")"
+msgstr ""
+
+#. Lp9XE
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"bas_id716356422685228\n"
+"help.text"
+msgid "test.ReportError(\"Sum method is broken\")"
+msgstr ""
+
+#. u2CVn
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"bas_id416564228330400\n"
+"help.text"
+msgid "test.AssertEqual(Multiply(2, 2), 4, \"Multiply two positive integers\")"
+msgstr ""
+
+#. BhroA
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"bas_id231656422833240\n"
+"help.text"
+msgid "test.AssertEqual(Multiply(-4, 2), -8, \"Multiply negative and positive integers\")"
+msgstr ""
+
+#. whh5d
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"bas_id931656422833480\n"
+"help.text"
+msgid "test.AssertEqual(Multiply(1.5, 3), 4.5, \"Multiply of float and integer values\")"
+msgstr ""
+
+#. ixjF2
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"bas_id151656422834184\n"
+"help.text"
+msgid "test.ReportError(\"Multiply method is broken\")"
+msgstr ""
+
+#. y6q9H
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id681656423030706\n"
+"help.text"
+msgid "The test suite above consists of two test cases <literal>Test_Sum</literal> and <literal>Test_Multiply</literal>. To run all tests simply run the <literal>Main</literal> method from the \"AllTests\" module."
+msgstr ""
+
+#. CFFEG
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id681656423146183\n"
+"help.text"
+msgid "The <link href=\"text/sbasic/shared/03/sf_exception.xhp#Console\" name=\"Console\"><literal>Console</literal></link> from the <literal>Exception</literal> service is used as the default output to print test results. After running the example above, the following output will be displayed in the console:"
+msgstr ""
+
+#. SX4Hy
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id161656423510879\n"
+"help.text"
+msgid "If any of the <literal>AssertEqual</literal> methods fails during these tests, an error message is added to the console."
+msgstr ""
+
+#. SKsNp
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"hd_id711600788076834\n"
+"help.text"
+msgid "Properties"
+msgstr ""
+
+#. dUKA3
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id461600788076917\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. 4CFLw
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id221600788076591\n"
+"help.text"
+msgid "Readonly"
+msgstr ""
+
+#. hmcQA
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id761600788076328\n"
+"help.text"
+msgid "Type"
+msgstr ""
+
+#. qr48K
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id67160078807636\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. BLCXX
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id311600788076756\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. LwYBg
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id441600788076826\n"
+"help.text"
+msgid "When set to <literal>True</literal> (default) the console shows the standard message appended to the message provided by the tester. When <literal>False</literal>, only the message defined by the tester is used."
+msgstr ""
+
+#. m6reQ
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id49160078807654\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. diGQ4
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id81600788076419\n"
+"help.text"
+msgid "Value returned by <literal>RunTest</literal> after the unit test is finished. Next is a list of possible values:"
+msgstr ""
+
+#. RqYbB
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id141656425588260\n"
+"help.text"
+msgid "0 - Test finished without errors or test not started<br/> 1 - An assertion within a test case returned <literal>False</literal><br/> 2 - A <literal>SkipTest</literal> was issued by the <literal>Setup</literal> method or by one of the test cases.<br/> 3 - Abnormal end of test"
+msgstr ""
+
+#. sa2t9
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id711600788076534\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. WG8MM
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id541600788076645\n"
+"help.text"
+msgid "When set to <literal>True</literal>, all assertions are reported in the console (failing or not). When <literal>False</literal> (default), only failing assertions are reported."
+msgstr ""
+
+#. kbkBT
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id891600788076190\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. H5D7L
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id91600788076674\n"
+"help.text"
+msgid "Defines what is done when an assertion fails. Next is a list of possible values:"
+msgstr ""
+
+#. EQBpN
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id671656425606077\n"
+"help.text"
+msgid "0 - Ignore the failure and continue running the test<br/> 1 - The <literal>TearDown</literal> method in the module is executed in the current test suite and the next suite is started (default in full mode).<br/> 2 - Stop immediately (default in simple mode)"
+msgstr ""
+
+#. oxRCB
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id651606319520519\n"
+"help.text"
+msgid "List of Methods in the UnitTest Service"
+msgstr ""
+
+#. d4CFS
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"hd_id201656428230690\n"
+"help.text"
+msgid "Arguments of the AssertX methods"
+msgstr ""
+
+#. ArRiA
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id591656428251124\n"
+"help.text"
+msgid "All assertions test one or two expressions, referred in the remainder of this help page as <emph>A</emph> and <emph>B</emph>. They are always the first one or two arguments in the <literal>AssertX</literal> method."
+msgstr ""
+
+#. Nanrc
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id231656428367462\n"
+"help.text"
+msgid "All <literal>AssertX</literal> methods accept a <literal>message</literal> argument specifying a custom message to be reported in the console regarding the assertion. By default an empty string is used. This argument is always in the last position of the assertion."
+msgstr ""
+
+#. d7AFB
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id91656451227291\n"
+"help.text"
+msgid "Some <literal>AssertX</literal> methods also accept additional arguments, as described by their syntaxes below."
+msgstr ""
+
+#. xbDmc
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id71621894833351\n"
+"help.text"
+msgid "Returns <literal>True</literal> when <emph>A</emph> and <emph>B</emph> are numerical values and are considered to be close to each other, given a relative tolerance."
+msgstr ""
+
+#. STVnD
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id241656426318310\n"
+"help.text"
+msgid "This assertion returns <literal>True</literal> if the two conditions below are met:"
+msgstr ""
+
+#. zBAge
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id861656426361793\n"
+"help.text"
+msgid "A and B can be converted to the <literal>Double</literal> type."
+msgstr ""
+
+#. 48tqj
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id851656426362072\n"
+"help.text"
+msgid "The absolute difference between A and B divided by the largest absolute value of A or B is <emph>lower</emph> than the value specified in <literal>tolerance</literal>."
+msgstr ""
+
+#. Z7Aap
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id71621894830182\n"
+"help.text"
+msgid "Returns <literal>True</literal> when <emph>A</emph> and <emph>B</emph> are considered to be equal."
+msgstr ""
+
+#. 5EHVv
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id241656426317440\n"
+"help.text"
+msgid "When A and B are scalars, <literal>True</literal> is returned if:"
+msgstr ""
+
+#. EACHw
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id861656426361808\n"
+"help.text"
+msgid "Both expressions have the same <literal>VarType</literal> or are both numeric."
+msgstr ""
+
+#. rEEuD
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id851656426362362\n"
+"help.text"
+msgid "Booleans and numeric values are compared with the = operator."
+msgstr ""
+
+#. VFGGv
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id201656427500186\n"
+"help.text"
+msgid "Strings are compared with the builtin <literal>StrComp</literal> function. The comparison is case-sensitive."
+msgstr ""
+
+#. D8kiC
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id861656427531067\n"
+"help.text"
+msgid "Dates and times are compared up to the second."
+msgstr ""
+
+#. nGv5Z
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id361656427557940\n"
+"help.text"
+msgid "<literal>Null</literal>, <literal>Empty</literal> and <literal>Nothing</literal> are not equal, but <literal>AssertEqual(Nothing, Nothing)</literal> returns <literal>True</literal>."
+msgstr ""
+
+#. 7ZYdu
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id31656427624016\n"
+"help.text"
+msgid "UNO objects are compared with the builtin <literal>EqualUnoObjects</literal> method."
+msgstr ""
+
+#. Ec6PU
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id301656427695507\n"
+"help.text"
+msgid "Note that Basic objects are never equal."
+msgstr ""
+
+#. WpMkU
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id691656427837518\n"
+"help.text"
+msgid "When A and B are arrays, <literal>True</literal> is returned if:"
+msgstr ""
+
+#. A5kTv
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id831656427894608\n"
+"help.text"
+msgid "Both arrays have the same number of dimensions (up to 2 dimensions) and their lower and upper bounds are identical for all dimensions."
+msgstr ""
+
+#. sABNY
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id851656427895040\n"
+"help.text"
+msgid "All items in both arrays are equal, one by one."
+msgstr ""
+
+#. eAjBU
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id571656427895400\n"
+"help.text"
+msgid "Two empty arrays are considered to be equal."
+msgstr ""
+
+#. PxfTp
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id71621894830071\n"
+"help.text"
+msgid "Returns <literal>True</literal> when the type of A is <literal>Boolean</literal> and its value is <literal>False</literal>."
+msgstr ""
+
+#. C3NgG
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id71621894830337\n"
+"help.text"
+msgid "Returns <literal>True</literal> when A is greater than B."
+msgstr ""
+
+#. bT3CG
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id991656428670110\n"
+"help.text"
+msgid "The comparison between A and B assumes the following:"
+msgstr ""
+
+#. Uunox
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id591656428689390\n"
+"help.text"
+msgid "Eligible data types are <literal>String</literal>, <literal>Date</literal> or numeric."
+msgstr ""
+
+#. F7Cyz
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id516564286489629\n"
+"help.text"
+msgid "Both expressions must have the same <literal>VarType</literal> or both must be numeric."
+msgstr ""
+
+#. LfUrX
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id211656428689774\n"
+"help.text"
+msgid "String comparisons are case-sensitive."
+msgstr ""
+
+#. HtcFS
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id71621894838548\n"
+"help.text"
+msgid "Returns <literal>True</literal> when A is greater than or equal to B."
+msgstr ""
+
+#. gwLLH
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id991656428670202\n"
+"help.text"
+msgid "The comparison between A and B assumes the following:"
+msgstr ""
+
+#. 8KqmD
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id591656428689207\n"
+"help.text"
+msgid "Eligible data types are <literal>String</literal>, <literal>Date</literal> or numeric."
+msgstr ""
+
+#. oDfjA
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id516564286455529\n"
+"help.text"
+msgid "Both expressions must have the same <literal>VarType</literal> or both must be numeric."
+msgstr ""
+
+#. DWEby
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id211656428663284\n"
+"help.text"
+msgid "String comparisons are case-sensitive."
+msgstr ""
+
+#. BcYoQ
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id71621894831448\n"
+"help.text"
+msgid "Returns <literal>True</literal> when A is found in B."
+msgstr ""
+
+#. UqzzY
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id991656428677632\n"
+"help.text"
+msgid "This assertion assumes the following:"
+msgstr ""
+
+#. gKnpk
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id591656428688858\n"
+"help.text"
+msgid "Expression B may be a 1D array, a ScriptForge <literal>Dictionary</literal> object or a string."
+msgstr ""
+
+#. WSuUE
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id516564286454219\n"
+"help.text"
+msgid "When expression B is a 1D array, expression A may be a date or a numeric value."
+msgstr ""
+
+#. B6JVZ
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id51656678140228\n"
+"help.text"
+msgid "When expression B is a ScriptForge <literal>Dictionary</literal> object, then string A is searched for among the keys in B."
+msgstr ""
+
+#. vvgdS
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id211656428663299\n"
+"help.text"
+msgid "String comparisons are case-sensitive."
+msgstr ""
+
+#. pCSa8
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id71621894831399\n"
+"help.text"
+msgid "Returns <literal>True</literal> when A is an instance of a specified object type, specified as a string containing the type name."
+msgstr ""
+
+#. P4Q7u
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id991656428676302\n"
+"help.text"
+msgid "Expression A may be one of the following:"
+msgstr ""
+
+#. Kd3yd
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id591656428676428\n"
+"help.text"
+msgid "A ScriptForge object. In this case, the <literal>objecttype</literal> argument is a string such as \"DICTIONARY\", \"calc\", \"Dialog\", etc."
+msgstr ""
+
+#. pAE9x
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id516564286456619\n"
+"help.text"
+msgid "A UNO object. In this case, the <literal>objecttype</literal> argument must be a string identical to the value returned by the <literal>SF_Session.UnoObjectType()</literal> method."
+msgstr ""
+
+#. TAtM4
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id211656428680559\n"
+"help.text"
+msgid "An Array. In this case, the <literal>objecttype</literal> argument is expected to be \"array\"."
+msgstr ""
+
+#. dvkQB
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id891656439858783\n"
+"help.text"
+msgid "Any other variable (neither an <literal>Object</literal> nor an <literal>Array</literal>). In this case, <literal>objecttype</literal> is a string matching the value returned by the builtin <literal>TypeName</literal> function."
+msgstr ""
+
+#. cNXhg
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id71621894830197\n"
+"help.text"
+msgid "Returns <literal>True</literal> when A is an object that has the <literal>Nothing</literal> value."
+msgstr ""
+
+#. DAqbe
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id71621894863251\n"
+"help.text"
+msgid "Returns <literal>True</literal> when A has the <literal>Null</literal> value."
+msgstr ""
+
+#. oQpZL
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id71621894838018\n"
+"help.text"
+msgid "Returns <literal>True</literal> when A is less than B."
+msgstr ""
+
+#. DGdwP
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id991656428672332\n"
+"help.text"
+msgid "The comparison between A and B assumes the following:"
+msgstr ""
+
+#. AmmHx
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id591656428689311\n"
+"help.text"
+msgid "Eligible data types are <literal>String</literal>, <literal>Date</literal> or numeric."
+msgstr ""
+
+#. Y6GRH
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id516564286265809\n"
+"help.text"
+msgid "Both expressions must have the same <literal>VarType</literal> or both must be numeric."
+msgstr ""
+
+#. SNBHr
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id211656428660996\n"
+"help.text"
+msgid "String comparisons are case-sensitive."
+msgstr ""
+
+#. wAvBZ
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id71621894208818\n"
+"help.text"
+msgid "Returns <literal>True</literal> when A is less than or equal to B."
+msgstr ""
+
+#. kvCHD
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id991656428606322\n"
+"help.text"
+msgid "The comparison between A and B assumes the following:"
+msgstr ""
+
+#. jD42E
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id591656428682251\n"
+"help.text"
+msgid "Eligible data types are <literal>String</literal>, <literal>Date</literal> or numeric."
+msgstr ""
+
+#. UMG2p
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id516564286265711\n"
+"help.text"
+msgid "Both expressions must have the same <literal>VarType</literal> or both must be numeric."
+msgstr ""
+
+#. tcjQC
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id211656428660176\n"
+"help.text"
+msgid "String comparisons are case-sensitive."
+msgstr ""
+
+#. Zg5MZ
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id71621894862651\n"
+"help.text"
+msgid "Returns <literal>True</literal> if string A matches a given pattern containing wildcards."
+msgstr ""
+
+#. GD2Hu
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id51656446203238\n"
+"help.text"
+msgid "The following wildcards are accepted:"
+msgstr ""
+
+#. CjJSF
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id661656446233484\n"
+"help.text"
+msgid "? - Represents any single character."
+msgstr ""
+
+#. dozgH
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id681656446233831\n"
+"help.text"
+msgid "* - Represents zero, one, or multiple characters."
+msgstr ""
+
+#. fsu2Z
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id71621894832641\n"
+"help.text"
+msgid "Returns <literal>True</literal> when <emph>A</emph> and <emph>B</emph> are numerical values and are <emph>not</emph> considered to be close to each other, given a relative tolerance."
+msgstr ""
+
+#. 3CNkz
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id241656426317970\n"
+"help.text"
+msgid "This assertion returns <literal>True</literal> if the two conditions below are met:"
+msgstr ""
+
+#. NtkrB
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id861656426361686\n"
+"help.text"
+msgid "A and B can be converted to the <literal>Double</literal> type."
+msgstr ""
+
+#. 4L9bJ
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id851656426332052\n"
+"help.text"
+msgid "The absolute difference between A and B divided by the largest absolute value of A or B is <emph>greater</emph> than the value specified in <literal>tolerance</literal>."
+msgstr ""
+
+#. KVBYJ
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id71621894862842\n"
+"help.text"
+msgid "Returns <literal>True</literal> when <emph>A</emph> and <emph>B</emph> are <emph>not</emph> considered to be equal."
+msgstr ""
+
+#. f8xcB
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id581656446598206\n"
+"help.text"
+msgid "This method works both for scalars and arrays. Read the instructions in <link href=\"text/sbasic/shared/03/sf_unittest.xhp#AssertEqual\" name=\"AssertEqual\"><literal>AssertEqual</literal></link> for more information on what equality means in this assertion."
+msgstr ""
+
+#. ENDBA
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id71621894832638\n"
+"help.text"
+msgid "Returns <literal>True</literal> when A (a string) is <emph>not</emph> found in B."
+msgstr ""
+
+#. KNFSF
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id271656446302516\n"
+"help.text"
+msgid "Read the instructions in <link href=\"text/sbasic/shared/03/sf_unittest.xhp#AssertIn\" name=\"AssertIn\"><literal>AssertIn</literal></link> for more information on the assumptions of this method."
+msgstr ""
+
+#. BCzDu
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id71621894831403\n"
+"help.text"
+msgid "Returns <literal>True</literal> when A is <emph>not</emph> an instance of a specified object type."
+msgstr ""
+
+#. 2FDwf
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id271656446949396\n"
+"help.text"
+msgid "Read the instructions in <link href=\"text/sbasic/shared/03/sf_unittest.xhp#AssertIsInstance\" name=\"AssertIsInstance\"><literal>AssertIsInstance</literal></link> for more information on the assumptions of this method."
+msgstr ""
+
+#. TRtFA
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id71621894863961\n"
+"help.text"
+msgid "Returns <literal>True</literal> if string A <emph>does not</emph> match a given pattern containing wildcards."
+msgstr ""
+
+#. aRFUp
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id271656446258396\n"
+"help.text"
+msgid "Read the instructions in <link href=\"text/sbasic/shared/03/sf_unittest.xhp#AssertLike\" name=\"AssertLike\"><literal>AssertLike</literal></link> for more information on the assumptions of this method."
+msgstr ""
+
+#. C9GJn
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id71621894420261\n"
+"help.text"
+msgid "Returns <literal>True</literal> except when A is an object that has the <literal>Nothing</literal> value."
+msgstr ""
+
+#. tdWWt
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id71621894876551\n"
+"help.text"
+msgid "Returns <literal>True</literal> except when A has the <literal>Null</literal> value."
+msgstr ""
+
+#. piNCq
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id71621894860331\n"
+"help.text"
+msgid "Returns <literal>True</literal> when A is <emph>not</emph> a string or <emph>does not</emph> match the given regular expression."
+msgstr ""
+
+#. 24iRs
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id931656448163772\n"
+"help.text"
+msgid "The comparison is case-sensitive."
+msgstr ""
+
+#. LBAZt
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id71621894836031\n"
+"help.text"
+msgid "Returns <literal>True</literal> when string A matches the given regular expression."
+msgstr ""
+
+#. YDnGG
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id931656448163625\n"
+"help.text"
+msgid "The comparison is case-sensitive."
+msgstr ""
+
+#. B2c4q
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id71621894063449\n"
+"help.text"
+msgid "Returns <literal>True</literal> when expression A is a <literal>Boolean</literal> and its value is <literal>True</literal>."
+msgstr ""
+
+#. CsZXs
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id71621894086431\n"
+"help.text"
+msgid "Forces a test case to fail."
+msgstr ""
+
+#. aMzvc
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id751656448550854\n"
+"help.text"
+msgid "A message can be provided to be reported in the console."
+msgstr ""
+
+#. 6ZD5u
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id71621894063631\n"
+"help.text"
+msgid "Writes the specified <literal>message</literal> in the console."
+msgstr ""
+
+#. HmfG2
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id751656448510894\n"
+"help.text"
+msgid "A message can be provided to be reported in the console."
+msgstr ""
+
+#. b2AUv
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id71621894199311\n"
+"help.text"
+msgid "Displays a message box with a message and the current property values of the <literal>Exception</literal> service."
+msgstr ""
+
+#. by77W
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id851656622819891\n"
+"help.text"
+msgid "This method is commonly used in the exception handling section of the <literal>Sub</literal> containing the test case, which is reached when an assertion fails or when the <literal>Fail</literal> method is called."
+msgstr ""
+
+#. ozRN8
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id291656448892783\n"
+"help.text"
+msgid "Depending on the value of the property <literal>WhenAssertionFails</literal>, the test execution may continue or be interrupted."
+msgstr ""
+
+#. q42xs
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id551656448951538\n"
+"help.text"
+msgid "When writing test cases it is recommended to include a call to the <literal>ReportError</literal> method in the exception handling section of the <literal>Sub</literal>."
+msgstr ""
+
+#. pze6V
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id711656449128572\n"
+"help.text"
+msgid "If the property <literal>LongMessage</literal> is equal to <literal>True</literal>, the specified <literal>message</literal> is followed by the standard error message description. Otherwise only the <literal>message</literal> is displayed."
+msgstr ""
+
+#. AtCyJ
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id71621894063361\n"
+"help.text"
+msgid "Executes the complete test suite implemented in the specified module. Each test case is run independently from each other."
+msgstr ""
+
+#. AqkBH
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id201656449688023\n"
+"help.text"
+msgid "Running a test suite consists of:"
+msgstr ""
+
+#. YqC5U
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id751656449718279\n"
+"help.text"
+msgid "Executing the optional <literal>Setup</literal> method present in the module."
+msgstr ""
+
+#. Kmshw
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id611656449718505\n"
+"help.text"
+msgid "Executing once each test case, in no specific order."
+msgstr ""
+
+#. dpWzo
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id461656449718687\n"
+"help.text"
+msgid "Executing the optional <literal>TearDown</literal> method present in the module."
+msgstr ""
+
+#. rFf8d
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id751656448521144\n"
+"help.text"
+msgid "The argument <literal>testcasepattern</literal> specifies a pattern composed of \"?\" and \"*\" wildcards to select which test cases will be run. The comparison is not case-sensitive."
+msgstr ""
+
+#. T3faF
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id81656448858455\n"
+"help.text"
+msgid "If a <literal>message</literal> is provided, it is written to the console when the test starts."
+msgstr ""
+
+#. TDXg5
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id71621894064311\n"
+"help.text"
+msgid "Interrupts the running test suite without calling the <literal>TearDown</literal> method."
+msgstr ""
+
+#. A6W9G
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id781656450313544\n"
+"help.text"
+msgid "Skipping a test is usually meaningful during the <literal>Setup</literal> method when not all conditions to run the test are met."
+msgstr ""
+
+#. wzZy2
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id531656450405799\n"
+"help.text"
+msgid "It is up to the <literal>Setup</literal> method to exit the <literal>Sub</literal> shortly after the <literal>SkipTest</literal> call."
+msgstr ""
+
+#. KEaV4
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id581656450504005\n"
+"help.text"
+msgid "If <literal>SkipTest</literal> is called from within a test case, the execution of the test suite is interrupted and the remaining test cases are not run. Keep in mind that the order in which test cases are run is arbitrary within a test suite."
+msgstr ""
+
+#. BFyev
+#: sf_unittest.xhp
+msgctxt ""
+"sf_unittest.xhp\n"
+"par_id81656449618455\n"
+"help.text"
+msgid "If a <literal>message</literal> is provided, it is written to the console."
+msgstr ""
+
+#. NyP5B
+#: sf_writer.xhp
+msgctxt ""
+"sf_writer.xhp\n"
+"tit\n"
+"help.text"
+msgid "SFDocuments.Writer service"
+msgstr ""
+
+#. 5i7vz
+#: sf_writer.xhp
+msgctxt ""
+"sf_writer.xhp\n"
+"hd_id731582733781114\n"
+"help.text"
+msgid "<variable id=\"WriterService\"><link href=\"text/sbasic/shared/03/sf_writer.xhp\" name=\"Writer service\"><literal>SFDocuments</literal>.<literal>Writer</literal> service</link></variable>"
+msgstr ""
+
+#. dUwYw
+#: sf_writer.xhp
+msgctxt ""
+"sf_writer.xhp\n"
+"par_id381589189355849\n"
+"help.text"
+msgid "The <literal>SFDocuments</literal> shared library provides a number of methods and properties to facilitate the management and handling of %PRODUCTNAME documents."
+msgstr ""
+
+#. FvF79
+#: sf_writer.xhp
+msgctxt ""
+"sf_writer.xhp\n"
+"par_id351591014177269\n"
+"help.text"
+msgid "Some methods are generic for all types of documents and are inherited from the <literal>SF_Document</literal> module, whereas other methods that are specific for Writer documents are defined in the <literal>SF_Writer</literal> module."
+msgstr ""
+
+#. LTpqJ
+#: sf_writer.xhp
+msgctxt ""
+"sf_writer.xhp\n"
+"hd_id581582885621841\n"
+"help.text"
+msgid "Service invocation"
+msgstr ""
+
+#. YFLf6
+#: sf_writer.xhp
+msgctxt ""
+"sf_writer.xhp\n"
+"par_id141609955500101\n"
+"help.text"
+msgid "Before using the <literal>Writer</literal> service the <literal>ScriptForge</literal> library needs to be loaded or imported:"
+msgstr ""
+
+#. 3LPrN
+#: sf_writer.xhp
+msgctxt ""
+"sf_writer.xhp\n"
+"par_id591589191059889\n"
+"help.text"
+msgid "The <literal>Writer</literal> service is closely related to the <literal>UI</literal> service of the <literal>ScriptForge</literal> library. Below are a few examples of how the <literal>Writer</literal> service can be invoked."
+msgstr ""
+
+#. NvcUB
+#: sf_writer.xhp
+msgctxt ""
+"sf_writer.xhp\n"
+"par_id551621623999947\n"
+"help.text"
+msgid "The code snippet below creates a <literal>Writer</literal> service instance that corresponds to the currently active Writer document."
+msgstr ""
+
+#. 4P2m8
+#: sf_writer.xhp
+msgctxt ""
+"sf_writer.xhp\n"
+"par_id341621467500466\n"
+"help.text"
+msgid "Another way to create an instance of the <literal>Writer</literal> service is using the <literal>UI</literal> service. In the following example, a new Writer document is created and <literal>oDoc</literal> is a <literal>Writer</literal> service instance:"
+msgstr ""
+
+#. dENpx
+#: sf_writer.xhp
+msgctxt ""
+"sf_writer.xhp\n"
+"par_id921621467621019\n"
+"help.text"
+msgid "Or using the <literal>OpenDocument</literal> method from the <literal>UI</literal> service:"
+msgstr ""
+
+#. WopGb
+#: sf_writer.xhp
+msgctxt ""
+"sf_writer.xhp\n"
+"par_id741621467697967\n"
+"help.text"
+msgid "It is also possible to instantiate the <literal>Writer</literal> service using the <literal>CreateScriptService</literal> method:"
+msgstr ""
+
+#. WTDbw
+#: sf_writer.xhp
+msgctxt ""
+"sf_writer.xhp\n"
+"par_id271621467810774\n"
+"help.text"
+msgid "In the example above, \"MyFile.odt\" is the name of an open document window. If this argument is not provided, the active window is considered."
+msgstr ""
+
+#. EEAZF
+#: sf_writer.xhp
+msgctxt ""
+"sf_writer.xhp\n"
+"par_id71158288562139\n"
+"help.text"
+msgid "It is recommended to free resources after use:"
+msgstr ""
+
+#. wPWMP
+#: sf_writer.xhp
+msgctxt ""
+"sf_writer.xhp\n"
+"par_id231611610666018\n"
+"help.text"
+msgid "However, if the document was closed using the <literal>CloseDocument</literal> method, it becomes unnecessary to free resources using the command described above."
+msgstr ""
+
+#. 7JvGW
+#: sf_writer.xhp
+msgctxt ""
+"sf_writer.xhp\n"
+"par_id71611090922315\n"
+"help.text"
+msgid "The use of the prefix \"<literal>SFDocuments.</literal>\" while calling the service is optional."
+msgstr ""
+
+#. EcQjk
+#: sf_writer.xhp
+msgctxt ""
+"sf_writer.xhp\n"
+"hd_id291631196803182\n"
+"help.text"
+msgid "Definitions"
+msgstr ""
+
+#. ausGU
+#: sf_writer.xhp
+msgctxt ""
+"sf_writer.xhp\n"
+"hd_id351582885195476\n"
+"help.text"
+msgid "Properties"
+msgstr ""
+
+#. VB9Jj
+#: sf_writer.xhp
+msgctxt ""
+"sf_writer.xhp\n"
+"hd_id501582887473754\n"
+"help.text"
+msgid "Methods"
+msgstr ""
+
+#. ioXEB
+#: sf_writer.xhp
+msgctxt ""
+"sf_writer.xhp\n"
+"par_id891611613601554\n"
+"help.text"
+msgid "List of Methods in the Writer Service"
+msgstr ""
+
+#. 3uC2J
+#: sf_writer.xhp
+msgctxt ""
+"sf_writer.xhp\n"
+"par_id501623063693649\n"
+"help.text"
+msgid "Depending on the parameters provided this method will return:"
+msgstr ""
+
+#. YpgWy
+#: sf_writer.xhp
+msgctxt ""
+"sf_writer.xhp\n"
+"par_id611623063742045\n"
+"help.text"
+msgid "A zero-based Array (or a tuple in Python) with the names of all the forms contained in the document (if the <literal>form</literal> argument is absent)"
+msgstr ""
+
+#. CNfBX
+#: sf_writer.xhp
+msgctxt ""
+"sf_writer.xhp\n"
+"par_id641623063744536\n"
+"help.text"
+msgid "A <literal>SFDocuments.Form</literal> service instance representing the form specified as argument."
+msgstr ""
+
+#. ULjtu
+#: sf_writer.xhp
+msgctxt ""
+"sf_writer.xhp\n"
+"par_id821623076570573\n"
+"help.text"
+msgid "This method is applicable only for Writer documents. Calc and Base documents have their own <literal>Forms</literal> method in the <link href=\"text/sbasic/shared/03/sf_calc.xhp#Forms\" name=\"Calc_Forms\">Calc</link> and <link href=\"text/sbasic/shared/03/sf_base.xhp#Forms\" name=\"Base_Forms\">Base</link> services, respectively."
+msgstr ""
+
+#. ty8pu
+#: sf_writer.xhp
+msgctxt ""
+"sf_writer.xhp\n"
+"par_id451623063459286\n"
+"help.text"
+msgid "<emph>form</emph>: The name or index corresponding to a form stored in the document. If this argument is absent, the method will return a list with the names of all forms available in the document."
+msgstr ""
+
+#. 7Ywp9
+#: sf_writer.xhp
+msgctxt ""
+"sf_writer.xhp\n"
+"par_id251623063305557\n"
+"help.text"
+msgid "In the following examples, the first line gets the names of all forms in the document and the second line retrieves the <literal>Form</literal> object of the form named \"Form_A\"."
+msgstr ""
+
+#. y684J
+#: sf_writer.xhp
+msgctxt ""
+"sf_writer.xhp\n"
+"par_id31592919577984\n"
+"help.text"
+msgid "Send the contents of the document to the printer. The printer may be previously defined by default, by the user or by the <link href=\"text/sbasic/03/sf_document.xhp#SetPrinter\" name=\"SetPrinter method\"><literal>SetPrinter</literal></link> method of the <link href=\"text/sbasic/03/sf_document.xhp\" name=\"Document service\">Document</link> service. Returns <literal>True</literal> when successful."
+msgstr ""
+
+#. CKDb5
+#: sf_writer.xhp
+msgctxt ""
+"sf_writer.xhp\n"
+"par_id441592919577809\n"
+"help.text"
+msgid "<emph>pages</emph>: The pages to print as a string, like in the user interface. Example: \"1-4;10;15-18\". Default = all pages"
+msgstr ""
+
+#. mYCkV
+#: sf_writer.xhp
+msgctxt ""
+"sf_writer.xhp\n"
+"par_id221636020923278\n"
+"help.text"
+msgid "<emph>copies</emph>: The number of copies, default is 1."
+msgstr ""
+
+#. aFEAa
+#: sf_writer.xhp
+msgctxt ""
+"sf_writer.xhp\n"
+"par_id121636020926764\n"
+"help.text"
+msgid "<emph>printbackground</emph>: Prints the background image when <literal>True</literal> (default)."
+msgstr ""
+
+#. D4krC
+#: sf_writer.xhp
+msgctxt ""
+"sf_writer.xhp\n"
+"par_id261636020927276\n"
+"help.text"
+msgid "<emph>printblankpages</emph>: When <literal>False</literal> (default), omits empty pages."
+msgstr ""
+
+#. LFSzm
+#: sf_writer.xhp
+msgctxt ""
+"sf_writer.xhp\n"
+"par_id021636020927484\n"
+"help.text"
+msgid "<emph>printevenpages</emph>: Prints even pages when <literal>True</literal> (default)."
+msgstr ""
+
+#. iewN5
+#: sf_writer.xhp
+msgctxt ""
+"sf_writer.xhp\n"
+"par_id391636020927676\n"
+"help.text"
+msgid "<emph>printoddpages</emph>: Print odd pages when <literal>True</literal> (default)."
+msgstr ""
+
+#. 4mYCT
+#: sf_writer.xhp
+msgctxt ""
+"sf_writer.xhp\n"
+"par_id121636021103996\n"
+"help.text"
+msgid "<emph>printimages</emph>: Print graphic objects when <literal>True</literal> (default)."
+msgstr ""
diff --git a/source/hsb/helpcontent2/source/text/scalc.po b/source/hsb/helpcontent2/source/text/scalc.po
new file mode 100644
index 00000000000..d4401b45470
--- /dev/null
+++ b/source/hsb/helpcontent2/source/text/scalc.po
@@ -0,0 +1,1663 @@
+#. extracted from helpcontent2/source/text/scalc
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2021-11-16 12:09+0100\n"
+"PO-Revision-Date: 2022-09-09 14:36+0000\n"
+"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
+"Language-Team: Upper Sorbian <https://translations.documentfoundation.org/projects/libo_help-master/textscalc/hsb/>\n"
+"Language: hsb\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: Weblate 4.12.2\n"
+
+#. ZxQeC
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Welcome to the $[officename] Calc Help"
+msgstr "Witajće k pomocy $[officename] Calc"
+
+#. PqA2G
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"hd_id3147338\n"
+"help.text"
+msgid "Welcome to the $[officename] Calc Help"
+msgstr "Witajće k pomocy $[officename] Calc"
+
+#. FATnT
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"hd_id3153965\n"
+"help.text"
+msgid "How to Work With $[officename] Calc"
+msgstr "Z $[officename] Calc dźěłać"
+
+#. hpSB8
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"par_id3147004\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=\"Lisćina funkcijow po kategoriji\">Lisćina funkcijow po kategoriji</link>"
+
+#. SBdpw
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"hd_id3154659\n"
+"help.text"
+msgid "$[officename] Calc Menus, Toolbars, and Keys"
+msgstr "Menije, symbolowe lajsty a tastowe skrótšenki w $[officename] Calc"
+
+#. aFUnY
+#: main0100.xhp
+msgctxt ""
+"main0100.xhp\n"
+"tit\n"
+"help.text"
+msgid "Menus"
+msgstr "Menije"
+
+#. JVoNZ
+#: main0100.xhp
+msgctxt ""
+"main0100.xhp\n"
+"hd_id3156023\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=\"Menije\">Menije</link></variable>"
+
+#. cbjYY
+#: main0100.xhp
+msgctxt ""
+"main0100.xhp\n"
+"par_id3154760\n"
+"help.text"
+msgid "The following menu commands are available for spreadsheets."
+msgstr "Slědowace menijowe přikazy su za tabelowe dokumenty k dispoziciji."
+
+#. PvGHJ
+#: main0101.xhp
+msgctxt ""
+"main0101.xhp\n"
+"tit\n"
+"help.text"
+msgid "File"
+msgstr "Dataja"
+
+#. 8jNU6
+#: main0101.xhp
+msgctxt ""
+"main0101.xhp\n"
+"hd_id3156023\n"
+"help.text"
+msgid "<link href=\"text/scalc/main0101.xhp\" name=\"File\">File</link>"
+msgstr "<link href=\"text/scalc/main0101.xhp\" name=\"Dataja\">Dataja</link>"
+
+#. GbpEY
+#: main0101.xhp
+msgctxt ""
+"main0101.xhp\n"
+"par_id3151112\n"
+"help.text"
+msgid "<ahelp hid=\".\">These commands apply to the current document, open a new document, or close the application.</ahelp>"
+msgstr "<ahelp hid=\".\">Tute přikazy za aktualny dokument płaća, wočinjeja nowy dokument abo začinjeja nałoženje.</ahelp>"
+
+#. 6hchv
+#: main0102.xhp
+msgctxt ""
+"main0102.xhp\n"
+"tit\n"
+"help.text"
+msgid "Edit"
+msgstr "Wobdźěłać"
+
+#. Ey57D
+#: main0102.xhp
+msgctxt ""
+"main0102.xhp\n"
+"hd_id3156023\n"
+"help.text"
+msgid "<link href=\"text/scalc/main0102.xhp\" name=\"Edit\">Edit</link>"
+msgstr "<link href=\"text/scalc/main0102.xhp\" name=\"Wobdźěłać\">Wobdźěłać</link>"
+
+#. cRq5f
+#: main0102.xhp
+msgctxt ""
+"main0102.xhp\n"
+"par_id3154758\n"
+"help.text"
+msgid "<ahelp hid=\".\">This menu contains commands for editing the contents of the current document.</ahelp>"
+msgstr "<ahelp hid=\".\">Tutón meni přikazy za wobdźěłowanje wobsaha aktualneho dokumenta wobsahuje.</ahelp>"
+
+#. p5xh3
+#: main0102.xhp
+msgctxt ""
+"main0102.xhp\n"
+"hd_id3146919\n"
+"help.text"
+msgid "<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">Links</link>"
+msgstr "<link href=\"text/shared/01/02180000.xhp\" name=\"Zwjazanja\">Zwjazanja</link>"
+
+#. pFCu3
+#: main0102.xhp
+msgctxt ""
+"main0102.xhp\n"
+"hd_id0914201502131542\n"
+"help.text"
+msgid "<link href=\"text/shared/01/02200000.xhp\" name=\"Object\">Object</link>"
+msgstr "<link href=\"text/shared/01/02200000.xhp\" name=\"Object\">Objekt</link>"
+
+#. zRW8E
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"tit\n"
+"help.text"
+msgid "View"
+msgstr "Napohlad"
+
+#. nYmdC
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id3151112\n"
+"help.text"
+msgid "<link href=\"text/scalc/main0103.xhp\" name=\"View\">View</link>"
+msgstr "<link href=\"text/scalc/main0103.xhp\" name=\"Napohlad\">Napohlad</link>"
+
+#. 6WV9e
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id3149456\n"
+"help.text"
+msgid "<ahelp hid=\".\">This menu contains commands for controlling the on-screen display of the document.</ahelp>"
+msgstr "<ahelp hid=\".\">Tutón meni přikazy za wodźenje pokazanja na wobrazowce dokumenta wobsahuje.</ahelp>"
+
+#. X7bcB
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_idN105AB\n"
+"help.text"
+msgid "Normal"
+msgstr "Normalny"
+
+#. s6GiY
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_idN105AF\n"
+"help.text"
+msgid "<ahelp hid=\".\">Displays the normal layout view of the sheet.</ahelp>"
+msgstr "<ahelp hid=\".\">Pokazuje normalny napohlad tabele.</ahelp>"
+
+#. tjNzu
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id102720151109097115\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/03100000.xhp\">Page Break</link>"
+msgstr "<link href=\"text/scalc/01/03100000.xhp\">Łamanje strony</link>"
+
+#. Hr8bk
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id10272015110909623\n"
+"help.text"
+msgid "View Grid lines"
+msgstr "Lěsyčne linije pokazać"
+
+#. TvxiA
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id102720151147483554\n"
+"help.text"
+msgid "Toggle the visibility of grid lines for the current sheet."
+msgstr "Přepinajće widźomnośc lěsyčnych linijow za aktualnu tabelu."
+
+#. ZPjKe
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id033020170228348624\n"
+"help.text"
+msgid "Show Formula"
+msgstr "Formlu pokazać"
+
+#. KRDBb
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id03302017024610704\n"
+"help.text"
+msgid "Display the cell formula expression instead of the calculated result."
+msgstr "Pokazajće celowy formlowy wuraz město wobličeneho wuslědka."
+
+#. N4CPL
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id241636195404363\n"
+"help.text"
+msgid "Comments"
+msgstr "Komentary"
+
+#. oPaHx
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id101636195413295\n"
+"help.text"
+msgid "Display the <link href=\"text/shared/01/04050000.xhp\" name=\"linkname\">cell comments</link> for the current spreadsheet document."
+msgstr "Pokazajće <link href=\"text/shared/01/04050000.xhp\" name=\"linkname\">celowe komentary</link> za aktualny tabelowy dokument."
+
+#. 95G2n
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id102720150908397549\n"
+"help.text"
+msgid "<link href=\"text/shared/01/gallery.xhp\">Gallery</link>"
+msgstr "<link href=\"text/shared/01/gallery.xhp\">Galerija</link>"
+
+#. 8MsyZ
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id102720151147488697\n"
+"help.text"
+msgid "<embedvar href=\"text/scalc/01/04080000.xhp#function_list_title\"/>"
+msgstr "<embedvar href=\"text/scalc/01/04080000.xhp#function_list_title\"/>"
+
+#. f3nqY
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id3125863\n"
+"help.text"
+msgid "<link href=\"text/shared/01/03010000.xhp\" name=\"Zoom\">Zoom</link>"
+msgstr "<link href=\"text/shared/01/03010000.xhp\" name=\"Měritko\">Měritko</link>"
+
+#. Dp7mC
+#: main0104.xhp
+msgctxt ""
+"main0104.xhp\n"
+"tit\n"
+"help.text"
+msgid "Insert"
+msgstr "Zasadźić"
+
+#. p4P57
+#: main0104.xhp
+msgctxt ""
+"main0104.xhp\n"
+"hd_id3157909\n"
+"help.text"
+msgid "<link href=\"text/scalc/main0104.xhp\" name=\"Insert\">Insert</link>"
+msgstr "<link href=\"text/scalc/main0104.xhp\" name=\"Zasadźić\">Zasadźić</link>"
+
+#. S38tX
+#: main0104.xhp
+msgctxt ""
+"main0104.xhp\n"
+"par_id3153896\n"
+"help.text"
+msgid "<ahelp hid=\".\">The <emph>Insert</emph> menu contains commands for inserting new elements, such as images, text boxes, object, media, cell names and much more into the current sheet.</ahelp>"
+msgstr "<ahelp hid=\".\">Meni <emph>Zasadźić</emph> přikazy za zasadźowanje nowych elementow do aktualneje tabele wobsahuje, na přikład wobrazy, tekstowe pola, objekty, medije, celowe mjena a wjele wjace.</ahelp>"
+
+#. ZmgWG
+#: main0104.xhp
+msgctxt ""
+"main0104.xhp\n"
+"hd_id3146918\n"
+"help.text"
+msgid "<link href=\"text/schart/01/wiz_chart_type.xhp\" name=\"Chart\">Chart</link>"
+msgstr "<link href=\"text/schart/01/wiz_chart_type.xhp\" name=\"Chart\">Diagram</link>"
+
+#. QKdUC
+#: main0104.xhp
+msgctxt ""
+"main0104.xhp\n"
+"par_id0302200904002496\n"
+"help.text"
+msgid "Inserts a chart."
+msgstr "Zasadźuje diagram."
+
+#. beJfB
+#: main0104.xhp
+msgctxt ""
+"main0104.xhp\n"
+"hd_id3147003\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=\"Znošowacy so wobłuk\">Znošowacy so wobłuk</link>"
+
+#. bAHCA
+#: main0104.xhp
+msgctxt ""
+"main0104.xhp\n"
+"hd_id3156285\n"
+"help.text"
+msgid "<link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink\">Hyperlink</link>"
+msgstr "<link href=\"text/shared/02/09070000.xhp\" name=\"hyperwotkaz\">Hyperwotkaz</link>"
+
+#. iAa73
+#: main0104.xhp
+msgctxt ""
+"main0104.xhp\n"
+"hd_id3153726\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=\"Wosebite znamješko\">Wosebite znamješko</link>"
+
+#. FvWya
+#: main0104.xhp
+msgctxt ""
+"main0104.xhp\n"
+"hd_id761577295440343\n"
+"help.text"
+msgid "Date"
+msgstr "Datum"
+
+#. kzxk7
+#: main0104.xhp
+msgctxt ""
+"main0104.xhp\n"
+"par_id11577295470732\n"
+"help.text"
+msgid "Inserts the current date in the cell."
+msgstr "Zasadźuje aktualny datum do cele."
+
+#. hvV2C
+#: main0104.xhp
+msgctxt ""
+"main0104.xhp\n"
+"hd_id131577295445736\n"
+"help.text"
+msgid "Time"
+msgstr "Čas"
+
+#. jTQVa
+#: main0104.xhp
+msgctxt ""
+"main0104.xhp\n"
+"par_id91577295463980\n"
+"help.text"
+msgid "Inserts the current time in the cell."
+msgstr "Zasadźuje aktualny čas do cele."
+
+#. CzRJY
+#: main0104.xhp
+msgctxt ""
+"main0104.xhp\n"
+"hd_id621577296064493\n"
+"help.text"
+msgid "Field"
+msgstr "Polo"
+
+#. 3EmAu
+#: main0104.xhp
+msgctxt ""
+"main0104.xhp\n"
+"par_id391577296078546\n"
+"help.text"
+msgid "Opens a submenu for selecting the date, sheet name or document title in the cell."
+msgstr "Wočinja podmeni, z kotrehož móžeće datum, mjeno tabele abo titul dokumenta w celi wubrać."
+
+#. JP4tR
+#: main0105.xhp
+msgctxt ""
+"main0105.xhp\n"
+"tit\n"
+"help.text"
+msgid "Format"
+msgstr "Format"
+
+#. 9tCac
+#: main0105.xhp
+msgctxt ""
+"main0105.xhp\n"
+"hd_id3149669\n"
+"help.text"
+msgid "<link href=\"text/scalc/main0105.xhp\" name=\"Format\">Format</link>"
+msgstr "<link href=\"text/scalc/main0105.xhp\" name=\"Format\">Format</link>"
+
+#. vqHQK
+#: main0105.xhp
+msgctxt ""
+"main0105.xhp\n"
+"par_id3145171\n"
+"help.text"
+msgid "<ahelp hid=\".\">The <emph>Format</emph> menu contains commands for formatting selected cells, <link href=\"text/shared/00/00000005.xhp#object\" name=\"objects\">objects</link>, and cell contents in your document.</ahelp>"
+msgstr "<ahelp hid=\".\">Meni <emph>Format</emph> přikazy za formatowanje wubranych celow, <link href=\"text/shared/00/00000005.xhp#object\" name=\"objects\">objektow</link> a celoweho wobsaha we wašim dokumenće wobsahuje.</ahelp>"
+
+#. Ly37n
+#: main0105.xhp
+msgctxt ""
+"main0105.xhp\n"
+"hd_id3154732\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/05020000.xhp\" name=\"Cells\">Cells</link>"
+msgstr "<link href=\"text/scalc/01/05020000.xhp\" name=\"Cells\">Cele</link>"
+
+#. 2T8EY
+#: main0105.xhp
+msgctxt ""
+"main0105.xhp\n"
+"hd_id3145748\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Character</link>"
+msgstr "<link href=\"text/shared/01/05020000.xhp\" name=\"Znamješko\">Znamješko</link>"
+
+#. HiDBe
+#: main0105.xhp
+msgctxt ""
+"main0105.xhp\n"
+"hd_id3154485\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Paragraph</link>"
+msgstr "<link href=\"text/shared/01/05030000.xhp\" name=\"Wotstawk\">Wotstawk</link>"
+
+#. FDive
+#: main0105.xhp
+msgctxt ""
+"main0105.xhp\n"
+"hd_id3157980\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/05110000.xhp\" name=\"AutoFormat\">AutoFormat</link>"
+msgstr "<link href=\"text/scalc/01/05110000.xhp\" name=\"AwtoFormat\">AwtoFormat</link>"
+
+#. f5qPr
+#: main0105.xhp
+msgctxt ""
+"main0105.xhp\n"
+"hd_id3159206\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/05120000.xhp\" name=\"Conditional Formatting\">Conditional Formatting</link>"
+msgstr "<link href=\"text/scalc/01/05120000.xhp\" name=\"Conditional Formatting\">Wuměnjene formatowanje</link>"
+
+#. RugVk
+#: main0105.xhp
+msgctxt ""
+"main0105.xhp\n"
+"hd_id3154703\n"
+"help.text"
+msgid "<link href=\"text/shared/02/01170100.xhp\" name=\"Control\">Control</link>"
+msgstr "<link href=\"text/shared/02/01170100.xhp\" name=\"Control\">Wodźenski element</link>"
+
+#. ejmDA
+#: main0105.xhp
+msgctxt ""
+"main0105.xhp\n"
+"hd_id3147005\n"
+"help.text"
+msgid "<link href=\"text/shared/02/01170200.xhp\" name=\"Form\">Form</link>"
+msgstr "<link href=\"text/shared/02/01170200.xhp\" name=\"Form\">Formular</link>"
+
+#. r9nLs
+#: main0106.xhp
+msgctxt ""
+"main0106.xhp\n"
+"tit\n"
+"help.text"
+msgid "Tools"
+msgstr "Nastroje"
+
+#. J2ACm
+#: main0106.xhp
+msgctxt ""
+"main0106.xhp\n"
+"hd_id3150769\n"
+"help.text"
+msgid "<link href=\"text/scalc/main0106.xhp\" name=\"Tools\">Tools</link>"
+msgstr "<link href=\"text/scalc/main0106.xhp\" name=\"Nastroje\">Nastroje</link>"
+
+#. NwgnB
+#: main0106.xhp
+msgctxt ""
+"main0106.xhp\n"
+"par_id3150440\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 "<ahelp hid=\".\">Meni <emph>Nastroje</emph> přikazy za prawopisnu kontrolu, za slědowanje tabelowych referencow, za namakanje zmylkow a za definowanje scenarijow wobsahuje.</ahelp>"
+
+#. NkvRH
+#: main0106.xhp
+msgctxt ""
+"main0106.xhp\n"
+"par_id3152576\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 "Móžeće tež makra wutworić a připokazać a napohlad symbolowych lajstow, menijow, tastatury konfigurować a standardne nastajenja za nałoženja $[officename] postajić."
+
+#. eoAXH
+#: 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\">Nastajenja awtomatiskeje korektury</link>"
+
+#. eAavz
+#: main0106.xhp
+msgctxt ""
+"main0106.xhp\n"
+"hd_id3148488\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\">Wobrazowa karta</link>"
+
+#. ToZU6
+#: main0106.xhp
+msgctxt ""
+"main0106.xhp\n"
+"hd_id3149122\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\">Pytanje cilowych hódnotow</link>"
+
+#. MzvSo
+#: main0106.xhp
+msgctxt ""
+"main0106.xhp\n"
+"hd_id3155768\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\">Scenarije</link>"
+
+#. SbKoe
+#: main0106.xhp
+msgctxt ""
+"main0106.xhp\n"
+"hd_id3150086\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06140000.xhp\" name=\"Customize\">Customize</link>"
+msgstr "<link href=\"text/shared/01/06140000.xhp\" name=\"Přiměrić\">Přiměrić</link>"
+
+#. KRfJh
+#: main0107.xhp
+msgctxt ""
+"main0107.xhp\n"
+"tit\n"
+"help.text"
+msgid "Window"
+msgstr "Wokno"
+
+#. chBA8
+#: main0107.xhp
+msgctxt ""
+"main0107.xhp\n"
+"hd_id3154758\n"
+"help.text"
+msgid "<link href=\"text/scalc/main0107.xhp\" name=\"Window\">Window</link>"
+msgstr "<link href=\"text/scalc/main0107.xhp\" name=\"Wokno\">Wokno</link>"
+
+#. 9UWue
+#: main0107.xhp
+msgctxt ""
+"main0107.xhp\n"
+"par_id3150398\n"
+"help.text"
+msgid "<ahelp hid=\".\">Contains commands for manipulating and displaying document windows.</ahelp>"
+msgstr "<ahelp hid=\".\">Wobsahuje přikazy za wobchadźenje z dokumentowymi woknami a za jich pokazanje.</ahelp>"
+
+#. RHWHH
+#: main0112.xhp
+msgctxt ""
+"main0112.xhp\n"
+"tit\n"
+"help.text"
+msgid "Data"
+msgstr "Daty"
+
+#. oCLhW
+#: main0112.xhp
+msgctxt ""
+"main0112.xhp\n"
+"hd_id3153254\n"
+"help.text"
+msgid "<link href=\"text/scalc/main0112.xhp\" name=\"Data\">Data</link>"
+msgstr "<link href=\"text/scalc/main0112.xhp\" name=\"Daty\">Daty</link>"
+
+#. gxhqm
+#: main0112.xhp
+msgctxt ""
+"main0112.xhp\n"
+"par_id3147264\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 "<ahelp hid=\".\">Wužiwajće přikazy menija <emph>Daty</emph>, zo byšće daty w aktualnej tabeli wobdźěłował. Móžeće wobłuki definować, daty sortěrować a filtrować, wuslědki wuličić, daty rozrjadować a pivotowu tabelu wutworić.</ahelp>"
+
+#. BDFbQ
+#: main0112.xhp
+msgctxt ""
+"main0112.xhp\n"
+"hd_id231633127579389\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/live_data_stream.xhp\" name=\"Streams_link\">Streams</link>"
+msgstr "<link href=\"text/scalc/01/live_data_stream.xhp\" name=\"Streams_link\">Prudy</link>"
+
+#. efuyu
+#: main0116.xhp
+msgctxt ""
+"main0116.xhp\n"
+"tit\n"
+"help.text"
+msgid "Sheet"
+msgstr "Tabela"
+
+#. 7eVaK
+#: main0116.xhp
+msgctxt ""
+"main0116.xhp\n"
+"hd_id0906201507390173\n"
+"help.text"
+msgid "<link href=\"text/scalc/main0116.xhp\">Sheet</link>"
+msgstr "<link href=\"text/scalc/main0116.xhp\">Tabela</link>"
+
+#. cLyep
+#: main0116.xhp
+msgctxt ""
+"main0116.xhp\n"
+"par_id0906201507414091\n"
+"help.text"
+msgid "<ahelp hid=\".\">This menu contains commands to modify and manage a sheet and its elements.</ahelp>"
+msgstr "<ahelp hid=\".\">Tutón meni přikazy wobsahuje, z kotrymiž móžeće tabelu a jeje elementy změnić a rjadować.</ahelp>"
+
+#. qH2va
+#: main0116.xhp
+msgctxt ""
+"main0116.xhp\n"
+"par_id0906201507414191\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04030000.xhp\" name=\"Insert Rows\">Insert Rows</link>"
+msgstr "<link href=\"text/scalc/01/04030000.xhp\" name=\"Insert Rows\">Linki zasadźić</link>"
+
+#. VWDbt
+#: main0116.xhp
+msgctxt ""
+"main0116.xhp\n"
+"par_id0906201507414192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04040000.xhp\" name=\"Insert Columns\">Insert Columns</link>"
+msgstr "<link href=\"text/scalc/01/04040000.xhp\" name=\"Insert Columns\">Špalty zasadźić</link>"
+
+#. rkoqn
+#: main0116.xhp
+msgctxt ""
+"main0116.xhp\n"
+"hd_id3150792\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/02180000.xhp\" name=\"Move/Copy\">Move or Copy Sheet</link>"
+msgstr "<link href=\"text/scalc/01/02180000.xhp\" name=\"Move/Copy\">Tabelu přesunyć abo kopěrować</link>"
+
+#. sugSD
+#: main0116.xhp
+msgctxt ""
+"main0116.xhp\n"
+"hd_id3153968\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/05050300.xhp\" name=\"Show\">Show Sheet</link>"
+msgstr "<link href=\"text/scalc/01/05050300.xhp\" name=\"Show\">Tabelu pokazać</link>"
+
+#. EF3XK
+#: main0116.xhp
+msgctxt ""
+"main0116.xhp\n"
+"hd_id3163708\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/02170000.xhp\" name=\"Delete\">Delete Sheet</link>"
+msgstr "<link href=\"text/scalc/01/02170000.xhp\" name=\"Delete\">Tabelu zhašeć</link>"
+
+#. wbNHt
+#: main0116.xhp
+msgctxt ""
+"main0116.xhp\n"
+"hd_id3163735308\n"
+"help.text"
+msgid "Sheet Tab Color"
+msgstr "Barba tabeloweho rajtarka"
+
+#. BosLg
+#: main0116.xhp
+msgctxt ""
+"main0116.xhp\n"
+"hd_id3163733308\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06140500.xhp\" name=\"Events\">Sheet Events</link>"
+msgstr "<link href=\"text/shared/01/06140500.xhp\" name=\"Events\">Tabelowe podawki</link>"
+
+#. 5DRv5
+#: main0200.xhp
+msgctxt ""
+"main0200.xhp\n"
+"tit\n"
+"help.text"
+msgid "Toolbars"
+msgstr "Symbolowe lajsty"
+
+#. mUvzp
+#: main0200.xhp
+msgctxt ""
+"main0200.xhp\n"
+"hd_id3154758\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=\"Symbolowe lajsty\">Symbolowe lajsty</link></variable>"
+
+#. yvzAm
+#: main0200.xhp
+msgctxt ""
+"main0200.xhp\n"
+"par_id3148798\n"
+"help.text"
+msgid "This submenu lists the toolbars that are available in spreadsheets. This overview describes the default toolbar configuration for %PRODUCTNAME."
+msgstr "Tutón podmeni symbolowe lajsty nalistuje, kotrež su w tabelowych dokumentach k dispoziciji. Přehlad standardnu konfiguraciju symboloweje lajsty za %PRODUCTNAME wopisuje."
+
+#. XUCUB
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"tit\n"
+"help.text"
+msgid "Formatting Bar"
+msgstr "Symbolowa lajsta Formatowanje"
+
+#. 8XR93
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"hd_id3150448\n"
+"help.text"
+msgid "<link href=\"text/scalc/main0202.xhp\" name=\"Formatting Bar\">Formatting Bar</link>"
+msgstr "<link href=\"text/scalc/main0202.xhp\" name=\"Symbolowa lajsta Formatowanje\">Symbolowa lajsta Formatowanje</link>"
+
+#. ayoCz
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"par_id3153897\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\">Symbolowa lajsta <emph>Formatowanje</emph> zakładne přikazy wobsahuje, z kotrymiž móžeće manuelnje formatować.</ahelp>"
+
+#. Arm5j
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"hd_id3153160\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\">Pismowa barba…</link>"
+
+#. Skg7A
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"hd_id3150715\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\">Nalěwo wusměrić</link>"
+
+#. 7BZfP
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"hd_id3155064\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\">Horicontalnje centrować</link>"
+
+#. Qz94y
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"hd_id3150042\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 Left\">Naprawo wusměrić</link>"
+
+#. UzBac
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"hd_id3154703\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\">Blokowa sadźba</link>"
+
+#. RB8dx
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"hd_id3152986\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\">Horjeka wusměrić</link>"
+
+#. 6jCFX
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"hd_id3153306\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\">Wertikalnje centrować</link>"
+
+#. VsDGR
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"hd_id3151240\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\">Deleka wusměrić</link>"
+
+#. GFJrp
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"par_idN10843\n"
+"help.text"
+msgid "Number Format : Date"
+msgstr "Ličbny format: Datum"
+
+#. jPLVg
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"par_idN10847\n"
+"help.text"
+msgid "<ahelp hid=\".\">Applies the date format to the selected cells.</ahelp>"
+msgstr "<ahelp hid=\".\">Nałožuje datumowy format na wubrane cele.</ahelp>"
+
+#. EpBYF
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"par_idN1085E\n"
+"help.text"
+msgid "Number Format: Exponential"
+msgstr "Ličbny format: Eksponencielny"
+
+#. aA3sM
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"par_idN10862\n"
+"help.text"
+msgid "<ahelp hid=\".\">Applies the exponential format to the selected cells.</ahelp>"
+msgstr "<ahelp hid=\".\">Nałožuje eksponencielny format na wubrane cele.</ahelp>"
+
+#. 8BDJe
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"par_idN10871\n"
+"help.text"
+msgid "Additional icons"
+msgstr "Přidatne symbole"
+
+#. BdMnG
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"par_idN10875\n"
+"help.text"
+msgid "If <link href=\"text/shared/00/00000005.xhp#ctl\" name=\"CTL\">CTL</link> support is enabled, two additional icons are visible."
+msgstr "Jeli podpěra <link href=\"text/shared/00/00000005.xhp#ctl\" name=\"CTL\">CTL</link> je zmóžnjena, stej dwaj přidatnej symbolej widźomnej."
+
+#. Ft8vF
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"par_idN1088E\n"
+"help.text"
+msgid "Left-To-Right"
+msgstr "Wotlěwa doprawa"
+
+#. vX3LE
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"par_idN1089C\n"
+"help.text"
+msgid "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id8354747\">left to right icon</alt></image>"
+msgstr "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id8354747\">Symbol za wotlěwa doprawa</alt></image>"
+
+#. PJwTW
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"par_idN108BA\n"
+"help.text"
+msgid "<ahelp hid=\".uno:ParaLeftToRight\">The text is entered from left to right.</ahelp>"
+msgstr "<ahelp hid=\".uno:ParaLeftToRight\">Tekst so wotlěwa doprawa zapodawa.</ahelp>"
+
+#. HfCDq
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"par_idN108D1\n"
+"help.text"
+msgid "Right-To-Left"
+msgstr "Wotprawa dolěwa"
+
+#. mfrZi
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"par_idN108DF\n"
+"help.text"
+msgid "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id2405774\">right to left icon</alt></image>"
+msgstr "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id2405774\">Symbol za wotprawa dolěwa</alt></image>"
+
+#. fjLD6
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"par_idN108FD\n"
+"help.text"
+msgid "<ahelp hid=\".uno:ParaRightToLeft\">The text formatted in a complex text layout language is entered from right to left.</ahelp>"
+msgstr "<ahelp hid=\".uno:ParaRightToLeft\">Tekst, kotryž je so w kompleksnej rěči tekstoweho wuhotowanja sformatował, so wotprawa dolěwa zapodawa.</ahelp>"
+
+#. NVkBC
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"par_id192266\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Aligns the contents of the cell to the left.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Wusměrjuje wobsah cele nalěwo.</ahelp>"
+
+#. rfUHM
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"par_id1998962\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Aligns the contents of the cell to the right.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Wusměrjuje wobsah cele naprawo.</ahelp>"
+
+#. ZdwVC
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"par_id2376476\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Horizontally centers the contents of the cell.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Centruje wobsah cele horicontalnje.</ahelp>"
+
+#. bHQCG
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"par_id349131\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Aligns the contents of the cell to the left and right cell borders.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Wusměrjuje wobsah cele na lěwej a prawej kromje.</ahelp>"
+
+#. GmxHK
+#: main0203.xhp
+msgctxt ""
+"main0203.xhp\n"
+"tit\n"
+"help.text"
+msgid "Drawing Object Properties Bar"
+msgstr "Symbolowa lajsta Kajkosće rysowanskeho objekta"
+
+#. ddCKC
+#: main0203.xhp
+msgctxt ""
+"main0203.xhp\n"
+"hd_id3154346\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\">Symbolowa lajsta Kajkosće rysowanskeho objekta</link>"
+
+#. BHsxU
+#: main0203.xhp
+msgctxt ""
+"main0203.xhp\n"
+"par_id3149656\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\">Symbolowa lajsta <emph>Kajkosće rysowanskeho objekta</emph> za objekty, kotrež w tabeli wuběraće, přikazy za formatowanje a wusměrjenje wobsahuje.</ahelp>"
+
+#. ypZAt
+#: main0203.xhp
+msgctxt ""
+"main0203.xhp\n"
+"hd_id3145748\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=\"Linijowy stil\">Linijowy stil</link>"
+
+#. GJLtq
+#: main0203.xhp
+msgctxt ""
+"main0203.xhp\n"
+"hd_id3151073\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=\"linijowa šěrokosć\">Linijowa šěrokosć</link>"
+
+#. J3HZu
+#: main0203.xhp
+msgctxt ""
+"main0203.xhp\n"
+"hd_id3153417\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=\"linijowa barba\">Linijowa barba</link>"
+
+#. DAGaR
+#: main0203.xhp
+msgctxt ""
+"main0203.xhp\n"
+"hd_id3147338\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\">Pozadkowa barba</link>"
+
+#. BgP3b
+#: main0205.xhp
+msgctxt ""
+"main0205.xhp\n"
+"tit\n"
+"help.text"
+msgid "Text Formatting Bar"
+msgstr "Symbolowa lajsta Tekstowe formatowanje"
+
+#. tCQyT
+#: main0205.xhp
+msgctxt ""
+"main0205.xhp\n"
+"hd_id3156330\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\">Symbolowa lajsta Tekstowe formatowanje</link>"
+
+#. h55fM
+#: main0205.xhp
+msgctxt ""
+"main0205.xhp\n"
+"par_id3151112\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 box or a drawing object, contains formatting and alignment commands.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_TOOLBOX_DRTEXT\">Symbolowa lajsta <emph>Tekstowe formatowanje</emph>, kotraž so pokazuje, hdyž kursor je w tekstowym objekće, na přikład w tekstowym polu abo rysowanskim objekće, přikazy za formatowanje a wusměrjenje wobsahuje.</ahelp>"
+
+#. qzSkC
+#: main0205.xhp
+msgctxt ""
+"main0205.xhp\n"
+"hd_id3148575\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\">Pismowa barba</link>"
+
+#. ZZMCx
+#: main0205.xhp
+msgctxt ""
+"main0205.xhp\n"
+"hd_id3154944\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\">Linkowy wotstup: 1</link>"
+
+#. wnVww
+#: main0205.xhp
+msgctxt ""
+"main0205.xhp\n"
+"hd_id3146969\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\">Linkowy wotstup: 1,5</link>"
+
+#. AUwKK
+#: main0205.xhp
+msgctxt ""
+"main0205.xhp\n"
+"hd_id3153711\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\">Linkowy wotstup: 2</link>"
+
+#. GB3jJ
+#: main0205.xhp
+msgctxt ""
+"main0205.xhp\n"
+"hd_id3147345\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\">Nalěwo wusměrić</link>"
+
+#. DUWnb
+#: main0205.xhp
+msgctxt ""
+"main0205.xhp\n"
+"hd_id3155337\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\">Centrowany</link>"
+
+#. 26EW2
+#: main0205.xhp
+msgctxt ""
+"main0205.xhp\n"
+"hd_id3147001\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\">Naprawo wusměrić</link>"
+
+#. ipyGL
+#: main0205.xhp
+msgctxt ""
+"main0205.xhp\n"
+"hd_id3155115\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\">Blokowa sadźba</link>"
+
+#. 3b4ep
+#: main0205.xhp
+msgctxt ""
+"main0205.xhp\n"
+"hd_id3150202\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\">Wysokostajeny</link>"
+
+#. crEFA
+#: main0205.xhp
+msgctxt ""
+"main0205.xhp\n"
+"hd_id3155531\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\">Hłubokostajeny</link>"
+
+#. QLvQy
+#: main0205.xhp
+msgctxt ""
+"main0205.xhp\n"
+"hd_id3145387\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Character</link>"
+msgstr "<link href=\"text/shared/01/05020000.xhp\" name=\"Znamješko\">Znamješko</link>"
+
+#. XCyBD
+#: main0205.xhp
+msgctxt ""
+"main0205.xhp\n"
+"hd_id3153067\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\">Wotstawk</link>"
+
+#. EDAGh
+#: main0206.xhp
+msgctxt ""
+"main0206.xhp\n"
+"tit\n"
+"help.text"
+msgid "Formula Bar"
+msgstr "Formlowa lajsta"
+
+#. Bnx9x
+#: main0206.xhp
+msgctxt ""
+"main0206.xhp\n"
+"hd_id3147264\n"
+"help.text"
+msgid "<link href=\"text/scalc/main0206.xhp\" name=\"Formula Bar\">Formula Bar</link>"
+msgstr "<link href=\"text/scalc/main0206.xhp\" name=\"Formlowa lajsta\">Formlowa lajsta</link>"
+
+#. dnFAk
+#: main0206.xhp
+msgctxt ""
+"main0206.xhp\n"
+"par_id3150400\n"
+"help.text"
+msgid "<ahelp hid=\"HID_SC_INPUTWIN\">Use this bar to enter formulas.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_INPUTWIN\">Wužiwajće tutu lajstu, zo byšće formle zapodał.</ahelp>"
+
+#. CG7Dj
+#: main0208.xhp
+msgctxt ""
+"main0208.xhp\n"
+"tit\n"
+"help.text"
+msgid "Status Bar"
+msgstr "Statusowa lajsta"
+
+#. 8RA34
+#: main0208.xhp
+msgctxt ""
+"main0208.xhp\n"
+"hd_id3151385\n"
+"help.text"
+msgid "<link href=\"text/scalc/main0208.xhp\" name=\"Status Bar\">Status Bar</link>"
+msgstr "<link href=\"text/scalc/main0208.xhp\" name=\"Statusowa lajsta\">Statusowa lajsta</link>"
+
+#. QDPFj
+#: main0208.xhp
+msgctxt ""
+"main0208.xhp\n"
+"par_id3149669\n"
+"help.text"
+msgid "The <emph>Status Bar</emph> displays information about the current sheet."
+msgstr "<emph>Statusowa lajsta</emph> informacije wo aktualnej tabeli pokazuje."
+
+#. nct5g
+#: main0208.xhp
+msgctxt ""
+"main0208.xhp\n"
+"hd_id0821200911024321\n"
+"help.text"
+msgid "Digital Signature"
+msgstr "Digitalna signatura"
+
+#. buUJc
+#: main0208.xhp
+msgctxt ""
+"main0208.xhp\n"
+"par_id0821200911024344\n"
+"help.text"
+msgid "See also <link href=\"text/shared/guide/digital_signatures.xhp\">Digital Signatures</link>."
+msgstr "Hlejće tež <link href=\"text/shared/guide/digital_signatures.xhp\">Digitalne signatury</link>."
+
+#. iEc7h
+#: main0210.xhp
+msgctxt ""
+"main0210.xhp\n"
+"tit\n"
+"help.text"
+msgid "Print Preview Bar"
+msgstr "Symbolowa lajsta Ćišćerski přehlad"
+
+#. LiLyF
+#: main0210.xhp
+msgctxt ""
+"main0210.xhp\n"
+"hd_id3156023\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=\"Print Preview Bar\">Symbolowa lajsta Ćišćerski přehlad</link>"
+
+#. sMDPh
+#: main0210.xhp
+msgctxt ""
+"main0210.xhp\n"
+"par_id3148663\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\">Symbolowa lajsta <emph>Ćišćerski přehlad</emph> so pokazuje, hdyž <emph>Dataja – Ćišćerski přehlad</emph> wuběraće.</ahelp>"
+
+#. FEZVG
+#: main0210.xhp
+msgctxt ""
+"main0210.xhp\n"
+"hd_id3147393\n"
+"help.text"
+msgid "Full Screen"
+msgstr "Połna wobrazowka"
+
+#. c2cjB
+#: main0210.xhp
+msgctxt ""
+"main0210.xhp\n"
+"par_id460828\n"
+"help.text"
+msgid "Hides the menus and toolbars. To exit the full screen mode, click the <emph>Full Screen</emph> button."
+msgstr "Chowa menije a symbolowe lajsty. Zo byšće modus połneje wobrazowki wopušćił, klikńće na tłóčatko <emph>Połna wobrazowka</emph>."
+
+#. owxGd
+#: main0210.xhp
+msgctxt ""
+"main0210.xhp\n"
+"hd_id3147394\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=\"Format Page\">Stronu formatować</link>"
+
+#. w9KJc
+#: main0210.xhp
+msgctxt ""
+"main0210.xhp\n"
+"hd_id3147494\n"
+"help.text"
+msgid "Margins"
+msgstr "Kromy"
+
+#. cEsD4
+#: main0210.xhp
+msgctxt ""
+"main0210.xhp\n"
+"par_id460929\n"
+"help.text"
+msgid "Shows or hides margins of the page. Margins can be dragged by the mouse, and also can be set on <emph>Page</emph> tab of <emph>Page Style</emph> dialog."
+msgstr "Pokazuje abo chowa kromy strony. Kromy dadźa so z myšku ćahnyć, a dadźa so tež w rajtarku <emph>Strona</emph> dialoga <emph>Předłoha strony</emph> nastajić."
+
+#. NsZqF
+#: main0210.xhp
+msgctxt ""
+"main0210.xhp\n"
+"hd_id3245494\n"
+"help.text"
+msgid "Scaling Factor"
+msgstr "Skalowanski faktor"
+
+#. YZA55
+#: main0210.xhp
+msgctxt ""
+"main0210.xhp\n"
+"par_id460939\n"
+"help.text"
+msgid "This slide defines a page scale for the printed spreadsheet. Scaling factor can be set on <emph>Sheet</emph> tab of <emph>Page Style</emph> dialog, too."
+msgstr "Tutón suwak měritko strony za wućišćany tabelowy dokument definuje. Skalowanski faktor da so tež w rajtarku <emph>Tabela</emph> dialoga <emph>Předłoha strony</emph> nastajić."
+
+#. GFMWr
+#: main0210.xhp
+msgctxt ""
+"main0210.xhp\n"
+"hd_id3147395\n"
+"help.text"
+msgid "Close Preview"
+msgstr "Přehlad začinić"
+
+#. kL6Ds
+#: main0210.xhp
+msgctxt ""
+"main0210.xhp\n"
+"par_id460829\n"
+"help.text"
+msgid "To exit the print preview, click the <emph>Close Preview</emph> button."
+msgstr "Zo byšće ćišćerski přehlad wopušćił, klikńće na tłóčatko <emph>Přehlad začinić</emph>."
+
+#. kTaqi
+#: main0214.xhp
+msgctxt ""
+"main0214.xhp\n"
+"tit\n"
+"help.text"
+msgid "Image Bar"
+msgstr "Symbolowa lajsta Wobraz"
+
+#. bZuGP
+#: main0214.xhp
+msgctxt ""
+"main0214.xhp\n"
+"hd_id3153088\n"
+"help.text"
+msgid "<link href=\"text/scalc/main0214.xhp\" name=\"Image Bar\">Image Bar</link>"
+msgstr "<link href=\"text/scalc/main0214.xhp\" name=\"Image Bar\">Symbolowa lajsta Wobraz</link>"
+
+#. MnQUQ
+#: main0214.xhp
+msgctxt ""
+"main0214.xhp\n"
+"par_id3153896\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=\".\">Symbolowa lajsta <emph>Wobraz</emph> so pokazuje, hdyž wobraz do tabele zasadźeće abo wuběraće.</ahelp>"
+
+#. JKNbf
+#: main0218.xhp
+msgctxt ""
+"main0218.xhp\n"
+"tit\n"
+"help.text"
+msgid "Tools Bar"
+msgstr "Symbolowa lajsta Nastroje"
+
+#. FkEmk
+#: main0218.xhp
+msgctxt ""
+"main0218.xhp\n"
+"hd_id3143268\n"
+"help.text"
+msgid "<link href=\"text/scalc/main0218.xhp\" name=\"Tools Bar\">Tools Bar</link>"
+msgstr "<link href=\"text/scalc/main0218.xhp\" name=\"Symbolowa lajsta Nastroje\">Symbolowa lajsta Nastroje</link>"
+
+#. nSzQ3
+#: main0218.xhp
+msgctxt ""
+"main0218.xhp\n"
+"par_id3151112\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\">Wužiwajće symbolowu lajstu Nastroje za přistup k husto trěbnym přikazam.</ahelp>"
+
+#. muQ5j
+#: main0218.xhp
+msgctxt ""
+"main0218.xhp\n"
+"par_idN10610\n"
+"help.text"
+msgid "<link href=\"text/shared/02/01170000.xhp\" name=\"Controls\">Controls</link>"
+msgstr "<link href=\"text/shared/02/01170000.xhp\" name=\"Controls\">Wodźenske elementy</link>"
+
+#. rXyMx
+#: main0218.xhp
+msgctxt ""
+"main0218.xhp\n"
+"hd_id3154730\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\">Drasty wubrać</link>"
+
+#. 3hmW7
+#: main0218.xhp
+msgctxt ""
+"main0218.xhp\n"
+"par_idN10690\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\">Rozšěrjeny filter</link>"
+
+#. NgA6E
+#: main0218.xhp
+msgctxt ""
+"main0218.xhp\n"
+"par_idN106A8\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/12090100.xhp\">Start</link>"
+msgstr "<link href=\"text/scalc/01/12090100.xhp\">Startować</link>"
+
+#. AauQw
+#: main0218.xhp
+msgctxt ""
+"main0218.xhp\n"
+"par_idN106C0\n"
+"help.text"
+msgid "<link href=\"text/shared/autopi/01150000.xhp\" name=\"Euro Converter\">Euro Converter</link>"
+msgstr "<link href=\"text/shared/autopi/01150000.xhp\" name=\"Euro Converter\">Eurokonwerter</link>"
+
+#. Eu4wD
+#: main0218.xhp
+msgctxt ""
+"main0218.xhp\n"
+"par_idN106D8\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04070100.xhp\">Define</link>"
+msgstr "<link href=\"text/scalc/01/04070100.xhp\">Definować</link>"
+
+#. HyrGS
+#: main0218.xhp
+msgctxt ""
+"main0218.xhp\n"
+"par_idN106F0\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\">Pytanje cilowych hódnotow</link>"
+
+#. Fky5g
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"tit\n"
+"help.text"
+msgid "$[officename] Calc Features"
+msgstr "Funkcije $[officename] Calc"
+
+#. NJ9KT
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"hd_id3154758\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=\"Funkcije $[officename] Calc\">Funkcije $[officename] Calc</link></variable>"
+
+#. ztyoG
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"par_id3149457\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] je tabelowa kalkulacija, kotruž móžeće wužiwać, zo byšće swoje daty wobličił, analyzował a rjadował. Móžeće tež tabelowe dokumenty Microsoft Excel importować a změnić."
+
+#. 6iQ5x
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"hd_id3148797\n"
+"help.text"
+msgid "Calculations"
+msgstr "Wobličenja"
+
+#. uiaMX
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"par_id3145172\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] Calc wam <link href=\"text/scalc/01/04060100.xhp\" name=\"functions\">funkcije</link> skići, mjez nimi statistiske a bankowe funkcije, kotrež móžeće wužiwać, zo byšće formle wutworił, z kotrymiž móžeće kompleksne wobličenja ze swojimi datami přewjesć."
+
+#. ZWXQP
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"par_id3145271\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 "Móžeće tež <link href=\"text/scalc/01/04060000.xhp\" name=\"AutoPilots\">funkciski asistent</link> wužiwać, kotryž wam pomha, waše formle wutworić."
+
+#. jARFA
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"hd_id3152596\n"
+"help.text"
+msgid "What-If Calculations"
+msgstr "Wobličenja Što by było hdyž"
+
+#. 4yrYj
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"par_id3156444\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 "Zajimawa funkcija je, zo móžeće sej wuslědki změnow hnydom wobhladać, kotrež sće na jednym faktorje wobličenjow přewjedł, kotrež so z wjacorych faktorow zestajeja. Móžeće na přikład widźeć, kak měnjenje doby w kreditnym wobličenju danjowe sadźby abo wotpłaćenske sumy wobwliwuje. Nimo toho móžeće z pomocu rozdźělnych předdefinowanych scenarijow wjetše tabele rjadować."
+
+#. JRYyA
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"hd_id3148576\n"
+"help.text"
+msgid "Database Functions"
+msgstr "Funkcije datoweje banki"
+
+#. 99gbx
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"par_id3154011\n"
+"help.text"
+msgid "Use spreadsheets to arrange, store, and filter your data."
+msgstr "Wužiwajće tabelowe dokumenty, zo byšće swoje daty rjadował, składował a filtrował."
+
+#. EgN7B
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"par_id3154942\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] Calc wam zmóžnja, tabele z datowych bankow ćahnyć a pušćić, abo wam zmóžnja, tabelowy dokument jako datowe žórło wužiwać, zo byšće móhł serijowe listy w $[officename] Writer wutworić."
+
+#. GKCva
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"hd_id3145800\n"
+"help.text"
+msgid "Arranging Data"
+msgstr "Daty rozrjadować"
+
+#. Bo5vg
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"par_id3154490\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 "Z mało kliknjenjemi myški móžeće swój tabelowy dokument přestrukturować, zo byšće wěste datowe wobłuki pokazał abo schował, abo zo byšće wobłuki po wosebitych wuměnjenjach formatował, zo byšće móhł spěšnje dźělne a cyłkowne wuslědki wobličić."
+
+#. JBCHF
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"hd_id3155601\n"
+"help.text"
+msgid "Dynamic Charts"
+msgstr "Dynamiske diagramy"
+
+#. QEi8Q
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"par_id3149121\n"
+"help.text"
+msgid "$[officename] Calc lets you present spreadsheet data in dynamic charts that update automatically when the data changes."
+msgstr "$[officename] Calc wam zmóžnja, daty tabelowych dokumentow w dynamiskich diagramach zwobraznić, kotrež so awtomatisce aktualizuja, hdyž so daty měnjeja."
+
+#. aFG9z
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"hd_id3153707\n"
+"help.text"
+msgid "Opening and Saving Microsoft Files"
+msgstr "Dataje Microsoft wočinić a składować"
+
+#. HBc3E
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"par_id3157867\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 "Wužiwajće filtry $[officename], zo byšće dataje Excel konwertował, abo zo byšće wjele druhich <link href=\"text/shared/00/00000020.xhp\" name=\"formats\">formatow</link> wočinił a składował."
diff --git a/source/hsb/helpcontent2/source/text/scalc/00.po b/source/hsb/helpcontent2/source/text/scalc/00.po
new file mode 100644
index 00000000000..662e98ad630
--- /dev/null
+++ b/source/hsb/helpcontent2/source/text/scalc/00.po
@@ -0,0 +1,2365 @@
+#. extracted from helpcontent2/source/text/scalc/00
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2022-10-10 13:35+0200\n"
+"PO-Revision-Date: 2022-09-21 09:55+0000\n"
+"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
+"Language-Team: Upper Sorbian <https://translations.documentfoundation.org/projects/libo_help-master/textscalc00/hsb/>\n"
+"Language: hsb\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#. E9tti
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"tit\n"
+"help.text"
+msgid "To access this function..."
+msgstr "Zo byšće tutu funkciju dóstał …"
+
+#. hrbEg
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"hd_id3155535\n"
+"help.text"
+msgid "<variable id=\"wie\">To access this function...</variable>"
+msgstr "<variable id=\"wie\">Přistup k tutej funkciji …</variable>"
+
+#. Ern4w
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_idN1056E\n"
+"help.text"
+msgid "<variable id=\"moreontop\">More explanations on top of this page.</variable>"
+msgstr "<variable id=\"moreontop\">Dalše rozjasnjenja horjeka na tutej stronje.</variable>"
+
+#. yS9p2
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_idN105AF\n"
+"help.text"
+msgid "<variable id=\"optional\">In the %PRODUCTNAME Calc functions, parameters marked as \"optional\" can be left out only when no parameter follows. For example, in a function with four parameters, where the last two parameters are marked as \"optional\", you can leave out parameter 4 or parameters 3 and 4, but you cannot leave out parameter 3 alone.</variable>"
+msgstr "<variable id=\"optional\">We funkcijach %PRODUCTNAME Calc dadźa so parametry, kotrež su jako „opcionalne“ woznamjenjene, jenož wuwostajić, hdyž parameter njeslěduje. We funkcije ze štyrjomi parametrami na přikład, hdźež poslednjej dwaj parametraj stej jako „opcionalnej“ woznamjenjenej, móžeće parameter 4 abo parametraj 3 a 4 wuwostajić, ale njemóžeće jenož parameter 3 wuwostajić.</variable>"
+
+#. wbSXk
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id9751884\n"
+"help.text"
+msgid "<variable id=\"codes\">Codes greater than 127 may depend on your system's character mapping (for example iso-8859-1, iso-8859-2, Windows-1252, Windows-1250), and hence may not be portable.</variable>"
+msgstr "<variable id=\"codes\">Kody, kotrež su wjetše hač 127, móža wot znamješkoweho koděrowanja wašeho systema wotwisować (na přikład iso-8859-1, iso-8859-2, Windows-1262, Windows-1250) a tohodla portabelne njejsu.</variable>"
+
+#. Cjh6J
+#: 00000402.xhp
+msgctxt ""
+"00000402.xhp\n"
+"tit\n"
+"help.text"
+msgid "Edit Menu"
+msgstr "Meni Wobdźěłać"
+
+#. 7dQzw
+#: 00000402.xhp
+msgctxt ""
+"00000402.xhp\n"
+"hd_id3147303\n"
+"help.text"
+msgid "Edit Menu"
+msgstr "Meni Wobdźěłać"
+
+#. Q5BbF
+#: 00000402.xhp
+msgctxt ""
+"00000402.xhp\n"
+"par_id3155555\n"
+"help.text"
+msgid "<variable id=\"kopffuss\">Choose <emph>Insert - Headers and Footers</emph>.</variable>"
+msgstr "<variable id=\"kopffuss\">Wubjerće <emph>Zasadźić – Hłowowe a nohowe linki</emph>.</variable>"
+
+#. LCgfV
+#: 00000402.xhp
+msgctxt ""
+"00000402.xhp\n"
+"par_id3159233\n"
+"help.text"
+msgid "<variable id=\"bkopfzeile\">Choose <emph>Insert - Headers and Footers - Header and Footer</emph> tabs.</variable>"
+msgstr "<variable id=\"bkopfzeile\">Wubjerće <emph>Zasadźić – Hłowowe a nohowe linki – Rajtarkaj Hłowowa linka/Nohowa linka</emph>.</variable>"
+
+#. swD6H
+#: 00000402.xhp
+msgctxt ""
+"00000402.xhp\n"
+"par_id3150443\n"
+"help.text"
+msgid "<variable id=\"bausfullen\">Choose <emph>Sheet - Fill Cells</emph>.</variable>"
+msgstr "<variable id=\"bausfullen\">Wubjerće <emph>Tabela – Cele wupjelnić</emph>.</variable>"
+
+#. GBRFt
+#: 00000402.xhp
+msgctxt ""
+"00000402.xhp\n"
+"par_id3143267\n"
+"help.text"
+msgid "<variable id=\"bausunten\">Choose <emph>Sheet - Fill Cells - Down</emph>.</variable>"
+msgstr "<variable id=\"bausunten\">Wubjerće <emph>Tabela – Cele wupjelnić – Dele wupjelnić</emph>.</variable>"
+
+#. kFrPz
+#: 00000402.xhp
+msgctxt ""
+"00000402.xhp\n"
+"par_id3153880\n"
+"help.text"
+msgid "<variable id=\"bausrechts\">Choose <emph>Sheet - Fill Cells - Right</emph>.</variable>"
+msgstr "<variable id=\"bausrechts\">Wubjerće <emph>Tabela – Cele wupjelnić – Naprawo wupjelnić</emph>.</variable>"
+
+#. dq3T2
+#: 00000402.xhp
+msgctxt ""
+"00000402.xhp\n"
+"par_id3151245\n"
+"help.text"
+msgid "<variable id=\"bausoben\">Choose <emph>Sheet - Fill Cells - Up</emph>.</variable>"
+msgstr "<variable id=\"bausoben\">Wubjerće <emph>Tabela – Cele wupjelnić – Horje wupjelnić</emph>.</variable>"
+
+#. oGY7v
+#: 00000402.xhp
+msgctxt ""
+"00000402.xhp\n"
+"par_id3145068\n"
+"help.text"
+msgid "<variable id=\"bauslinks\">Choose <emph>Sheet - Fill Cells - Left</emph>.</variable>"
+msgstr "<variable id=\"bauslinks\">Wubjerće <emph>Tabela – Cele wupjelnić – Nalěwo wupjelnić</emph>.</variable>"
+
+#. HoCxK
+#: 00000402.xhp
+msgctxt ""
+"00000402.xhp\n"
+"par_id3150400\n"
+"help.text"
+msgid "<variable id=\"baustab\">Choose <emph>Sheet - Fill Cells - Sheets</emph>.</variable>"
+msgstr "<variable id=\"baustab\">Wubjerće <emph>Tabela – Cele wupjelnić – Tabele wupjelnić…</emph>.</variable>"
+
+#. AxSYV
+#: 00000402.xhp
+msgctxt ""
+"00000402.xhp\n"
+"par_id3154910\n"
+"help.text"
+msgid "<variable id=\"bausreihe\">Choose <emph>Sheet - Fill Cells - Series</emph>.</variable>"
+msgstr "<variable id=\"bausreihe\">Wubjerće <emph>Tabela – Cele wupjelnić – Rjady wupjelnić…</emph>.</variable>"
+
+#. FtVof
+#: 00000402.xhp
+msgctxt ""
+"00000402.xhp\n"
+"par_id3154123\n"
+"help.text"
+msgid "Choose <emph>Sheet - Clear Cells</emph>."
+msgstr "Wubjerće <emph>Tabela – Cele wuprózdnić…</emph>."
+
+#. xKoco
+#: 00000402.xhp
+msgctxt ""
+"00000402.xhp\n"
+"par_id3145785\n"
+"help.text"
+msgid "Backspace"
+msgstr "Wróćotasta"
+
+#. UPt9p
+#: 00000402.xhp
+msgctxt ""
+"00000402.xhp\n"
+"par_id3150011\n"
+"help.text"
+msgid "<variable id=\"bzelo\">Choose <emph>Sheet - Delete Cells</emph>.</variable>"
+msgstr "<variable id=\"bzelo\">Wubjerće <emph>Tabela – Cele zhašeć…</emph>.</variable>"
+
+#. DAEkd
+#: 00000402.xhp
+msgctxt ""
+"00000402.xhp\n"
+"par_id3153951\n"
+"help.text"
+msgid "Choose <emph>Sheet - Delete Sheet</emph>."
+msgstr "Wubjerće <emph>Tabela – Tabelu wuprózdnić…</emph>."
+
+#. yzwWD
+#: 00000402.xhp
+msgctxt ""
+"00000402.xhp\n"
+"par_id3155306\n"
+"help.text"
+msgid "Open context menu for a sheet tab."
+msgstr "Wubjerće kontekstowy meni za tabelowy rajtark."
+
+#. GcsVC
+#: 00000402.xhp
+msgctxt ""
+"00000402.xhp\n"
+"par_id3146119\n"
+"help.text"
+msgid "Choose <emph>Sheet - Move or Copy Sheet</emph>."
+msgstr "Wubjerće <emph>Tabela – Tabelu přesunyć abo kopěrować…</emph>."
+
+#. 6KzK9
+#: 00000402.xhp
+msgctxt ""
+"00000402.xhp\n"
+"par_id3148645\n"
+"help.text"
+msgid "Open context menu for a sheet tab."
+msgstr "Wubjerće kontekstowy meni za tabelowy rajtark."
+
+#. tVKSX
+#: 00000402.xhp
+msgctxt ""
+"00000402.xhp\n"
+"par_id831619443265443\n"
+"help.text"
+msgid "Choose <menuitem>Edit - Cell Protection</menuitem> to activate sheet protection with current cell protection settings."
+msgstr "Wubjerće <menuitem>Wobdźěłać – Celowy škit</menuitem>, zo byšće tabelowy škit z aktualnymi nastajenjemi celoweho škita aktiwizował."
+
+#. cjzea
+#: 00000403.xhp
+msgctxt ""
+"00000403.xhp\n"
+"tit\n"
+"help.text"
+msgid "View Menu"
+msgstr "Meni Napohlad"
+
+#. LUDxu
+#: 00000403.xhp
+msgctxt ""
+"00000403.xhp\n"
+"hd_id3145673\n"
+"help.text"
+msgid "View Menu"
+msgstr "Meni Napohlad"
+
+#. 7gCYV
+#: 00000403.xhp
+msgctxt ""
+"00000403.xhp\n"
+"par_id3150275\n"
+"help.text"
+msgid "<variable id=\"aspze\">Choose <emph>View - Column & Row Headers</emph>.</variable>"
+msgstr "<variable id=\"aspze\">Wubjerće <emph>Napohlad – Hłowowe linki pokazać</emph>.</variable>"
+
+#. SFTEA
+#: 00000403.xhp
+msgctxt ""
+"00000403.xhp\n"
+"par_id3154514\n"
+"help.text"
+msgid "<variable id=\"awehe\">Choose <emph>View - Value Highlighting</emph>.</variable>"
+msgstr "<variable id=\"awehe\">Wubjerće <emph>Napohlad – Hódnoty wuzběhnyć</emph>.</variable>"
+
+#. QGcfY
+#: 00000403.xhp
+msgctxt ""
+"00000403.xhp\n"
+"par_id3148947\n"
+"help.text"
+msgid "<variable id=\"rechenleiste\">Choose <emph>View - Formula Bar</emph> or <emph>View - Toolbars - Formula Bar</emph>.</variable>"
+msgstr "<variable id=\"rechenleiste\">Wubjerće <emph>Napohlad – Formlowa lajsta</emph> abo <emph>Napohlad – Symbolowe lajsty – Formlowa lajsta</emph>.</variable>"
+
+#. G6udN
+#: 00000403.xhp
+msgctxt ""
+"00000403.xhp\n"
+"par_id3148663\n"
+"help.text"
+msgid "<variable id=\"seumvo\">Choose <emph>View - Page Break</emph>.</variable>"
+msgstr "<variable id=\"seumvo\">Wubjerće <emph>Napohlad – Łamanje strony</emph>.</variable>"
+
+#. YeaFw
+#: 00000403.xhp
+msgctxt ""
+"00000403.xhp\n"
+"par_id3155383\n"
+"help.text"
+msgid "<variable id=\"functionlist\">Choose <menuitem>View - Function List</menuitem>.</variable>"
+msgstr "<variable id=\"functionlist\">Wubjerće <menuitem>Napohlad – Lisćina funkcijow</menuitem>.</variable>"
+
+#. yDXA6
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"tit\n"
+"help.text"
+msgid "Insert Menu"
+msgstr "Meni Zasadźić"
+
+#. Xgxd9
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"hd_id3149346\n"
+"help.text"
+msgid "Insert Menu"
+msgstr "Meni Zasadźić"
+
+#. eWEMR
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id3149784\n"
+"help.text"
+msgid "Choose <menuitem>Sheet - Insert Cells</menuitem>."
+msgstr "Wubjerće <menuitem>Tabela – Cele zasadźić…</menuitem>."
+
+#. pybbE
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id3154514\n"
+"help.text"
+msgid "Choose <menuitem>View - Toolbars</menuitem> and select the <emph>Insert Cells</emph> toolbar:"
+msgstr "Wubjerće <menuitem>Napohlad – Symbolowe lajsty</menuitem> a potom symbolowu lajstu <emph>Cele zasadźić</emph>:"
+
+#. 7HGeD
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id3149656\n"
+"help.text"
+msgid "<image id=\"img_id3154365\" src=\"cmd/sc_inscellsctrl.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154365\">Icon</alt></image>"
+msgstr "<image id=\"img_id3154365\" src=\"cmd/sc_inscellsctrl.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154365\">Symbol za Cele zasadźić</alt></image>"
+
+#. u7DxG
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id3151041\n"
+"help.text"
+msgid "Insert Cells"
+msgstr "Cele zasadźić"
+
+#. pyGF9
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id3145273\n"
+"help.text"
+msgid "<image id=\"img_id3145364\" src=\"cmd/sc_insertcellsdown.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145364\">Icon</alt></image>"
+msgstr "<image id=\"img_id3145364\" src=\"cmd/sc_insertcellsdown.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145364\">Symbol za Cele dele zasadźić</alt></image>"
+
+#. JxBEy
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id3146985\n"
+"help.text"
+msgid "Insert Cells Down"
+msgstr "Cele dele zasadźić"
+
+#. AsUut
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id3144766\n"
+"help.text"
+msgid "<image id=\"img_id3154942\" src=\"cmd/sc_insertcellsright.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154942\">Icon</alt></image>"
+msgstr "<image id=\"img_id3154942\" src=\"cmd/sc_insertcellsright.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154942\">Symbol za Cele naprawo zasadźić</alt></image>"
+
+#. UG7vC
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id3145646\n"
+"help.text"
+msgid "Insert Cells Right"
+msgstr "Cele naprawo zasadźić"
+
+#. qXcRR
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id3153838\n"
+"help.text"
+msgid "<image id=\"img_id3153710\" src=\"cmd/sc_insertrows.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153710\">Icon</alt></image>"
+msgstr "<image id=\"img_id3153710\" src=\"cmd/sc_insertrows.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153710\">Symbol za Linki zasadźić</alt></image>"
+
+#. J53kc
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id3150324\n"
+"help.text"
+msgid "Insert Rows"
+msgstr "Linki zasadźić"
+
+#. iFECG
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id3147363\n"
+"help.text"
+msgid "<image id=\"img_id3145232\" src=\"cmd/sc_insertcolumns.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145232\">Icon</alt></image>"
+msgstr "<image id=\"img_id3145232\" src=\"cmd/sc_insertcolumns.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145232\">Symbol za Špalty zasadźić</alt></image>"
+
+#. aS2eE
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id3155334\n"
+"help.text"
+msgid "Insert Columns"
+msgstr "Špalty zasadźić"
+
+#. A8jev
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id3149033\n"
+"help.text"
+msgid "<variable id=\"eitab\">Choose <menuitem>Sheet - Insert Sheet</menuitem>.</variable>"
+msgstr "<variable id=\"eitab\">Wubjerće <menuitem>Tabela – Tabelu zasadźić…</menuitem>.</variable>"
+
+#. HjKoP
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_idN1082F\n"
+"help.text"
+msgid "<variable id=\"eitabfile\">Choose <menuitem>Sheet - Insert Sheet from File</menuitem>.</variable>"
+msgstr "<variable id=\"eitabfile\">Wubjerće <menuitem>Tabela – Tabelu z dataje zasadźić…</menuitem>.</variable>"
+
+#. hfGrg
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id3155115\n"
+"help.text"
+msgid "Choose <menuitem>Insert - Function</menuitem>."
+msgstr "Wubjerće <menuitem>Zasadźić – Funkcija…</menuitem>."
+
+#. anHWr
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id3152582\n"
+"help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F2"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">cmd &#x2318;</caseinline><defaultinline>Strg</defaultinline></switchinline>+F2"
+
+#. AVMZC
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id3153269\n"
+"help.text"
+msgid "On the <emph>Formula</emph> bar, click"
+msgstr "Klikńće w <emph>formlowej lajsće</emph> na"
+
+#. HZ9Dn
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id3150515\n"
+"help.text"
+msgid "<image id=\"img_id3150884\" src=\"sw/res/sc20556.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150884\">Icon</alt></image>"
+msgstr "<image id=\"img_id3150884\" src=\"sw/res/sc20556.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150884\">Symbol za funkciski asistent</alt></image>"
+
+#. PpQHU
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id3154370\n"
+"help.text"
+msgid "Function Wizard"
+msgstr "Funkciski asistent"
+
+#. CfMjV
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id3156288\n"
+"help.text"
+msgid "<variable id=\"eikada\"><emph>Insert - Function</emph> - Category <emph>Database</emph></variable>"
+msgstr "<variable id=\"eikada\"><emph>Zasadźić – Funkcija…</emph> – Kategorija <emph>Datowa banka</emph></variable>"
+
+#. zMMAD
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id3155809\n"
+"help.text"
+msgid "<variable id=\"eikadaze\"><emph>Insert - Function</emph> - Category <emph>Date & Time</emph></variable>"
+msgstr "<variable id=\"eikadaze\">Wubjerće <emph>Zasadźić – Funkcija…</emph> – Kategorija <emph>Datum a čas</emph>.</variable>"
+
+#. zhLHE
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id3151334\n"
+"help.text"
+msgid "<variable id=\"eikafi\"><emph>Insert - Function</emph> - Category <emph>Financial</emph></variable>"
+msgstr "<variable id=\"eikafi\"><emph>Zasadźić – Funkcija…</emph> – Kategorija <emph>Financielne</emph></variable>"
+
+#. KZ5EL
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id3159222\n"
+"help.text"
+msgid "<variable id=\"eikain\"><emph>Insert - Function</emph> - Category <emph>Information</emph></variable>"
+msgstr "<variable id=\"eikain\"><emph>Zasadźić – Funkcija…n</emph> – Kategorija <emph>Informacije</emph></variable>"
+
+#. hEWDH
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id3159173\n"
+"help.text"
+msgid "<variable id=\"logical\"><emph>Insert - Function</emph> - Category <emph>Logical</emph></variable>"
+msgstr "<variable id=\"logical\"><emph>Zasadźić – Funkcija…</emph> – Kategorija <emph>Logiske</emph></variable>"
+
+#. FqeXh
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id3153914\n"
+"help.text"
+msgid "<variable id=\"eikama\"><emph>Insert - Function</emph> - Category <emph>Mathematical</emph></variable>"
+msgstr "<variable id=\"eikama\"><emph>Zasadźić – Funkcija…</emph> – Kategorija <emph>Matematiske</emph></variable>"
+
+#. BLmAP
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id3150109\n"
+"help.text"
+msgid "<variable id=\"eikamatrix\"><emph>Insert - Function</emph> - Category <emph>Array</emph></variable>"
+msgstr "<variable id=\"eikamatrix\"><emph>Zasadźić – Funkcija…</emph> – Kategorija <emph>Pólna wariabla</emph></variable>"
+
+#. TPE9C
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id3157978\n"
+"help.text"
+msgid "<variable id=\"eikasta\"><emph>Insert - Function</emph> - Category <emph>Statistical</emph></variable>"
+msgstr "<variable id=\"eikasta\"><emph>Zasadźić – Funkcija…</emph> – Kategorija <emph>Statistiske</emph></variable>"
+
+#. RQSAQ
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id3156016\n"
+"help.text"
+msgid "<variable id=\"eikatext\"><emph>Insert - Function</emph> - Category <emph>Text</emph></variable>"
+msgstr "<variable id=\"eikatext\"><emph>Zasadźić – Funkcija…</emph> – Kategorija <emph>Tekst</emph></variable>"
+
+#. NBdkR
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id3147075\n"
+"help.text"
+msgid "<variable id=\"efefft\"><emph>Insert - Function</emph> - Category <emph>Spreadsheet</emph></variable>"
+msgstr "<variable id=\"efefft\"><emph>Zasadźić – Funkcija…</emph> – Kategorija <emph>Tabelowy dokument</emph></variable>"
+
+#. hY4RC
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id3154618\n"
+"help.text"
+msgid "<variable id=\"addin\"><emph>Insert - Function</emph> - Category <emph>Add-In</emph></variable>"
+msgstr "<variable id=\"addin\"><emph>Zasadźić – Funkcija…</emph> – Kategorija <emph>Dodatk</emph></variable>"
+
+#. Hu4Ut
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id3154059\n"
+"help.text"
+msgid "<variable id=\"addinana\"><emph>Insert - Function</emph> - Category <emph>Add-In</emph></variable>"
+msgstr "<variable id=\"addinana\"><emph>Zasadźić – Funkcija…</emph> – Kategorija <emph>Dodatk</emph></variable>"
+
+#. UQGrR
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id3153250\n"
+"help.text"
+msgid "<variable id=\"einamen\">Choose <menuitem>Insert - Named Range or Expression</menuitem>.</variable>"
+msgstr "<variable id=\"einamen\">Wubjerće <menuitem>Zasadźić – Pomjenowane wobłuki abo wurazy…</menuitem>.</variable>"
+
+#. mQLYV
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id3146776\n"
+"help.text"
+msgid "<variable id=\"eiextdata\">Choose <menuitem>Sheet - External Links</menuitem>.</variable>"
+msgstr "<variable id=\"eiextdata\">Wubjerće <menuitem>Tabela – Eksterne zwjazanja…</menuitem>.</variable>"
+
+#. ECgNS
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id3143222\n"
+"help.text"
+msgid "Choose <menuitem>Sheet - Named Ranges and Expressions - Define</menuitem>."
+msgstr "Wubjerće <menuitem>Tabela – Pomjenowane wobłuki a wurazy – Definować…</menuitem>."
+
+#. GM3WX
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id3149385\n"
+"help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F3"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">cmd &#x2318;</caseinline><defaultinline>Strg</defaultinline></switchinline>+F3"
+
+#. 9p3Gg
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id3145214\n"
+"help.text"
+msgid "<variable id=\"einaei\">Choose <menuitem>Sheet - Named Ranges and Expressions - Insert</menuitem>.</variable>"
+msgstr "<variable id=\"einaei\">Wubjerće <menuitem>Tabela – Pomjenowane wobłuki abo wurazy… – Zasadźić</menuitem>.</variable>"
+
+#. LGQgh
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id3153558\n"
+"help.text"
+msgid "<variable id=\"einaueb\">Choose <menuitem>Sheet - Named Ranges and Expressions - Create</menuitem>.</variable>"
+msgstr "<variable id=\"einaueb\">Wubjerće <menuitem>Tabela – Pomjenowane wobłuki abo wurazy… – Wutworić</menuitem>.</variable>"
+
+#. ptGPX
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id3153483\n"
+"help.text"
+msgid "<variable id=\"einabesch\">Choose <menuitem>Sheet - Named Ranges and Expressions - Labels</menuitem>.</variable>"
+msgstr "<variable id=\"einabesch\">Wubjerće <menuitem>Tabela – Pomjenowane wobłuki abo wurazy… – Popisy…</menuitem>.</variable>"
+
+#. p2LBA
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"tit\n"
+"help.text"
+msgid "Format Menu"
+msgstr "Meni Format"
+
+#. CJHhP
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"hd_id3150769\n"
+"help.text"
+msgid "Format Menu"
+msgstr "Meni Format"
+
+#. TmWCz
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3154685\n"
+"help.text"
+msgid "Choose <menuitem>Format - Cells</menuitem>."
+msgstr "Wubjerće <menuitem>Format – Cele…</menuitem>."
+
+#. DEPHV
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id61593556839601\n"
+"help.text"
+msgid "Press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+1</keycode>."
+msgstr "Tłóčće <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>cmd &#x2318;</keycode></caseinline><defaultinline><keycode>Strg</keycode></defaultinline></switchinline><keycode>+1</keycode>."
+
+#. HR2kd
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3153194\n"
+"help.text"
+msgid "<variable id=\"fozelstz\">Choose <emph>Format - Cells - Cell Protection</emph> tab.</variable>"
+msgstr "<variable id=\"fozelstz\">Wubjerće <emph>Format – Cele… – Rajtark: Celowy škit</emph>.</variable>"
+
+#. 5HBGD
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3155854\n"
+"help.text"
+msgid "<variable id=\"fozei\">Choose <emph>Format - Rows</emph>.</variable>"
+msgstr "<variable id=\"fozei\">Wubjerće <emph>Format - Linki</emph></variable>"
+
+#. c9XNu
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3150012\n"
+"help.text"
+msgid "<variable id=\"fozeiophoe\">Choose <emph>Format - Rows - Optimal Height</emph>.</variable>"
+msgstr "<variable id=\"fozeiophoe\">Wubjerće <emph>Format - Linki – Optimalna wysokosć…</emph>.</variable>"
+
+#. ZMLTM
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3148645\n"
+"help.text"
+msgid "Choose <emph>Format - Rows - Hide</emph>."
+msgstr "Wubjerće <emph>Format – Linki – Schować</emph>."
+
+#. Ky3bX
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3153728\n"
+"help.text"
+msgid "Choose <emph>Format - Columns - Hide</emph>."
+msgstr "Wubjerće <emph>Format – Špalty – Schować</emph>."
+
+#. LbHeW
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3151114\n"
+"help.text"
+msgid "Choose <emph>Sheet - Hide Sheet</emph>."
+msgstr "Wubjerće <emph>Tabela – Tabelu schować</emph>."
+
+#. dGUoz
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3148576\n"
+"help.text"
+msgid "Choose <emph>Format - Rows - Show</emph>."
+msgstr "Wubjerće <emph>Format – Linki – Pokazać</emph>."
+
+#. FxHfR
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3156286\n"
+"help.text"
+msgid "Choose <emph>Format - Columns - Show</emph>."
+msgstr "Wubjerće <emph>Format – Špalty – Pokazać</emph>."
+
+#. 9hBja
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3145645\n"
+"help.text"
+msgid "<variable id=\"fospa\">Choose <emph>Format - Columns</emph>.</variable>"
+msgstr "<variable id=\"fospa\">Wubjerće <emph>Format – Špalty</emph></variable>"
+
+#. R24Eg
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3145252\n"
+"help.text"
+msgid "Choose <emph>Format - Columns - Optimal Width</emph>."
+msgstr "Wubjerće <emph>Format – Špalty – Optimalna šěrokosć…</emph>."
+
+#. RzL7Z
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3146971\n"
+"help.text"
+msgid "Double-click right column separator in column headers."
+msgstr "Klikńće dwójce na prawe dźělatko w špaltowych hłowach."
+
+#. kDwZF
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3147362\n"
+"help.text"
+msgid "<variable id=\"fot\">Choose <emph>Sheet</emph>.</variable>"
+msgstr "<variable id=\"fot\">Wubjerće <emph>Tabela</emph>.</variable>"
+
+#. LBhtC
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3163805\n"
+"help.text"
+msgid "<variable id=\"fotu\">Choose <emph>Sheet - Rename Sheet</emph>.</variable>"
+msgstr "<variable id=\"fotu\">Wubjerće <emph>Tabela – Tabelu přemjenować…</emph>.</variable>"
+
+#. dCE4r
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3155333\n"
+"help.text"
+msgid "<variable id=\"fotenb\">Choose <emph>Sheet - Show Sheet</emph>.</variable>"
+msgstr "<variable id=\"fotenb\">Wubjerće <emph>Tabela – Tabelu pokazać</emph>.</variable>"
+
+#. bJzNC
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_idN1077A\n"
+"help.text"
+msgid "<variable id=\"foste\">Choose <emph>Format - Page</emph>.</variable>"
+msgstr "<variable id=\"foste\">Wubjerće <emph>Format - Předłoha strony…</emph></variable>"
+
+#. KrDGC
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3155508\n"
+"help.text"
+msgid "<variable id=\"fostel\">Choose <emph>Format - Page - Sheet</emph> tab.</variable>"
+msgstr "<variable id=\"fostel\">Wubjerće <emph>Format – Předłoha strony – Rajtark: Tabela</emph>.</variable>"
+
+#. CqGPT
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3150883\n"
+"help.text"
+msgid "<variable id=\"fodrbe\">Choose <emph>Format - Print Ranges</emph>.</variable>"
+msgstr "<variable id=\"fodrbe\">Wubjerće <emph>Format – Ćišćerske wobłuki</emph></variable>"
+
+#. 8mFPE
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3156448\n"
+"help.text"
+msgid "<variable id=\"fodrfe\">Choose <emph>Format - Print Ranges - Define</emph>.</variable>"
+msgstr "<variable id=\"fodrfe\">Wubjerće <emph>Format – Ćišćerske wobłuki – Definować</emph>.</variable>"
+
+#. BneiE
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3156290\n"
+"help.text"
+msgid "<variable id=\"fodrhin\">Choose <emph>Format - Print Ranges - Add</emph>.</variable>"
+msgstr "<variable id=\"fodrhin\">Wubjerće <emph>Format – Ćišćerske wobłuki – Přidać</emph>.</variable>"
+
+#. KgEb2
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3155812\n"
+"help.text"
+msgid "<variable id=\"fodbah\">Choose <emph>Format - Print Ranges - Clear</emph>.</variable>"
+msgstr "<variable id=\"fodbah\">Wubjerće <emph>Format – Ćišćerske wobłuki – Zhašeć</emph>.</variable>"
+
+#. n6cmd
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3153307\n"
+"help.text"
+msgid "<variable id=\"fodbbe\">Choose <emph>Format - Print Ranges - Edit</emph>.</variable>"
+msgstr "<variable id=\"fodbbe\">Wubjerće <emph>Format – Ćišćerske wobłuki – Wobdźěłać</emph>.</variable>"
+
+#. 2mGMo
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3154618\n"
+"help.text"
+msgid "<variable id=\"bedingte\">Choose <menuitem>Format - Conditional - Condition</menuitem>.</variable>"
+msgstr ""
+
+#. 36aUL
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id141663543112100\n"
+"help.text"
+msgid "On the <emph>Formatting</emph> bar, click"
+msgstr ""
+
+#. VqVh2
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id1001663540244130\n"
+"help.text"
+msgid "<image src=\"cmd/lc_conditionalformatdialog.svg\" id=\"img_id461663540244131\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id201663540244132\">Icon Conditional Format - Condition</alt></image>"
+msgstr ""
+
+#. CdDAq
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id151663540244134\n"
+"help.text"
+msgid "Conditional Format"
+msgstr ""
+
+#. GBExF
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id31663542115011\n"
+"help.text"
+msgid "<variable id=\"conditionalcolorscale\">Choose <menuitem>Format - Conditional - Color Scale</menuitem></variable>"
+msgstr ""
+
+#. QPRux
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id211663543104186\n"
+"help.text"
+msgid "On the <emph>Formatting</emph> bar, click"
+msgstr ""
+
+#. ZHE33
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id431663540719713\n"
+"help.text"
+msgid "<image src=\"cmd/lc_colorscaleformatdialog.svg\" id=\"img_id551663540719714\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id381663540719715\">Icon Color Scale</alt></image>"
+msgstr ""
+
+#. UJbUX
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id841663540719717\n"
+"help.text"
+msgid "Color Scale"
+msgstr ""
+
+#. BCKnF
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id491663542108169\n"
+"help.text"
+msgid "<variable id=\"conditionaldatabar\">Choose <menuitem>Format - Conditional - Data Bar</menuitem></variable>"
+msgstr ""
+
+#. YJvXG
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id81663543094977\n"
+"help.text"
+msgid "On the <emph>Formatting</emph> bar, click"
+msgstr ""
+
+#. qKAB8
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id301663541161943\n"
+"help.text"
+msgid "<image src=\"cmd/lc_databarformatdialog.svg\" id=\"img_id601663541161944\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id21663541161945\">Icon Data Bar</alt></image>"
+msgstr ""
+
+#. DhB6e
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id101663541161947\n"
+"help.text"
+msgid "Data Bar"
+msgstr ""
+
+#. AaxGU
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id851663542093712\n"
+"help.text"
+msgid "<variable id=\"conditionaliconset\">Choose <menuitem>Format - Conditional - Icon Set</menuitem></variable>"
+msgstr ""
+
+#. j6oAH
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id501663543087343\n"
+"help.text"
+msgid "On the <emph>Formatting</emph> bar, click"
+msgstr ""
+
+#. BKDA9
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id51663541228728\n"
+"help.text"
+msgid "<image src=\"cmd/lc_iconsetformatdialog.svg\" id=\"img_id511663541228729\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id261663541228730\">Icon Icon Set</alt></image>"
+msgstr ""
+
+#. xL9EB
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id61663541228732\n"
+"help.text"
+msgid "Icon Set"
+msgstr ""
+
+#. t4dp2
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id391663542070705\n"
+"help.text"
+msgid "<variable id=\"conditionaldate\">Choose <menuitem>Format - Conditional - Date</menuitem></variable>"
+msgstr ""
+
+#. bETCm
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id351663543077670\n"
+"help.text"
+msgid "On the <emph>Formatting</emph> bar, click"
+msgstr ""
+
+#. dUBco
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id371663541317147\n"
+"help.text"
+msgid "<image src=\"cmd/lc_conddateformatdialog.svg\" id=\"img_id61663541317148\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id641663541317149\">Icon Date</alt></image>"
+msgstr ""
+
+#. TPxGF
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id121663541317151\n"
+"help.text"
+msgid "Date"
+msgstr ""
+
+#. ZJawN
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id641663542045446\n"
+"help.text"
+msgid "<variable id=\"conditionalmanage\">Choose <menuitem>Format - Conditional - Manage</menuitem></variable>"
+msgstr ""
+
+#. gWWhE
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3153916\n"
+"help.text"
+msgid "Choose <emph>Format - AutoFormat Styles</emph>."
+msgstr "Wubjerće <emph>Format – Předłohi awtomatiskeho formata…</emph>."
+
+#. ABeaN
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3154532\n"
+"help.text"
+msgid "On the <emph>Tools</emph> bar, click"
+msgstr "Klikńće w symbolowej lajsće <emph>Nastroje</emph> na"
+
+#. RRjPc
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3149332\n"
+"help.text"
+msgid "<image id=\"img_id3156020\" src=\"cmd/sc_autoformat.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3156020\">AutoFormat Styles Icon</alt></image>"
+msgstr "<image id=\"img_id3156020\" src=\"cmd/sc_autoformat.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3156020\">Symbol za Předłohi awtomatiskeho formata</alt></image>"
+
+#. RBF2g
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3154060\n"
+"help.text"
+msgid "AutoFormat"
+msgstr "Awtomatiski format"
+
+#. aFWLc
+#: 00000406.xhp
+msgctxt ""
+"00000406.xhp\n"
+"tit\n"
+"help.text"
+msgid "Tools Menu"
+msgstr "Meni Nastroje"
+
+#. kaV4j
+#: 00000406.xhp
+msgctxt ""
+"00000406.xhp\n"
+"hd_id3147264\n"
+"help.text"
+msgid "Tools Menu"
+msgstr "Meni Nastroje"
+
+#. YGCDR
+#: 00000406.xhp
+msgctxt ""
+"00000406.xhp\n"
+"par_id3150541\n"
+"help.text"
+msgid "<variable id=\"exdektv\">Choose <emph>Tools - Detective</emph>.</variable>"
+msgstr "<variable id=\"exdektv\">Wubjerće <emph>Nastroje – Detektiw</emph>.</variable>"
+
+#. dPH3j
+#: 00000406.xhp
+msgctxt ""
+"00000406.xhp\n"
+"par_id3153194\n"
+"help.text"
+msgid "Choose <emph>Tools - Detective - Trace Precedents</emph>."
+msgstr "Wubjerće <emph>Nastroje – Detektiw – Předchadniki slědować</emph>."
+
+#. q3pmU
+#: 00000406.xhp
+msgctxt ""
+"00000406.xhp\n"
+"par_id3150447\n"
+"help.text"
+msgid "Shift+F9"
+msgstr "Umsch+F9"
+
+#. Mn26m
+#: 00000406.xhp
+msgctxt ""
+"00000406.xhp\n"
+"par_id3154123\n"
+"help.text"
+msgid "<variable id=\"silbentrennungc\">Menu <emph>Tools - Language - Hyphenation</emph>.</variable>"
+msgstr "<variable id=\"silbentrennungc\">Wubjerće <emph>Nastroje – Rěč – Dźělenje złóžkow…</emph></variable>"
+
+#. kGGCG
+#: 00000406.xhp
+msgctxt ""
+"00000406.xhp\n"
+"par_id3145785\n"
+"help.text"
+msgid "<variable id=\"exdvore\">Choose <emph>Tools - Detective - Remove Precedents</emph>.</variable>"
+msgstr "<variable id=\"exdvore\">Wubjerće <emph>Nastroje – Detektiw – Předchadniki wotstronić</emph>.</variable>"
+
+#. iXoyD
+#: 00000406.xhp
+msgctxt ""
+"00000406.xhp\n"
+"par_id3155411\n"
+"help.text"
+msgid "Choose <emph>Tools - Detective - Trace Dependents</emph>."
+msgstr "Wubjerće <emph>Nastroje – Detektiw – Naslědniki slědować</emph>."
+
+#. hXmKJ
+#: 00000406.xhp
+msgctxt ""
+"00000406.xhp\n"
+"par_id3153363\n"
+"help.text"
+msgid "Shift+F5"
+msgstr "Umsch+F5"
+
+#. f6Azg
+#: 00000406.xhp
+msgctxt ""
+"00000406.xhp\n"
+"par_id3146984\n"
+"help.text"
+msgid "<variable id=\"exdszne\">Choose <emph>Tools - Detective - Remove Dependents</emph>.</variable>"
+msgstr "<variable id=\"exdszne\">Wubjerće <emph>Nastroje – Detektiw – Naslědniki wotstronić</emph>.</variable>"
+
+#. kYsC6
+#: 00000406.xhp
+msgctxt ""
+"00000406.xhp\n"
+"par_id3154014\n"
+"help.text"
+msgid "<variable id=\"exdase\">Choose <emph>Tools - Detective - Remove All Traces</emph>.</variable>"
+msgstr "<variable id=\"exdase\">Wubjerće <emph>Nastroje – Detektiw – Wšě slědy wotstronić</emph>.</variable>"
+
+#. bvGMB
+#: 00000406.xhp
+msgctxt ""
+"00000406.xhp\n"
+"par_id3153188\n"
+"help.text"
+msgid "<variable id=\"exdszfe\">Choose <emph>Tools - Detective - Trace Error</emph>.</variable>"
+msgstr "<variable id=\"exdszfe\">Wubjerće <emph>Nastroje – Detektiw – Zmylk slědować</emph>.</variable>"
+
+#. eps9h
+#: 00000406.xhp
+msgctxt ""
+"00000406.xhp\n"
+"par_id3149410\n"
+"help.text"
+msgid "<variable id=\"fuellmodus\">Choose <emph>Tools - Detective - Fill Mode</emph>.</variable>"
+msgstr "<variable id=\"fuellmodus\">Wubjerće <emph>Nastroje – Detektiw – Pjelnjenski modus</emph>.</variable>"
+
+#. PFGqZ
+#: 00000406.xhp
+msgctxt ""
+"00000406.xhp\n"
+"par_id3156284\n"
+"help.text"
+msgid "<variable id=\"dateneinkreisen\">Choose <emph>Tools - Detective - Mark Invalid Data</emph>.</variable>"
+msgstr "<variable id=\"dateneinkreisen\">Wubjerće <emph>Nastroje – Detektiw – Njepłaćiwe daty woznamjenić</emph>.</variable>"
+
+#. vVZWK
+#: 00000406.xhp
+msgctxt ""
+"00000406.xhp\n"
+"par_id3153159\n"
+"help.text"
+msgid "<variable id=\"spurenaktualisieren\">Choose <emph>Tools - Detective - Refresh Traces</emph>.</variable>"
+msgstr "<variable id=\"spurenaktualisieren\">Wubjerće <emph>Nastroje – Detektiw – Slědy aktualizować</emph>.</variable>"
+
+#. kPsK3
+#: 00000406.xhp
+msgctxt ""
+"00000406.xhp\n"
+"par_id3147397\n"
+"help.text"
+msgid "<variable id=\"automatisch\">Choose <emph>Tools - Detective - AutoRefresh</emph>.</variable>"
+msgstr "<variable id=\"automatisch\">Wubjerće <emph>Nastroje – Detektiw – Awtomatisce aktualizować</emph>.</variable>"
+
+#. 9Jzv6
+#: 00000406.xhp
+msgctxt ""
+"00000406.xhp\n"
+"par_id3154018\n"
+"help.text"
+msgid "<variable id=\"exzws\">Choose <emph>Tools - Goal Seek</emph>.</variable>"
+msgstr "<variable id=\"exzws\">Wubjerće <emph>Nastroje – Cilowu hódnotu pytać…</emph>.</variable>"
+
+#. fLN9D
+#: 00000406.xhp
+msgctxt ""
+"00000406.xhp\n"
+"par_id3269142\n"
+"help.text"
+msgid "<variable id=\"solver\">Choose <emph>Tools - Solver</emph>.</variable>"
+msgstr "<variable id=\"solver\">Wubjerće <emph>Nastroje – Solver…</emph>.</variable>"
+
+#. 8onpF
+#: 00000406.xhp
+msgctxt ""
+"00000406.xhp\n"
+"par_id8554338\n"
+"help.text"
+msgid "<variable id=\"solver_options\">Choose <emph>Tools - Solver</emph>, click <emph>Options</emph> button.</variable>"
+msgstr "<variable id=\"solver_options\">Wubjerće <emph>Nastroje – Solver…</emph> – <emph>Nastajenja…</emph>.</variable>"
+
+#. nATsE
+#: 00000406.xhp
+msgctxt ""
+"00000406.xhp\n"
+"par_id3156277\n"
+"help.text"
+msgid "<variable id=\"exsze\">Choose <emph>Tools - Scenarios</emph>.</variable>"
+msgstr "<variable id=\"exsze\">Wubjerće <emph>Nastroje – Scenarije…</emph>.</variable>"
+
+#. YELPK
+#: 00000406.xhp
+msgctxt ""
+"00000406.xhp\n"
+"par_id971647297529392\n"
+"help.text"
+msgid "<variable id=\"tools_forms\">Choose <emph>Tools - Forms</emph>.</variable>"
+msgstr "<variable id=\"tools_forms\">Wubjerće <emph>Nastroje – Formulary</emph>.</variable>"
+
+#. QLPxD
+#: 00000406.xhp
+msgctxt ""
+"00000406.xhp\n"
+"par_id371647273694433\n"
+"help.text"
+msgid "<variable id=\"share_spreadsheet\">Choose <menuitem>Tools - Share Spreadsheet</menuitem></variable>"
+msgstr "<variable id=\"share_spreadsheet\">Wubjerće <menuitem>Nastroje – Tabelowy dokument rozdźělić…</menuitem></variable>"
+
+#. uHRwy
+#: 00000406.xhp
+msgctxt ""
+"00000406.xhp\n"
+"par_id3149020\n"
+"help.text"
+msgid "<variable id=\"protect_sheet\">Choose <emph>Tools - Protect Sheet</emph>.</variable>"
+msgstr "<variable id=\"protect_sheet\">Wubjerće <emph>Nastroje – Tabelu škitać…</emph>.</variable>"
+
+#. tKszw
+#: 00000406.xhp
+msgctxt ""
+"00000406.xhp\n"
+"par_id3154256\n"
+"help.text"
+msgid "<variable id=\"protect_spreadsheet\">Choose <emph>Tools - Protect Spreadsheet Structure</emph>.</variable>"
+msgstr "<variable id=\"protect_spreadsheet\">Wubjerće <emph>Nastroje – Strukturu tabeloweho dokumenta škitać…</emph>.</variable>"
+
+#. WXFLf
+#: 00000406.xhp
+msgctxt ""
+"00000406.xhp\n"
+"par_id3146919\n"
+"help.text"
+msgid "Choose <emph>Data - Calculate - Recalculate</emph>."
+msgstr "Wubjerće <emph>Daty – Wuličić – Znowa wuličić</emph>."
+
+#. CwoaA
+#: 00000406.xhp
+msgctxt ""
+"00000406.xhp\n"
+"par_id3149257\n"
+"help.text"
+msgid "Press <keycode>F9</keycode>"
+msgstr "Tłóčće <keycode>F9</keycode>"
+
+#. EA2vV
+#: 00000406.xhp
+msgctxt ""
+"00000406.xhp\n"
+"par_id3146919a\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 - Formula</emph>."
+msgstr "Wubjerće <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Nastajenja</emph></caseinline><defaultinline><emph>Nastroje – Nastajenja…</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Formla</emph>."
+
+#. CAGQA
+#: 00000406.xhp
+msgctxt ""
+"00000406.xhp\n"
+"par_id891645217179561\n"
+"help.text"
+msgid "Choose <menuitem>Data - Calculate - Recalculate hard</menuitem>."
+msgstr "Wubjerće <menuitem>Daty – Wuličić – Hnydom znowa wuličić</menuitem>."
+
+#. e6kAE
+#: 00000406.xhp
+msgctxt ""
+"00000406.xhp\n"
+"par_id21645217233263\n"
+"help.text"
+msgid "Press <keycode>Shift</keycode>+<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline>+<keycode>F9</keycode>"
+msgstr "Tłóčće <keycode>Umsch</keycode>+<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>cmd &#x2318;</keycode></caseinline><defaultinline><keycode>Strg</keycode></defaultinline></switchinline>+<keycode>F9</keycode>"
+
+#. soEE4
+#: 00000406.xhp
+msgctxt ""
+"00000406.xhp\n"
+"par_id31645223233125\n"
+"help.text"
+msgid "Select a formula cell or a formula cell range and choose <menuitem>Data - Calculate - Formula to values</menuitem>"
+msgstr "Wubjerće formlowu celu abo wobłuk formlowych celow a wubjerće <menuitem>Daty – Wuličić – Formla do hódnoty</menuitem>"
+
+#. YmRzU
+#: 00000406.xhp
+msgctxt ""
+"00000406.xhp\n"
+"par_id3150941\n"
+"help.text"
+msgid "<variable id=\"exatmb\">Choose <emph>Data - Calculate - AutoCalculate</emph>.</variable>"
+msgstr "<variable id=\"exatmb\">Wubjerće <emph>Daty – Wuličić – Awtomatisce wuličić</emph>.</variable>"
+
+#. tazcD
+#: 00000406.xhp
+msgctxt ""
+"00000406.xhp\n"
+"par_id3151276\n"
+"help.text"
+msgid "<variable id=\"autoeingabe\">Choose <emph>Tools - AutoInput</emph>.</variable>"
+msgstr "<variable id=\"autoeingabe\">Wubjerće <emph>Nastroje – Awtomatiske zapodaće</emph>.</variable>"
+
+#. FfMAN
+#: 00000407.xhp
+msgctxt ""
+"00000407.xhp\n"
+"tit\n"
+"help.text"
+msgid "Window Menu"
+msgstr "Meni Wokno"
+
+#. mu4fa
+#: 00000407.xhp
+msgctxt ""
+"00000407.xhp\n"
+"hd_id3155628\n"
+"help.text"
+msgid "Window Menu"
+msgstr "Meni Wokno"
+
+#. ry53A
+#: 00000407.xhp
+msgctxt ""
+"00000407.xhp\n"
+"par_id3147335\n"
+"help.text"
+msgid "<variable id=\"fete\">Choose <menuitem>View - Split Window</menuitem>.</variable>"
+msgstr "<variable id=\"fete\">Wubjerće <menuitem>Napohlad – Wokno rozdźělić</menuitem>.</variable>"
+
+#. dr9Aq
+#: 00000407.xhp
+msgctxt ""
+"00000407.xhp\n"
+"par_id3153663\n"
+"help.text"
+msgid "<variable id=\"fefix\">Choose <menuitem>View - Freeze Rows and Columns</menuitem>.</variable>"
+msgstr "<variable id=\"fefix\">Wubjerće <menuitem>Napohlad – Linki a špalty fiksować</menuitem>.</variable>"
+
+#. DrJ2d
+#: 00000407.xhp
+msgctxt ""
+"00000407.xhp\n"
+"par_id631612313719480\n"
+"help.text"
+msgid "<variable id=\"freezefirstcol\">Choose <menuitem>View - Freeze Cells - Freeze First Column</menuitem></variable>"
+msgstr "<variable id=\"freezefirstcol\">Wubjerće <menuitem>Napohlad – Cele fiksować – Prěnju špaltu fiksować</menuitem></variable>"
+
+#. 5YHvr
+#: 00000407.xhp
+msgctxt ""
+"00000407.xhp\n"
+"par_id251612313725513\n"
+"help.text"
+msgid "<variable id=\"freezefirstrow\">Choose <menuitem>View - Freeze Cells - Freeze First Row</menuitem></variable>"
+msgstr "<variable id=\"freezefirstrow\">Wubjerće <menuitem>Napohlad – Cele fiksować – Prěnju linku fiksować</menuitem></variable>"
+
+#. BkQfX
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"tit\n"
+"help.text"
+msgid "Data Menu"
+msgstr "Meni Daty"
+
+#. YxNCy
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"hd_id3145136\n"
+"help.text"
+msgid "Data Menu"
+msgstr "Meni Daty"
+
+#. MMjvu
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id8366954\n"
+"help.text"
+msgid "<variable id=\"text2columns\">Choose <emph>Data - Text to Columns</emph>.</variable>"
+msgstr "<variable id=\"text2columns\">Wubjerće <emph>Daty – Tekst do špaltow…</emph>.</variable>"
+
+#. RBCHZ
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3147399\n"
+"help.text"
+msgid "<variable id=\"dbrbf\">Choose <emph>Data - Define Range</emph>.</variable>"
+msgstr "<variable id=\"dbrbf\">Wubjerće <emph>Daty – Wobłuk definować…</emph>.</variable>"
+
+#. 8aB3C
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3145345\n"
+"help.text"
+msgid "<variable id=\"dbrba\">Choose <emph>Data - Select Range</emph>.</variable>"
+msgstr "<variable id=\"dbrba\">Wubjerće <emph>Daty – Wobłuk wubrać…</emph>.</variable>"
+
+#. 8eaL8
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3150443\n"
+"help.text"
+msgid "<variable id=\"dnsrt\">Choose <emph>Data - Sort...</emph>.</variable>"
+msgstr "<variable id=\"dnsrt\">Wubjerće <emph>Daty – Sortěrować…</emph>.</variable>"
+
+#. rscQf
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id641584647437810\n"
+"help.text"
+msgid "<variable id=\"datasortascending\">Choose <menuitem>Data - Sort Ascending</menuitem></variable>"
+msgstr "<variable id=\"datasortascending\">Wubjerće <menuitem>Daty – Postupowacy sortěrować</menuitem></variable>"
+
+#. GHhdg
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id711584647447316\n"
+"help.text"
+msgid "<variable id=\"datasortdescending\">Choose <menuitem>Data - Sort Descending</menuitem></variable>"
+msgstr "<variable id=\"datasortdescending\">Wubjerće <menuitem>Daty – Spadowacy sortěrować</menuitem></variable>"
+
+#. oEATB
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3148491\n"
+"help.text"
+msgid "Choose <emph>Data - Sort - Sort Criteria</emph> tab."
+msgstr "Wubjerće <emph>Daty – Sortěrować… – Rajtark: Sortěrowanske kriterije</emph>."
+
+#. SG8FW
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3154516\n"
+"help.text"
+msgid "<variable id=\"onthestandardbar\">On <emph>Standard</emph> bar, click</variable>"
+msgstr "<variable id=\"onthestandardbar\">Klikńće w symbolowej lajsće <emph>Standard</emph> na</variable>"
+
+#. GDBeV
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3148663\n"
+"help.text"
+msgid "<image id=\"img_id3150543\" src=\"cmd/sc_sortup.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150543\">Icon Sort Ascending</alt></image>"
+msgstr "<image id=\"img_id3150543\" src=\"cmd/sc_sortup.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150543\">Symbol Postupowacy sortěrować</alt></image>"
+
+#. vv2Zk
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3150767\n"
+"help.text"
+msgid "Sort Ascending"
+msgstr "Postupowacy sortěrować"
+
+#. QXzES
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3153969\n"
+"help.text"
+msgid "<image id=\"img_id3125863\" src=\"cmd/sc_sortdown.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3125863\">Icon Sort Descending</alt></image>"
+msgstr "<image id=\"img_id3125863\" src=\"cmd/sc_sortdown.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3125863\">Symbol za Spadowacy sortěrować</alt></image>"
+
+#. AHMAB
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3145364\n"
+"help.text"
+msgid "Sort Descending"
+msgstr "Spadowacy sortěrować"
+
+#. C3DzW
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3146984\n"
+"help.text"
+msgid "<variable id=\"dnstot\">Choose <emph>Data - Sort - Options</emph> tab.</variable>"
+msgstr "<variable id=\"dnstot\">Wubjerće <emph>Daty – Sortěrować… – Nastajenja</emph>.</variable>"
+
+#. KsX3d
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3155308\n"
+"help.text"
+msgid "<variable id=\"dnftr\">Choose <emph>Data - More Filters</emph>.</variable>"
+msgstr "<variable id=\"dnftr\">Wubjerće <emph>Daty – Dalše filtry</emph>.</variable>"
+
+#. GeDGj
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3148646\n"
+"help.text"
+msgid "Choose <emph>Data - AutoFilter</emph>."
+msgstr "Wubjerće <emph>Daty – Awtomatiski filter</emph>."
+
+#. QwBAG
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3151113\n"
+"help.text"
+msgid "On <emph>Tools</emph> bar or <emph>Table Data</emph> bar, click"
+msgstr "Klikńće w symbolowej lajsće <emph>Nastroje</emph> abo <emph>Tabelowe daty</emph> na"
+
+#. WEeFA
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3145799\n"
+"help.text"
+msgid "<image id=\"img_id3149413\" src=\"cmd/sc_datafilterautofilter.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149413\">Icon</alt></image>"
+msgstr "<image id=\"img_id3149413\" src=\"cmd/sc_datafilterautofilter.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149413\">Symbol za awtomatiski filter</alt></image>"
+
+#. dwkEN
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3149401\n"
+"help.text"
+msgid "AutoFilter"
+msgstr "Awtomatiski filter"
+
+#. MLpCL
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3156278\n"
+"help.text"
+msgid "<variable id=\"dnfspz\">Choose <emph>Data - More Filters - Advanced Filter...</emph> .</variable>"
+msgstr "<variable id=\"dnfspz\">Wubjerće <emph>Daty – Dalše filtry – Rozšěrjeny filter…</emph>.</variable>"
+
+#. PEeec
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3153764\n"
+"help.text"
+msgid "Choose <emph>Data - More Filters - Standard Filter... - Options</emph> label."
+msgstr "Wubjerće <emph>Daty – Dalše filtry – Standardny filter… – Nastajenja</emph>"
+
+#. rEgAn
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3155444\n"
+"help.text"
+msgid "Choose <emph>Data - More Filters - Advanced Filter... - Options</emph> label."
+msgstr "Wubjerće <emph>Daty – Dalše filtry – Rozšěrjeny filter… – Nastajenja</emph>."
+
+#. pcYQb
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3156382\n"
+"help.text"
+msgid "Choose <emph>Data - More Filters - Reset Filter</emph>."
+msgstr "Wubjerće <emph>Daty – Dalše filtry – Filter wróćo stajić</emph>."
+
+#. c524g
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3155961\n"
+"help.text"
+msgid "On <emph>Table Data</emph> bar, click <emph>Reset Filter/Sort</emph>."
+msgstr "Klikńće w symbolowej lajsće <emph>Tabelowe daty</emph> na <emph>Filter/Sortěrowanje wróćo stajić</emph>."
+
+#. MpJRw
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3148485\n"
+"help.text"
+msgid "<image id=\"img_id3145792\" src=\"cmd/sc_removefilter.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145792\">Icon</alt></image>"
+msgstr "<image id=\"img_id3145792\" src=\"cmd/sc_removefilter.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145792\">Symbol za Filter/Sortěrowanje wróćo stajić</alt></image>"
+
+#. B9xjy
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3149207\n"
+"help.text"
+msgid "Reset Filter/Sort"
+msgstr "Filter/Sortěrowanje wróćo stajić"
+
+#. eqxFL
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3152778\n"
+"help.text"
+msgid "<variable id=\"dnaftas\">Choose <emph>Data - More Filter - Hide AutoFilter</emph>.</variable>"
+msgstr "<variable id=\"dnaftas\">Wubjerće <emph>Daty – Dalše Filtry – Awtomatiski filter schować</emph>.</variable>"
+
+#. aoNDF
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3166424\n"
+"help.text"
+msgid "<variable id=\"dntegs\">Choose <emph>Data - Subtotals</emph>.</variable>"
+msgstr "<variable id=\"dntegs\">Wubjerće <emph>Daty – Mjezywuslědki…</emph>.</variable>"
+
+#. 4GWVS
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3154574\n"
+"help.text"
+msgid "<variable id=\"dntezd\">Choose <emph>Data - Subtotals - 1st, 2nd, 3rd Group</emph> tabs.</variable>"
+msgstr "<variable id=\"dntezd\">Wubjerće <emph>Daty – Mjezywuslědki… – Rajtark: 1./2./3. skupina</emph>.</variable>"
+
+#. rU3dk
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3151277\n"
+"help.text"
+msgid "<variable id=\"dntopi\">Choose <emph>Data - Subtotals - Options</emph> tab.</variable>"
+msgstr "<variable id=\"dntopi\">Wubjerće <emph>Daty – Mjezywuslědki – Rajtark: Nastajenja</emph>.</variable>"
+
+#. UUjAm
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3145133\n"
+"help.text"
+msgid "<variable id=\"datengueltig\">Choose <emph>Data - Validity</emph>.</variable>"
+msgstr "<variable id=\"datengueltig\">Wubjerće <emph>Daty – Płaćiwosć…</emph>.</variable>"
+
+#. zEawg
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3152992\n"
+"help.text"
+msgid "<variable id=\"datengueltigwerte\">Menu <emph>Data - Validity - Criteria</emph> tab.</variable>"
+msgstr "<variable id=\"datengueltigwerte\">Wubjerće <emph>Daty – Płaćiwosć… – Rajtark: Kriterije</emph>.</variable>"
+
+#. bfJfv
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3150367\n"
+"help.text"
+msgid "<variable id=\"datengueltigeingabe\">Choose <emph>Data - Validity - Input Help</emph> tab.</variable>"
+msgstr "<variable id=\"datengueltigeingabe\">Wubjerće <emph>Daty – Płaćiwosć… – Rajtark: Zapodawanska pomoc</emph>.</variable>"
+
+#. JHPw4
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3154486\n"
+"help.text"
+msgid "<variable id=\"datengueltigfehler\">Choose <emph>Data - Validity - Error Alert</emph> tab.</variable>"
+msgstr "<variable id=\"datengueltigfehler\">Wubjerće <emph>Daty – Płaćiwosć… – Zmylkowa zdźělenka</emph>.</variable>"
+
+#. dmwsV
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3146978\n"
+"help.text"
+msgid "<variable id=\"dnmfo\">Choose <emph>Data - Multiple Operations</emph>.</variable>"
+msgstr "<variable id=\"dnmfo\">Wubjerće <emph>Daty – Wjacore operacije</emph>.</variable>"
+
+#. iZdCu
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3155809\n"
+"help.text"
+msgid "<variable id=\"dnksd\">Choose <emph>Data - Consolidate</emph>.</variable>"
+msgstr "<variable id=\"dnksd\">Wubjerće <emph>Daty – Konsolidować…</emph>.</variable>"
+
+#. mQYW6
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3148701\n"
+"help.text"
+msgid "<variable id=\"dngld\">Choose <emph>Data - Group and Outline</emph>.</variable>"
+msgstr "<variable id=\"dngld\">Wubjerće <emph>Daty – Zeskupjenje a rozrjad</emph>.</variable>"
+
+#. 7AiJR
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3153815\n"
+"help.text"
+msgid "<variable id=\"dngda\">Choose <emph>Data - Group and Outline - Hide Details</emph>.</variable>"
+msgstr "<variable id=\"dngda\">Wubjerće <emph>Daty – Zeskupjenje a rozrjad – Podrobnosće schować</emph>.</variable>"
+
+#. A6P9g
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3159223\n"
+"help.text"
+msgid "<variable id=\"dngde\">Choose <emph>Data - Group and Outline - Show Details</emph>.</variable>"
+msgstr "<variable id=\"dngde\">Wubjerće <emph>Daty – Zeskupjenje a rozrjad – Podrobnosće pokazać</emph>.</variable>"
+
+#. ntpHG
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3146870\n"
+"help.text"
+msgid "Choose <emph>Data - Group and Outline - Group</emph>."
+msgstr "Wubjerće <emph>Daty – Zeskupjenje a rozrjad – Zeskupjenje…</emph>."
+
+#. AoaeW
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3144507\n"
+"help.text"
+msgid "F12"
+msgstr "F12"
+
+#. J93iw
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3144772\n"
+"help.text"
+msgid "On <emph>Tools</emph> bar, click"
+msgstr "Klikńće w symbolowej lajsće <emph>Nastroje</emph> na"
+
+#. KsK5g
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3149438\n"
+"help.text"
+msgid "<image id=\"img_id3153287\" src=\"cmd/sc_group.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153287\">Icon</alt></image>"
+msgstr "<image id=\"img_id3153287\" src=\"cmd/sc_group.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153287\">Symbol za Zeskupjenje</alt></image>"
+
+#. vxBx5
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3150214\n"
+"help.text"
+msgid "Group"
+msgstr "Zeskupić"
+
+#. A26D7
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3146781\n"
+"help.text"
+msgid "Choose <emph>Data - Group and Outline - Ungroup</emph>."
+msgstr "Wubjerće <emph>Daty – Zeskupjenje a rozrjad – Zeskupjenje zběhnyć…</emph>."
+
+#. svWUT
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3150892\n"
+"help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F12"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">cmd &#x2318;</caseinline><defaultinline>Strg</defaultinline></switchinline>+F12"
+
+#. JNLDc
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3155097\n"
+"help.text"
+msgid "On <emph>Tools</emph> bar, click"
+msgstr "Klikńće w symbolowej lajsće <emph>Nastroje</emph> na"
+
+#. TpnTL
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3150048\n"
+"help.text"
+msgid "<image id=\"img_id3155914\" src=\"cmd/sc_ungroup.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155914\">Icon</alt></image>"
+msgstr "<image id=\"img_id3155914\" src=\"cmd/sc_ungroup.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155914\">Symbol za Zeskupjenje zběhnyć</alt></image>"
+
+#. D5tBT
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3153555\n"
+"help.text"
+msgid "Ungroup"
+msgstr "Zeskupjenje zběhnyć"
+
+#. RwmQ6
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3153008\n"
+"help.text"
+msgid "<variable id=\"dnglagl\">Choose <emph>Data - Group and Outline - AutoOutline</emph>.</variable>"
+msgstr "<variable id=\"dnglagl\">Wubjerće <emph>Daty – Zeskupjenje a rozrjad – Awtomatiski rozrjad</emph>.</variable>"
+
+#. HhK9D
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3154709\n"
+"help.text"
+msgid "<variable id=\"dnglef\">Choose <emph>Data - Group and Outline - Remove Outline</emph>.</variable>"
+msgstr "<variable id=\"dnglef\">Wubjerće <emph>Daty – Zeskupjenje a rozrjad – Rozrjad wotstronić</emph>.</variable>"
+
+#. jHNnB
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id1774346\n"
+"help.text"
+msgid "<variable id=\"dngdrill\">Choose <emph>Data - Group and Outline - Show Details</emph> (for some pivot tables).</variable>"
+msgstr "<variable id=\"dngdrill\">Wubjerće <emph>Daty – Zeskupjenje a rozrjad – Podrobnosće pokazać</emph> (za někotre pivotowe tabele).</variable>"
+
+#. MQZ6A
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3155759\n"
+"help.text"
+msgid "<variable id=\"dndtpt\">Choose <emph>Data - Pivot Table</emph>.</variable>"
+msgstr "<variable id=\"dndtpt\">Wubjerće <emph>Daty – Pivotowa tabela</emph>.</variable>"
+
+#. TAn4b
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3154625\n"
+"help.text"
+msgid "<variable id=\"dndpa\">Choose <emph>Insert - Pivot Table</emph>.</variable>"
+msgstr "<variable id=\"dndpa\">Wubjerće <emph>Zasadźić – Pivotowa tabela…</emph>.</variable>"
+
+#. 6GiyL
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3147558\n"
+"help.text"
+msgid "<variable id=\"dndq\">Choose <emph>Insert - Pivot Table</emph>, in the <emph>Select Source</emph> dialog choose the option <emph>Data source registered in $[officename]</emph>.</variable>"
+msgstr "<variable id=\"dndq\">Wubjerć <emph>Zasadźić – Pivotowa tabela…</emph> a zmóžńće potom w dialogu <emph>Žórło wubrać</emph> nastajenje <emph>W $[officename] zregistrowane datowe žórło</emph>.</variable>"
+
+#. qP8SA
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3153297\n"
+"help.text"
+msgid "Choose <emph>Insert - Pivot Table</emph>, in the <emph>Select Source</emph> dialog choose the option <emph>Current selection</emph>."
+msgstr "Wubjerće <emph>Zasadźić – Pivotowa tabela…</emph> a zmóžńće potom w dialogu <emph>Žórło wubrać</emph> nastajenje <emph>Aktualny wuběr</emph>."
+
+#. GACGc
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3145118\n"
+"help.text"
+msgid "Choose <emph>Insert - Pivot Table</emph>, in the <emph>Select Source</emph> dialog choose the option <emph>Data source registered in $[officename]</emph>, click <emph>OK</emph> to see <emph>Select Data Source</emph> dialog."
+msgstr "Wubjerće <emph>Zasadźić – Pivotowa tabela…</emph> a zmóžńće potom w dialogu <emph>Žórło wubrać</emph> nastajenje <emph> W $[officename] zregistrowane datowe žórło</emph> a klikńće na <emph>W porjadku</emph>, zo byšće dialog <emph>Datowe žórło wubrać</emph>."
+
+#. yTKVJ
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3153294\n"
+"help.text"
+msgid "<variable id=\"dndpak\">Choose <emph>Data - Pivot Table - Refresh</emph>.</variable>"
+msgstr "<variable id=\"dndpak\">Wubjerće <emph>Daty – Pivotowa tabela – Aktualizować</emph>.</variable>"
+
+#. QeUt7
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3151344\n"
+"help.text"
+msgid "<variable id=\"dndploe\">Choose <emph>Data - Pivot Table - Delete</emph>.</variable>"
+msgstr "<variable id=\"dndploe\">Wubjerće <emph>Daty – Pivotowa tabela – Zhašeć</emph>.</variable>"
+
+#. nX3fD
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3150397\n"
+"help.text"
+msgid "<variable id=\"dndakt\">Choose <emph>Data - Refresh Range</emph>.</variable>"
+msgstr "<variable id=\"dndakt\">Wubjerće <emph>Daty – Wobłuk aktualizować</emph>.</variable>"
+
+#. xpDxc
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_idN10B8F\n"
+"help.text"
+msgid "<variable id=\"grouping\">Choose <emph>Data - Group and Outline - Group</emph>.</variable>"
+msgstr "<variable id=\"grouping\">Wubjerće <emph>Daty – Zeskupjenje a rozrjad – Zeskupjenje…</emph>.</variable>"
+
+#. mAfT6
+#: avail_release.xhp
+msgctxt ""
+"avail_release.xhp\n"
+"tit\n"
+"help.text"
+msgid "Available since release"
+msgstr "K dispoziciji wot wersije"
+
+#. FSRQP
+#: avail_release.xhp
+msgctxt ""
+"avail_release.xhp\n"
+"par_id651551701041690\n"
+"help.text"
+msgid "This function is available since %PRODUCTNAME 3.3."
+msgstr "Tuta funkcija je wot %PRODUCTNAME 3.3 k dispoziciji."
+
+#. f7Pu4
+#: avail_release.xhp
+msgctxt ""
+"avail_release.xhp\n"
+"par_id651551401041690\n"
+"help.text"
+msgid "This function is available since %PRODUCTNAME 3.4."
+msgstr "Tuta funkcija je wot %PRODUCTNAME 3.4 k dispoziciji."
+
+#. ctCQZ
+#: avail_release.xhp
+msgctxt ""
+"avail_release.xhp\n"
+"par_id651551401041635\n"
+"help.text"
+msgid "This function is available since %PRODUCTNAME 3.5."
+msgstr "Tuta funkcija je wot %PRODUCTNAME 3.5 k dispoziciji."
+
+#. s2cEc
+#: avail_release.xhp
+msgctxt ""
+"avail_release.xhp\n"
+"par_id651551401041636\n"
+"help.text"
+msgid "This function is available since %PRODUCTNAME 3.6."
+msgstr "Tuta funkcija je wot %PRODUCTNAME 3.6 k dispoziciji."
+
+#. VJxhP
+#: avail_release.xhp
+msgctxt ""
+"avail_release.xhp\n"
+"par_id651551401041640\n"
+"help.text"
+msgid "This function is available since %PRODUCTNAME 4.0."
+msgstr "Tuta funkcija je wot %PRODUCTNAME 4.0 k dispoziciji."
+
+#. CBpb7
+#: avail_release.xhp
+msgctxt ""
+"avail_release.xhp\n"
+"par_id651551401041641\n"
+"help.text"
+msgid "This function is available since %PRODUCTNAME 4.1."
+msgstr "Tuta funkcija je wot %PRODUCTNAME 4.1 k dispoziciji."
+
+#. 2cFVC
+#: avail_release.xhp
+msgctxt ""
+"avail_release.xhp\n"
+"par_id651551401041642\n"
+"help.text"
+msgid "This function is available since %PRODUCTNAME 4.2."
+msgstr "Tuta funkcija je wot %PRODUCTNAME 4.2 k dispoziciji."
+
+#. iV7XA
+#: avail_release.xhp
+msgctxt ""
+"avail_release.xhp\n"
+"par_id651551401041643\n"
+"help.text"
+msgid "This function is available since %PRODUCTNAME 4.3."
+msgstr "Tuta funkcija je wot %PRODUCTNAME 4.3 k dispoziciji."
+
+#. ZwQHj
+#: avail_release.xhp
+msgctxt ""
+"avail_release.xhp\n"
+"par_id651551401041644\n"
+"help.text"
+msgid "This function is available since %PRODUCTNAME 4.4."
+msgstr "Tuta funkcija je wot %PRODUCTNAME 4.4 k dispoziciji."
+
+#. jcAXr
+#: avail_release.xhp
+msgctxt ""
+"avail_release.xhp\n"
+"par_id651551401041650\n"
+"help.text"
+msgid "This function is available since %PRODUCTNAME 5.0."
+msgstr "Tuta funkcija je wot %PRODUCTNAME 5.0 k dispoziciji."
+
+#. zV2VV
+#: avail_release.xhp
+msgctxt ""
+"avail_release.xhp\n"
+"par_id651551401041651\n"
+"help.text"
+msgid "This function is available since %PRODUCTNAME 5.1."
+msgstr "Tuta funkcija je wot %PRODUCTNAME 5.1 k dispoziciji."
+
+#. DJsbg
+#: avail_release.xhp
+msgctxt ""
+"avail_release.xhp\n"
+"par_id651551401041652\n"
+"help.text"
+msgid "This function is available since %PRODUCTNAME 5.2."
+msgstr "Tuta funkcija je wot %PRODUCTNAME 5.2 k dispoziciji."
+
+#. UBjho
+#: avail_release.xhp
+msgctxt ""
+"avail_release.xhp\n"
+"par_id651551401041653\n"
+"help.text"
+msgid "This function is available since %PRODUCTNAME 5.3."
+msgstr "Tuta funkcija je wot %PRODUCTNAME 5.3 k dispoziciji."
+
+#. oGbPE
+#: avail_release.xhp
+msgctxt ""
+"avail_release.xhp\n"
+"par_id651551401041654\n"
+"help.text"
+msgid "This function is available since %PRODUCTNAME 5.4."
+msgstr "Tuta funkcija je wot %PRODUCTNAME 5.4 k dispoziciji."
+
+#. 75SZe
+#: avail_release.xhp
+msgctxt ""
+"avail_release.xhp\n"
+"par_id651551401041660\n"
+"help.text"
+msgid "This function is available since %PRODUCTNAME 6.0."
+msgstr "Tuta funkcija je wot %PRODUCTNAME 6.0 k dispoziciji."
+
+#. qEaTq
+#: avail_release.xhp
+msgctxt ""
+"avail_release.xhp\n"
+"par_id651551401041661\n"
+"help.text"
+msgid "This function is available since %PRODUCTNAME 6.1."
+msgstr "Tuta funkcija je wot %PRODUCTNAME 6.1 k dispoziciji."
+
+#. WpAdt
+#: avail_release.xhp
+msgctxt ""
+"avail_release.xhp\n"
+"par_id651551401041662\n"
+"help.text"
+msgid "This function is available since %PRODUCTNAME 6.2."
+msgstr "Tuta funkcija je wot %PRODUCTNAME 6.2 k dispoziciji."
+
+#. FyJfT
+#: avail_release.xhp
+msgctxt ""
+"avail_release.xhp\n"
+"par_id651551401041663\n"
+"help.text"
+msgid "This function is available since %PRODUCTNAME 6.3."
+msgstr "Tuta funkcija je wot %PRODUCTNAME 6.3 k dispoziciji."
+
+#. 3TzRz
+#: avail_release.xhp
+msgctxt ""
+"avail_release.xhp\n"
+"par_id651551401041664\n"
+"help.text"
+msgid "This function is available since %PRODUCTNAME 6.4."
+msgstr "Tuta funkcija je wot %PRODUCTNAME 6.4 k dispoziciji."
+
+#. DWBCQ
+#: avail_release.xhp
+msgctxt ""
+"avail_release.xhp\n"
+"par_id651551401041665\n"
+"help.text"
+msgid "This function is available since %PRODUCTNAME 7.0."
+msgstr "Tuta funkcija je wot %PRODUCTNAME 7.0 k dispoziciji."
+
+#. 3FGD2
+#: avail_release.xhp
+msgctxt ""
+"avail_release.xhp\n"
+"par_id651551401041666\n"
+"help.text"
+msgid "This function is available since %PRODUCTNAME 7.1."
+msgstr "Tuta funkcija je wot %PRODUCTNAME 7.1 k dispoziciji."
+
+#. jGT89
+#: avail_release.xhp
+msgctxt ""
+"avail_release.xhp\n"
+"par_id651551401041667\n"
+"help.text"
+msgid "This function is available since %PRODUCTNAME 7.2."
+msgstr "Tuta funkcija je wot %PRODUCTNAME 7.2 k dispoziciji."
+
+#. LSPBz
+#: sheet_menu.xhp
+msgctxt ""
+"sheet_menu.xhp\n"
+"tit\n"
+"help.text"
+msgid "Sheet Menu"
+msgstr "Meni Tabela"
+
+#. PjDuc
+#: sheet_menu.xhp
+msgctxt ""
+"sheet_menu.xhp\n"
+"hd_id160220162108024368\n"
+"help.text"
+msgid "Sheet Menu"
+msgstr "Meni Tabela"
+
+#. 6Xr4C
+#: sheet_menu.xhp
+msgctxt ""
+"sheet_menu.xhp\n"
+"par_id160220162106567373\n"
+"help.text"
+msgid "<variable id=\"insert_rows_above\">Choose <emph>Sheet - Insert Rows - Rows Above</emph>.</variable>"
+msgstr "<variable id=\"insert_rows_above\">Wubjerće <emph>Tabela – Linki zasadźić - Linki nad tym</emph>.</variable>"
+
+#. pXitE
+#: sheet_menu.xhp
+msgctxt ""
+"sheet_menu.xhp\n"
+"par_id160220162109048207\n"
+"help.text"
+msgid "<variable id=\"insert_rows_below\">Choose <emph>Sheet - Insert Rows - Rows Below</emph>.</variable>"
+msgstr "<variable id=\"insert_rows_below\">Wubjerće <emph>Tabela – Linki zasadźić – Linki pod tym</emph>.</variable>"
+
+#. uBtCP
+#: sheet_menu.xhp
+msgctxt ""
+"sheet_menu.xhp\n"
+"par_id160220162107055028\n"
+"help.text"
+msgid "<variable id=\"insert_columns_left\">Choose <emph>Sheet - Insert Columns - Columns Before</emph>.</variable>"
+msgstr "<variable id=\"insert_columns_left\">Wubjerće <emph>Tabela – Špalty zasadźić – Špalty před tym</emph>.</variable>"
+
+#. qQg7B
+#: sheet_menu.xhp
+msgctxt ""
+"sheet_menu.xhp\n"
+"par_id160220162109126013\n"
+"help.text"
+msgid "<variable id=\"insert_columns_right\">Choose <emph>Sheet - Insert Columns - Columns After</emph>.</variable>"
+msgstr "<variable id=\"insert_columns_left\">Wubjerće <emph>Tabela – Špalty zasadźić – Špalty za tym</emph>.</variable>"
+
+#. GiD3z
+#: sheet_menu.xhp
+msgctxt ""
+"sheet_menu.xhp\n"
+"par_id3149095\n"
+"help.text"
+msgid "<variable id=\"insert_page_break\">Choose <emph>Sheet - Insert Page Break</emph>.</variable>"
+msgstr "<variable id=\"insert_page_break\">Wubjerće <emph>Tabela – Łamanje strony zasadźić</emph>.</variable>"
+
+#. VeJdv
+#: sheet_menu.xhp
+msgctxt ""
+"sheet_menu.xhp\n"
+"par_id3149398\n"
+"help.text"
+msgid "<variable id=\"insert_page_break_row\">Choose <emph>Sheet - Insert Page Break - Row Break</emph>.</variable>"
+msgstr "<variable id=\"insert_page_break_row\">Wubjerće <emph>Tabela – Łamanje strony zasadźić – Łamanje linki</emph>.</variable>"
+
+#. 3Cc3c
+#: sheet_menu.xhp
+msgctxt ""
+"sheet_menu.xhp\n"
+"par_id3150084\n"
+"help.text"
+msgid "<variable id=\"insert_page_break_column\">Choose <emph>Sheet - Insert Page Break - Column Break</emph>.</variable>"
+msgstr "<variable id=\"insert_page_break_column\">Wubjerće <emph>Tabela – Łamanje strony zasadźić – Łamanje špalty</emph>.</variable>"
+
+#. i3nrt
+#: sheet_menu.xhp
+msgctxt ""
+"sheet_menu.xhp\n"
+"par_id3153093\n"
+"help.text"
+msgid "<variable id=\"delete_page_break\">Choose <emph>Sheet - Delete Page Break</emph>.</variable>"
+msgstr "<variable id=\"delete_page_break\">Wubjerće <emph>Tabela – Łamanje strony zhašeć</emph>.</variable>"
+
+#. NTjp2
+#: sheet_menu.xhp
+msgctxt ""
+"sheet_menu.xhp\n"
+"par_id3153191\n"
+"help.text"
+msgid "<variable id=\"delete_page_break_row\">Choose <emph>Sheet - Delete Page Break - Row Break</emph>.</variable>"
+msgstr "<variable id=\"delete_page_break_row\">Wubjerće <emph>Tabela – Łamanje strony zhašeć – Łamanje linki</emph>.</variable>"
+
+#. vP5dr
+#: sheet_menu.xhp
+msgctxt ""
+"sheet_menu.xhp\n"
+"par_id3145645\n"
+"help.text"
+msgid "<variable id=\"delete_page_break_column\">Choose <emph>Sheet - Delete Page Break - Column Break</emph>.</variable>"
+msgstr "<variable id=\"delete_page_break_column\">>Wubjerće <emph>Tabela – Łamanje strony zhašeć – Łamanje špalty</emph>.</variable>"
+
+#. PGEHP
+#: sheet_menu.xhp
+msgctxt ""
+"sheet_menu.xhp\n"
+"par_id281631903136031\n"
+"help.text"
+msgid "<variable id=\"edit_comment\">Choose <menuitem>Sheet - Cell Comments - Edit Comment</menuitem></variable>"
+msgstr "<variable id=\"edit_comment\">Wubjerće <menuitem>Tabela – Celowe komentary – Komentar wobdźěłać</menuitem></variable>"
+
+#. rrCWM
+#: sheet_menu.xhp
+msgctxt ""
+"sheet_menu.xhp\n"
+"par_id641631903140705\n"
+"help.text"
+msgid "<variable id=\"hide_comment\">Choose <menuitem>Sheet - Cell Comments - Hide Comment</menuitem></variable>"
+msgstr "<variable id=\"hide_comment\">Wubjerće <menuitem>Tabela – Celowe komentary – Komentar schować</menuitem></variable>"
+
+#. YvB6F
+#: sheet_menu.xhp
+msgctxt ""
+"sheet_menu.xhp\n"
+"par_id611631903144777\n"
+"help.text"
+msgid "<variable id=\"show_comment\">Choose <menuitem>Sheet - Cell Comments - Show Comment</menuitem></variable>"
+msgstr "<variable id=\"show_comment\">Wubjerće <menuitem>Tabela – Celowe komentary – Komentar pokazać</menuitem></variable>"
+
+#. F4BHH
+#: sheet_menu.xhp
+msgctxt ""
+"sheet_menu.xhp\n"
+"par_id961631903149304\n"
+"help.text"
+msgid "<variable id=\"delete_comment\">Choose <menuitem>Sheet - Cell Comments - Delete Comment</menuitem></variable>"
+msgstr "<variable id=\"delete_comment\">Wubjerće <menuitem>Tabela – Celowe komentary – Komentar zhašeć</menuitem></variable>"
+
+#. NVNhS
+#: sheet_menu.xhp
+msgctxt ""
+"sheet_menu.xhp\n"
+"par_id471631903160977\n"
+"help.text"
+msgid "<variable id=\"delete_all_comments\">Choose <menuitem>Sheet - Cell Comments - Delete All Comments</menuitem></variable>"
+msgstr "<variable id=\"delete_all_comments\">Wubjerće <menuitem>Tabela – Celowe komentary – Wšě komentary zhašeć</menuitem></variable>"
diff --git a/source/hsb/helpcontent2/source/text/scalc/01.po b/source/hsb/helpcontent2/source/text/scalc/01.po
new file mode 100644
index 00000000000..a6930bcae31
--- /dev/null
+++ b/source/hsb/helpcontent2/source/text/scalc/01.po
@@ -0,0 +1,73256 @@
+#. extracted from helpcontent2/source/text/scalc/01
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2022-10-10 13:35+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#. sZfWF
+#: 01120000.xhp
+msgctxt ""
+"01120000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Print Preview"
+msgstr ""
+
+#. NKqbi
+#: 01120000.xhp
+msgctxt ""
+"01120000.xhp\n"
+"hd_id1918698\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/01120000.xhp\">Print Preview</link>"
+msgstr ""
+
+#. fVsK6
+#: 01120000.xhp
+msgctxt ""
+"01120000.xhp\n"
+"par_id3831598\n"
+"help.text"
+msgid "<ahelp hid=\".uno:PrintPreview\">Displays a preview of the printed page or closes the preview.</ahelp>"
+msgstr ""
+
+#. ijRPC
+#: 01120000.xhp
+msgctxt ""
+"01120000.xhp\n"
+"par_id3145847\n"
+"help.text"
+msgid "Use the icons on the <emph>Print Preview Bar</emph> to scroll through the pages of the document or to print the document."
+msgstr ""
+
+#. 46HWh
+#: 01120000.xhp
+msgctxt ""
+"01120000.xhp\n"
+"par_id9838862\n"
+"help.text"
+msgid "You can also press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Up and <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Down keys to scroll through the pages."
+msgstr ""
+
+#. a3yjJ
+#: 01120000.xhp
+msgctxt ""
+"01120000.xhp\n"
+"par_id7211828\n"
+"help.text"
+msgid "You cannot edit your document while you are in the print preview."
+msgstr ""
+
+#. r6cpD
+#: 01120000.xhp
+msgctxt ""
+"01120000.xhp\n"
+"par_id460829\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">To exit the print preview, click the <emph>Close Preview</emph> button.</ahelp>"
+msgstr ""
+
+#. 2uwLw
+#: 01120000.xhp
+msgctxt ""
+"01120000.xhp\n"
+"par_id3155829\n"
+"help.text"
+msgid "<link href=\"text/scalc/main0210.xhp\" name=\"Page View Object Bar\">Page View Object Bar</link>"
+msgstr ""
+
+#. yzNBP
+#: 02110000.xhp
+msgctxt ""
+"02110000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Navigator"
+msgstr ""
+
+#. accJq
+#: 02110000.xhp
+msgctxt ""
+"02110000.xhp\n"
+"bm_id3150791\n"
+"help.text"
+msgid "<bookmark_value>Navigator;for sheets</bookmark_value><bookmark_value>navigating;in spreadsheets</bookmark_value><bookmark_value>displaying; scenario names</bookmark_value><bookmark_value>scenarios;displaying names</bookmark_value>"
+msgstr ""
+
+#. StZPy
+#: 02110000.xhp
+msgctxt ""
+"02110000.xhp\n"
+"hd_id3150791\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navigator</link>"
+msgstr ""
+
+#. RJGLF
+#: 02110000.xhp
+msgctxt ""
+"02110000.xhp\n"
+"par_id3156422\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#docking\" name=\"dockable window\">dockable window</link>."
+msgstr ""
+
+#. tDkHa
+#: 02110000.xhp
+msgctxt ""
+"02110000.xhp\n"
+"par_id3145271\n"
+"help.text"
+msgid "Choose <emph>View - Navigator</emph> to display the Navigator."
+msgstr ""
+
+#. LdmQW
+#: 02110000.xhp
+msgctxt ""
+"02110000.xhp\n"
+"hd_id3159155\n"
+"help.text"
+msgid "Column"
+msgstr ""
+
+#. Sk2Cs
+#: 02110000.xhp
+msgctxt ""
+"02110000.xhp\n"
+"par_id3146984\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 ""
+
+#. EtDeK
+#: 02110000.xhp
+msgctxt ""
+"02110000.xhp\n"
+"hd_id3147126\n"
+"help.text"
+msgid "Row"
+msgstr ""
+
+#. Bjxsy
+#: 02110000.xhp
+msgctxt ""
+"02110000.xhp\n"
+"par_id3149958\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 ""
+
+#. wRKcF
+#: 02110000.xhp
+msgctxt ""
+"02110000.xhp\n"
+"hd_id3150717\n"
+"help.text"
+msgid "Data Range"
+msgstr ""
+
+#. Ludso
+#: 02110000.xhp
+msgctxt ""
+"02110000.xhp\n"
+"par_id3150752\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 ""
+
+#. qXGBa
+#: 02110000.xhp
+msgctxt ""
+"02110000.xhp\n"
+"par_id3159264\n"
+"help.text"
+msgid "<image id=\"img_id3147338\" src=\"cmd/lc_dataranges.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3147338\">Icon</alt></image>"
+msgstr ""
+
+#. NpEWf
+#: 02110000.xhp
+msgctxt ""
+"02110000.xhp\n"
+"par_id3146919\n"
+"help.text"
+msgid "Data Range"
+msgstr ""
+
+#. f8XR4
+#: 02110000.xhp
+msgctxt ""
+"02110000.xhp\n"
+"hd_id3148488\n"
+"help.text"
+msgid "Start"
+msgstr ""
+
+#. PG9Gb
+#: 02110000.xhp
+msgctxt ""
+"02110000.xhp\n"
+"par_id3150086\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 ""
+
+#. Bm44b
+#: 02110000.xhp
+msgctxt ""
+"02110000.xhp\n"
+"par_id3152994\n"
+"help.text"
+msgid "<image id=\"img_id3150515\" src=\"cmd/lc_prevrecord.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150515\">Icon Start</alt></image>"
+msgstr ""
+
+#. JRnuj
+#: 02110000.xhp
+msgctxt ""
+"02110000.xhp\n"
+"par_id3154372\n"
+"help.text"
+msgid "Start"
+msgstr ""
+
+#. FUgiQ
+#: 02110000.xhp
+msgctxt ""
+"02110000.xhp\n"
+"hd_id3146982\n"
+"help.text"
+msgid "End"
+msgstr ""
+
+#. vJJGz
+#: 02110000.xhp
+msgctxt ""
+"02110000.xhp\n"
+"par_id3152985\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 ""
+
+#. U29rW
+#: 02110000.xhp
+msgctxt ""
+"02110000.xhp\n"
+"par_id3159170\n"
+"help.text"
+msgid "<image id=\"img_id3148871\" src=\"cmd/lc_nextrecord.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3148871\">Icon End</alt></image>"
+msgstr ""
+
+#. t3E2x
+#: 02110000.xhp
+msgctxt ""
+"02110000.xhp\n"
+"par_id3147072\n"
+"help.text"
+msgid "End"
+msgstr ""
+
+#. x7kGk
+#: 02110000.xhp
+msgctxt ""
+"02110000.xhp\n"
+"hd_id3150107\n"
+"help.text"
+msgid "Toggle"
+msgstr ""
+
+#. Ha9GK
+#: 02110000.xhp
+msgctxt ""
+"02110000.xhp\n"
+"par_id3159098\n"
+"help.text"
+msgid "Toggles the content view. Only the selected Navigator element and its subelements are displayed. Click the icon again to restore all elements for viewing."
+msgstr ""
+
+#. F7cyn
+#: 02110000.xhp
+msgctxt ""
+"02110000.xhp\n"
+"par_id3152869\n"
+"help.text"
+msgid "<image id=\"img_id3149126\" src=\"sw/res/sc20244.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149126\">Icon Toggle</alt></image>"
+msgstr ""
+
+#. neyie
+#: 02110000.xhp
+msgctxt ""
+"02110000.xhp\n"
+"par_id3159229\n"
+"help.text"
+msgid "Toggle"
+msgstr ""
+
+#. gASoC
+#: 02110000.xhp
+msgctxt ""
+"02110000.xhp\n"
+"hd_id3147244\n"
+"help.text"
+msgid "Scenarios"
+msgstr ""
+
+#. 3b9Gu
+#: 02110000.xhp
+msgctxt ""
+"02110000.xhp\n"
+"par_id3153955\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 ""
+
+#. rJfhC
+#: 02110000.xhp
+msgctxt ""
+"02110000.xhp\n"
+"par_id3148745\n"
+"help.text"
+msgid "<image id=\"img_id3159256\" src=\"cmd/sc_thesaurus.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3159256\">Icon Scenarios</alt></image>"
+msgstr ""
+
+#. 4ANZj
+#: 02110000.xhp
+msgctxt ""
+"02110000.xhp\n"
+"par_id3166466\n"
+"help.text"
+msgid "Scenarios"
+msgstr ""
+
+#. xDAAF
+#: 02110000.xhp
+msgctxt ""
+"02110000.xhp\n"
+"par_idN10A6C\n"
+"help.text"
+msgid "If the Navigator displays scenarios, you can access the following commands when you right-click a scenario entry:"
+msgstr ""
+
+#. RzGer
+#: 02110000.xhp
+msgctxt ""
+"02110000.xhp\n"
+"par_idN10A77\n"
+"help.text"
+msgid "Delete"
+msgstr ""
+
+#. juRBz
+#: 02110000.xhp
+msgctxt ""
+"02110000.xhp\n"
+"par_idN10A7B\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/scenariomenu/delete\">Deletes the selected scenario.</ahelp>"
+msgstr ""
+
+#. QDC2s
+#: 02110000.xhp
+msgctxt ""
+"02110000.xhp\n"
+"par_idN10A92\n"
+"help.text"
+msgid "Properties"
+msgstr ""
+
+#. oUWEB
+#: 02110000.xhp
+msgctxt ""
+"02110000.xhp\n"
+"par_idN10A96\n"
+"help.text"
+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 ""
+
+#. ph3Ej
+#: 02110000.xhp
+msgctxt ""
+"02110000.xhp\n"
+"hd_id3150037\n"
+"help.text"
+msgid "Drag Mode"
+msgstr ""
+
+#. 8F7ZG
+#: 02110000.xhp
+msgctxt ""
+"02110000.xhp\n"
+"par_id3157876\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 ""
+
+#. DARJp
+#: 02110000.xhp
+msgctxt ""
+"02110000.xhp\n"
+"par_id3149947\n"
+"help.text"
+msgid "<image id=\"img_id3159119\" src=\"cmd/lc_chainframes.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3159119\">Icon Drag Mode</alt></image>"
+msgstr ""
+
+#. 4gSwR
+#: 02110000.xhp
+msgctxt ""
+"02110000.xhp\n"
+"par_id3150656\n"
+"help.text"
+msgid "Drag Mode"
+msgstr ""
+
+#. CBoGP
+#: 02110000.xhp
+msgctxt ""
+"02110000.xhp\n"
+"hd_id3149009\n"
+"help.text"
+msgid "Insert as Hyperlink"
+msgstr ""
+
+#. 6A8Ma
+#: 02110000.xhp
+msgctxt ""
+"02110000.xhp\n"
+"par_id3146938\n"
+"help.text"
+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 ""
+
+#. 8ewhC
+#: 02110000.xhp
+msgctxt ""
+"02110000.xhp\n"
+"par_id3880733\n"
+"help.text"
+msgid "If you insert a hyperlink that links to an open document, you need to save the document before you can use the hyperlink."
+msgstr ""
+
+#. 7DFYD
+#: 02110000.xhp
+msgctxt ""
+"02110000.xhp\n"
+"hd_id3154682\n"
+"help.text"
+msgid "Insert as Link"
+msgstr ""
+
+#. AHS3p
+#: 02110000.xhp
+msgctxt ""
+"02110000.xhp\n"
+"par_id3150746\n"
+"help.text"
+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 ""
+
+#. Nv6EU
+#: 02110000.xhp
+msgctxt ""
+"02110000.xhp\n"
+"hd_id3145824\n"
+"help.text"
+msgid "Insert as Copy"
+msgstr ""
+
+#. hbhsj
+#: 02110000.xhp
+msgctxt ""
+"02110000.xhp\n"
+"par_id3147471\n"
+"help.text"
+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 ""
+
+#. pdbCu
+#: 02110000.xhp
+msgctxt ""
+"02110000.xhp\n"
+"hd_id3147423\n"
+"help.text"
+msgid "Objects"
+msgstr ""
+
+#. WSEpP
+#: 02110000.xhp
+msgctxt ""
+"02110000.xhp\n"
+"par_id3150700\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/navigatorpanel/contentbox\">Displays all objects in your document.</ahelp>"
+msgstr ""
+
+#. G3QTA
+#: 02110000.xhp
+msgctxt ""
+"02110000.xhp\n"
+"hd_id3150860\n"
+"help.text"
+msgid "Documents"
+msgstr ""
+
+#. kEyAe
+#: 02110000.xhp
+msgctxt ""
+"02110000.xhp\n"
+"par_id3153929\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 ""
+
+#. 9DPjf
+#: 02120000.xhp
+msgctxt ""
+"02120000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Headers & Footers"
+msgstr ""
+
+#. 8CdQf
+#: 02120000.xhp
+msgctxt ""
+"02120000.xhp\n"
+"hd_id3145251\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/02120000.xhp\" name=\"Headers & Footers\">Headers & Footers</link>"
+msgstr ""
+
+#. b7G8C
+#: 02120000.xhp
+msgctxt ""
+"02120000.xhp\n"
+"par_id3151073\n"
+"help.text"
+msgid "<variable id=\"kopfundfusszeilentext\"><ahelp hid=\".\">Allows you to define and format headers and footers.</ahelp> </variable>"
+msgstr ""
+
+#. EYDH4
+#: 02120000.xhp
+msgctxt ""
+"02120000.xhp\n"
+"par_id3153415\n"
+"help.text"
+msgid "The <emph>Headers/Footers</emph> dialog contains the tabs for defining headers and footers. There will be separate tabs for the left and right page headers and footers if the <emph>Same content left/right</emph> option was not marked in the <link href=\"text/scalc/01/05070000.xhp\" name=\"Page Style\"><emph>Page Style</emph></link> dialog."
+msgstr ""
+
+#. CTq6U
+#: 02120100.xhp
+msgctxt ""
+"02120100.xhp\n"
+"tit\n"
+"help.text"
+msgid "Header/Footer"
+msgstr ""
+
+#. AE2cz
+#: 02120100.xhp
+msgctxt ""
+"02120100.xhp\n"
+"bm_id3153360\n"
+"help.text"
+msgid "<bookmark_value>page styles; headers</bookmark_value> <bookmark_value>page styles; footers</bookmark_value> <bookmark_value>headers; defining</bookmark_value> <bookmark_value>footers; defining</bookmark_value> <bookmark_value>file names in headers/footers</bookmark_value> <bookmark_value>changing;dates, automatically</bookmark_value> <bookmark_value>dates;updating automatically</bookmark_value> <bookmark_value>automatic date updates</bookmark_value>"
+msgstr ""
+
+#. GDJKF
+#: 02120100.xhp
+msgctxt ""
+"02120100.xhp\n"
+"hd_id3153360\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/02120100.xhp\" name=\"Header/Footer\">Header/Footer</link>"
+msgstr ""
+
+#. vEDP6
+#: 02120100.xhp
+msgctxt ""
+"02120100.xhp\n"
+"par_id3150768\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/headerfootercontent/HeaderFooterContent\">Defines or formats a header or footer for a Page Style.</ahelp>"
+msgstr ""
+
+#. zcpzd
+#: 02120100.xhp
+msgctxt ""
+"02120100.xhp\n"
+"hd_id3145748\n"
+"help.text"
+msgid "Left Area"
+msgstr ""
+
+#. Zoqx2
+#: 02120100.xhp
+msgctxt ""
+"02120100.xhp\n"
+"par_id3147434\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 ""
+
+#. 3yeo5
+#: 02120100.xhp
+msgctxt ""
+"02120100.xhp\n"
+"hd_id3148648\n"
+"help.text"
+msgid "Center Area"
+msgstr ""
+
+#. B4XrB
+#: 02120100.xhp
+msgctxt ""
+"02120100.xhp\n"
+"par_id3163710\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter the text to be displayed at the center of the header or footer.</ahelp>"
+msgstr ""
+
+#. bwGjk
+#: 02120100.xhp
+msgctxt ""
+"02120100.xhp\n"
+"hd_id3154942\n"
+"help.text"
+msgid "Right Area"
+msgstr ""
+
+#. uChUF
+#: 02120100.xhp
+msgctxt ""
+"02120100.xhp\n"
+"par_id3147126\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 ""
+
+#. L6q7H
+#: 02120100.xhp
+msgctxt ""
+"02120100.xhp\n"
+"par_idN10811\n"
+"help.text"
+msgid "Header/Footer"
+msgstr ""
+
+#. H7MEG
+#: 02120100.xhp
+msgctxt ""
+"02120100.xhp\n"
+"par_idN10815\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select a predefined header or footer from the list.</ahelp>"
+msgstr ""
+
+#. 4EKkW
+#: 02120100.xhp
+msgctxt ""
+"02120100.xhp\n"
+"hd_id3154729\n"
+"help.text"
+msgid "Text attributes"
+msgstr ""
+
+#. rjUzy
+#: 02120100.xhp
+msgctxt ""
+"02120100.xhp\n"
+"par_id3150717\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\"><emph>Font</emph></link>, <link href=\"text/shared/01/05020200.xhp\" name=\"Font Effects\"><emph>Font Effects</emph></link> and <link href=\"text/shared/01/05020500.xhp\" name=\"Font Position\"><emph>Font Position</emph></link>."
+msgstr ""
+
+#. 5DMJG
+#: 02120100.xhp
+msgctxt ""
+"02120100.xhp\n"
+"par_id3159266\n"
+"help.text"
+msgid "<image id=\"img_id3156386\" src=\"sc/res/text.png\" width=\"0.1874in\" height=\"0.1665in\"><alt id=\"alt_id3156386\">Icon</alt></image>"
+msgstr ""
+
+#. c5Sg3
+#: 02120100.xhp
+msgctxt ""
+"02120100.xhp\n"
+"par_id3155336\n"
+"help.text"
+msgid "Text Attributes"
+msgstr ""
+
+#. r4APU
+#: 02120100.xhp
+msgctxt ""
+"02120100.xhp\n"
+"hd_id3145792\n"
+"help.text"
+msgid "File Name"
+msgstr ""
+
+#. Nh3vd
+#: 02120100.xhp
+msgctxt ""
+"02120100.xhp\n"
+"par_id3150206\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 ""
+
+#. kxABQ
+#: 02120100.xhp
+msgctxt ""
+"02120100.xhp\n"
+"par_id3150369\n"
+"help.text"
+msgid "<image id=\"img_id3150518\" src=\"res/folderop.png\" width=\"0.1665in\" height=\"0.1252in\"><alt id=\"alt_id3150518\">Icon</alt></image>"
+msgstr ""
+
+#. USNCP
+#: 02120100.xhp
+msgctxt ""
+"02120100.xhp\n"
+"par_id3154487\n"
+"help.text"
+msgid "File Name"
+msgstr ""
+
+#. DFi6k
+#: 02120100.xhp
+msgctxt ""
+"02120100.xhp\n"
+"hd_id3155812\n"
+"help.text"
+msgid "Sheet Name"
+msgstr ""
+
+#. GzsPC
+#: 02120100.xhp
+msgctxt ""
+"02120100.xhp\n"
+"par_id3148842\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 ""
+
+#. 6bCJD
+#: 02120100.xhp
+msgctxt ""
+"02120100.xhp\n"
+"par_id3146870\n"
+"help.text"
+msgid "<image id=\"img_id3148870\" src=\"sc/res/table.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3148870\">Icon</alt></image>"
+msgstr ""
+
+#. pVkuG
+#: 02120100.xhp
+msgctxt ""
+"02120100.xhp\n"
+"par_id3147071\n"
+"help.text"
+msgid "Sheet Name"
+msgstr ""
+
+#. GqcXB
+#: 02120100.xhp
+msgctxt ""
+"02120100.xhp\n"
+"hd_id3144768\n"
+"help.text"
+msgid "Page"
+msgstr ""
+
+#. N22ch
+#: 02120100.xhp
+msgctxt ""
+"02120100.xhp\n"
+"par_id3154960\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 ""
+
+#. hEBEj
+#: 02120100.xhp
+msgctxt ""
+"02120100.xhp\n"
+"par_id3151304\n"
+"help.text"
+msgid "<image id=\"img_id3155386\" src=\"sc/res/page.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155386\">Icon</alt></image>"
+msgstr ""
+
+#. j9siN
+#: 02120100.xhp
+msgctxt ""
+"02120100.xhp\n"
+"par_id3150048\n"
+"help.text"
+msgid "Page"
+msgstr ""
+
+#. 4QaQr
+#: 02120100.xhp
+msgctxt ""
+"02120100.xhp\n"
+"hd_id3146962\n"
+"help.text"
+msgid "Pages"
+msgstr ""
+
+#. Jozkw
+#: 02120100.xhp
+msgctxt ""
+"02120100.xhp\n"
+"par_id3153812\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 ""
+
+#. N9uCW
+#: 02120100.xhp
+msgctxt ""
+"02120100.xhp\n"
+"par_id3149315\n"
+"help.text"
+msgid "<image id=\"img_id3155757\" src=\"sc/res/pages.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155757\">Icon</alt></image>"
+msgstr ""
+
+#. mgBTS
+#: 02120100.xhp
+msgctxt ""
+"02120100.xhp\n"
+"par_id3147499\n"
+"help.text"
+msgid "Pages"
+msgstr ""
+
+#. VZkxm
+#: 02120100.xhp
+msgctxt ""
+"02120100.xhp\n"
+"hd_id3149050\n"
+"help.text"
+msgid "Date"
+msgstr ""
+
+#. ZmqTc
+#: 02120100.xhp
+msgctxt ""
+"02120100.xhp\n"
+"par_id3153960\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 ""
+
+#. w7Mq7
+#: 02120100.xhp
+msgctxt ""
+"02120100.xhp\n"
+"par_id3147299\n"
+"help.text"
+msgid "<image id=\"img_id3150394\" src=\"sc/res/date.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150394\">Icon</alt></image>"
+msgstr ""
+
+#. jETp9
+#: 02120100.xhp
+msgctxt ""
+"02120100.xhp\n"
+"par_id3150540\n"
+"help.text"
+msgid "Date"
+msgstr ""
+
+#. MR48x
+#: 02120100.xhp
+msgctxt ""
+"02120100.xhp\n"
+"hd_id3147610\n"
+"help.text"
+msgid "Time"
+msgstr ""
+
+#. CtUbF
+#: 02120100.xhp
+msgctxt ""
+"02120100.xhp\n"
+"par_id3145638\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 ""
+
+#. GaPbQ
+#: 02120100.xhp
+msgctxt ""
+"02120100.xhp\n"
+"par_id3153122\n"
+"help.text"
+msgid "<image id=\"img_id3146884\" src=\"sc/res/time.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3146884\">Icon</alt></image>"
+msgstr ""
+
+#. iSmFZ
+#: 02120100.xhp
+msgctxt ""
+"02120100.xhp\n"
+"par_id3157904\n"
+"help.text"
+msgid "Time"
+msgstr ""
+
+#. nsv3w
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Fill"
+msgstr ""
+
+#. zz3ue
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"bm_id8473769\n"
+"help.text"
+msgid "<bookmark_value>filling;selection lists</bookmark_value> <bookmark_value>selection lists;filling cells</bookmark_value>"
+msgstr ""
+
+#. sGEri
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"hd_id3153876\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/02140000.xhp\" name=\"Fill\">Fill</link>"
+msgstr ""
+
+#. EGKxk
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id3156285\n"
+"help.text"
+msgid "<ahelp hid=\".\">Automatically fills cells with content.</ahelp>"
+msgstr ""
+
+#. 8KLWw
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id3147343\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 ""
+
+#. uFEZZ
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"hd_id3149207\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/02140500.xhp\" name=\"Sheet\">Sheet</link>"
+msgstr ""
+
+#. uaH3Y
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"hd_id3155111\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/02140600.xhp\" name=\"Rows\">Series</link>"
+msgstr ""
+
+#. GU6Ek
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id3152994\n"
+"help.text"
+msgid "<emph>Filling cells using context menus:</emph>"
+msgstr ""
+
+#. 2j5RS
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id3145384\n"
+"help.text"
+msgid "Call the <link href=\"text/shared/00/00000005.xhp#contextmenu\" name=\"context menu\">context menu</link> when positioned in a cell and choose <emph>Selection List</emph>."
+msgstr ""
+
+#. BzAsX
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id3156450\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 ""
+
+#. cbUMg
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id3148699\n"
+"help.text"
+msgid "Click one of the listed entries to copy it to the cell."
+msgstr ""
+
+#. LJGKu
+#: 02140100.xhp
+msgctxt ""
+"02140100.xhp\n"
+"tit\n"
+"help.text"
+msgid "Down"
+msgstr ""
+
+#. WryFL
+#: 02140100.xhp
+msgctxt ""
+"02140100.xhp\n"
+"hd_id3150792\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/02140100.xhp\" name=\"Down\">Down</link>"
+msgstr ""
+
+#. ywHLJ
+#: 02140100.xhp
+msgctxt ""
+"02140100.xhp\n"
+"par_id3153969\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 ""
+
+#. JudFj
+#: 02140100.xhp
+msgctxt ""
+"02140100.xhp\n"
+"par_id3145787\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 ""
+
+#. 6jUfG
+#: 02140200.xhp
+msgctxt ""
+"02140200.xhp\n"
+"tit\n"
+"help.text"
+msgid "Right"
+msgstr ""
+
+#. D9LSg
+#: 02140200.xhp
+msgctxt ""
+"02140200.xhp\n"
+"hd_id3153896\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/02140200.xhp\" name=\"Right\">Right</link>"
+msgstr ""
+
+#. vEYiU
+#: 02140200.xhp
+msgctxt ""
+"02140200.xhp\n"
+"par_id3153361\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 ""
+
+#. qmAqP
+#: 02140200.xhp
+msgctxt ""
+"02140200.xhp\n"
+"par_id3154684\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 ""
+
+#. T33FC
+#: 02140300.xhp
+msgctxt ""
+"02140300.xhp\n"
+"tit\n"
+"help.text"
+msgid "Up"
+msgstr ""
+
+#. qsy7v
+#: 02140300.xhp
+msgctxt ""
+"02140300.xhp\n"
+"hd_id3147264\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/02140300.xhp\" name=\"Up\">Up</link>"
+msgstr ""
+
+#. o94hh
+#: 02140300.xhp
+msgctxt ""
+"02140300.xhp\n"
+"par_id3150793\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 ""
+
+#. 44fmK
+#: 02140300.xhp
+msgctxt ""
+"02140300.xhp\n"
+"par_id3150447\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 ""
+
+#. FUqTs
+#: 02140400.xhp
+msgctxt ""
+"02140400.xhp\n"
+"tit\n"
+"help.text"
+msgid "Left"
+msgstr ""
+
+#. T2keF
+#: 02140400.xhp
+msgctxt ""
+"02140400.xhp\n"
+"hd_id3153896\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/02140400.xhp\" name=\"Left\">Left</link>"
+msgstr ""
+
+#. z8GGE
+#: 02140400.xhp
+msgctxt ""
+"02140400.xhp\n"
+"par_id3150793\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 ""
+
+#. kKTAh
+#: 02140400.xhp
+msgctxt ""
+"02140400.xhp\n"
+"par_id3156280\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 ""
+
+#. 2u4eT
+#: 02140500.xhp
+msgctxt ""
+"02140500.xhp\n"
+"tit\n"
+"help.text"
+msgid "Fill Sheets"
+msgstr ""
+
+#. JDzdu
+#: 02140500.xhp
+msgctxt ""
+"02140500.xhp\n"
+"hd_id3153897\n"
+"help.text"
+msgid "Fill Sheets"
+msgstr ""
+
+#. Ccf2V
+#: 02140500.xhp
+msgctxt ""
+"02140500.xhp\n"
+"par_id3150791\n"
+"help.text"
+msgid "<variable id=\"tabellenfuellentext\"><ahelp hid=\".uno:FillTable\">Specifies the options for transferring sheets or ranges of a certain sheet to the same cells on other selected sheets.</ahelp></variable>"
+msgstr ""
+
+#. Xfzhx
+#: 02140500.xhp
+msgctxt ""
+"02140500.xhp\n"
+"par_id3150768\n"
+"help.text"
+msgid "This menu command is only active if you have selected at least two sheets in the document."
+msgstr ""
+
+#. Bvr8F
+#: 02140500.xhp
+msgctxt ""
+"02140500.xhp\n"
+"par_id3150769\n"
+"help.text"
+msgid "To select multiple sheets, click each sheet tab while pressing <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline> or <keycode>Shift</keycode>."
+msgstr ""
+
+#. FYuCU
+#: 02140500.xhp
+msgctxt ""
+"02140500.xhp\n"
+"par_id3150767\n"
+"help.text"
+msgid "In contrast to copying an area to the clipboard, you can filter certain information and calculate values."
+msgstr ""
+
+#. oCYjU
+#: 02140500.xhp
+msgctxt ""
+"02140500.xhp\n"
+"hd_id3155131\n"
+"help.text"
+msgid "Filling a Sheet"
+msgstr ""
+
+#. yvAcM
+#: 02140500.xhp
+msgctxt ""
+"02140500.xhp\n"
+"par_id3146119\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 ""
+
+#. ZhzbN
+#: 02140500.xhp
+msgctxt ""
+"02140500.xhp\n"
+"par_id3153726\n"
+"help.text"
+msgid "Press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline> and click the tab of the sheet where you want to insert the contents."
+msgstr ""
+
+#. medyk
+#: 02140500.xhp
+msgctxt ""
+"02140500.xhp\n"
+"par_id3147436\n"
+"help.text"
+msgid "Select the command <menuitem>Sheet - Fill Cells - Sheets</menuitem>. 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 ""
+
+#. yNrLG
+#: 02140500.xhp
+msgctxt ""
+"02140500.xhp\n"
+"par_id3154942\n"
+"help.text"
+msgid "Click <emph>OK</emph>."
+msgstr ""
+
+#. fgzSQ
+#: 02140500.xhp
+msgctxt ""
+"02140500.xhp\n"
+"par_id3156283\n"
+"help.text"
+msgid "This dialog is similar to the <link href=\"text/shared/01/02070000.xhp\" name=\"Paste Special\"><emph>Paste Special</emph></link> dialog, where you can find additional tips."
+msgstr ""
+
+#. B6GAM
+#: 02140600.xhp
+msgctxt ""
+"02140600.xhp\n"
+"tit\n"
+"help.text"
+msgid "Fill Series"
+msgstr ""
+
+#. 6gCiS
+#: 02140600.xhp
+msgctxt ""
+"02140600.xhp\n"
+"hd_id3148664\n"
+"help.text"
+msgid "Fill Series"
+msgstr ""
+
+#. c5WSy
+#: 02140600.xhp
+msgctxt ""
+"02140600.xhp\n"
+"par_id3148797\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 ""
+
+#. WnPsX
+#: 02140600.xhp
+msgctxt ""
+"02140600.xhp\n"
+"par_id3146976\n"
+"help.text"
+msgid "Before filling a series, first select the cell range."
+msgstr ""
+
+#. JjBdD
+#: 02140600.xhp
+msgctxt ""
+"02140600.xhp\n"
+"par_id3145748\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 ""
+
+#. TVJyD
+#: 02140600.xhp
+msgctxt ""
+"02140600.xhp\n"
+"hd_id3147435\n"
+"help.text"
+msgid "Direction"
+msgstr ""
+
+#. PKotC
+#: 02140600.xhp
+msgctxt ""
+"02140600.xhp\n"
+"par_id3154729\n"
+"help.text"
+msgid "Determines the direction of series creation."
+msgstr ""
+
+#. JzPj3
+#: 02140600.xhp
+msgctxt ""
+"02140600.xhp\n"
+"hd_id3145253\n"
+"help.text"
+msgid "Down"
+msgstr ""
+
+#. hC6AJ
+#: 02140600.xhp
+msgctxt ""
+"02140600.xhp\n"
+"par_id3155418\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 ""
+
+#. ekeVg
+#: 02140600.xhp
+msgctxt ""
+"02140600.xhp\n"
+"hd_id3155738\n"
+"help.text"
+msgid "Right"
+msgstr ""
+
+#. W9RNB
+#: 02140600.xhp
+msgctxt ""
+"02140600.xhp\n"
+"par_id3149402\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 ""
+
+#. KAZnk
+#: 02140600.xhp
+msgctxt ""
+"02140600.xhp\n"
+"hd_id3146972\n"
+"help.text"
+msgid "Up"
+msgstr ""
+
+#. kWGCK
+#: 02140600.xhp
+msgctxt ""
+"02140600.xhp\n"
+"par_id3153711\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 ""
+
+#. 77twa
+#: 02140600.xhp
+msgctxt ""
+"02140600.xhp\n"
+"hd_id3153764\n"
+"help.text"
+msgid "Left"
+msgstr ""
+
+#. sbSLo
+#: 02140600.xhp
+msgctxt ""
+"02140600.xhp\n"
+"par_id3156382\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 ""
+
+#. fh5PT
+#: 02140600.xhp
+msgctxt ""
+"02140600.xhp\n"
+"hd_id3147344\n"
+"help.text"
+msgid "Series Type"
+msgstr ""
+
+#. Qugvk
+#: 02140600.xhp
+msgctxt ""
+"02140600.xhp\n"
+"par_id3149257\n"
+"help.text"
+msgid "Defines the series type. Choose between <emph>Linear</emph>, <emph>Growth</emph>, <emph>Date</emph> and <emph>AutoFill</emph>."
+msgstr ""
+
+#. yfoVv
+#: 02140600.xhp
+msgctxt ""
+"02140600.xhp\n"
+"hd_id3148488\n"
+"help.text"
+msgid "Linear"
+msgstr ""
+
+#. 3H2CX
+#: 02140600.xhp
+msgctxt ""
+"02140600.xhp\n"
+"par_id3159238\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 ""
+
+#. XwQDp
+#: 02140600.xhp
+msgctxt ""
+"02140600.xhp\n"
+"hd_id3149210\n"
+"help.text"
+msgid "Growth"
+msgstr ""
+
+#. UtVZv
+#: 02140600.xhp
+msgctxt ""
+"02140600.xhp\n"
+"par_id3150364\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/filldlg/growth\">Creates a growth series using the defined increment and end value.</ahelp>"
+msgstr ""
+
+#. ydcZJ
+#: 02140600.xhp
+msgctxt ""
+"02140600.xhp\n"
+"hd_id3149528\n"
+"help.text"
+msgid "Date"
+msgstr ""
+
+#. A88kj
+#: 02140600.xhp
+msgctxt ""
+"02140600.xhp\n"
+"par_id3150887\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/filldlg/date\">Creates a date series using the defined increment and end date.</ahelp>"
+msgstr ""
+
+#. b7qsB
+#: 02140600.xhp
+msgctxt ""
+"02140600.xhp\n"
+"hd_id3150202\n"
+"help.text"
+msgid "AutoFill"
+msgstr ""
+
+#. FSwFS
+#: 02140600.xhp
+msgctxt ""
+"02140600.xhp\n"
+"par_id3156288\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/filldlg/autofill\">Forms a series directly in the sheet.</ahelp> The <emph>AutoFill</emph> 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 ""
+
+#. 2JEap
+#: 02140600.xhp
+msgctxt ""
+"02140600.xhp\n"
+"par_id3155811\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 ""
+
+#. BQYjs
+#: 02140600.xhp
+msgctxt ""
+"02140600.xhp\n"
+"hd_id3148700\n"
+"help.text"
+msgid "Unit of Time"
+msgstr ""
+
+#. Nr8qs
+#: 02140600.xhp
+msgctxt ""
+"02140600.xhp\n"
+"par_id3153308\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 ""
+
+#. o5B68
+#: 02140600.xhp
+msgctxt ""
+"02140600.xhp\n"
+"hd_id3148868\n"
+"help.text"
+msgid "Day"
+msgstr ""
+
+#. RAR4M
+#: 02140600.xhp
+msgctxt ""
+"02140600.xhp\n"
+"par_id3148605\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 all seven days of the week. Unit of <emph>Increment</emph> is day.</ahelp>"
+msgstr ""
+
+#. ErCjH
+#: 02140600.xhp
+msgctxt ""
+"02140600.xhp\n"
+"hd_id3144771\n"
+"help.text"
+msgid "Weekday"
+msgstr ""
+
+#. HEHGu
+#: 02140600.xhp
+msgctxt ""
+"02140600.xhp\n"
+"par_id3150108\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 only using the five weekdays. Unit of <emph>Increment</emph> is day.</ahelp>"
+msgstr ""
+
+#. ddDLK
+#: 02140600.xhp
+msgctxt ""
+"02140600.xhp\n"
+"hd_id3154957\n"
+"help.text"
+msgid "Month"
+msgstr ""
+
+#. zGGBa
+#: 02140600.xhp
+msgctxt ""
+"02140600.xhp\n"
+"par_id3149126\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 which unit of <emph>Increment</emph> is month.</ahelp>"
+msgstr ""
+
+#. 3wMJm
+#: 02140600.xhp
+msgctxt ""
+"02140600.xhp\n"
+"hd_id3152870\n"
+"help.text"
+msgid "Year"
+msgstr ""
+
+#. SyvGS
+#: 02140600.xhp
+msgctxt ""
+"02140600.xhp\n"
+"par_id3151300\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 which unit of <emph>Increment</emph> is year.</ahelp>"
+msgstr ""
+
+#. KiSyB
+#: 02140600.xhp
+msgctxt ""
+"02140600.xhp\n"
+"hd_id3154762\n"
+"help.text"
+msgid "Start Value"
+msgstr ""
+
+#. AYfGK
+#: 02140600.xhp
+msgctxt ""
+"02140600.xhp\n"
+"par_id3149381\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 ""
+
+#. P8RjP
+#: 02140600.xhp
+msgctxt ""
+"02140600.xhp\n"
+"hd_id3153013\n"
+"help.text"
+msgid "End Value"
+msgstr ""
+
+#. NVScR
+#: 02140600.xhp
+msgctxt ""
+"02140600.xhp\n"
+"par_id3153487\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 ""
+
+#. gkABp
+#: 02140600.xhp
+msgctxt ""
+"02140600.xhp\n"
+"hd_id3149312\n"
+"help.text"
+msgid "Increment"
+msgstr ""
+
+#. tDdAp
+#: 02140600.xhp
+msgctxt ""
+"02140600.xhp\n"
+"par_id3154739\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 ""
+
+#. iSS2D
+#: 02140700.xhp
+msgctxt ""
+"02140700.xhp\n"
+"tit\n"
+"help.text"
+msgid "Fill Random Numbers"
+msgstr ""
+
+#. dPtBd
+#: 02140700.xhp
+msgctxt ""
+"02140700.xhp\n"
+"hd_id2308201415431520596\n"
+"help.text"
+msgid "Fill Random Numbers"
+msgstr ""
+
+#. 7mPnk
+#: 02140700.xhp
+msgctxt ""
+"02140700.xhp\n"
+"par_id2308201415431525817\n"
+"help.text"
+msgid "<ahelp hid=\".\">Populate a cell range with automatically generated pseudo random numbers with the selected distribution function and its parameters.</ahelp>"
+msgstr ""
+
+#. 6dhgD
+#: 02140700.xhp
+msgctxt ""
+"02140700.xhp\n"
+"bm_id2308201416102526759\n"
+"help.text"
+msgid "<bookmark_value>fill range;random numbers</bookmark_value><bookmark_value>random rumbers;fill range</bookmark_value><bookmark_value>random rumbers;distribution</bookmark_value>"
+msgstr ""
+
+#. Di3eV
+#: 02140700.xhp
+msgctxt ""
+"02140700.xhp\n"
+"par_id2308201415500176457\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">Sheet - Fill Cells - Random Number</item>"
+msgstr ""
+
+#. T4hq7
+#: 02140700.xhp
+msgctxt ""
+"02140700.xhp\n"
+"hd_id2308201415431233475\n"
+"help.text"
+msgid "Data"
+msgstr ""
+
+#. 2iFoE
+#: 02140700.xhp
+msgctxt ""
+"02140700.xhp\n"
+"hd_id2308201415431883475\n"
+"help.text"
+msgid "Cell Range"
+msgstr ""
+
+#. AYLpx
+#: 02140700.xhp
+msgctxt ""
+"02140700.xhp\n"
+"par_id2308201415431811111\n"
+"help.text"
+msgid "<ahelp hid=\".\">Define the range of cells to fill with random numbers. If you have previously selected a range, it will be displayed here.</ahelp>"
+msgstr ""
+
+#. ZzGDm
+#: 02140700.xhp
+msgctxt ""
+"02140700.xhp\n"
+"hd_id2308201415431850229\n"
+"help.text"
+msgid "Random number generator"
+msgstr ""
+
+#. V8ctS
+#: 02140700.xhp
+msgctxt ""
+"02140700.xhp\n"
+"hd_id2308201415431880497\n"
+"help.text"
+msgid "Distribution"
+msgstr ""
+
+#. u7iLA
+#: 02140700.xhp
+msgctxt ""
+"02140700.xhp\n"
+"par_id2308201415431874867\n"
+"help.text"
+msgid "<ahelp hid=\".\">The distribution function for the random number generator.</ahelp>"
+msgstr ""
+
+#. 8BfTS
+#: 02140700.xhp
+msgctxt ""
+"02140700.xhp\n"
+"par_id2308201416441240058\n"
+"help.text"
+msgid "Valid distributions function and their parameters are"
+msgstr ""
+
+#. v9uC2
+#: 02140700.xhp
+msgctxt ""
+"02140700.xhp\n"
+"par_id230820141543181813\n"
+"help.text"
+msgid "Distribution"
+msgstr ""
+
+#. J8gEA
+#: 02140700.xhp
+msgctxt ""
+"02140700.xhp\n"
+"par_id2308201415431868807\n"
+"help.text"
+msgid "Parameters"
+msgstr ""
+
+#. mgFxC
+#: 02140700.xhp
+msgctxt ""
+"02140700.xhp\n"
+"par_id2308201415431869872\n"
+"help.text"
+msgid "Uniform"
+msgstr ""
+
+#. Fv5An
+#: 02140700.xhp
+msgctxt ""
+"02140700.xhp\n"
+"par_id2308201415431850857\n"
+"help.text"
+msgid "<emph>Minimum:</emph> The minimum value of the sample."
+msgstr ""
+
+#. kNcr9
+#: 02140700.xhp
+msgctxt ""
+"02140700.xhp\n"
+"par_id2308201415431859422\n"
+"help.text"
+msgid "<emph>Maximum:</emph> The maximum value of the sample."
+msgstr ""
+
+#. gUzM4
+#: 02140700.xhp
+msgctxt ""
+"02140700.xhp\n"
+"par_id2308201415431848733\n"
+"help.text"
+msgid "Uniform Integer"
+msgstr ""
+
+#. S9kxE
+#: 02140700.xhp
+msgctxt ""
+"02140700.xhp\n"
+"par_id2308201415431813421\n"
+"help.text"
+msgid "<emph>Minimum:</emph> The minimum value of the sample."
+msgstr ""
+
+#. LvkyR
+#: 02140700.xhp
+msgctxt ""
+"02140700.xhp\n"
+"par_id2308201415431821789\n"
+"help.text"
+msgid "<emph>Maximum:</emph> The maximum value of the sample."
+msgstr ""
+
+#. G2uwE
+#: 02140700.xhp
+msgctxt ""
+"02140700.xhp\n"
+"par_id2308201415431870493\n"
+"help.text"
+msgid "Normal"
+msgstr ""
+
+#. HdSBY
+#: 02140700.xhp
+msgctxt ""
+"02140700.xhp\n"
+"par_id2308201415431973994\n"
+"help.text"
+msgid "<emph>Mean:</emph> The mean of the Normal distribution."
+msgstr ""
+
+#. m77C5
+#: 02140700.xhp
+msgctxt ""
+"02140700.xhp\n"
+"par_id2308201415431951090\n"
+"help.text"
+msgid "<emph>Standard Deviation:</emph> The standard deviation of the Normal distribution."
+msgstr ""
+
+#. S3iFU
+#: 02140700.xhp
+msgctxt ""
+"02140700.xhp\n"
+"par_id2308201415431990992\n"
+"help.text"
+msgid "The mean and standard deviation of the numbers generated may not equal the Mean and Standard Deviation inserted in the dialog."
+msgstr ""
+
+#. CBmEB
+#: 02140700.xhp
+msgctxt ""
+"02140700.xhp\n"
+"par_id2308201415431912748\n"
+"help.text"
+msgid "Cauchy"
+msgstr ""
+
+#. 5BXmY
+#: 02140700.xhp
+msgctxt ""
+"02140700.xhp\n"
+"par_id2308201415431923135\n"
+"help.text"
+msgid "<emph>Median:</emph> the median of the data or location parameter."
+msgstr ""
+
+#. BBo4W
+#: 02140700.xhp
+msgctxt ""
+"02140700.xhp\n"
+"par_id2308201415431997296\n"
+"help.text"
+msgid "<emph>Sigma:</emph> the scale parameter."
+msgstr ""
+
+#. TK69f
+#: 02140700.xhp
+msgctxt ""
+"02140700.xhp\n"
+"par_id2308201415431971536\n"
+"help.text"
+msgid "The median and sigma of the generated numbers may not equal the data inserted in the dialog."
+msgstr ""
+
+#. Fcsnx
+#: 02140700.xhp
+msgctxt ""
+"02140700.xhp\n"
+"par_id2308201415431962173\n"
+"help.text"
+msgid "Bernoulli"
+msgstr ""
+
+#. yiASx
+#: 02140700.xhp
+msgctxt ""
+"02140700.xhp\n"
+"par_id2308201415431994157\n"
+"help.text"
+msgid "<emph>p Value:</emph> The probability of success."
+msgstr ""
+
+#. jBKFc
+#: 02140700.xhp
+msgctxt ""
+"02140700.xhp\n"
+"par_id2308201415431979367\n"
+"help.text"
+msgid "Binomial"
+msgstr ""
+
+#. KQ2ts
+#: 02140700.xhp
+msgctxt ""
+"02140700.xhp\n"
+"par_id2308201415431958372\n"
+"help.text"
+msgid "<emph>p Value:</emph> The probability of success of each trial."
+msgstr ""
+
+#. hRnGG
+#: 02140700.xhp
+msgctxt ""
+"02140700.xhp\n"
+"par_id2308201415431919718\n"
+"help.text"
+msgid "<emph>Number of trials:</emph> the number of trials of the experiment."
+msgstr ""
+
+#. 56yTY
+#: 02140700.xhp
+msgctxt ""
+"02140700.xhp\n"
+"par_id2308201415431985648\n"
+"help.text"
+msgid "Chi Squared"
+msgstr ""
+
+#. MzyUx
+#: 02140700.xhp
+msgctxt ""
+"02140700.xhp\n"
+"par_id230820141543194944\n"
+"help.text"
+msgid "<emph>Nu Value: </emph>a positive integer that specifies the number of degrees of freedom."
+msgstr ""
+
+#. mAFzt
+#: 02140700.xhp
+msgctxt ""
+"02140700.xhp\n"
+"par_id2308201415431935636\n"
+"help.text"
+msgid "Geometric"
+msgstr ""
+
+#. M4AAq
+#: 02140700.xhp
+msgctxt ""
+"02140700.xhp\n"
+"par_id2308201415431978150\n"
+"help.text"
+msgid "<emph>p Value:</emph> The probability of success of each trial."
+msgstr ""
+
+#. d7n7f
+#: 02140700.xhp
+msgctxt ""
+"02140700.xhp\n"
+"par_id230820141543197085\n"
+"help.text"
+msgid "Negative Binomial"
+msgstr ""
+
+#. esYgU
+#: 02140700.xhp
+msgctxt ""
+"02140700.xhp\n"
+"par_id2308201415431916718\n"
+"help.text"
+msgid "<emph>p Value:</emph> The probability of success of each trial."
+msgstr ""
+
+#. jCVQA
+#: 02140700.xhp
+msgctxt ""
+"02140700.xhp\n"
+"par_id2308201415431951891\n"
+"help.text"
+msgid "<emph>Number of trials:</emph> the number of trials of the experiment."
+msgstr ""
+
+#. akcZB
+#: 02140700.xhp
+msgctxt ""
+"02140700.xhp\n"
+"hd_id2308201415431232932\n"
+"help.text"
+msgid "Options"
+msgstr ""
+
+#. zVDXm
+#: 02140700.xhp
+msgctxt ""
+"02140700.xhp\n"
+"hd_id2308201415431832932\n"
+"help.text"
+msgid "Enable custom seed"
+msgstr ""
+
+#. roGJf
+#: 02140700.xhp
+msgctxt ""
+"02140700.xhp\n"
+"par_id2308201415431841782\n"
+"help.text"
+msgid "<ahelp hid=\".\">Set the initial value of the random number generator to a known value <emph>Seed.</emph></ahelp>"
+msgstr ""
+
+#. xkaWC
+#: 02140700.xhp
+msgctxt ""
+"02140700.xhp\n"
+"hd_id2308201415431881107\n"
+"help.text"
+msgid "Seed"
+msgstr ""
+
+#. RHkXg
+#: 02140700.xhp
+msgctxt ""
+"02140700.xhp\n"
+"par_id2308201415431834837\n"
+"help.text"
+msgid "<ahelp hid=\".\">Value set to initiate the random number generator algorithm. It is used to initialize (seed) the random number generator in order to reproduce the same sequence of pseudorandom numbers. Specify a positive integer number (1, 2, ...) to produce a specific sequence, or leave the field blank if you don't need this particular feature.</ahelp>"
+msgstr ""
+
+#. JesZo
+#: 02140700.xhp
+msgctxt ""
+"02140700.xhp\n"
+"hd_id2308201415431875641\n"
+"help.text"
+msgid "Enable rounding"
+msgstr ""
+
+#. Ap7Uc
+#: 02140700.xhp
+msgctxt ""
+"02140700.xhp\n"
+"par_id2308201415431822157\n"
+"help.text"
+msgid "<ahelp hid=\".\">Truncate the number to a given number of <emph>Decimal Places</emph>.</ahelp>"
+msgstr ""
+
+#. Wj97D
+#: 02140700.xhp
+msgctxt ""
+"02140700.xhp\n"
+"hd_id2308201415431826506\n"
+"help.text"
+msgid "Decimal places"
+msgstr ""
+
+#. yFyyo
+#: 02140700.xhp
+msgctxt ""
+"02140700.xhp\n"
+"par_id2308201415431820502\n"
+"help.text"
+msgid "<ahelp hid=\".\">Number of decimal places of the numbers generated.</ahelp>"
+msgstr ""
+
+#. EswzE
+#: 02150000.xhp
+msgctxt ""
+"02150000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Deleting Contents"
+msgstr ""
+
+#. p6TKW
+#: 02150000.xhp
+msgctxt ""
+"02150000.xhp\n"
+"bm_id3143284\n"
+"help.text"
+msgid "<bookmark_value>deleting; cell contents</bookmark_value><bookmark_value>cells; deleting contents</bookmark_value><bookmark_value>spreadsheets; deleting cell contents</bookmark_value><bookmark_value>cell contents; deleting</bookmark_value>"
+msgstr ""
+
+#. Fy4SX
+#: 02150000.xhp
+msgctxt ""
+"02150000.xhp\n"
+"hd_id3143284\n"
+"help.text"
+msgid "Deleting Contents"
+msgstr ""
+
+#. EFqQE
+#: 02150000.xhp
+msgctxt ""
+"02150000.xhp\n"
+"par_id3149456\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 ""
+
+#. yEdEu
+#: 02150000.xhp
+msgctxt ""
+"02150000.xhp\n"
+"par_id3159154\n"
+"help.text"
+msgid "This dialog is also called by pressing Backspace after the cell cursor has been activated on the sheet."
+msgstr ""
+
+#. C9sed
+#: 02150000.xhp
+msgctxt ""
+"02150000.xhp\n"
+"par_id3145367\n"
+"help.text"
+msgid "Pressing Delete deletes content without calling the dialog or changing formats."
+msgstr ""
+
+#. RNYYe
+#: 02150000.xhp
+msgctxt ""
+"02150000.xhp\n"
+"par_id3153951\n"
+"help.text"
+msgid "Use <emph>Cut</emph> on the Standard bar to delete contents and formats without the dialog."
+msgstr ""
+
+#. dkPCd
+#: 02150000.xhp
+msgctxt ""
+"02150000.xhp\n"
+"hd_id3148575\n"
+"help.text"
+msgid "Selection"
+msgstr ""
+
+#. em6jN
+#: 02150000.xhp
+msgctxt ""
+"02150000.xhp\n"
+"par_id3149665\n"
+"help.text"
+msgid "This area lists the options for deleting contents."
+msgstr ""
+
+#. wKhMf
+#: 02150000.xhp
+msgctxt ""
+"02150000.xhp\n"
+"hd_id3146975\n"
+"help.text"
+msgid "Delete All"
+msgstr ""
+
+#. yS4mt
+#: 02150000.xhp
+msgctxt ""
+"02150000.xhp\n"
+"par_id3154729\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/deletecontents/deleteall\">Deletes all content from the selected cell range.</ahelp>"
+msgstr ""
+
+#. ftB4h
+#: 02150000.xhp
+msgctxt ""
+"02150000.xhp\n"
+"hd_id3156286\n"
+"help.text"
+msgid "Text"
+msgstr ""
+
+#. gKiqT
+#: 02150000.xhp
+msgctxt ""
+"02150000.xhp\n"
+"par_id3154015\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/deletecontents/text\">Deletes text only. Formats, formulas, numbers and dates are not affected.</ahelp>"
+msgstr ""
+
+#. 5JgqG
+#: 02150000.xhp
+msgctxt ""
+"02150000.xhp\n"
+"hd_id3153840\n"
+"help.text"
+msgid "Numbers"
+msgstr ""
+
+#. LXFBY
+#: 02150000.xhp
+msgctxt ""
+"02150000.xhp\n"
+"par_id3148405\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/deletecontents/numbers\">Deletes numbers only. Formats and formulas remain unchanged.</ahelp>"
+msgstr ""
+
+#. 6Guo3
+#: 02150000.xhp
+msgctxt ""
+"02150000.xhp\n"
+"hd_id3155764\n"
+"help.text"
+msgid "Date & time"
+msgstr ""
+
+#. uKDWV
+#: 02150000.xhp
+msgctxt ""
+"02150000.xhp\n"
+"par_id3149567\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 ""
+
+#. EmUKs
+#: 02150000.xhp
+msgctxt ""
+"02150000.xhp\n"
+"hd_id3154703\n"
+"help.text"
+msgid "Formulas"
+msgstr ""
+
+#. FSnPJ
+#: 02150000.xhp
+msgctxt ""
+"02150000.xhp\n"
+"par_id3148485\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/deletecontents/formulas\">Deletes formulas. Text, numbers, formats, dates and times remain unchanged.</ahelp>"
+msgstr ""
+
+#. aauBW
+#: 02150000.xhp
+msgctxt ""
+"02150000.xhp\n"
+"hd_id3150300\n"
+"help.text"
+msgid "Comments"
+msgstr ""
+
+#. 2mmCa
+#: 02150000.xhp
+msgctxt ""
+"02150000.xhp\n"
+"par_id3154658\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/deletecontents/comments\">Deletes comments added to cells. All other elements remain unchanged.</ahelp>"
+msgstr ""
+
+#. RVABB
+#: 02150000.xhp
+msgctxt ""
+"02150000.xhp\n"
+"hd_id3155112\n"
+"help.text"
+msgid "Formats"
+msgstr ""
+
+#. 4xCSY
+#: 02150000.xhp
+msgctxt ""
+"02150000.xhp\n"
+"par_id3146134\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/deletecontents/formats\">Deletes format attributes applied to cells. All cell content remains unchanged.</ahelp>"
+msgstr ""
+
+#. 5E6kE
+#: 02150000.xhp
+msgctxt ""
+"02150000.xhp\n"
+"hd_id3150088\n"
+"help.text"
+msgid "Objects"
+msgstr ""
+
+#. X9oHZ
+#: 02150000.xhp
+msgctxt ""
+"02150000.xhp\n"
+"par_id3152990\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/deletecontents/objects\">Deletes objects. All cell content remains unchanged.</ahelp>"
+msgstr ""
+
+#. v6DRE
+#: 02160000.xhp
+msgctxt ""
+"02160000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Delete Cells"
+msgstr ""
+
+#. MnNVa
+#: 02160000.xhp
+msgctxt ""
+"02160000.xhp\n"
+"bm_id3153726\n"
+"help.text"
+msgid "<bookmark_value>cells; deleting cells</bookmark_value><bookmark_value>columns; deleting</bookmark_value><bookmark_value>rows; deleting</bookmark_value><bookmark_value>spreadsheets; deleting cells</bookmark_value><bookmark_value>deleting;cells/rows/columns</bookmark_value>"
+msgstr ""
+
+#. dHfpJ
+#: 02160000.xhp
+msgctxt ""
+"02160000.xhp\n"
+"hd_id3153726\n"
+"help.text"
+msgid "Delete Cells"
+msgstr ""
+
+#. 5FoZA
+#: 02160000.xhp
+msgctxt ""
+"02160000.xhp\n"
+"par_id3154490\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 ""
+
+#. tBDt4
+#: 02160000.xhp
+msgctxt ""
+"02160000.xhp\n"
+"par_id082520160232335032\n"
+"help.text"
+msgid "<image id=\"img_id083120161149318932\" src=\"media/screenshots/modules/scalc/ui/deletecells/DeleteCellsDialog.png\" width=\"3.3126in\" height=\"1.5209in\"><alt id=\"alt_id083120161149318932\">Delete cells dialog</alt></image>"
+msgstr ""
+
+#. X7sNR
+#: 02160000.xhp
+msgctxt ""
+"02160000.xhp\n"
+"hd_id3149121\n"
+"help.text"
+msgid "Selection"
+msgstr ""
+
+#. HcQak
+#: 02160000.xhp
+msgctxt ""
+"02160000.xhp\n"
+"par_id3150751\n"
+"help.text"
+msgid "This area contains options for specifying how sheets are displayed after deleting cells."
+msgstr ""
+
+#. 6eeoi
+#: 02160000.xhp
+msgctxt ""
+"02160000.xhp\n"
+"hd_id3155767\n"
+"help.text"
+msgid "Shift cells up"
+msgstr ""
+
+#. 59eSg
+#: 02160000.xhp
+msgctxt ""
+"02160000.xhp\n"
+"par_id3153714\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 ""
+
+#. dTPCu
+#: 02160000.xhp
+msgctxt ""
+"02160000.xhp\n"
+"hd_id3156382\n"
+"help.text"
+msgid "Shift cells left"
+msgstr ""
+
+#. vH52J
+#: 02160000.xhp
+msgctxt ""
+"02160000.xhp\n"
+"par_id3154702\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 ""
+
+#. yVEjf
+#: 02160000.xhp
+msgctxt ""
+"02160000.xhp\n"
+"hd_id3146918\n"
+"help.text"
+msgid "Delete entire row(s)"
+msgstr ""
+
+#. qxGEH
+#: 02160000.xhp
+msgctxt ""
+"02160000.xhp\n"
+"par_id3148487\n"
+"help.text"
+msgid "<ahelp hid=\".uno:DeleteRows\">After selecting at least one cell, deletes the entire row from the sheet.</ahelp>"
+msgstr ""
+
+#. HFAFf
+#: 02160000.xhp
+msgctxt ""
+"02160000.xhp\n"
+"hd_id3155114\n"
+"help.text"
+msgid "Delete entire column(s)"
+msgstr ""
+
+#. DpjXh
+#: 02160000.xhp
+msgctxt ""
+"02160000.xhp\n"
+"par_id3150086\n"
+"help.text"
+msgid "<ahelp hid=\".uno:DeleteColumns\">After selecting at least one cell, deletes the entire column from the sheet.</ahelp>"
+msgstr ""
+
+#. TQEDi
+#: 02160000.xhp
+msgctxt ""
+"02160000.xhp\n"
+"par_id3166424\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/02150000.xhp\" name=\"Deleting Contents\">Deleting Contents</link>"
+msgstr ""
+
+#. Ms7fx
+#: 02170000.xhp
+msgctxt ""
+"02170000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Delete Sheet"
+msgstr ""
+
+#. xtKqU
+#: 02170000.xhp
+msgctxt ""
+"02170000.xhp\n"
+"bm_id3156424\n"
+"help.text"
+msgid "<bookmark_value>spreadsheets; deleting</bookmark_value><bookmark_value>sheets; deleting</bookmark_value><bookmark_value>deleting; spreadsheets</bookmark_value>"
+msgstr ""
+
+#. RtFfG
+#: 02170000.xhp
+msgctxt ""
+"02170000.xhp\n"
+"hd_id3156424\n"
+"help.text"
+msgid "Delete Sheet"
+msgstr ""
+
+#. ngEG2
+#: 02170000.xhp
+msgctxt ""
+"02170000.xhp\n"
+"par_id3153193\n"
+"help.text"
+msgid "<variable id=\"tabelleloeschentext\"><ahelp hid=\".uno:Remove\">Deletes the current sheet after query confirmation.</ahelp></variable>"
+msgstr ""
+
+#. 6JJp6
+#: 02170000.xhp
+msgctxt ""
+"02170000.xhp\n"
+"par_id3145801\n"
+"help.text"
+msgid "You cannot delete a sheet while <emph>Edit - Track Changes - Record</emph> is activated."
+msgstr ""
+
+#. FDyRG
+#: 02170000.xhp
+msgctxt ""
+"02170000.xhp\n"
+"hd_id3147124\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. CWWrh
+#: 02170000.xhp
+msgctxt ""
+"02170000.xhp\n"
+"par_id3154943\n"
+"help.text"
+msgid "Deletes the current sheet."
+msgstr ""
+
+#. gK53a
+#: 02170000.xhp
+msgctxt ""
+"02170000.xhp\n"
+"hd_id3149412\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. jKH8F
+#: 02170000.xhp
+msgctxt ""
+"02170000.xhp\n"
+"par_id3154510\n"
+"help.text"
+msgid "Cancels the dialog. No delete is performed."
+msgstr ""
+
+#. k9Be9
+#: 02180000.xhp
+msgctxt ""
+"02180000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Move or Copy a Sheet"
+msgstr ""
+
+#. oozF5
+#: 02180000.xhp
+msgctxt ""
+"02180000.xhp\n"
+"bm_id3153360\n"
+"help.text"
+msgid "<bookmark_value>spreadsheets; moving</bookmark_value><bookmark_value>spreadsheets; copying</bookmark_value><bookmark_value>moving; spreadsheets</bookmark_value><bookmark_value>copying; spreadsheets</bookmark_value>"
+msgstr ""
+
+#. BoDsa
+#: 02180000.xhp
+msgctxt ""
+"02180000.xhp\n"
+"hd_id3153360\n"
+"help.text"
+msgid "Move or Copy a Sheet"
+msgstr ""
+
+#. Rv8oA
+#: 02180000.xhp
+msgctxt ""
+"02180000.xhp\n"
+"par_id3154686\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 ""
+
+#. Nk5XZ
+#: 02180000.xhp
+msgctxt ""
+"02180000.xhp\n"
+"par_id2282479\n"
+"help.text"
+msgid "When you copy and paste cells containing <link href=\"text/scalc/01/04060102.xhp\">date values</link> between different spreadsheets, both spreadsheet documents must be set to the same date base. If date bases differ, the displayed date values will change!"
+msgstr ""
+
+#. 3DmMC
+#: 02180000.xhp
+msgctxt ""
+"02180000.xhp\n"
+"hd_id3163710\n"
+"help.text"
+msgid "To Document"
+msgstr ""
+
+#. ayVi2
+#: 02180000.xhp
+msgctxt ""
+"02180000.xhp\n"
+"par_id3148645\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 ""
+
+#. zPGQF
+#: 02180000.xhp
+msgctxt ""
+"02180000.xhp\n"
+"hd_id3154012\n"
+"help.text"
+msgid "Insert Before"
+msgstr ""
+
+#. 3FSME
+#: 02180000.xhp
+msgctxt ""
+"02180000.xhp\n"
+"par_id3145366\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 ""
+
+#. WNaqP
+#: 02180000.xhp
+msgctxt ""
+"02180000.xhp\n"
+"hd_id3153726\n"
+"help.text"
+msgid "Copy"
+msgstr ""
+
+#. z93EN
+#: 02180000.xhp
+msgctxt ""
+"02180000.xhp\n"
+"par_id3144764\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 ""
+
+#. jKiJy
+#: 02190000.xhp
+msgctxt ""
+"02190000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Delete Page Break"
+msgstr ""
+
+#. QUGAg
+#: 02190000.xhp
+msgctxt ""
+"02190000.xhp\n"
+"hd_id3150541\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/02190000.xhp\" name=\"Delete Page Break\">Delete Page Break</link>"
+msgstr ""
+
+#. uaEUi
+#: 02190000.xhp
+msgctxt ""
+"02190000.xhp\n"
+"par_id3154365\n"
+"help.text"
+msgid "<ahelp hid=\".\">Choose the type of page break that you want to delete.</ahelp>"
+msgstr ""
+
+#. HJ6rH
+#: 02190100.xhp
+msgctxt ""
+"02190100.xhp\n"
+"tit\n"
+"help.text"
+msgid "Row Break"
+msgstr ""
+
+#. 2CM78
+#: 02190100.xhp
+msgctxt ""
+"02190100.xhp\n"
+"bm_id3156326\n"
+"help.text"
+msgid "<bookmark_value>spreadsheets; deleting row breaks</bookmark_value><bookmark_value>deleting;manual row breaks</bookmark_value><bookmark_value>row breaks; deleting</bookmark_value>"
+msgstr ""
+
+#. 2FkPg
+#: 02190100.xhp
+msgctxt ""
+"02190100.xhp\n"
+"hd_id3156326\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/02190100.xhp\" name=\"Row Break\">Row Break</link>"
+msgstr ""
+
+#. 4X2vf
+#: 02190100.xhp
+msgctxt ""
+"02190100.xhp\n"
+"par_id3154366\n"
+"help.text"
+msgid "<ahelp hid=\".uno:DeleteRowbreak\">Removes the manual row break above the active cell.</ahelp>"
+msgstr ""
+
+#. aNEE6
+#: 02190100.xhp
+msgctxt ""
+"02190100.xhp\n"
+"par_id3151041\n"
+"help.text"
+msgid "Position the cursor in a cell directly below the row break indicated by a horizontal line and choose <emph>Sheet - Delete Page Break - Row Break</emph>. The manual row break is removed."
+msgstr ""
+
+#. Bvrcm
+#: 02190200.xhp
+msgctxt ""
+"02190200.xhp\n"
+"tit\n"
+"help.text"
+msgid "Column Break"
+msgstr ""
+
+#. XFHHz
+#: 02190200.xhp
+msgctxt ""
+"02190200.xhp\n"
+"bm_id3151384\n"
+"help.text"
+msgid "<bookmark_value>spreadsheets;deleting column breaks</bookmark_value><bookmark_value>deleting;manual column breaks</bookmark_value><bookmark_value>column breaks;deleting</bookmark_value>"
+msgstr ""
+
+#. pAuZZ
+#: 02190200.xhp
+msgctxt ""
+"02190200.xhp\n"
+"hd_id3151384\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/02190200.xhp\" name=\"Column Break\">Column Break</link>"
+msgstr ""
+
+#. Joj4v
+#: 02190200.xhp
+msgctxt ""
+"02190200.xhp\n"
+"par_id3154124\n"
+"help.text"
+msgid "<ahelp hid=\".uno:DeleteColumnbreak\">Removes a manual column break to the left of the active cell.</ahelp>"
+msgstr ""
+
+#. pn8oW
+#: 02190200.xhp
+msgctxt ""
+"02190200.xhp\n"
+"par_id3145173\n"
+"help.text"
+msgid "Position the cursor in the cell to the right of the column break indicated by a vertical line and choose <emph>Sheet - Delete Page Break - Column Break</emph>. The manual column break is removed."
+msgstr ""
+
+#. KQpwt
+#: 02200000.xhp
+msgctxt ""
+"02200000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Sheet"
+msgstr ""
+
+#. sm6m7
+#: 02200000.xhp
+msgctxt ""
+"02200000.xhp\n"
+"hd_id3146794\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/02200000.xhp\" name=\"Sheet\">Sheet</link>"
+msgstr ""
+
+#. ZEyEi
+#: 02200000.xhp
+msgctxt ""
+"02200000.xhp\n"
+"par_id3149456\n"
+"help.text"
+msgid "<ahelp hid=\".\">Edit commands for entire sheets.</ahelp>"
+msgstr ""
+
+#. B9XBW
+#: 02210000.xhp
+msgctxt ""
+"02210000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Selecting Sheets"
+msgstr ""
+
+#. gmAcU
+#: 02210000.xhp
+msgctxt ""
+"02210000.xhp\n"
+"hd_id3156023\n"
+"help.text"
+msgid "Selecting Sheets"
+msgstr ""
+
+#. ZiCFd
+#: 02210000.xhp
+msgctxt ""
+"02210000.xhp\n"
+"par_id3147265\n"
+"help.text"
+msgid "<variable id=\"tabellenauswaehlen\"><ahelp hid=\".uno:SelectTables\" visibility=\"visible\">Selects multiple sheets.</ahelp></variable>"
+msgstr ""
+
+#. GNEFZ
+#: 02210000.xhp
+msgctxt ""
+"02210000.xhp\n"
+"hd_id3125863\n"
+"help.text"
+msgid "Selected Sheets"
+msgstr ""
+
+#. bG2JH
+#: 02210000.xhp
+msgctxt ""
+"02210000.xhp\n"
+"par_id3153969\n"
+"help.text"
+msgid "<ahelp hid=\"SC_HID_SELECTTABLES\">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 ""
+
+#. rMXgD
+#: 02220000.xhp
+msgctxt ""
+"02220000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Go to Sheet"
+msgstr ""
+
+#. 88YoD
+#: 02220000.xhp
+msgctxt ""
+"02220000.xhp\n"
+"bm_id781654171314500\n"
+"help.text"
+msgid "<bookmark_value>Go to sheet</bookmark_value> <bookmark_value>jump; to given sheet</bookmark_value> <bookmark_value>sheet; go to directly</bookmark_value> <bookmark_value>sheet; search and go to</bookmark_value>"
+msgstr ""
+
+#. svg9x
+#: 02220000.xhp
+msgctxt ""
+"02220000.xhp\n"
+"hd_id3156025\n"
+"help.text"
+msgid "<variable id=\"GotoSheeth1\"><link href=\"text/scalc/01/02220000.xhp\" name=\"Go to Sheet\">Go to Sheet</link></variable>"
+msgstr ""
+
+#. UmffC
+#: 02220000.xhp
+msgctxt ""
+"02220000.xhp\n"
+"par_id3147266\n"
+"help.text"
+msgid "<variable id=\"gototable\"><ahelp hid=\".uno:JumpToTable\" visibility=\"visible\">Go to a specified sheet.</ahelp></variable>"
+msgstr ""
+
+#. ghXGk
+#: 02220000.xhp
+msgctxt ""
+"02220000.xhp\n"
+"par_id231655657630178\n"
+"help.text"
+msgid "Choose <menuitem>Sheet - Navigate - Go To Sheet</menuitem>."
+msgstr ""
+
+#. dPFgf
+#: 02220000.xhp
+msgctxt ""
+"02220000.xhp\n"
+"hd_id3125862\n"
+"help.text"
+msgid "Type a sheet name"
+msgstr ""
+
+#. guUL9
+#: 02220000.xhp
+msgctxt ""
+"02220000.xhp\n"
+"par_id3153975\n"
+"help.text"
+msgid "<ahelp hid=\"SC_HID_GOTOTABLEMASK\">Type some characters contained in the searched sheet name. List of sheets will be limited to the sheet names containing these characters. Search is case-sensitive. If empty, all visible sheets are listed.</ahelp>"
+msgstr ""
+
+#. aCw4F
+#: 02220000.xhp
+msgctxt ""
+"02220000.xhp\n"
+"hd_id3125866\n"
+"help.text"
+msgid "Sheets"
+msgstr ""
+
+#. JEuum
+#: 02220000.xhp
+msgctxt ""
+"02220000.xhp\n"
+"par_id3153971\n"
+"help.text"
+msgid "<ahelp hid=\"SC_HID_GOTOTABLE\">Lists the sheets in the current document. Hidden sheets are not listed. To select a sheet, press the up or down arrow keys to move to a sheet in the list. Double-clicking on a name will directly jump to this sheet.</ahelp>"
+msgstr ""
+
+#. eomCF
+#: 03070000.xhp
+msgctxt ""
+"03070000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Column & Row Headers"
+msgstr ""
+
+#. MBfaV
+#: 03070000.xhp
+msgctxt ""
+"03070000.xhp\n"
+"bm_id3156024\n"
+"help.text"
+msgid "<bookmark_value>spreadsheets; displaying headers of columns/rows</bookmark_value> <bookmark_value>displaying; headers of columns/rows</bookmark_value>"
+msgstr ""
+
+#. 9J5cb
+#: 03070000.xhp
+msgctxt ""
+"03070000.xhp\n"
+"hd_id3156024\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/03070000.xhp\" name=\"Column & Row Headers\">Column & Row Headers</link>"
+msgstr ""
+
+#. 5Cdt5
+#: 03070000.xhp
+msgctxt ""
+"03070000.xhp\n"
+"par_id3147230\n"
+"help.text"
+msgid "<ahelp hid=\".\">Shows column headers and row headers.</ahelp>"
+msgstr ""
+
+#. BJB5U
+#: 03070000.xhp
+msgctxt ""
+"03070000.xhp\n"
+"par_id3156280\n"
+"help.text"
+msgid "To hide the column and row headers, unmark this menu entry."
+msgstr ""
+
+#. GL8VF
+#: 03070000.xhp
+msgctxt ""
+"03070000.xhp\n"
+"par_id3156441\n"
+"help.text"
+msgid "You can also set the view of the column and row headers in <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Preferences</item></caseinline><defaultinline><item type=\"menuitem\">Tools - Options</item></defaultinline></switchinline> - <link href=\"text/shared/optionen/01060100.xhp\" name=\"Spreadsheet - View\"><emph>%PRODUCTNAME Calc - View</emph></link>."
+msgstr ""
+
+#. 2FynF
+#: 03080000.xhp
+msgctxt ""
+"03080000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Value Highlighting"
+msgstr ""
+
+#. yvY5V
+#: 03080000.xhp
+msgctxt ""
+"03080000.xhp\n"
+"bm_id3151384\n"
+"help.text"
+msgid "<bookmark_value>spreadsheets; value highlighting</bookmark_value> <bookmark_value>values;highlighting</bookmark_value> <bookmark_value>highlighting; values in sheets</bookmark_value> <bookmark_value>colors;values</bookmark_value>"
+msgstr ""
+
+#. GQeVi
+#: 03080000.xhp
+msgctxt ""
+"03080000.xhp\n"
+"hd_id3151384\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/03080000.xhp\" name=\"Value Highlighting\">Value Highlighting</link>"
+msgstr ""
+
+#. vS5Bm
+#: 03080000.xhp
+msgctxt ""
+"03080000.xhp\n"
+"par_id3154366\n"
+"help.text"
+msgid "<ahelp hid=\".\">Displays cell contents in different colors, depending on type.</ahelp>"
+msgstr ""
+
+#. ti3ib
+#: 03080000.xhp
+msgctxt ""
+"03080000.xhp\n"
+"par_id3125863\n"
+"help.text"
+msgid "To remove the highlighting, unmark the menu entry."
+msgstr ""
+
+#. 9GB5Z
+#: 03080000.xhp
+msgctxt ""
+"03080000.xhp\n"
+"par_id3145784\n"
+"help.text"
+msgid "By default:"
+msgstr ""
+
+#. waDQG
+#: 03080000.xhp
+msgctxt ""
+"03080000.xhp\n"
+"par_id3145785\n"
+"help.text"
+msgid "Text cells are formatted in black, formulas in green, number cells in blue, and protected cells are shown with light grey background, no matter how their display is formatted."
+msgstr ""
+
+#. GGawQ
+#: 03080000.xhp
+msgctxt ""
+"03080000.xhp\n"
+"par_id3145786\n"
+"help.text"
+msgid "These colors can be customized 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\"> - %PRODUCTNAME - Application Colors</item>."
+msgstr ""
+
+#. FMFKK
+#: 03080000.xhp
+msgctxt ""
+"03080000.xhp\n"
+"par_id3153188\n"
+"help.text"
+msgid "If this function is active, colors that you define in the document will not be displayed. When you deactivate the function, the user-defined colors are displayed again."
+msgstr ""
+
+#. 9Tdsf
+#: 03090000.xhp
+msgctxt ""
+"03090000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Formula Bar"
+msgstr ""
+
+#. d4DHd
+#: 03090000.xhp
+msgctxt ""
+"03090000.xhp\n"
+"bm_id3147264\n"
+"help.text"
+msgid "<bookmark_value>formula bar;spreadsheets</bookmark_value> <bookmark_value>spreadsheets; formula bar</bookmark_value>"
+msgstr ""
+
+#. 5kD7a
+#: 03090000.xhp
+msgctxt ""
+"03090000.xhp\n"
+"hd_id3147264\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/03090000.xhp\" name=\"Formula Bar\">Formula Bar</link>"
+msgstr ""
+
+#. ALATw
+#: 03090000.xhp
+msgctxt ""
+"03090000.xhp\n"
+"par_id3156423\n"
+"help.text"
+msgid "<ahelp hid=\".\">Shows or hides the Formula Bar, which is used for entering and editing formulas. The Formula Bar is the most important tool when working with spreadsheets.</ahelp>"
+msgstr ""
+
+#. fHVAk
+#: 03090000.xhp
+msgctxt ""
+"03090000.xhp\n"
+"par_id3154686\n"
+"help.text"
+msgid "To hide the Formula Bar, unmark the menu item."
+msgstr ""
+
+#. FUnzz
+#: 03090000.xhp
+msgctxt ""
+"03090000.xhp\n"
+"par_id3145787\n"
+"help.text"
+msgid "If the Formula Bar is hidden, you can still edit cells by activating the edit mode with F2. After editing cells, accept the changes by pressing Enter, or discard entries by pressing Esc. Esc is also used to exit the edit mode."
+msgstr ""
+
+#. HdJfk
+#: 03100000.xhp
+msgctxt ""
+"03100000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Page Break View"
+msgstr ""
+
+#. zuUZD
+#: 03100000.xhp
+msgctxt ""
+"03100000.xhp\n"
+"hd_id3151384\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/03100000.xhp\" name=\"Page Break View\">Page Break View</link>"
+msgstr ""
+
+#. 55rRr
+#: 03100000.xhp
+msgctxt ""
+"03100000.xhp\n"
+"par_id3150792\n"
+"help.text"
+msgid "<variable id=\"page_break_view_text\"><ahelp hid=\".\">Display the page breaks and print ranges in the sheet.</ahelp></variable> Choose <item type=\"menuitem\">View - Normal</item> to switch this mode off."
+msgstr ""
+
+#. USJHW
+#: 03100000.xhp
+msgctxt ""
+"03100000.xhp\n"
+"par_id3153877\n"
+"help.text"
+msgid "The context menu of the page break preview contains functions for editing page breaks, including the following options:"
+msgstr ""
+
+#. iM3oN
+#: 03100000.xhp
+msgctxt ""
+"03100000.xhp\n"
+"hd_id3154731\n"
+"help.text"
+msgid "Delete Page Breaks"
+msgstr ""
+
+#. mH8J5
+#: 03100000.xhp
+msgctxt ""
+"03100000.xhp\n"
+"par_id3149400\n"
+"help.text"
+msgid "<ahelp hid=\".\">Deletes all manual breaks in the current sheet.</ahelp>"
+msgstr ""
+
+#. iigiV
+#: 03100000.xhp
+msgctxt ""
+"03100000.xhp\n"
+"hd_id3155067\n"
+"help.text"
+msgid "Add Print Range"
+msgstr ""
+
+#. 6CE3V
+#: 03100000.xhp
+msgctxt ""
+"03100000.xhp\n"
+"par_id3155764\n"
+"help.text"
+msgid "Adds the selected cells to print ranges."
+msgstr ""
+
+#. QMSTE
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Insert Page Break"
+msgstr ""
+
+#. BEGsp
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"bm_id3153192\n"
+"help.text"
+msgid "<bookmark_value>spreadsheets; inserting breaks in</bookmark_value><bookmark_value>inserting; breaks</bookmark_value><bookmark_value>page breaks; inserting in spreadsheets</bookmark_value>"
+msgstr ""
+
+#. yRa8D
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"hd_id3153192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04010000.xhp\" name=\"Insert Page Break\">Insert Page Break</link>"
+msgstr ""
+
+#. 8EAxX
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id3125864\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 ""
+
+#. 3J4AR
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id3155133\n"
+"help.text"
+msgid "Choose <link href=\"text/scalc/01/02190000.xhp\" name=\"Sheet - Delete Page Break\">Sheet - Delete Page Break</link> to remove breaks created manually."
+msgstr ""
+
+#. iuDCz
+#: 04010100.xhp
+msgctxt ""
+"04010100.xhp\n"
+"tit\n"
+"help.text"
+msgid "Row Break"
+msgstr ""
+
+#. 4jUPY
+#: 04010100.xhp
+msgctxt ""
+"04010100.xhp\n"
+"bm_id3153821\n"
+"help.text"
+msgid "<bookmark_value>sheets; inserting row breaks</bookmark_value><bookmark_value>row breaks; inserting</bookmark_value><bookmark_value>inserting; manual row breaks</bookmark_value><bookmark_value>manual row breaks</bookmark_value>"
+msgstr ""
+
+#. jN76G
+#: 04010100.xhp
+msgctxt ""
+"04010100.xhp\n"
+"hd_id3153821\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04010100.xhp\" name=\"Row Break\">Row Break</link>"
+msgstr ""
+
+#. BFATv
+#: 04010100.xhp
+msgctxt ""
+"04010100.xhp\n"
+"par_id3149656\n"
+"help.text"
+msgid "<ahelp hid=\".uno:InsertRowBreak\">Inserts a row break (horizontal page break) above the selected cell.</ahelp>"
+msgstr ""
+
+#. wwsXX
+#: 04010100.xhp
+msgctxt ""
+"04010100.xhp\n"
+"par_id3156422\n"
+"help.text"
+msgid "The manual row break is indicated by a dark blue horizontal line."
+msgstr ""
+
+#. GDRiE
+#: 04010200.xhp
+msgctxt ""
+"04010200.xhp\n"
+"tit\n"
+"help.text"
+msgid "Column Break"
+msgstr ""
+
+#. pJL5v
+#: 04010200.xhp
+msgctxt ""
+"04010200.xhp\n"
+"bm_id3155923\n"
+"help.text"
+msgid "<bookmark_value>spreadsheets; inserting column breaks</bookmark_value><bookmark_value>column breaks; inserting</bookmark_value><bookmark_value>inserting; manual column breaks</bookmark_value><bookmark_value>manual column breaks</bookmark_value>"
+msgstr ""
+
+#. vo2Eq
+#: 04010200.xhp
+msgctxt ""
+"04010200.xhp\n"
+"hd_id3155923\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04010200.xhp\" name=\"Column Break\">Column Break</link>"
+msgstr ""
+
+#. THmx8
+#: 04010200.xhp
+msgctxt ""
+"04010200.xhp\n"
+"par_id3150447\n"
+"help.text"
+msgid "<ahelp hid=\".uno:InsertColumnBreak\">Inserts a column break (vertical page break) to the left of the active cell.</ahelp>"
+msgstr ""
+
+#. ZEho6
+#: 04010200.xhp
+msgctxt ""
+"04010200.xhp\n"
+"par_id3145171\n"
+"help.text"
+msgid "The manual column break is indicated by a dark blue vertical line."
+msgstr ""
+
+#. FiGSE
+#: 04020000.xhp
+msgctxt ""
+"04020000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Insert Cells"
+msgstr ""
+
+#. QHAWg
+#: 04020000.xhp
+msgctxt ""
+"04020000.xhp\n"
+"bm_id3156023\n"
+"help.text"
+msgid "<bookmark_value>spreadsheets; inserting cells</bookmark_value><bookmark_value>cells; inserting</bookmark_value><bookmark_value>inserting; cells</bookmark_value>"
+msgstr ""
+
+#. dDmDx
+#: 04020000.xhp
+msgctxt ""
+"04020000.xhp\n"
+"hd_id3156023\n"
+"help.text"
+msgid "Insert Cells"
+msgstr ""
+
+#. dG824
+#: 04020000.xhp
+msgctxt ""
+"04020000.xhp\n"
+"par_id3150542\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 ""
+
+#. GNLr2
+#: 04020000.xhp
+msgctxt ""
+"04020000.xhp\n"
+"hd_id3153768\n"
+"help.text"
+msgid "Selection"
+msgstr ""
+
+#. YMXC2
+#: 04020000.xhp
+msgctxt ""
+"04020000.xhp\n"
+"par_id3149262\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 ""
+
+#. jUy2J
+#: 04020000.xhp
+msgctxt ""
+"04020000.xhp\n"
+"hd_id3146120\n"
+"help.text"
+msgid "Shift cells down"
+msgstr ""
+
+#. Dbr3S
+#: 04020000.xhp
+msgctxt ""
+"04020000.xhp\n"
+"par_id3152596\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 ""
+
+#. JUkhx
+#: 04020000.xhp
+msgctxt ""
+"04020000.xhp\n"
+"hd_id3147434\n"
+"help.text"
+msgid "Shift cells right"
+msgstr ""
+
+#. cCdFM
+#: 04020000.xhp
+msgctxt ""
+"04020000.xhp\n"
+"par_id3144764\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 ""
+
+#. en4x8
+#: 04020000.xhp
+msgctxt ""
+"04020000.xhp\n"
+"hd_id3153877\n"
+"help.text"
+msgid "Entire row"
+msgstr ""
+
+#. 6kPfT
+#: 04020000.xhp
+msgctxt ""
+"04020000.xhp\n"
+"par_id3155417\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 ""
+
+#. HKGtx
+#: 04020000.xhp
+msgctxt ""
+"04020000.xhp\n"
+"hd_id3146971\n"
+"help.text"
+msgid "Entire column"
+msgstr ""
+
+#. YpLqF
+#: 04020000.xhp
+msgctxt ""
+"04020000.xhp\n"
+"par_id3155068\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 ""
+
+#. qtDef
+#: 04030000.xhp
+msgctxt ""
+"04030000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Insert Rows"
+msgstr ""
+
+#. NdXGF
+#: 04030000.xhp
+msgctxt ""
+"04030000.xhp\n"
+"bm_id3150541\n"
+"help.text"
+msgid "<bookmark_value>spreadsheets; inserting rows</bookmark_value> <bookmark_value>rows; inserting</bookmark_value> <bookmark_value>inserting; rows</bookmark_value>"
+msgstr ""
+
+#. YLWHa
+#: 04030000.xhp
+msgctxt ""
+"04030000.xhp\n"
+"hd_id3150541\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04030000.xhp\" name=\"Insert Rows\">Insert Rows</link>"
+msgstr ""
+
+#. CMEAW
+#: 04030000.xhp
+msgctxt ""
+"04030000.xhp\n"
+"par_id160220162210581072\n"
+"help.text"
+msgid "<variable id=\"sheet_insert_rows\">Insert rows above or below the active cell.</variable> The number of rows inserted corresponds to the number of rows selected. If no row is selected, one row is inserted. The existing rows are moved downward."
+msgstr ""
+
+#. aGwJs
+#: 04030000.xhp
+msgctxt ""
+"04030000.xhp\n"
+"hd_id160220162131439740\n"
+"help.text"
+msgid "Rows Above"
+msgstr ""
+
+#. 7FFxF
+#: 04030000.xhp
+msgctxt ""
+"04030000.xhp\n"
+"par_id3150767\n"
+"help.text"
+msgid "<ahelp hid=\".uno:InsertRowsBefore\">Inserts a new row above the active cell.</ahelp>"
+msgstr ""
+
+#. NGsGA
+#: 04030000.xhp
+msgctxt ""
+"04030000.xhp\n"
+"hd_id160220162133372726\n"
+"help.text"
+msgid "Rows Below"
+msgstr ""
+
+#. Zs6ez
+#: 04030000.xhp
+msgctxt ""
+"04030000.xhp\n"
+"par_id3150768\n"
+"help.text"
+msgid "<ahelp hid=\".uno:InsertRowsAfter\">Inserts a new row below the active cell.</ahelp>"
+msgstr ""
+
+#. FSDfk
+#: 04040000.xhp
+msgctxt ""
+"04040000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Insert Columns"
+msgstr ""
+
+#. p47AJ
+#: 04040000.xhp
+msgctxt ""
+"04040000.xhp\n"
+"bm_id3155628\n"
+"help.text"
+msgid "<bookmark_value>spreadsheets; inserting columns</bookmark_value> <bookmark_value>inserting; columns</bookmark_value> <bookmark_value>columns; inserting</bookmark_value>"
+msgstr ""
+
+#. KALFz
+#: 04040000.xhp
+msgctxt ""
+"04040000.xhp\n"
+"hd_id3155628\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04040000.xhp\" name=\"Insert Columns\">Insert Columns</link>"
+msgstr ""
+
+#. RMPZG
+#: 04040000.xhp
+msgctxt ""
+"04040000.xhp\n"
+"par_id160220162214111932\n"
+"help.text"
+msgid "<variable id=\"sheet_insert_columns\">Inserts columns to the left or to the right of the active cell.</variable> The number of columns inserted corresponds to the number of columns selected. If no column is selected, one column is inserted. The existing columns are moved to the right."
+msgstr ""
+
+#. weeGA
+#: 04040000.xhp
+msgctxt ""
+"04040000.xhp\n"
+"hd_id160220162139258865\n"
+"help.text"
+msgid "Columns Before"
+msgstr ""
+
+#. WA9zp
+#: 04040000.xhp
+msgctxt ""
+"04040000.xhp\n"
+"par_id3150791\n"
+"help.text"
+msgid "<ahelp hid=\".uno:InsertColumnsBefore\">Inserts a new column before the active cell.</ahelp>"
+msgstr ""
+
+#. VXRxE
+#: 04040000.xhp
+msgctxt ""
+"04040000.xhp\n"
+"hd_id160220162139252941\n"
+"help.text"
+msgid "Columns After"
+msgstr ""
+
+#. RB8Ju
+#: 04040000.xhp
+msgctxt ""
+"04040000.xhp\n"
+"par_id160220162138041164\n"
+"help.text"
+msgid "<ahelp hid=\".uno:InsertColumnsAfter\">Inserts a new column after the active cell.</ahelp>"
+msgstr ""
+
+#. ZFNwu
+#: 04050000.xhp
+msgctxt ""
+"04050000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Insert Sheet"
+msgstr ""
+
+#. sYYNV
+#: 04050000.xhp
+msgctxt ""
+"04050000.xhp\n"
+"bm_id4522232\n"
+"help.text"
+msgid "<bookmark_value>sheets;creating</bookmark_value>"
+msgstr ""
+
+#. FtKbJ
+#: 04050000.xhp
+msgctxt ""
+"04050000.xhp\n"
+"hd_id3155629\n"
+"help.text"
+msgid "Insert Sheet"
+msgstr ""
+
+#. TDcPV
+#: 04050000.xhp
+msgctxt ""
+"04050000.xhp\n"
+"par_id3147264\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 ""
+
+#. xn7Y2
+#: 04050000.xhp
+msgctxt ""
+"04050000.xhp\n"
+"hd_id3154684\n"
+"help.text"
+msgid "Position"
+msgstr ""
+
+#. 5Pke8
+#: 04050000.xhp
+msgctxt ""
+"04050000.xhp\n"
+"par_id3156281\n"
+"help.text"
+msgid "Specifies where the new sheet is to be inserted into your document."
+msgstr ""
+
+#. dW2VB
+#: 04050000.xhp
+msgctxt ""
+"04050000.xhp\n"
+"hd_id3154123\n"
+"help.text"
+msgid "Before current sheet"
+msgstr ""
+
+#. Ho3d8
+#: 04050000.xhp
+msgctxt ""
+"04050000.xhp\n"
+"par_id3145787\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/insertsheet/before\">Inserts a new sheet directly before the current sheet.</ahelp>"
+msgstr ""
+
+#. zGjTC
+#: 04050000.xhp
+msgctxt ""
+"04050000.xhp\n"
+"hd_id3155414\n"
+"help.text"
+msgid "After current sheet"
+msgstr ""
+
+#. 2mAP3
+#: 04050000.xhp
+msgctxt ""
+"04050000.xhp\n"
+"par_id3145271\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/insertsheet/after\">Inserts a new sheet directly after the current sheet.</ahelp>"
+msgstr ""
+
+#. RhGma
+#: 04050000.xhp
+msgctxt ""
+"04050000.xhp\n"
+"hd_id3147428\n"
+"help.text"
+msgid "Sheet"
+msgstr ""
+
+#. uVSad
+#: 04050000.xhp
+msgctxt ""
+"04050000.xhp\n"
+"par_id3154012\n"
+"help.text"
+msgid "Specifies whether a new sheet or an existing sheet is inserted into the document."
+msgstr ""
+
+#. g3EG8
+#: 04050000.xhp
+msgctxt ""
+"04050000.xhp\n"
+"hd_id3147350\n"
+"help.text"
+msgid "New sheet"
+msgstr ""
+
+#. EUjuC
+#: 04050000.xhp
+msgctxt ""
+"04050000.xhp\n"
+"par_id3149262\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 ""
+
+#. rPGT9
+#: 04050000.xhp
+msgctxt ""
+"04050000.xhp\n"
+"hd_id3155418\n"
+"help.text"
+msgid "No. of sheets"
+msgstr ""
+
+#. BvaGG
+#: 04050000.xhp
+msgctxt ""
+"04050000.xhp\n"
+"par_id3148457\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/insertsheet/countnf\">Specifies the number of sheets to be created.</ahelp>"
+msgstr ""
+
+#. cGgci
+#: 04050000.xhp
+msgctxt ""
+"04050000.xhp\n"
+"hd_id3149379\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. Rwj26
+#: 04050000.xhp
+msgctxt ""
+"04050000.xhp\n"
+"par_id3150718\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/insertsheet/nameed\">Specifies the name of the new sheet.</ahelp>"
+msgstr ""
+
+#. EFVbu
+#: 04050000.xhp
+msgctxt ""
+"04050000.xhp\n"
+"hd_id3155066\n"
+"help.text"
+msgid "From File"
+msgstr ""
+
+#. 332sb
+#: 04050000.xhp
+msgctxt ""
+"04050000.xhp\n"
+"par_id3153714\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/insertsheet/fromfile\">Inserts a sheet from an existing file into the current document.</ahelp>"
+msgstr ""
+
+#. ymLhJ
+#: 04050000.xhp
+msgctxt ""
+"04050000.xhp\n"
+"hd_id3149020\n"
+"help.text"
+msgid "Browse"
+msgstr ""
+
+#. pZ7Eo
+#: 04050000.xhp
+msgctxt ""
+"04050000.xhp\n"
+"par_id3159267\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/insertsheet/browse\">Opens a dialog for selecting a file.</ahelp>"
+msgstr ""
+
+#. s9sGN
+#: 04050000.xhp
+msgctxt ""
+"04050000.xhp\n"
+"hd_id3149255\n"
+"help.text"
+msgid "Available Sheets"
+msgstr ""
+
+#. GWMya
+#: 04050000.xhp
+msgctxt ""
+"04050000.xhp\n"
+"par_id3155336\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 ""
+
+#. FULKa
+#: 04050000.xhp
+msgctxt ""
+"04050000.xhp\n"
+"hd_id3145791\n"
+"help.text"
+msgid "Link"
+msgstr ""
+
+#. 4CQJj
+#: 04050000.xhp
+msgctxt ""
+"04050000.xhp\n"
+"par_id3152580\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 ""
+
+#. 4imcW
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"tit\n"
+"help.text"
+msgid "Sheet from file"
+msgstr ""
+
+#. xzwDc
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_idN105C1\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04050100.xhp\">Sheet from file</link>"
+msgstr ""
+
+#. yydHc
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_idN105D1\n"
+"help.text"
+msgid "<ahelp hid=\".\">Inserts a sheet from a different spreadsheet file.</ahelp>"
+msgstr ""
+
+#. HiYLL
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_idN105F7\n"
+"help.text"
+msgid "Use the <link href=\"text/shared/01/01020000.xhp\">File - Open</link> dialog to locate the spreadsheet."
+msgstr ""
+
+#. kEz82
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_idN10609\n"
+"help.text"
+msgid "In the <link href=\"text/scalc/01/04050000.xhp\">Insert Sheet</link> dialog, select the sheet that you want to insert."
+msgstr ""
+
+#. 5zC8c
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Function Wizard"
+msgstr ""
+
+#. DHRxH
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"bm_id3147426\n"
+"help.text"
+msgid "<bookmark_value>inserting functions; Function Wizard</bookmark_value><bookmark_value>functions;Function Wizard</bookmark_value><bookmark_value>wizards; functions</bookmark_value>"
+msgstr ""
+
+#. KeWpp
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"hd_id3147426\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060000.xhp\" name=\"AutoPilot: Functions\">Function</link>"
+msgstr ""
+
+#. wjD4H
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id3145271\n"
+"help.text"
+msgid "<variable id=\"funktionsautopilottext\"><ahelp hid=\".\">Opens the <emph>Function Wizard</emph>, which helps you to interactively create formulas.</ahelp></variable>"
+msgstr ""
+
+#. exDJs
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id491577286833512\n"
+"help.text"
+msgid "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 ""
+
+#. xeqnV
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id8007446\n"
+"help.text"
+msgid "You can download the complete ODFF (OpenDocument Format Formula) specification from the <link href=\"https://docs.oasis-open.org/office/v1.2/OpenDocument-v1.2-part2.odt\"><emph>OASIS</emph></link> web site."
+msgstr ""
+
+#. mM4AA
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id3159153\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 ""
+
+#. v7CjU
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"hd_id3154490\n"
+"help.text"
+msgid "Functions Tab"
+msgstr ""
+
+#. AAQJB
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"hd_id3154731\n"
+"help.text"
+msgid "Search"
+msgstr ""
+
+#. XUDfo
+#: 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 ""
+
+#. eFtXe
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"hd_id3154730\n"
+"help.text"
+msgid "Category"
+msgstr ""
+
+#. ECj6K
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id3153417\n"
+"help.text"
+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 ""
+
+#. KnP6B
+#: 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\"><emph>List of Categories and Functions</emph></link>."
+msgstr ""
+
+#. R4W8p
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"hd_id3150749\n"
+"help.text"
+msgid "Function"
+msgstr ""
+
+#. r33un
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id3155445\n"
+"help.text"
+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 ""
+
+#. rcQMa
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"hd_id3159264\n"
+"help.text"
+msgid "Array"
+msgstr ""
+
+#. faHCg
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id3149566\n"
+"help.text"
+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 ""
+
+#. FCzWG
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id3155959\n"
+"help.text"
+msgid "The <emph>Array</emph> option is identical to the <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline><emph>+Shift+Enter</emph> command, which is used to enter and confirm formulas in the sheet. The formula is inserted as a matrix formula indicated by two braces: <emph>{ }</emph>."
+msgstr ""
+
+#. pGN2N
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id3152993\n"
+"help.text"
+msgid "The maximum size of an array range is 128 by 128 cells."
+msgstr ""
+
+#. 6pzSD
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"hd_id3150367\n"
+"help.text"
+msgid "Argument Input Fields"
+msgstr ""
+
+#. KJjBy
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id3145587\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\"><emph>date entries</emph></link>, make sure you use the correct format. Click <emph>OK</emph> to insert the result into the spreadsheet."
+msgstr ""
+
+#. QwFQQ
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"hd_id3149408\n"
+"help.text"
+msgid "Function Result"
+msgstr ""
+
+#. hPtat
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id3155809\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\"><emph>error code</emph></link> is displayed."
+msgstr ""
+
+#. S2CCy
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id3148700\n"
+"help.text"
+msgid "The required arguments are indicated by names in bold print."
+msgstr ""
+
+#. nEQBZ
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"hd_id3153064\n"
+"help.text"
+msgid "f(x) (depending on the selected function)"
+msgstr ""
+
+#. GaUwB
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id3157980\n"
+"help.text"
+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 ""
+
+#. GSRgn
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"hd_id3145076\n"
+"help.text"
+msgid "Argument/Parameter/Cell Reference (depending on the selected function)"
+msgstr ""
+
+#. jHGpr
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id3159097\n"
+"help.text"
+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 ""
+
+#. qhK6i
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"hd_id3154957\n"
+"help.text"
+msgid "Result"
+msgstr ""
+
+#. iGrov
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id3150211\n"
+"help.text"
+msgid "<ahelp hid=\"formula/ui/formuladialog/formula_result\">Displays the calculation result or an error message.</ahelp>"
+msgstr ""
+
+#. jWE5Y
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"hd_id3151304\n"
+"help.text"
+msgid "Formula"
+msgstr ""
+
+#. EsQE7
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id3149898\n"
+"help.text"
+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 ""
+
+#. iBGou
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"hd_id3153249\n"
+"help.text"
+msgid "Back"
+msgstr ""
+
+#. ei34W
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id3152869\n"
+"help.text"
+msgid "<ahelp hid=\"formula/ui/formuladialog/back\">Moves the focus back through the formula components, marking them as it does so.</ahelp>"
+msgstr ""
+
+#. XazZe
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id3146966\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 ""
+
+#. smGyc
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"hd_id3155762\n"
+"help.text"
+msgid "Next"
+msgstr ""
+
+#. Eembv
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id3149316\n"
+"help.text"
+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 ""
+
+#. rc9R8
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id3159262\n"
+"help.text"
+msgid "Double-click a function in the selection window to transfer it to the formula window."
+msgstr ""
+
+#. FNqqJ
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"hd_id3150534\n"
+"help.text"
+msgid "OK"
+msgstr ""
+
+#. 4urnG
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id3153029\n"
+"help.text"
+msgid "<ahelp hid=\"formula/ui/formuladialog/ok\">Ends the <emph>Function Wizard</emph>, and transfers the formula to the selected cells.</ahelp>"
+msgstr ""
+
+#. fBUkR
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"hd_id3148745\n"
+"help.text"
+msgid "Cancel"
+msgstr ""
+
+#. zwoBc
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id3147402\n"
+"help.text"
+msgid "<ahelp hid=\"formula/ui/formuladialog/cancel\">Closes the dialog without implementing the formula.</ahelp>"
+msgstr ""
+
+#. mBHTQ
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"hd_id3147610\n"
+"help.text"
+msgid "Structure tab"
+msgstr ""
+
+#. Egchi
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id3153122\n"
+"help.text"
+msgid "On this page, you can view the structure of the function."
+msgstr ""
+
+#. TsXbp
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id3149350\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 ""
+
+#. bNwhM
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"hd_id3149014\n"
+"help.text"
+msgid "Structure"
+msgstr ""
+
+#. WBCn7
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id3150481\n"
+"help.text"
+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 ""
+
+#. debaD
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id3148886\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 ""
+
+#. Q8EWn
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"tit\n"
+"help.text"
+msgid "Functions by Category"
+msgstr ""
+
+#. VZrAg
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"bm_id3148575\n"
+"help.text"
+msgid "<bookmark_value>functions;listed by category</bookmark_value> <bookmark_value>categories of functions</bookmark_value> <bookmark_value>list of functions</bookmark_value>"
+msgstr ""
+
+#. VArkk
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"hd_id3154944\n"
+"help.text"
+msgid "<variable id=\"drking\"><link href=\"text/scalc/01/04060100.xhp\" name=\"Functions by Category\">Functions by Category</link></variable>"
+msgstr ""
+
+#. FanRR
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"par_id3149378\n"
+"help.text"
+msgid "This section describes the functions of $[officename] Calc. The various functions are divided into categories in the Function Wizard."
+msgstr ""
+
+#. JJJ2y
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"hd_id3146972\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060101.xhp\" name=\"Database\">Database</link>"
+msgstr ""
+
+#. m2kzD
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"hd_id3155443\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060102.xhp\" name=\"Date & Time\">Date & Time</link>"
+msgstr ""
+
+#. DLpQ4
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"hd_id3147339\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp\" name=\"Financial\">Financial</link>"
+msgstr ""
+
+#. yzu3D
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"hd_id3153963\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060104.xhp\" name=\"Information\">Information</link>"
+msgstr ""
+
+#. SaxEF
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"hd_id3146316\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060105.xhp\" name=\"Logical\">Logical</link>"
+msgstr ""
+
+#. iezxW
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"hd_id3148485\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060106.xhp\" name=\"Mathematical\">Mathematical</link>"
+msgstr ""
+
+#. 9JGUR
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"hd_id3150363\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060107.xhp\" name=\"Matrix\">Array</link>"
+msgstr ""
+
+#. U2BHz
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"hd_id3150208\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060108.xhp\" name=\"Statistical\">Statistical</link>"
+msgstr ""
+
+#. DywSF
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"hd_id3166428\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060109.xhp\" name=\"Spreadsheet\">Spreadsheet</link>"
+msgstr ""
+
+#. 73sYC
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"hd_id3145585\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060110.xhp\" name=\"Text\">Text</link>"
+msgstr ""
+
+#. cjoGa
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"hd_id3156449\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060111.xhp\" name=\"Add-in\">Add-in</link>"
+msgstr ""
+
+#. PRm2o
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"par_id3150715\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060199.xhp\" name=\"Operators\">Operators</link>"
+msgstr ""
+
+#. ENAh9
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"tit\n"
+"help.text"
+msgid "Database Functions"
+msgstr ""
+
+#. ASfzE
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"bm_id3148946\n"
+"help.text"
+msgid "<bookmark_value>Function Wizard; databases</bookmark_value> <bookmark_value>functions; database functions</bookmark_value> <bookmark_value>databases; functions in $[officename] Calc</bookmark_value>"
+msgstr ""
+
+#. BX97Y
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"hd_id3148946\n"
+"help.text"
+msgid "Database Functions"
+msgstr ""
+
+#. v9KEM
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"hd_id721616440441374\n"
+"help.text"
+msgid "Overview"
+msgstr ""
+
+#. RGkxy
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id3145173\n"
+"help.text"
+msgid "<variable id=\"datenbanktext\">The twelve functions in the Database category help you to analyze a simple database that occupies a rectangular spreadsheet area comprising columns and rows, with the data organized as one row for each record.</variable> The header cell of each column displays the name of the column and that name usually reflects the contents of each cell in that column."
+msgstr ""
+
+#. 8NQZ9
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id631615842419413\n"
+"help.text"
+msgid "The functions in the Database category take three arguments as follows:"
+msgstr ""
+
+#. pmE4Y
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id761615842549780\n"
+"help.text"
+msgid "<emph>Database</emph>. The cell range of the database."
+msgstr ""
+
+#. nw3ya
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id601615842657372\n"
+"help.text"
+msgid "<emph>DatabaseField</emph>. The column containing the data to be used in the function’s calculations."
+msgstr ""
+
+#. D5P4G
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id471615842721059\n"
+"help.text"
+msgid "<emph>SearchCriteria</emph>. The cell range of a separate area of the spreadsheet containing search criteria."
+msgstr ""
+
+#. RT3mc
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id101615842794525\n"
+"help.text"
+msgid "These arguments are described more fully below."
+msgstr ""
+
+#. ykxDt
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id241615842810077\n"
+"help.text"
+msgid "All functions have the same outline concept of operation. The first logical step is to use the specified <emph>SearchCriteria</emph> to identify the subset of records in the <emph>Database</emph> that are to be used during subsequent calculations. The second step is to extract the data values and perform the calculations associated with the specific function (average, sum, product, and so on). The values processed are those in the <emph>DatabaseField</emph> column of the selected records."
+msgstr ""
+
+#. oErum
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id981615978852310\n"
+"help.text"
+msgid "Calc treats dates and logical values (TRUE and FALSE) as numeric when calculating with these functions."
+msgstr ""
+
+#. qZFoo
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"hd_id911615888814785\n"
+"help.text"
+msgid "Database Function Arguments"
+msgstr ""
+
+#. XzUDg
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id911615888833104\n"
+"help.text"
+msgid "The following argument definitions apply for all functions in the Database category:"
+msgstr ""
+
+#. EHkEz
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id21615889071992\n"
+"help.text"
+msgid "<emph>Database argument</emph>"
+msgstr ""
+
+#. fxMgf
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id31615889105463\n"
+"help.text"
+msgid "<emph>Database</emph> specifies the range of cells occupied by the database table. The first row of the range contains the field names, and subsequent rows are records with corresponding field values."
+msgstr ""
+
+#. zpzi9
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id521615889152497\n"
+"help.text"
+msgid "One way of defining the range of cells is to enter the cell reference for the upper left-hand cell, followed by a colon (:), and then the lower right-hand cell reference. An example might be A1:E10."
+msgstr ""
+
+#. WD55p
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id761615889163416\n"
+"help.text"
+msgid "The <emph>Database</emph> argument may also be specified by passing the name of a named range or database range. Using a meaningful name to define the cell range can enhance formula readability and document maintenance. If the name does not match the name of a defined range, Calc reports a #NAME? error."
+msgstr ""
+
+#. 7L4XM
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id601615889176137\n"
+"help.text"
+msgid "Other errors that might be reported as a result of an invalid <emph>Database</emph> argument are #VALUE! and Err:504 (error in parameter list)."
+msgstr ""
+
+#. rsj3e
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id201615889390777\n"
+"help.text"
+msgid "<emph>DatabaseField argument</emph>"
+msgstr ""
+
+#. 7Eorp
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id431615889426480\n"
+"help.text"
+msgid "<emph>DatabaseField</emph> specifies the column which the function will use for its calculations after the search criteria have been applied and the data rows have been selected. It is not related to the search criteria."
+msgstr ""
+
+#. Z9Qfp
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id661615889458032\n"
+"help.text"
+msgid "Specify the <emph>DatabaseField</emph> argument in any of the following ways:"
+msgstr ""
+
+#. RMwzE
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id981615889517841\n"
+"help.text"
+msgid "By entering a reference to a header cell within the <emph>Database</emph> area. Alternatively, if the cell has been given a meaningful name as a named range or database range, enter that name. If the name does not match the name of a defined range, Calc reports a #NAME? error. If the name is valid but does not correspond to one cell only, Calc reports Err:504 (error in parameter list)."
+msgstr ""
+
+#. 6EGoq
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id551615889661457\n"
+"help.text"
+msgid "By entering a number to specify the column within the <emph>Database</emph> area, starting with 1. For example, if a <emph>Database</emph> occupied the cell range D6:H123, then enter 3 to indicate the header cell at F6. Calc expects an integer value that lies between 1 and the number of columns defined within <emph>Database</emph> and ignores any digits after a decimal point. If the value is less than 1, Calc reports Err:504 (error in parameter list). If the value is greater than the number of columns in <emph>Database</emph>, Calc reports a #VALUE! error."
+msgstr ""
+
+#. qSkvo
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id561615889738472\n"
+"help.text"
+msgid "By entering the literal column header name from the first row of the <emph>Database</emph> range, placing quotation marks around the header name. For example, “Distance to School”. If the string does not match one of the <emph>Database</emph> area’s column headings, Calc reports Err:504 (error in parameter list). You can also provide a reference to an arbitrary cell (not within the <emph>Database</emph> and <emph>SearchCriteria</emph> areas) that contains the required string."
+msgstr ""
+
+#. AUEy6
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id181615889841279\n"
+"help.text"
+msgid "The <emph>DatabaseField</emph> argument is optional for the DCOUNT and DCOUNTA functions but it is required for the other ten Database functions."
+msgstr ""
+
+#. Af4va
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id841615891322513\n"
+"help.text"
+msgid "<emph>SearchCriteria argument</emph>"
+msgstr ""
+
+#. 9eBBv
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id351615891337585\n"
+"help.text"
+msgid "<emph>SearchCriteria</emph> specifies the range of cells containing search criteria. Like <emph>Database</emph>, its first row is also field names, and subsequent rows are conditions for related fields. The <emph>Database</emph> and <emph>SearchCriteria</emph> areas need not be adjacent, or even on the same sheet."
+msgstr ""
+
+#. iuFJF
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id401615891342289\n"
+"help.text"
+msgid "One way of defining the range of cells is to enter the cell reference for the upper left-hand cell, followed by a colon (:), and then the lower right-hand cell reference. For example, A13:B14. The cell range may also be specified by passing the name of a defined named range or database range. If the name does not match the name of a defined range, Calc reports a #NAME? error."
+msgstr ""
+
+#. 2BE4W
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id861615891345281\n"
+"help.text"
+msgid "Err:504 (error in parameter list) may also be reported as a result of an invalid <emph>SearchCriteria</emph> argument."
+msgstr ""
+
+#. D6TBP
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id901615891349688\n"
+"help.text"
+msgid "The contents of the <emph>SearchCriteria</emph> area are described in more detail in the next section."
+msgstr ""
+
+#. vj96q
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"hd_id481615892281210\n"
+"help.text"
+msgid "Defining Search Criteria"
+msgstr ""
+
+#. zTQX5
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id691615892329680\n"
+"help.text"
+msgid "The number of columns occupied by the <emph>SearchCriteria</emph> area need not be the same as the width of the <emph>Database</emph> area. All headings that appear in the first row of <emph>SearchCriteria</emph> must be identical to headings in the first row of <emph>Database</emph>. However, not all headings in <emph>Database</emph> need appear in the first row of <emph>SearchCriteria</emph>, while a heading in <emph>Database</emph> can appear multiple times in the first row of <emph>SearchCriteria</emph>."
+msgstr ""
+
+#. AeGHn
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id541615892358897\n"
+"help.text"
+msgid "Search criteria are entered into the cells of the second and subsequent rows of the <emph>SearchCriteria</emph> area, below the row containing headings. Blank cells within the <emph>SearchCriteria</emph> area are ignored."
+msgstr ""
+
+#. MddCQ
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id151615892882441\n"
+"help.text"
+msgid "Create criteria in the cells of the <emph>SearchCriteria</emph> area using the comparison operators <, <=, =, <>, >=, and >. = is assumed if a cell is not empty but does not start with a comparison operator."
+msgstr ""
+
+#. 4NDMd
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id561615893059337\n"
+"help.text"
+msgid "If you write several criteria in one row, they are connected by AND. If you write several criteria in different rows, they are connected by OR."
+msgstr ""
+
+#. xymRZ
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id401615893095178\n"
+"help.text"
+msgid "Criteria can be created using wildcards, providing that wildcards have been enabled via the <menuitem>Enable wildcards in formulas</menuitem> option on the <link href=\"text/shared/optionen/01060500.xhp\" name=\"Spreadsheet - Calculate\"><switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - %PRODUCTNAME Calc - Calculate</menuitem></link> dialog. When interoperability with Microsoft Excel is important for your spreadsheet, this option should be enabled."
+msgstr ""
+
+#. darZG
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id921615893158111\n"
+"help.text"
+msgid "Even more powerful criteria can be created using regular expressions, providing that regular expressions have been enabled via the <menuitem>Enable regular expressions in formulas</menuitem> option on the <link href=\"text/shared/optionen/01060500.xhp\" name=\"Spreadsheet - Calculate\"><switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - %PRODUCTNAME Calc - Calculate</menuitem></link> dialog."
+msgstr ""
+
+#. YkSzL
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id881615893236930\n"
+"help.text"
+msgid "Another setting that affects how the search criteria are handled is the <menuitem>Search criteria = and <> must apply to whole cells</menuitem> option on the <link href=\"text/shared/optionen/01060500.xhp\" name=\"Spreadsheet - Calculate\"><switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - %PRODUCTNAME Calc - Calculate</menuitem></link> dialog. This option controls whether the search criteria you set for the Database functions must match the whole cell exactly. When interoperability with Microsoft Excel is important for your spreadsheet, this option should be enabled."
+msgstr ""
+
+#. 4sbmh
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"hd_id3150329\n"
+"help.text"
+msgid "Examples of Database Function Use"
+msgstr ""
+
+#. hyFuY
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id3153713\n"
+"help.text"
+msgid "The following table provides an example database table that is utilized to demonstrate how to use the functions in the Database category. The cell range A1:E10 contains fictitious information about the guests invited to Joe's birthday party. The following information is given for each guest - name, school grade, age in years, distance to school in meters, and weight in kilograms."
+msgstr ""
+
+#. Y2HFt
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id3152992\n"
+"help.text"
+msgid "<emph>Name</emph>"
+msgstr ""
+
+#. ChBDv
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id3155532\n"
+"help.text"
+msgid "<emph>Grade</emph>"
+msgstr ""
+
+#. mt5xM
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id3156448\n"
+"help.text"
+msgid "<emph>Age</emph>"
+msgstr ""
+
+#. Svp8Q
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id3154486\n"
+"help.text"
+msgid "<emph>Distance</emph>"
+msgstr ""
+
+#. BShmH
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id3152899\n"
+"help.text"
+msgid "<emph>Weight</emph>"
+msgstr ""
+
+#. FUGeA
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id3151240\n"
+"help.text"
+msgid "Andy"
+msgstr ""
+
+#. eQx2T
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id3152870\n"
+"help.text"
+msgid "Betty"
+msgstr ""
+
+#. HKBAA
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id3155596\n"
+"help.text"
+msgid "Charles"
+msgstr ""
+
+#. WCaYH
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id3147296\n"
+"help.text"
+msgid "Daniel"
+msgstr ""
+
+#. L3gMx
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id3150456\n"
+"help.text"
+msgid "Eva"
+msgstr ""
+
+#. bwR2v
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id3145826\n"
+"help.text"
+msgid "Frank"
+msgstr ""
+
+#. TwrgJ
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id3146137\n"
+"help.text"
+msgid "Greta"
+msgstr ""
+
+#. TmomQ
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id3153078\n"
+"help.text"
+msgid "Harry"
+msgstr ""
+
+#. qBHps
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id3148761\n"
+"help.text"
+msgid "Irene"
+msgstr ""
+
+#. UDuZW
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id221616245476190\n"
+"help.text"
+msgid "The following six examples use the database table above, combined with different search criteria areas."
+msgstr ""
+
+#. sPtvb
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"hd_id861616245631924\n"
+"help.text"
+msgid "Example 1"
+msgstr ""
+
+#. cEWAG
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id891616245640933\n"
+"help.text"
+msgid "<emph>Name</emph>"
+msgstr ""
+
+#. AsoFd
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id451616245640933\n"
+"help.text"
+msgid "<emph>Grade</emph>"
+msgstr ""
+
+#. Dw3a2
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id151616245818988\n"
+"help.text"
+msgid "<emph>Age</emph>"
+msgstr ""
+
+#. TdY66
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id481616245878460\n"
+"help.text"
+msgid "<emph>Distance</emph>"
+msgstr ""
+
+#. ggUUj
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id741616245891772\n"
+"help.text"
+msgid "<emph>Weight</emph>"
+msgstr ""
+
+#. 4SkNQ
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id451616246535763\n"
+"help.text"
+msgid "As in this simple example, it is sometimes desirable (but not essential) to place the search criteria area directly under the database table, with the columns of the two areas vertically aligned. Blank entries in the search criteria area are ignored. With the above example database table and this search criteria area, insert the formula <item type=\"input\">=DCOUNT(A1:E10;;A12:E14)</item> into an empty cell elsewhere in the sheet to count how many of Joe’s guests travel further than 600 meters to school. The value 5 is returned (counting Betty, Daniel, Eva, Harry, and Irene)."
+msgstr ""
+
+#. bBHFr
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id731616246561901\n"
+"help.text"
+msgid "Note also that the formula <item type=\"input\">=DCOUNT(A1:E10;;D12:D13)</item> returns exactly the same value, demonstrating that it is only necessary for the search criteria area to contain relevant column headings."
+msgstr ""
+
+#. VyrBb
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"hd_id191616246773750\n"
+"help.text"
+msgid "Example 2"
+msgstr ""
+
+#. V4PCC
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id71616246804093\n"
+"help.text"
+msgid "<emph>Age</emph>"
+msgstr ""
+
+#. KjH3p
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id41616250394431\n"
+"help.text"
+msgid "<emph>Grade</emph>"
+msgstr ""
+
+#. hfPeb
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id361616251794063\n"
+"help.text"
+msgid "In this example the search criteria area contains only two headings and these are not vertically aligned with the corresponding headings in the example database table. Since there are two conditions in the same row, these are connected by AND. With the above example database table and this search criteria area, insert the formula <item type=\"input\">=DCOUNT(A1:E10;;B12:C13)</item> into an empty cell elsewhere in the sheet to count how many of Joe’s guests are in grade 2 and greater than 7 years old. The value 2 is returned (counting Eva and Irene)."
+msgstr ""
+
+#. 6Tfyk
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"hd_id221616251986854\n"
+"help.text"
+msgid "Example 3"
+msgstr ""
+
+#. kAXbc
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id141616251871487\n"
+"help.text"
+msgid "<emph>Age</emph>"
+msgstr ""
+
+#. CQA2G
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id351616252313215\n"
+"help.text"
+msgid "In this example the search criteria area contains only one heading. Since there are two conditions in consecutive rows, these are connected by OR. With the above example database table and this search criteria area, insert the formula <item type=\"input\">=DCOUNT(A1:E10;;B12:B14)</item> into an empty cell elsewhere in the sheet to count how many of Joe’s guests are either 9 or 10 years old. The value 4 is returned (counting Andy, Betty, Charles, and Harry)."
+msgstr ""
+
+#. GFADM
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"hd_id71616252395407\n"
+"help.text"
+msgid "Example 4"
+msgstr ""
+
+#. kNw3F
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id451616252413665\n"
+"help.text"
+msgid "<emph>Age</emph>"
+msgstr ""
+
+#. QPqDb
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id431616252540783\n"
+"help.text"
+msgid "<emph>Age</emph>"
+msgstr ""
+
+#. 6Dk9D
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id991616252981928\n"
+"help.text"
+msgid "In this example the search criteria area contains two occurrences of the same heading. Since there are two conditions in the same row, these are connected by AND. With the above example database table and this search criteria area, insert the formula <item type=\"input\">=DCOUNT(A1:E10;;B12:C13)</item> into an empty cell elsewhere in the sheet to count how many of Joe’s guests are aged between 8 and 10 (inclusive). The value 6 is returned (counting Andy, Betty, Charles, Eva, Harry, and Irene)."
+msgstr ""
+
+#. vgeRe
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"hd_id561616253067881\n"
+"help.text"
+msgid "Example 5"
+msgstr ""
+
+#. yvXQo
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id301616253073598\n"
+"help.text"
+msgid "<emph>Name</emph>"
+msgstr ""
+
+#. qBB4C
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id91616253394127\n"
+"help.text"
+msgid "This simple example shows the use of wildcards. For this example to work as intended, select to enable wildcards at <link href=\"text/shared/optionen/01060500.xhp\" name=\"Spreadsheet - Calculate\"><switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - %PRODUCTNAME Calc - Calculate</menuitem></link>. With the above example database table and this search criteria area, insert the formula <item type=\"input\">=DCOUNT(A1:E10;;A12:A13)</item> into an empty cell elsewhere in the sheet to count how many of Joe’s guests have names that begin with the letter “F”. The value 1 is returned (counting Frank)."
+msgstr ""
+
+#. BAnVJ
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"hd_id121616253593255\n"
+"help.text"
+msgid "Example 6"
+msgstr ""
+
+#. 3RcET
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id731616253599063\n"
+"help.text"
+msgid "<emph>Name</emph>"
+msgstr ""
+
+#. NyqFV
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id631616253692350\n"
+"help.text"
+msgid "This simple example shows the use of regular expressions. For this example to work as intended, select to enable regular expressions at <link href=\"text/shared/optionen/01060500.xhp\" name=\"Spreadsheet - Calculate\"><switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - %PRODUCTNAME Calc - Calculate</menuitem></link>. With the above example database table and this search criteria area, insert the formula <item type=\"input\">=DCOUNT(A1:E10;;A12:A13)</item> into an empty cell elsewhere in the sheet to count how many of Joe’s guests have names that begin with the letters “A”, “B”, or “C”. The value 3 is returned (counting Andy, Betty, and Charles)."
+msgstr ""
+
+#. KBZPC
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"bm_id3150882\n"
+"help.text"
+msgid "<bookmark_value>DCOUNT function</bookmark_value><bookmark_value>counting rows;with numeric values</bookmark_value>"
+msgstr ""
+
+#. DLGGD
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"hd_id3150882\n"
+"help.text"
+msgid "DCOUNT"
+msgstr ""
+
+#. RAGuV
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id3156133\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_DBANZAHL\">DCOUNT counts the number of cells (fields) of the specified column that contain numeric values, for all rows (database records) that match the specified search criteria.</ahelp> However, if no column is specified, DCOUNT returns the count of all records that match the specified search criteria irrespective of their contents."
+msgstr ""
+
+#. EetM7
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id3153218\n"
+"help.text"
+msgid "DCOUNT(Database; [DatabaseField]; SearchCriteria)"
+msgstr ""
+
+#. KYvAJ
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id3153623\n"
+"help.text"
+msgid "The example database table giving information about the guests invited to Joe’s birthday party (described above) should occupy cells A1:E10. The content of cells A12:E12 should be identical to the header labels for the database table in cells A1:E1. Make sure that cells A13:E13 are blank, except for cell D13 which should contain \">600\" (this search criterion will match records in the database table that have a value greater than 600 in the Distance column)."
+msgstr ""
+
+#. kVciZ
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id441616368480646\n"
+"help.text"
+msgid "Insert the formula <input>=DCOUNT(A1:E10;; A12:E13)</input> into an empty cell elsewhere in the sheet to calculate how many of Joe’s party guests travel further than 600 meters to school. The value 5 is returned."
+msgstr ""
+
+#. UZFcp
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id361616368488119\n"
+"help.text"
+msgid "The same result is obtained if you use the formula <input>=DCOUNT(A1:E10; \"Distance\"; A12:E13)</input>, because all entries in the Distance column are numeric. However, if you use the formula <input>=DCOUNT(A1:E10; \"Name\"; A12:E13)</input>, the value 0 is returned because all entries in the Name column are non-numeric."
+msgstr ""
+
+#. tGFyD
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"bm_id3156123\n"
+"help.text"
+msgid "<bookmark_value>DCOUNTA function</bookmark_value><bookmark_value>records;counting in Calc databases</bookmark_value><bookmark_value>counting rows;with numeric or alphanumeric values</bookmark_value>"
+msgstr ""
+
+#. aJdyL
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"hd_id3156123\n"
+"help.text"
+msgid "DCOUNTA"
+msgstr ""
+
+#. T7ebL
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id3156110\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_DBANZAHL2\">DCOUNTA counts the number of cells (fields) of the specified column that are not blank, for all rows (database records) that match the specified search criteria.</ahelp> Blank cells of the specified column are not counted. However, if no column is specified, DCOUNTA returns the count of all records that match the specified search criteria irrespective of their contents."
+msgstr ""
+
+#. CxWGV
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id3146893\n"
+"help.text"
+msgid "DCOUNTA(Database; [DatabaseField]; SearchCriteria)"
+msgstr ""
+
+#. dLvi2
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id3153982\n"
+"help.text"
+msgid "The example database table giving information about the guests invited to Joe’s birthday party (described above) should occupy cells A1:E10. The content of cells A12:E12 should be identical to the header labels for the database table in cells A1:E1. Make sure that cells A13:E13 are blank, except for cell D13 which should contain \">600\" (this search criterion will match records in the database table that have a value greater than 600 in the Distance column)."
+msgstr ""
+
+#. SSD7D
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id61616368616093\n"
+"help.text"
+msgid "Insert the formula <input>=DCOUNTA(A1:E10;; A12:E13)</input> into an empty cell elsewhere in the sheet to calculate how many of Joe’s party guests travel further than 600 meters to school. The value 5 is returned."
+msgstr ""
+
+#. WyEGc
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id841616368623207\n"
+"help.text"
+msgid "The same result is obtained if you use the formula <input>=DCOUNTA(A1:E10; \"Distance\"; A12:E13)</input> or the formula <input>=DCOUNTA(A1:E10; \"Name\"; A12:E13)</input>. The latter case reflects that in contrast to DCOUNT, DCOUNTA counts both numeric and alphanumeric values in the column indicated by the <emph>DatabaseField</emph> argument."
+msgstr ""
+
+#. GasLC
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"bm_id3147256\n"
+"help.text"
+msgid "<bookmark_value>DGET function</bookmark_value><bookmark_value>cell contents;searching in Calc databases</bookmark_value><bookmark_value>searching;cell contents in Calc databases</bookmark_value>"
+msgstr ""
+
+#. wj7ck
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"hd_id3147256\n"
+"help.text"
+msgid "DGET"
+msgstr ""
+
+#. WwRCV
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id3152801\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_DBAUSZUG\">DGET returns the contents of the cell (field) of the specified column, for the single row (database record) that matches the specified search criteria.</ahelp>"
+msgstr ""
+
+#. GxBWY
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id171616180137385\n"
+"help.text"
+msgid "Calc reports Err:502 (invalid argument) if multiple matches are found, or a #VALUE! error (wrong data type) if no matches are found. A #VALUE! error is also reported if a single match is found but the relevant cell is empty."
+msgstr ""
+
+#. oFi8J
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id3154696\n"
+"help.text"
+msgid "DGET(Database; DatabaseField; SearchCriteria)"
+msgstr ""
+
+#. G2EsJ
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id3155388\n"
+"help.text"
+msgid "The example database table giving information about the guests invited to Joe’s birthday party (described above) should occupy cells A1:E10. The content of cells A12:E12 should be identical to the header labels for the database table in cells A1:E1. Make sure that cells A13:E13 are blank, except for cell C13 which should contain \"11\" (this search criterion will match records in the database table that have a value of 11 in the Age column)."
+msgstr ""
+
+#. A942C
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id3153096\n"
+"help.text"
+msgid "Insert the formula <input>=DGET(A1:E10; \"Name\"; A12:E13)</input> into an empty cell elsewhere in the sheet to find the name of Joe’s party guest who is age 11. The name Daniel is returned."
+msgstr ""
+
+#. 6AKoj
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id3150524\n"
+"help.text"
+msgid "If you change the value in cell C13 to “10”, then the formula <input>=DGET(A1:E10; \"Name\"; A12:E13)</input> returns an invalid argument error (Err:502). The reflects that multiple records match the specified criterion (both Betty and Charles are age 10)."
+msgstr ""
+
+#. rB9Ek
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"bm_id3149766\n"
+"help.text"
+msgid "<bookmark_value>DMAX function</bookmark_value><bookmark_value>maximum values in Calc databases</bookmark_value><bookmark_value>searching;maximum values in columns</bookmark_value>"
+msgstr ""
+
+#. MDBf2
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"hd_id3149766\n"
+"help.text"
+msgid "DMAX"
+msgstr ""
+
+#. 9ek2J
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id3154903\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_DBMAX\">DMAX calculates the maximum value across the cells (fields) of the specified column that contain numeric values, for all rows (database records) that match the specified search criteria.</ahelp> Blank cells or cells containing non-numeric characters are not included."
+msgstr ""
+
+#. pUGwd
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id51616180409281\n"
+"help.text"
+msgid "Returns 0 if no matches are found, or if there are no non-zero numeric values in the cells of the specified column for the matching records."
+msgstr ""
+
+#. ho2GW
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id3159157\n"
+"help.text"
+msgid "DMAX(Database; DatabaseField; SearchCriteria)"
+msgstr ""
+
+#. S57iG
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id3148442\n"
+"help.text"
+msgid "The example database table giving information about the guests invited to Joe’s birthday party (described above) should occupy cells A1:E10. The content of cells A12:E12 should be identical to the header labels for the database table in cells A1:E1. Make sure that cells A13:E13 are blank, except for cell D13 which should contain \">0\" (this search criterion is intended to match all records in the database table)."
+msgstr ""
+
+#. Mqocw
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id3148804\n"
+"help.text"
+msgid "Insert the formula <input>=DMAX(A1:E10; \"Distance\"; A12:E13)</input> into an empty cell elsewhere in the sheet to find the maximum distance in meters that any of Joe’s party guests travel to school. The value 1200 is returned."
+msgstr ""
+
+#. CnaXx
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"bm_id3159141\n"
+"help.text"
+msgid "<bookmark_value>DMIN function</bookmark_value><bookmark_value>minimum values in Calc databases</bookmark_value><bookmark_value>searching;minimum values in columns</bookmark_value>"
+msgstr ""
+
+#. iGV4a
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"hd_id3159141\n"
+"help.text"
+msgid "DMIN"
+msgstr ""
+
+#. kv5Gb
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id3154261\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_DBMIN\">DMIN calculates the minimum value across the cells (fields) of the specified column that contain numeric values, for all rows (database records) that match the specified search criteria.</ahelp> Blank cells or cells containing non-numeric characters are not included."
+msgstr ""
+
+#. yYJTa
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id901616180605426\n"
+"help.text"
+msgid "Returns 0 if no matches are found, or if there are no non-zero numeric values in the cells of the specified column for the matching records."
+msgstr ""
+
+#. QxBsV
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id3148479\n"
+"help.text"
+msgid "DMIN(Database; DatabaseField; SearchCriteria)"
+msgstr ""
+
+#. p4YQB
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id3148925\n"
+"help.text"
+msgid "The example database table giving information about the guests invited to Joe’s birthday party (described above) should occupy cells A1:E10. The content of cells A12:E12 should be identical to the header labels for the database table in cells A1:E1. Make sure that cells A13:E13 are blank, except for cell D13 which should contain \">0\" (this search criterion is intended to match all records in the database table)."
+msgstr ""
+
+#. LrfjC
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id3149161\n"
+"help.text"
+msgid "Insert the formula <input>=DMIN(A1:E10; \"Distance\"; A12:E13)</input> into an empty cell elsewhere in the sheet to find the minimum distance in meters that any of Joe’s party guests travel to school. The value 150 is returned."
+msgstr ""
+
+#. XEu9j
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"bm_id3154274\n"
+"help.text"
+msgid "<bookmark_value>DAVERAGE function</bookmark_value><bookmark_value>averages; in Calc databases</bookmark_value><bookmark_value>calculating;averages in Calc databases</bookmark_value>"
+msgstr ""
+
+#. dQciw
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"hd_id3154274\n"
+"help.text"
+msgid "DAVERAGE"
+msgstr ""
+
+#. Y7wdv
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id3166453\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_DBMITTELWERT\">DAVERAGE calculates the average of the numeric values in the cells (fields) of the specified column, for all rows (database records) that match the specified search criteria.</ahelp> Non-numeric values in those cells are ignored."
+msgstr ""
+
+#. 87qxe
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id31615978739452\n"
+"help.text"
+msgid "Returns a #DIV/0! error if no records match the specified search criteria, or if there are no numeric values in the cells of the specified column for the matching records."
+msgstr ""
+
+#. PPkBD
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id3150710\n"
+"help.text"
+msgid "DAVERAGE(Database; DatabaseField; SearchCriteria)"
+msgstr ""
+
+#. PcjTP
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id3149104\n"
+"help.text"
+msgid "The example database table giving information about the guests invited to Joe’s birthday party (described above) should occupy cells A1:E10. The content of cells A12:E12 should be identical to the header labels for the database table in cells A1:E1. Make sure that cells A13:E13 are blank, except for cell D13 which should contain \">0\" (this search criterion is intended to match all records in the database table)."
+msgstr ""
+
+#. CjTGB
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id201616368312277\n"
+"help.text"
+msgid "Insert the formula <input>=DAVERAGE(A1:E10; \"Distance\"; A12:E13)</input> into an empty cell elsewhere in the sheet to calculate the average distance in meters travelled to school by Joe’s party guests. The value 666.67 is returned."
+msgstr ""
+
+#. 6fcFr
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"bm_id3159269\n"
+"help.text"
+msgid "<bookmark_value>DPRODUCT function</bookmark_value><bookmark_value>multiplying;cell contents in Calc databases</bookmark_value>"
+msgstr ""
+
+#. gvW9Q
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"hd_id3159269\n"
+"help.text"
+msgid "DPRODUCT"
+msgstr ""
+
+#. oJApo
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id3152879\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_DBPRODUKT\">DPRODUCT calculates the product of all numeric values in the cells (fields) of the specified column, for all rows (database records) that match the specified search criteria.</ahelp> Blank cells or cells containing non-numeric characters are not included."
+msgstr ""
+
+#. oUsZD
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id741616180868336\n"
+"help.text"
+msgid "Returns 0 if no matches are found, or if there are no numeric values in the cells of the specified column for the matching records."
+msgstr ""
+
+#. PgAsj
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id3154854\n"
+"help.text"
+msgid "DPRODUCT(Database; DatabaseField; SearchCriteria)"
+msgstr ""
+
+#. oGQtm
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id3148986\n"
+"help.text"
+msgid "The example database table giving information about the guests invited to Joe’s birthday party (described above) should occupy cells A1:E10. The content of cells A12:E12 should be identical to the header labels for the database table in cells A1:E1. Make sure that cells A13:E13 are blank, except for cell C13 which should contain \">0\" (this search criterion is intended to match all records in the database table)."
+msgstr ""
+
+#. iaoUA
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id91616368981807\n"
+"help.text"
+msgid "Insert the formula <input>=DPRODUCT(A1:E10; \"Age\"; A12:E13)</input> into an empty cell elsewhere in the sheet to calculate the product of the ages in years of Joe’s party guests. The value 279417600 is returned."
+msgstr ""
+
+#. KsVCV
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"bm_id3148462\n"
+"help.text"
+msgid "<bookmark_value>DSTDEV function</bookmark_value><bookmark_value>standard deviations in databases;based on a sample</bookmark_value>"
+msgstr ""
+
+#. EvGNP
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"hd_id3148462\n"
+"help.text"
+msgid "DSTDEV"
+msgstr ""
+
+#. 56CsG
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id3154605\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_DBSTDABW\">DSTDEV calculates the sample standard deviation based on the numeric values in the cells (fields) of the specified column, for all rows (database records) that match the specified search criteria.</ahelp> Non-numeric values are ignored."
+msgstr ""
+
+#. RACag
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id121616181037440\n"
+"help.text"
+msgid "Returns a #NUM! error if exactly one record matches the specified search criteria, or if there is only one numeric value in the cells of the specified column for the matching records."
+msgstr ""
+
+#. r6onB
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id931616181041535\n"
+"help.text"
+msgid "Returns 0 if no matches are found, or if there are no numeric values in the cells of the specified column for the matching records."
+msgstr ""
+
+#. GgdKD
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id3148661\n"
+"help.text"
+msgid "DSTDEV(Database; DatabaseField; SearchCriteria)"
+msgstr ""
+
+#. q4kzs
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id3149934\n"
+"help.text"
+msgid "The example database table giving information about the guests invited to Joe’s birthday party (described above) should occupy cells A1:E10. The content of cells A12:E12 should be identical to the header labels for the database table in cells A1:E1. Make sure that cells A13:D13 are blank and that cell E13 contains \">0\" (this search criterion is intended to match all records in the database table)."
+msgstr ""
+
+#. SXqfH
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id3150630\n"
+"help.text"
+msgid "Insert the formula <input>=DSTDEV(A1:E10; \"Weight\"; A12:E13)</input> into an empty cell elsewhere in the sheet to calculate the sample standard deviation of the weights in kg of Joe’s party guests. The value 5.5 is returned."
+msgstr ""
+
+#. VRXXy
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"bm_id3150429\n"
+"help.text"
+msgid "<bookmark_value>DSTDEVP function</bookmark_value><bookmark_value>standard deviations in databases;based on populations</bookmark_value>"
+msgstr ""
+
+#. FpESx
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"hd_id3150429\n"
+"help.text"
+msgid "DSTDEVP"
+msgstr ""
+
+#. Cfkn3
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id3145598\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_DBSTDABWN\">DSTDEVP calculates the population standard deviation based on the numeric values in the cells (fields) of the specified column, for all rows (database records) that match the specified search criteria.</ahelp> Non-numeric values are ignored."
+msgstr ""
+
+#. TjThw
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id541616181205698\n"
+"help.text"
+msgid "Returns a #NUM! error if no records match the specified search criteria, or if there are no numeric values in the cells of the specified column for the matching records."
+msgstr ""
+
+#. uGaWp
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id3149484\n"
+"help.text"
+msgid "DSTDEVP(Database; DatabaseField; SearchCriteria)"
+msgstr ""
+
+#. jm7Bx
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id3155431\n"
+"help.text"
+msgid "The example database table giving information about the guests invited to Joe’s birthday party (described above) should occupy cells A1:E10. The content of cells A12:E12 should be identical to the header labels for the database table in cells A1:E1. Make sure that cells A13:D13 are blank and that cell E13 contains \">0\" (this search criterion is intended to match all records in the database table)."
+msgstr ""
+
+#. 6eisL
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id3148411\n"
+"help.text"
+msgid "Insert the formula <input>=DSTDEVP(A1:E10; \"Weight\"; A12:E13)</input> into an empty cell elsewhere in the sheet to calculate the population standard deviation of the weights in kg of Joe’s party guests. The value 5.18545 is returned."
+msgstr ""
+
+#. Z2CTY
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"bm_id3154794\n"
+"help.text"
+msgid "<bookmark_value>DSUM function</bookmark_value><bookmark_value>calculating;sums in Calc databases</bookmark_value><bookmark_value>sums;cells in Calc databases</bookmark_value>"
+msgstr ""
+
+#. ybMg9
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"hd_id3154794\n"
+"help.text"
+msgid "DSUM"
+msgstr ""
+
+#. pqV9N
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id3149591\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_DBSUMME\">DSUM calculates the sum of all numeric values in the cells (fields) of the specified column, for all rows (database records) that match the specified search criteria.</ahelp> Blank cells or cells containing non-numeric characters are not included."
+msgstr ""
+
+#. PEAvG
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id691616181332088\n"
+"help.text"
+msgid "Returns 0 if no matches are found, or if there are no numeric values in the cells of the specified column for the matching records."
+msgstr ""
+
+#. LD8jB
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id3150989\n"
+"help.text"
+msgid "DSUM(Database; DatabaseField; SearchCriteria)"
+msgstr ""
+
+#. G9FsG
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id3152766\n"
+"help.text"
+msgid "The example database table giving information about the guests invited to Joe’s birthday party (described above) should occupy cells A1:E10. The content of cells A12:E12 should be identical to the header labels for the database table in cells A1:E1. Make sure that cells A13:E13 are blank, except for cell D13 which should contain \">0\" (this search criterion is intended to match all records in the database table)."
+msgstr ""
+
+#. riVB4
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id3151312\n"
+"help.text"
+msgid "Insert the formula <input>=DSUM(A1:E10; \"Distance\"; A12:E13)</input> into an empty cell elsewhere in the sheet to find the total distance in meters that all of Joe’s party guests travel to school. The value 6000 is returned."
+msgstr ""
+
+#. YBFb7
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"bm_id3155614\n"
+"help.text"
+msgid "<bookmark_value>DVAR function</bookmark_value><bookmark_value>variances;based on samples</bookmark_value>"
+msgstr ""
+
+#. G6ZBW
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"hd_id3155614\n"
+"help.text"
+msgid "DVAR"
+msgstr ""
+
+#. QN7LU
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id3154418\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_DBVARIANZ\">DVAR calculates the sample variance based on the numeric values in the cells (fields) of the specified column, for all rows (database records) that match the specified search criteria.</ahelp> Non-numeric values are ignored."
+msgstr ""
+
+#. yytCQ
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id301616181465164\n"
+"help.text"
+msgid "Returns a #NUM! error if exactly one record matches the specified search criteria, or if there is only one numeric value in the cells of the specified column for the matching records."
+msgstr ""
+
+#. gW4LZ
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id741616181469136\n"
+"help.text"
+msgid "Returns 0 if no matches are found, or if there are no numeric values in the cells of the specified column for the matching records."
+msgstr ""
+
+#. hLSuf
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id3156138\n"
+"help.text"
+msgid "DVAR(Database; DatabaseField; SearchCriteria)"
+msgstr ""
+
+#. TyAAP
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id3153701\n"
+"help.text"
+msgid "The example database table giving information about the guests invited to Joe’s birthday party (described above) should occupy cells A1:E10. The content of cells A12:E12 should be identical to the header labels for the database table in cells A1:E1. Make sure that cells A13:E13 are blank, except for cell D13 which should contain \">0\" (this search criterion is intended to match all records in the database table)."
+msgstr ""
+
+#. bRDWF
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id3153676\n"
+"help.text"
+msgid "Insert the formula <input>=DVAR(A1:E10; \"Distance\"; A12:E13)</input> into an empty cell elsewhere in the sheet to find the sample variance of the distances in meters that Joe’s party guests travel to school. The value 193125 is returned."
+msgstr ""
+
+#. 7FWS4
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"bm_id3153880\n"
+"help.text"
+msgid "<bookmark_value>DVARP function</bookmark_value><bookmark_value>variances;based on populations</bookmark_value>"
+msgstr ""
+
+#. XpcPC
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"hd_id3153880\n"
+"help.text"
+msgid "DVARP"
+msgstr ""
+
+#. nfgrg
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id3155119\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_DBVARIANZEN\">DVARP calculates the population variation based on the numeric values in the cells (fields) of the specified column, for all rows (database records) that match the specified search criteria.</ahelp> Non-numeric values are ignored."
+msgstr ""
+
+#. ERRmG
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id301616181648263\n"
+"help.text"
+msgid "Returns a #NUM! error if no records match the specified search criteria, or if there are no numeric values in the cells of the specified column for the matching records."
+msgstr ""
+
+#. BygUf
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id3153776\n"
+"help.text"
+msgid "DVARP(Database; DatabaseField; SearchCriteria)"
+msgstr ""
+
+#. STcMa
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id3147099\n"
+"help.text"
+msgid "The example database table giving information about the guests invited to Joe’s birthday party (described above) should occupy cells A1:E10. The content of cells A12:E12 should be identical to the header labels for the database table in cells A1:E1. Make sure that cells A13:E13 are blank, except for cell D13 which should contain \">0\" (this search criterion is intended to match all records in the database table)."
+msgstr ""
+
+#. 8puR2
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id3147322\n"
+"help.text"
+msgid "Insert the formula <input>=DVARP(A1:E10; \"Distance\"; A12:E13)</input> into an empty cell elsewhere in the sheet to find the population variance of the distances in meters that Joe’s party guests travel to school. The value 171666.67 is returned."
+msgstr ""
+
+#. n99gx
+#: 04060102.xhp
+msgctxt ""
+"04060102.xhp\n"
+"tit\n"
+"help.text"
+msgid "Date & Time Functions"
+msgstr ""
+
+#. GE8gg
+#: 04060102.xhp
+msgctxt ""
+"04060102.xhp\n"
+"bm_id3154536\n"
+"help.text"
+msgid "<bookmark_value>date and time functions</bookmark_value> <bookmark_value>functions; date & time</bookmark_value> <bookmark_value>Function Wizard; date & time</bookmark_value>"
+msgstr ""
+
+#. 4twnp
+#: 04060102.xhp
+msgctxt ""
+"04060102.xhp\n"
+"hd_id3154536\n"
+"help.text"
+msgid "<variable id=\"h1\">Date & Time Functions</variable>"
+msgstr ""
+
+#. MJ2GD
+#: 04060102.xhp
+msgctxt ""
+"04060102.xhp\n"
+"par_id3153973\n"
+"help.text"
+msgid "<variable id=\"datumzeittext\">These spreadsheet functions are used for inserting and editing dates and times. </variable>"
+msgstr ""
+
+#. gGXZq
+#: 04060102.xhp
+msgctxt ""
+"04060102.xhp\n"
+"par_idN10600\n"
+"help.text"
+msgid "The functions whose names end with _ADD or _EXCEL2003 return the same results as the corresponding Microsoft Excel 2003 functions without the suffix. Use the functions without suffix to get results based on international standards."
+msgstr ""
+
+#. 9PnaC
+#: 04060102.xhp
+msgctxt ""
+"04060102.xhp\n"
+"par_id3150437\n"
+"help.text"
+msgid "$[officename] internally handles a date/time value as a numerical value. If you assign the numbering format \"Number\" to a date or time value, it is converted to a number. For example, 01/01/2000 12:00 PM, converts to 36526.5. The value preceding the decimal point corresponds to the date; the value following the decimal point corresponds to the time. If you do not want to see this type of numerical date or time representation, change the number format (date or time) accordingly. To do this, select the cell containing the date or time value, call its context menu and select <emph>Format Cells</emph>. The <emph>Numbers</emph> tab page contains the functions for defining the number format."
+msgstr ""
+
+#. s3MzL
+#: 04060102.xhp
+msgctxt ""
+"04060102.xhp\n"
+"hd_id2408825\n"
+"help.text"
+msgid "Date base for day zero"
+msgstr ""
+
+#. AVnzn
+#: 04060102.xhp
+msgctxt ""
+"04060102.xhp\n"
+"par_id9988402\n"
+"help.text"
+msgid "Dates are calculated as offsets from a starting day zero. You can set the day zero to be one of the following:"
+msgstr ""
+
+#. kpFTE
+#: 04060102.xhp
+msgctxt ""
+"04060102.xhp\n"
+"par_id6401257\n"
+"help.text"
+msgid "Date base"
+msgstr ""
+
+#. BH8uG
+#: 04060102.xhp
+msgctxt ""
+"04060102.xhp\n"
+"par_id5841242\n"
+"help.text"
+msgid "Use"
+msgstr ""
+
+#. 7EGHq
+#: 04060102.xhp
+msgctxt ""
+"04060102.xhp\n"
+"par_id6794030\n"
+"help.text"
+msgid "'12/30/1899'"
+msgstr ""
+
+#. N58Sd
+#: 04060102.xhp
+msgctxt ""
+"04060102.xhp\n"
+"par_id7096774\n"
+"help.text"
+msgid "(default)"
+msgstr ""
+
+#. y2CRG
+#: 04060102.xhp
+msgctxt ""
+"04060102.xhp\n"
+"par_id5699942\n"
+"help.text"
+msgid "'01/01/1900'"
+msgstr ""
+
+#. QMSyz
+#: 04060102.xhp
+msgctxt ""
+"04060102.xhp\n"
+"par_id6420484\n"
+"help.text"
+msgid "(used in former StarCalc 1.0)"
+msgstr ""
+
+#. jsZZc
+#: 04060102.xhp
+msgctxt ""
+"04060102.xhp\n"
+"par_id6986602\n"
+"help.text"
+msgid "'01/01/1904'"
+msgstr ""
+
+#. tCGEK
+#: 04060102.xhp
+msgctxt ""
+"04060102.xhp\n"
+"par_id616779\n"
+"help.text"
+msgid "(used in Apple software)"
+msgstr ""
+
+#. e5vmS
+#: 04060102.xhp
+msgctxt ""
+"04060102.xhp\n"
+"par_id791039\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 - Calculate</emph> to select the date base."
+msgstr ""
+
+#. AFp6F
+#: 04060102.xhp
+msgctxt ""
+"04060102.xhp\n"
+"par_id1953489\n"
+"help.text"
+msgid "When you copy and paste cells containing date values between different spreadsheets, both spreadsheet documents must be set to the same date base. If date bases differ, the displayed date values will change!"
+msgstr ""
+
+#. JwEEw
+#: 04060102.xhp
+msgctxt ""
+"04060102.xhp\n"
+"hd_id757469\n"
+"help.text"
+msgid "Two digits years"
+msgstr ""
+
+#. k5nJZ
+#: 04060102.xhp
+msgctxt ""
+"04060102.xhp\n"
+"par_id3149720\n"
+"help.text"
+msgid "In <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - General</emph> you find the area <emph>Year (two digits)</emph>. This sets the period for which two-digit information applies. Note that changes made here have an effect on some of the following functions."
+msgstr ""
+
+#. q4au5
+#: 04060102.xhp
+msgctxt ""
+"04060102.xhp\n"
+"par_id3150654\n"
+"help.text"
+msgid "When entering dates as part of formulas, slashes or dashes used as date separators are interpreted as arithmetic operators. Therefore, dates entered in this format are not recognized as dates and result in erroneous calculations. To keep dates from being interpreted as parts of formulas use the DATE function, for example, DATE(1954;7;20), or place the date in quotation marks and use the ISO 8601 notation, for example, \"1954-07-20\". Avoid using locale dependent date formats such as \"07/20/54\", the calculation may produce errors if the document is loaded under different locale settings."
+msgstr ""
+
+#. ABYsg
+#: 04060102.xhp
+msgctxt ""
+"04060102.xhp\n"
+"par_id571535118151091\n"
+"help.text"
+msgid "Unambiguous conversion is possible for ISO 8601 dates and times in their extended formats with separators. If a <emph>#VALUE!</emph> error occurs, then unselect <emph>Generate #VALUE! error</emph> in <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline> <emph>- %PRODUCTNAME Calc - Formula</emph>, button <emph>Details...</emph> in section \"Detailed Calculation Settings\", <emph>Conversion from text to number</emph> list box."
+msgstr ""
+
+#. sJKAX
+#: 04060102.xhp
+msgctxt ""
+"04060102.xhp\n"
+"par_id651547654187646\n"
+"help.text"
+msgid "Time zone information is not used in Date and Time functions and cells."
+msgstr ""
+
+#. SJFDF
+#: 04060102.xhp
+msgctxt ""
+"04060102.xhp\n"
+"par_idN1067A\n"
+"help.text"
+msgid "Functions"
+msgstr ""
+
+#. 6Yozj
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"tit\n"
+"help.text"
+msgid "Financial Functions Part One"
+msgstr ""
+
+#. rSCCE
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"bm_id3143284\n"
+"help.text"
+msgid "<bookmark_value>financial functions</bookmark_value> <bookmark_value>functions; financial functions</bookmark_value> <bookmark_value>Function Wizard; financial</bookmark_value> <bookmark_value>amortizations, see also depreciations</bookmark_value>"
+msgstr ""
+
+#. 3uCaF
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"hd_id3143284\n"
+"help.text"
+msgid "Financial Functions Part One"
+msgstr ""
+
+#. Y4bGt
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3149095\n"
+"help.text"
+msgid "<variable id=\"finanztext\">This category contains the mathematical finance functions of <item type=\"productname\">%PRODUCTNAME</item> Calc.</variable>"
+msgstr ""
+
+#. BdkzB
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"bm_id3153366\n"
+"help.text"
+msgid "<bookmark_value>AMORDEGRC function</bookmark_value> <bookmark_value>depreciations;degressive amortizations</bookmark_value>"
+msgstr ""
+
+#. ctebi
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"hd_id3153366\n"
+"help.text"
+msgid "AMORDEGRC"
+msgstr ""
+
+#. fBvm7
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3147434\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 ""
+
+#. G5ero
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3147427\n"
+"help.text"
+msgid "AMORDEGRC(Cost; DatePurchased; FirstPeriod; Salvage; Period; Rate [; Basis])"
+msgstr ""
+
+#. bA2pT
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3147125\n"
+"help.text"
+msgid "<emph>Cost</emph> is the acquisition costs."
+msgstr ""
+
+#. TASiZ
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3151074\n"
+"help.text"
+msgid "<emph>DatePurchased</emph> is the date of acquisition."
+msgstr ""
+
+#. SUg7W
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3144765\n"
+"help.text"
+msgid "<emph>FirstPeriod </emph>is the end date of the first settlement period."
+msgstr ""
+
+#. DPvPK
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3156286\n"
+"help.text"
+msgid "<emph>Salvage</emph> is the salvage value of the capital asset at the end of the depreciable life."
+msgstr ""
+
+#. r4vFE
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3153415\n"
+"help.text"
+msgid "<emph>Period</emph> is the settlement period to be considered."
+msgstr ""
+
+#. hopkA
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3155064\n"
+"help.text"
+msgid "<emph>Rate</emph> is the rate of depreciation."
+msgstr ""
+
+#. TzEBm
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id421612299085248\n"
+"help.text"
+msgid "An asset was acquired on 2020-02-01 at a cost of 2000 currency units. The end date of the first settlement period was 2020-12-31. The salvage value of the asset at the end of its depreciable life will be 10 currency units. The rate of depreciation is 0.1 (10%) and the year is calculated using the US method (Basis 0). Assuming degressive depreciation, what is the amount of depreciation in the fourth depreciation period?"
+msgstr ""
+
+#. qyD4t
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id901612299089478\n"
+"help.text"
+msgid "<input>=AMORDEGRC(2000; \"2020-02-01\"; \"2020-12-31\"; 10; 4; 0.1; 0)</input> returns a depreciation amount of 163 currency units."
+msgstr ""
+
+#. aG2TT
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id851616615176815\n"
+"help.text"
+msgid "Be aware that Basis 2 is not supported by Microsoft Excel. Hence, if you use Basis 2 and export your document to XLSX format, it will return an error when opened in Excel."
+msgstr ""
+
+#. UCPgp
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"bm_id3153765\n"
+"help.text"
+msgid "<bookmark_value>AMORLINC function</bookmark_value> <bookmark_value>depreciations;linear amortizations</bookmark_value>"
+msgstr ""
+
+#. q2HTc
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"hd_id3153765\n"
+"help.text"
+msgid "AMORLINC"
+msgstr ""
+
+#. fLHJR
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3159264\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 ""
+
+#. 4PnLu
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3147363\n"
+"help.text"
+msgid "AMORLINC(Cost; DatePurchased; FirstPeriod; Salvage; Period; Rate [; Basis])"
+msgstr ""
+
+#. PsFjE
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3146920\n"
+"help.text"
+msgid "<emph>Cost</emph> means the acquisition costs."
+msgstr ""
+
+#. VHCAu
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3163807\n"
+"help.text"
+msgid "<emph>DatePurchased</emph> is the date of acquisition."
+msgstr ""
+
+#. MRvkz
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3148488\n"
+"help.text"
+msgid "<emph>FirstPeriod </emph>is the end date of the first settlement period."
+msgstr ""
+
+#. 3UEcC
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3149530\n"
+"help.text"
+msgid "<emph>Salvage</emph> is the salvage value of the capital asset at the end of the depreciable life."
+msgstr ""
+
+#. KkSS2
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3148633\n"
+"help.text"
+msgid "<emph>Period</emph> is the settlement period to be considered."
+msgstr ""
+
+#. YqbDG
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3150982\n"
+"help.text"
+msgid "<emph>Rate</emph> is the rate of depreciation."
+msgstr ""
+
+#. vJKVs
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id641612299092454\n"
+"help.text"
+msgid "An asset was acquired on 2020-02-01 at a cost of 2000 currency units. The end date of the first settlement period was 2020-12-31. The salvage value of the asset at the end of its depreciable life will be 10 currency units. The rate of depreciation is 0.1 (10%) and the year is calculated using the US method (Basis 0). Assuming linear depreciation, what is the amount of depreciation in the fourth depreciation period?"
+msgstr ""
+
+#. zcGNo
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id391612299096511\n"
+"help.text"
+msgid "<input>=AMORLINC(2000; \"2020-02-01\"; \"2020-12-31\"; 10; 4; 0.1; 0)</input> returns a depreciation amount of 200 currency units."
+msgstr ""
+
+#. DHKDL
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"bm_id3145257\n"
+"help.text"
+msgid "<bookmark_value>ACCRINT function</bookmark_value>"
+msgstr ""
+
+#. ep6fp
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"hd_id3145257\n"
+"help.text"
+msgid "ACCRINT"
+msgstr ""
+
+#. VLWSZ
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"bm_id3151276\n"
+"help.text"
+msgid "<bookmark_value>accrued interests;periodic payments</bookmark_value>"
+msgstr ""
+
+#. FGBdn
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3151276\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 ""
+
+#. XHQ2B
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3159092\n"
+"help.text"
+msgid "ACCRINT(Issue; FirstInterest; Settlement; Rate; [Par]; Frequency [; Basis])"
+msgstr ""
+
+#. PKp6i
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3150519\n"
+"help.text"
+msgid "<emph>Issue</emph> (required) is the issue date of the security."
+msgstr ""
+
+#. 6FJPA
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3155376\n"
+"help.text"
+msgid "<emph>FirstInterest</emph> (required) is the first interest date of the security."
+msgstr ""
+
+#. cxXvu
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3166431\n"
+"help.text"
+msgid "<emph>Settlement</emph> (required) is the date at which the interest accrued up until then is to be calculated."
+msgstr ""
+
+#. iFkc5
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3154486\n"
+"help.text"
+msgid "<emph>Rate</emph> (required) is the annual nominal rate of interest (coupon interest rate)"
+msgstr ""
+
+#. cAMCT
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3156445\n"
+"help.text"
+msgid "<emph>Par</emph> (optional) is the par value of the security. If omitted, a default value of 1000 is used."
+msgstr ""
+
+#. Ne2tH
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id961591171682507\n"
+"help.text"
+msgid "We recommend that you always specify the value that you require for ACCRINT’s <emph>Par</emph> argument, rather than allowing Calc to apply an arbitrary default. This will make your formula easier to understand and easier to maintain."
+msgstr ""
+
+#. Vobjm
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3149406\n"
+"help.text"
+msgid "<emph>Frequency</emph> (required) is the number of interest payments per year (1, 2 or 4)."
+msgstr ""
+
+#. E3h2Z
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3148599\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 ""
+
+#. jBwEn
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3148840\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 ""
+
+#. E9GDu
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"bm_id3151240\n"
+"help.text"
+msgid "<bookmark_value>ACCRINTM function</bookmark_value> <bookmark_value>accrued interests;one-off payments</bookmark_value>"
+msgstr ""
+
+#. Ds27S
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"hd_id3151240\n"
+"help.text"
+msgid "ACCRINTM"
+msgstr ""
+
+#. g9CNz
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3157981\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 ""
+
+#. rrfir
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3147074\n"
+"help.text"
+msgid "ACCRINTM(Issue; Settlement; Rate [; Par [; Basis]])"
+msgstr ""
+
+#. pTobQ
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3144773\n"
+"help.text"
+msgid "<emph>Issue</emph> (required) is the issue date of the security."
+msgstr ""
+
+#. tjqf2
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3154956\n"
+"help.text"
+msgid "<emph>Settlement</emph> (required) is the date at which the interest accrued up until then is to be calculated."
+msgstr ""
+
+#. QdCGH
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3153972\n"
+"help.text"
+msgid "<emph>Rate</emph> (required) is the annual nominal rate of interest (coupon interest rate)."
+msgstr ""
+
+#. GPEHn
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3159204\n"
+"help.text"
+msgid "<emph>Par</emph> (optional) is the par value of the security. If omitted, a default value of 1000 is used."
+msgstr ""
+
+#. EJaKm
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id481612296978513\n"
+"help.text"
+msgid "We recommend that you always specify the value that you require for ACCRINTM’s <emph>Par</emph> argument, rather than allowing Calc to apply an arbitrary default. This will make your formula easier to understand and easier to maintain."
+msgstr ""
+
+#. nB5zK
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3154541\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 ""
+
+#. o9DWG
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3149128\n"
+"help.text"
+msgid "<item type=\"input\">=ACCRINTM(\"2001-04-01\";\"2001-06-15\";0.1;1000;3)</item> returns 20.54795."
+msgstr ""
+
+#. FGQ9q
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"bm_id3145753\n"
+"help.text"
+msgid "<bookmark_value>RECEIVED function</bookmark_value> <bookmark_value>amount received for fixed-interest securities</bookmark_value>"
+msgstr ""
+
+#. ZFrGu
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"hd_id3145753\n"
+"help.text"
+msgid "RECEIVED"
+msgstr ""
+
+#. CbEHr
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3150051\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 ""
+
+#. D67BM
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3145362\n"
+"help.text"
+msgid "RECEIVED(Settlement; Maturity; Investment; Discount [; Basis])"
+msgstr ""
+
+#. oHAVz
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3154654\n"
+"help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr ""
+
+#. BEJhF
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3153011\n"
+"help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr ""
+
+#. qyVoa
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3155525\n"
+"help.text"
+msgid "<emph>Investment</emph> is the purchase sum."
+msgstr ""
+
+#. DiNCo
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3155760\n"
+"help.text"
+msgid "<emph>Discount</emph> is the percentage discount on acquisition of the security."
+msgstr ""
+
+#. qHDE6
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3154735\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 ""
+
+#. JgA24
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3146108\n"
+"help.text"
+msgid "The amount received on the maturity date is calculated as follows:"
+msgstr ""
+
+#. YRGGe
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3147246\n"
+"help.text"
+msgid "<item type=\"input\">=RECEIVED(\"1999-02-15\";\"1999-05-15\";1000;0.0575;2)</item> returns 1014.420266."
+msgstr ""
+
+#. swwMY
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"bm_id3147556\n"
+"help.text"
+msgid "<bookmark_value>PV function</bookmark_value> <bookmark_value>present values</bookmark_value> <bookmark_value>calculating; present values</bookmark_value>"
+msgstr ""
+
+#. pTpDH
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"hd_id3147556\n"
+"help.text"
+msgid "PV"
+msgstr ""
+
+#. ajegN
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3153301\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 ""
+
+#. ABUcD
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3146099\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 ""
+
+#. Znjbm
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3153334\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 ""
+
+#. 4cBxj
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3150395\n"
+"help.text"
+msgid "PV(Rate; NPer; Pmt [; FV [; Type]])"
+msgstr ""
+
+#. JrCA6
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3151341\n"
+"help.text"
+msgid "<emph>Rate</emph> defines the interest rate per period."
+msgstr ""
+
+#. ZPxL2
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3153023\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods (payment period)."
+msgstr ""
+
+#. vxMVB
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3146323\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the regular payment made per period."
+msgstr ""
+
+#. e3Wbc
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3150536\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) defines the future value remaining after the final installment has been made."
+msgstr ""
+
+#. UGZJw
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3146883\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 ""
+
+#. 4Ku4A
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3145225\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 ""
+
+#. 5kHAk
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3155907\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 ""
+
+#. GoZmj
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3149150\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 ""
+
+#. zBFE6
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"bm_id3152978\n"
+"help.text"
+msgid "<bookmark_value>calculating; depreciations</bookmark_value> <bookmark_value>SYD function</bookmark_value> <bookmark_value>depreciations; arithmetic declining</bookmark_value> <bookmark_value>arithmetic declining depreciations</bookmark_value>"
+msgstr ""
+
+#. NkVCK
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"hd_id3152978\n"
+"help.text"
+msgid "SYD"
+msgstr ""
+
+#. 9TE9y
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3148732\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_DIA\">Returns the arithmetic-declining depreciation rate.</ahelp>"
+msgstr ""
+
+#. cF9EA
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3149886\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 ""
+
+#. CEXDb
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3150483\n"
+"help.text"
+msgid "SYD(Cost; Salvage; Life; Period)"
+msgstr ""
+
+#. DZf9T
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3146879\n"
+"help.text"
+msgid "<emph>Cost</emph> is the initial cost of an asset."
+msgstr ""
+
+#. YyskD
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3147423\n"
+"help.text"
+msgid "<emph>Salvage</emph> is the value of an asset after depreciation."
+msgstr ""
+
+#. gvJEo
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3151229\n"
+"help.text"
+msgid "<emph>Life</emph> is the period fixing the time span over which an asset is depreciated."
+msgstr ""
+
+#. LLgFC
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3147473\n"
+"help.text"
+msgid "<emph>Period</emph> defines the period for which the depreciation is to be calculated."
+msgstr ""
+
+#. YtCDD
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3149688\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 ""
+
+#. Rtfbs
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3150900\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 ""
+
+#. YMhcv
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3146142\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 ""
+
+#. FD6Pc
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3155258\n"
+"help.text"
+msgid "<emph>A</emph>"
+msgstr ""
+
+#. FYCft
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3154558\n"
+"help.text"
+msgid "<emph>B</emph>"
+msgstr ""
+
+#. ggr3X
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3152372\n"
+"help.text"
+msgid "<emph>C</emph>"
+msgstr ""
+
+#. FH4MA
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3149949\n"
+"help.text"
+msgid "<emph>D</emph>"
+msgstr ""
+
+#. 8xzr6
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3145123\n"
+"help.text"
+msgid "<emph>E</emph>"
+msgstr ""
+
+#. BGRhq
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3149504\n"
+"help.text"
+msgid "1"
+msgstr ""
+
+#. FfqvC
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3153778\n"
+"help.text"
+msgid "<item type=\"input\">Initial Cost</item>"
+msgstr ""
+
+#. s2rwP
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3159083\n"
+"help.text"
+msgid "<item type=\"input\">Salvage Value</item>"
+msgstr ""
+
+#. DtzNU
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3150002\n"
+"help.text"
+msgid "<item type=\"input\">Useful Life</item>"
+msgstr ""
+
+#. BFrei
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3153006\n"
+"help.text"
+msgid "<item type=\"input\">Time Period</item>"
+msgstr ""
+
+#. HaqeJ
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3154505\n"
+"help.text"
+msgid "<item type=\"input\">Deprec. SYD</item>"
+msgstr ""
+
+#. REDYH
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3150336\n"
+"help.text"
+msgid "2"
+msgstr ""
+
+#. fAFin
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3155926\n"
+"help.text"
+msgid "<item type=\"input\">50,000 currency units</item>"
+msgstr ""
+
+#. Nbifa
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3153736\n"
+"help.text"
+msgid "<item type=\"input\">10,000 currency units</item>"
+msgstr ""
+
+#. F7Dim
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3150131\n"
+"help.text"
+msgid "<item type=\"input\">5</item>"
+msgstr ""
+
+#. LH7Z7
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3148766\n"
+"help.text"
+msgid "<item type=\"input\">1</item>"
+msgstr ""
+
+#. bJmgG
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3159136\n"
+"help.text"
+msgid "<item type=\"input\">13,333.33 currency units</item>"
+msgstr ""
+
+#. izbRE
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3151018\n"
+"help.text"
+msgid "3"
+msgstr ""
+
+#. dT6Q8
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3148397\n"
+"help.text"
+msgid "<item type=\"input\">2</item>"
+msgstr ""
+
+#. Xx5tV
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3146907\n"
+"help.text"
+msgid "<item type=\"input\">10,666.67 currency units</item>"
+msgstr ""
+
+#. 8p6UG
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3147356\n"
+"help.text"
+msgid "4"
+msgstr ""
+
+#. mPiHv
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3150267\n"
+"help.text"
+msgid "<item type=\"input\">3</item>"
+msgstr ""
+
+#. PaCoD
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3145628\n"
+"help.text"
+msgid "<item type=\"input\">8,000.00 currency units</item>"
+msgstr ""
+
+#. DyVDr
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3149004\n"
+"help.text"
+msgid "5"
+msgstr ""
+
+#. UDBsH
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3153545\n"
+"help.text"
+msgid "<item type=\"input\">4</item>"
+msgstr ""
+
+#. kYTNi
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3154634\n"
+"help.text"
+msgid "<item type=\"input\">5,333.33 currency units</item>"
+msgstr ""
+
+#. DgwsG
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3147537\n"
+"help.text"
+msgid "6"
+msgstr ""
+
+#. EJihG
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3155085\n"
+"help.text"
+msgid "<item type=\"input\">5</item>"
+msgstr ""
+
+#. sjp9n
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3158413\n"
+"help.text"
+msgid "<item type=\"input\">2,666.67 currency units</item>"
+msgstr ""
+
+#. En6mo
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3154866\n"
+"help.text"
+msgid "7"
+msgstr ""
+
+#. NXD2H
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3155404\n"
+"help.text"
+msgid "<item type=\"input\">6</item>"
+msgstr ""
+
+#. 8njQS
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3148431\n"
+"help.text"
+msgid "<item type=\"input\">0.00 currency units</item>"
+msgstr ""
+
+#. cB5AZ
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3156261\n"
+"help.text"
+msgid "8"
+msgstr ""
+
+#. tGGAX
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3083286\n"
+"help.text"
+msgid "<item type=\"input\">7</item>"
+msgstr ""
+
+#. YjE7C
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3083443\n"
+"help.text"
+msgid "9"
+msgstr ""
+
+#. GCbn8
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3154815\n"
+"help.text"
+msgid "<item type=\"input\">8</item>"
+msgstr ""
+
+#. rvbZQ
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3145082\n"
+"help.text"
+msgid "10"
+msgstr ""
+
+#. EdFsm
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3156307\n"
+"help.text"
+msgid "<item type=\"input\">9</item>"
+msgstr ""
+
+#. EqjaB
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3147564\n"
+"help.text"
+msgid "11"
+msgstr ""
+
+#. Wou2C
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3146856\n"
+"help.text"
+msgid "<item type=\"input\">10</item>"
+msgstr ""
+
+#. 276vu
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3150880\n"
+"help.text"
+msgid "12"
+msgstr ""
+
+#. ydBPQ
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3145208\n"
+"help.text"
+msgid "13"
+msgstr ""
+
+#. zCWbq
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3156113\n"
+"help.text"
+msgid "<item type=\"input\">>0</item>"
+msgstr ""
+
+#. ksfTi
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3153625\n"
+"help.text"
+msgid "<item type=\"input\">Total</item>"
+msgstr ""
+
+#. vFAnE
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3151297\n"
+"help.text"
+msgid "<item type=\"input\">40,000.00 currency units</item>"
+msgstr ""
+
+#. phAHB
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3149979\n"
+"help.text"
+msgid "The formula in E2 is as follows:"
+msgstr ""
+
+#. cppXv
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3155849\n"
+"help.text"
+msgid "<item type=\"input\">=SYD($A$2;$B$2;$C$2;D2)</item>"
+msgstr ""
+
+#. XL6QM
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3156124\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 ""
+
+#. YE3CN
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3147270\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 ""
+
+#. udecB
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3152811\n"
+"help.text"
+msgid "<item type=\"input\">=SUMIF(E2:E11;A13)</item>"
+msgstr ""
+
+#. VPF6C
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3155998\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 ""
+
+#. GbgAo
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"bm_id3155104\n"
+"help.text"
+msgid "<bookmark_value>DISC function</bookmark_value> <bookmark_value>allowances</bookmark_value> <bookmark_value>discounts</bookmark_value>"
+msgstr ""
+
+#. 4HKUH
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"hd_id3155104\n"
+"help.text"
+msgid "DISC"
+msgstr ""
+
+#. B462T
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3153891\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_DISC\">Calculates the allowance (discount) of a security as a percentage.</ahelp>"
+msgstr ""
+
+#. nkAEs
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3149756\n"
+"help.text"
+msgid "DISC(Settlement; Maturity; Price; Redemption [; Basis])"
+msgstr ""
+
+#. Uyj29
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3156014\n"
+"help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr ""
+
+#. PLoz9
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3154304\n"
+"help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr ""
+
+#. gSDDH
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3159180\n"
+"help.text"
+msgid "<emph>Price</emph> is the price of the security per 100 currency units of par value."
+msgstr ""
+
+#. oFEEF
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3147253\n"
+"help.text"
+msgid "<emph>Redemption</emph> is the redemption value of the security per 100 currency units of par value."
+msgstr ""
+
+#. d8BNg
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3155902\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 ""
+
+#. 6KHxL
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3152797\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 ""
+
+#. pLhCb
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"bm_id3154695\n"
+"help.text"
+msgid "<bookmark_value>DURATION function</bookmark_value> <bookmark_value>durations;fixed interest securities</bookmark_value>"
+msgstr ""
+
+#. coRDF
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"hd_id3154695\n"
+"help.text"
+msgid "DURATION"
+msgstr ""
+
+#. oA2tj
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3145768\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_DURATION\">Calculates the duration of a fixed interest security in years.</ahelp>"
+msgstr ""
+
+#. voaL4
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3153373\n"
+"help.text"
+msgid "DURATION(Settlement; Maturity; Coupon; Yield; Frequency [; Basis])"
+msgstr ""
+
+#. JeeVp
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3155397\n"
+"help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr ""
+
+#. vVi9P
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3148558\n"
+"help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr ""
+
+#. NoChi
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3153096\n"
+"help.text"
+msgid "<emph>Coupon</emph> is the annual coupon interest rate (nominal rate of interest)"
+msgstr ""
+
+#. h8jQ8
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3154594\n"
+"help.text"
+msgid "<emph>Yield</emph> is the annual yield of the security."
+msgstr ""
+
+#. wWHaP
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3149906\n"
+"help.text"
+msgid "<emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
+msgstr ""
+
+#. L2mPe
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3148834\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 ""
+
+#. ADc8t
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3154902\n"
+"help.text"
+msgid "<input>=DURATION(\"2001-01-01\";\"2006-01-01\";0.08;0.09;2;3)</input> returns 4.2 years."
+msgstr ""
+
+#. TjeEJ
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"bm_id3159147\n"
+"help.text"
+msgid "<bookmark_value>annual net interest rates</bookmark_value> <bookmark_value>calculating; annual net interest rates</bookmark_value> <bookmark_value>net annual interest rates</bookmark_value> <bookmark_value>EFFECT function</bookmark_value>"
+msgstr ""
+
+#. J9TTW
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"hd_id3159147\n"
+"help.text"
+msgid "EFFECT"
+msgstr ""
+
+#. SPbLD
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3154204\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_EFFEKTIV\">Returns the net annual interest rate for a nominal interest rate.</ahelp>"
+msgstr ""
+
+#. NAfJ9
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3145417\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 ""
+
+#. DF6F8
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3148805\n"
+"help.text"
+msgid "EFFECT(Nom; P)"
+msgstr ""
+
+#. CSHR5
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3149768\n"
+"help.text"
+msgid "<emph>Nom</emph> is the nominal interest."
+msgstr ""
+
+#. nK9yc
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3149334\n"
+"help.text"
+msgid "<emph>P</emph> is the number of interest payment periods per year."
+msgstr ""
+
+#. fSpm5
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3144499\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 ""
+
+#. VAYCE
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3150772\n"
+"help.text"
+msgid "<item type=\"input\">=EFFECT(9.75%;4)</item> = 10.11% The annual effective rate is therefore 10.11%."
+msgstr ""
+
+#. AW6uV
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"bm_id3147241\n"
+"help.text"
+msgid "<bookmark_value>effective interest rates</bookmark_value> <bookmark_value>EFFECT_ADD function</bookmark_value>"
+msgstr ""
+
+#. r9V2G
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"hd_id3147241\n"
+"help.text"
+msgid "EFFECT_ADD"
+msgstr ""
+
+#. L96B3
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3147524\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 ""
+
+#. GYnim
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3155118\n"
+"help.text"
+msgid "EFFECT_ADD(NominalRate; NPerY)"
+msgstr ""
+
+#. iaVSi
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3148907\n"
+"help.text"
+msgid "<emph>NominalRate</emph> is the annual nominal rate of interest."
+msgstr ""
+
+#. ZTPAc
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3154274\n"
+"help.text"
+msgid "<emph>NPerY </emph>is the number of interest payments per year."
+msgstr ""
+
+#. aHtFU
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3158426\n"
+"help.text"
+msgid "What is the effective annual rate of interest for a 5.25% nominal rate and quarterly payment."
+msgstr ""
+
+#. VuN23
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3148927\n"
+"help.text"
+msgid "<item type=\"input\">=EFFECT_ADD(0.0525;4)</item> returns 0.053543 or 5.3543%."
+msgstr ""
+
+#. AFSQ8
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"bm_id3149998\n"
+"help.text"
+msgid "<bookmark_value>calculating; arithmetic-degressive depreciations</bookmark_value> <bookmark_value>arithmetic-degressive depreciations</bookmark_value> <bookmark_value>depreciations;arithmetic-degressive</bookmark_value> <bookmark_value>DDB function</bookmark_value>"
+msgstr ""
+
+#. sVXL7
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"hd_id3149998\n"
+"help.text"
+msgid "DDB"
+msgstr ""
+
+#. NRrRU
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3159190\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 ""
+
+#. pPkDY
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3152361\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 ""
+
+#. veQBT
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3166452\n"
+"help.text"
+msgid "DDB(Cost; Salvage; Life; Period [; Factor])"
+msgstr ""
+
+#. VKnDB
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3153237\n"
+"help.text"
+msgid "<emph>Cost</emph> fixes the initial cost of an asset."
+msgstr ""
+
+#. CEgop
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3149787\n"
+"help.text"
+msgid "<emph>Salvage</emph> fixes the value of an asset at the end of its life."
+msgstr ""
+
+#. PuMJP
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3152945\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 ""
+
+#. iCYRp
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3149736\n"
+"help.text"
+msgid "<emph>Period</emph> states the period for which the value is to be calculated."
+msgstr ""
+
+#. DF8Dz
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3150243\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 ""
+
+#. 2SKMG
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3152882\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 ""
+
+#. vLiEt
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3154106\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 ""
+
+#. ZAtCs
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"bm_id3149962\n"
+"help.text"
+msgid "<bookmark_value>calculating; geometric-degressive depreciations</bookmark_value> <bookmark_value>geometric-degressive depreciations</bookmark_value> <bookmark_value>depreciations;geometric-degressive</bookmark_value> <bookmark_value>DB function</bookmark_value>"
+msgstr ""
+
+#. be9T2
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"hd_id3149962\n"
+"help.text"
+msgid "DB"
+msgstr ""
+
+#. rK4BC
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3148989\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 ""
+
+#. C3b9e
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3156213\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 ""
+
+#. ExEAy
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3153349\n"
+"help.text"
+msgid "DB(Cost; Salvage; Life; Period [; Month])"
+msgstr ""
+
+#. caSta
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3148462\n"
+"help.text"
+msgid "<emph>Cost</emph> is the initial cost of an asset."
+msgstr ""
+
+#. EsvcD
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3148658\n"
+"help.text"
+msgid "<emph>Salvage</emph> is the value of an asset at the end of the depreciation."
+msgstr ""
+
+#. jhjST
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3145371\n"
+"help.text"
+msgid "<emph>Life</emph> defines the period over which an asset is depreciated."
+msgstr ""
+
+#. hHMTS
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3154608\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 ""
+
+#. Vwxh8
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3150829\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 ""
+
+#. D2krK
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3156147\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. The first period of depreciation comprises 6 months. What is the fixed-declining balance depreciation of the computer system in the second period, which is a full year starting from the end of the first six-month period?"
+msgstr ""
+
+#. 4CQGc
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3149513\n"
+"help.text"
+msgid "<input>=DB(25000; 1000; 3; 2; 6)</input> returns 11,037.95 currency units."
+msgstr ""
+
+#. fWK6h
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"bm_id3153948\n"
+"help.text"
+msgid "<bookmark_value>IRR function</bookmark_value> <bookmark_value>calculating;internal rates of return, regular payments</bookmark_value> <bookmark_value>internal rates of return;regular payments</bookmark_value>"
+msgstr ""
+
+#. 6GAp8
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"hd_id3153948\n"
+"help.text"
+msgid "IRR"
+msgstr ""
+
+#. E6fyi
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3143282\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 ""
+
+#. n9cww
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_idN10E621\n"
+"help.text"
+msgid "If the payments take place at irregular intervals, use the <link href=\"text/scalc/01/04060118.xhp#xirr\" name=\"XIRR\">XIRR</link> function."
+msgstr ""
+
+#. MXALn
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3155427\n"
+"help.text"
+msgid "IRR(Values [; Guess])"
+msgstr ""
+
+#. o9R77
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3144758\n"
+"help.text"
+msgid "<emph>Values</emph> represents an array containing the values."
+msgstr ""
+
+#. BmLf8
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3149233\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 ""
+
+#. G9Z4Q
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3150630\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 ""
+
+#. vtGrD
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id461513468030965\n"
+"help.text"
+msgid "Because of the iterative method used, it is possible for IRR to fail and return <link href=\"text/scalc/05/02140000.xhp\" name=\"Error 523\">Error 523</link>, with \"Error: Calculation does not converge\" in the status bar. In that case, try another value for Guess."
+msgstr ""
+
+#. PxBBB
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"bm_id3151012\n"
+"help.text"
+msgid "<bookmark_value>calculating; interests for unchanged amortization installments</bookmark_value> <bookmark_value>interests for unchanged amortization installments</bookmark_value> <bookmark_value>ISPMT function</bookmark_value>"
+msgstr ""
+
+#. 5kyCY
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"hd_id3151012\n"
+"help.text"
+msgid "ISPMT"
+msgstr ""
+
+#. RvDrn
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3148693\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_ISPMT\">Calculates the level of interest for unchanged amortization installments.</ahelp>"
+msgstr ""
+
+#. Q5JhG
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3146070\n"
+"help.text"
+msgid "ISPMT(Rate; Period; TotalPeriods; Invest)"
+msgstr ""
+
+#. tZVBC
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3148672\n"
+"help.text"
+msgid "<emph>Rate</emph> sets the periodic interest rate."
+msgstr ""
+
+#. RpvJ5
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3145777\n"
+"help.text"
+msgid "<emph>Period</emph> is the number of installments for calculation of interest."
+msgstr ""
+
+#. DUuGo
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3153678\n"
+"help.text"
+msgid "<emph>TotalPeriods</emph> is the total number of installment periods."
+msgstr ""
+
+#. uLH46
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3159390\n"
+"help.text"
+msgid "<emph>Invest</emph> is the amount of the investment."
+msgstr ""
+
+#. z6Bag
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3149558\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 ""
+
+#. 2mCo2
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3150949\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 ""
+
+#. 5C6bm
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3146812\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060119.xhp\" name=\"Forward to Financial Functions Part Two\">Financial Functions Part Two</link>"
+msgstr ""
+
+#. FgtGH
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
+"par_id3154411\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp\" name=\"Forward to Financial Functions Part Three\">Financial Functions Part Three</link>"
+msgstr ""
+
+#. Ztbpk
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"tit\n"
+"help.text"
+msgid "Information Functions"
+msgstr ""
+
+#. gevGE
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"bm_id3147247\n"
+"help.text"
+msgid "<bookmark_value>information functions</bookmark_value> <bookmark_value>Function Wizard; information</bookmark_value> <bookmark_value>functions; information functions</bookmark_value>"
+msgstr ""
+
+#. rdDfi
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"hd_id3147247\n"
+"help.text"
+msgid "Information Functions"
+msgstr ""
+
+#. AhwX7
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3147499\n"
+"help.text"
+msgid "<variable id=\"informationtext\">This category contains the <emph>Information</emph> functions.</variable>"
+msgstr ""
+
+#. QhYqp
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3159128\n"
+"help.text"
+msgid "The data in the following table serves as the basis for some of the examples in the function descriptions:"
+msgstr ""
+
+#. amFAz
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3150024\n"
+"help.text"
+msgid "<item type=\"input\">x value</item>"
+msgstr ""
+
+#. AGBFY
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3148725\n"
+"help.text"
+msgid "<item type=\"input\">y value</item>"
+msgstr ""
+
+#. uEBVE
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"bm_id3691824\n"
+"help.text"
+msgid "<bookmark_value>INFO function</bookmark_value>"
+msgstr ""
+
+#. oBwBv
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"hd_id5787224\n"
+"help.text"
+msgid "INFO"
+msgstr ""
+
+#. DDRBQ
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id1507309\n"
+"help.text"
+msgid "Returns specific information about the current working environment. The function receives a single text argument and returns data depending on that parameter."
+msgstr ""
+
+#. LvKWH
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3928952\n"
+"help.text"
+msgid "INFO(\"Type\")"
+msgstr ""
+
+#. hf5Jp
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id5206762\n"
+"help.text"
+msgid "The following table lists the values for the text parameter <item type=\"literal\">Type</item> and the return values of the INFO function."
+msgstr ""
+
+#. VKBSE
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id5735953\n"
+"help.text"
+msgid "Value for \"Type\""
+msgstr ""
+
+#. 8B8jf
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id8360850\n"
+"help.text"
+msgid "Return value"
+msgstr ""
+
+#. Qb9m8
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id908841\n"
+"help.text"
+msgid "Always \"Windows (32-bit) NT 5.01\", for compatibility reasons"
+msgstr ""
+
+#. cFWJe
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id9841608\n"
+"help.text"
+msgid "The type of the operating system: <br/>\"AIX\" for Advanced Interactive Executive IBM computer operating systems<br/>\"ANDROID\" for Google mobile operating system<br/>\"DRAGONFLY\" for DragonFly operating system forked from FreeBSD<br/>\"EMSCRIPTEN\" for browser WebAssembly system<br/>\"FREEBSD\", \"OPENBSD\" or \"NETBSD\" for operating systems based on the Berkeley Software Distribution (BSD)<br/>\"HAIKU\" for BeOS compatible operating system<br/>\"iOS\" for Apple mobile operating system <br/>\"LINUX\" for GNU/Linux based operating systems<br/>\"MACOSX\" for Apple Mac OS X<br/>\"SOLARIS\" for Oracle Solaris operating system<br/>\"WNT\" for Microsoft Windows"
+msgstr ""
+
+#. zcvAx
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id2136295\n"
+"help.text"
+msgid "The product release identifier, for example \"300m25(Build:9876)\""
+msgstr ""
+
+#. zBCAC
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id4186223\n"
+"help.text"
+msgid "Always 1, for compatibility reasons"
+msgstr ""
+
+#. WyTya
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id1491134\n"
+"help.text"
+msgid "Current formula recalculation mode, either \"Automatic\" or \"Manual\" (localized into %PRODUCTNAME language)"
+msgstr ""
+
+#. E9799
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id1161534\n"
+"help.text"
+msgid "Other spreadsheet applications may accept localized values for the <item type=\"literal\">Type</item> parameter, but %PRODUCTNAME Calc will only accept the English values."
+msgstr ""
+
+#. nyAKb
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3994567\n"
+"help.text"
+msgid "<item type=\"input\">=INFO(\"release\")</item> returns the product release number of the %PRODUCTNAME in use."
+msgstr ""
+
+#. DTRsf
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id2873622\n"
+"help.text"
+msgid "<item type=\"input\">=INFO(D5)</item> with cell <item type=\"literal\">D5</item> containing a text string <item type=\"literal\">system</item> returns the operation system type."
+msgstr ""
+
+#. ECcTx
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"bm_id3155625\n"
+"help.text"
+msgid "<bookmark_value>CURRENT function</bookmark_value>"
+msgstr ""
+
+#. CwKgU
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"hd_id3155625\n"
+"help.text"
+msgid "CURRENT"
+msgstr ""
+
+#. zPadK
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3157975\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_AKTUELL\">This function returns the result to date of evaluating the formula of which it is a part (in other words the result as far as that evaluation has got). Its main use is together with the STYLE() function to apply selected styles to a cell depending on the cell contents.</ahelp>"
+msgstr ""
+
+#. VVH9p
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3150930\n"
+"help.text"
+msgid "CURRENT()"
+msgstr ""
+
+#. J5rkB
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id5919064\n"
+"help.text"
+msgid "<item type=\"input\">=1+2+CURRENT()</item>"
+msgstr ""
+
+#. zCD7r
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id8751792\n"
+"help.text"
+msgid "The example returns 6. The formula is calculated from left to right as: 1 + 2 equals 3, giving the result to date when CURRENT() is encountered; CURRENT() therefore yields 3, which is added to the original 3 to give 6."
+msgstr ""
+
+#. 3LWfB
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id5863826\n"
+"help.text"
+msgid "<input>=A2+B2+STYLE(IF(CURRENT()>10;\"Red\";\"Default\"))</input>"
+msgstr ""
+
+#. fNamE
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id7463911\n"
+"help.text"
+msgid "The example returns A2 + B2 (STYLE returns 0 here). If this sum is greater than 10, the style Red is applied to the cell. See the <emph>STYLE</emph> function for more explanation."
+msgstr ""
+
+#. bF4GC
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id7318643\n"
+"help.text"
+msgid "<item type=\"input\">=\"choo\"&CURRENT()</item>"
+msgstr ""
+
+#. h64Yd
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id6019165\n"
+"help.text"
+msgid "The example returns choochoo."
+msgstr ""
+
+#. sMe8w
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"bm_id3150688\n"
+"help.text"
+msgid "<bookmark_value>FORMULA function</bookmark_value> <bookmark_value>formula cells;displaying formulas in other cells</bookmark_value> <bookmark_value>displaying;formulas at any position</bookmark_value>"
+msgstr ""
+
+#. 3BU4F
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"hd_id3150688\n"
+"help.text"
+msgid "FORMULA"
+msgstr ""
+
+#. hpK42
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3158417\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_FORMEL\">Displays the formula of a formula cell as a text string.</ahelp>"
+msgstr ""
+
+#. 9shHD
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3147535\n"
+"help.text"
+msgid "FORMULA(Reference)"
+msgstr ""
+
+#. yX4Jk
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3014313\n"
+"help.text"
+msgid "<emph>Reference</emph> is a reference to a cell containing a formula."
+msgstr ""
+
+#. Lj4tG
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id8857081\n"
+"help.text"
+msgid "An invalid reference or a reference to a cell with no formula results in the error value #N/A."
+msgstr ""
+
+#. HkX2F
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3153179\n"
+"help.text"
+msgid "If cell A8 contains the formula <item type=\"input\">=SUM(1;2;3)</item> then"
+msgstr ""
+
+#. UYSii
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3153923\n"
+"help.text"
+msgid "<item type=\"input\">=FORMULA(A8)</item> returns the text =SUM(1;2;3)."
+msgstr ""
+
+#. UdGZn
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"bm_id3155409\n"
+"help.text"
+msgid "<bookmark_value>ISREF function</bookmark_value> <bookmark_value>references;testing cell contents</bookmark_value> <bookmark_value>cell contents;testing for references</bookmark_value>"
+msgstr ""
+
+#. koPGN
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"hd_id3155409\n"
+"help.text"
+msgid "ISREF"
+msgstr ""
+
+#. QBxWV
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3153723\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_ISTBEZUG\">Tests if the argument is a reference.</ahelp> Returns TRUE if the argument is a reference, returns FALSE otherwise. When given a reference this function does not examine the value being referenced."
+msgstr ""
+
+#. rMqmV
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3149821\n"
+"help.text"
+msgid "ISREF(Value)"
+msgstr ""
+
+#. YGA2X
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3146152\n"
+"help.text"
+msgid "<emph>Value</emph> is the value to be tested, to determine whether it is a reference."
+msgstr ""
+
+#. rBp4F
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3154317\n"
+"help.text"
+msgid "<item type=\"input\">=ISREF(C5)</item> returns the result TRUE because C5 is a valid reference."
+msgstr ""
+
+#. 2BeJJ
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id9728072\n"
+"help.text"
+msgid "<item type=\"input\">=ISREF(\"abcdef\")</item> returns always FALSE because a text can never be a reference."
+msgstr ""
+
+#. DR9wL
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id2131544\n"
+"help.text"
+msgid "<item type=\"input\">=ISREF(4)</item> returns FALSE."
+msgstr ""
+
+#. 4isXS
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id4295480\n"
+"help.text"
+msgid "<item type=\"input\">=ISREF(INDIRECT(\"A6\"))</item> returns TRUE, because INDIRECT is a function that returns a reference."
+msgstr ""
+
+#. iJ4DD
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3626819\n"
+"help.text"
+msgid "<item type=\"input\">=ISREF(ADDRESS(1; 1; 2;\"Sheet2\"))</item> returns FALSE, because ADDRESS is a function that returns a text, although it looks like a reference."
+msgstr ""
+
+#. pNQZN
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"bm_id3154812\n"
+"help.text"
+msgid "<bookmark_value>ISERR function</bookmark_value> <bookmark_value>error codes;controlling</bookmark_value>"
+msgstr ""
+
+#. R2rRu
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"hd_id3154812\n"
+"help.text"
+msgid "ISERR"
+msgstr ""
+
+#. x5VGW
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3149282\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_ISTFEHL\">Tests for error conditions, except the #N/A error value, and returns TRUE or FALSE.</ahelp>"
+msgstr ""
+
+#. objAY
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3156312\n"
+"help.text"
+msgid "ISERR(Value)"
+msgstr ""
+
+#. CmaCg
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3146857\n"
+"help.text"
+msgid "<emph>Value</emph> is any value or expression which is tested to see whether an error value other than #N/A is present."
+msgstr ""
+
+#. Vt6nx
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3153276\n"
+"help.text"
+msgid "<item type=\"input\">=ISERR(C8)</item> where cell C8 contains <item type=\"input\">=1/0</item> returns TRUE, because 1/0 is an error."
+msgstr ""
+
+#. SCkC9
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id8456984\n"
+"help.text"
+msgid "<item type=\"input\">=ISERR(C9)</item> where cell C9 contains <item type=\"input\">=NA()</item> returns FALSE, because ISERR() ignores the #N/A error."
+msgstr ""
+
+#. sA5v6
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"bm_id3147081\n"
+"help.text"
+msgid "<bookmark_value>ISERROR function</bookmark_value> <bookmark_value>recognizing;general errors</bookmark_value>"
+msgstr ""
+
+#. WyZEe
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"hd_id3147081\n"
+"help.text"
+msgid "ISERROR"
+msgstr ""
+
+#. GeByF
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3156316\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_ISTFEHLER\">Tests for error conditions, including the #N/A error value, and returns TRUE or FALSE.</ahelp>"
+msgstr ""
+
+#. FCc6b
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3153155\n"
+"help.text"
+msgid "ISERROR(Value)"
+msgstr ""
+
+#. Usvv4
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3154047\n"
+"help.text"
+msgid "<emph>Value</emph> is or refers to the value to be tested. ISERROR() returns TRUE if there is an error and FALSE if not."
+msgstr ""
+
+#. RrzQ7
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3150256\n"
+"help.text"
+msgid "<item type=\"input\">=ISERROR(C8)</item> where cell C8 contains <item type=\"input\">=1/0</item> returns TRUE, because 1/0 is an error."
+msgstr ""
+
+#. CCX3g
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id1889095\n"
+"help.text"
+msgid "<item type=\"input\">=ISERROR(C9)</item> where cell C9 contains <item type=\"input\">=NA()</item> returns TRUE."
+msgstr ""
+
+#. 4LmNf
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"bm_id31470811\n"
+"help.text"
+msgid "<bookmark_value>IFERROR function</bookmark_value> <bookmark_value>testing;general errors</bookmark_value>"
+msgstr ""
+
+#. DWG3v
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"hd_id31470811\n"
+"help.text"
+msgid "IFERROR"
+msgstr ""
+
+#. hAGam
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id31563161\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_IFERROR\">Returns the value if the cell does not contains an error value, or the alternative value if it does.</ahelp>"
+msgstr ""
+
+#. LREwJ
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id31531551\n"
+"help.text"
+msgid "IFERROR(Value; Alternate_value)"
+msgstr ""
+
+#. wJRYc
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id31540471\n"
+"help.text"
+msgid "<emph>Value</emph> is the value or expression to be returned if it is not equal or results in an error."
+msgstr ""
+
+#. YndHN
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id31540472\n"
+"help.text"
+msgid "<emph>Alternate_value</emph> is the value or expression to be returned if the expression or value of <emph>Value</emph> is equal or results in an error."
+msgstr ""
+
+#. P5A9v
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id31502561\n"
+"help.text"
+msgid "<item type=\"input\">=IFERROR(C8;C9)</item> where cell C8 contains <item type=\"input\">=1/0</item> returns the value of C9, because 1/0 is an error."
+msgstr ""
+
+#. GCAeY
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id18890951\n"
+"help.text"
+msgid "<item type=\"input\">=IFERROR(C8;C9)</item> where cell C8 contains <item type=\"input\">13</item> returns 13, the value of C8, which is not an error."
+msgstr ""
+
+#. DUDkY
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"bm_id3153618\n"
+"help.text"
+msgid "<bookmark_value>ISFORMULA function</bookmark_value> <bookmark_value>recognizing formula cells</bookmark_value> <bookmark_value>formula cells;recognizing</bookmark_value>"
+msgstr ""
+
+#. bLFTJ
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"hd_id3153618\n"
+"help.text"
+msgid "ISFORMULA"
+msgstr ""
+
+#. AA9Ac
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3149138\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_ISTFORMEL\">Returns TRUE if a cell is a formula cell.</ahelp>"
+msgstr ""
+
+#. Aid2Q
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3143230\n"
+"help.text"
+msgid "ISFORMULA(Reference)"
+msgstr ""
+
+#. KMuHY
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3150150\n"
+"help.text"
+msgid "<emph>Reference</emph> indicates the reference to a cell in which a test will be performed to determine if it contains a formula."
+msgstr ""
+
+#. 2sRxo
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3159182\n"
+"help.text"
+msgid "<item type=\"input\">=ISFORMULA(C4)</item> returns FALSE if the cell C4 contains the number <item type=\"input\">5</item>."
+msgstr ""
+
+#. S3Vg3
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"bm_id3156048\n"
+"help.text"
+msgid "<bookmark_value>ISEVEN function</bookmark_value> <bookmark_value>even integers</bookmark_value>"
+msgstr ""
+
+#. KYhTp
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"hd_id3156048\n"
+"help.text"
+msgid "ISEVEN"
+msgstr ""
+
+#. EprYg
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3149170\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_ISTGERADE\">Returns TRUE if the value is an even integer, or FALSE if the value is odd.</ahelp>"
+msgstr ""
+
+#. HCBiF
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3151203\n"
+"help.text"
+msgid "ISEVEN(Value)"
+msgstr ""
+
+#. AkijZ
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3150491\n"
+"help.text"
+msgid "<emph>Value</emph> is the value to be checked."
+msgstr ""
+
+#. e26nV
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3445844\n"
+"help.text"
+msgid "If Value is not an integer any digits after the decimal point are ignored. The sign of Value is also ignored."
+msgstr ""
+
+#. DVFRc
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3163813\n"
+"help.text"
+msgid "<item type=\"input\">=ISEVEN(48)</item> returns TRUE"
+msgstr ""
+
+#. DAs9F
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id8378856\n"
+"help.text"
+msgid "<item type=\"input\">=ISEVEN(33)</item> returns FALSE"
+msgstr ""
+
+#. HEEEF
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id7154759\n"
+"help.text"
+msgid "<item type=\"input\">=ISEVEN(0)</item> returns TRUE"
+msgstr ""
+
+#. WYyKu
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id1912289\n"
+"help.text"
+msgid "<item type=\"input\">=ISEVEN(-2.1)</item> returns TRUE"
+msgstr ""
+
+#. CqTmy
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id5627307\n"
+"help.text"
+msgid "<item type=\"input\">=ISEVEN(3.999)</item> returns FALSE"
+msgstr ""
+
+#. JTQED
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"bm_id3149760\n"
+"help.text"
+msgid "<bookmark_value>ISEVEN_ADD function</bookmark_value>"
+msgstr ""
+
+#. yBceo
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"hd_id3149760\n"
+"help.text"
+msgid "ISEVEN_ADD"
+msgstr ""
+
+#. uhPW4
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3147253\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_ISEVEN\">Tests for even numbers. Returns 1 if the number divided by 2 returns a whole number.</ahelp>"
+msgstr ""
+
+#. xSABe
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3149202\n"
+"help.text"
+msgid "ISEVEN_ADD(Number)"
+msgstr ""
+
+#. MS24X
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3151168\n"
+"help.text"
+msgid "<emph>Number</emph> is the number to be tested."
+msgstr ""
+
+#. TRGCF
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3153904\n"
+"help.text"
+msgid "<item type=\"input\">=ISEVEN_ADD(5)</item> returns 0."
+msgstr ""
+
+#. AASDZ
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id6238308\n"
+"help.text"
+msgid "<item type=\"input\">=ISEVEN_ADD(A1)</item> returns 1 if cell A1 contains the number <item type=\"input\">2</item>."
+msgstr ""
+
+#. 3GMzN
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"bm_id3154692\n"
+"help.text"
+msgid "<bookmark_value>ISNONTEXT function</bookmark_value> <bookmark_value>cell contents;no text</bookmark_value>"
+msgstr ""
+
+#. 2V95T
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"hd_id3154692\n"
+"help.text"
+msgid "ISNONTEXT"
+msgstr ""
+
+#. D3ZKU
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3155330\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_ISTKTEXT\">Tests if the cell contents are text or numbers, and returns FALSE if the contents are text.</ahelp>"
+msgstr ""
+
+#. CPmrb
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id5719779\n"
+"help.text"
+msgid "If an error occurs, the function returns TRUE."
+msgstr ""
+
+#. cFc8d
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3148829\n"
+"help.text"
+msgid "ISNONTEXT(Value)"
+msgstr ""
+
+#. NUkLc
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3146992\n"
+"help.text"
+msgid "<emph>Value</emph> is any value or expression where a test is performed to determine whether it is a text or numbers or a Boolean value."
+msgstr ""
+
+#. Es2Py
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3149906\n"
+"help.text"
+msgid "<item type=\"input\">=ISNONTEXT(D2)</item> returns FALSE if cell D2 contains the text <item type=\"input\">abcdef</item>."
+msgstr ""
+
+#. itFUp
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3150777\n"
+"help.text"
+msgid "<item type=\"input\">=ISNONTEXT(D9)</item> returns TRUE if cell D9 contains the number <item type=\"input\">8</item>."
+msgstr ""
+
+#. ChFkR
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"bm_id3159148\n"
+"help.text"
+msgid "<bookmark_value>ISBLANK function</bookmark_value> <bookmark_value>blank cell contents</bookmark_value> <bookmark_value>empty cells; recognizing</bookmark_value>"
+msgstr ""
+
+#. 9iQBn
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"hd_id3159148\n"
+"help.text"
+msgid "ISBLANK"
+msgstr ""
+
+#. fVZgm
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3148800\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_ISTLEER\">Returns TRUE if the reference to a cell is blank.</ahelp> This function is used to determine if the content of a cell is empty. A cell with a formula inside is not empty."
+msgstr ""
+
+#. DkGHv
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3158406\n"
+"help.text"
+msgid "ISBLANK(Value)"
+msgstr ""
+
+#. xsDtT
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3154212\n"
+"help.text"
+msgid "<emph>Value</emph> is the content to be tested."
+msgstr ""
+
+#. q8tvF
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3147234\n"
+"help.text"
+msgid "<item type=\"input\">=ISBLANK(D2)</item> returns FALSE as a result."
+msgstr ""
+
+#. yKnGr
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"bm_id3155356\n"
+"help.text"
+msgid "<bookmark_value>ISLOGICAL function</bookmark_value> <bookmark_value>number formats;logical</bookmark_value> <bookmark_value>logical number formats</bookmark_value>"
+msgstr ""
+
+#. EYAcE
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"hd_id3155356\n"
+"help.text"
+msgid "ISLOGICAL"
+msgstr ""
+
+#. jxjCe
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3148926\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_ISTLOG\">Tests for a logical value (TRUE or FALSE).</ahelp>"
+msgstr ""
+
+#. ucKHh
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3541062\n"
+"help.text"
+msgid "If an error occurs, the function returns FALSE."
+msgstr ""
+
+#. V2ukf
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3148918\n"
+"help.text"
+msgid "ISLOGICAL(Value)"
+msgstr ""
+
+#. nzMeE
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3146946\n"
+"help.text"
+msgid "Returns TRUE if <emph>Value</emph> is a logical value (TRUE or FALSE), and returns FALSE otherwise."
+msgstr ""
+
+#. njbrg
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3166442\n"
+"help.text"
+msgid "<item type=\"input\">=ISLOGICAL(99)</item> returns FALSE, because 99 is a number, not a logical value."
+msgstr ""
+
+#. RKxzG
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3556016\n"
+"help.text"
+msgid "<item type=\"input\">=ISLOGICAL(ISNA(D4))</item> returns TRUE whatever the contents of cell D4, because ISNA() returns a logical value."
+msgstr ""
+
+#. kDVar
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"bm_id3153685\n"
+"help.text"
+msgid "<bookmark_value>ISNA function</bookmark_value> <bookmark_value>#N/A error;recognizing</bookmark_value>"
+msgstr ""
+
+#. Eu8CA
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"hd_id3153685\n"
+"help.text"
+msgid "ISNA"
+msgstr ""
+
+#. 37cBk
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3149105\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_ISTNV\">Returns TRUE if a cell contains the #N/A (value not available) error value.</ahelp>"
+msgstr ""
+
+#. 29huD
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id6018860\n"
+"help.text"
+msgid "If an error occurs, the function returns FALSE."
+msgstr ""
+
+#. Atn9F
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3153748\n"
+"help.text"
+msgid "ISNA(Value)"
+msgstr ""
+
+#. UfAek
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3152884\n"
+"help.text"
+msgid "<emph>Value</emph> is the value or expression to be tested."
+msgstr ""
+
+#. UyzSk
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3154852\n"
+"help.text"
+msgid "<item type=\"input\">=ISNA(D3)</item> returns FALSE as a result."
+msgstr ""
+
+#. 8pRTT
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"bm_id31536851\n"
+"help.text"
+msgid "<bookmark_value>IFNA function</bookmark_value> <bookmark_value>#N/A error;testing</bookmark_value>"
+msgstr ""
+
+#. vdEm2
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"hd_id31536851\n"
+"help.text"
+msgid "IFNA"
+msgstr ""
+
+#. 9tyMz
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id31491051\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_IFNA\">Returns the value if the cell does not contains the #N/A (value not available) error value, or the alternative value if it does.</ahelp>"
+msgstr ""
+
+#. hQbWy
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id31537481\n"
+"help.text"
+msgid "IFNA(Value; Alternate_value)"
+msgstr ""
+
+#. 6oj7E
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id31528841\n"
+"help.text"
+msgid "<emph>Value</emph> is the value or expression to be returned if it is not equal or results in an #N/A error."
+msgstr ""
+
+#. CM9Ds
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id31528842\n"
+"help.text"
+msgid "<emph>Alternate_value</emph> is the value or expression to be returned if the expression or value of <emph>Value</emph> is equal or results in an #N/A error."
+msgstr ""
+
+#. ZyKiX
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id31548521\n"
+"help.text"
+msgid "<item type=\"input\">=IFNA(D3;D4)</item> returns the value of D3 if D3 does not result in an #N/A error, or D4 if it does."
+msgstr ""
+
+#. fAgB3
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"bm_id3149426\n"
+"help.text"
+msgid "<bookmark_value>ISTEXT function</bookmark_value> <bookmark_value>cell contents;text</bookmark_value>"
+msgstr ""
+
+#. UbDEA
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"hd_id3149426\n"
+"help.text"
+msgid "ISTEXT"
+msgstr ""
+
+#. tkiro
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3145368\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_ISTTEXT\">Returns TRUE if the cell contents refer to text.</ahelp>"
+msgstr ""
+
+#. KZrLf
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id6779686\n"
+"help.text"
+msgid "If an error occurs, the function returns FALSE."
+msgstr ""
+
+#. Fuvo6
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3148649\n"
+"help.text"
+msgid "ISTEXT(Value)"
+msgstr ""
+
+#. mQNoM
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3150417\n"
+"help.text"
+msgid "<emph>Value</emph> is a value, number, Boolean value, or an error value to be tested."
+msgstr ""
+
+#. RmeYe
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3144756\n"
+"help.text"
+msgid "<item type=\"input\">=ISTEXT(D9)</item> returns TRUE if cell D9 contains the text <item type=\"input\">abcdef</item>."
+msgstr ""
+
+#. i33gE
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3148416\n"
+"help.text"
+msgid "<item type=\"input\">=ISTEXT(C3)</item> returns FALSE if cell C3 contains the number <item type=\"input\">3</item>."
+msgstr ""
+
+#. RBYBF
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"bm_id3156034\n"
+"help.text"
+msgid "<bookmark_value>ISODD function</bookmark_value> <bookmark_value>odd integers</bookmark_value>"
+msgstr ""
+
+#. vNz2E
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"hd_id3156034\n"
+"help.text"
+msgid "ISODD"
+msgstr ""
+
+#. LogcS
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3155920\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_ISTUNGERADE\">Returns TRUE if the value is odd, or FALSE if the number is even.</ahelp>"
+msgstr ""
+
+#. ScQLv
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3151375\n"
+"help.text"
+msgid "ISODD(value)"
+msgstr ""
+
+#. FhQJC
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3155139\n"
+"help.text"
+msgid "<emph>Value</emph> is the value to be checked."
+msgstr ""
+
+#. J2P4u
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id9027680\n"
+"help.text"
+msgid "If Value is not an integer any digits after the decimal point are ignored. The sign of Value is also ignored."
+msgstr ""
+
+#. iXWnD
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3155345\n"
+"help.text"
+msgid "<item type=\"input\">=ISODD(33)</item> returns TRUE"
+msgstr ""
+
+#. JvVBB
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id9392986\n"
+"help.text"
+msgid "<item type=\"input\">=ISODD(48)</item> returns FALSE"
+msgstr ""
+
+#. 26rpB
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id5971251\n"
+"help.text"
+msgid "<item type=\"input\">=ISODD(3.999)</item> returns TRUE"
+msgstr ""
+
+#. HCx9g
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id4136478\n"
+"help.text"
+msgid "<item type=\"input\">=ISODD(-3.1)</item> returns TRUE"
+msgstr ""
+
+#. G3CAB
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"bm_id3153939\n"
+"help.text"
+msgid "<bookmark_value>ISODD_ADD function</bookmark_value>"
+msgstr ""
+
+#. KjFXB
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"hd_id3153939\n"
+"help.text"
+msgid "ISODD_ADD"
+msgstr ""
+
+#. kTH52
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3153538\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_ISODD\">Returns TRUE (1) if the number does not return a whole number when divided by 2.</ahelp>"
+msgstr ""
+
+#. hekk5
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3149485\n"
+"help.text"
+msgid "ISODD_ADD(Number)"
+msgstr ""
+
+#. VBwDe
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3153315\n"
+"help.text"
+msgid "<emph>Number</emph> is the number to be tested."
+msgstr ""
+
+#. SD8TH
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3154793\n"
+"help.text"
+msgid "<item type=\"input\">=ISODD_ADD(5)</item> returns 1."
+msgstr ""
+
+#. 42hVr
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"bm_id3148688\n"
+"help.text"
+msgid "<bookmark_value>ISNUMBER function</bookmark_value> <bookmark_value>cell contents;numbers</bookmark_value>"
+msgstr ""
+
+#. eny2i
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"hd_id3148688\n"
+"help.text"
+msgid "ISNUMBER"
+msgstr ""
+
+#. hYfMi
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3154618\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_ISTZAHL\">Returns TRUE if the value refers to a number.</ahelp>"
+msgstr ""
+
+#. TCEAQ
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3150595\n"
+"help.text"
+msgid "ISNUMBER(Value)"
+msgstr ""
+
+#. BtoLC
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3150351\n"
+"help.text"
+msgid "<emph>Value</emph> is any expression to be tested to determine whether it is a number or text."
+msgstr ""
+
+#. wfxHG
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3155614\n"
+"help.text"
+msgid "<item type=\"input\">=ISNUMBER(C3)</item> returns TRUE if the cell C3 contains the number <item type=\"input\">4</item>."
+msgstr ""
+
+#. bmnwv
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3154417\n"
+"help.text"
+msgid "<item type=\"input\">=ISNUMBER(C2)</item> returns FALSE if the cell C2 contains the text <item type=\"input\">abcdef</item>."
+msgstr ""
+
+#. A7ovX
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"bm_id3153694\n"
+"help.text"
+msgid "<bookmark_value>N function</bookmark_value>"
+msgstr ""
+
+#. Auh6F
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"hd_id3153694\n"
+"help.text"
+msgid "N"
+msgstr ""
+
+#. vFmMG
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3150405\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_N\">Returns the numeric value of the given parameter. Returns 0 if parameter is text or FALSE.</ahelp>"
+msgstr ""
+
+#. wa6oF
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id9115573\n"
+"help.text"
+msgid "If an error occurs the function returns the error value."
+msgstr ""
+
+#. fBDGC
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3153883\n"
+"help.text"
+msgid "N(Value)"
+msgstr ""
+
+#. GvFBi
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3151101\n"
+"help.text"
+msgid "<emph>Value</emph> is the parameter to be converted into a number. N() returns the numeric value if it can. It returns the logical values TRUE and FALSE as 1 and 0 respectively. It returns text as 0."
+msgstr ""
+
+#. 6ELat
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3154117\n"
+"help.text"
+msgid "<item type=\"input\">=N(123)</item> returns 123"
+msgstr ""
+
+#. DT5F5
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id2337717\n"
+"help.text"
+msgid "<item type=\"input\">=N(TRUE())</item> returns 1"
+msgstr ""
+
+#. MJvod
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3153781\n"
+"help.text"
+msgid "<item type=\"input\">=N(FALSE())</item> returns 0"
+msgstr ""
+
+#. AaBho
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3154670\n"
+"help.text"
+msgid "<item type=\"input\">=N(\"abc\")</item> returns 0"
+msgstr ""
+
+#. Dex3d
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3519089\n"
+"help.text"
+msgid "=N(1/0) returns #DIV/0!"
+msgstr ""
+
+#. JzPuw
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"bm_id3156275\n"
+"help.text"
+msgid "<bookmark_value>NA function</bookmark_value> <bookmark_value>#N/A error;assigning to a cell</bookmark_value>"
+msgstr ""
+
+#. HJa2h
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"hd_id3156275\n"
+"help.text"
+msgid "NA"
+msgstr ""
+
+#. McXEX
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3156161\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_NV\">Returns the error value #N/A.</ahelp>"
+msgstr ""
+
+#. BLWEq
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3149563\n"
+"help.text"
+msgid "NA()"
+msgstr ""
+
+#. jKbRF
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3154481\n"
+"help.text"
+msgid "<item type=\"input\">=NA()</item> converts the contents of the cell into #N/A."
+msgstr ""
+
+#. 4FC6Y
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"bm_id3151255\n"
+"help.text"
+msgid "<bookmark_value>TYPE function</bookmark_value>"
+msgstr ""
+
+#. C5F8v
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"hd_id3151255\n"
+"help.text"
+msgid "TYPE"
+msgstr ""
+
+#. kB3G2
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3155900\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_TYP\">Returns the type of value, where 1 = number, 2 = text, 4 = Boolean value, 8 = formula, 16 = error value, 64 = array.</ahelp>"
+msgstr ""
+
+#. wEzA3
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3148400\n"
+"help.text"
+msgid "TYPE(Value)"
+msgstr ""
+
+#. rArix
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3150830\n"
+"help.text"
+msgid "<emph>Value</emph> is a specific value for which the data type is determined."
+msgstr ""
+
+#. pVYZE
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"hd_id3154363\n"
+"help.text"
+msgid "Example (see example table above)"
+msgstr ""
+
+#. sm7gT
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3153357\n"
+"help.text"
+msgid "<item type=\"input\">=TYPE(C2)</item> returns 2 as a result."
+msgstr ""
+
+#. AnCMi
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3148980\n"
+"help.text"
+msgid "<item type=\"input\">=TYPE(D9)</item> returns 1 as a result."
+msgstr ""
+
+#. BsfYR
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"bm_id3155509\n"
+"help.text"
+msgid "<bookmark_value>CELL function</bookmark_value> <bookmark_value>cell information</bookmark_value> <bookmark_value>information on cells</bookmark_value>"
+msgstr ""
+
+#. ewksB
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"hd_id3155509\n"
+"help.text"
+msgid "CELL"
+msgstr ""
+
+#. vL4Bk
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3153196\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_ZELLE\">Returns information on address, formatting or contents of a cell.</ahelp>"
+msgstr ""
+
+#. Vwajg
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3147355\n"
+"help.text"
+msgid "CELL(\"InfoType\" [; Reference])"
+msgstr ""
+
+#. wjBKt
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3154716\n"
+"help.text"
+msgid "<emph>InfoType</emph> is the character string that specifies the type of information. The character string is always in English. Upper or lower case is optional."
+msgstr ""
+
+#. 8mfxR
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3150636\n"
+"help.text"
+msgid "InfoType"
+msgstr ""
+
+#. swfVF
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3149344\n"
+"help.text"
+msgid "Meaning"
+msgstr ""
+
+#. FA2AL
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3156204\n"
+"help.text"
+msgid "Returns the number of the referenced column."
+msgstr ""
+
+#. GVZP9
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3150094\n"
+"help.text"
+msgid "<item type=\"input\">=CELL(\"COL\";D2)</item> returns 4."
+msgstr ""
+
+#. HARvL
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3147583\n"
+"help.text"
+msgid "Returns the number of the referenced row."
+msgstr ""
+
+#. puDDA
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3151222\n"
+"help.text"
+msgid "<item type=\"input\">=CELL(\"ROW\";D2)</item> returns 2."
+msgstr ""
+
+#. DfyBE
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3151201\n"
+"help.text"
+msgid "Returns the number of the referenced sheet."
+msgstr ""
+
+#. bPZDC
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3149169\n"
+"help.text"
+msgid "<item type=\"input\">=CELL(\"Sheet\";Sheet3.D2)</item> returns 3."
+msgstr ""
+
+#. bPrEF
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3156054\n"
+"help.text"
+msgid "Returns the absolute address of the referenced cell."
+msgstr ""
+
+#. pFWQT
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3154136\n"
+"help.text"
+msgid "<item type=\"input\">=CELL(\"ADDRESS\";D2)</item> returns $D$2."
+msgstr ""
+
+#. wPMW4
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3159198\n"
+"help.text"
+msgid "<item type=\"input\">=CELL(\"ADDRESS\";Sheet3.D2)</item> returns $Sheet3.$D$2."
+msgstr ""
+
+#. pwLQs
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3150245\n"
+"help.text"
+msgid "<item type=\"input\">=CELL(\"ADDRESS\";'X:\\dr\\test.ods'#$Sheet1.D2)</item> returns 'file:///X:/dr/test.ods'#$Sheet1.$D$2."
+msgstr ""
+
+#. TYtiD
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3151328\n"
+"help.text"
+msgid "Returns the file name and the sheet number of the referenced cell."
+msgstr ""
+
+#. 9F2Fs
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3148896\n"
+"help.text"
+msgid "<item type=\"input\">=CELL(\"FILENAME\";D2)</item> returns 'file:///X:/dr/own.ods'#$Sheet1, if the formula in the current document X:\\dr\\own.ods is located in Sheet1."
+msgstr ""
+
+#. CM45L
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3155144\n"
+"help.text"
+msgid "<item type=\"input\">=CELL(\"FILENAME\";'X:\\dr\\test.ods'#$Sheet1.D2)</item> returns 'file:///X:/dr/test.ods'#$Sheet1."
+msgstr ""
+
+#. GJsAD
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3151004\n"
+"help.text"
+msgid "Returns the complete cell address in Lotus™ notation."
+msgstr ""
+
+#. a8afR
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3159104\n"
+"help.text"
+msgid "<item type=\"input\">=CELL(\"COORD\"; D2)</item> returns $A:$D$2."
+msgstr ""
+
+#. SzfBm
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3163720\n"
+"help.text"
+msgid "<item type=\"input\">=CELL(\"COORD\"; Sheet3.D2)</item> returns $C:$D$2."
+msgstr ""
+
+#. gBkWA
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3156041\n"
+"help.text"
+msgid "Returns the contents of the referenced cell, without any formatting."
+msgstr ""
+
+#. umGSc
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3155344\n"
+"help.text"
+msgid "Returns the type of cell contents."
+msgstr ""
+
+#. uXUWK
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3145217\n"
+"help.text"
+msgid "b = blank. empty cell"
+msgstr ""
+
+#. EYMEH
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3155176\n"
+"help.text"
+msgid "l = label. Text, result of a formula as text"
+msgstr ""
+
+#. CZQw8
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3147280\n"
+"help.text"
+msgid "v = value. Value, result of a formula as a number"
+msgstr ""
+
+#. jwaDG
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3154920\n"
+"help.text"
+msgid "Returns the width of the referenced column. The unit is the number of zeros (0) that fit into the column in the default text and the default size."
+msgstr ""
+
+#. aWBBj
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3154230\n"
+"help.text"
+msgid "Returns the alignment of the referenced cell."
+msgstr ""
+
+#. JPwrF
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3155946\n"
+"help.text"
+msgid "' = align left or left-justified"
+msgstr ""
+
+#. HCW2A
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3147220\n"
+"help.text"
+msgid "\" = align right"
+msgstr ""
+
+#. ffq7b
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3149038\n"
+"help.text"
+msgid "^ = centered"
+msgstr ""
+
+#. ESasA
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3153129\n"
+"help.text"
+msgid "\\ = repeating (currently inactive)"
+msgstr ""
+
+#. jG9Lm
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3145127\n"
+"help.text"
+msgid "Returns the status of the cell protection for the cell."
+msgstr ""
+
+#. 9pzWU
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3155794\n"
+"help.text"
+msgid "1 = cell is protected"
+msgstr ""
+
+#. Ldrgg
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3155072\n"
+"help.text"
+msgid "0 = cell is not protected"
+msgstr ""
+
+#. PjRCh
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3150220\n"
+"help.text"
+msgid "Returns a character string that indicates the number format."
+msgstr ""
+
+#. CAkDF
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3153824\n"
+"help.text"
+msgid ", = number with thousands separator"
+msgstr ""
+
+#. nFzRU
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3153837\n"
+"help.text"
+msgid "F = number without thousands separator"
+msgstr ""
+
+#. E75LA
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3150318\n"
+"help.text"
+msgid "C = currency format"
+msgstr ""
+
+#. g9F6q
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3153168\n"
+"help.text"
+msgid "S = exponential representation, for example, 1.234+E56"
+msgstr ""
+
+#. MExhx
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3153515\n"
+"help.text"
+msgid "P = percentage"
+msgstr ""
+
+#. wFKNg
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3154375\n"
+"help.text"
+msgid "In the above formats, the number of decimal places after the decimal separator is given as a number. Example: the number format #,##0.0 returns ,1 and the number format 00.000% returns P3"
+msgstr ""
+
+#. cC9zV
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3150575\n"
+"help.text"
+msgid "D1 = MMM-D-YY, MM-D-YY and similar formats"
+msgstr ""
+
+#. VXSyz
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3150589\n"
+"help.text"
+msgid "D2 = DD-MM"
+msgstr ""
+
+#. hz4ig
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3151034\n"
+"help.text"
+msgid "D3 = MM-YY"
+msgstr ""
+
+#. gbGFa
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3156371\n"
+"help.text"
+msgid "D4 = DD-MM-YYYY HH:MM:SS"
+msgstr ""
+
+#. EP3zz
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3157881\n"
+"help.text"
+msgid "D5 = MM-DD"
+msgstr ""
+
+#. JvGDB
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3157894\n"
+"help.text"
+msgid "D6 = HH:MM:SS AM/PM"
+msgstr ""
+
+#. tbyFR
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3154068\n"
+"help.text"
+msgid "D7 = HH:MM AM/PM"
+msgstr ""
+
+#. kyM2i
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3150286\n"
+"help.text"
+msgid "D8 = HH:MM:SS"
+msgstr ""
+
+#. F2aSg
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3145756\n"
+"help.text"
+msgid "D9 = HH:MM"
+msgstr ""
+
+#. gPDCV
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3145768\n"
+"help.text"
+msgid "G = All other formats"
+msgstr ""
+
+#. 2VcnA
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3153375\n"
+"help.text"
+msgid "- (Minus) at the end = negative numbers are formatted in color"
+msgstr ""
+
+#. 6uTvC
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3155545\n"
+"help.text"
+msgid "() (brackets) at the end = there is an opening bracket in the format code"
+msgstr ""
+
+#. PWRH8
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3152922\n"
+"help.text"
+msgid "Returns 1, if negative values have been formatted in color, otherwise 0."
+msgstr ""
+
+#. a4fCE
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3156072\n"
+"help.text"
+msgid "Returns 1 if the format code contains an opening bracket (, otherwise 0."
+msgstr ""
+
+#. LZnbE
+#: 04060104.xhp
+msgctxt ""
+"04060104.xhp\n"
+"par_id3156090\n"
+"help.text"
+msgid "<emph>Reference</emph> (list of options) is the position of the cell to be examined. If <emph>Reference</emph> is a range, the cell moves to the top left of the range. If <emph>Reference</emph> is missing, $[officename] Calc uses the position of the cell in which this formula is located. Microsoft Excel uses the reference of the cell in which the cursor is positioned."
+msgstr ""
+
+#. hhV65
+#: 04060105.xhp
+msgctxt ""
+"04060105.xhp\n"
+"tit\n"
+"help.text"
+msgid "Logical Functions"
+msgstr ""
+
+#. TuHEK
+#: 04060105.xhp
+msgctxt ""
+"04060105.xhp\n"
+"bm_id3153484\n"
+"help.text"
+msgid "<bookmark_value>logical functions</bookmark_value> <bookmark_value>Function Wizard; logical</bookmark_value> <bookmark_value>functions; logical functions</bookmark_value>"
+msgstr ""
+
+#. HZKH9
+#: 04060105.xhp
+msgctxt ""
+"04060105.xhp\n"
+"hd_id3153484\n"
+"help.text"
+msgid "Logical Functions"
+msgstr ""
+
+#. dGzEx
+#: 04060105.xhp
+msgctxt ""
+"04060105.xhp\n"
+"par_id3149312\n"
+"help.text"
+msgid "<variable id=\"logicaltext\">This category contains the <emph>Logical</emph> functions.</variable>"
+msgstr ""
+
+#. ADKTB
+#: 04060105.xhp
+msgctxt ""
+"04060105.xhp\n"
+"hd_id631520887352751\n"
+"help.text"
+msgid "Handling non-logical arguments in logical functions"
+msgstr ""
+
+#. DRkRS
+#: 04060105.xhp
+msgctxt ""
+"04060105.xhp\n"
+"par_id431520887384579\n"
+"help.text"
+msgid "Zero (0) is equivalent to FALSE and all other numbers are equivalent to TRUE."
+msgstr ""
+
+#. 9yaoH
+#: 04060105.xhp
+msgctxt ""
+"04060105.xhp\n"
+"par_id881520887475288\n"
+"help.text"
+msgid "Empty cells and text in cells are ignored."
+msgstr ""
+
+#. Ff8xe
+#: 04060105.xhp
+msgctxt ""
+"04060105.xhp\n"
+"par_id461520887504085\n"
+"help.text"
+msgid "A #VALUE error is raised if all arguments are ignored."
+msgstr ""
+
+#. vcbEN
+#: 04060105.xhp
+msgctxt ""
+"04060105.xhp\n"
+"par_id591520888006686\n"
+"help.text"
+msgid "A #VALUE error is raised if one argument is direct text (not text in a cell)."
+msgstr ""
+
+#. 4CQ4Z
+#: 04060105.xhp
+msgctxt ""
+"04060105.xhp\n"
+"par_id321520889630477\n"
+"help.text"
+msgid "Errors as argument lead to an error."
+msgstr ""
+
+#. TNzPF
+#: 04060105.xhp
+msgctxt ""
+"04060105.xhp\n"
+"bm_id3147505\n"
+"help.text"
+msgid "<bookmark_value>AND function</bookmark_value>"
+msgstr ""
+
+#. yHFyv
+#: 04060105.xhp
+msgctxt ""
+"04060105.xhp\n"
+"hd_id3147505\n"
+"help.text"
+msgid "AND"
+msgstr ""
+
+#. WJGWL
+#: 04060105.xhp
+msgctxt ""
+"04060105.xhp\n"
+"par_id3153959\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 ""
+
+#. uDotD
+#: 04060105.xhp
+msgctxt ""
+"04060105.xhp\n"
+"par_id3146100\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 ""
+
+#. 7ALjG
+#: 04060105.xhp
+msgctxt ""
+"04060105.xhp\n"
+"par_id3159123\n"
+"help.text"
+msgid "AND(<embedvar href=\"text/scalc/01/ful_func.xhp#logical255_1\" markup=\"keep\"/>)"
+msgstr ""
+
+#. 3exzA
+#: 04060105.xhp
+msgctxt ""
+"04060105.xhp\n"
+"par_id3153123\n"
+"help.text"
+msgid "The logical values of entries 12<13; 14>12, and 7<6 are to be checked:"
+msgstr ""
+
+#. DBBTB
+#: 04060105.xhp
+msgctxt ""
+"04060105.xhp\n"
+"par_id3145632\n"
+"help.text"
+msgid "<item type=\"input\">=AND(12<13;14>12;7<6)</item> returns FALSE."
+msgstr ""
+
+#. 3MAQE
+#: 04060105.xhp
+msgctxt ""
+"04060105.xhp\n"
+"par_id3149946\n"
+"help.text"
+msgid "<item type=\"input\">=AND(FALSE();TRUE())</item> returns FALSE."
+msgstr ""
+
+#. XXJC8
+#: 04060105.xhp
+msgctxt ""
+"04060105.xhp\n"
+"bm_id3149015\n"
+"help.text"
+msgid "<bookmark_value>FALSE function</bookmark_value>"
+msgstr ""
+
+#. dGWkh
+#: 04060105.xhp
+msgctxt ""
+"04060105.xhp\n"
+"hd_id3149015\n"
+"help.text"
+msgid "FALSE"
+msgstr ""
+
+#. DC6FT
+#: 04060105.xhp
+msgctxt ""
+"04060105.xhp\n"
+"par_id3149890\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 ""
+
+#. NGqhh
+#: 04060105.xhp
+msgctxt ""
+"04060105.xhp\n"
+"par_id3150030\n"
+"help.text"
+msgid "FALSE()"
+msgstr ""
+
+#. sqDqw
+#: 04060105.xhp
+msgctxt ""
+"04060105.xhp\n"
+"par_id3154842\n"
+"help.text"
+msgid "<item type=\"input\">=FALSE()</item> returns FALSE"
+msgstr ""
+
+#. UpBg3
+#: 04060105.xhp
+msgctxt ""
+"04060105.xhp\n"
+"par_id3147468\n"
+"help.text"
+msgid "<item type=\"input\">=NOT(FALSE())</item> returns TRUE"
+msgstr ""
+
+#. 5Z3qV
+#: 04060105.xhp
+msgctxt ""
+"04060105.xhp\n"
+"bm_id3150141\n"
+"help.text"
+msgid "<bookmark_value>IF function</bookmark_value>"
+msgstr ""
+
+#. FVAzd
+#: 04060105.xhp
+msgctxt ""
+"04060105.xhp\n"
+"hd_id3150141\n"
+"help.text"
+msgid "IF"
+msgstr ""
+
+#. uai2u
+#: 04060105.xhp
+msgctxt ""
+"04060105.xhp\n"
+"par_id3148740\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_WENN\">Specifies a logical test to be performed.</ahelp>"
+msgstr ""
+
+#. 3CRyJ
+#: 04060105.xhp
+msgctxt ""
+"04060105.xhp\n"
+"par_id3154558\n"
+"help.text"
+msgid "IF(Test [; [ThenValue] [; [OtherwiseValue]]])"
+msgstr ""
+
+#. JnjcT
+#: 04060105.xhp
+msgctxt ""
+"04060105.xhp\n"
+"par_id3149727\n"
+"help.text"
+msgid "<emph>Test</emph> is any value or expression that can be TRUE or FALSE."
+msgstr ""
+
+#. okEGn
+#: 04060105.xhp
+msgctxt ""
+"04060105.xhp\n"
+"par_id3155828\n"
+"help.text"
+msgid "<emph>ThenValue</emph> (optional) is the value that is returned if the logical test is TRUE."
+msgstr ""
+
+#. 7oFXG
+#: 04060105.xhp
+msgctxt ""
+"04060105.xhp\n"
+"par_id3154811\n"
+"help.text"
+msgid "<emph>OtherwiseValue</emph> (optional) is the value that is returned if the logical test is FALSE."
+msgstr ""
+
+#. oRABw
+#: 04060105.xhp
+msgctxt ""
+"04060105.xhp\n"
+"par_id3150867\n"
+"help.text"
+msgid "<input>=IF(A1>5;100;\"too small\")</input> If the value in <literal>A1</literal> is greater than <literal>5</literal>, the value <literal>100</literal> is returned; otherwise, the text <literal>too small</literal> is returned."
+msgstr ""
+
+#. jvk3H
+#: 04060105.xhp
+msgctxt ""
+"04060105.xhp\n"
+"par_id71607569817532\n"
+"help.text"
+msgid "<input>=IF(A1>5;;\"too small\")</input> If the value in <literal>A1</literal> is greater than <literal>5</literal>, the value <literal>0</literal> is returned because empty parameters are considered to be <literal>0</literal>; otherwise, the text <literal>too small</literal> is returned."
+msgstr ""
+
+#. Q6yTs
+#: 04060105.xhp
+msgctxt ""
+"04060105.xhp\n"
+"par_id11607570458867\n"
+"help.text"
+msgid "<input>=IF(A1>5;100;)</input> If the value in <literal>A1</literal> is less than <literal>5</literal>, the value <literal>0</literal> is returned because the empty <emph>OtherwiseValue</emph> is interpreted as <literal>0</literal>; otherwise <literal>100</literal> is returned."
+msgstr ""
+
+#. BKYkX
+#: 04060105.xhp
+msgctxt ""
+"04060105.xhp\n"
+"bm_id3155954\n"
+"help.text"
+msgid "<bookmark_value>NOT function</bookmark_value>"
+msgstr ""
+
+#. GeEjD
+#: 04060105.xhp
+msgctxt ""
+"04060105.xhp\n"
+"hd_id3155954\n"
+"help.text"
+msgid "NOT"
+msgstr ""
+
+#. 6eRtd
+#: 04060105.xhp
+msgctxt ""
+"04060105.xhp\n"
+"par_id3153570\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_NICHT\">Complements (inverts) a logical value.</ahelp>"
+msgstr ""
+
+#. CDMvz
+#: 04060105.xhp
+msgctxt ""
+"04060105.xhp\n"
+"par_id3157996\n"
+"help.text"
+msgid "NOT(LogicalValue)"
+msgstr ""
+
+#. udCpQ
+#: 04060105.xhp
+msgctxt ""
+"04060105.xhp\n"
+"par_id3148766\n"
+"help.text"
+msgid "<emph>LogicalValue</emph> is any value to be complemented."
+msgstr ""
+
+#. JEAat
+#: 04060105.xhp
+msgctxt ""
+"04060105.xhp\n"
+"par_id3150132\n"
+"help.text"
+msgid "<item type=\"input\">=NOT(A)</item>. If A=TRUE then NOT(A) will evaluate FALSE."
+msgstr ""
+
+#. CEGKD
+#: 04060105.xhp
+msgctxt ""
+"04060105.xhp\n"
+"bm_id3148394\n"
+"help.text"
+msgid "<bookmark_value>OR function</bookmark_value>"
+msgstr ""
+
+#. Buy5k
+#: 04060105.xhp
+msgctxt ""
+"04060105.xhp\n"
+"hd_id3148394\n"
+"help.text"
+msgid "OR"
+msgstr ""
+
+#. m726z
+#: 04060105.xhp
+msgctxt ""
+"04060105.xhp\n"
+"par_id3156060\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 ""
+
+#. qjqEk
+#: 04060105.xhp
+msgctxt ""
+"04060105.xhp\n"
+"par_id3148771\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 ""
+
+#. rpDNn
+#: 04060105.xhp
+msgctxt ""
+"04060105.xhp\n"
+"par_id3150468\n"
+"help.text"
+msgid "OR(<embedvar href=\"text/scalc/01/ful_func.xhp#logical255_1\" markup=\"keep\"/>)"
+msgstr ""
+
+#. oFKWj
+#: 04060105.xhp
+msgctxt ""
+"04060105.xhp\n"
+"par_id3154870\n"
+"help.text"
+msgid "The logical values of entries 12<11; 13>22, and 45=45 are to be checked."
+msgstr ""
+
+#. 9QhC8
+#: 04060105.xhp
+msgctxt ""
+"04060105.xhp\n"
+"par_id3155371\n"
+"help.text"
+msgid "<item type=\"input\">=OR(12<11;13>22;45=45)</item> returns TRUE."
+msgstr ""
+
+#. sqF5J
+#: 04060105.xhp
+msgctxt ""
+"04060105.xhp\n"
+"par_id3158412\n"
+"help.text"
+msgid "<item type=\"input\">=OR(FALSE();TRUE())</item> returns TRUE."
+msgstr ""
+
+#. B2UcY
+#: 04060105.xhp
+msgctxt ""
+"04060105.xhp\n"
+"bm_id3156256\n"
+"help.text"
+msgid "<bookmark_value>TRUE function</bookmark_value>"
+msgstr ""
+
+#. dRCa6
+#: 04060105.xhp
+msgctxt ""
+"04060105.xhp\n"
+"hd_id3156256\n"
+"help.text"
+msgid "TRUE"
+msgstr ""
+
+#. HfJge
+#: 04060105.xhp
+msgctxt ""
+"04060105.xhp\n"
+"par_id3155985\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 ""
+
+#. Ag9Yb
+#: 04060105.xhp
+msgctxt ""
+"04060105.xhp\n"
+"par_id3152590\n"
+"help.text"
+msgid "TRUE()"
+msgstr ""
+
+#. WGvhJ
+#: 04060105.xhp
+msgctxt ""
+"04060105.xhp\n"
+"par_id3146148\n"
+"help.text"
+msgid "If A=TRUE and B=FALSE the following examples appear:"
+msgstr ""
+
+#. umEDX
+#: 04060105.xhp
+msgctxt ""
+"04060105.xhp\n"
+"par_id3083285\n"
+"help.text"
+msgid "<item type=\"input\">=AND(A;B)</item> returns FALSE"
+msgstr ""
+
+#. vAGKt
+#: 04060105.xhp
+msgctxt ""
+"04060105.xhp\n"
+"par_id3083444\n"
+"help.text"
+msgid "<item type=\"input\">=OR(A;B)</item> returns TRUE"
+msgstr ""
+
+#. BcGUg
+#: 04060105.xhp
+msgctxt ""
+"04060105.xhp\n"
+"par_id3154314\n"
+"help.text"
+msgid "<item type=\"input\">=NOT(AND(A;B))</item> returns TRUE"
+msgstr ""
+
+#. 7bq9r
+#: 04060105.xhp
+msgctxt ""
+"04060105.xhp\n"
+"bm_id3156257\n"
+"help.text"
+msgid "<bookmark_value>XOR function</bookmark_value>"
+msgstr ""
+
+#. nhmzk
+#: 04060105.xhp
+msgctxt ""
+"04060105.xhp\n"
+"hd_id3156257\n"
+"help.text"
+msgid "XOR"
+msgstr ""
+
+#. ACsTA
+#: 04060105.xhp
+msgctxt ""
+"04060105.xhp\n"
+"par_id3155987\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_XOR\">Returns true if an odd number of arguments evaluates to TRUE.</ahelp>"
+msgstr ""
+
+#. GG7sC
+#: 04060105.xhp
+msgctxt ""
+"04060105.xhp\n"
+"par_id3148772\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 ""
+
+#. fpCVV
+#: 04060105.xhp
+msgctxt ""
+"04060105.xhp\n"
+"par_id3150469\n"
+"help.text"
+msgid "XOR(<embedvar href=\"text/scalc/01/ful_func.xhp#logical255_1\" markup=\"keep\"/>)"
+msgstr ""
+
+#. 2QMxz
+#: 04060105.xhp
+msgctxt ""
+"04060105.xhp\n"
+"par_id3083286\n"
+"help.text"
+msgid "<item type=\"input\">=XOR(TRUE();TRUE())</item> returns FALSE"
+msgstr ""
+
+#. sACsD
+#: 04060105.xhp
+msgctxt ""
+"04060105.xhp\n"
+"par_id3083445\n"
+"help.text"
+msgid "<item type=\"input\">=XOR(TRUE();TRUE();TRUE())</item> returns TRUE"
+msgstr ""
+
+#. Uhsea
+#: 04060105.xhp
+msgctxt ""
+"04060105.xhp\n"
+"par_id3154315\n"
+"help.text"
+msgid "<item type=\"input\">=XOR(FALSE();TRUE())</item> returns TRUE"
+msgstr ""
+
+#. 3Ed6j
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"tit\n"
+"help.text"
+msgid "Mathematical Functions"
+msgstr ""
+
+#. MfxvG
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"bm_id3147124\n"
+"help.text"
+msgid "<bookmark_value>mathematical functions</bookmark_value> <bookmark_value>Function Wizard; mathematical</bookmark_value> <bookmark_value>functions; mathematical functions</bookmark_value> <bookmark_value>trigonometric functions</bookmark_value>"
+msgstr ""
+
+#. BJjDo
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"hd_id3147124\n"
+"help.text"
+msgid "<variable id=\"math_functions_h1\"><link href=\"text/scalc/01/04060106.xhp\" name=\"math_link\">Mathematical Functions</link></variable>"
+msgstr ""
+
+#. jjDha
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3154943\n"
+"help.text"
+msgid "<variable id=\"mathematiktext\">This category contains the <emph>Mathematical</emph> functions for Calc.</variable> To open the <emph>Function Wizard</emph>, choose <link href=\"text/scalc/01/04060000.xhp\" name=\"Insert - Function\"><emph>Insert - Function</emph></link>."
+msgstr ""
+
+#. bWDf7
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"bm_id3146944\n"
+"help.text"
+msgid "<bookmark_value>ABS function</bookmark_value> <bookmark_value>absolute values</bookmark_value> <bookmark_value>values;absolute</bookmark_value>"
+msgstr ""
+
+#. S4FNT
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"hd_id3146944\n"
+"help.text"
+msgid "ABS"
+msgstr ""
+
+#. KEWbx
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3154546\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_ABS\">Returns the absolute value of a number.</ahelp>"
+msgstr ""
+
+#. 3GmDj
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3147475\n"
+"help.text"
+msgid "ABS(Number)"
+msgstr ""
+
+#. dVNFx
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3148438\n"
+"help.text"
+msgid "<emph>Number</emph> is the number whose absolute value is to be calculated. The absolute value of a number is its value without the +/- sign."
+msgstr ""
+
+#. R6vZe
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3152787\n"
+"help.text"
+msgid "<item type=\"input\">=ABS(-56)</item> returns 56."
+msgstr ""
+
+#. c9QEu
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3148752\n"
+"help.text"
+msgid "<item type=\"input\">=ABS(12)</item> returns 12."
+msgstr ""
+
+#. e3LqG
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id320139\n"
+"help.text"
+msgid "<item type=\"input\">=ABS(0)</item> returns 0."
+msgstr ""
+
+#. 84RxC
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"bm_id3153114\n"
+"help.text"
+msgid "<bookmark_value>ACOS function</bookmark_value>"
+msgstr ""
+
+#. F5MCa
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"hd_id3153114\n"
+"help.text"
+msgid "ACOS"
+msgstr ""
+
+#. SAD26
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3145163\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_ARCCOS\">Returns the inverse trigonometric cosine of a number.</ahelp>"
+msgstr ""
+
+#. ntxMG
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3150020\n"
+"help.text"
+msgid "ACOS(Number)"
+msgstr ""
+
+#. 6MmkA
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3159134\n"
+"help.text"
+msgid "This function returns the inverse trigonometric cosine of <emph>Number</emph>, that is the angle (in radians) whose cosine is Number. The angle returned is between 0 and PI."
+msgstr ""
+
+#. u7jVk
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id679647\n"
+"help.text"
+msgid "To return the angle in degrees, use the DEGREES function."
+msgstr ""
+
+#. sAGtp
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3150128\n"
+"help.text"
+msgid "<item type=\"input\">=ACOS(-1)</item> returns 3.14159265358979 (PI radians)"
+msgstr ""
+
+#. Kh3AV
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id8792382\n"
+"help.text"
+msgid "<item type=\"input\">=DEGREES(ACOS(0.5))</item> returns 60. The cosine of 60 degrees is 0.5."
+msgstr ""
+
+#. rRPBB
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"bm_id3145355\n"
+"help.text"
+msgid "<bookmark_value>ACOSH function</bookmark_value>"
+msgstr ""
+
+#. XLYGW
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"hd_id3145355\n"
+"help.text"
+msgid "ACOSH"
+msgstr ""
+
+#. SpAZ3
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3157993\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_ARCOSHYP\">Returns the inverse hyperbolic cosine of a number.</ahelp>"
+msgstr ""
+
+#. wbR3N
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3151017\n"
+"help.text"
+msgid "ACOSH(Number)"
+msgstr ""
+
+#. fjTyF
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3149000\n"
+"help.text"
+msgid "This function returns the inverse hyperbolic cosine of <emph>Number</emph>, that is the number whose hyperbolic cosine is Number."
+msgstr ""
+
+#. kCQGj
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id6393932\n"
+"help.text"
+msgid "Number must be greater than or equal to 1."
+msgstr ""
+
+#. qDtp7
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3145629\n"
+"help.text"
+msgid "<item type=\"input\">=ACOSH(1)</item> returns 0."
+msgstr ""
+
+#. Ak7eS
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id951567\n"
+"help.text"
+msgid "<item type=\"input\">=ACOSH(COSH(4))</item> returns 4."
+msgstr ""
+
+#. hECwE
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"bm_id3149027\n"
+"help.text"
+msgid "<bookmark_value>ACOT function</bookmark_value>"
+msgstr ""
+
+#. EFWFk
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"hd_id3149027\n"
+"help.text"
+msgid "ACOT"
+msgstr ""
+
+#. VGWou
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3155818\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_ARCCOT\">Returns the inverse cotangent (the arccotangent) of the given number.</ahelp>"
+msgstr ""
+
+#. CYA4f
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3158419\n"
+"help.text"
+msgid "ACOT(Number)"
+msgstr ""
+
+#. Y6Tnv
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3154948\n"
+"help.text"
+msgid "This function returns the inverse trigonometric cotangent of <emph>Number</emph>, that is the angle (in radians) whose cotangent is Number. The angle returned is between 0 and PI."
+msgstr ""
+
+#. WEA3S
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id5834528\n"
+"help.text"
+msgid "To return the angle in degrees, use the DEGREES function."
+msgstr ""
+
+#. eqFRT
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3155375\n"
+"help.text"
+msgid "<item type=\"input\">=ACOT(1)</item> returns 0.785398163397448 (PI/4 radians)."
+msgstr ""
+
+#. JUyRV
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id8589434\n"
+"help.text"
+msgid "<item type=\"input\">=DEGREES(ACOT(1))</item> returns 45. The tangent of 45 degrees is 1."
+msgstr ""
+
+#. AB9QA
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"bm_id3148426\n"
+"help.text"
+msgid "<bookmark_value>ACOTH function</bookmark_value>"
+msgstr ""
+
+#. mNPBt
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"hd_id3148426\n"
+"help.text"
+msgid "ACOTH"
+msgstr ""
+
+#. P8Zmx
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3147478\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_ARCOTHYP\">Returns the inverse hyperbolic cotangent of the given number.</ahelp>"
+msgstr ""
+
+#. i7PSV
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3147172\n"
+"help.text"
+msgid "ACOTH(Number)"
+msgstr ""
+
+#. JsEMu
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3146155\n"
+"help.text"
+msgid "This function returns the inverse hyperbolic cotangent of <emph>Number</emph>, that is the number whose hyperbolic cotangent is Number."
+msgstr ""
+
+#. Dr5j2
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id5818659\n"
+"help.text"
+msgid "An error results if Number is between -1 and 1 inclusive."
+msgstr ""
+
+#. mLGSV
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3150608\n"
+"help.text"
+msgid "<item type=\"input\">=ACOTH(1.1)</item> returns inverse hyperbolic cotangent of 1.1, approximately 1.52226."
+msgstr ""
+
+#. oTKxc
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"bm_id3145084\n"
+"help.text"
+msgid "<bookmark_value>ASIN function</bookmark_value>"
+msgstr ""
+
+#. F6oSF
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"hd_id3145084\n"
+"help.text"
+msgid "ASIN"
+msgstr ""
+
+#. JA9Fz
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3156296\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_ARCSIN\">Returns the inverse trigonometric sine of a number.</ahelp>"
+msgstr ""
+
+#. EfpTx
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3156305\n"
+"help.text"
+msgid "ASIN(Number)"
+msgstr ""
+
+#. DqsfM
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3150964\n"
+"help.text"
+msgid "This function returns the inverse trigonometric sine of <emph>Number</emph>, that is the angle (in radians) whose sine is Number. The angle returned is between -PI/2 and +PI/2."
+msgstr ""
+
+#. GT3u9
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id203863\n"
+"help.text"
+msgid "To return the angle in degrees, use the DEGREES function."
+msgstr ""
+
+#. DvuX2
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3156100\n"
+"help.text"
+msgid "<item type=\"input\">=ASIN(0)</item> returns 0."
+msgstr ""
+
+#. MHQDN
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id6853846\n"
+"help.text"
+msgid "<item type=\"input\">=ASIN(1)</item> returns 1.5707963267949 (PI/2 radians)."
+msgstr ""
+
+#. 8einR
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id8772240\n"
+"help.text"
+msgid "<item type=\"input\">=DEGREES(ASIN(0.5))</item> returns 30. The sine of 30 degrees is 0.5."
+msgstr ""
+
+#. Z8cGe
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"bm_id3151266\n"
+"help.text"
+msgid "<bookmark_value>ASINH function</bookmark_value>"
+msgstr ""
+
+#. sD4zM
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"hd_id3151266\n"
+"help.text"
+msgid "ASINH"
+msgstr ""
+
+#. tdY7R
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3147077\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_ARSINHYP\">Returns the inverse hyperbolic sine of a number.</ahelp>"
+msgstr ""
+
+#. eLZmC
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3150882\n"
+"help.text"
+msgid "ASINH(Number)"
+msgstr ""
+
+#. eQBZg
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3147621\n"
+"help.text"
+msgid "This function returns the inverse hyperbolic sine of <emph>Number</emph>, that is the number whose hyperbolic sine is Number."
+msgstr ""
+
+#. gtA6e
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3156120\n"
+"help.text"
+msgid "<item type=\"input\">=ASINH(-90)</item> returns approximately -5.1929877."
+msgstr ""
+
+#. eyAmc
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id4808496\n"
+"help.text"
+msgid "<item type=\"input\">=ASINH(SINH(4))</item> returns 4."
+msgstr ""
+
+#. BYgVh
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"bm_id3155996\n"
+"help.text"
+msgid "<bookmark_value>ATAN function</bookmark_value>"
+msgstr ""
+
+#. zX7QW
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"hd_id3155996\n"
+"help.text"
+msgid "ATAN"
+msgstr ""
+
+#. 6PEyf
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3149985\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_ARCTAN\">Returns the inverse trigonometric tangent of a number.</ahelp>"
+msgstr ""
+
+#. PVCHB
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3150261\n"
+"help.text"
+msgid "ATAN(Number)"
+msgstr ""
+
+#. AngFp
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3147267\n"
+"help.text"
+msgid "This function returns the inverse trigonometric tangent of <emph>Number</emph>, that is the angle (in radians) whose tangent is Number. The angle returned is between -PI/2 and PI/2."
+msgstr ""
+
+#. ovGBQ
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id6293527\n"
+"help.text"
+msgid "To return the angle in degrees, use the DEGREES function."
+msgstr ""
+
+#. ykDum
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3143229\n"
+"help.text"
+msgid "<item type=\"input\">=ATAN(1)</item> returns 0.785398163397448 (PI/4 radians)."
+msgstr ""
+
+#. cee3b
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id8746299\n"
+"help.text"
+msgid "<item type=\"input\">=DEGREES(ATAN(1))</item> returns 45. The tangent of 45 degrees is 1."
+msgstr ""
+
+#. SZJmd
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"bm_id3153983\n"
+"help.text"
+msgid "<bookmark_value>ATAN2 function</bookmark_value>"
+msgstr ""
+
+#. PDmTP
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"hd_id3153983\n"
+"help.text"
+msgid "ATAN2"
+msgstr ""
+
+#. yBHPx
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3154297\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_ARCTAN2\">Returns the angle (in radians) between the x-axis and a line from the origin to the point (NumberX|NumberY).</ahelp>"
+msgstr ""
+
+#. 9E6pr
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3156013\n"
+"help.text"
+msgid "ATAN2(NumberX; NumberY)"
+msgstr ""
+
+#. NBEVV
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3001800\n"
+"help.text"
+msgid "<emph>NumberX</emph> is the value of the x coordinate."
+msgstr ""
+
+#. zoAbN
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3152798\n"
+"help.text"
+msgid "<emph>NumberY</emph> is the value of the y coordinate."
+msgstr ""
+
+#. U46Cz
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id5036168\n"
+"help.text"
+msgid "Programming languages have usually the opposite order of arguments for their atan2() function."
+msgstr ""
+
+#. pSdob
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id5036165\n"
+"help.text"
+msgid "ATAN2 returns the angle (in radians) between the x-axis and a line from the origin to the point (NumberX|NumberY)"
+msgstr ""
+
+#. AhEQK
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3154692\n"
+"help.text"
+msgid "<item type=\"input\">=ATAN2(-5;9)</item> returns 2.07789 radians."
+msgstr ""
+
+#. tPPGL
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id5036166\n"
+"help.text"
+msgid "To get the angle in degrees apply the DEGREES function to the result."
+msgstr ""
+
+#. jrGY3
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id1477095\n"
+"help.text"
+msgid "<input>=DEGREES(ATAN2(12.3;12.3))</input> returns 45. The tangent of 45 degrees is 1."
+msgstr ""
+
+#. FhesC
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id5036167\n"
+"help.text"
+msgid "%PRODUCTNAME results 0 for ATAN2(0;0)."
+msgstr ""
+
+#. BCKQE
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id5036169\n"
+"help.text"
+msgid "The function can be used in converting cartesian coordinates to polar coordinates."
+msgstr ""
+
+#. dtCje
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id5036170\n"
+"help.text"
+msgid "=DEGREES(ATAN2(-8;5)) returns φ = 147.9 degrees"
+msgstr ""
+
+#. hN94X
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id5036171\n"
+"help.text"
+msgid "<image id=\"img_id3150758\" src=\"media/helpimg/scalc/coordinates-to-polar-01.svg\" width=\"2.5inch\" height=\"1.5inch\"><alt id=\"alt_id3150758\">Cartesian coordinates to polar coordinates example</alt></image>"
+msgstr ""
+
+#. 3DEVB
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"bm_id3155398\n"
+"help.text"
+msgid "<bookmark_value>ATANH function</bookmark_value>"
+msgstr ""
+
+#. nUuLQ
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"hd_id3155398\n"
+"help.text"
+msgid "ATANH"
+msgstr ""
+
+#. TVqPD
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3148829\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_ARTANHYP\">Returns the inverse hyperbolic tangent of a number.</ahelp>"
+msgstr ""
+
+#. oMmDc
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3149912\n"
+"help.text"
+msgid "ATANH(Number)"
+msgstr ""
+
+#. 6weQk
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3150521\n"
+"help.text"
+msgid "This function returns the inverse hyperbolic tangent of <emph>Number</emph>, that is the number whose hyperbolic tangent is Number."
+msgstr ""
+
+#. QHNfx
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id9357280\n"
+"help.text"
+msgid "Number must obey the condition -1 < number < 1."
+msgstr ""
+
+#. 2yvkB
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3145419\n"
+"help.text"
+msgid "<item type=\"input\">=ATANH(0)</item> returns 0."
+msgstr ""
+
+#. BDoVi
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"bm_id3153062\n"
+"help.text"
+msgid "<bookmark_value>COS function</bookmark_value>"
+msgstr ""
+
+#. XzBbb
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"hd_id3153062\n"
+"help.text"
+msgid "COS"
+msgstr ""
+
+#. tTzYB
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3148803\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_COS\">Returns the cosine of the given angle (in radians).</ahelp>"
+msgstr ""
+
+#. FJPfz
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3154213\n"
+"help.text"
+msgid "COS(Number)"
+msgstr ""
+
+#. TanXc
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3154285\n"
+"help.text"
+msgid "Returns the (trigonometric) cosine of <emph>Number</emph>, the angle in radians."
+msgstr ""
+
+#. BiXGc
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id831019\n"
+"help.text"
+msgid "To return the cosine of an angle in degrees, use the RADIANS function."
+msgstr ""
+
+#. rFubR
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3147241\n"
+"help.text"
+msgid "<item type=\"input\">=COS(PI()*2)</item> returns 1, the cosine of 2*PI radians."
+msgstr ""
+
+#. 6x9f7
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3147516\n"
+"help.text"
+msgid "<item type=\"input\">=COS(RADIANS(60))</item> returns 0.5, the cosine of 60 degrees."
+msgstr ""
+
+#. gCsfT
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"bm_id3154277\n"
+"help.text"
+msgid "<bookmark_value>COSH function</bookmark_value>"
+msgstr ""
+
+#. ZwP9Q
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"hd_id3154277\n"
+"help.text"
+msgid "COSH"
+msgstr ""
+
+#. LyaEw
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3146946\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_COSHYP\">Returns the hyperbolic cosine of a number.</ahelp>"
+msgstr ""
+
+#. qXhJu
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3166440\n"
+"help.text"
+msgid "COSH(Number)"
+msgstr ""
+
+#. egMaN
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3150710\n"
+"help.text"
+msgid "Returns the hyperbolic cosine of <emph>Number</emph>."
+msgstr ""
+
+#. DgX9K
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3154099\n"
+"help.text"
+msgid "<item type=\"input\">=COSH(0)</item> returns 1, the hyperbolic cosine of 0."
+msgstr ""
+
+#. 6WAMu
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"bm_id3152888\n"
+"help.text"
+msgid "<bookmark_value>COT function</bookmark_value>"
+msgstr ""
+
+#. aHGYN
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"hd_id3152888\n"
+"help.text"
+msgid "COT"
+msgstr ""
+
+#. qgHDF
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3153679\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_COT\">Returns the cotangent of the given angle (in radians).</ahelp>"
+msgstr ""
+
+#. cCazR
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3154856\n"
+"help.text"
+msgid "COT(Number)"
+msgstr ""
+
+#. eRLBR
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3149969\n"
+"help.text"
+msgid "Returns the (trigonometric) cotangent of <emph>Number</emph>, the angle in radians."
+msgstr ""
+
+#. pA8y3
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3444624\n"
+"help.text"
+msgid "To return the cotangent of an angle in degrees, use the RADIANS function."
+msgstr ""
+
+#. QfgqG
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id6814477\n"
+"help.text"
+msgid "The cotangent of an angle is equivalent to 1 divided by the tangent of that angle."
+msgstr ""
+
+#. aPDaf
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"hd_id3149800\n"
+"help.text"
+msgid "Examples:"
+msgstr ""
+
+#. mUsra
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3148616\n"
+"help.text"
+msgid "<item type=\"input\">=COT(PI()/4)</item> returns 1, the cotangent of PI/4 radians."
+msgstr ""
+
+#. jbN84
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3148986\n"
+"help.text"
+msgid "<item type=\"input\">=COT(RADIANS(45))</item> returns 1, the cotangent of 45 degrees."
+msgstr ""
+
+#. AZUAZ
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"bm_id3154337\n"
+"help.text"
+msgid "<bookmark_value>COTH function</bookmark_value>"
+msgstr ""
+
+#. tJD2K
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"hd_id3154337\n"
+"help.text"
+msgid "COTH"
+msgstr ""
+
+#. YAso4
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3149419\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_COTHYP\">Returns the hyperbolic cotangent of a given number (angle).</ahelp>"
+msgstr ""
+
+#. o6noH
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3143280\n"
+"help.text"
+msgid "COTH(Number)"
+msgstr ""
+
+#. Qqbk2
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3154799\n"
+"help.text"
+msgid "Returns the hyperbolic cotangent of <emph>Number</emph>."
+msgstr ""
+
+#. QrdqZ
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3144754\n"
+"help.text"
+msgid "<item type=\"input\">=COTH(1)</item> returns the hyperbolic cotangent of 1, approximately 1.3130."
+msgstr ""
+
+#. EVzqS
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"bm_id6110552\n"
+"help.text"
+msgid "<bookmark_value>CSC function</bookmark_value>"
+msgstr ""
+
+#. dTCyN
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"hd_id9523234\n"
+"help.text"
+msgid "CSC"
+msgstr ""
+
+#. y7Bzh
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id4896433\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_COSECANT\">Returns the cosecant of the given angle (in radians). The cosecant of an angle is equivalent to 1 divided by the sine of that angle</ahelp>"
+msgstr ""
+
+#. HMATE
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id4571344\n"
+"help.text"
+msgid "CSC(Number)"
+msgstr ""
+
+#. gcmdd
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id9859164\n"
+"help.text"
+msgid "Returns the (trigonometric) cosecant of <emph>Number</emph>, the angle in radians."
+msgstr ""
+
+#. otbLh
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3428494\n"
+"help.text"
+msgid "To return the cosecant of an angle in degrees, use the RADIANS function."
+msgstr ""
+
+#. xtRtt
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3736803\n"
+"help.text"
+msgid "<item type=\"input\">=CSC(PI()/4)</item> returns approximately 1.4142135624, the inverse of the sine of PI/4 radians."
+msgstr ""
+
+#. EDhxM
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id6016818\n"
+"help.text"
+msgid "<item type=\"input\">=CSC(RADIANS(30))</item> returns 2, the cosecant of 30 degrees."
+msgstr ""
+
+#. a29rz
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"bm_id9288877\n"
+"help.text"
+msgid "<bookmark_value>CSCH function</bookmark_value>"
+msgstr ""
+
+#. n4wBf
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"hd_id4325650\n"
+"help.text"
+msgid "CSCH"
+msgstr ""
+
+#. aCTaF
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id579916\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_COSECANTHYP\">Returns the hyperbolic cosecant of a number.</ahelp>"
+msgstr ""
+
+#. qHzpR
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3108851\n"
+"help.text"
+msgid "CSCH(Number)"
+msgstr ""
+
+#. EYEtM
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id1394188\n"
+"help.text"
+msgid "Returns the hyperbolic cosecant of <emph>Number</emph>."
+msgstr ""
+
+#. tyNpX
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id5426085\n"
+"help.text"
+msgid "<item type=\"input\">=CSCH(1)</item> returns approximately 0.8509181282, the hyperbolic cosecant of 1."
+msgstr ""
+
+#. DZijx
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"bm_id3145314\n"
+"help.text"
+msgid "<bookmark_value>DEGREES function</bookmark_value> <bookmark_value>converting;radians, into degrees</bookmark_value>"
+msgstr ""
+
+#. VcwXQ
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"hd_id3145314\n"
+"help.text"
+msgid "DEGREES"
+msgstr ""
+
+#. RSBdF
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3149939\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_DEG\">Converts radians into degrees.</ahelp>"
+msgstr ""
+
+#. EdDXa
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3145600\n"
+"help.text"
+msgid "DEGREES(Number)"
+msgstr ""
+
+#. KiEbe
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3149484\n"
+"help.text"
+msgid "<emph>Number</emph> is the angle in radians to be converted to degrees."
+msgstr ""
+
+#. iFMmJ
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3459578\n"
+"help.text"
+msgid "<item type=\"input\">=DEGREES(PI())</item> returns 180 degrees."
+msgstr ""
+
+#. CueCo
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"bm_id3148698\n"
+"help.text"
+msgid "<bookmark_value>EXP function</bookmark_value>"
+msgstr ""
+
+#. F87iB
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"hd_id3148698\n"
+"help.text"
+msgid "EXP"
+msgstr ""
+
+#. N7FBG
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3150592\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_EXP\">Returns <literal>e</literal> raised to the power of a number.</ahelp> The constant <literal>e</literal> has a value of approximately 2.71828182845904."
+msgstr ""
+
+#. KxMFL
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3146786\n"
+"help.text"
+msgid "EXP(Number)"
+msgstr ""
+
+#. XCACW
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3155608\n"
+"help.text"
+msgid "<emph>Number</emph> is the power to which e is to be raised."
+msgstr ""
+
+#. LfQsb
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3156340\n"
+"help.text"
+msgid "<item type=\"input\">=EXP(1)</item> returns 2.71828182845904, the mathematical constant <literal>e</literal> to Calc's accuracy."
+msgstr ""
+
+#. MSQJQ
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"bm_id3145781\n"
+"help.text"
+msgid "<bookmark_value>FACT function</bookmark_value> <bookmark_value>factorials;numbers</bookmark_value>"
+msgstr ""
+
+#. gRoFa
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"hd_id3145781\n"
+"help.text"
+msgid "FACT"
+msgstr ""
+
+#. GKdpm
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3151109\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_FAKULTAET\">Returns the factorial of a number.</ahelp>"
+msgstr ""
+
+#. kxNxM
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3154661\n"
+"help.text"
+msgid "FACT(Number)"
+msgstr ""
+
+#. AG3DF
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3152952\n"
+"help.text"
+msgid "Returns Number!, the factorial of <emph>Number</emph>, calculated as 1*2*3*4* ... * Number."
+msgstr ""
+
+#. hqDwK
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3834650\n"
+"help.text"
+msgid "=FACT(0) returns 1 by definition."
+msgstr ""
+
+#. 32HWE
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id8429517\n"
+"help.text"
+msgid "The factorial of a negative number returns the \"invalid argument\" error."
+msgstr ""
+
+#. ApvRx
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3154476\n"
+"help.text"
+msgid "<item type=\"input\">=FACT(3)</item> returns 6."
+msgstr ""
+
+#. Bu95p
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3147525\n"
+"help.text"
+msgid "<item type=\"input\">=FACT(0)</item> returns 1."
+msgstr ""
+
+#. 5aEzT
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"bm_id3159084\n"
+"help.text"
+msgid "<bookmark_value>INT function</bookmark_value> <bookmark_value>numbers;rounding down to next integer</bookmark_value> <bookmark_value>rounding;down to next integer</bookmark_value>"
+msgstr ""
+
+#. zgSmG
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"hd_id3159084\n"
+"help.text"
+msgid "INT"
+msgstr ""
+
+#. 2UZh7
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3158441\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_GANZZAHL\">Rounds a number down to the nearest integer.</ahelp>"
+msgstr ""
+
+#. GbYyK
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3156146\n"
+"help.text"
+msgid "INT(Number)"
+msgstr ""
+
+#. ymMQD
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3154117\n"
+"help.text"
+msgid "Returns <emph>Number</emph> rounded down to the nearest integer."
+msgstr ""
+
+#. q7hmv
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id153508\n"
+"help.text"
+msgid "Negative numbers round down to the integer below."
+msgstr ""
+
+#. SdXpJ
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3156267\n"
+"help.text"
+msgid "<item type=\"input\">=INT(5.7)</item> returns 5."
+msgstr ""
+
+#. sRKGB
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3147323\n"
+"help.text"
+msgid "<item type=\"input\">=INT(-1.3)</item> returns -2."
+msgstr ""
+
+#. LhjQ2
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"bm_id3150938\n"
+"help.text"
+msgid "<bookmark_value>EVEN function</bookmark_value> <bookmark_value>numbers;rounding up/down to even integers</bookmark_value> <bookmark_value>rounding;up/down to even integers</bookmark_value>"
+msgstr ""
+
+#. GDwDC
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"hd_id3150938\n"
+"help.text"
+msgid "EVEN"
+msgstr ""
+
+#. nVnh3
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3149988\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_GERADE\">Rounds a positive number up to the next even integer and a negative number down to the next even integer.</ahelp>"
+msgstr ""
+
+#. bh367
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3150830\n"
+"help.text"
+msgid "EVEN(Number)"
+msgstr ""
+
+#. wWhFL
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3153350\n"
+"help.text"
+msgid "Returns <emph>Number</emph> rounded to the next even integer up, away from zero."
+msgstr ""
+
+#. LrmpS
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3154361\n"
+"help.text"
+msgid "<item type=\"input\">=EVEN(2.3)</item> returns 4."
+msgstr ""
+
+#. HBaDD
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id8477736\n"
+"help.text"
+msgid "<item type=\"input\">=EVEN(2)</item> returns 2."
+msgstr ""
+
+#. ajTE5
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id159611\n"
+"help.text"
+msgid "<item type=\"input\">=EVEN(0)</item> returns 0."
+msgstr ""
+
+#. PsGTE
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id6097598\n"
+"help.text"
+msgid "<item type=\"input\">=EVEN(-0.5)</item> returns -2."
+msgstr ""
+
+#. 4J7bQ
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"bm_id3147356\n"
+"help.text"
+msgid "<bookmark_value>GCD function</bookmark_value> <bookmark_value>greatest common divisor</bookmark_value>"
+msgstr ""
+
+#. VmHjN
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"hd_id3147356\n"
+"help.text"
+msgid "GCD"
+msgstr ""
+
+#. KTtGQ
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3152465\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_GGT\">Returns the greatest common divisor of two or more integers.</ahelp>"
+msgstr ""
+
+#. xT9mo
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id2769249\n"
+"help.text"
+msgid "The greatest common divisor is the positive largest integer which will divide, without remainder, each of the given integers."
+msgstr ""
+
+#. 84G6i
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3154524\n"
+"help.text"
+msgid "GCD(<embedvar href=\"text/scalc/01/ful_func.xhp#integer255_1\" markup=\"keep\"/>)"
+msgstr ""
+
+#. EeAKi
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3151285\n"
+"help.text"
+msgid "<item type=\"input\">=GCD(16;32;24) </item>gives the result 8, because 8 is the largest number that can divide 16, 24 and 32 without a remainder."
+msgstr ""
+
+#. 2sJeC
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id1604663\n"
+"help.text"
+msgid "<item type=\"input\">=GCD(B1:B3)</item> where cells B1, B2, B3 contain <item type=\"input\">9</item>, <item type=\"input\">12</item>, <item type=\"input\">9</item> gives 3."
+msgstr ""
+
+#. BAgCU
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"bm_id3151221\n"
+"help.text"
+msgid "<bookmark_value>GCD_EXCEL2003 function</bookmark_value>"
+msgstr ""
+
+#. VkkCe
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"hd_id3151221\n"
+"help.text"
+msgid "GCD_EXCEL2003"
+msgstr ""
+
+#. DHitQ
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3153257\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_GCD\">The result is the greatest common divisor of a list of numbers.</ahelp>"
+msgstr ""
+
+#. gQ2S4
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3156205\n"
+"help.text"
+msgid "GCD_EXCEL2003(<embedvar href=\"text/scalc/01/ful_func.xhp#number255_1\" markup=\"keep\"/>)"
+msgstr ""
+
+#. wNE9S
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3159192\n"
+"help.text"
+msgid "<item type=\"input\">=GCD_EXCEL2003(5;15;25)</item> returns 5."
+msgstr ""
+
+#. AJkGT
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"bm_id3145213\n"
+"help.text"
+msgid "<bookmark_value>LCM function</bookmark_value> <bookmark_value>least common multiples</bookmark_value> <bookmark_value>lowest common multiples</bookmark_value>"
+msgstr ""
+
+#. BJBud
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"hd_id3145213\n"
+"help.text"
+msgid "LCM"
+msgstr ""
+
+#. DTyGa
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3146814\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_KGV\">Returns the least common multiple of one or more integers.</ahelp>"
+msgstr ""
+
+#. BeETS
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3147279\n"
+"help.text"
+msgid "LCM(<embedvar href=\"text/scalc/01/ful_func.xhp#integer255_1\" markup=\"keep\"/>)"
+msgstr ""
+
+#. gzLdr
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3154914\n"
+"help.text"
+msgid "If you enter the numbers 512; 1024 and 2000 as Integer 1;2 and 3, then 128000 will be returned."
+msgstr ""
+
+#. 7vjBB
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"bm_id3154230\n"
+"help.text"
+msgid "<bookmark_value>LCM_EXCEL2003 function</bookmark_value>"
+msgstr ""
+
+#. siTH6
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"hd_id3154230\n"
+"help.text"
+msgid "LCM_EXCEL2003"
+msgstr ""
+
+#. pqCN4
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3149036\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_LCM\">The result is the lowest common multiple of a list of numbers.</ahelp>"
+msgstr ""
+
+#. ZVaoq
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3154395\n"
+"help.text"
+msgid "LCM_EXCEL2003(<embedvar href=\"text/scalc/01/ful_func.xhp#number255_1\" markup=\"keep\"/>)"
+msgstr ""
+
+#. dNCeM
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3145135\n"
+"help.text"
+msgid "<item type=\"input\">=LCM_EXCEL2003(5;15;25)</item> returns 75."
+msgstr ""
+
+#. PhQxF
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"bm_id3155802\n"
+"help.text"
+msgid "<bookmark_value>COMBIN function</bookmark_value> <bookmark_value>number of combinations</bookmark_value>"
+msgstr ""
+
+#. vR7NL
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"hd_id3155802\n"
+"help.text"
+msgid "COMBIN"
+msgstr ""
+
+#. JdDPP
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3156172\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_KOMBINATIONEN\">Returns the number of combinations for elements without repetition.</ahelp>"
+msgstr ""
+
+#. 8ZF6S
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3150223\n"
+"help.text"
+msgid "COMBIN(Count1; Count2)"
+msgstr ""
+
+#. mEQbD
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3150313\n"
+"help.text"
+msgid "<emph>Count1</emph> is the number of items in the set."
+msgstr ""
+
+#. tMK8t
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3153830\n"
+"help.text"
+msgid "<emph>Count2</emph> is the number of items to choose from the set."
+msgstr ""
+
+#. UaEB6
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id6807458\n"
+"help.text"
+msgid "COMBIN returns the number of ordered ways to choose these items. For example if there are 3 items A, B and C in a set, you can choose 2 items in 3 different ways, namely AB, AC and BC."
+msgstr ""
+
+#. uyeAg
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id7414471\n"
+"help.text"
+msgid "COMBIN implements the formula: Count1!/(Count2!*(Count1-Count2)!)"
+msgstr ""
+
+#. AEKgR
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3153517\n"
+"help.text"
+msgid "<item type=\"input\">=COMBIN(3;2)</item> returns 3."
+msgstr ""
+
+#. rM79v
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"bm_id3150284\n"
+"help.text"
+msgid "<bookmark_value>COMBINA function</bookmark_value> <bookmark_value>number of combinations with repetitions</bookmark_value>"
+msgstr ""
+
+#. pET9x
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"hd_id3150284\n"
+"help.text"
+msgid "COMBINA"
+msgstr ""
+
+#. A5Pzi
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3157894\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_KOMBINATIONEN2\">Returns the number of combinations of a subset of items including repetitions.</ahelp>"
+msgstr ""
+
+#. Gas8L
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3145765\n"
+"help.text"
+msgid "COMBINA(Count1; Count2)"
+msgstr ""
+
+#. kGFDH
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3153372\n"
+"help.text"
+msgid "<emph>Count1</emph> is the number of items in the set."
+msgstr ""
+
+#. GfeiC
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3155544\n"
+"help.text"
+msgid "<emph>Count2</emph> is the number of items to choose from the set."
+msgstr ""
+
+#. ZkcAF
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id1997131\n"
+"help.text"
+msgid "COMBINA returns the number of unique ways to choose these items, where the order of choosing is irrelevant, and repetition of items is allowed. For example if there are 3 items A, B and C in a set, you can choose 2 items in 6 different ways, namely AA, AB, AC, BB, BC and CC."
+msgstr ""
+
+#. MCEcT
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id2052064\n"
+"help.text"
+msgid "COMBINA implements the formula: (Count1+Count2-1)! / (Count2!(Count1-1)!)"
+msgstr ""
+
+#. AGZXg
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3152904\n"
+"help.text"
+msgid "<item type=\"input\">=COMBINA(3;2)</item> returns 6."
+msgstr ""
+
+#. ABMYW
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"hd_id561641930400206\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/func_trunc.xhp\" name=\"trunc_link\">TRUNC</link>"
+msgstr ""
+
+#. MQVNf
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"bm_id3153601\n"
+"help.text"
+msgid "<bookmark_value>LN function</bookmark_value> <bookmark_value>natural logarithm</bookmark_value>"
+msgstr ""
+
+#. GpboX
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"hd_id3153601\n"
+"help.text"
+msgid "LN"
+msgstr ""
+
+#. 4F6Qb
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3154974\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_LN\">Returns the natural logarithm based on the constant e of a number.</ahelp> The constant e has a value of approximately 2.71828182845904."
+msgstr ""
+
+#. GEMgC
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3155284\n"
+"help.text"
+msgid "LN(Number)"
+msgstr ""
+
+#. MCdjX
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3155297\n"
+"help.text"
+msgid "<emph>Number</emph> is the value whose natural logarithm is to be calculated."
+msgstr ""
+
+#. xfwKK
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3153866\n"
+"help.text"
+msgid "<item type=\"input\">=LN(3)</item> returns the natural logarithm of 3 (approximately 1.0986)."
+msgstr ""
+
+#. 9DhTA
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id5747245\n"
+"help.text"
+msgid "<item type=\"input\">=LN(EXP(321))</item> returns 321."
+msgstr ""
+
+#. QRQey
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"bm_id3109813\n"
+"help.text"
+msgid "<bookmark_value>LOG function</bookmark_value> <bookmark_value>logarithms</bookmark_value>"
+msgstr ""
+
+#. k6VDK
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"hd_id3109813\n"
+"help.text"
+msgid "LOG"
+msgstr ""
+
+#. FszZ4
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3109841\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_LOG\">Returns the logarithm of a number to the specified base.</ahelp>"
+msgstr ""
+
+#. uDAq7
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3144732\n"
+"help.text"
+msgid "LOG(Number [; Base])"
+msgstr ""
+
+#. Eiqiq
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3144746\n"
+"help.text"
+msgid "<emph>Number</emph> is the value whose logarithm is to be calculated."
+msgstr ""
+
+#. uUuEv
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3152840\n"
+"help.text"
+msgid "<emph>Base</emph> (optional) is the base for the logarithm calculation. If omitted, Base 10 is assumed."
+msgstr ""
+
+#. 8DQ5A
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3154429\n"
+"help.text"
+msgid "<item type=\"input\">=LOG(10;3)</item> returns the logarithm to base 3 of 10 (approximately 2.0959)."
+msgstr ""
+
+#. GexW3
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id5577562\n"
+"help.text"
+msgid "<item type=\"input\">=LOG(7^4;7)</item> returns 4."
+msgstr ""
+
+#. Gawm7
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"bm_id3154187\n"
+"help.text"
+msgid "<bookmark_value>LOG10 function</bookmark_value> <bookmark_value>base-10 logarithm</bookmark_value>"
+msgstr ""
+
+#. bPrhC
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"hd_id3154187\n"
+"help.text"
+msgid "LOG10"
+msgstr ""
+
+#. JkBKm
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3155476\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_LOG10\">Returns the base-10 logarithm of a number.</ahelp>"
+msgstr ""
+
+#. LB4Zp
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3159294\n"
+"help.text"
+msgid "LOG10(Number)"
+msgstr ""
+
+#. oig3w
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3159308\n"
+"help.text"
+msgid "Returns the logarithm to base 10 of <emph>Number</emph>."
+msgstr ""
+
+#. QKKaG
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3157916\n"
+"help.text"
+msgid "<item type=\"input\">=LOG10(5)</item> returns the base-10 logarithm of 5 (approximately 0.69897)."
+msgstr ""
+
+#. tQjUA
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"bm_id3157762\n"
+"help.text"
+msgid "<bookmark_value>PI function</bookmark_value>"
+msgstr ""
+
+#. kbhnE
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"hd_id3157762\n"
+"help.text"
+msgid "PI"
+msgstr ""
+
+#. n5WEA
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3157790\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_PI\">Returns 3.14159265358979, the value of the mathematical constant PI to 14 decimal places.</ahelp>"
+msgstr ""
+
+#. nwa3w
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3157822\n"
+"help.text"
+msgid "PI()"
+msgstr ""
+
+#. fdmnV
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3152370\n"
+"help.text"
+msgid "<item type=\"input\">=PI()</item> returns 3.14159265358979."
+msgstr ""
+
+#. kARhB
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"bm_id3152418\n"
+"help.text"
+msgid "<bookmark_value>MULTINOMIAL function</bookmark_value>"
+msgstr ""
+
+#. DokVx
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"hd_id3152418\n"
+"help.text"
+msgid "MULTINOMIAL"
+msgstr ""
+
+#. 2BkmB
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3152454\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_MULTINOMIAL\">Returns the factorial of the sum of the arguments divided by the product of the factorials of the arguments.</ahelp>"
+msgstr ""
+
+#. sRmYD
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3155660\n"
+"help.text"
+msgid "MULTINOMIAL(<embedvar href=\"text/scalc/01/ful_func.xhp#number255_1\" markup=\"keep\"/>)"
+msgstr ""
+
+#. YLFwC
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3155701\n"
+"help.text"
+msgid "<item type=\"input\">=MULTINOMIAL(F11:H11)</item> returns 1260, if F11 to H11 contain the values <item type=\"input\">2</item>, <item type=\"input\">3</item> and <item type=\"input\">4</item>. This corresponds to the formula =(2+3+4)! / (2!*3!*4!)"
+msgstr ""
+
+#. DJHF8
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"bm_id3155717\n"
+"help.text"
+msgid "<bookmark_value>POWER function</bookmark_value>"
+msgstr ""
+
+#. NVcSc
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"hd_id3155717\n"
+"help.text"
+msgid "POWER"
+msgstr ""
+
+#. eo9hr
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3159495\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_POTENZ\">Returns a number raised to another number.</ahelp>"
+msgstr ""
+
+#. tfGiC
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3159526\n"
+"help.text"
+msgid "POWER(Base; Exponent)"
+msgstr ""
+
+#. mvLqV
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3159540\n"
+"help.text"
+msgid "Returns <emph>Base</emph> raised to the power of <emph>Exponent</emph>."
+msgstr ""
+
+#. 2SWri
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id5081637\n"
+"help.text"
+msgid "The same result may be achieved by using the exponentiation operator ^:"
+msgstr ""
+
+#. G5Ljj
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id9759514\n"
+"help.text"
+msgid "<item type=\"literal\">Base^Exponent</item>"
+msgstr ""
+
+#. dRQh7
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id241599040594931\n"
+"help.text"
+msgid "<literal>=POWER(0,0)</literal> returns 1."
+msgstr ""
+
+#. D3Ghv
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3159594\n"
+"help.text"
+msgid "<item type=\"input\">=POWER(4;3)</item> returns 64, which is 4 to the power of 3."
+msgstr ""
+
+#. cYbfn
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id1614429\n"
+"help.text"
+msgid "=4^3 also returns 4 to the power of 3."
+msgstr ""
+
+#. ZkERL
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"bm_id3152651\n"
+"help.text"
+msgid "<bookmark_value>SERIESSUM function</bookmark_value>"
+msgstr ""
+
+#. X4s2j
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"hd_id3152651\n"
+"help.text"
+msgid "SERIESSUM"
+msgstr ""
+
+#. HJFvh
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3152688\n"
+"help.text"
+msgid "<ahelp hid=\".\">Sums the first terms of a power series.</ahelp>"
+msgstr ""
+
+#. PffuD
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3152708\n"
+"help.text"
+msgid "SERIESSUM(x;n;m;c) = c<sub>1</sub>x<sup>n</sup> + c<sub>2</sub>x<sup>n+m</sup> + c<sub>3</sub>x<sup>n+2m</sup> + ... + c<sub>i</sub>x<sup>n + (i-1)m</sup>."
+msgstr ""
+
+#. BM5eM
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_idN11BD9\n"
+"help.text"
+msgid "SERIESSUM(X; N; M; Coefficients)"
+msgstr ""
+
+#. BGBD2
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3152737\n"
+"help.text"
+msgid "<emph>X</emph> is the input value for the power series."
+msgstr ""
+
+#. WC7HT
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3144344\n"
+"help.text"
+msgid "<emph>N</emph> is the initial power"
+msgstr ""
+
+#. iCF77
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3144357\n"
+"help.text"
+msgid "<emph>M</emph> is the increment to increase N"
+msgstr ""
+
+#. V33vy
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3144370\n"
+"help.text"
+msgid "<emph>Coefficients</emph> is a series of coefficients. For each coefficient the series sum is extended by one section."
+msgstr ""
+
+#. 4od8N
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id431635251540138\n"
+"help.text"
+msgid "<input>=SERIESSUM(A1; 0; 1; {1; 2; 3})</input> calculates the value of 1+2x+3x<sup>2</sup>, where x is the value in cell A1. If A1 contains 1, the formula returns 6; if A1 contains 2, the formula returns 17; if A1 contains 3, the formula returns 34; and so on."
+msgstr ""
+
+#. i8GB7
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id881635251427220\n"
+"help.text"
+msgid "Refer to the <link href=\"https://wiki.documentfoundation.org/Documentation/Calc_Functions/SERIESSUM\" name=\"SERIESSUM_Wiki\">SERIESSUM</link> wiki page for more details about this function."
+msgstr ""
+
+#. cEDZn
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"bm_id3144386\n"
+"help.text"
+msgid "<bookmark_value>PRODUCT function</bookmark_value> <bookmark_value>numbers;multiplying</bookmark_value> <bookmark_value>multiplying;numbers</bookmark_value>"
+msgstr ""
+
+#. oEDYA
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"hd_id3144386\n"
+"help.text"
+msgid "PRODUCT"
+msgstr ""
+
+#. tjrCV
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3144414\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_PRODUKT\">Multiplies all the numbers given as arguments and returns the product.</ahelp>"
+msgstr ""
+
+#. Lsojw
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3144446\n"
+"help.text"
+msgid "PRODUCT(<embedvar href=\"text/scalc/01/ful_func.xhp#number255_1\" markup=\"keep\"/>)"
+msgstr ""
+
+#. D5DEG
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3144494\n"
+"help.text"
+msgid "<item type=\"input\">=PRODUCT(2;3;4)</item> returns 24."
+msgstr ""
+
+#. Kozdq
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"bm_id3160340\n"
+"help.text"
+msgid "<bookmark_value>SUMSQ function</bookmark_value> <bookmark_value>square number additions</bookmark_value> <bookmark_value>sums;of square numbers</bookmark_value>"
+msgstr ""
+
+#. iGusH
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"hd_id3160340\n"
+"help.text"
+msgid "SUMSQ"
+msgstr ""
+
+#. XFoEC
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3160368\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_QUADRATESUMME\">Calculates the sum of the squares of a set of numbers.</ahelp>"
+msgstr ""
+
+#. 2gNvN
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3160402\n"
+"help.text"
+msgid "SUMSQ(<embedvar href=\"text/scalc/01/ful_func.xhp#number255_1\" markup=\"keep\"/>)"
+msgstr ""
+
+#. ANvo3
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3160449\n"
+"help.text"
+msgid "If you enter the numbers 2; 3 and 4 in the Number 1; 2 and 3 arguments, 29 is returned as the result."
+msgstr ""
+
+#. KGako
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"bm_id3158247\n"
+"help.text"
+msgid "<bookmark_value>MOD function</bookmark_value> <bookmark_value>remainders of divisions</bookmark_value>"
+msgstr ""
+
+#. DXHBT
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"hd_id3158247\n"
+"help.text"
+msgid "MOD"
+msgstr ""
+
+#. URQsi
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3158276\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_REST\">Returns the remainder when one integer is divided by another.</ahelp>"
+msgstr ""
+
+#. Ngib7
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3158308\n"
+"help.text"
+msgid "MOD(Dividend; Divisor)"
+msgstr ""
+
+#. SVHHj
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3158321\n"
+"help.text"
+msgid "For integer arguments this function returns Dividend modulo Divisor, that is the remainder when <emph>Dividend</emph> is divided by <emph>Divisor</emph>."
+msgstr ""
+
+#. BF5sT
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3158341\n"
+"help.text"
+msgid "This function is implemented as <item type=\"literal\">Dividend - Divisor * INT(Dividend/Divisor)</item> , and this formula gives the result if the arguments are not integer."
+msgstr ""
+
+#. vqHs7
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3158374\n"
+"help.text"
+msgid "<item type=\"input\">=MOD(22;3)</item> returns 1, the remainder when 22 is divided by 3."
+msgstr ""
+
+#. VSYRx
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id1278420\n"
+"help.text"
+msgid "<item type=\"input\">=MOD(11.25;2.5)</item> returns 1.25."
+msgstr ""
+
+#. FW2ex
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"bm_id3144592\n"
+"help.text"
+msgid "<bookmark_value>QUOTIENT function</bookmark_value> <bookmark_value>divisions</bookmark_value>"
+msgstr ""
+
+#. r5p4P
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"hd_id3144592\n"
+"help.text"
+msgid "QUOTIENT"
+msgstr ""
+
+#. FdxeA
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3144627\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_QUOTIENT\">Returns the integer part of a division operation.</ahelp>"
+msgstr ""
+
+#. EzNfG
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3144659\n"
+"help.text"
+msgid "QUOTIENT(Numerator; Denominator)"
+msgstr ""
+
+#. oeEvi
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id9038972\n"
+"help.text"
+msgid "Returns the integer part of <emph>Numerator</emph> divided by <emph>Denominator</emph>."
+msgstr ""
+
+#. yC2F8
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id7985168\n"
+"help.text"
+msgid "QUOTIENT is equivalent to <item type=\"literal\">INT(numerator/denominator)</item> for same-sign numerator and denominator, except that it may report errors with different error codes. More generally, it is equivalent to <item type=\"literal\">INT(numerator/denominator/SIGN(numerator/denominator))*SIGN(numerator/denominator)</item>."
+msgstr ""
+
+#. t9grg
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3144687\n"
+"help.text"
+msgid "<item type=\"input\">=QUOTIENT(11;3)</item> returns 3. The remainder of 2 is lost."
+msgstr ""
+
+#. gUUBs
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"bm_id3144702\n"
+"help.text"
+msgid "<bookmark_value>RADIANS function</bookmark_value> <bookmark_value>converting;degrees, into radians</bookmark_value>"
+msgstr ""
+
+#. FBNeq
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"hd_id3144702\n"
+"help.text"
+msgid "RADIANS"
+msgstr ""
+
+#. 3JGgG
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3158025\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_RAD\">Converts degrees to radians.</ahelp>"
+msgstr ""
+
+#. ZGmDj
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3158055\n"
+"help.text"
+msgid "RADIANS(Number)"
+msgstr ""
+
+#. DBrJQ
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3158069\n"
+"help.text"
+msgid "<emph>Number</emph> is the angle in degrees to be converted to radians."
+msgstr ""
+
+#. qPQCf
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3939634\n"
+"help.text"
+msgid "<item type=\"input\">=RADIANS(90)</item> returns 1.5707963267949, which is PI/2 to Calc's accuracy."
+msgstr ""
+
+#. CJvcK
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"bm_id3158121\n"
+"help.text"
+msgid "<bookmark_value>ROUND function</bookmark_value>"
+msgstr ""
+
+#. A3K3J
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"hd_id3158121\n"
+"help.text"
+msgid "ROUND"
+msgstr ""
+
+#. dn5Gv
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3158150\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_RUNDEN\">Rounds a number to a certain number of decimal places.</ahelp>"
+msgstr ""
+
+#. kj4B7
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3158182\n"
+"help.text"
+msgid "ROUND(Number [; Count])"
+msgstr ""
+
+#. yE5Jb
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3158196\n"
+"help.text"
+msgid "Returns <emph>Number</emph> rounded to <emph>Count</emph> decimal places. If Count is omitted or zero, the function rounds to the nearest integer. If Count is negative, the function rounds to the nearest 10, 100, 1000, etc."
+msgstr ""
+
+#. Qy8eM
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id599688\n"
+"help.text"
+msgid "This function rounds to the nearest number. See ROUNDDOWN and ROUNDUP for alternatives."
+msgstr ""
+
+#. 3JvSm
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3145876\n"
+"help.text"
+msgid "<item type=\"input\">=ROUND(2.348;2)</item> returns 2.35"
+msgstr ""
+
+#. Bv7Ae
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3145899\n"
+"help.text"
+msgid "<item type=\"input\">=ROUND(-32.4834;3)</item> returns -32.483. Change the cell format to see all decimals."
+msgstr ""
+
+#. NSuTv
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id1371501\n"
+"help.text"
+msgid "<item type=\"input\">=ROUND(2.348;0)</item> returns 2."
+msgstr ""
+
+#. nqFjA
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id4661702\n"
+"help.text"
+msgid "<item type=\"input\">=ROUND(2.5)</item> returns 3."
+msgstr ""
+
+#. kdcKK
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id7868892\n"
+"help.text"
+msgid "<item type=\"input\">=ROUND(987.65;-2)</item> returns 1000."
+msgstr ""
+
+#. 6qDk5
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"hd_id561641930400105\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/func_rounddown.xhp\" name=\"rounddown_link\">ROUNDDOWN</link>"
+msgstr ""
+
+#. HBbDL
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"bm_id3163268\n"
+"help.text"
+msgid "<bookmark_value>ROUNDUP function</bookmark_value>"
+msgstr ""
+
+#. pJSCA
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"hd_id3163268\n"
+"help.text"
+msgid "ROUNDUP"
+msgstr ""
+
+#. btTGH
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3163297\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_AUFRUNDEN\">Rounds a number up, away from zero, to a certain precision.</ahelp>"
+msgstr ""
+
+#. Gz3SM
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3163328\n"
+"help.text"
+msgid "ROUNDUP(Number [; Count])"
+msgstr ""
+
+#. x59Ls
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3163342\n"
+"help.text"
+msgid "Returns <emph>Number</emph> rounded up (away from zero) to <emph>Count</emph> decimal places. If Count is omitted or zero, the function rounds up to an integer. If Count is negative, the function rounds up to the next 10, 100, 1000, etc."
+msgstr ""
+
+#. 4R7yS
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id9573961\n"
+"help.text"
+msgid "This function rounds away from zero. See ROUNDDOWN and ROUND for alternatives."
+msgstr ""
+
+#. MH9hk
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3144786\n"
+"help.text"
+msgid "<item type=\"input\">=ROUNDUP(1.1111;2)</item> returns 1.12."
+msgstr ""
+
+#. AvvE7
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id7700430\n"
+"help.text"
+msgid "<item type=\"input\">=ROUNDUP(1.2345;1)</item> returns 1.3."
+msgstr ""
+
+#. NmBt3
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id1180455\n"
+"help.text"
+msgid "<item type=\"input\">=ROUNDUP(45.67;0)</item> returns 46."
+msgstr ""
+
+#. FpoDE
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3405560\n"
+"help.text"
+msgid "<item type=\"input\">=ROUNDUP(-45.67)</item> returns -46."
+msgstr ""
+
+#. Fp2Q4
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3409527\n"
+"help.text"
+msgid "<item type=\"input\">=ROUNDUP(987.65;-2)</item> returns 1000."
+msgstr ""
+
+#. YFQUC
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"bm_id5256537\n"
+"help.text"
+msgid "<bookmark_value>SEC function</bookmark_value>"
+msgstr ""
+
+#. jAYMF
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"hd_id5187204\n"
+"help.text"
+msgid "SEC"
+msgstr ""
+
+#. YghxJ
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id9954962\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_SECANT\">Returns the secant of the given angle (in radians). The secant of an angle is equivalent to 1 divided by the cosine of that angle</ahelp>"
+msgstr ""
+
+#. gAEsH
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id2055913\n"
+"help.text"
+msgid "SEC(Number)"
+msgstr ""
+
+#. GaxwE
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id9568170\n"
+"help.text"
+msgid "Returns the (trigonometric) secant of <emph>Number</emph>, the angle in radians."
+msgstr ""
+
+#. NUx8V
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id9047465\n"
+"help.text"
+msgid "To return the secant of an angle in degrees, use the RADIANS function."
+msgstr ""
+
+#. TpXn6
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id6935513\n"
+"help.text"
+msgid "<item type=\"input\">=SEC(PI()/4)</item> returns approximately 1.4142135624, the inverse of the cosine of PI/4 radians."
+msgstr ""
+
+#. PGbfP
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3954287\n"
+"help.text"
+msgid "<item type=\"input\">=SEC(RADIANS(60))</item> returns 2, the secant of 60 degrees."
+msgstr ""
+
+#. Gr65B
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"bm_id840005\n"
+"help.text"
+msgid "<bookmark_value>SECH function</bookmark_value>"
+msgstr ""
+
+#. Wf2xW
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"hd_id8661934\n"
+"help.text"
+msgid "SECH"
+msgstr ""
+
+#. NmN4C
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id408174\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_SECANTHYP\">Returns the hyperbolic secant of a number.</ahelp>"
+msgstr ""
+
+#. AHCoy
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id4985391\n"
+"help.text"
+msgid "SECH(Number)"
+msgstr ""
+
+#. H3NXF
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id1952124\n"
+"help.text"
+msgid "Returns the hyperbolic secant of <emph>Number</emph>."
+msgstr ""
+
+#. wehEU
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id1187764\n"
+"help.text"
+msgid "<item type=\"input\">=SECH(0)</item> returns 1, the hyperbolic secant of 0."
+msgstr ""
+
+#. xyzAb
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"bm_id3144877\n"
+"help.text"
+msgid "<bookmark_value>SIN function</bookmark_value>"
+msgstr ""
+
+#. FeD4Q
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"hd_id3144877\n"
+"help.text"
+msgid "SIN"
+msgstr ""
+
+#. PzCz2
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3144906\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_SIN\">Returns the sine of the given angle (in radians).</ahelp>"
+msgstr ""
+
+#. HhouY
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3144937\n"
+"help.text"
+msgid "SIN(Number)"
+msgstr ""
+
+#. HcAKp
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3144950\n"
+"help.text"
+msgid "Returns the (trigonometric) sine of <emph>Number</emph>, the angle in radians."
+msgstr ""
+
+#. eiWDx
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id8079470\n"
+"help.text"
+msgid "To return the sine of an angle in degrees, use the RADIANS function."
+msgstr ""
+
+#. SkC9L
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3144983\n"
+"help.text"
+msgid "<item type=\"input\">=SIN(PI()/2)</item> returns 1, the sine of PI/2 radians."
+msgstr ""
+
+#. wKsi6
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3916440\n"
+"help.text"
+msgid "<item type=\"input\">=SIN(RADIANS(30))</item> returns 0.5, the sine of 30 degrees."
+msgstr ""
+
+#. kgAnt
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"bm_id3163397\n"
+"help.text"
+msgid "<bookmark_value>SINH function</bookmark_value>"
+msgstr ""
+
+#. WbhD4
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"hd_id3163397\n"
+"help.text"
+msgid "SINH"
+msgstr ""
+
+#. QVnp3
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3163426\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_SINHYP\">Returns the hyperbolic sine of a number.</ahelp>"
+msgstr ""
+
+#. 6JvoA
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3163457\n"
+"help.text"
+msgid "SINH(Number)"
+msgstr ""
+
+#. ni7NS
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3163471\n"
+"help.text"
+msgid "Returns the hyperbolic sine of <emph>Number</emph>."
+msgstr ""
+
+#. n3QAg
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3163504\n"
+"help.text"
+msgid "<item type=\"input\">=SINH(0)</item> returns 0, the hyperbolic sine of 0."
+msgstr ""
+
+#. LAWCJ
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"bm_id3151957\n"
+"help.text"
+msgid "<bookmark_value>SUMIF function</bookmark_value> <bookmark_value>adding;specified numbers</bookmark_value>"
+msgstr ""
+
+#. CGGGj
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"hd_id3151957\n"
+"help.text"
+msgid "<variable id=\"sumif_head\"><link href=\"text/scalc/01/04060106.xhp#Section15\">SUMIF</link></variable>"
+msgstr ""
+
+#. p2fHt
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3151986\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_SUMMEWENN\">Adds the cells specified by a given criterion.</ahelp> This function is used to sum a range when you search for a certain value."
+msgstr ""
+
+#. GKQGQ
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3152028\n"
+"help.text"
+msgid "SUMIF(Range; Criterion [; SumRange])"
+msgstr ""
+
+#. wmLcE
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3152043\n"
+"help.text"
+msgid "<emph>Range</emph> is the range to which the criterion is to be applied."
+msgstr ""
+
+#. FCxrw
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3152083\n"
+"help.text"
+msgid "<emph>SumRange</emph> is the range from which values are summed. If this parameter has not been indicated, the values found in the Range are summed."
+msgstr ""
+
+#. Bb7M5
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id8347422\n"
+"help.text"
+msgid "SUMIF supports the reference concatenation operator (~) only in the Criterion parameter, and only if the optional SumRange parameter is not given."
+msgstr ""
+
+#. uazzL
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3152148\n"
+"help.text"
+msgid "To sum up only negative numbers: <item type=\"input\">=SUMIF(A1:A10;\"<0\")</item>"
+msgstr ""
+
+#. GGT9C
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id6670125\n"
+"help.text"
+msgid "<item type=\"input\">=SUMIF(A1:A10;\">0\";B1:B10)</item> - sums values from the range B1:B10 only if the corresponding values in the range A1:A10 are >0."
+msgstr ""
+
+#. G5vdm
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id6062196\n"
+"help.text"
+msgid "See COUNTIF() for some more syntax examples that can be used with SUMIF()."
+msgstr ""
+
+#. BHGzQ
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"bm_id3152195\n"
+"help.text"
+msgid "<bookmark_value>TAN function</bookmark_value>"
+msgstr ""
+
+#. Bt3xG
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"hd_id3152195\n"
+"help.text"
+msgid "TAN"
+msgstr ""
+
+#. tD5Nc
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3152224\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_TAN\">Returns the tangent of the given angle (in radians).</ahelp>"
+msgstr ""
+
+#. iRwxK
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3152255\n"
+"help.text"
+msgid "TAN(Number)"
+msgstr ""
+
+#. PQ4WT
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3152269\n"
+"help.text"
+msgid "Returns the (trigonometric) tangent of <emph>Number</emph>, the angle in radians."
+msgstr ""
+
+#. n97ki
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id5752128\n"
+"help.text"
+msgid "To return the tangent of an angle in degrees, use the RADIANS function."
+msgstr ""
+
+#. fstSK
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3152301\n"
+"help.text"
+msgid "<item type=\"input\">=TAN(PI()/4) </item>returns 1, the tangent of PI/4 radians."
+msgstr ""
+
+#. D2Ad2
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id1804864\n"
+"help.text"
+msgid "<item type=\"input\">=TAN(RADIANS(45))</item> returns 1, the tangent of 45 degrees."
+msgstr ""
+
+#. QDBAA
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"bm_id3165434\n"
+"help.text"
+msgid "<bookmark_value>TANH function</bookmark_value>"
+msgstr ""
+
+#. BNJaJ
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"hd_id3165434\n"
+"help.text"
+msgid "TANH"
+msgstr ""
+
+#. Kwc9W
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3165462\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_TANHYP\">Returns the hyperbolic tangent of a number.</ahelp>"
+msgstr ""
+
+#. nYZmD
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3165494\n"
+"help.text"
+msgid "TANH(Number)"
+msgstr ""
+
+#. ACQqA
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3165508\n"
+"help.text"
+msgid "Returns the hyperbolic tangent of <emph>Number</emph>."
+msgstr ""
+
+#. cvfyw
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3165541\n"
+"help.text"
+msgid "<item type=\"input\">=TANH(0)</item> returns 0, the hyperbolic tangent of 0."
+msgstr ""
+
+#. xRxkN
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"bm_id3165633\n"
+"help.text"
+msgid "<bookmark_value>AutoFilter function; subtotals</bookmark_value> <bookmark_value>sums;of filtered data</bookmark_value> <bookmark_value>filtered data; sums</bookmark_value> <bookmark_value>SUBTOTAL function</bookmark_value>"
+msgstr ""
+
+#. 9QijC
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"hd_id3165633\n"
+"help.text"
+msgid "SUBTOTAL"
+msgstr ""
+
+#. FYrQi
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3165682\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_TEILERGEBNIS\">Calculates subtotals.</ahelp> If a range already contains subtotals, these are not used for further calculations. Use this function with the AutoFilters to take only the filtered records into account."
+msgstr ""
+
+#. C5Dzz
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3165717\n"
+"help.text"
+msgid "SUBTOTAL(Function; Range)"
+msgstr ""
+
+#. 7yJFS
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3165731\n"
+"help.text"
+msgid "<emph>Function</emph> is a number that stands for one of the following functions:"
+msgstr ""
+
+#. oTpgy
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3165782\n"
+"help.text"
+msgid "Function index"
+msgstr ""
+
+#. 5rGct
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id20082017081856189\n"
+"help.text"
+msgid "(includes hidden values)"
+msgstr ""
+
+#. p8nf9
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id200820170716337755\n"
+"help.text"
+msgid "Function index"
+msgstr ""
+
+#. uvGED
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id200820170818568679\n"
+"help.text"
+msgid "(ignores hidden values)"
+msgstr ""
+
+#. 8wDdD
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3165806\n"
+"help.text"
+msgid "Function"
+msgstr ""
+
+#. vGJCV
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3165856\n"
+"help.text"
+msgid "AVERAGE"
+msgstr ""
+
+#. De7oY
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3165906\n"
+"help.text"
+msgid "COUNT"
+msgstr ""
+
+#. GEUKU
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3165956\n"
+"help.text"
+msgid "COUNTA"
+msgstr ""
+
+#. iSAQE
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3166006\n"
+"help.text"
+msgid "MAX"
+msgstr ""
+
+#. 79grM
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3166056\n"
+"help.text"
+msgid "MIN"
+msgstr ""
+
+#. rCkEd
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3143339\n"
+"help.text"
+msgid "PRODUCT"
+msgstr ""
+
+#. pjTBB
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3143389\n"
+"help.text"
+msgid "STDEV"
+msgstr ""
+
+#. c6PGT
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3143439\n"
+"help.text"
+msgid "STDEVP"
+msgstr ""
+
+#. 8yzmg
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3143489\n"
+"help.text"
+msgid "SUM"
+msgstr ""
+
+#. hbgfY
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3143539\n"
+"help.text"
+msgid "VAR"
+msgstr ""
+
+#. Pz83B
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3143589\n"
+"help.text"
+msgid "VARP"
+msgstr ""
+
+#. wdwAv
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id20082017075115609\n"
+"help.text"
+msgid "Use numbers 1-11 to include manually hidden rows or 101-111 to exclude them; filtered-out cells are always excluded."
+msgstr ""
+
+#. 4EoDE
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3143606\n"
+"help.text"
+msgid "<emph>Range</emph> is the range whose cells are included."
+msgstr ""
+
+#. A2znp
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3143638\n"
+"help.text"
+msgid "You have a table in the cell range A1:B6 containing a bill of material for 10 students. Row 2 (Pen) is manually hidden. You want to see the sum of the figures that are displayed; that is, just the subtotal for the filtered rows. In this case the correct formula would be:"
+msgstr ""
+
+#. VNHf4
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id200820170751186696\n"
+"help.text"
+msgid "<emph>ITEM</emph>"
+msgstr ""
+
+#. psjyr
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id20082017075118422\n"
+"help.text"
+msgid "<emph>QUANTITY</emph>"
+msgstr ""
+
+#. yEGKp
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id200820170751195726\n"
+"help.text"
+msgid "Pen"
+msgstr ""
+
+#. 7NFso
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id200820170751195912\n"
+"help.text"
+msgid "Pencil"
+msgstr ""
+
+#. QTafr
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id200820170751199399\n"
+"help.text"
+msgid "Notebook"
+msgstr ""
+
+#. RZDgh
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id200820170751201323\n"
+"help.text"
+msgid "Rubber"
+msgstr ""
+
+#. eY2F7
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id200820170751204884\n"
+"help.text"
+msgid "Sharpener"
+msgstr ""
+
+#. vooYh
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3143658\n"
+"help.text"
+msgid "<item type=\"input\">=SUBTOTAL(9;B2:B6) returns 50.</item>"
+msgstr ""
+
+#. zp7rt
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id200820170751218092\n"
+"help.text"
+msgid "<item type=\"input\">=SUBTOTAL(109;B2:B6) returns 40.</item>"
+msgstr ""
+
+#. sSyEg
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"bm_id3143672\n"
+"help.text"
+msgid "<bookmark_value>Euro; converting</bookmark_value> <bookmark_value>EUROCONVERT function</bookmark_value>"
+msgstr ""
+
+#. EThTd
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"hd_id3143672\n"
+"help.text"
+msgid "EUROCONVERT"
+msgstr ""
+
+#. cb4XC
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3143708\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_UMRECHNEN\">Converts between old European national currency and to and from Euros.</ahelp>"
+msgstr ""
+
+#. G7CMF
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3143748\n"
+"help.text"
+msgid "EUROCONVERT(Value; \"From_currency\"; \"To_currency\" [; full_precision [; triangulation_precision]])"
+msgstr ""
+
+#. 4KJUc
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3143763\n"
+"help.text"
+msgid "<emph>Value</emph> is the amount of the currency to be converted."
+msgstr ""
+
+#. NRLg7
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3143782\n"
+"help.text"
+msgid "<emph>From_currency</emph> and <emph>To_currency</emph> are the currency units to convert from and to respectively. These must be text, the official abbreviation for the currency (for example, \"EUR\"). The rates (shown per Euro) were set by the European Commission."
+msgstr ""
+
+#. xRkH7
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id0119200904301810\n"
+"help.text"
+msgid "<emph>Full_precision</emph> is optional. If omitted or False, the result is rounded according to the decimals of the To currency. If Full_precision is True, the result is not rounded."
+msgstr ""
+
+#. Pzmf5
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id0119200904301815\n"
+"help.text"
+msgid "<emph>Triangulation_precision</emph> is optional. If Triangulation_precision is given and >=3, the intermediate result of a triangular conversion (currency1,EUR,currency2) is rounded to that precision. If Triangulation_precision is omitted, the intermediate result is not rounded. Also if To currency is \"EUR\", Triangulation_precision is used as if triangulation was needed and conversion from EUR to EUR was applied."
+msgstr ""
+
+#. YmarB
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3143819\n"
+"help.text"
+msgid "<emph>Examples</emph>"
+msgstr ""
+
+#. F3QB8
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3143837\n"
+"help.text"
+msgid "<item type=\"input\">=EUROCONVERT(100;\"ATS\";\"EUR\")</item> converts 100 Austrian Schillings into Euros."
+msgstr ""
+
+#. 55HyN
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3143853\n"
+"help.text"
+msgid "<item type=\"input\">=EUROCONVERT(100;\"EUR\";\"DEM\")</item> converts 100 Euros into German Marks."
+msgstr ""
+
+#. GVxB4
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"bm_id0908200902090676\n"
+"help.text"
+msgid "<bookmark_value>CONVERT_OOO function</bookmark_value>"
+msgstr ""
+
+#. 4Qoyh
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"hd_id0908200902074836\n"
+"help.text"
+msgid "CONVERT_OOO"
+msgstr ""
+
+#. Dx7ki
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id0908200902131122\n"
+"help.text"
+msgid "<ahelp hid=\".\">Converts to euros a currency value expressed in one of the legacy currencies of 19 member states of the Eurozone, and vice versa.</ahelp> The conversion uses the fixed exchange rates at which the legacy currencies entered the euro."
+msgstr ""
+
+#. de7Xa
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id581631900947319\n"
+"help.text"
+msgid "We recommend using the more flexible EUROCONVERT function for converting between these currencies. CONVERT_OOO is not a standardized function and is not portable."
+msgstr ""
+
+#. ETLYS
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id0908200902131191\n"
+"help.text"
+msgid "CONVERT_OOO(Value; \"Text1\"; \"Text2\")"
+msgstr ""
+
+#. jE8Vq
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id901631901062056\n"
+"help.text"
+msgid "<emph>Value</emph> is the amount of the currency to be converted."
+msgstr ""
+
+#. AE6XU
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id461631901137229\n"
+"help.text"
+msgid "<emph>Text1</emph> is a three-character string that specifies the currency to be converted from."
+msgstr ""
+
+#. w8BoY
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id351631901218862\n"
+"help.text"
+msgid "<emph>Text2</emph> is a three-character string that specifies the currency to be converted to."
+msgstr ""
+
+#. WMq4R
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id1001631901312606\n"
+"help.text"
+msgid "<emph>Text1</emph> and <emph>Text2</emph> must each take one of the following values: \"ATS\", \"BEF\", \"CYP\", \"DEM\", \"EEK\", \"ESP\", \"EUR\", \"FIM\", \"FRF\", \"GRD\", \"IEP\", \"ITL\", \"LTL\", \"LUF\", \"LVL\", \"MTL\", \"NLG\", \"PTE\", \"SIT\", and \"SKK\"."
+msgstr ""
+
+#. RBRUW
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id111631901383901\n"
+"help.text"
+msgid "One, and only one, of <emph>Text1</emph> or <emph>Text2</emph> must be equal to \"EUR\"."
+msgstr ""
+
+#. Smhnw
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id090820090213112\n"
+"help.text"
+msgid "<item type=\"input\">=CONVERT_OOO(100;\"ATS\";\"EUR\")</item> returns the euro value of 100 Austrian schillings."
+msgstr ""
+
+#. UjHaw
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id0908200902475431\n"
+"help.text"
+msgid "<input>=CONVERT_OOO(100;\"EUR\";\"DEM\")</input> converts 100 euros into German marks."
+msgstr ""
+
+#. PRgAD
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id251631901851101\n"
+"help.text"
+msgid "Refer to the <link href=\"https://wiki.documentfoundation.org/Documentation/Calc_Functions/CONVERT_OOO\" name=\"CONVERT_OOO Wiki\">CONVERT_OOO</link> wiki page for more details about this function."
+msgstr ""
+
+#. 5CcjA
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"bm_id3157177\n"
+"help.text"
+msgid "<bookmark_value>ODD function</bookmark_value> <bookmark_value>rounding;up/down to nearest odd integer</bookmark_value>"
+msgstr ""
+
+#. pyi7z
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"hd_id3157177\n"
+"help.text"
+msgid "ODD"
+msgstr ""
+
+#. pjWTA
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3157205\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_UNGERADE\">Rounds a positive number up to the nearest odd integer and a negative number down to the nearest odd integer.</ahelp>"
+msgstr ""
+
+#. nANfs
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3157237\n"
+"help.text"
+msgid "ODD(Number)"
+msgstr ""
+
+#. a4qQR
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3157250\n"
+"help.text"
+msgid "Returns <emph>Number</emph> rounded to the next odd integer up, away from zero."
+msgstr ""
+
+#. U4k5f
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3157283\n"
+"help.text"
+msgid "<item type=\"input\">=ODD(1.2)</item> returns 3."
+msgstr ""
+
+#. Nzm8m
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id8746910\n"
+"help.text"
+msgid "<item type=\"input\">=ODD(1)</item> returns 1."
+msgstr ""
+
+#. nGEC9
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id9636524\n"
+"help.text"
+msgid "<item type=\"input\">=ODD(0)</item> returns 1."
+msgstr ""
+
+#. D2Yt2
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id5675527\n"
+"help.text"
+msgid "<item type=\"input\">=ODD(-3.1)</item> returns -5."
+msgstr ""
+
+#. itiAQ
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"bm_id3164086\n"
+"help.text"
+msgid "<bookmark_value>SIGN function</bookmark_value> <bookmark_value>algebraic signs</bookmark_value>"
+msgstr ""
+
+#. dm2dg
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"hd_id3164086\n"
+"help.text"
+msgid "SIGN"
+msgstr ""
+
+#. QdGjV
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3164115\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_VORZEICHEN\">Returns the sign of a number. Returns 1 if the number is positive, -1 if negative and 0 if zero.</ahelp>"
+msgstr ""
+
+#. Zee2K
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3164150\n"
+"help.text"
+msgid "SIGN(Number)"
+msgstr ""
+
+#. fCQTV
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3164164\n"
+"help.text"
+msgid "<emph>Number</emph> is the number whose sign is to be determined."
+msgstr ""
+
+#. HFCAq
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3164197\n"
+"help.text"
+msgid "<item type=\"input\">=SIGN(3.4)</item> returns 1."
+msgstr ""
+
+#. hhN8j
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3164212\n"
+"help.text"
+msgid "<item type=\"input\">=SIGN(-4.5)</item> returns -1."
+msgstr ""
+
+#. Uk8Jv
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"bm_id3164252\n"
+"help.text"
+msgid "<bookmark_value>MROUND function</bookmark_value> <bookmark_value>nearest multiple</bookmark_value>"
+msgstr ""
+
+#. 2nDNc
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"hd_id3164252\n"
+"help.text"
+msgid "MROUND"
+msgstr ""
+
+#. G3RF3
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3164288\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_MROUND\">Returns a number rounded to the nearest multiple of another number.</ahelp>"
+msgstr ""
+
+#. VJzdZ
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3164320\n"
+"help.text"
+msgid "MROUND(Number; Multiple)"
+msgstr ""
+
+#. A2zWC
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3486434\n"
+"help.text"
+msgid "Returns <emph>Number</emph> rounded to the nearest multiple of <emph>Multiple</emph>."
+msgstr ""
+
+#. veXWP
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3068636\n"
+"help.text"
+msgid "An alternative implementation would be <item type=\"literal\">Multiple * ROUND(Number/Multiple)</item>."
+msgstr ""
+
+#. ZG5Uf
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3164347\n"
+"help.text"
+msgid "<item type=\"input\">=MROUND(15.5;3)</item> returns 15, as 15.5 is closer to 15 (= 3*5) than to 18 (= 3*6)."
+msgstr ""
+
+#. unovG
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_idN14DD6\n"
+"help.text"
+msgid "<item type=\"input\">=MROUND(1.4;0.5)</item> returns 1.5 (= 0.5*3)."
+msgstr ""
+
+#. ZY96G
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"bm_id3164375\n"
+"help.text"
+msgid "<bookmark_value>SQRT function</bookmark_value> <bookmark_value>square roots;positive numbers</bookmark_value>"
+msgstr ""
+
+#. 5ShBZ
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"hd_id3164375\n"
+"help.text"
+msgid "SQRT"
+msgstr ""
+
+#. cyUs3
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3164404\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_WURZEL\">Returns the positive square root of a number.</ahelp>"
+msgstr ""
+
+#. x7UG6
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3164437\n"
+"help.text"
+msgid "SQRT(Number)"
+msgstr ""
+
+#. oUAGh
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3164451\n"
+"help.text"
+msgid "Returns the positive square root of <emph>Number</emph>."
+msgstr ""
+
+#. vpBGF
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id6870021\n"
+"help.text"
+msgid "Number must be positive."
+msgstr ""
+
+#. o7PWn
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3164484\n"
+"help.text"
+msgid "<item type=\"input\">=SQRT(16)</item> returns 4."
+msgstr ""
+
+#. W7skD
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3591723\n"
+"help.text"
+msgid "<item type=\"input\">=SQRT(-16)</item> returns an <item type=\"literal\">invalid argument</item> error."
+msgstr ""
+
+#. ddTG3
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"bm_id3164560\n"
+"help.text"
+msgid "<bookmark_value>SQRTPI function</bookmark_value> <bookmark_value>square roots;products of Pi</bookmark_value>"
+msgstr ""
+
+#. 5w2mG
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"hd_id3164560\n"
+"help.text"
+msgid "SQRTPI"
+msgstr ""
+
+#. yYVKB
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3164596\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_SQRTPI\">Returns the square root of (PI times a number).</ahelp>"
+msgstr ""
+
+#. bTULe
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3164627\n"
+"help.text"
+msgid "SQRTPI(Number)"
+msgstr ""
+
+#. pvRg7
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id1501510\n"
+"help.text"
+msgid "Returns the positive square root of (PI multiplied by <emph>Number</emph>)."
+msgstr ""
+
+#. MFKzD
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id9929197\n"
+"help.text"
+msgid "This is equivalent to <item type=\"literal\">SQRT(PI()*Number)</item>."
+msgstr ""
+
+#. kMDdF
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3164654\n"
+"help.text"
+msgid "<item type=\"input\">=SQRTPI(2)</item> returns the squareroot of (2PI), approximately 2.506628."
+msgstr ""
+
+#. en4Ae
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"bm_id3164669\n"
+"help.text"
+msgid "<bookmark_value>random numbers; between limits</bookmark_value><bookmark_value>RANDBETWEEN function</bookmark_value>"
+msgstr ""
+
+#. vqzRX
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"hd_id3164669\n"
+"help.text"
+msgid "RANDBETWEEN"
+msgstr ""
+
+#. eADpQ
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3164711\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_RANDBETWEEN\">Returns an integer random number in a specified range.</ahelp>"
+msgstr ""
+
+#. c7jXH
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3164758\n"
+"help.text"
+msgid "RANDBETWEEN(Bottom; Top)"
+msgstr ""
+
+#. NjkAg
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id7112338\n"
+"help.text"
+msgid "Returns an integer random number between integers <emph>Bottom</emph> and <emph>Top</emph> (both inclusive)."
+msgstr ""
+
+#. kanbM
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id2855616\n"
+"help.text"
+msgid "This function produces a new random number each time Calc recalculates. To force Calc to recalculate manually press F9."
+msgstr ""
+
+#. BtCGn
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id2091433\n"
+"help.text"
+msgid "To generate random numbers which never recalculate, copy cells containing this function, and use <item type=\"menuitem\">Edit - Paste Special</item> (with <item type=\"menuitem\">Paste All</item> and <item type=\"menuitem\">Formulas</item> not marked and <item type=\"menuitem\">Numbers</item> marked)."
+msgstr ""
+
+#. bfcug
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3164785\n"
+"help.text"
+msgid "<item type=\"input\">=RANDBETWEEN(20;30)</item> returns an integer of between 20 and 30."
+msgstr ""
+
+#. Dmk3R
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"bm_id461590241346526\n"
+"help.text"
+msgid "<bookmark_value>random numbers non-volatile; between limits</bookmark_value><bookmark_value>RANDBETWEEN.NV function</bookmark_value>"
+msgstr ""
+
+#. cgHiZ
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"hd_id171590240366277\n"
+"help.text"
+msgid "RANDBETWEEN.NV"
+msgstr ""
+
+#. Akjyr
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id391590240473510\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_RANDBETWEEN_NV\">Returns an non-volatile integer random number in a specified range.</ahelp>"
+msgstr ""
+
+#. GTDa4
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id181590240522012\n"
+"help.text"
+msgid "RANDBETWEEN.NV(Bottom; Top)"
+msgstr ""
+
+#. Cwb6C
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id91590242400917\n"
+"help.text"
+msgid "Returns an non-volatile integer random number between integers <emph>Bottom</emph> and <emph>Top</emph> (both inclusive). A non-volatile function is not recalculated at new input events or pressing <keycode>F9</keycode>. However, the function is recalculated when pressing <keycode>F9</keycode> with the cursor on the cell containing the function, when opening the file, when using the <link href=\"text/scalc/01/recalculate_hard.xhp\" name=\"recalculate hard\"><menuitem>Recalculate Hard</menuitem></link> command (<keycode>Shift</keycode>+<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline>+<keycode>F9</keycode>) and when <emph>Top</emph> or <emph>Bottom</emph> are recalculated."
+msgstr ""
+
+#. AngvN
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id151590240999839\n"
+"help.text"
+msgid "<input>=RANDBETWEEN.NV(20;30)</input> returns a non-volatile integer between 20 and 30."
+msgstr ""
+
+#. cAQDh
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id1001590241005601\n"
+"help.text"
+msgid "<input>=RANDBETWEEN.NV(A1;30)</input> returns a non-volatile integer between the value of cell A1 and 30. The function is recalculated when the contents of cell A1 change."
+msgstr ""
+
+#. odp65
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"bm_id3164800\n"
+"help.text"
+msgid "<bookmark_value>RAND function</bookmark_value><bookmark_value>random numbers;between 0 and 1</bookmark_value>"
+msgstr ""
+
+#. tTc7D
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"hd_id3164800\n"
+"help.text"
+msgid "RAND"
+msgstr ""
+
+#. AXnAh
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3164829\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_ZUFALLSZAHL\">Returns a random number between 0 and 1.</ahelp>"
+msgstr ""
+
+#. frWts
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id3164884\n"
+"help.text"
+msgid "RAND()"
+msgstr ""
+
+#. hMfj3
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id5092318\n"
+"help.text"
+msgid "This function produces a new random number each time Calc recalculates. To force Calc to recalculate manually press F9."
+msgstr ""
+
+#. HAWnR
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id9312417\n"
+"help.text"
+msgid "To generate random numbers which never recalculate, either:"
+msgstr ""
+
+#. Ap4DT
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id451590242105253\n"
+"help.text"
+msgid "Copy cells each containing =RAND(), and use <menuitem>Edit - Paste Special</menuitem> (with <emph>Paste All</emph> and <emph>Formulas</emph> not marked and <emph>Numbers</emph> marked)."
+msgstr ""
+
+#. zEFCC
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id801590242114296\n"
+"help.text"
+msgid "Use the Fill Cell command with random numbers (<menuitem>Sheet - Fill Cells - Fill Random Numbers</menuitem>)."
+msgstr ""
+
+#. o9wUN
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id41590242118383\n"
+"help.text"
+msgid "Use the RAND.NV() function for non-volatile random numbers."
+msgstr ""
+
+#. BLkte
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id9569078\n"
+"help.text"
+msgid "<item type=\"input\">=RAND()</item> returns a random number between 0 and 1."
+msgstr ""
+
+#. CqVpJ
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"bm_id341590241488944\n"
+"help.text"
+msgid "<bookmark_value>random numbers non-volatile;between 0 and 1</bookmark_value><bookmark_value>RAND.NV function</bookmark_value>"
+msgstr ""
+
+#. q9iLd
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"hd_id71590238179170\n"
+"help.text"
+msgid "RAND.NV"
+msgstr ""
+
+#. Fc2hv
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id101590238875834\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_RAND_NV\">Returns a non-volatile random number between 0 and 1.</ahelp>"
+msgstr ""
+
+#. dchBL
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id391590238945182\n"
+"help.text"
+msgid "RAND.NV()"
+msgstr ""
+
+#. G5FWM
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id271590239748534\n"
+"help.text"
+msgid "This function produces a non-volatile random number on input. A non-volatile function is not recalculated at new input events. The function does not recalculate when pressing <keycode>F9</keycode>, except when the cursor is on the cell containing the function or using the <link href=\"text/scalc/01/recalculate_hard.xhp\" name=\"recalculate hard\"><menuitem>Recalculate Hard</menuitem></link> command (<keycode>Shift</keycode>+<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline>+<keycode>F9</keycode>). The function is recalculated when opening the file."
+msgstr ""
+
+#. sCwno
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id191590241215013\n"
+"help.text"
+msgid "<input>=RAND.NV()</input> returns a non-volatile random number between 0 and 1."
+msgstr ""
+
+#. Zsp2R
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"tit\n"
+"help.text"
+msgid "Array Functions"
+msgstr ""
+
+#. BB9Ze
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"bm_id3147273\n"
+"help.text"
+msgid "<bookmark_value>matrices; functions</bookmark_value><bookmark_value>Function Wizard; arrays</bookmark_value><bookmark_value>array formulas</bookmark_value><bookmark_value>inline array constants</bookmark_value><bookmark_value>formulas; arrays</bookmark_value><bookmark_value>functions; array functions</bookmark_value><bookmark_value>editing; array formulas</bookmark_value><bookmark_value>copying; array formulas</bookmark_value><bookmark_value>deleting; array formulas</bookmark_value><bookmark_value>adjusting array ranges</bookmark_value><bookmark_value>calculating; conditional calculations</bookmark_value><bookmark_value>matrices; calculations</bookmark_value><bookmark_value>conditional calculations with arrays</bookmark_value><bookmark_value>implicit array handling</bookmark_value><bookmark_value>forced array handling</bookmark_value>"
+msgstr ""
+
+#. ALUph
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"hd_id3147273\n"
+"help.text"
+msgid "<variable id=\"arrayfunctit\"><link href=\"text/scalc/01/04060107.xhp\" name=\"array functions\">Array Functions</link></variable>"
+msgstr ""
+
+#. BDGKz
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3154744\n"
+"help.text"
+msgid "<variable id=\"matrixtext\">This category contains the array functions.</variable>"
+msgstr ""
+
+#. sWmxg
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"hd_id3146084\n"
+"help.text"
+msgid "What is an Array?"
+msgstr ""
+
+#. kisLJ
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3154298\n"
+"help.text"
+msgid "<variable id=\"wasmatrix\">An array is a linked range of cells on a spreadsheet containing values.</variable> A square range of 3 rows and 3 columns is a 3 x 3 array:"
+msgstr ""
+
+#. NYW8Q
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3153583\n"
+"help.text"
+msgid "The smallest possible array is a 1 x 2 or 2 x 1 array with two adjacent cells."
+msgstr ""
+
+#. 9rqkN
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"hd_id3148474\n"
+"help.text"
+msgid "What is an array formula?"
+msgstr ""
+
+#. EBQsz
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3155355\n"
+"help.text"
+msgid "A formula in which the individual values in a cell range are evaluated is referred to as an array formula. The difference between an array formula and other formulas is that the array formula deals with several values simultaneously instead of just one."
+msgstr ""
+
+#. UMVaF
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3151052\n"
+"help.text"
+msgid "Not only can an array formula process several values, but it can also return several values. The results of an array formula is also an array."
+msgstr ""
+
+#. hFrtB
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3158432\n"
+"help.text"
+msgid "To multiply the values in the individual cells by 10 in the above array, you do not need to apply a formula to each individual cell or value. Instead you just need to use a single array formula. Select a range of 3 x 3 cells on another part of the spreadsheet, enter the formula <item type=\"input\">=10*A1:C3</item> and confirm this entry using the key combination <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline><emph> + Shift + Enter</emph>. The result is a 3 x 3 array in which the individual values in the cell range (A1:C3) are multiplied by a factor of 10."
+msgstr ""
+
+#. 8NCA2
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3149156\n"
+"help.text"
+msgid "In addition to multiplication, you can also use other operators on the reference range (an array). With $[officename] Calc, you can add (+), subtract (-), multiply (*), divide (/), use exponents (^), concatenation (&) and comparisons (=, <>, <, >, <=, >=). The operators can be used on each individual value in the cell range and return the result as an array if the array formula was entered."
+msgstr ""
+
+#. eFkfc
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3166456\n"
+"help.text"
+msgid "Comparison operators in an array formula treat empty cells in the same way as in a normal formula, that is, either as zero or as an empty string. For example, if cells A1 and A2 are empty the array formulas <item type=\"input\">{=A1:A2=\"\"}</item> and <item type=\"input\">{=A1:A2=0}</item> will both return a 1 column 2 row array of cells containing TRUE."
+msgstr ""
+
+#. rDSKx
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"hd_id3150713\n"
+"help.text"
+msgid "When do you use array formulas?"
+msgstr ""
+
+#. ytL94
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3149787\n"
+"help.text"
+msgid "Use array formulas if you have to repeat calculations using different values. If you decide to change the calculation method later, you only have to update the array formula. To add an array formula, select the entire array range and then <link href=\"text/scalc/01/04060107.xhp\" name=\"make the required change to the array formula\">make the required change to the array formula</link>."
+msgstr ""
+
+#. vRLSR
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3149798\n"
+"help.text"
+msgid "Array formulas are also a space saving option when several values must be calculated, since they are not very memory-intensive. In addition, arrays are an essential tool for carrying out complex calculations, because you can have several cell ranges included in your calculations. $[officename] has different math functions for arrays, such as the MMULT function for multiplying two arrays or the SUMPRODUCT function for calculating the scalar products of two arrays."
+msgstr ""
+
+#. BU7BQ
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"hd_id3155588\n"
+"help.text"
+msgid "Using Array Formulas in $[officename] Calc"
+msgstr ""
+
+#. zMZBQ
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3152876\n"
+"help.text"
+msgid "You can also create a \"normal\" formula in which the reference range, such as parameters, indicate an array formula. The result is obtained from the intersection of the reference range and the rows or columns in which the formula is found. If there is no intersection or if the range at the intersection covers several rows or columns, a #VALUE! error message appears. The following example illustrates this concept:"
+msgstr ""
+
+#. EcJu6
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"hd_id3151271\n"
+"help.text"
+msgid "Creating Array Formulas"
+msgstr ""
+
+#. keWKE
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3149102\n"
+"help.text"
+msgid "If you create an array formula using the <emph>Function Wizard</emph>, you must mark the <emph>Array</emph> check box each time so that the results are returned in an array. Otherwise, only the value in the upper-left cell of the array being calculated is returned."
+msgstr ""
+
+#. G9EUo
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3153392\n"
+"help.text"
+msgid "If you enter the array formula directly into the cell, you must use the key combination <emph>Shift + </emph><switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline><emph> + Enter</emph> instead of the <emph>Enter</emph> key. Only then does the formula become an array formula."
+msgstr ""
+
+#. iGmCa
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3151120\n"
+"help.text"
+msgid "Array formulas appear in braces in $[officename] Calc. You cannot create array formulas by manually entering the braces."
+msgstr ""
+
+#. 6zGAy
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3154342\n"
+"help.text"
+msgid "The cells in a results array are automatically protected against changes. However, you can edit, delete or copy the array formula by selecting the entire array cell range."
+msgstr ""
+
+#. 2tDZj
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"hd_id8834803\n"
+"help.text"
+msgid "Using Inline Array Constants in Formulas"
+msgstr ""
+
+#. fuAHa
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id985747\n"
+"help.text"
+msgid "Calc supports inline matrix/array constants in formulas. An inline array is surrounded by curly braces '{' and '}'. Elements can be each a number (including negatives), a logical constant (TRUE, FALSE), or a literal string. Non-constant expressions are not allowed. Arrays can be entered with one or more rows, and one or more columns. All rows must consist of the same number of elements, all columns must consist of the same number of elements."
+msgstr ""
+
+#. CYxYN
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id936613\n"
+"help.text"
+msgid "The column separator (separating elements in one row) and the row separator are language and locale dependent. But in this help content, the ';' semicolon and '|' pipe symbol are used to indicate the column and row separators, respectively. For example, in the English locale, the ',' comma is used as the column separator, while the ';' semicolon is used as the row separator."
+msgstr ""
+
+#. 4oGDs
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id936615\n"
+"help.text"
+msgid "You can view and change the row and column separator in <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Calc - Formula - Separators</emph>."
+msgstr ""
+
+#. pseAZ
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id1877498\n"
+"help.text"
+msgid "Arrays can not be nested."
+msgstr ""
+
+#. frzGa
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id4262520\n"
+"help.text"
+msgid "<emph>Examples:</emph>"
+msgstr ""
+
+#. Adzmh
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id9387493\n"
+"help.text"
+msgid "={1;2;3}"
+msgstr ""
+
+#. CcDoT
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id8207037\n"
+"help.text"
+msgid "An array with one row consisting of the three numbers 1, 2, and 3."
+msgstr ""
+
+#. WhqRD
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id6757103\n"
+"help.text"
+msgid "To enter this array constant, you select three cells in a row, then you type the formula <item type=\"input\">={1;2;3}</item> using the curly braces and the semicolons, then press <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline><emph> + Shift + Enter</emph>."
+msgstr ""
+
+#. uTzcj
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id8868068\n"
+"help.text"
+msgid "={1;2;3|4;5;6}"
+msgstr ""
+
+#. cTAWF
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id6626483\n"
+"help.text"
+msgid "An array with two rows and three values in each row."
+msgstr ""
+
+#. BkvQP
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id5262916\n"
+"help.text"
+msgid "={0;1;2|FALSE;TRUE;\"two\"}"
+msgstr ""
+
+#. c4DEy
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id1623889\n"
+"help.text"
+msgid "A mixed data array."
+msgstr ""
+
+#. x4xmB
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id7781914\n"
+"help.text"
+msgid "=SIN({1;2;3})"
+msgstr ""
+
+#. 6LVeK
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id300912\n"
+"help.text"
+msgid "Entered as a matrix formula, delivers the result of three SIN calculations with the arguments 1, 2, and 3."
+msgstr ""
+
+#. PDitA
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"hd_id3148660\n"
+"help.text"
+msgid "Editing Array Formulas"
+msgstr ""
+
+#. Qi4kV
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3149241\n"
+"help.text"
+msgid "Select the cell range or array containing the array formula. To select the whole array, position the cell cursor inside the array range, then press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline> + <keycode>/</keycode>, where <keycode>/</keycode> is the division key on the numeric keypad."
+msgstr ""
+
+#. BzLzG
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3143274\n"
+"help.text"
+msgid "Either press <emph>F2</emph> or position the cursor in the input line. Both of these actions let you edit the formula."
+msgstr ""
+
+#. A2ZDT
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3154798\n"
+"help.text"
+msgid "After you have made changes, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline><emph> + Shift + Enter</emph>."
+msgstr ""
+
+#. AKFjm
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3150628\n"
+"help.text"
+msgid "You can format the separate parts of an array. For example, you can change the font color. Select a cell range and then change the attribute you want."
+msgstr ""
+
+#. Tes4E
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"hd_id541633516074226\n"
+"help.text"
+msgid "Deleting Array Formulae"
+msgstr ""
+
+#. adAax
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id681633516103267\n"
+"help.text"
+msgid "Select the cell range or array containing the array formula. To select the whole array, position the cell cursor inside the array range, then press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline> + <keycode>/</keycode>, where <keycode>/</keycode> is the division key on the numeric keypad."
+msgstr ""
+
+#. 5xB8E
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id61633516164519\n"
+"help.text"
+msgid "Press <keycode>Delete</keycode> to delete the array contents, including the array formula, or press <keycode>Backspace</keycode> and this brings up the <link href=\"text/scalc/01/02150000.xhp\" name=\"delete contents\">Delete Contents</link> dialog box. Select <emph>Formula</emph> or <emph>Delete All</emph> and click <emph>OK</emph>."
+msgstr ""
+
+#. dEcVJ
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"hd_id3145608\n"
+"help.text"
+msgid "Copying Array Formulas"
+msgstr ""
+
+#. DAJJs
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3149585\n"
+"help.text"
+msgid "Select the cell range or array containing the array formula."
+msgstr ""
+
+#. onH9W
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3154619\n"
+"help.text"
+msgid "Either press <emph>F2</emph> or position the cursor in the input line."
+msgstr ""
+
+#. MTD8j
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3150994\n"
+"help.text"
+msgid "Copy the formula into the input line by pressing <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline><emph> + C</emph>."
+msgstr ""
+
+#. 8GbwE
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3146787\n"
+"help.text"
+msgid "Select a range of cells where you want to insert the array formula and either press <emph>F2</emph> or position the cursor in the input line."
+msgstr ""
+
+#. EBtxq
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3154419\n"
+"help.text"
+msgid "Paste the formula by pressing <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline><emph> + V</emph> in the selected space and confirm it by pressing <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline><emph> + Shift + Enter</emph>. The selected range now contains the array formula."
+msgstr ""
+
+#. HehUu
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"hd_id3154834\n"
+"help.text"
+msgid "Adjusting an Array Range"
+msgstr ""
+
+#. RNWq6
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3148679\n"
+"help.text"
+msgid "If you want to edit the output array, do the following:"
+msgstr ""
+
+#. FjHFw
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3151102\n"
+"help.text"
+msgid "Select the cell range or array containing the array formula."
+msgstr ""
+
+#. HiEAu
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3147096\n"
+"help.text"
+msgid "Below the selection, to the right, you will see a small icon with which you can zoom in or out on the range using your mouse."
+msgstr ""
+
+#. DKvtE
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3150974\n"
+"help.text"
+msgid "When you adjust the array range, the array formula will not automatically be adjusted. You are only changing the range in which the result will appear."
+msgstr ""
+
+#. DQ5ep
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3146080\n"
+"help.text"
+msgid "By holding down the <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline> key, you can create a copy of the array formula in the given range."
+msgstr ""
+
+#. 9MbQS
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_idN10D47\n"
+"help.text"
+msgid "Conditional Array Calculations"
+msgstr ""
+
+#. 86doB
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_idN10D4B\n"
+"help.text"
+msgid "A conditional array calculation is an array or matrix formula that includes an IF() or CHOOSE() function. The condition argument in the formula is an area reference or a matrix result."
+msgstr ""
+
+#. g8Lbq
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_idN10D4E\n"
+"help.text"
+msgid "In the following example, the >0 test of the {=IF(A1:A3>0;\"yes\";\"no\")} formula is applied to each cell in the range A1:A3 and the result is copied to the corresponding cell."
+msgstr ""
+
+#. 3FqVF
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_idN10D6B\n"
+"help.text"
+msgid "B (formula)"
+msgstr ""
+
+#. wWCLw
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_idN10B75\n"
+"help.text"
+msgid "B (result)"
+msgstr ""
+
+#. Dit5X
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_idN10D86\n"
+"help.text"
+msgid "{=IF(A1:A3>0;\"yes\";\"no\")}"
+msgstr ""
+
+#. 4hDBu
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_idN10D8C\n"
+"help.text"
+msgid "yes"
+msgstr ""
+
+#. xdizG
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_idN10DA1\n"
+"help.text"
+msgid "{=IF(A1:A3>0;\"yes\";\"no\")}"
+msgstr ""
+
+#. dFcBM
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_idN10DA7\n"
+"help.text"
+msgid "no"
+msgstr ""
+
+#. Cyn8f
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_idN10DBC\n"
+"help.text"
+msgid "{=IF(A1:A3>0;\"yes\";\"no\")}"
+msgstr ""
+
+#. 6yRCA
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_idN10DC2\n"
+"help.text"
+msgid "yes"
+msgstr ""
+
+#. XAnqi
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_idN10DD0\n"
+"help.text"
+msgid "The following functions provide forced array handling: CORREL, COVAR, FORECAST, FTEST, INTERCEPT, MDETERM, MINVERSE, MMULT, MODE, PEARSON, PROB, RSQ, SLOPE, STEYX, SUMPRODUCT, SUMX2MY2, SUMX2PY2, SUMXMY2, TTEST. If you use area references as arguments when you call one of these functions, the functions behave as array functions. The following table provides an example of forced array handling:"
+msgstr ""
+
+#. zPgwk
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_idN10DE8\n"
+"help.text"
+msgid "B (formula)"
+msgstr ""
+
+#. 4CwjW
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_idN10DEE\n"
+"help.text"
+msgid "B (result)"
+msgstr ""
+
+#. fBDKw
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_idN10DF4\n"
+"help.text"
+msgid "C (forced array formula)"
+msgstr ""
+
+#. eTGDa
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_idN10DFA\n"
+"help.text"
+msgid "C (result)"
+msgstr ""
+
+#. 7FNH9
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_idN10E1D\n"
+"help.text"
+msgid "=SUMPRODUCT(A1:A2+1)"
+msgstr ""
+
+#. 9rEP2
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_idN10E48\n"
+"help.text"
+msgid "=SUMPRODUCT(A1:A2+1)"
+msgstr ""
+
+#. 2Abur
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_idN10E6A\n"
+"help.text"
+msgid "#VALUE!"
+msgstr ""
+
+#. 8TBcy
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_idN10E70\n"
+"help.text"
+msgid "=SUMPRODUCT(A1:A2+1)"
+msgstr ""
+
+#. cBeHp
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"bm_id3158446\n"
+"help.text"
+msgid "<bookmark_value>MUNIT function</bookmark_value>"
+msgstr ""
+
+#. qGxmk
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"hd_id3158446\n"
+"help.text"
+msgid "MUNIT"
+msgstr ""
+
+#. 3R2mo
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3154121\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_EINHEITSMATRIX\">Returns the unitary square array of a certain size.</ahelp> The unitary array is a square array where the main diagonal elements equal 1 and all other array elements are equal to 0."
+msgstr ""
+
+#. ZAHFx
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3156271\n"
+"help.text"
+msgid "MUNIT(Dimensions)"
+msgstr ""
+
+#. cgRCK
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3159390\n"
+"help.text"
+msgid "<emph>Dimensions</emph> refers to the size of the array unit."
+msgstr ""
+
+#. ayE2q
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_idN10C9B\n"
+"help.text"
+msgid "You can find a general introduction to Array functions at the top of this page."
+msgstr ""
+
+#. UQDNX
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3150949\n"
+"help.text"
+msgid "Select a square range within the spreadsheet, for example, from A1 to E5."
+msgstr ""
+
+#. YABET
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3151260\n"
+"help.text"
+msgid "Without deselecting the range, select the MUNIT function. Mark the <emph>Array</emph> check box. Enter the desired dimensions for the array unit, in this case <item type=\"input\">5</item>, and click <emph>OK</emph>."
+msgstr ""
+
+#. yywEQ
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3150403\n"
+"help.text"
+msgid "You can also enter the <item type=\"input\">=MUNIT(5)</item> formula in the last cell of the selected range (E5), and press <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"keycode\">Shift + Command + Enter</item></caseinline><defaultinline><item type=\"keycode\">Shift + Ctrl + Enter</item></defaultinline></switchinline>."
+msgstr ""
+
+#. gB9Be
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3156143\n"
+"help.text"
+msgid "You now see a unit array with a range of A1:E5."
+msgstr ""
+
+#. Gf6DP
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"bm_id3159084\n"
+"help.text"
+msgid "<bookmark_value>FREQUENCY function</bookmark_value>"
+msgstr ""
+
+#. z7DBb
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"hd_id3159084\n"
+"help.text"
+msgid "FREQUENCY"
+msgstr ""
+
+#. CgxiG
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3145777\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_HAEUFIGKEIT\">Indicates the frequency distribution in a one-column-array.</ahelp> The function counts the number of values in the <emph>Data</emph> array that are within the values given by the <emph>Classes</emph> array."
+msgstr ""
+
+#. NFDXK
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3155498\n"
+"help.text"
+msgid "FREQUENCY(Data; Classes)"
+msgstr ""
+
+#. NCyy5
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3154352\n"
+"help.text"
+msgid "<emph>Data</emph> represents the reference to the values to be counted."
+msgstr ""
+
+#. b3WxQ
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3148402\n"
+"help.text"
+msgid "<emph>Classes</emph> represents the array of the limit values."
+msgstr ""
+
+#. Wew2J
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_idN10D71\n"
+"help.text"
+msgid "You can find a general introduction to Array functions at the top of this page."
+msgstr ""
+
+#. h7yjC
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3155904\n"
+"help.text"
+msgid "In the following table, column A lists unsorted measurement values. Column B contains the upper limit you entered for the classes into which you want to divide the data in column A. According to the limit entered in B1, the FREQUENCY function returns the number of measured values less than or equal to 5. As the limit in B2 is 10, the FREQUENCY function returns the second result as the number of measured values that are greater than 5 and less than or equal to 10. The text you entered in B6, \">25\", is only for reference purposes."
+msgstr ""
+
+#. tVPA4
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3150312\n"
+"help.text"
+msgid "Select a single column range in which to enter the frequency according to the class limits. You must select one field more than the class ceiling. In this example, select the range C1:C6. Call up the FREQUENCY function in the <emph>Function Wizard</emph>. Select the <emph>Data</emph> range in (A1:A11), and then the <emph>Classes</emph> range in which you entered the class limits (B1:B6). Select the <emph>Array</emph> check box and click <emph>OK</emph>. You will see the frequency count in the range C1:C6."
+msgstr ""
+
+#. shMJG
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"bm_id3151030\n"
+"help.text"
+msgid "<bookmark_value>MDETERM function</bookmark_value><bookmark_value>determinants</bookmark_value>"
+msgstr ""
+
+#. vg6ML
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"hd_id3151030\n"
+"help.text"
+msgid "MDETERM"
+msgstr ""
+
+#. KPSAt
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3154073\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_MDET\">Returns the array determinant of an array.</ahelp> This function returns a value in the current cell; it is not necessary to define a range for the results."
+msgstr ""
+
+#. Zahsu
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3156380\n"
+"help.text"
+msgid "MDETERM(Array)"
+msgstr ""
+
+#. GEptz
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3150290\n"
+"help.text"
+msgid "<emph>Array</emph> represents a square array in which the determinants are defined."
+msgstr ""
+
+#. MbKkA
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_idN11635\n"
+"help.text"
+msgid "You can find a general introduction to using Array functions on top of this page."
+msgstr ""
+
+#. y56Lm
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"bm_id3151348\n"
+"help.text"
+msgid "<bookmark_value>MINVERSE function</bookmark_value><bookmark_value>inverse arrays</bookmark_value>"
+msgstr ""
+
+#. xTHGA
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"hd_id3151348\n"
+"help.text"
+msgid "MINVERSE"
+msgstr ""
+
+#. mnbtj
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3145569\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_MINV\">Returns the inverse array.</ahelp>"
+msgstr ""
+
+#. A3Hyn
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3156085\n"
+"help.text"
+msgid "MINVERSE(Array)"
+msgstr ""
+
+#. ajEGo
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3157849\n"
+"help.text"
+msgid "<emph>Array</emph> represents a square array that is to be inverted."
+msgstr ""
+
+#. YgTJD
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3149638\n"
+"help.text"
+msgid "Select a square range and select MINVERSE. Select the output array, select the <emph>Array</emph> field and click <emph>OK</emph>."
+msgstr ""
+
+#. c2Z39
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"bm_id3148546\n"
+"help.text"
+msgid "<bookmark_value>MMULT function</bookmark_value>"
+msgstr ""
+
+#. cvame
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"hd_id3148546\n"
+"help.text"
+msgid "MMULT"
+msgstr ""
+
+#. mWLDh
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3148518\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_MMULT\">Calculates the array product of two arrays.</ahelp> The number of columns for array 1 must match the number of rows for array 2. The square array has an equal number of rows and columns."
+msgstr ""
+
+#. JUTAD
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3150798\n"
+"help.text"
+msgid "MMULT(Array 1; Array 2)"
+msgstr ""
+
+#. DqghH
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3150812\n"
+"help.text"
+msgid "<emph>Array 1</emph> represents the first array used in the array product."
+msgstr ""
+
+#. FDfwg
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3152553\n"
+"help.text"
+msgid "<emph>Array 2</emph> represents the second array with the same number of rows."
+msgstr ""
+
+#. CuGxm
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3146826\n"
+"help.text"
+msgid "Select a square range. Choose the MMULT function. Select <emph>Array 1</emph>, then select <emph>Array 2</emph>. Using the <emph>Function Wizard</emph>, mark the <emph>Array</emph> check box. Click <emph>OK</emph>. The output array will appear in the first selected range."
+msgstr ""
+
+#. vPBWq
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"bm_id3154970\n"
+"help.text"
+msgid "<bookmark_value>TRANSPOSE function</bookmark_value>"
+msgstr ""
+
+#. 5Tcfr
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"hd_id3154970\n"
+"help.text"
+msgid "TRANSPOSE"
+msgstr ""
+
+#. DQZoL
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3155276\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_MTRANS\">Transposes the rows and columns of an array.</ahelp>"
+msgstr ""
+
+#. yX4Fn
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3153843\n"
+"help.text"
+msgid "TRANSPOSE(Array)"
+msgstr ""
+
+#. FHbAX
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3153857\n"
+"help.text"
+msgid "<emph>Array</emph> represents the array in the spreadsheet that is to be transposed."
+msgstr ""
+
+#. eBkbU
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_idN11035\n"
+"help.text"
+msgid "You can find a general introduction to using Array functions on top of this page."
+msgstr ""
+
+#. TdFfe
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3159366\n"
+"help.text"
+msgid "In the spreadsheet, select the range in which the transposed array can appear. If the original array has n rows and m columns, your selected range must have at least m rows and n columns. Then enter the formula directly, select the original array and press <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Shift + Command + Enter</emph></caseinline><defaultinline><emph>Shift + Ctrl + Enter</emph></defaultinline></switchinline>. Or, if you are using the <emph>Function Wizard</emph>, mark the <emph>Array</emph> check box. The transposed array appears in the selected target range and is protected automatically against changes."
+msgstr ""
+
+#. 3oHh6
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3168518\n"
+"help.text"
+msgid "The above table is 2 rows, 4 columns. In order to transpose it, you must select 4 rows, 2 columns. Assuming you want to transpose the above table to the range A7:B10 (4 rows, 2 columns) you must select the entire range and then enter the following:"
+msgstr ""
+
+#. FVsQ9
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3166145\n"
+"help.text"
+msgid "TRANSPOSE(A1:D2)"
+msgstr ""
+
+#. EaoXz
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3178518\n"
+"help.text"
+msgid "Then <emph>make sure to enter it as matrix formula with </emph><switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Shift + Command + Enter</emph></caseinline><defaultinline><emph>Shift + Ctrl + Enter</emph></defaultinline></switchinline>. The result will be as follows:"
+msgstr ""
+
+#. CGWog
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"bm_id3109846\n"
+"help.text"
+msgid "<bookmark_value>LINEST function</bookmark_value>"
+msgstr ""
+
+#. KKgvt
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"hd_id3109846\n"
+"help.text"
+msgid "LINEST"
+msgstr ""
+
+#. GECEu
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3144733\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_RGP\">Returns a table of statistics for a straight line that best fits a data set.</ahelp>"
+msgstr ""
+
+#. 7YFEn
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3152839\n"
+"help.text"
+msgid "LINEST(data_Y [; data_X [; linearType [; stats]]])"
+msgstr ""
+
+#. M2QFp
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3152853\n"
+"help.text"
+msgid "<emph>data_Y</emph> is a single row or column range specifying the y coordinates in a set of data points."
+msgstr ""
+
+#. pKKLj
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3154428\n"
+"help.text"
+msgid "<emph>data_X</emph> is a corresponding single row or column range specifying the x coordinates. If <emph>data_X</emph> is omitted it defaults to <item type=\"literal\">1, 2, 3, ..., n</item>. If there is more than one set of variables <emph>data_X</emph> may be a range with corresponding multiple rows or columns."
+msgstr ""
+
+#. BWBpx
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id0811200804502119\n"
+"help.text"
+msgid "LINEST finds a straight line <item type=\"literal\">y = a + bx</item> that best fits the data, using linear regression (the \"least squares\" method). With more than one set of variables the straight line is of the form <item type=\"literal\">y = a + b1x1 + b2x2 ... + bnxn</item>."
+msgstr ""
+
+#. VG9J7
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3154448\n"
+"help.text"
+msgid "If <emph>linearType</emph> is FALSE the straight line found is forced to pass through the origin (the constant a is zero; y = bx). If omitted, <emph>linearType</emph> defaults to TRUE (the line is not forced through the origin)."
+msgstr ""
+
+#. 3FRWe
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3154142\n"
+"help.text"
+msgid "If <emph>stats</emph> is omitted or FALSE only the top line of the statistics table is returned. If TRUE the entire table is returned."
+msgstr ""
+
+#. RZocG
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id0811200804502261\n"
+"help.text"
+msgid "LINEST returns a table (array) of statistics as below and must be entered as an array formula (for example by using <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline><emph> + Shift + Return</emph> rather than just <emph>Return</emph>)."
+msgstr ""
+
+#. 7ckGM
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3154176\n"
+"help.text"
+msgid "This function returns an array and is handled in the same way as the other array functions. Select a range for the answers and then the function. Select <emph>data_Y</emph>. If you want, you can enter other parameters. Select <emph>Array</emph> and click <emph>OK</emph>."
+msgstr ""
+
+#. 3ywaF
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3155468\n"
+"help.text"
+msgid "The results returned by the system (if <emph>stats</emph> = 0), will at least show the slope of the regression line and its intersection with the Y axis. If <emph>stats</emph> does not equal 0, other results are to be displayed."
+msgstr ""
+
+#. GBxKL
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"hd_id3155491\n"
+"help.text"
+msgid "Other LINEST Results:"
+msgstr ""
+
+#. dMDC6
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3159291\n"
+"help.text"
+msgid "Examine the following examples:"
+msgstr ""
+
+#. xngDS
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3155021\n"
+"help.text"
+msgid "<item type=\"input\">x1</item>"
+msgstr ""
+
+#. GwEwr
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3155044\n"
+"help.text"
+msgid "<item type=\"input\">x2</item>"
+msgstr ""
+
+#. ABFMA
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3163734\n"
+"help.text"
+msgid "<item type=\"input\">y</item>"
+msgstr ""
+
+#. rmBcF
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3163766\n"
+"help.text"
+msgid "<item type=\"input\">LINEST value</item>"
+msgstr ""
+
+#. pGe39
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3159460\n"
+"help.text"
+msgid "<item type=\"input\">4,17</item>"
+msgstr ""
+
+#. fiuYc
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3159483\n"
+"help.text"
+msgid "-<item type=\"input\">3,48</item>"
+msgstr ""
+
+#. ES4nC
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3152381\n"
+"help.text"
+msgid "<item type=\"input\">82,33</item>"
+msgstr ""
+
+#. oFGz9
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3155684\n"
+"help.text"
+msgid "<item type=\"input\">5,46</item>"
+msgstr ""
+
+#. ABLip
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3155707\n"
+"help.text"
+msgid "<item type=\"input\">10,96</item>"
+msgstr ""
+
+#. ohjHE
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3155730\n"
+"help.text"
+msgid "<item type=\"input\">9,35</item>"
+msgstr ""
+
+#. jkBDw
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3159611\n"
+"help.text"
+msgid "<item type=\"input\">0,87</item>"
+msgstr ""
+
+#. BYXpH
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3152606\n"
+"help.text"
+msgid "<item type=\"input\">5,06</item>"
+msgstr ""
+
+#. vZEL5
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3152629\n"
+"help.text"
+msgid "<item type=\"input\">#NA</item>"
+msgstr ""
+
+#. CkRDQ
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3144352\n"
+"help.text"
+msgid "<item type=\"input\">13,21</item>"
+msgstr ""
+
+#. pVrXF
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3144398\n"
+"help.text"
+msgid "<item type=\"input\">#NA</item>"
+msgstr ""
+
+#. ApUzi
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3158233\n"
+"help.text"
+msgid "<item type=\"input\">675,45</item>"
+msgstr ""
+
+#. t4FEJ
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3158256\n"
+"help.text"
+msgid "<item type=\"input\">102,26</item>"
+msgstr ""
+
+#. SzEUP
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3158279\n"
+"help.text"
+msgid "<item type=\"input\">#NA</item>"
+msgstr ""
+
+#. cGjuz
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3144687\n"
+"help.text"
+msgid "Column A contains several X1 values, column B several X2 values and column C the Y values. You have already entered these values in your spreadsheet. You have now set up E2:G6 in the spreadsheet and activated the <emph>Function Wizard</emph>. For the LINEST function to work, you must have marked the <emph>Array</emph> check box in the <emph>Function Wizard</emph>. Next, select the following values in the spreadsheet (or enter them using the keyboard):"
+msgstr ""
+
+#. KgyyZ
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3158020\n"
+"help.text"
+msgid "<emph>data_Y</emph> is C2:C8"
+msgstr ""
+
+#. 8CjXP
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3158039\n"
+"help.text"
+msgid "<emph>data_X</emph> is A2:B8"
+msgstr ""
+
+#. thfEv
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3158058\n"
+"help.text"
+msgid "<emph>linearType</emph> and <emph>stats</emph> are both set to 1."
+msgstr ""
+
+#. 87XhB
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3158084\n"
+"help.text"
+msgid "As soon as you click <emph>OK</emph>, $[officename] Calc will fill the above example with the LINEST values as shown in the example."
+msgstr ""
+
+#. FmuPh
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3158106\n"
+"help.text"
+msgid "The formula in the <emph>Formula</emph> bar corresponds to each cell of the LINEST array <item type=\"input\">{=LINEST(C2:C8;A2:B8;1;1)}</item>."
+msgstr ""
+
+#. d9JKm
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3158128\n"
+"help.text"
+msgid "<emph>This represents the calculated LINEST values:</emph>"
+msgstr ""
+
+#. ysUqs
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"bm_id3158146\n"
+"help.text"
+msgid "<bookmark_value>slopes, see also regression lines</bookmark_value><bookmark_value>regression lines; LINEST function</bookmark_value>"
+msgstr ""
+
+#. 7D7bJ
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3158146\n"
+"help.text"
+msgid "E2 and F2: Slope m of the regression line y=b+m*x for the x1 and x2 values. The values are given in reverse order; that is, the slope for x2 in E2 and the slope for x1 in F2."
+msgstr ""
+
+#. 4Fhak
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3158184\n"
+"help.text"
+msgid "G2: Intersection b with the y axis."
+msgstr ""
+
+#. VLgTJ
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"bm_id3158204\n"
+"help.text"
+msgid "<bookmark_value>standard errors; array functions</bookmark_value>"
+msgstr ""
+
+#. LhycE
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3158204\n"
+"help.text"
+msgid "E3 and F3: The standard error of the slope value."
+msgstr ""
+
+#. NAdrZ
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3145845\n"
+"help.text"
+msgid "G3: The standard error of the intercept"
+msgstr ""
+
+#. owRT8
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"bm_id3145859\n"
+"help.text"
+msgid "<bookmark_value>RSQ calculations</bookmark_value>"
+msgstr ""
+
+#. SqGBn
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3145859\n"
+"help.text"
+msgid "E4: RSQ"
+msgstr ""
+
+#. WZ6Hb
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3145880\n"
+"help.text"
+msgid "F4: The standard error of the regression calculated for the Y value."
+msgstr ""
+
+#. E5G7z
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3145894\n"
+"help.text"
+msgid "E5: The F value from the variance analysis."
+msgstr ""
+
+#. fxmSF
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3145915\n"
+"help.text"
+msgid "F5: The degrees of freedom from the variance analysis."
+msgstr ""
+
+#. jx7yp
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3145937\n"
+"help.text"
+msgid "E6: The sum of the squared deviation of the estimated Y values from their linear mean."
+msgstr ""
+
+#. EGBLt
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3145952\n"
+"help.text"
+msgid "F6: The sum of the squared deviation of the estimated Y value from the given Y values."
+msgstr ""
+
+#. V2zsC
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"bm_id1596728\n"
+"help.text"
+msgid "<bookmark_value>LOGEST function</bookmark_value>"
+msgstr ""
+
+#. kWKCQ
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"hd_id3146009\n"
+"help.text"
+msgid "LOGEST"
+msgstr ""
+
+#. 8ydmZ
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3146037\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_RKP\">This function calculates the adjustment of the entered data as an exponential regression curve (y=b*m^x).</ahelp>"
+msgstr ""
+
+#. rdZCV
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3163123\n"
+"help.text"
+msgid "LOGEST(DataY [; DataX [; FunctionType [; Stats]]])"
+msgstr ""
+
+#. 8jgzC
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3163137\n"
+"help.text"
+msgid "<emph>DataY</emph> represents the Y Data array."
+msgstr ""
+
+#. NHd3Q
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3163155\n"
+"help.text"
+msgid "<emph>DataX</emph> (optional) represents the X Data array."
+msgstr ""
+
+#. AF5ez
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3163174\n"
+"help.text"
+msgid "<emph>FunctionType</emph> (optional). If Function_Type = 0, functions in the form y = m^x will be calculated. Otherwise, y = b*m^x functions will be calculated."
+msgstr ""
+
+#. XS5ao
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3163196\n"
+"help.text"
+msgid "<emph>Stats</emph> (optional). If Stats=0, only the regression coefficient is calculated."
+msgstr ""
+
+#. MozFA
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3163230\n"
+"help.text"
+msgid "See LINEST. However, no square sum will be returned."
+msgstr ""
+
+#. MDwDi
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"bm_id3163286\n"
+"help.text"
+msgid "<bookmark_value>SUMPRODUCT function</bookmark_value><bookmark_value>scalar products</bookmark_value><bookmark_value>dot products</bookmark_value><bookmark_value>inner products</bookmark_value>"
+msgstr ""
+
+#. TsAd9
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"hd_id3163286\n"
+"help.text"
+msgid "SUMPRODUCT"
+msgstr ""
+
+#. dQvB9
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3163314\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_SUMMENPRODUKT\">Multiplies corresponding elements in the given arrays, and returns the sum of those products.</ahelp>"
+msgstr ""
+
+#. zmqCZ
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3163347\n"
+"help.text"
+msgid "SUMPRODUCT(Array 1[; Array 2;][...;[Array 255]])"
+msgstr ""
+
+#. gGK9K
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3163362\n"
+"help.text"
+msgid "<emph>Array 1[; Array 2;][...;[Array 255]]</emph> represent arrays whose corresponding elements are to be multiplied."
+msgstr ""
+
+#. kCud6
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_idN11B19\n"
+"help.text"
+msgid "At least one array must be part of the argument list. If only one array is given, all array elements are summed. If more than one array is given, they must all be the same size."
+msgstr ""
+
+#. DgsMB
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_idN11B60\n"
+"help.text"
+msgid "<item type=\"input\">5</item>"
+msgstr ""
+
+#. vYZhd
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_idN11BA1\n"
+"help.text"
+msgid "<item type=\"input\">=SUMPRODUCT(A1:B3;C1:D3)</item> returns 397."
+msgstr ""
+
+#. MccEV
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_idN11BA4\n"
+"help.text"
+msgid "Calculation: A1*C1 + B1*D1 + A2*C2 + B2*D2 + A3*C3 + B3*D3"
+msgstr ""
+
+#. yhYcU
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_idN11BA7\n"
+"help.text"
+msgid "You can use SUMPRODUCT to calculate the scalar product of two vectors."
+msgstr ""
+
+#. ADcrY
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_idN11BBC\n"
+"help.text"
+msgid "SUMPRODUCT returns a single number, it is not necessary to enter the function as an array function."
+msgstr ""
+
+#. Rebve
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"bm_id3144842\n"
+"help.text"
+msgid "<bookmark_value>SUMX2MY2 function</bookmark_value>"
+msgstr ""
+
+#. 3yDZD
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"hd_id3144842\n"
+"help.text"
+msgid "SUMX2MY2"
+msgstr ""
+
+#. 56cLG
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3144871\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_SUMMEX2MY2\">Returns the sum of the difference of squares of corresponding values in two arrays.</ahelp>"
+msgstr ""
+
+#. PssKK
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3144903\n"
+"help.text"
+msgid "SUMX2MY2(ArrayX; ArrayY)"
+msgstr ""
+
+#. ChfSA
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3144916\n"
+"help.text"
+msgid "<emph>ArrayX</emph> represents the first array whose elements are to be squared and added."
+msgstr ""
+
+#. Rcya8
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3144936\n"
+"help.text"
+msgid "<emph>ArrayY</emph> represents the second array whose elements are to be squared and subtracted."
+msgstr ""
+
+#. e2XML
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"bm_id3145026\n"
+"help.text"
+msgid "<bookmark_value>SUMX2PY2 function</bookmark_value>"
+msgstr ""
+
+#. qh9Q2
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"hd_id3145026\n"
+"help.text"
+msgid "SUMX2PY2"
+msgstr ""
+
+#. S2MjJ
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3145055\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_SUMMEX2PY2\">Returns the sum of the sum of squares of corresponding values in two arrays.</ahelp>"
+msgstr ""
+
+#. uciHJ
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3163404\n"
+"help.text"
+msgid "SUMX2PY2(ArrayX; ArrayY)"
+msgstr ""
+
+#. T2CCC
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3163417\n"
+"help.text"
+msgid "<emph>ArrayX</emph> represents the first array whose elements are to be squared and added."
+msgstr ""
+
+#. Dqpab
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3163437\n"
+"help.text"
+msgid "<emph>ArrayY</emph> represents the second array, whose elements are to be squared and added."
+msgstr ""
+
+#. wHCyZ
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"bm_id3163527\n"
+"help.text"
+msgid "<bookmark_value>SUMXMY2 function</bookmark_value>"
+msgstr ""
+
+#. ktCZQ
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"hd_id3163527\n"
+"help.text"
+msgid "SUMXMY2"
+msgstr ""
+
+#. nzmZJ
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3163556\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_SUMMEXMY2\">Adds the squares of the variance between corresponding values in two arrays.</ahelp>"
+msgstr ""
+
+#. MCRBG
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3163588\n"
+"help.text"
+msgid "SUMXMY2(ArrayX; ArrayY)"
+msgstr ""
+
+#. 3BKpm
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3163601\n"
+"help.text"
+msgid "<emph>ArrayX</emph> represents the first array whose elements are to be subtracted and squared."
+msgstr ""
+
+#. pyDnE
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3163621\n"
+"help.text"
+msgid "<emph>ArrayY</emph> represents the second array, whose elements are to be subtracted and squared."
+msgstr ""
+
+#. WM9m4
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"bm_id3166062\n"
+"help.text"
+msgid "<bookmark_value>TREND function</bookmark_value>"
+msgstr ""
+
+#. A9EDa
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"hd_id3166062\n"
+"help.text"
+msgid "TREND"
+msgstr ""
+
+#. Mj3Ps
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3166091\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_TREND\">Returns values along a linear trend.</ahelp>"
+msgstr ""
+
+#. f8Ftr
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3166122\n"
+"help.text"
+msgid "TREND(DataY [; DataX [; NewDataX [; LinearType]]])"
+msgstr ""
+
+#. qeK4r
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3166137\n"
+"help.text"
+msgid "<emph>DataY</emph> represents the Y Data array."
+msgstr ""
+
+#. LGjJL
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3166156\n"
+"help.text"
+msgid "<emph>DataX</emph> (optional) represents the X Data array."
+msgstr ""
+
+#. PzdoS
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3166176\n"
+"help.text"
+msgid "<emph>NewDataX</emph> (optional) represents the array of the X data, which are used for recalculating values."
+msgstr ""
+
+#. 4Hrja
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3166196\n"
+"help.text"
+msgid "<emph>LinearType</emph> (optional). If LinearType = 0, then lines will be calculated through the zero point. Otherwise, offset lines will also be calculated. The default is LinearType <> 0."
+msgstr ""
+
+#. 6mQp3
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3166245\n"
+"help.text"
+msgid "Select a spreadsheet range in which the trend data will appear. Select the function. Enter the output data or select it with the mouse. Mark the <emph>Array</emph> field, click <emph>OK</emph>. The trend data calculated from the output data is displayed."
+msgstr ""
+
+#. utRHG
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"bm_id3166317\n"
+"help.text"
+msgid "<bookmark_value>GROWTH function</bookmark_value><bookmark_value>exponential trends in arrays</bookmark_value>"
+msgstr ""
+
+#. fpjnj
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"hd_id3166317\n"
+"help.text"
+msgid "GROWTH"
+msgstr ""
+
+#. odySD
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3166346\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_VARIATION\">Calculates the points of an exponential trend in an array.</ahelp>"
+msgstr ""
+
+#. GMVAK
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3166377\n"
+"help.text"
+msgid "GROWTH(DataY [; [ DataX ] [; [ NewDataX ] [; FunctionType ] ] ])"
+msgstr ""
+
+#. CA3qD
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3166392\n"
+"help.text"
+msgid "<emph>DataY</emph> represents the Y Data array."
+msgstr ""
+
+#. 64L8f
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3166411\n"
+"help.text"
+msgid "<emph>DataX</emph> (optional) represents the X Data array."
+msgstr ""
+
+#. eabdW
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3173797\n"
+"help.text"
+msgid "<emph>NewDataX</emph> (optional) represents the X data array, in which the values are recalculated."
+msgstr ""
+
+#. 8ojPA
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3173817\n"
+"help.text"
+msgid "<emph>FunctionType</emph> (optional). If FunctionType = 0, functions in the form y = m^x will be calculated. Otherwise, y = b*m^x functions will be calculated."
+msgstr ""
+
+#. unEBv
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id3173852\n"
+"help.text"
+msgid "This function returns an array and is handled in the same way as the other array functions. Select a range where you want the answers to appear and select the function. Select <emph>DataY</emph>. Enter any other parameters, mark <emph>Array</emph> and click <emph>OK</emph>."
+msgstr ""
+
+#. p4YTh
+#: 04060108.xhp
+msgctxt ""
+"04060108.xhp\n"
+"tit\n"
+"help.text"
+msgid "Statistics Functions"
+msgstr ""
+
+#. xJyMy
+#: 04060108.xhp
+msgctxt ""
+"04060108.xhp\n"
+"bm_id3153018\n"
+"help.text"
+msgid "<bookmark_value>statistics functions</bookmark_value><bookmark_value>Function Wizard; statistics</bookmark_value><bookmark_value>functions; statistics functions</bookmark_value>"
+msgstr ""
+
+#. KKBEq
+#: 04060108.xhp
+msgctxt ""
+"04060108.xhp\n"
+"hd_id3153018\n"
+"help.text"
+msgid "<variable id=\"head_statistic\"><link href=\"text/scalc/01/04060108.xhp\" name=\"Statistics Functions\">Statistics Functions</link></variable>"
+msgstr ""
+
+#. M7Z6D
+#: 04060108.xhp
+msgctxt ""
+"04060108.xhp\n"
+"par_id3157874\n"
+"help.text"
+msgid "<variable id=\"statistiktext\">This category contains the <emph>Statistics</emph> functions.</variable>"
+msgstr ""
+
+#. HiTED
+#: 04060108.xhp
+msgctxt ""
+"04060108.xhp\n"
+"par_id3149001\n"
+"help.text"
+msgid "Some of the examples use the following data table:"
+msgstr ""
+
+#. PeXDp
+#: 04060108.xhp
+msgctxt ""
+"04060108.xhp\n"
+"par_id3153551\n"
+"help.text"
+msgid "x value"
+msgstr ""
+
+#. b9ACz
+#: 04060108.xhp
+msgctxt ""
+"04060108.xhp\n"
+"par_id3147536\n"
+"help.text"
+msgid "y value"
+msgstr ""
+
+#. BbE8F
+#: 04060108.xhp
+msgctxt ""
+"04060108.xhp\n"
+"par_id3156324\n"
+"help.text"
+msgid "The statistical functions are described in the following subsections."
+msgstr ""
+
+#. gREzE
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"tit\n"
+"help.text"
+msgid "Spreadsheet Functions"
+msgstr ""
+
+#. WoHfE
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"bm_id3148522\n"
+"help.text"
+msgid "<bookmark_value>spreadsheets; functions</bookmark_value> <bookmark_value>Function Wizard; spreadsheets</bookmark_value> <bookmark_value>functions; spreadsheets</bookmark_value>"
+msgstr ""
+
+#. qcCTY
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3148522\n"
+"help.text"
+msgid "Spreadsheet Functions"
+msgstr ""
+
+#. BceQk
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3144508\n"
+"help.text"
+msgid "<variable id=\"tabelletext\">This section contains descriptions of the <emph>Spreadsheet</emph> functions together with an example.</variable>"
+msgstr ""
+
+#. aoGD9
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"bm_id3146968\n"
+"help.text"
+msgid "<bookmark_value>ADDRESS function</bookmark_value>"
+msgstr ""
+
+#. YWzqF
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3146968\n"
+"help.text"
+msgid "ADDRESS"
+msgstr ""
+
+#. EDZCM
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3155762\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 ""
+
+#. hrEcs
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id1027200802301348\n"
+"help.text"
+msgid "For interoperability the ADDRESS and INDIRECT functions support an optional parameter to specify whether the R1C1 address notation instead of the usual A1 notation should be used."
+msgstr ""
+
+#. JJpSk
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id1027200802301445\n"
+"help.text"
+msgid "In ADDRESS, the parameter is inserted as the fourth parameter, shifting the optional sheet name parameter to the fifth position."
+msgstr ""
+
+#. qFesv
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id102720080230153\n"
+"help.text"
+msgid "In INDIRECT, the parameter is appended as the second parameter."
+msgstr ""
+
+#. gvGjb
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id102720080230151\n"
+"help.text"
+msgid "In both functions, if the argument is inserted with the value 0, then the R1C1 notation is used. If the argument is not given or has a value other than 0, then the A1 notation is used."
+msgstr ""
+
+#. S5Du7
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id1027200802301556\n"
+"help.text"
+msgid "In case of R1C1 notation, ADDRESS returns address strings using the exclamation mark '!' as the sheet name separator, and INDIRECT expects the exclamation mark as sheet name separator. Both functions still use the dot '.' sheet name separator with A1 notation."
+msgstr ""
+
+#. tBvLY
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id1027200802301521\n"
+"help.text"
+msgid "When opening documents from ODF 1.0/1.1 format, the ADDRESS functions that show a sheet name as the fourth parameter will shift that sheet name to become the fifth parameter. A new fourth parameter with the value 1 will be inserted."
+msgstr ""
+
+#. NGGAw
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id1027200802301650\n"
+"help.text"
+msgid "When storing a document in ODF 1.0/1.1 format, if ADDRESS functions have a fourth parameter, that parameter will be removed."
+msgstr ""
+
+#. Ag8KD
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id102720080230162\n"
+"help.text"
+msgid "Do not save a spreadsheet in the old ODF 1.0/1.1 format if the ADDRESS function's new fourth parameter was used with a value of 0."
+msgstr ""
+
+#. d2kpf
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id1027200802301756\n"
+"help.text"
+msgid "The INDIRECT function is saved without conversion to ODF 1.0/1.1 format. If the second parameter was present, an older version of Calc will return an error for that function."
+msgstr ""
+
+#. TgFFT
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154707\n"
+"help.text"
+msgid "ADDRESS(Row; Column [; Abs [; A1 [; \"Sheet\"]]])"
+msgstr ""
+
+#. FyoLc
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3147505\n"
+"help.text"
+msgid "<emph>Row</emph> represents the row number for the cell reference"
+msgstr ""
+
+#. AEorU
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3145323\n"
+"help.text"
+msgid "<emph>Column</emph> represents the column number for the cell reference (the number, not the letter)"
+msgstr ""
+
+#. 8VYFW
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3153074\n"
+"help.text"
+msgid "<emph>Abs</emph> determines the type of reference:"
+msgstr ""
+
+#. EEfQf
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3153298\n"
+"help.text"
+msgid "1: absolute ($A$1)"
+msgstr ""
+
+#. jNcJG
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3150431\n"
+"help.text"
+msgid "2: row reference type is absolute; column reference is relative (A$1)"
+msgstr ""
+
+#. KXVHa
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3146096\n"
+"help.text"
+msgid "3: row (relative); column (absolute) ($A1)"
+msgstr ""
+
+#. AeGMD
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3153334\n"
+"help.text"
+msgid "4: relative (A1)"
+msgstr ""
+
+#. 3BFnh
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id1027200802465915\n"
+"help.text"
+msgid "<emph>A1</emph> (optional) - if set to 0, the R1C1 notation is used. If this parameter is absent or set to another value than 0, the A1 notation is used."
+msgstr ""
+
+#. R2QXf
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3153962\n"
+"help.text"
+msgid "<emph>Sheet</emph> represents the name of the sheet. It must be placed in double quotes."
+msgstr ""
+
+#. 3eSyo
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3147299\n"
+"help.text"
+msgid "Example:"
+msgstr ""
+
+#. oCjxy
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3148744\n"
+"help.text"
+msgid "<item type=\"input\">=ADDRESS(1;1;2;;\"Sheet2\")</item> returns the following: Sheet2.A$1"
+msgstr ""
+
+#. zEj2o
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3159260\n"
+"help.text"
+msgid "If the formula above is in cell B2 of current sheet, and 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 ""
+
+#. n7RGj
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"bm_id3150372\n"
+"help.text"
+msgid "<bookmark_value>AREAS function</bookmark_value>"
+msgstr ""
+
+#. BmNK5
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3150372\n"
+"help.text"
+msgid "AREAS"
+msgstr ""
+
+#. Bi6yp
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3150036\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 ""
+
+#. cvDFN
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id061020090307073\n"
+"help.text"
+msgid "The function expects a single argument. If you state multiple ranges, you must enclose them into additional parentheses. Multiple ranges can be entered using the semicolon (;) as divider, but this gets automatically converted to the tilde (~) operator. The tilde is used to join ranges."
+msgstr ""
+
+#. Tg8WA
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3155907\n"
+"help.text"
+msgid "AREAS(Reference)"
+msgstr ""
+
+#. fJLtE
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3153118\n"
+"help.text"
+msgid "Reference represents the reference to a cell or cell range."
+msgstr ""
+
+#. K5zS8
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3149946\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 ""
+
+#. sh5wD
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3146820\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 ""
+
+#. mUP2a
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"bm_id3148727\n"
+"help.text"
+msgid "<bookmark_value>DDE function</bookmark_value>"
+msgstr ""
+
+#. AMXUq
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3148727\n"
+"help.text"
+msgid "DDE"
+msgstr ""
+
+#. 2FAG7
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3149434\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 ""
+
+#. JBRdm
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3148886\n"
+"help.text"
+msgid "DDE(\"Server\"; \"File\"; \"Range\" [; Mode])"
+msgstr ""
+
+#. qAN6x
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154842\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\"."
+msgstr ""
+
+#. vsezP
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3153034\n"
+"help.text"
+msgid "<emph>File</emph> is the complete file name, including path specification."
+msgstr ""
+
+#. kU4Vp
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3147472\n"
+"help.text"
+msgid "<emph>Range</emph> is the area containing the data to be evaluated."
+msgstr ""
+
+#. 9zEYF
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3152773\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 ""
+
+#. 8nfD5
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154383\n"
+"help.text"
+msgid "<emph>Mode</emph>"
+msgstr ""
+
+#. LFGFv
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3145146\n"
+"help.text"
+msgid "<emph>Effect</emph>"
+msgstr ""
+
+#. GLZVP
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154558\n"
+"help.text"
+msgid "0 or missing"
+msgstr ""
+
+#. qgE6C
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3145596\n"
+"help.text"
+msgid "Number format from the \"Default\" cell style"
+msgstr ""
+
+#. U9iWf
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3152785\n"
+"help.text"
+msgid "1"
+msgstr ""
+
+#. 547CV
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154380\n"
+"help.text"
+msgid "Data are always interpreted in the standard format for US English"
+msgstr ""
+
+#. aqD2m
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3150279\n"
+"help.text"
+msgid "2"
+msgstr ""
+
+#. PEbpW
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3153775\n"
+"help.text"
+msgid "Data are retrieved as text; no conversion to numbers"
+msgstr ""
+
+#. Ae8L2
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3148734\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 ""
+
+#. 96FU5
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3153081\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 ""
+
+#. DmwaH
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"bm_id3153114\n"
+"help.text"
+msgid "<bookmark_value>ERRORTYPE function</bookmark_value>"
+msgstr ""
+
+#. Lp8zY
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3153114\n"
+"help.text"
+msgid "ERRORTYPE"
+msgstr ""
+
+#. EeCLR
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3148568\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 ""
+
+#. G7W2S
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3149877\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 ""
+
+#. KKLCk
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3151322\n"
+"help.text"
+msgid "ERRORTYPE(Reference)"
+msgstr ""
+
+#. DkKtR
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3150132\n"
+"help.text"
+msgid "<emph>Reference</emph> contains the address of the cell in which the error occurs."
+msgstr ""
+
+#. QgTxS
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3146904\n"
+"help.text"
+msgid "If cell A1 displays Err:518, the function <item type=\"input\">=ERRORTYPE(A1)</item> returns the number 518."
+msgstr ""
+
+#. mtLKD
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"bm_id3151221\n"
+"help.text"
+msgid "<bookmark_value>INDEX function</bookmark_value>"
+msgstr ""
+
+#. 8DKwz
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3151221\n"
+"help.text"
+msgid "INDEX"
+msgstr ""
+
+#. pe6Sh
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3150268\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 ""
+
+#. T659Y
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3149007\n"
+"help.text"
+msgid "INDEX(Reference [; Row [; Column [; Range]]])"
+msgstr ""
+
+#. Btvgz
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3153260\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 ""
+
+#. UzYef
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3145302\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 ""
+
+#. jG6E9
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154628\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 ""
+
+#. gAgMJ
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3155514\n"
+"help.text"
+msgid "<emph>Range</emph> (optional) represents the index of the subrange if referring to a multiple range."
+msgstr ""
+
+#. 7pFH2
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3159112\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 ""
+
+#. UFxmm
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3150691\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 ""
+
+#. EVP2w
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id4109012\n"
+"help.text"
+msgid "<item type=\"input\">=INDEX(A1:B6;1)</item> returns a reference to the first row of A1:B6."
+msgstr ""
+
+#. DoWcg
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id9272133\n"
+"help.text"
+msgid "<item type=\"input\">=INDEX(A1:B6;0;1)</item> returns a reference to the first column of A1:B6."
+msgstr ""
+
+#. QQBsJ
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3158419\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 ""
+
+#. igC59
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3148595\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 ""
+
+#. ubk4L
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id9960020\n"
+"help.text"
+msgid "<item type=\"input\">=INDEX((multi);0;0;2)</item> returns a reference to the second range of the multiple range."
+msgstr ""
+
+#. LCBWC
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"bm_id3153181\n"
+"help.text"
+msgid "<bookmark_value>INDIRECT function</bookmark_value>"
+msgstr ""
+
+#. VXKFM
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3153181\n"
+"help.text"
+msgid "INDIRECT"
+msgstr ""
+
+#. 5Pxmv
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3147169\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 ""
+
+#. hDCWQ
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3149824\n"
+"help.text"
+msgid "INDIRECT(Ref [; A1])"
+msgstr ""
+
+#. cZG9F
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154317\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 ""
+
+#. 6xBcm
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id1027200802470312\n"
+"help.text"
+msgid "<emph>A1</emph> (optional) - if set to 0, the R1C1 notation is used. If this parameter is absent or set to another value than 0, the A1 notation is used."
+msgstr ""
+
+#. 5adA4
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_idN10CAE\n"
+"help.text"
+msgid "If you open an Excel spreadsheet that uses indirect addresses calculated from string functions, the sheet addresses will not be translated automatically. For example, the Excel address in INDIRECT(\"[filename]sheetname!\"&B1) is not converted into the Calc address in INDIRECT(\"filename#sheetname.\"&B1)."
+msgstr ""
+
+#. mJRg8
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3150608\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 ""
+
+#. UbprA
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3083286\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 ""
+
+#. T2BJo
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"bm_id3154818\n"
+"help.text"
+msgid "<bookmark_value>COLUMN function</bookmark_value>"
+msgstr ""
+
+#. sHB7C
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3154818\n"
+"help.text"
+msgid "COLUMN"
+msgstr ""
+
+#. yYn3d
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3149711\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#creating_array_formulas\" 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 ""
+
+#. poCRX
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3149447\n"
+"help.text"
+msgid "COLUMN([Reference])"
+msgstr ""
+
+#. CAB6L
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3156310\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 ""
+
+#. RHuRB
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3155837\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 ""
+
+#. 9iffF
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3147571\n"
+"help.text"
+msgid "<item type=\"input\">=COLUMN(A1)</item> equals 1. Column A is the first column in the table."
+msgstr ""
+
+#. ynF5Q
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3147079\n"
+"help.text"
+msgid "<item type=\"input\">=COLUMN(C3:E3)</item> equals 3. Column C is the third column in the table."
+msgstr ""
+
+#. eJP98
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3146861\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 ""
+
+#. 7pQJY
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3156320\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 ""
+
+#. ED6XM
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3150872\n"
+"help.text"
+msgid "<item type=\"input\">=COLUMN()</item> returns 3 if the formula was entered in column C."
+msgstr ""
+
+#. vsiPD
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3153277\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 ""
+
+#. cGRsQ
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"bm_id3154643\n"
+"help.text"
+msgid "<bookmark_value>COLUMNS function</bookmark_value>"
+msgstr ""
+
+#. VF3tg
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3154643\n"
+"help.text"
+msgid "COLUMNS"
+msgstr ""
+
+#. eydFV
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3151182\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_SPALTEN\">Returns the number of columns in the given reference.</ahelp>"
+msgstr ""
+
+#. DDKAg
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154047\n"
+"help.text"
+msgid "COLUMNS(Array)"
+msgstr ""
+
+#. YUPGz
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154745\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 ""
+
+#. dkd2t
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3149577\n"
+"help.text"
+msgid "<item type=\"input\">=COLUMNS(B5)</item> returns 1 because a cell only contains one column."
+msgstr ""
+
+#. AyKRA
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3145649\n"
+"help.text"
+msgid "<item type=\"input\">=COLUMNS(A1:C5)</item> equals 3. The reference comprises three columns."
+msgstr ""
+
+#. F9UyA
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3155846\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 ""
+
+#. G5anB
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"bm_id3153152\n"
+"help.text"
+msgid "<bookmark_value>vertical search function</bookmark_value> <bookmark_value>VLOOKUP function</bookmark_value>"
+msgstr ""
+
+#. fZRnb
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3153152\n"
+"help.text"
+msgid "VLOOKUP"
+msgstr ""
+
+#. qFEgu
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3149984\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 <emph>Index</emph>. If the <emph>Sorted</emph> 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 <emph>Lookup</emph> is not found, the last value that is smaller than the criterion will be returned. If <emph>Sorted</emph> 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 ""
+
+#. j8RoY
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3150156\n"
+"help.text"
+msgid "=VLOOKUP(Lookup; Array; Index [; SortedRangeLookup])"
+msgstr ""
+
+#. LDrCq
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3149289\n"
+"help.text"
+msgid "<emph>Lookup</emph> is the value of any type looked for in the first column of the array."
+msgstr ""
+
+#. WFj5E
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3153884\n"
+"help.text"
+msgid "<emph>Array</emph> is the reference, which is to comprise at least as many columns as the number passed in Index argument."
+msgstr ""
+
+#. tEMvM
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3156005\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 ""
+
+#. qKRbD
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3151208\n"
+"help.text"
+msgid "<emph>SortedRangeLookup</emph> is an optional parameter that indicates whether the first column in the array contains range boundaries instead of plain values. In this mode, the lookup returns the value in the row with first column having value equal to or less than <emph>Lookup</emph>. E.g., it could contain dates when some tax value had been changed, and so the values represent starting dates of a period when a specific tax value was effective. Thus, searching for a date that is absent in the first array column, but falls between some existing boundary dates, would give the lower of them, allowing to find out the data being effective to the searched date. Enter the Boolean value FALSE or zero if the first column is not a range boundary list. When this parameter is TRUE or not given, the first column in the array <emph>must be sorted in ascending order</emph>. 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 greater than the lowest value of the sorted list. In unsorted lists, the search value must be matched exactly. Otherwise the function will return #N/A with message: <emph>Error: Value Not Available</emph>."
+msgstr ""
+
+#. fJQRf
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154129\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 ""
+
+#. 2pTXc
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3145663\n"
+"help.text"
+msgid "Enter the following formula in B1:"
+msgstr ""
+
+#. W7BCf
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3151172\n"
+"help.text"
+msgid "<item type=\"input\">=VLOOKUP(A1;D1:E100;2)</item>"
+msgstr ""
+
+#. oY9FV
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3149200\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 ""
+
+#. BPHvz
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"bm_id3153905\n"
+"help.text"
+msgid "<bookmark_value>sheet numbers; looking up</bookmark_value> <bookmark_value>SHEET function</bookmark_value>"
+msgstr ""
+
+#. tEpv8
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3153905\n"
+"help.text"
+msgid "SHEET"
+msgstr ""
+
+#. BRXnw
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3150309\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_TABELLE\">Returns the sheet number of either 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 ""
+
+#. KRzAZ
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3153095\n"
+"help.text"
+msgid "SHEET([Reference])"
+msgstr ""
+
+#. 9yCD8
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154588\n"
+"help.text"
+msgid "<emph>Reference</emph> is optional and is the reference to a cell, an area, or a sheet name string."
+msgstr ""
+
+#. wbjCM
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3146988\n"
+"help.text"
+msgid "<input>=SHEET(Sheet2.A1)</input> returns 2 if Sheet2 is the second sheet in the spreadsheet document."
+msgstr ""
+
+#. fEQws
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id491612531793751\n"
+"help.text"
+msgid "<input>=SHEET(\"Sheet3\")</input> returns 3 if Sheet3 is the third sheet in the spreadsheet document."
+msgstr ""
+
+#. 7ZBfD
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"bm_id3148829\n"
+"help.text"
+msgid "<bookmark_value>number of sheets; function</bookmark_value> <bookmark_value>SHEETS function</bookmark_value>"
+msgstr ""
+
+#. vGLG7
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3148829\n"
+"help.text"
+msgid "SHEETS"
+msgstr ""
+
+#. A5DpQ
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3148820\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 ""
+
+#. j5Aps
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3150777\n"
+"help.text"
+msgid "SHEETS([Reference])"
+msgstr ""
+
+#. 5B3KF
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3153060\n"
+"help.text"
+msgid "<emph>Reference</emph> is the reference to a sheet or an area. This parameter is optional."
+msgstr ""
+
+#. 95EFN
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3150507\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 ""
+
+#. JB3Ps
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"bm_id3158407\n"
+"help.text"
+msgid "<bookmark_value>MATCH function</bookmark_value>"
+msgstr ""
+
+#. ExoT8
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3158407\n"
+"help.text"
+msgid "MATCH"
+msgstr ""
+
+#. GPfn3
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154896\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 ""
+
+#. AKi9E
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3159152\n"
+"help.text"
+msgid "MATCH(Search; LookupArray [; Type])"
+msgstr ""
+
+#. KZU4F
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3149336\n"
+"help.text"
+msgid "<emph>Search</emph> is the value which is to be searched for in the single-row or single-column array."
+msgstr ""
+
+#. 9j4xw
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3159167\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 ""
+
+#. Z4dMn
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3147239\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 ""
+
+#. 8cpYu
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154265\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 ""
+
+#. vCFkE
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3147528\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. For Type = -1, the index of the last value that is larger or equal is returned."
+msgstr ""
+
+#. eFMjk
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3155343\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 ""
+
+#. JqPAK
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"bm_id3158430\n"
+"help.text"
+msgid "<bookmark_value>OFFSET function</bookmark_value>"
+msgstr ""
+
+#. MwiPA
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3158430\n"
+"help.text"
+msgid "OFFSET"
+msgstr ""
+
+#. tSGCC
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3149167\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 ""
+
+#. nED4F
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3159194\n"
+"help.text"
+msgid "OFFSET(Reference; Rows; Columns [; Height [; Width]])"
+msgstr ""
+
+#. 3Q5gL
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3152360\n"
+"help.text"
+msgid "<emph>Reference</emph> is the reference from which the function searches for the new reference."
+msgstr ""
+
+#. Q5SeM
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3156032\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 ""
+
+#. CEqaQ
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3166458\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 ""
+
+#. K2dos
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3150708\n"
+"help.text"
+msgid "<emph>Height</emph> (optional) is the vertical height for an area that starts at the new reference position."
+msgstr ""
+
+#. NEDfS
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3147278\n"
+"help.text"
+msgid "<emph>Width</emph> (optional) is the horizontal width for an area that starts at the new reference position."
+msgstr ""
+
+#. uQEQG
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id8662373\n"
+"help.text"
+msgid "Arguments <emph>Rows</emph> and <emph>Columns</emph> must not lead to zero or negative start row or column."
+msgstr ""
+
+#. cuFvq
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id9051484\n"
+"help.text"
+msgid "Arguments <emph>Height</emph> and <emph>Width</emph> must not lead to zero or negative count of rows or columns."
+msgstr ""
+
+#. cUGMh
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3149744\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 ""
+
+#. pZtbS
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id7439802\n"
+"help.text"
+msgid "<item type=\"input\">=OFFSET(B2:C3;1;1)</item> returns a reference to B2:C3 moved down by 1 row and one column to the right (C3:D4)."
+msgstr ""
+
+#. QQGzq
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3009430\n"
+"help.text"
+msgid "<item type=\"input\">=OFFSET(B2:C3;-1;-1)</item> returns a reference to B2:C3 moved up by 1 row and one column to the left (A1:B2)."
+msgstr ""
+
+#. ZngJG
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id2629169\n"
+"help.text"
+msgid "<item type=\"input\">=OFFSET(B2:C3;0;0;3;4)</item> returns a reference to B2:C3 resized to 3 rows and 4 columns (B2:E4)."
+msgstr ""
+
+#. 4XD3D
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id6668599\n"
+"help.text"
+msgid "<item type=\"input\">=OFFSET(B2:C3;1;0;3;4)</item> returns a reference to B2:C3 moved down by one row resized to 3 rows and 4 columns (B3:E5)."
+msgstr ""
+
+#. jpz9q
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3153739\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 ""
+
+#. VCAvt
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3153740\n"
+"help.text"
+msgid "If <emph>Width</emph> or <emph>Height</emph> are given, the OFFSET function returns a cell range reference. If <emph>Reference</emph> is a single cell reference and both <emph>Width</emph> and <emph>Height</emph> are omitted, a single cell reference is returned."
+msgstr ""
+
+#. AFMxC
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"bm_id3159273\n"
+"help.text"
+msgid "<bookmark_value>LOOKUP function</bookmark_value>"
+msgstr ""
+
+#. MPjM8
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3159273\n"
+"help.text"
+msgid "LOOKUP"
+msgstr ""
+
+#. UMdhJ
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3153389\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 ""
+
+#. 3jevg
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id4484084\n"
+"help.text"
+msgid "If LOOKUP cannot find the search criterion, it matches the largest value in the search vector that is less than or equal to the search criterion."
+msgstr ""
+
+#. sLcHB
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154104\n"
+"help.text"
+msgid "LOOKUP(Lookup; SearchVector [; ResultVector])"
+msgstr ""
+
+#. yGLLE
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3150646\n"
+"help.text"
+msgid "<emph>Lookup</emph> is the value of any type to be looked for; entered either directly or as a reference."
+msgstr ""
+
+#. tFDBC
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154854\n"
+"help.text"
+msgid "<emph>SearchVector</emph> is the single-row or single-column area to be searched."
+msgstr ""
+
+#. zdXML
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3149925\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 ""
+
+#. 36TJv
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3149809\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 ""
+
+#. jE43n
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"bm_id3149425\n"
+"help.text"
+msgid "<bookmark_value>STYLE function</bookmark_value>"
+msgstr ""
+
+#. fhHrk
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3149425\n"
+"help.text"
+msgid "STYLE"
+msgstr ""
+
+#. mKer9
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3150826\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_VORLAGE\">Applies a style to the cell containing the formula.</ahelp> After a set amount of time, another style can be applied. This function always returns the value 0, allowing you to add it to another function without changing the value. Together with the CURRENT function you can apply a color to a cell depending on the value. For example: =...+STYLE(IF(CURRENT()>3;\"red\";\"green\")) applies the style \"red\" to the cell if the value is greater than 3, otherwise the style \"green\" is applied. Both cell formats, \"red\" and \"green\" have to be defined beforehand."
+msgstr ""
+
+#. gU3TE
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3149302\n"
+"help.text"
+msgid "STYLE(\"Style\" [; Time [; \"Style2\"]])"
+msgstr ""
+
+#. Q8SMG
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3150596\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 ""
+
+#. 4QYLv
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3156149\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 ""
+
+#. qsWTK
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3149520\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 ""
+
+#. FuzQq
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3151374\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 ""
+
+#. mXCWB
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id8056886\n"
+"help.text"
+msgid "Since STYLE() has a numeric return value of zero, this return value gets appended to a string. This can be avoided using T() as in the following example:"
+msgstr ""
+
+#. BdGi5
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3668935\n"
+"help.text"
+msgid "<item type=\"input\">=\"Text\"&T(STYLE(\"myStyle\"))</item>"
+msgstr ""
+
+#. W2bb3
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3042085\n"
+"help.text"
+msgid "See also CURRENT() for another example."
+msgstr ""
+
+#. XYxM4
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"bm_id3150430\n"
+"help.text"
+msgid "<bookmark_value>CHOOSE function</bookmark_value>"
+msgstr ""
+
+#. eygie
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3150430\n"
+"help.text"
+msgid "CHOOSE"
+msgstr ""
+
+#. ynNz9
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3143270\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 ""
+
+#. V8cAu
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3155425\n"
+"help.text"
+msgid "CHOOSE(Index; Value 1 [; Value 2 [; ... [; Value 30]]])"
+msgstr ""
+
+#. CNK7e
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3144755\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 ""
+
+#. GGWDt
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3149939\n"
+"help.text"
+msgid "<emph>Value 1, Value 2, ..., Value 30</emph> is the list of values entered as a reference to a cell or as individual values."
+msgstr ""
+
+#. s64Du
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3150625\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 ""
+
+#. pyC7b
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"bm_id3151001\n"
+"help.text"
+msgid "<bookmark_value>HLOOKUP function</bookmark_value>"
+msgstr ""
+
+#. LPUU2
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3151001\n"
+"help.text"
+msgid "HLOOKUP"
+msgstr ""
+
+#. XtZrs
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3148688\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 ""
+
+#. NWzFA
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3146070\n"
+"help.text"
+msgid "HLOOKUP(Lookup; Array; Index [; SortedRangeLookup])"
+msgstr ""
+
+#. nhwwF
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3148672\n"
+"help.text"
+msgid "For an explanation on the parameters, see: <link href=\"text/scalc/01/04060109.xhp#Section9\" name=\"VLOOKUP\">VLOOKUP</link> (columns and rows are exchanged)"
+msgstr ""
+
+#. vwqHz
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id141612447324913\n"
+"help.text"
+msgid "Suppose we have built a small database table occupying the cell range A1:DO4 and containing basic information about 118 chemical elements. The first column contains the row headings “Element”, “Symbol”, “Atomic Number”, and “Relative Atomic Mass”. Subsequent columns contain the relevant information for each of the elements, ordered left to right by atomic number. For example, cells B1:B4 contain “Hydrogen”, “H”, “1” and “1.008”, while cells DO1:DO4 contain “Oganesson”, “Og”, “118”, and “294”."
+msgstr ""
+
+#. eAMVa
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id151612978320063\n"
+"help.text"
+msgid "Element"
+msgstr ""
+
+#. BcKD5
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id711612450364379\n"
+"help.text"
+msgid "Hydrogen"
+msgstr ""
+
+#. ACHPj
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id681612450364379\n"
+"help.text"
+msgid "Helium"
+msgstr ""
+
+#. 7YEmL
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id531612453345232\n"
+"help.text"
+msgid "Lithium"
+msgstr ""
+
+#. Y3c6z
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id571612453039430\n"
+"help.text"
+msgid "Oganesson"
+msgstr ""
+
+#. 4H4fa
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id341612978329327\n"
+"help.text"
+msgid "Symbol"
+msgstr ""
+
+#. jVBoy
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id601612978601591\n"
+"help.text"
+msgid "Atomic Number"
+msgstr ""
+
+#. WjrrE
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id751612978603374\n"
+"help.text"
+msgid "Relative Atomic Mass"
+msgstr ""
+
+#. Cb3HA
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id51612447346319\n"
+"help.text"
+msgid "<input>=HLOOKUP(\"Lead\"; $A$1:$DO$4; 2; 0)</input> returns “Pb”, the symbol for lead."
+msgstr ""
+
+#. Fa8kD
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id291612447349416\n"
+"help.text"
+msgid "<input>=HLOOKUP(\"Gold\"; $A$1:$DO$4; 3; 0)</input> returns 79, the atomic number for gold."
+msgstr ""
+
+#. LbWuo
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id971612447352912\n"
+"help.text"
+msgid "<input>=HLOOKUP(\"Carbon\"; $A$1:$DO$4; 4; 0)</input> returns 12.011, the relative atomic mass of carbon."
+msgstr ""
+
+#. B4DL3
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"bm_id3147321\n"
+"help.text"
+msgid "<bookmark_value>ROW function</bookmark_value>"
+msgstr ""
+
+#. Dk854
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3147321\n"
+"help.text"
+msgid "ROW"
+msgstr ""
+
+#. cmzD6
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154564\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#creating_array_formulas\" 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 ""
+
+#. 97EEE
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154916\n"
+"help.text"
+msgid "ROW([Reference])"
+msgstr ""
+
+#. mSqrb
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3156336\n"
+"help.text"
+msgid "<emph>Reference</emph> is a cell, an area, or the name of an area."
+msgstr ""
+
+#. eUXYG
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3151109\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 ""
+
+#. GwuVx
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154830\n"
+"help.text"
+msgid "<item type=\"input\">=ROW(B3)</item> returns 3 because the reference refers to the third row in the table."
+msgstr ""
+
+#. FDCdZ
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3147094\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 ""
+
+#. CWNY7
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3153701\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 ""
+
+#. LpXFL
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3150996\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 ""
+
+#. ABQhH
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3153671\n"
+"help.text"
+msgid "<item type=\"input\">=ROW()</item> returns 3 if the formula was entered in row 3."
+msgstr ""
+
+#. d8Kuj
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3153790\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 ""
+
+#. RF4C9
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"bm_id3145772\n"
+"help.text"
+msgid "<bookmark_value>ROWS function</bookmark_value>"
+msgstr ""
+
+#. EURAZ
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3145772\n"
+"help.text"
+msgid "ROWS"
+msgstr ""
+
+#. wniFN
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3148971\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_ZEILEN\">Returns the number of rows in a reference or array.</ahelp>"
+msgstr ""
+
+#. UHLW7
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154357\n"
+"help.text"
+msgid "ROWS(Array)"
+msgstr ""
+
+#. SDyoR
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3155942\n"
+"help.text"
+msgid "<emph>Array</emph> is the reference or named area whose total number of rows is to be determined."
+msgstr ""
+
+#. vLpxF
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154725\n"
+"help.text"
+msgid "<item type=\"input\">=Rows(B5)</item> returns 1 because a cell only contains one row."
+msgstr ""
+
+#. j27bq
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3150102\n"
+"help.text"
+msgid "<item type=\"input\">=ROWS(A10:B12)</item> returns 3."
+msgstr ""
+
+#. 4AmXS
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3155143\n"
+"help.text"
+msgid "<item type=\"input\">=ROWS(Rabbit)</item> returns 3 if \"Rabbit\" is the named area (C1:D3)."
+msgstr ""
+
+#. Wncoz
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"bm_id9959410\n"
+"help.text"
+msgid "<bookmark_value>HYPERLINK function</bookmark_value>"
+msgstr ""
+
+#. CDw2x
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_idN11798\n"
+"help.text"
+msgid "HYPERLINK"
+msgstr ""
+
+#. GAJeF
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_idN117F1\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_HYPERLINK\">When you click a cell that contains the HYPERLINK function, the hyperlink opens.</ahelp>"
+msgstr ""
+
+#. ciAoA
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_idN11800\n"
+"help.text"
+msgid "If you use the optional <emph>CellValue</emph> parameter, the formula locates the URL, and then displays the text or number."
+msgstr ""
+
+#. 7DGBz
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_idN11803\n"
+"help.text"
+msgid "To open a hyperlinked cell with the keyboard, select the cell, press F2 to enter the Edit mode, move the cursor in front of the hyperlink, press Shift+F10, and then choose <emph>Open Hyperlink</emph>."
+msgstr ""
+
+#. YFNSo
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_idN1180E\n"
+"help.text"
+msgid "HYPERLINK(\"URL\" [; CellValue])"
+msgstr ""
+
+#. weY4K
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_idN11811\n"
+"help.text"
+msgid "<emph>URL</emph> specifies the link target. The optional <emph>CellValue</emph> parameter is the text or a number that is displayed in the cell and will be returned as the result. If the <emph>CellValue</emph> parameter is not specified, the <emph>URL</emph> is displayed in the cell text and will be returned as the result."
+msgstr ""
+
+#. GdBa8
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id0907200912224576\n"
+"help.text"
+msgid "The number 0 is returned for empty cells and matrix elements."
+msgstr ""
+
+#. frvbX
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_idN11827\n"
+"help.text"
+msgid "<input>=HYPERLINK(\"http://www.example.org\")</input> displays the text \"http://www.example.org\" in the cell and executes the hyperlink http://www.example.org when clicked."
+msgstr ""
+
+#. wHG7A
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_idN1182A\n"
+"help.text"
+msgid "<input>=HYPERLINK(\"http://www.example.org\";\"Click here\")</input> displays the text \"Click here\" in the cell and executes the hyperlink http://www.example.org when clicked."
+msgstr ""
+
+#. jamR2
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id0907200912224534\n"
+"help.text"
+msgid "<input>=HYPERLINK(\"http://www.example.org\";12345)</input> displays the number 12345 and executes the hyperlink http://www.example.org when clicked."
+msgstr ""
+
+#. qLdBN
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_idN1182D\n"
+"help.text"
+msgid "<input>=HYPERLINK($B4)</input> where cell B4 contains <literal>http://www.example.org</literal>. The function adds http://www.example.org to the URL of the hyperlink cell and returns the same text which is used as formula result."
+msgstr ""
+
+#. cWDrv
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_idN11830\n"
+"help.text"
+msgid "<input>=HYPERLINK(\"http://www.\";\"Click \") & \"example.org\"</input> displays the text Click example.org in the cell and executes the hyperlink http://www.example.org when clicked."
+msgstr ""
+
+#. DDEtK
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id8859523\n"
+"help.text"
+msgid "<input>=HYPERLINK(\"#Sheet1.A1\";\"Go to top\")</input> displays the text Go to top and jumps to cell Sheet1.A1 in this document."
+msgstr ""
+
+#. CoMEq
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id2958769\n"
+"help.text"
+msgid "<input>=HYPERLINK(\"file:///C:/writer.odt#Specification\";\"Go to Writer bookmark\")</input> displays the text \"Go to Writer bookmark\", loads the specified text document and jumps to bookmark \"Specification\"."
+msgstr ""
+
+#. Ky2xV
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id321615667588042\n"
+"help.text"
+msgid "<input>=HYPERLINK(\"file:///C:/Documents/\";\"Open Documents folder\")</input> displays the text \"Open Documents folder\" and shows the folder contents using the standard file manager in your operating system."
+msgstr ""
+
+#. ubKsF
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"bm_id7682424\n"
+"help.text"
+msgid "<bookmark_value>GETPIVOTDATA function</bookmark_value>"
+msgstr ""
+
+#. 3ndfJ
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3747062\n"
+"help.text"
+msgid "GETPIVOTDATA"
+msgstr ""
+
+#. MoLqJ
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3593859\n"
+"help.text"
+msgid "<ahelp hid=\".\">The GETPIVOTDATA function returns a result value from a pivot table. The value is addressed using field and item names, so it remains valid if the layout of the pivot table changes.</ahelp>"
+msgstr ""
+
+#. k6kQB
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id909451\n"
+"help.text"
+msgid "Two different syntax definitions can be used:"
+msgstr ""
+
+#. V3C9Q
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id1665089\n"
+"help.text"
+msgid "GETPIVOTDATA(TargetField; pivot table[; Field 1; Item 1][; ... [Field 126; Item 126]])"
+msgstr ""
+
+#. 3kCjF
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id661585662472832\n"
+"help.text"
+msgid "or"
+msgstr ""
+
+#. QnCVY
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id4997100\n"
+"help.text"
+msgid "GETPIVOTDATA(pivot table; Constraints)"
+msgstr ""
+
+#. LJFgA
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id1672109\n"
+"help.text"
+msgid "The second syntax is assumed if exactly two parameters are given, of which the first parameter is a cell or cell range reference. The first syntax is assumed in all other cases. The Function Wizard shows the first syntax."
+msgstr ""
+
+#. Cwsfn
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id431585688827982\n"
+"help.text"
+msgid "First Syntax"
+msgstr ""
+
+#. xTLTZ
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id9302346\n"
+"help.text"
+msgid "<emph>TargetField</emph> is a string that selects one of the pivot table's data fields. The string can be the name of the source column, or the data field name as shown in the table (like \"Sum - Sales\")."
+msgstr ""
+
+#. yNzcp
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id8296151\n"
+"help.text"
+msgid "<emph>pivot table</emph> is a reference to a cell or cell range that is positioned within a pivot table or contains a pivot table. If the cell range contains several pivot tables, the table that was created last is used."
+msgstr ""
+
+#. bmrBF
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id4809411\n"
+"help.text"
+msgid "If no <emph>Field n / Item n</emph> pairs are given, the grand total is returned. Otherwise, each pair adds a constraint that the result must satisfy. <emph>Field n</emph> is the name of a field from the pivot table. <emph>Item n</emph> is the name of an item from that field."
+msgstr ""
+
+#. swvQC
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id6454969\n"
+"help.text"
+msgid "If the pivot table contains only a single result value that fulfills all of the constraints, or a subtotal result that summarizes all matching values, that result is returned. If there is no matching result, or several ones without a subtotal for them, an error is returned. These conditions apply to results that are included in the pivot table."
+msgstr ""
+
+#. vjksc
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id79042\n"
+"help.text"
+msgid "If the source data contains entries that are hidden by settings of the pivot table, they are ignored. The order of the Field/Item pairs is not significant. Field and item names are not case-sensitive."
+msgstr ""
+
+#. AJ8oP
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id7928708\n"
+"help.text"
+msgid "If no constraint for a filter is given, the field's selected value is implicitly used. If a constraint for a filter is given, it must match the field's selected value, or an error is returned. Filters are the fields at the top left of a pivot table, populated using the \"Filters\" area of the pivot table layout dialog. From each filter, an item (value) can be selected, which means only that item is included in the calculation."
+msgstr ""
+
+#. nARMD
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3864253\n"
+"help.text"
+msgid "Subtotal values from the pivot table are only used if they use the function \"auto\" (except when specified in the constraint, see <item type=\"literal\">Second Syntax</item> below)."
+msgstr ""
+
+#. amRc3
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id551585688835597\n"
+"help.text"
+msgid "Second Syntax"
+msgstr ""
+
+#. KETgR
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id9937131\n"
+"help.text"
+msgid "<emph>pivot table</emph> has the same meaning as in the first syntax."
+msgstr ""
+
+#. GUofE
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id5616626\n"
+"help.text"
+msgid "<emph>Constraints</emph> is a space-separated list. Entries can be quoted (single quotes). The whole string must be enclosed in quotes (double quotes), unless you reference the string from another cell."
+msgstr ""
+
+#. xS3qo
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id4076357\n"
+"help.text"
+msgid "One of the entries can be the data field name. The data field name can be left out if the pivot table contains only one data field, otherwise it must be present."
+msgstr ""
+
+#. TFWzU
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id8231757\n"
+"help.text"
+msgid "Each of the other entries specifies a constraint in the form <item type=\"literal\">Field[Item]</item> (with literal characters [ and ]), or only <item type=\"literal\">Item</item> if the item name is unique within all fields that are used in the pivot table."
+msgstr ""
+
+#. Haoyc
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3168736\n"
+"help.text"
+msgid "A function name can be added in the form <emph>Field[Item;Function]</emph>, which will cause the constraint to match only subtotal values which use that function. The possible function names are Sum, Count, Average, Max, Min, Product, Count (Numbers only), StDev (Sample), StDevP (Population), Var (Sample), and VarP (Population), case-insensitive."
+msgstr ""
+
+#. PPAfw
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"tit\n"
+"help.text"
+msgid "Text Functions"
+msgstr ""
+
+#. rMgJ8
+#: 04060110.xhp
+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 ""
+
+#. DEMF7
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"hd_id3145389\n"
+"help.text"
+msgid "<variable id=\"head_text\"><link href=\"text/scalc/01/04060110.xhp\" name=\"Text Functions\">Text Functions</link></variable>"
+msgstr ""
+
+#. zUHLY
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3152986\n"
+"help.text"
+msgid "<variable id=\"texttext\">This section contains descriptions of the <emph>Text</emph> functions. </variable>"
+msgstr ""
+
+#. bF46G
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"bm_id331624453577057\n"
+"help.text"
+msgid "<bookmark_value>using double quotation marks in formulas</bookmark_value> <bookmark_value>formulas; using double quotation marks</bookmark_value>"
+msgstr ""
+
+#. XXyWj
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"hd_id291624454173529\n"
+"help.text"
+msgid "Using double quotation marks in formulas"
+msgstr ""
+
+#. aGDFQ
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id891624454058773\n"
+"help.text"
+msgid "To include a text string in a formula, place the text string between two double quotation marks (\") and Calc takes the characters in the string without attempting to interpret them. For example, the formula <input>=\"Hello world!\"</input> displays the text string <literal>Hello world!</literal> in the cell, with no surrounding double quotation marks."
+msgstr ""
+
+#. HCwEU
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id461624454425320\n"
+"help.text"
+msgid "The more complex formula <input>=CONCATENATE(\"Life is really simple, \"; \"but we insist on making it complicated \"; \"(Confucius).\")</input> concatenates three individual strings in double quotation marks, outputting <literal>Life is really simple, but we insist on making it complicated (Confucius).</literal>"
+msgstr ""
+
+#. XBDt9
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id711624454477483\n"
+"help.text"
+msgid "To place a literal double quotation mark within a string inside a formula, two methods can be used:"
+msgstr ""
+
+#. 8qFEv
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id541624454496424\n"
+"help.text"
+msgid "You can \"escape\" the double quotation mark with an additional double quotation mark, and Calc treats the escaped double quotation mark as a literal value. For example, the formula <input>=\"My name is \"\"John Doe\"\".\"</input> outputs the string <literal>My name is \"John Doe\".</literal> Another simple example is the formula <input>=UNICODE(\"\"\"\")</input> which returns <literal>34</literal>, the decimal value of the Unicode quotation mark character (U+0022) — here the first and fourth double quotation marks indicate the beginning and end of the string, while the second double quotation mark escapes the third."
+msgstr ""
+
+#. MfLZn
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id21624454513641\n"
+"help.text"
+msgid "You can use the CHAR function or the UNICHAR function to insert a double quotation mark. For example, the formula <input>=UNICHAR(34) & \"The Catcher in the Rye\" & UNICHAR(34) & \" is a famous book by J. D. Salinger.\"</input> displays the string <literal>\"The Catcher in the Rye\" is a famous book by J. D. Salinger.</literal>"
+msgstr ""
+
+#. wDvCT
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id401624454547945\n"
+"help.text"
+msgid "Be aware that Calc's AutoCorrect function may modify double quotation marks. AutoCorrect should not change the double quotation marks within formula cells but may change those used in non-formula cells containing text. For example, if you copy a string that is surrounded by some other form of typographical double quotation marks, such as the left double quotation mark (U+201C) and the right double quotation mark (U+201D), and then paste into a formula cell, an error may result. Open the <emph>Double Quotes</emph> area of the <menuitem>Tools - AutoCorrect Options - Localized Options</menuitem> dialog to set the characters used to automatically correct the start and end typographical double quotation marks. Uncheck the <menuitem>Replace</menuitem> toggle button to disable the feature."
+msgstr ""
+
+#. rdzbS
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"bm_id9323709\n"
+"help.text"
+msgid "<bookmark_value>BAHTTEXT function</bookmark_value>"
+msgstr ""
+
+#. BP3ky
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"hd_id6695455\n"
+"help.text"
+msgid "BAHTTEXT"
+msgstr ""
+
+#. pFWbm
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id354014\n"
+"help.text"
+msgid "Converts a number to Thai text, including the Thai currency names."
+msgstr ""
+
+#. PsCsf
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id8780785\n"
+"help.text"
+msgid "BAHTTEXT(Number)"
+msgstr ""
+
+#. AYpkE
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id1539353\n"
+"help.text"
+msgid "<emph>Number</emph> is any number. \"Baht\" is appended to the integral part of the number, and \"Satang\" is appended to the decimal part of the number."
+msgstr ""
+
+#. zuSSC
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3289284\n"
+"help.text"
+msgid "<item type=\"input\">=BAHTTEXT(12.65)</item> returns a string in Thai characters with the meaning of \"Twelve Baht and sixty five Satang\"."
+msgstr ""
+
+#. QCSWQ
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"bm_id3153072\n"
+"help.text"
+msgid "<bookmark_value>BASE function</bookmark_value>"
+msgstr ""
+
+#. tyXFW
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"bm_id3156399\n"
+"help.text"
+msgid "<bookmark_value>decimal system; converting to</bookmark_value>"
+msgstr ""
+
+#. 6Lm6r
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"hd_id3153072\n"
+"help.text"
+msgid "BASE"
+msgstr ""
+
+#. znNLx
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3153289\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#number_system\" name=\"numbering system\">numbering system</link>.</ahelp> The digits 0-9 and the letters A-Z are used."
+msgstr ""
+
+#. 2cDvi
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3155743\n"
+"help.text"
+msgid "BASE(Number; Radix [; MinimumLength])"
+msgstr ""
+
+#. iDR7A
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3151339\n"
+"help.text"
+msgid "<emph>Number</emph> is the positive integer to be converted."
+msgstr ""
+
+#. S5GM4
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3159262\n"
+"help.text"
+msgid "<emph>Radix</emph> indicates the base of the numeral system. It may be any positive integer between 2 and 36."
+msgstr ""
+
+#. PTSGi
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3148746\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 ""
+
+#. LLtbg
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3156399\n"
+"help.text"
+msgid "<item type=\"input\">=BASE(17;10;4)</item> returns 0017 in the decimal system."
+msgstr ""
+
+#. trYxC
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"bm_id3157871\n"
+"help.text"
+msgid "<bookmark_value>binary system; converting to</bookmark_value>"
+msgstr ""
+
+#. rtEF5
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3157871\n"
+"help.text"
+msgid "<item type=\"input\">=BASE(17;2)</item> returns 10001 in the binary system."
+msgstr ""
+
+#. E26eN
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"bm_id3145226\n"
+"help.text"
+msgid "<bookmark_value>hexadecimal system; converting to</bookmark_value>"
+msgstr ""
+
+#. 7D7Ad
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3145226\n"
+"help.text"
+msgid "<item type=\"input\">=BASE(255;16;4)</item> returns 00FF in the hexadecimal system."
+msgstr ""
+
+#. sCYaE
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id991655560817321\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060110.xhp#decimal\" name=\"decimal\">DECIMAL</link>"
+msgstr ""
+
+#. B364W
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"bm_id3149321\n"
+"help.text"
+msgid "<bookmark_value>CHAR function</bookmark_value>"
+msgstr ""
+
+#. yv4gX
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"hd_id3149321\n"
+"help.text"
+msgid "CHAR"
+msgstr ""
+
+#. D33DG
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3149150\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 ""
+
+#. REFzj
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3145634\n"
+"help.text"
+msgid "CHAR(Number)"
+msgstr ""
+
+#. ZovFW
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3155906\n"
+"help.text"
+msgid "<emph>Number</emph> is a number between 1 and 255 representing the code value for the character."
+msgstr ""
+
+#. 9FwWZ
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3149890\n"
+"help.text"
+msgid "<item type=\"input\">=CHAR(100)</item> returns the character d."
+msgstr ""
+
+#. XASnB
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id0907200910283297\n"
+"help.text"
+msgid "=\"abc\" & CHAR(10) & \"def\" inserts a newline character into the string."
+msgstr ""
+
+#. FxFYY
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"bm_id3149009\n"
+"help.text"
+msgid "<bookmark_value>CLEAN function</bookmark_value>"
+msgstr ""
+
+#. nCASE
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"hd_id3149009\n"
+"help.text"
+msgid "CLEAN"
+msgstr ""
+
+#. cxXEE
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3150482\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_SAEUBERN\">All non-printing characters are removed from the string.</ahelp>"
+msgstr ""
+
+#. tuqFM
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3147472\n"
+"help.text"
+msgid "CLEAN(\"Text\")"
+msgstr ""
+
+#. PYEGm
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3150695\n"
+"help.text"
+msgid "<emph>Text</emph> refers to the text from which to remove all non-printable characters."
+msgstr ""
+
+#. h3UXC
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id581621538151600\n"
+"help.text"
+msgid "<input>=LEN(CLEAN(CHAR(7) & \"LibreOffice Calc\" & CHAR(8)))</input> returns 16, showing that the CLEAN function removes the non-printable Unicode U+0007 (\"BEL\") and U+0008 (\"BS\") characters at the beginning and end of the string argument. CLEAN does not remove spaces."
+msgstr ""
+
+#. zdGBJ
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"bm_id3155498\n"
+"help.text"
+msgid "<bookmark_value>CODE function</bookmark_value>"
+msgstr ""
+
+#. DAKfM
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"hd_id3155498\n"
+"help.text"
+msgid "CODE"
+msgstr ""
+
+#. 8fFdD
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3152770\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_CODE\">Returns a numeric code for the first character in a text string.</ahelp>"
+msgstr ""
+
+#. Exk7G
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3149188\n"
+"help.text"
+msgid "CODE(\"Text\")"
+msgstr ""
+
+#. cBHSB
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3154383\n"
+"help.text"
+msgid "<emph>Text</emph> is the text for which the code of the first character is to be found."
+msgstr ""
+
+#. PkXAd
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3159209\n"
+"help.text"
+msgid "<item type=\"input\">=CODE(\"Hieronymus\")</item> returns 72, <item type=\"input\">=CODE(\"hieroglyphic\")</item> returns 104."
+msgstr ""
+
+#. GXFSS
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3150280\n"
+"help.text"
+msgid "The code used here does not refer to ASCII, but to the code table currently loaded."
+msgstr ""
+
+#. Ph9hD
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"bm_id3149688\n"
+"help.text"
+msgid "<bookmark_value>CONCATENATE function</bookmark_value>"
+msgstr ""
+
+#. 64juK
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"hd_id3149688\n"
+"help.text"
+msgid "CONCATENATE"
+msgstr ""
+
+#. VKWdi
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3154524\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_VERKETTEN\">Combines several text strings into one string.</ahelp>"
+msgstr ""
+
+#. DA2oR
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3155954\n"
+"help.text"
+msgid "CONCATENATE(<embedvar href=\"text/scalc/01/ful_func.xhp#string255_1\" markup=\"keep\"/>)"
+msgstr ""
+
+#. GCUtY
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id781585222554150\n"
+"help.text"
+msgid "<emph>String 1[; String 2][; … ;[String 255]]</emph> are strings or references to cells containing strings."
+msgstr ""
+
+#. 8Dfcz
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3150008\n"
+"help.text"
+msgid "<item type=\"input\">=CONCATENATE(\"Good \";\"Morning \";\"Mrs. \";\"Doe\")</item> returns: Good Morning Mrs. Doe."
+msgstr ""
+
+#. 9m9DS
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"bm_id3145166\n"
+"help.text"
+msgid "<bookmark_value>DECIMAL function</bookmark_value>"
+msgstr ""
+
+#. ELMKP
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"hd_id3145166\n"
+"help.text"
+msgid "DECIMAL"
+msgstr ""
+
+#. dES54
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3156361\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_DEZIMAL\">Converts text that represents a number in a <link href=\"text/shared/00/00000005.xhp#number_system\" name=\"numeral system\">numeral system</link> with the given base radix to a positive integer.</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 ""
+
+#. Nt52d
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3157994\n"
+"help.text"
+msgid "If the radix is 16, a leading x or X or 0x or 0X, and an appended h or H, are disregarded. If the radix is 2, an appended b or B is disregarded. Other characters that do not belong to the numeral system generate an error."
+msgstr ""
+
+#. XBXZd
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3154328\n"
+"help.text"
+msgid "DECIMAL(\"Text\"; Radix)"
+msgstr ""
+
+#. niGRa
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3150128\n"
+"help.text"
+msgid "<emph>Text</emph> is the text to be converted."
+msgstr ""
+
+#. yDDho
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3145241\n"
+"help.text"
+msgid "<emph>Radix</emph> indicates the base of the numeral system. It may be any positive integer between 2 and 36."
+msgstr ""
+
+#. PzV8b
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3145355\n"
+"help.text"
+msgid "<item type=\"input\">=DECIMAL(\"17\";10)</item> returns 17."
+msgstr ""
+
+#. CFhft
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3155622\n"
+"help.text"
+msgid "<item type=\"input\">=DECIMAL(\"FACE\";16)</item> returns 64206."
+msgstr ""
+
+#. 2hMaZ
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3151015\n"
+"help.text"
+msgid "<item type=\"input\">=DECIMAL(\"0101\";2)</item> returns 5."
+msgstr ""
+
+#. Z3f3y
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id421655560837244\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060110.xhp#base\" name=\"base\">BASE</link>"
+msgstr ""
+
+#. NwJnR
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"bm_id3148402\n"
+"help.text"
+msgid "<bookmark_value>DOLLAR function</bookmark_value>"
+msgstr ""
+
+#. x88pS
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"hd_id3148402\n"
+"help.text"
+msgid "DOLLAR"
+msgstr ""
+
+#. BbGGC
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3153049\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_DM\">Converts a number to a string representing the amount in the currency format, rounded to a specified decimal places, using the decimal separator that corresponds to the <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link>.</ahelp> In the <item type=\"literal\">Value</item> field enter the number to be converted. 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 ""
+
+#. FEDsN
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3151280\n"
+"help.text"
+msgid "You set the currency format in your system settings."
+msgstr ""
+
+#. icFpC
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3154188\n"
+"help.text"
+msgid "DOLLAR(Value [; Decimals])"
+msgstr ""
+
+#. WA6bA
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3145299\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 ""
+
+#. b34Hb
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3145629\n"
+"help.text"
+msgid "<emph>Decimals</emph> is the optional number of decimal places."
+msgstr ""
+
+#. ezXhx
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3153546\n"
+"help.text"
+msgid "<item type=\"input\">=DOLLAR(255)</item> returns $255.00 for the English (USA) locale and USD (dollar) currency; ¥255.00 for the Japanese locale and JPY (yen) currency; or 255,00 € for the German (Germany) locale and EUR (euro) currency."
+msgstr ""
+
+#. YoySE
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3154635\n"
+"help.text"
+msgid "<item type=\"input\">=DOLLAR(367.456;2)</item> returns $367.46."
+msgstr ""
+
+#. SX2UT
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"bm_id3150685\n"
+"help.text"
+msgid "<bookmark_value>EXACT function</bookmark_value>"
+msgstr ""
+
+#. fofhz
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"hd_id3150685\n"
+"help.text"
+msgid "EXACT"
+msgstr ""
+
+#. AP4iD
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3158413\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 ""
+
+#. 4Vt2i
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3148594\n"
+"help.text"
+msgid "EXACT(\"Text1\"; \"Text2\")"
+msgstr ""
+
+#. qoMUY
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3153224\n"
+"help.text"
+msgid "<emph>Text1</emph> refers to the first text to compare."
+msgstr ""
+
+#. DtbEY
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3148637\n"
+"help.text"
+msgid "<emph>Text2</emph> is the second text to compare."
+msgstr ""
+
+#. vR9Fa
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3156263\n"
+"help.text"
+msgid "<item type=\"input\">=EXACT(\"microsystems\";\"Microsystems\")</item> returns FALSE."
+msgstr ""
+
+#. RNDqw
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"bm_id3152589\n"
+"help.text"
+msgid "<bookmark_value>FIND function</bookmark_value>"
+msgstr ""
+
+#. w7Ja9
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"hd_id3152589\n"
+"help.text"
+msgid "FIND"
+msgstr ""
+
+#. dE8cA
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3146149\n"
+"help.text"
+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 ""
+
+#. Kpkfu
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3083452\n"
+"help.text"
+msgid "FIND(\"FindText\"; \"Text\" [; Position])"
+msgstr ""
+
+#. 3HU9t
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3150608\n"
+"help.text"
+msgid "<emph>FindText</emph> refers to the text to be found."
+msgstr ""
+
+#. nFBy9
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3152374\n"
+"help.text"
+msgid "<emph>Text</emph> is the text where the search takes place."
+msgstr ""
+
+#. WRCZx
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3152475\n"
+"help.text"
+msgid "<emph>Position</emph> (optional) is the position in the text from which the search starts."
+msgstr ""
+
+#. pwFYf
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3156375\n"
+"help.text"
+msgid "<item type=\"input\">=FIND(76;998877665544)</item> returns 6."
+msgstr ""
+
+#. zCs6e
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"bm_id3149268\n"
+"help.text"
+msgid "<bookmark_value>FIXED function</bookmark_value>"
+msgstr ""
+
+#. EzvfA
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"hd_id3149268\n"
+"help.text"
+msgid "FIXED"
+msgstr ""
+
+#. k4v7r
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id641617285271044\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 ""
+
+#. vGkWA
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3147567\n"
+"help.text"
+msgid "FIXED(Number; [Decimals = 2 [; NoThousandsSeparators = FALSE]])"
+msgstr ""
+
+#. Lu9oq
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3151272\n"
+"help.text"
+msgid "<emph>Number</emph> is rounded to <literal>Decimals</literal> places (after the decimal separator) and the result formatted as text, using <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">locale-specific settings</link>."
+msgstr ""
+
+#. 5zSz5
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3156322\n"
+"help.text"
+msgid "<emph>Decimals</emph> (optional) refers to the number of decimal places to be displayed. If <literal>Decimals</literal> is negative, <literal>Number</literal> is rounded to ABS(<literal>Decimals</literal>) places to the left from the decimal point. If <literal>Decimals</literal> is a fraction, it is truncated actually ignoring what is the closest integer."
+msgstr ""
+
+#. MccEk
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3150877\n"
+"help.text"
+msgid "<emph>NoThousandsSeparators</emph> (optional) determines whether the thousands separator is used. If it is <literal>TRUE</literal> or non-zero, then group separators are omitted from the resulting string. 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 ""
+
+#. nDs7Q
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3145208\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(1234567.89;3)</item> returns 1,234,567.890 as a text string."
+msgstr ""
+
+#. eo6wB
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id5282143\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(123456.789;;TRUE)</item> returns 123456.79 as a text string."
+msgstr ""
+
+#. U8QaS
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id21617202293406\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.6789;-2)</item> returns 12,300 as a text string."
+msgstr ""
+
+#. iqSth
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id161617202295558\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12134567.89;-3;1)</item> returns 12135000 as a text string."
+msgstr ""
+
+#. NmXWD
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id451617286696878\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.789;3/4)</item> returns 12,346 as a text string."
+msgstr ""
+
+#. CB5nt
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id371617286698199\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.789;8/5)</item> returns 12,345.8 as a text string."
+msgstr ""
+
+#. SaBEW
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"bm_id3147083\n"
+"help.text"
+msgid "<bookmark_value>LEFT function</bookmark_value>"
+msgstr ""
+
+#. JcaAt
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"hd_id3147083\n"
+"help.text"
+msgid "LEFT"
+msgstr ""
+
+#. ViMFF
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3153622\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_LINKS\">Returns the first character or characters of a text.</ahelp>"
+msgstr ""
+
+#. yAT6p
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3146786\n"
+"help.text"
+msgid "LEFT(\"Text\" [; Number])"
+msgstr ""
+
+#. PGbwK
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3147274\n"
+"help.text"
+msgid "<emph>Text</emph> is the text where the initial partial words are to be determined."
+msgstr ""
+
+#. BQHUb
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3153152\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 ""
+
+#. DyCRe
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3149141\n"
+"help.text"
+msgid "<item type=\"input\">=LEFT(\"output\";3)</item> returns “out”."
+msgstr ""
+
+#. Bb5G5
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"bm_id2947083\n"
+"help.text"
+msgid "<bookmark_value>LEFTB function</bookmark_value>"
+msgstr ""
+
+#. zjvg5
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"hd_id2947083\n"
+"help.text"
+msgid "<variable id=\"leftbvar\"><link href=\"text/scalc/01/04060110.xhp#leftb\" name=\"LEFTB\">LEFTB</link></variable>"
+msgstr ""
+
+#. f3mWg
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id2953622\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_LEFTB\">Returns the first characters of a DBCS text.</ahelp>"
+msgstr ""
+
+#. ZcHDR
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id2946786\n"
+"help.text"
+msgid "LEFTB(\"Text\" [; Number_bytes])"
+msgstr ""
+
+#. e6CdQ
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id2947274\n"
+"help.text"
+msgid "<emph>Text</emph> is the text where the initial partial words are to be determined."
+msgstr ""
+
+#. 8Ayk6
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id2953152\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 ""
+
+#. FFvts
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id2949141\n"
+"help.text"
+msgid "<item type=\"input\">=LEFTB(\"中国\";1)</item> returns \" \" (1 byte is only half a DBCS character and a space character is returned instead)."
+msgstr ""
+
+#. mQvUN
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id2949151\n"
+"help.text"
+msgid "<item type=\"input\">=LEFTB(\"中国\";2)</item> returns \"中\" (2 bytes constitute one complete DBCS character)."
+msgstr ""
+
+#. qAEZ3
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id2949161\n"
+"help.text"
+msgid "<item type=\"input\">=LEFTB(\"中国\";3)</item> returns \"中 \" (3 bytes constitute one DBCS character and a half; the last character returned is therefore a space character)."
+msgstr ""
+
+#. s3UVQ
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id2949171\n"
+"help.text"
+msgid "<item type=\"input\">=LEFTB(\"中国\";4)</item> returns \"中国\" (4 bytes constitute two complete DBCS characters)."
+msgstr ""
+
+#. FM3FS
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id2949181\n"
+"help.text"
+msgid "<item type=\"input\">=LEFTB(\"office\";3)</item> returns \"off\" (3 non-DBCS characters each consisting of 1 byte)."
+msgstr ""
+
+#. eEgeD
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"bm_id3156110\n"
+"help.text"
+msgid "<bookmark_value>LEN function</bookmark_value>"
+msgstr ""
+
+#. wDSwp
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"hd_id3156110\n"
+"help.text"
+msgid "LEN"
+msgstr ""
+
+#. GfyM7
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3150147\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_LAENGE\">Returns the length of a string including spaces.</ahelp>"
+msgstr ""
+
+#. VGBs7
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3154063\n"
+"help.text"
+msgid "LEN(\"Text\")"
+msgstr ""
+
+#. ZqEQE
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3146894\n"
+"help.text"
+msgid "<emph>Text</emph> is the text whose length is to be determined."
+msgstr ""
+
+#. DVErr
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3156008\n"
+"help.text"
+msgid "<item type=\"input\">=LEN(\"Good Afternoon\")</item> returns 14."
+msgstr ""
+
+#. SVvTq
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3154300\n"
+"help.text"
+msgid "<item type=\"input\">=LEN(12345.67)</item> returns 8."
+msgstr ""
+
+#. C2oeG
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"bm_id2956110\n"
+"help.text"
+msgid "<bookmark_value>LENB function</bookmark_value>"
+msgstr ""
+
+#. e5FBE
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"hd_id2956110\n"
+"help.text"
+msgid "<variable id=\"lenbvar\"><link href=\"text/scalc/01/04060110.xhp#lenb\" name=\"LENB\">LENB</link></variable>"
+msgstr ""
+
+#. Cwz9S
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id2950147\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 ""
+
+#. fAPZv
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id2954063\n"
+"help.text"
+msgid "LENB(\"Text\")"
+msgstr ""
+
+#. 9Hv5K
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id2946894\n"
+"help.text"
+msgid "<emph>Text</emph> is the text whose length is to be determined."
+msgstr ""
+
+#. kiHKC
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id2956018\n"
+"help.text"
+msgid "<item type=\"input\">LENB(\"中\")</item> returns 2 (1 DBCS character consisting of 2 bytes)."
+msgstr ""
+
+#. BgQBW
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id2956028\n"
+"help.text"
+msgid "<item type=\"input\">LENB(\"中国\")</item> returns 4 (2 DBCS characters each consisting of 2 bytes)."
+msgstr ""
+
+#. SJoqC
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id2956038\n"
+"help.text"
+msgid "<item type=\"input\">LENB(\"office\")</item> returns 6 (6 non-DBCS characters each consisting of 1 byte)."
+msgstr ""
+
+#. ZoXsU
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id2956008\n"
+"help.text"
+msgid "<item type=\"input\">=LENB(\"Good Afternoon\")</item> returns 14."
+msgstr ""
+
+#. ismJk
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id2954300\n"
+"help.text"
+msgid "<item type=\"input\">=LENB(12345.67)</item> returns 8."
+msgstr ""
+
+#. MuFpD
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"bm_id3153983\n"
+"help.text"
+msgid "<bookmark_value>LOWER function</bookmark_value>"
+msgstr ""
+
+#. DtaeX
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"hd_id3153983\n"
+"help.text"
+msgid "LOWER"
+msgstr ""
+
+#. 4fGYG
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3152791\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_KLEIN\">Converts all uppercase letters in a text string to lowercase.</ahelp>"
+msgstr ""
+
+#. oPH7y
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3150121\n"
+"help.text"
+msgid "LOWER(\"Text\")"
+msgstr ""
+
+#. HLPcG
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3153910\n"
+"help.text"
+msgid "<emph>Text</emph> refers to the text to be converted."
+msgstr ""
+
+#. uMtFd
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3155329\n"
+"help.text"
+msgid "<item type=\"input\">=LOWER(\"Sun\")</item> returns sun."
+msgstr ""
+
+#. tHQjb
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"bm_id3154589\n"
+"help.text"
+msgid "<bookmark_value>MID function</bookmark_value>"
+msgstr ""
+
+#. DiHhK
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"hd_id3154589\n"
+"help.text"
+msgid "MID"
+msgstr ""
+
+#. ay3io
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3154938\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 ""
+
+#. yBN9k
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3150526\n"
+"help.text"
+msgid "MID(\"Text\"; Start; Number)"
+msgstr ""
+
+#. 5HErG
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3148820\n"
+"help.text"
+msgid "<emph>Text</emph> is the text containing the characters to extract."
+msgstr ""
+
+#. ndM4U
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3150774\n"
+"help.text"
+msgid "<emph>Start</emph> is the position of the first character in the text to extract."
+msgstr ""
+
+#. x8BVf
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3153063\n"
+"help.text"
+msgid "<emph>Number</emph> specifies the number of characters in the part of the text."
+msgstr ""
+
+#. d9b4E
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3158407\n"
+"help.text"
+msgid "<item type=\"input\">=MID(\"office\";2;2)</item> returns ff."
+msgstr ""
+
+#. uAhCU
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"bm_id2954589\n"
+"help.text"
+msgid "<bookmark_value>MIDB function</bookmark_value>"
+msgstr ""
+
+#. BxEFF
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"hd_id2954589\n"
+"help.text"
+msgid "<variable id=\"midbvar\"><link href=\"text/scalc/01/04060110.xhp#midb\" name=\"MIDB\">MIDB</link></variable>"
+msgstr ""
+
+#. Qe8mw
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id2954938\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 ""
+
+#. wohUa
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id2950526\n"
+"help.text"
+msgid "MIDB(\"Text\"; Start; Number_bytes)"
+msgstr ""
+
+#. EBM4C
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id2948820\n"
+"help.text"
+msgid "<emph>Text</emph> is the text containing the characters to extract."
+msgstr ""
+
+#. AbPt7
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id2950774\n"
+"help.text"
+msgid "<emph>Start</emph> is the position of the first character in the text to extract."
+msgstr ""
+
+#. Nz2F6
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id2953063\n"
+"help.text"
+msgid "<emph>Number_bytes</emph> specifies the number of characters MIDB will return from text, in bytes."
+msgstr ""
+
+#. 5Nn2i
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id2958417\n"
+"help.text"
+msgid "<item type=\"input\">=MIDB(\"中国\";1;0)</item> returns \"\" (0 bytes is always an empty string)."
+msgstr ""
+
+#. q6dWL
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id2958427\n"
+"help.text"
+msgid "<item type=\"input\">=MIDB(\"中国\";1;1)</item> returns \" \" (1 byte is only half a DBCS character and therefore the result is a space character)."
+msgstr ""
+
+#. CfNES
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id2958437\n"
+"help.text"
+msgid "<item type=\"input\">=MIDB(\"中国\";1;2)</item> returns \"中\" (2 bytes constitute one complete DBCS character)."
+msgstr ""
+
+#. wBLqC
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id2958447\n"
+"help.text"
+msgid "<item type=\"input\">=MIDB(\"中国\";1;3)</item> returns \"中 \" (3 bytes constitute one and a half DBCS character; the last byte results in a space character)."
+msgstr ""
+
+#. GedmG
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id2958457\n"
+"help.text"
+msgid "<item type=\"input\">=MIDB(\"中国\";1;4)</item> returns \"中国\" (4 bytes constitute two complete DBCS characters)."
+msgstr ""
+
+#. dAMAA
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id2958467\n"
+"help.text"
+msgid "<item type=\"input\">=MIDB(\"中国\";2;1)</item> returns \" \" (byte position 2 is not at the beginning of a character in a DBCS string; 1 space character is returned)."
+msgstr ""
+
+#. SXLij
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id2958477\n"
+"help.text"
+msgid "<item type=\"input\">=MIDB(\"中国\";2;2)</item> returns \" \" (byte position 2 points to the last half of the first character in the DBCS string; the 2 bytes asked for therefore constitutes the last half of the first character and the first half of the second character in the string; 2 space characters are therefore returned)."
+msgstr ""
+
+#. cFw7V
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id2958487\n"
+"help.text"
+msgid "<item type=\"input\">=MIDB(\"中国\";2;3)</item> returns \" 国\" (byte position 2 is not at the beginning of a character in a DBCS string; a space character is returned for byte position 2)."
+msgstr ""
+
+#. drtpL
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id2958497\n"
+"help.text"
+msgid "<item type=\"input\">=MIDB(\"中国\";3;1)</item> returns \" \" (byte position 3 is at the beginning of a character in a DBCS string, but 1 byte is only half a DBCS character and a space character is therefore returned instead)."
+msgstr ""
+
+#. koipq
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id2958507\n"
+"help.text"
+msgid "<item type=\"input\">=MIDB(\"中国\";3;2)</item> returns \"国\" (byte position 3 is at the beginning of a character in a DBCS string, and 2 bytes constitute one DBCS character)."
+msgstr ""
+
+#. aQmsH
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id2958517\n"
+"help.text"
+msgid "<item type=\"input\">=MIDB(\"office\";2;3)</item> returns \"ffi\" (byte position 2 is at the beginning of a character in a non-DBCS string, and 3 bytes of a non-DBCS string constitute 3 characters)."
+msgstr ""
+
+#. k4kCo
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"bm_id3159143\n"
+"help.text"
+msgid "<bookmark_value>PROPER function</bookmark_value>"
+msgstr ""
+
+#. eQmGJ
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"hd_id3159143\n"
+"help.text"
+msgid "PROPER"
+msgstr ""
+
+#. UrzyX
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3149768\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_GROSS2\">Capitalizes the first letter in all words of a text string.</ahelp>"
+msgstr ""
+
+#. AGEdT
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3154260\n"
+"help.text"
+msgid "PROPER(\"Text\")"
+msgstr ""
+
+#. zHknA
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3147509\n"
+"help.text"
+msgid "<emph>Text</emph> refers to the text to be converted."
+msgstr ""
+
+#. Nt5dD
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3155364\n"
+"help.text"
+msgid "<item type=\"input\">=PROPER(\"the document foundation\")</item> returns The Document Foundation."
+msgstr ""
+
+#. MeADa
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"bm_id3149171\n"
+"help.text"
+msgid "<bookmark_value>REPLACE function</bookmark_value>"
+msgstr ""
+
+#. D3Cy8
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"hd_id3149171\n"
+"help.text"
+msgid "REPLACE"
+msgstr ""
+
+#. 5jBhB
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3148925\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 ""
+
+#. tHZtF
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3158426\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 ""
+
+#. 2TDqv
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3147286\n"
+"help.text"
+msgid "REPLACE(\"Text\"; Position; Length; \"NewText\")"
+msgstr ""
+
+#. WoDoQ
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3149797\n"
+"help.text"
+msgid "<emph>Text</emph> refers to text of which a part will be replaced."
+msgstr ""
+
+#. EeECh
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3166451\n"
+"help.text"
+msgid "<emph>Position</emph> refers to the position within the text where the replacement will begin."
+msgstr ""
+
+#. nNRem
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3156040\n"
+"help.text"
+msgid "<emph>Length</emph> is the number of characters in <emph>Text</emph> to be replaced."
+msgstr ""
+
+#. F2A7P
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3159188\n"
+"help.text"
+msgid "<emph>NewText</emph> refers to the text which replaces <emph>Text</emph>."
+msgstr ""
+
+#. KVDZE
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3154096\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 ""
+
+#. HZWmu
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"bm_id3149741\n"
+"help.text"
+msgid "<bookmark_value>REPT function</bookmark_value>"
+msgstr ""
+
+#. p62g3
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"hd_id3149741\n"
+"help.text"
+msgid "REPT"
+msgstr ""
+
+#. qHEGP
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3153748\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_WIEDERHOLEN\">Repeats a character string by the given <emph>number</emph> of copies.</ahelp>"
+msgstr ""
+
+#. TzHVG
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3150494\n"
+"help.text"
+msgid "REPT(\"Text\"; Number)"
+msgstr ""
+
+#. WF33y
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3154859\n"
+"help.text"
+msgid "<emph>Text</emph> is the text to be repeated."
+msgstr ""
+
+#. bFq5b
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3150638\n"
+"help.text"
+msgid "<emph>Number</emph> is the number of repetitions."
+msgstr ""
+
+#. brnbx
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3148626\n"
+"help.text"
+msgid "<item type=\"input\">=REPT(\"Good morning\";2)</item> returns Good morningGood morning."
+msgstr ""
+
+#. 9Dbjv
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id381626381556310\n"
+"help.text"
+msgid "Refer to the <link href=\"https://wiki.documentfoundation.org/Documentation/Calc_Functions/REPT\" name=\"REPT_Wiki\">REPT</link> wiki page for more details about this function."
+msgstr ""
+
+#. mtFNA
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"bm_id3149805\n"
+"help.text"
+msgid "<bookmark_value>RIGHT function</bookmark_value>"
+msgstr ""
+
+#. KBfCn
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"hd_id3149805\n"
+"help.text"
+msgid "RIGHT"
+msgstr ""
+
+#. wzTSi
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3145375\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_RECHTS\">Returns the last character or characters of a text.</ahelp>"
+msgstr ""
+
+#. 3D3E9
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3154344\n"
+"help.text"
+msgid "RIGHT(\"Text\" [; Number])"
+msgstr ""
+
+#. dveYp
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3149426\n"
+"help.text"
+msgid "<emph>Text</emph> is the text of which the right part is to be determined."
+msgstr ""
+
+#. tkbjJ
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3153350\n"
+"help.text"
+msgid "<emph>Number</emph> (optional) is the number of characters from the right part of the text. If this parameter is not defined, one character is returned."
+msgstr ""
+
+#. xNFMc
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3151132\n"
+"help.text"
+msgid "<item type=\"input\">=RIGHT(\"Sun\";2)</item> returns un."
+msgstr ""
+
+#. kDJVC
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"bm_id2949805\n"
+"help.text"
+msgid "<bookmark_value>RIGHTB function</bookmark_value>"
+msgstr ""
+
+#. YMkyY
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"hd_id2949805\n"
+"help.text"
+msgid "<variable id=\"rightbvar\"><link href=\"text/scalc/01/04060110.xhp#rightb\" name=\"RIGHTB\">RIGHTB</link></variable>"
+msgstr ""
+
+#. gvrHM
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id2945375\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 ""
+
+#. 9kB2q
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id2954344\n"
+"help.text"
+msgid "RIGHTB(\"Text\" [; Number_bytes])"
+msgstr ""
+
+#. jvjXS
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id2949426\n"
+"help.text"
+msgid "<emph>Text</emph> is the text of which the right part is to be determined."
+msgstr ""
+
+#. yUHYp
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id2953350\n"
+"help.text"
+msgid "<emph>Number_bytes</emph> (optional) specifies the number of characters you want RIGHTB to extract, based on bytes. If this parameter is not defined, one byte is returned."
+msgstr ""
+
+#. KnAgN
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id2951132\n"
+"help.text"
+msgid "<item type=\"input\">RIGHTB(\"中国\";1)</item> returns \" \" (1 byte is only half a DBCS character and a space character is returned instead)."
+msgstr ""
+
+#. mYzB5
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id2951142\n"
+"help.text"
+msgid "<item type=\"input\">RIGHTB(\"中国\";2)</item> returns \"国\" (2 bytes constitute one complete DBCS character)."
+msgstr ""
+
+#. rLaPR
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id2951152\n"
+"help.text"
+msgid "<item type=\"input\">RIGHTB(\"中国\";3)</item> returns \" 国\" (3 bytes constitute one half DBCS character and one whole DBCS character; a space is returned for the first half)."
+msgstr ""
+
+#. B7nG5
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id2951162\n"
+"help.text"
+msgid "<item type=\"input\">RIGHTB(\"中国\";4)</item> returns \"中国\" (4 bytes constitute two complete DBCS characters)."
+msgstr ""
+
+#. qRptr
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id2951172\n"
+"help.text"
+msgid "<item type=\"input\">RIGHTB(\"office\";3)</item> returns \"ice\" (3 non-DBCS characters each consisting of 1 byte)."
+msgstr ""
+
+#. q3uLN
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"bm_id3151005\n"
+"help.text"
+msgid "<bookmark_value>SEARCH function</bookmark_value>"
+msgstr ""
+
+#. QGeWT
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"hd_id3151005\n"
+"help.text"
+msgid "SEARCH"
+msgstr ""
+
+#. EC5R6
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3148692\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. If the text is not found, returns error 519 (#VALUE)."
+msgstr ""
+
+#. GU5p2
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3154671\n"
+"help.text"
+msgid "SEARCH(\"FindText\"; \"Text\" [; Position])"
+msgstr ""
+
+#. yP57Q
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3146080\n"
+"help.text"
+msgid "<emph>FindText</emph> is the text to be searched for."
+msgstr ""
+
+#. LgGkp
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3154111\n"
+"help.text"
+msgid "<emph>Text</emph> is the text where the search will take place."
+msgstr ""
+
+#. ZmSMv
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3149559\n"
+"help.text"
+msgid "<emph>Position</emph> (optional) is the position in the text where the search is to start."
+msgstr ""
+
+#. BxHe3
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3154564\n"
+"help.text"
+msgid "<item type=\"input\">=SEARCH(54;998877665544)</item> returns 10."
+msgstr ""
+
+#. qFY3p
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"bm_id3154830\n"
+"help.text"
+msgid "<bookmark_value>SUBSTITUTE function</bookmark_value>"
+msgstr ""
+
+#. iTEmq
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"hd_id3154830\n"
+"help.text"
+msgid "SUBSTITUTE"
+msgstr ""
+
+#. VFS8u
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3153698\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_WECHSELN\">Substitutes new text for old text in a string.</ahelp>"
+msgstr ""
+
+#. K2fp5
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3147582\n"
+"help.text"
+msgid "SUBSTITUTE(\"Text\"; \"SearchText\"; \"NewText\" [; Occurrence])"
+msgstr ""
+
+#. tydqc
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3153675\n"
+"help.text"
+msgid "<emph>Text</emph> is the text in which text segments are to be exchanged."
+msgstr ""
+
+#. 4iEEp
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3156155\n"
+"help.text"
+msgid "<emph>SearchText </emph>is the text segment that is to be replaced (a number of times)."
+msgstr ""
+
+#. k2dEF
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3145779\n"
+"help.text"
+msgid "<emph>NewText</emph> is the text that is to replace the text segment."
+msgstr ""
+
+#. F8Cqi
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3150348\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 ""
+
+#. PQj2k
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3150412\n"
+"help.text"
+msgid "<item type=\"input\">=SUBSTITUTE(\"123123123\";\"3\";\"abc\")</item> returns 12abc12abc12abc."
+msgstr ""
+
+#. MLoez
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3154915\n"
+"help.text"
+msgid "<item type=\"input\">=SUBSTITUTE(\"123123123\";\"3\";\"abc\";2)</item> returns 12312abc123."
+msgstr ""
+
+#. Bjdnv
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"bm_id3148977\n"
+"help.text"
+msgid "<bookmark_value>T function</bookmark_value>"
+msgstr ""
+
+#. uVbgf
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"hd_id3148977\n"
+"help.text"
+msgid "T"
+msgstr ""
+
+#. 5kNii
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3154359\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 ""
+
+#. YGgZN
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3155871\n"
+"help.text"
+msgid "T(Value)"
+msgstr ""
+
+#. 3Dv5Y
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3154726\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 ""
+
+#. A5xGr
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3151062\n"
+"help.text"
+msgid "<item type=\"input\">=T(12345)</item> returns an empty string."
+msgstr ""
+
+#. UCDuG
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id4650105\n"
+"help.text"
+msgid "<item type=\"input\">=T(\"12345\")</item> returns the string 12345."
+msgstr ""
+
+#. Lj2FA
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"bm_id3147132\n"
+"help.text"
+msgid "<bookmark_value>TEXT function</bookmark_value>"
+msgstr ""
+
+#. VbRHF
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"hd_id3147132\n"
+"help.text"
+msgid "TEXT"
+msgstr ""
+
+#. hZGtP
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3147213\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_TEXT\">Converts a value into text according to a given format.</ahelp>"
+msgstr ""
+
+#. YjEZu
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3147377\n"
+"help.text"
+msgid "TEXT(Value; Format)"
+msgstr ""
+
+#. hGrSa
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3147389\n"
+"help.text"
+msgid "<emph>Value</emph> is the value (numerical or textual) to be converted."
+msgstr ""
+
+#. 3GZvU
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3156167\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 ""
+
+#. TMU3G
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id9044770\n"
+"help.text"
+msgid "<item type=\"input\">=TEXT(12.34567;\"###.##\")</item> returns the text 12.35"
+msgstr ""
+
+#. c7YfN
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3674123\n"
+"help.text"
+msgid "<item type=\"input\">=TEXT(12.34567;\"000.00\")</item> returns the text 012.35"
+msgstr ""
+
+#. iT5uP
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3674124\n"
+"help.text"
+msgid "<item type=\"input\">=TEXT(\"xyz\";\"=== @ ===\")</item> returns the text === xyz ==="
+msgstr ""
+
+#. yhDcc
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3145364\n"
+"help.text"
+msgid "See also <link href=\"text/shared/01/05020301.xhp\" name=\"Number format codes\">Number format codes</link>: custom format codes defined by the user."
+msgstr ""
+
+#. wFCZg
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"bm_id3151039\n"
+"help.text"
+msgid "<bookmark_value>TRIM function</bookmark_value>"
+msgstr ""
+
+#. QWGwc
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"hd_id3151039\n"
+"help.text"
+msgid "TRIM"
+msgstr ""
+
+#. zGGBa
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3157888\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_GLAETTEN\">Removes spaces from a string, leaving only a single space character between words.</ahelp>"
+msgstr ""
+
+#. H9GEB
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3151349\n"
+"help.text"
+msgid "TRIM(\"Text\")"
+msgstr ""
+
+#. YprNs
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3151362\n"
+"help.text"
+msgid "<emph>Text</emph> refers to text in which spaces are to be removed."
+msgstr ""
+
+#. YpY5k
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3156074\n"
+"help.text"
+msgid "<item type=\"input\">=TRIM(\" hello world \")</item> returns hello world without leading and trailing spaces and with single space between words."
+msgstr ""
+
+#. G7Zmx
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"bm_id0907200904030935\n"
+"help.text"
+msgid "<bookmark_value>UNICHAR function</bookmark_value>"
+msgstr ""
+
+#. sbMfZ
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"hd_id0907200904022525\n"
+"help.text"
+msgid "UNICHAR"
+msgstr ""
+
+#. A5C9q
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id0907200904022538\n"
+"help.text"
+msgid "<ahelp hid=\".\">Converts a code number into a Unicode character or letter.</ahelp>"
+msgstr ""
+
+#. yRMFr
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id0907200904123753\n"
+"help.text"
+msgid "<item type=\"literal\">UNICHAR(number)</item>"
+msgstr ""
+
+#. Bv7so
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id090720090412378\n"
+"help.text"
+msgid "=UNICHAR(169) returns the Copyright character <emph>©</emph>."
+msgstr ""
+
+#. BRKkC
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id050220170755399756\n"
+"help.text"
+msgid "See also the UNICODE() function."
+msgstr ""
+
+#. 5vPGR
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"bm_id0907200904033543\n"
+"help.text"
+msgid "<bookmark_value>UNICODE function</bookmark_value>"
+msgstr ""
+
+#. pcCdJ
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"hd_id0907200904022588\n"
+"help.text"
+msgid "UNICODE"
+msgstr ""
+
+#. RHZRt
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id0907200904022594\n"
+"help.text"
+msgid "<ahelp hid=\".\">Returns the numeric code for the first Unicode character in a text string.</ahelp>"
+msgstr ""
+
+#. 67NqH
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id0907200904123846\n"
+"help.text"
+msgid "<item type=\"literal\">UNICODE(\"Text\")</item>"
+msgstr ""
+
+#. BSavm
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id0907200904123919\n"
+"help.text"
+msgid "=UNICODE(\"©\") returns the Unicode number 169 for the Copyright character."
+msgstr ""
+
+#. 3w2a5
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id050220170755393174\n"
+"help.text"
+msgid "See also the UNICHAR() function."
+msgstr ""
+
+#. 3CD8p
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"bm_id3145178\n"
+"help.text"
+msgid "<bookmark_value>UPPER function</bookmark_value>"
+msgstr ""
+
+#. aopUo
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"hd_id3145178\n"
+"help.text"
+msgid "UPPER"
+msgstr ""
+
+#. oaPDP
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3162905\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_GROSS\">Converts the string specified in the <emph>text</emph> field to uppercase.</ahelp>"
+msgstr ""
+
+#. kDTg8
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3148539\n"
+"help.text"
+msgid "UPPER(\"Text\")"
+msgstr ""
+
+#. qnWaU
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3148496\n"
+"help.text"
+msgid "<emph>Text</emph> refers to the lower case letters you want to convert to upper case."
+msgstr ""
+
+#. gpyYF
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id3146757\n"
+"help.text"
+msgid "<item type=\"input\">=UPPER(\"Good Morning\")</item> returns GOOD MORNING."
+msgstr ""
+
+#. E5UtK
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"tit\n"
+"help.text"
+msgid "Add-in Functions"
+msgstr ""
+
+#. uRWxR
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"bm_id3150870\n"
+"help.text"
+msgid "<bookmark_value>add-ins; functions</bookmark_value><bookmark_value>functions; add-in functions</bookmark_value><bookmark_value>Function Wizard; add-ins</bookmark_value>"
+msgstr ""
+
+#. igy2a
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"hd_id3150870\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 ""
+
+#. Qq6yz
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3147427\n"
+"help.text"
+msgid "<variable id=\"addintext\">The following describes and lists some of the available add-in functions.</variable>"
+msgstr ""
+
+#. DbbqV
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3163713\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060112.xhp#addinconcept\">Add-in concept</link>"
+msgstr ""
+
+#. YD6wG
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3146120\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 ""
+
+#. FqTdJ
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"hd_id3151075\n"
+"help.text"
+msgid "Add-ins supplied"
+msgstr ""
+
+#. 5R8nv
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3156285\n"
+"help.text"
+msgid "$[officename] contains examples for the add-in interface of $[officename] Calc."
+msgstr ""
+
+#. H5JWB
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3159267\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060115.xhp\">Analysis Functions Part One</link>"
+msgstr ""
+
+#. mbKx7
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3154703\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060116.xhp\">Analysis Functions Part Two</link>"
+msgstr ""
+
+#. ZcGub
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"bm_id3149566\n"
+"help.text"
+msgid "<bookmark_value>ISLEAPYEAR function</bookmark_value><bookmark_value>leap year determination</bookmark_value>"
+msgstr ""
+
+#. DSQC2
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"hd_id3149566\n"
+"help.text"
+msgid "ISLEAPYEAR"
+msgstr ""
+
+#. FAqAb
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3150297\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 ""
+
+#. XbTHQ
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3150205\n"
+"help.text"
+msgid "ISLEAPYEAR(Date)"
+msgstr ""
+
+#. orhWt
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3159239\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 ""
+
+#. ZJXKa
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3150786\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 ""
+
+#. iLqDE
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_idN107E7\n"
+"help.text"
+msgid "You may also use =ISLEAPYEAR(DATE(1968;2;29)) or =ISLEAPYEAR(\"1968-02-29\") giving the date string in the ISO 8601 notation."
+msgstr ""
+
+#. EDqrB
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_idN107EA\n"
+"help.text"
+msgid "Never use =ISLEAPYEAR(2/29/68), because this would first evaluate 2 divided by 29 divided by 68, and then calculate the ISLEAPYEAR function from this small number as a serial date number."
+msgstr ""
+
+#. MaQes
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"bm_id3154656\n"
+"help.text"
+msgid "<bookmark_value>YEARS function</bookmark_value><bookmark_value>number of years between two dates</bookmark_value>"
+msgstr ""
+
+#. tALsE
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"hd_id3154656\n"
+"help.text"
+msgid "YEARS"
+msgstr ""
+
+#. LoBLi
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3150886\n"
+"help.text"
+msgid "<ahelp hid=\"HID_DAI_FUNC_DIFFYEARS\">Calculates the difference in years between two dates.</ahelp>"
+msgstr ""
+
+#. MsnLa
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3146114\n"
+"help.text"
+msgid "YEARS(StartDate; EndDate; Type)"
+msgstr ""
+
+#. i8TLM
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3145387\n"
+"help.text"
+msgid "<emph>StartDate</emph> is the first date"
+msgstr ""
+
+#. pwhzA
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3156290\n"
+"help.text"
+msgid "<emph>EndDate</emph> is the second date"
+msgstr ""
+
+#. eBu53
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3152893\n"
+"help.text"
+msgid "<emph>Type</emph> calculates the type of difference. Possible values are 0 (interval) and 1 (in calendar years)."
+msgstr ""
+
+#. 3wsG2
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"bm_id3152898\n"
+"help.text"
+msgid "<bookmark_value>MONTHS function</bookmark_value><bookmark_value>number of months between two dates</bookmark_value>"
+msgstr ""
+
+#. p2XnK
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"hd_id3152898\n"
+"help.text"
+msgid "MONTHS"
+msgstr ""
+
+#. q2Jcr
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3153066\n"
+"help.text"
+msgid "<ahelp hid=\"HID_DAI_FUNC_DIFFMONTHS\">Calculates the difference in months between two dates.</ahelp>"
+msgstr ""
+
+#. hQGKL
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3146869\n"
+"help.text"
+msgid "MONTHS(StartDate; EndDate; Type)"
+msgstr ""
+
+#. 5JEZA
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3145075\n"
+"help.text"
+msgid "<emph>StartDate</emph> is the first date"
+msgstr ""
+
+#. C3sDr
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3157981\n"
+"help.text"
+msgid "<emph>EndDate</emph> is the second date"
+msgstr ""
+
+#. 5HCGD
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3150111\n"
+"help.text"
+msgid "<emph>Type</emph> calculates the type of difference. Possible values include 0 (interval) and 1 (in calendar months)."
+msgstr ""
+
+#. rEsia
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"bm_id3159094\n"
+"help.text"
+msgid "<bookmark_value>ROT13 function</bookmark_value><bookmark_value>encrypting text</bookmark_value>"
+msgstr ""
+
+#. eBNxc
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"hd_id3159094\n"
+"help.text"
+msgid "ROT13"
+msgstr ""
+
+#. MPeWE
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3146781\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 ""
+
+#. bCDPT
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3159205\n"
+"help.text"
+msgid "ROT13(Text)"
+msgstr ""
+
+#. 5gMJ8
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3153249\n"
+"help.text"
+msgid "<emph>Text</emph> is the character string to be encrypted. ROT13(ROT13(Text)) decrypts the code."
+msgstr ""
+
+#. tN74B
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id151626469224135\n"
+"help.text"
+msgid "<input>=ROT13(\"Gur Qbphzrag Sbhaqngvba jnf sbhaqrq va Frcgrzore 2010.\")</input> returns the string \"The Document Foundation was founded in September 2010.\". Notice how spaces, digits, and full stops are unaffected by ROT13."
+msgstr ""
+
+#. 4TMAT
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id221626469509161\n"
+"help.text"
+msgid "Refer to the <link href=\"https://wiki.documentfoundation.org/Documentation/Calc_Functions/ROT13\" name=\"ROT13_Wiki\">ROT13</link> wiki page for more details about this function."
+msgstr ""
+
+#. CFJsA
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"bm_id3151300\n"
+"help.text"
+msgid "<bookmark_value>DAYSINYEAR function</bookmark_value><bookmark_value>number of days; in a specific year</bookmark_value>"
+msgstr ""
+
+#. EzjHV
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"hd_id3151300\n"
+"help.text"
+msgid "DAYSINYEAR"
+msgstr ""
+
+#. cyjpz
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3143220\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 ""
+
+#. STiAZ
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3154651\n"
+"help.text"
+msgid "DAYSINYEAR(Date)"
+msgstr ""
+
+#. 68qrS
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3153803\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 ""
+
+#. 4j6rB
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3153811\n"
+"help.text"
+msgid "=DAYSINYEAR(A1) returns 366 days if A1 contains 1968-02-29, a valid date for the year 1968."
+msgstr ""
+
+#. c7nbU
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"bm_id3154737\n"
+"help.text"
+msgid "<bookmark_value>DAYSINMONTH function</bookmark_value><bookmark_value>number of days;in a specific month of a year</bookmark_value>"
+msgstr ""
+
+#. BVVaT
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"hd_id3154737\n"
+"help.text"
+msgid "DAYSINMONTH"
+msgstr ""
+
+#. M8J3o
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3149316\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 ""
+
+#. pBMn5
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3150955\n"
+"help.text"
+msgid "DAYSINMONTH(Date)"
+msgstr ""
+
+#. bgX8N
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3147501\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 ""
+
+#. HUx2W
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3155742\n"
+"help.text"
+msgid "=DAYSINMONTH(A1) returns 29 days if A1 contains 1968-02-17, a valid date for February 1968."
+msgstr ""
+
+#. iJAzE
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"bm_id3149048\n"
+"help.text"
+msgid "<bookmark_value>WEEKS function</bookmark_value><bookmark_value>number of weeks;between two dates</bookmark_value>"
+msgstr ""
+
+#. WSP25
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"hd_id3149048\n"
+"help.text"
+msgid "WEEKS"
+msgstr ""
+
+#. W7FhE
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3153340\n"
+"help.text"
+msgid "<ahelp hid=\"HID_DAI_FUNC_DIFFWEEKS\">Calculates the difference in weeks between two dates.</ahelp>"
+msgstr ""
+
+#. 3N4Ca
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3147402\n"
+"help.text"
+msgid "WEEKS(StartDate; EndDate; Type)"
+msgstr ""
+
+#. uwhoB
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3151387\n"
+"help.text"
+msgid "<emph>StartDate</emph> is the start date in the interval."
+msgstr ""
+
+#. AGYKD
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3146324\n"
+"help.text"
+msgid "<emph>EndDate</emph> is the end date in the interval. The end date must be greater than the start date, or else an error is returned."
+msgstr ""
+
+#. PcBbC
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3166467\n"
+"help.text"
+msgid "<emph>Type</emph> specifies the type of difference to be calculated. Possible values are 0 (time interval) or 1 (calendar weeks)."
+msgstr ""
+
+#. QaW6B
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id81641990941192\n"
+"help.text"
+msgid "If <emph>Type = 0</emph> the function will assume that 7 days is equivalent to one week without considering any specific day to mark the beginning of a week."
+msgstr ""
+
+#. geCV7
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id31641991010650\n"
+"help.text"
+msgid "If <emph>Type = 1</emph> the function will consider Monday to be the first day of the week. Therefore, except for the start date, each occurrence of a Monday in the interval is counted as an additional week."
+msgstr ""
+
+#. CF4K3
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id971641990480242\n"
+"help.text"
+msgid "This function considers Monday to be the first day of the week regardless of the current locale settings."
+msgstr ""
+
+#. H2Gpc
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id671641994821992\n"
+"help.text"
+msgid "In the following examples, dates are passed as strings. However, they can also be stored in separate cells and be passed as references."
+msgstr ""
+
+#. SyEBP
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id71641991391639\n"
+"help.text"
+msgid "<input>=WEEKS(\"01/12/2022\",\"01/17/2022\",0)</input> returns 0 because <emph>Type</emph> was set to 0 and there are only 5 days in the interval."
+msgstr ""
+
+#. zVfY3
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id71641991390039\n"
+"help.text"
+msgid "<input>=WEEKS(\"01/12/2022\",\"01/19/2022\",0)</input> returns 1 because <emph>Type</emph> was set to 0 and there are 7 days in the interval."
+msgstr ""
+
+#. rABLZ
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id71641991391123\n"
+"help.text"
+msgid "<input>=WEEKS(\"01/12/2022\",\"01/17/2022\",1)</input> returns 1 because <emph>Type</emph> was set to 1 and the interval contains a Monday, since 01/12/2022 is a Wednesday and 01/17/2022 is a Monday."
+msgstr ""
+
+#. AxokT
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id71641991332523\n"
+"help.text"
+msgid "<input>=WEEKS(\"01/10/2022\",\"01/15/2022\",1)</input> returns 0 because <emph>Type</emph> was set to 1 and the interval does not contain any Mondays, except for the start date."
+msgstr ""
+
+#. 94JhK
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"bm_id3145237\n"
+"help.text"
+msgid "<bookmark_value>WEEKSINYEAR function</bookmark_value><bookmark_value>number of weeks;in a specific year</bookmark_value>"
+msgstr ""
+
+#. vbAv7
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"hd_id3145237\n"
+"help.text"
+msgid "WEEKSINYEAR"
+msgstr ""
+
+#. Xs58F
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3147410\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 ""
+
+#. 84kGK
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3145638\n"
+"help.text"
+msgid "WEEKSINYEAR(Date)"
+msgstr ""
+
+#. wB2Qe
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3149946\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 ""
+
+#. bPF33
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3147614\n"
+"help.text"
+msgid "WEEKSINYEAR(A1) returns 53 if A1 contains 1970-02-17, a valid date for the year 1970."
+msgstr ""
+
+#. ArNDo
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"hd_id3157901\n"
+"help.text"
+msgid "Add-ins through %PRODUCTNAME API"
+msgstr ""
+
+#. hJWzo
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3149351\n"
+"help.text"
+msgid "Add-ins can also be implemented through the %PRODUCTNAME <link href=\"https://api.libreoffice.org/\" name=\"api.libreoffice.org\">API</link>."
+msgstr ""
+
+#. KziFV
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"tit\n"
+"help.text"
+msgid "Add-in for Programming in $[officename] Calc"
+msgstr ""
+
+#. yCgrA
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"bm_id3151076\n"
+"help.text"
+msgid "<bookmark_value>programming; add-ins</bookmark_value><bookmark_value>shared libraries; programming</bookmark_value><bookmark_value>external DLL functions</bookmark_value><bookmark_value>functions; $[officename] Calc add-in DLL</bookmark_value><bookmark_value>add-ins; for programming</bookmark_value>"
+msgstr ""
+
+#. x9hSr
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"hd_id3151076\n"
+"help.text"
+msgid "Add-in for Programming in $[officename] Calc"
+msgstr ""
+
+#. 38Xcw
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3147001\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 ""
+
+#. aR3NC
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3150361\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 ""
+
+#. qyzrA
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149211\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 ""
+
+#. CAC5V
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"hd_id3146981\n"
+"help.text"
+msgid "The Add-In Concept"
+msgstr ""
+
+#. qYPz8
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3156292\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 ""
+
+#. CYHXE
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"hd_id3152890\n"
+"help.text"
+msgid "Functions of <switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library</caseinline><defaultinline>AddIn DLL</defaultinline></switchinline>"
+msgstr ""
+
+#. DPTDC
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3148837\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 ""
+
+#. ECARD
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3148604\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 ""
+
+#. GFgFB
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3150112\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 ""
+
+#. 5F3BX
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3155269\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 ""
+
+#. eDr3V
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"hd_id3145077\n"
+"help.text"
+msgid "General information about the interface"
+msgstr ""
+
+#. a52J5
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3146776\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 ""
+
+#. mbiCk
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149899\n"
+"help.text"
+msgid "The data types are defined as follows:"
+msgstr ""
+
+#. zw8Fb
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3151302\n"
+"help.text"
+msgid "<emph>Data types</emph>"
+msgstr ""
+
+#. hrud4
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3143222\n"
+"help.text"
+msgid "<emph>Definition</emph>"
+msgstr ""
+
+#. feYP7
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3146963\n"
+"help.text"
+msgid "Under Windows: FAR PASCAL (_far _pascal)"
+msgstr ""
+
+#. WzRFE
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153809\n"
+"help.text"
+msgid "Other: default (operating system specific default)"
+msgstr ""
+
+#. Dp239
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3155760\n"
+"help.text"
+msgid "2 Byte unsigned Integer"
+msgstr ""
+
+#. kEyLT
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3150956\n"
+"help.text"
+msgid "8 byte platform-dependent format"
+msgstr ""
+
+#. UD5uA
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3150432\n"
+"help.text"
+msgid "Platform-dependent like int"
+msgstr ""
+
+#. 2vhRi
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153955\n"
+"help.text"
+msgid "PTR_DOUBLE =0 pointer to a double"
+msgstr ""
+
+#. xAFip
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3159262\n"
+"help.text"
+msgid "PTR_STRING =1 pointer to a zero-terminated string"
+msgstr ""
+
+#. 3sEgK
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3148747\n"
+"help.text"
+msgid "PTR_DOUBLE_ARR =2 pointer to a double array"
+msgstr ""
+
+#. Gur9C
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3147406\n"
+"help.text"
+msgid "PTR_STRING_ARR =3 pointer to a string array"
+msgstr ""
+
+#. sCejE
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3151392\n"
+"help.text"
+msgid "PTR_CELL_ARR =4 pointer to a cell array"
+msgstr ""
+
+#. hhKaz
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153028\n"
+"help.text"
+msgid "NONE =5"
+msgstr ""
+
+#. rhfoh
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"hd_id3156396\n"
+"help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library</caseinline><defaultinline>DLL</defaultinline></switchinline> functions"
+msgstr ""
+
+#. wVc9G
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153019\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 ""
+
+#. kDo37
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3150038\n"
+"help.text"
+msgid "For all <switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library</caseinline><defaultinline>DLL</defaultinline></switchinline> functions, the following applies:"
+msgstr ""
+
+#. QZ7q4
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3147616\n"
+"help.text"
+msgid "<emph>Output</emph>: Resulting value"
+msgstr ""
+
+#. ErpXM
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3159119\n"
+"help.text"
+msgid "<emph>Input</emph>: 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 ""
+
+#. BJLCP
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"hd_id3150653\n"
+"help.text"
+msgid "GetFunctionCount()"
+msgstr ""
+
+#. Hs7Du
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3152981\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 ""
+
+#. w5DKB
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3150742\n"
+"help.text"
+msgid "<emph>Syntax</emph>"
+msgstr ""
+
+#. deW2z
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3154677\n"
+"help.text"
+msgid "<emph>Parameter</emph>"
+msgstr ""
+
+#. AGnQd
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149893\n"
+"help.text"
+msgid "<emph>Output</emph>: 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 ""
+
+#. GFJes
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"hd_id3147476\n"
+"help.text"
+msgid "GetFunctionData()"
+msgstr ""
+
+#. MMvZL
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3154841\n"
+"help.text"
+msgid "Determines all the important information about an Add-In function."
+msgstr ""
+
+#. fqYgr
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3148888\n"
+"help.text"
+msgid "<emph>Syntax</emph>"
+msgstr ""
+
+#. P63DF
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149253\n"
+"help.text"
+msgid "<emph>Parameter</emph>"
+msgstr ""
+
+#. W4Bdb
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149949\n"
+"help.text"
+msgid "<emph>Input</emph>: Function number between 0 and nCount-1, inclusively."
+msgstr ""
+
+#. CSBYk
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3148579\n"
+"help.text"
+msgid "<emph>Output</emph>: 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 ""
+
+#. 6yGps
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3150142\n"
+"help.text"
+msgid "<emph>Output</emph>: 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 ""
+
+#. TjFBR
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3148750\n"
+"help.text"
+msgid "<emph>Output</emph>: Pointer to an array of exactly 16 variables of type Paramtype. The first nParamCount entries are filled with the suitable type of parameter."
+msgstr ""
+
+#. YNrEv
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3155261\n"
+"help.text"
+msgid "<emph>Output</emph>: Function name as seen by the user, as it appears in the <emph>Function Wizard</emph>. May contain umlauts."
+msgstr ""
+
+#. rcNLZ
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153327\n"
+"help.text"
+msgid "The pFuncName and pInternalName parameters are char arrays, which are implemented with size 256 in $[officename] Calc."
+msgstr ""
+
+#. BDeUC
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"hd_id3148567\n"
+"help.text"
+msgid "GetParameterDescription()"
+msgstr ""
+
+#. sF27k
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153000\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 ""
+
+#. WCRmw
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3154501\n"
+"help.text"
+msgid "<emph>Syntax</emph>"
+msgstr ""
+
+#. pxoCN
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153564\n"
+"help.text"
+msgid "<literal>void CALLTYPE GetParameterDescription(USHORT& nNo, USHORT& nParam, char* pName, char* pDesc)</literal>"
+msgstr ""
+
+#. 99Z6E
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3157995\n"
+"help.text"
+msgid "<emph>Parameter</emph>"
+msgstr ""
+
+#. agM3b
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149883\n"
+"help.text"
+msgid "<emph>Input</emph>: Number of the function in the library; between 0 and nCount-1."
+msgstr ""
+
+#. QHn87
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3159139\n"
+"help.text"
+msgid "<emph>Input</emph>: 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 ""
+
+#. Eq6cW
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3145245\n"
+"help.text"
+msgid "<emph>Output</emph>: 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 ""
+
+#. yf6Eg
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3148389\n"
+"help.text"
+msgid "<emph>Output</emph>: 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 ""
+
+#. 52p82
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3145303\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 ""
+
+#. gmvAA
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"hd_id3148874\n"
+"help.text"
+msgid "Cell areas"
+msgstr ""
+
+#. DodDw
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3150265\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 ""
+
+#. UEfa5
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"hd_id3156060\n"
+"help.text"
+msgid "Double Array"
+msgstr ""
+
+#. ELgCT
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149540\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 ""
+
+#. 8FA5p
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149388\n"
+"help.text"
+msgid "Offset"
+msgstr ""
+
+#. zS5BL
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3154636\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. 3dyGm
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153228\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. auDAv
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3154869\n"
+"help.text"
+msgid "Col1"
+msgstr ""
+
+#. BLWZ3
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3147541\n"
+"help.text"
+msgid "Column number in the upper-left corner of the cell area. Numbering starts at 0."
+msgstr ""
+
+#. 66LM7
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3155986\n"
+"help.text"
+msgid "Row1"
+msgstr ""
+
+#. iPM7A
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3147483\n"
+"help.text"
+msgid "Row number in the upper-left corner of the cell area; numbering starts at 0."
+msgstr ""
+
+#. XMBCD
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3154317\n"
+"help.text"
+msgid "Tab1"
+msgstr ""
+
+#. dwbQd
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149820\n"
+"help.text"
+msgid "Table number in the upper-left corner of the cell area; numbering starts at 0."
+msgstr ""
+
+#. wuFWu
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149710\n"
+"help.text"
+msgid "Col2"
+msgstr ""
+
+#. pvAod
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3154819\n"
+"help.text"
+msgid "Column number in the lower-right corner of the cell area. Numbering starts at 0."
+msgstr ""
+
+#. CV3G6
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3156310\n"
+"help.text"
+msgid "Row2"
+msgstr ""
+
+#. BVLeE
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3150968\n"
+"help.text"
+msgid "Row number in the lower-right corner of the cell area; numbering starts at 0."
+msgstr ""
+
+#. 2uuuR
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153218\n"
+"help.text"
+msgid "Tab2"
+msgstr ""
+
+#. ehcuo
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3147086\n"
+"help.text"
+msgid "Table number in the lower-right corner of the cell area; numbering starts at 0."
+msgstr ""
+
+#. So9De
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3152934\n"
+"help.text"
+msgid "Count"
+msgstr ""
+
+#. uT77x
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3145202\n"
+"help.text"
+msgid "Number of the following elements. Empty cells are not counted or passed."
+msgstr ""
+
+#. XVqa3
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3156002\n"
+"help.text"
+msgid "Col"
+msgstr ""
+
+#. v4DFD
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3147276\n"
+"help.text"
+msgid "Column number of the element. Numbering starts at 0."
+msgstr ""
+
+#. sBjP5
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3150261\n"
+"help.text"
+msgid "Row"
+msgstr ""
+
+#. pXswN
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3155851\n"
+"help.text"
+msgid "Row number of the element; numbering starts at 0."
+msgstr ""
+
+#. XDCCc
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153758\n"
+"help.text"
+msgid "Tab"
+msgstr ""
+
+#. G8ZMG
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3150154\n"
+"help.text"
+msgid "Table number of the element; numbering starts at 0."
+msgstr ""
+
+#. GmDaJ
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3156010\n"
+"help.text"
+msgid "Error"
+msgstr ""
+
+#. 5uRBa
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3159181\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 ""
+
+#. ppLAh
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149200\n"
+"help.text"
+msgid "Value"
+msgstr ""
+
+#. K8DZU
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3151174\n"
+"help.text"
+msgid "8 byte IEEE variable of type double/floating point"
+msgstr ""
+
+#. ghv37
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3155388\n"
+"help.text"
+msgid "Next element"
+msgstr ""
+
+#. n6G8z
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"hd_id3154935\n"
+"help.text"
+msgid "String Array"
+msgstr ""
+
+#. iSVvD
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153105\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 ""
+
+#. yG2ic
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149908\n"
+"help.text"
+msgid "Offset"
+msgstr ""
+
+#. ehB7k
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3159165\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. iRPCq
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3159150\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. q4Dcs
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3150509\n"
+"help.text"
+msgid "Col1"
+msgstr ""
+
+#. c7yR8
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3148447\n"
+"help.text"
+msgid "Column number in the upper-left corner of the cell area. Numbering starts at 0."
+msgstr ""
+
+#. xKiav
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3147512\n"
+"help.text"
+msgid "Row1"
+msgstr ""
+
+#. vVRTp
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3147235\n"
+"help.text"
+msgid "Row number in the upper-left corner of the cell area; numbering starts at 0."
+msgstr ""
+
+#. 5rPxH
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3151051\n"
+"help.text"
+msgid "Tab1"
+msgstr ""
+
+#. 3kAmA
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3148923\n"
+"help.text"
+msgid "Table number in the upper-left corner of the cell area; numbering starts at 0."
+msgstr ""
+
+#. kvTCA
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3166437\n"
+"help.text"
+msgid "Col2"
+msgstr ""
+
+#. PNYu9
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149788\n"
+"help.text"
+msgid "Column number in the lower-right corner of the cell area. Numbering starts at 0."
+msgstr ""
+
+#. QX9SD
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3152877\n"
+"help.text"
+msgid "Row2"
+msgstr ""
+
+#. BXXCY
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3152949\n"
+"help.text"
+msgid "Row number in the lower-right corner of the cell area; numbering starts at 0."
+msgstr ""
+
+#. SGAuU
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3154107\n"
+"help.text"
+msgid "Tab2"
+msgstr ""
+
+#. BGCB4
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153747\n"
+"help.text"
+msgid "Table number in the lower-right corner of the cell area; numbering starts at 0."
+msgstr ""
+
+#. yAmQX
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3154858\n"
+"help.text"
+msgid "Count"
+msgstr ""
+
+#. muWyx
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3148621\n"
+"help.text"
+msgid "Number of the following elements. Empty cells are not counted or passed."
+msgstr ""
+
+#. Wz3Kg
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3151126\n"
+"help.text"
+msgid "Col"
+msgstr ""
+
+#. 859tw
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3154334\n"
+"help.text"
+msgid "Column number of the element. Numbering starts at 0."
+msgstr ""
+
+#. eXyU8
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3150631\n"
+"help.text"
+msgid "Row"
+msgstr ""
+
+#. roveF
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3150424\n"
+"help.text"
+msgid "Row number of the element; numbering starts at 0."
+msgstr ""
+
+#. 8ZbQg
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3143274\n"
+"help.text"
+msgid "Tab"
+msgstr ""
+
+#. 4DfHd
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149513\n"
+"help.text"
+msgid "Table number of the element; numbering starts at 0."
+msgstr ""
+
+#. M8obt
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153948\n"
+"help.text"
+msgid "Error"
+msgstr ""
+
+#. ARisE
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153534\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 ""
+
+#. kJBfR
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3148695\n"
+"help.text"
+msgid "Len"
+msgstr ""
+
+#. XtnX2
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3152769\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 ""
+
+#. T3mvx
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153702\n"
+"help.text"
+msgid "String"
+msgstr ""
+
+#. RcaZn
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3154474\n"
+"help.text"
+msgid "String with closing zero byte"
+msgstr ""
+
+#. TFDYs
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3147097\n"
+"help.text"
+msgid "Next element"
+msgstr ""
+
+#. 7rrRN
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"hd_id3159091\n"
+"help.text"
+msgid "Cell Array"
+msgstr ""
+
+#. fCbXc
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3156140\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 ""
+
+#. QiX6Y
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3154664\n"
+"help.text"
+msgid "Offset"
+msgstr ""
+
+#. 6oQJ6
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3154566\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. D3xXV
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3146073\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. Zty8q
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3150988\n"
+"help.text"
+msgid "Col1"
+msgstr ""
+
+#. KyDw8
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3146783\n"
+"help.text"
+msgid "Column number in the upper-left corner of the cell area. Numbering starts at 0."
+msgstr ""
+
+#. RLggK
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149560\n"
+"help.text"
+msgid "Row1"
+msgstr ""
+
+#. r6G5T
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3156156\n"
+"help.text"
+msgid "Row number in the upper-left corner of the cell area; numbering starts at 0."
+msgstr ""
+
+#. TJRib
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3150593\n"
+"help.text"
+msgid "Tab1"
+msgstr ""
+
+#. QmEhv
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3150357\n"
+"help.text"
+msgid "Table number in the upper-left corner of the cell area; numbering starts at 0."
+msgstr ""
+
+#. 8BkPM
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153352\n"
+"help.text"
+msgid "Col2"
+msgstr ""
+
+#. mmA7K
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3155893\n"
+"help.text"
+msgid "Column number in the lower-right corner of the cell area. Numbering starts at 0."
+msgstr ""
+
+#. Zo3Z5
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3148406\n"
+"help.text"
+msgid "Row2"
+msgstr ""
+
+#. Mj3nh
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3150673\n"
+"help.text"
+msgid "Row number in the lower-right corner of the cell area; numbering starts at 0."
+msgstr ""
+
+#. XRoJc
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153197\n"
+"help.text"
+msgid "Tab2"
+msgstr ""
+
+#. mfutR
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149329\n"
+"help.text"
+msgid "Table number in the lower-right corner of the cell area; numbering starts at 0."
+msgstr ""
+
+#. 7UYg2
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3154520\n"
+"help.text"
+msgid "Count"
+msgstr ""
+
+#. BFhBu
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3150647\n"
+"help.text"
+msgid "Number of the following elements. Empty cells are not counted or passed."
+msgstr ""
+
+#. j76c8
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3147579\n"
+"help.text"
+msgid "Col"
+msgstr ""
+
+#. MtDMD
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3154188\n"
+"help.text"
+msgid "Column number of the element. Numbering starts at 0."
+msgstr ""
+
+#. Ukqqs
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153265\n"
+"help.text"
+msgid "Row"
+msgstr ""
+
+#. 4T7Bh
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3150095\n"
+"help.text"
+msgid "Row number of the element; numbering starts at 0."
+msgstr ""
+
+#. VGqMb
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149177\n"
+"help.text"
+msgid "Tab"
+msgstr ""
+
+#. qQdVP
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3146925\n"
+"help.text"
+msgid "Table number of the element; numbering starts at 0."
+msgstr ""
+
+#. GCRmy
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149441\n"
+"help.text"
+msgid "Error"
+msgstr ""
+
+#. EBD5G
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3156048\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 ""
+
+#. EPbYb
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3159102\n"
+"help.text"
+msgid "Type"
+msgstr ""
+
+#. CHk6f
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149581\n"
+"help.text"
+msgid "Type of cell content, 0 == Double, 1 == String"
+msgstr ""
+
+#. ufneM
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153291\n"
+"help.text"
+msgid "Value or Len"
+msgstr ""
+
+#. 4EsF8
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3148560\n"
+"help.text"
+msgid "If type == 0: 8 byte IEEE variable of type double/floating point"
+msgstr ""
+
+#. DALxE
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3148901\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 ""
+
+#. 36VSE
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3145215\n"
+"help.text"
+msgid "26 if type==1"
+msgstr ""
+
+#. F2WH5
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3155143\n"
+"help.text"
+msgid "String"
+msgstr ""
+
+#. PBZaj
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149298\n"
+"help.text"
+msgid "If type == 1: String with closing zero byte"
+msgstr ""
+
+#. Bzn3r
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3151322\n"
+"help.text"
+msgid "32 or 26+Len"
+msgstr ""
+
+#. VDmRK
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3163722\n"
+"help.text"
+msgid "..."
+msgstr ""
+
+#. GBLhy
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3151059\n"
+"help.text"
+msgid "Next element"
+msgstr ""
+
+#. 5Cu2e
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"tit\n"
+"help.text"
+msgid "Add-in Functions, List of Analysis Functions Part One"
+msgstr ""
+
+#. 5aqey
+#: 04060115.xhp
+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 ""
+
+#. tbHXD
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id3152871\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 ""
+
+#. 7ZBxx
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id961592361784406\n"
+"help.text"
+msgid "The Add-in functions are supplied by the <link href=\"text/sbasic/shared/calc_functions.xhp\" name=\"addinanalysis\">UNO <literal>com.sun.star.sheet.addin.Analysis</literal> service</link>."
+msgstr ""
+
+#. zKa2G
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"bm_id3153074\n"
+"help.text"
+msgid "<bookmark_value>Bessel functions</bookmark_value> <bookmark_value>BESSELI function</bookmark_value>"
+msgstr ""
+
+#. YpfCj
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id3153334\n"
+"help.text"
+msgid "BESSELI"
+msgstr ""
+
+#. TKGQd
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3153960\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_BESSELI\">Calculates the modified Bessel function of the first kind In(x).</ahelp>"
+msgstr ""
+
+#. 5Ge9K
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3147295\n"
+"help.text"
+msgid "BESSELI(X; N)"
+msgstr ""
+
+#. yqheV
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3151338\n"
+"help.text"
+msgid "<emph>X</emph> is the value on which the function will be calculated."
+msgstr ""
+
+#. 6CSX4
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3151392\n"
+"help.text"
+msgid "<emph>N</emph> is a positive integer (N >= 0) representing the order of the Bessel function In(x)"
+msgstr ""
+
+#. pT5nS
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id050220171019072404\n"
+"help.text"
+msgid "=BESSELI(3.45, 4), returns 0.651416873060081"
+msgstr ""
+
+#. MZu39
+#: 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 ""
+
+#. 8yEjN
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id050220171019075086\n"
+"help.text"
+msgid "=BESSELI(-1, 3), returns -0.022168424924332"
+msgstr ""
+
+#. eDJhC
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"bm_id161618267677640\n"
+"help.text"
+msgid "<bookmark_value>BESSELJ function</bookmark_value>"
+msgstr ""
+
+#. Cccmx
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id3153027\n"
+"help.text"
+msgid "BESSELJ"
+msgstr ""
+
+#. gPDfu
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3153015\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_BESSELJ\">Calculates the Bessel function of the first kind Jn(x) (cylinder function).</ahelp>"
+msgstr ""
+
+#. wB6NS
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3150032\n"
+"help.text"
+msgid "BESSELJ(X; N)"
+msgstr ""
+
+#. DSCBX
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3150378\n"
+"help.text"
+msgid "<emph>X</emph> is the value on which the function will be calculated."
+msgstr ""
+
+#. GdA9i
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3145638\n"
+"help.text"
+msgid "<emph>N</emph> is a positive integer (N >= 0) representing the order of the Bessel function Jn(x)"
+msgstr ""
+
+#. QX9X2
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id050220171019077179\n"
+"help.text"
+msgid "=BESSELJ(3.45, 4), returns 0.196772639864984"
+msgstr ""
+
+#. qyW2X
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id050220171019078280\n"
+"help.text"
+msgid "=BESSELJ(3.45, 4.333), returns 0.196772639864984, same as above because the fractional part of N is ignored."
+msgstr ""
+
+#. Vv8kB
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id050220171019079818\n"
+"help.text"
+msgid "=BESSELJ(-1, 3), returns -0.019563353982668"
+msgstr ""
+
+#. xVEFS
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"bm_id151618267791726\n"
+"help.text"
+msgid "<bookmark_value>BESSELK function</bookmark_value>"
+msgstr ""
+
+#. jb2FF
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id3149946\n"
+"help.text"
+msgid "BESSELK"
+msgstr ""
+
+#. tuJCf
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3159122\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_BESSELK\">Calculates the modified Bessel function of the second kind Kn(x).</ahelp>"
+msgstr ""
+
+#. wFWVq
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3149354\n"
+"help.text"
+msgid "BESSELK(X; N)"
+msgstr ""
+
+#. K7JLE
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3150481\n"
+"help.text"
+msgid "<emph>X</emph> is the strictly positive value (X > 0) on which the function will be calculated."
+msgstr ""
+
+#. QYCzf
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3150024\n"
+"help.text"
+msgid "<emph>N</emph> is a positive integer (N >= 0) representing the order of the Bessel function Kn(x)"
+msgstr ""
+
+#. R9Psu
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id050220171019073898\n"
+"help.text"
+msgid "=BESSELK(3.45, 4), returns 0.144803466373734"
+msgstr ""
+
+#. jAEzA
+#: 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 ""
+
+#. vCmda
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id050220171019076471\n"
+"help.text"
+msgid "=BESSELK(0, 3), returns Err:502 – invalid argument (X=0)"
+msgstr ""
+
+#. PndsN
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"bm_id201618267836525\n"
+"help.text"
+msgid "<bookmark_value>BESSELY function</bookmark_value>"
+msgstr ""
+
+#. 9PCdq
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id3145828\n"
+"help.text"
+msgid "BESSELY"
+msgstr ""
+
+#. vtVBN
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3146877\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_BESSELY\">Calculates the Bessel function of the second kind Yn(x).</ahelp>"
+msgstr ""
+
+#. Vt5mP
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3148884\n"
+"help.text"
+msgid "BESSELY(X; N)"
+msgstr ""
+
+#. jBMf6
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3147475\n"
+"help.text"
+msgid "<emph>X</emph> is the strictly positive value (X > 0) on which the function will be calculated."
+msgstr ""
+
+#. X9t92
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3147421\n"
+"help.text"
+msgid "<emph>N</emph> is a positive integer (N >= 0) representing the order of the Bessel function Yn(x)"
+msgstr ""
+
+#. tJ4qj
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id050220171019081114\n"
+"help.text"
+msgid "=BESSELY(3.45, 4), returns -0.679848116844476"
+msgstr ""
+
+#. ajsaF
+#: 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 ""
+
+#. Gzo4f
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id050220171019082347\n"
+"help.text"
+msgid "=BESSELY(0, 3), returns Err:502 – invalid argument (X=0)"
+msgstr ""
+
+#. su6yN
+#: 04060115.xhp
+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 ""
+
+#. DeeeB
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id3153034\n"
+"help.text"
+msgid "BIN2DEC"
+msgstr ""
+
+#. jxy4S
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3144744\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_BIN2DEC\">The result is the number for the binary (base-2) number string entered.</ahelp>"
+msgstr ""
+
+#. XAXE3
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3149726\n"
+"help.text"
+msgid "BIN2DEC(Number)"
+msgstr ""
+
+#. futL2
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3150142\n"
+"help.text"
+msgid "<emph>Number</emph> is a string representing a binary (base-2) number. It 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 ""
+
+#. G83uA
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3145138\n"
+"help.text"
+msgid "<item type=\"input\">=BIN2DEC(\"1100100\")</item> returns 100."
+msgstr ""
+
+#. CPrXq
+#: 04060115.xhp
+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 ""
+
+#. Txm7F
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id3149954\n"
+"help.text"
+msgid "BIN2HEX"
+msgstr ""
+
+#. GWF6c
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3148585\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_BIN2HEX\">The result is the string representing the number in hexadecimal form for the binary (base-2) number string entered.</ahelp>"
+msgstr ""
+
+#. pLG3U
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3148753\n"
+"help.text"
+msgid "BIN2HEX(Number [; Places])"
+msgstr ""
+
+#. E5CYC
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3155255\n"
+"help.text"
+msgid "<emph>Number</emph> is a string representing a binary (base-2) number. It 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 ""
+
+#. dPTaY
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3150860\n"
+"help.text"
+msgid "<emph>Places</emph> means the number of places to be output."
+msgstr ""
+
+#. urDFd
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3149686\n"
+"help.text"
+msgid "<item type=\"input\">=BIN2HEX(\"1100100\";6)</item> returns \"000064\"."
+msgstr ""
+
+#. CmtfF
+#: 04060115.xhp
+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 ""
+
+#. ataDM
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id3153332\n"
+"help.text"
+msgid "BIN2OCT"
+msgstr ""
+
+#. E5bpw
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3155951\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_BIN2OCT\">The result is the string representing the number in octal form for the binary (base-2) number string entered.</ahelp>"
+msgstr ""
+
+#. 8pRVA
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3154508\n"
+"help.text"
+msgid "BIN2OCT(Number [; Places])"
+msgstr ""
+
+#. DbdiF
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3153567\n"
+"help.text"
+msgid "<emph>Number</emph> is a string representing a binary (base-2) number. It 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 ""
+
+#. Fx75T
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3155929\n"
+"help.text"
+msgid "<emph>Places</emph> means the number of places to be output."
+msgstr ""
+
+#. tWDgn
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3153733\n"
+"help.text"
+msgid "<item type=\"input\">=BIN2OCT(\"1100100\";4)</item> returns \"0144\"."
+msgstr ""
+
+#. 6Prkx
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"bm_id3150014\n"
+"help.text"
+msgid "<bookmark_value>DELTA function</bookmark_value> <bookmark_value>recognizing;equal numbers</bookmark_value>"
+msgstr ""
+
+#. V355A
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id3150014\n"
+"help.text"
+msgid "DELTA"
+msgstr ""
+
+#. ERTif
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3148760\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 ""
+
+#. 6s5yD
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3145247\n"
+"help.text"
+msgid "DELTA(Number1 [; Number2])"
+msgstr ""
+
+#. PEgQC
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3151020\n"
+"help.text"
+msgid "<item type=\"input\">=DELTA(1;2)</item> returns 0."
+msgstr ""
+
+#. RXFAz
+#: 04060115.xhp
+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 ""
+
+#. XAmUH
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id3157971\n"
+"help.text"
+msgid "DEC2BIN"
+msgstr ""
+
+#. TWrUq
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3153043\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_DEC2BIN\">The result is the string representing the number in binary (base-2) form for the number entered.</ahelp>"
+msgstr ""
+
+#. tPFjB
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3150569\n"
+"help.text"
+msgid "DEC2BIN(Number [; Places])"
+msgstr ""
+
+#. zB8ZD
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3148768\n"
+"help.text"
+msgid "<emph>Number</emph> is a number between -512 and 511. If Number is negative, the function returns a binary number string with 10 characters. The most significant bit is the sign bit, the other 9 bits return the value."
+msgstr ""
+
+#. 95P9e
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3149537\n"
+"help.text"
+msgid "<emph>Places</emph> means the number of places to be output."
+msgstr ""
+
+#. sqfAb
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3150662\n"
+"help.text"
+msgid "<item type=\"input\">=DEC2BIN(100;8)</item> returns \"01100100\"."
+msgstr ""
+
+#. pjCyJ
+#: 04060115.xhp
+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 ""
+
+#. F5hUA
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id3149388\n"
+"help.text"
+msgid "DEC2HEX"
+msgstr ""
+
+#. X4Gf6
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3149030\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_DEC2HEX\">The result is the string representing the number in hexadecimal form for the number entered.</ahelp>"
+msgstr ""
+
+#. T8PpC
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3147535\n"
+"help.text"
+msgid "DEC2HEX(Number [; Places])"
+msgstr ""
+
+#. hPFv2
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3152820\n"
+"help.text"
+msgid "<emph>Number</emph> is a number. If Number is negative, the function returns a hexadecimal number string with 10 characters (40 bits). The most significant bit is the sign bit, the other 39 bits return the value."
+msgstr ""
+
+#. TKcz6
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3153221\n"
+"help.text"
+msgid "<emph>Places</emph> means the number of places to be output."
+msgstr ""
+
+#. nUCCp
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3150476\n"
+"help.text"
+msgid "<item type=\"input\">=DEC2HEX(100;4)</item> returns \"0064\"."
+msgstr ""
+
+#. FEEsf
+#: 04060115.xhp
+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 ""
+
+#. SDaAA
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id3154948\n"
+"help.text"
+msgid "DEC2OCT"
+msgstr ""
+
+#. YFNQz
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3153920\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_DEC2OCT\">The result is the string representing the number in octal form for the number entered.</ahelp>"
+msgstr ""
+
+#. 5ecSa
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3148427\n"
+"help.text"
+msgid "DEC2OCT(Number [; Places])"
+msgstr ""
+
+#. ciFBX
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3155991\n"
+"help.text"
+msgid "<emph>Number</emph> is a number. If Number is negative, the function returns an octal number string with 10 characters (30 bits). The most significant bit is the sign bit, the other 29 bits return the value."
+msgstr ""
+
+#. tGXUB
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3152587\n"
+"help.text"
+msgid "<emph>Places</emph> means the number of places to be output."
+msgstr ""
+
+#. FBfKR
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3154317\n"
+"help.text"
+msgid "<item type=\"input\">=DEC2OCT(100;4)</item> returns \"0144\"."
+msgstr ""
+
+#. xBVz4
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"bm_id3083446\n"
+"help.text"
+msgid "<bookmark_value>ERF function</bookmark_value> <bookmark_value>Gaussian error integral</bookmark_value>"
+msgstr ""
+
+#. dDDrU
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id3083446\n"
+"help.text"
+msgid "ERF"
+msgstr ""
+
+#. LJDCJ
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3150381\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_ERF\">Returns values of the Gaussian error integral.</ahelp>"
+msgstr ""
+
+#. KmGKW
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3163824\n"
+"help.text"
+msgid "ERF(LowerLimit [; UpperLimit])"
+msgstr ""
+
+#. TyCGk
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3149715\n"
+"help.text"
+msgid "<emph>LowerLimit</emph> is the lower limit of the integral."
+msgstr ""
+
+#. 2EmPd
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3156294\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 place between 0 and the lower limit."
+msgstr ""
+
+#. HyxLa
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3152974\n"
+"help.text"
+msgid "<item type=\"input\">=ERF(0;1)</item> returns 0.842701."
+msgstr ""
+
+#. bCmsw
+#: 04060115.xhp
+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 ""
+
+#. KGiWM
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id2983446\n"
+"help.text"
+msgid "ERF.PRECISE"
+msgstr ""
+
+#. oWXzy
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id2950381\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_ERF_MS\">Returns values of the Gaussian error integral between 0 and the given limit.</ahelp>"
+msgstr ""
+
+#. Bshvn
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id2963824\n"
+"help.text"
+msgid "ERF.PRECISE(LowerLimit)"
+msgstr ""
+
+#. VGFZF
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id2949715\n"
+"help.text"
+msgid "<emph>LowerLimit</emph> is the limit of the integral. The calculation takes place between 0 and this limit."
+msgstr ""
+
+#. SrJQ3
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id2952974\n"
+"help.text"
+msgid "<item type=\"input\">=ERF.PRECISE(1)</item> returns 0.842701."
+msgstr ""
+
+#. 76xV5
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"bm_id3145082\n"
+"help.text"
+msgid "<bookmark_value>ERFC function</bookmark_value>"
+msgstr ""
+
+#. bncJr
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id3145082\n"
+"help.text"
+msgid "ERFC"
+msgstr ""
+
+#. rx8Ly
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3149453\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_ERFC\">Returns complementary values of the Gaussian error integral between x and infinity.</ahelp>"
+msgstr ""
+
+#. KSnvm
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3153220\n"
+"help.text"
+msgid "ERFC(LowerLimit)"
+msgstr ""
+
+#. 4fq6a
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3147620\n"
+"help.text"
+msgid "<emph>LowerLimit</emph> is the lower limit of the integral"
+msgstr ""
+
+#. ATdGD
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3156102\n"
+"help.text"
+msgid "<item type=\"input\">=ERFC(1)</item> returns 0.157299."
+msgstr ""
+
+#. foKy3
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"bm_id2945082\n"
+"help.text"
+msgid "<bookmark_value>ERFC.PRECISE function</bookmark_value>"
+msgstr ""
+
+#. GDM2F
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id2945082\n"
+"help.text"
+msgid "ERFC.PRECISE"
+msgstr ""
+
+#. 2iuRt
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id2949453\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_ERFC_MS\">Returns complementary values of the Gaussian error integral between x and infinity.</ahelp>"
+msgstr ""
+
+#. qxPZE
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id2953220\n"
+"help.text"
+msgid "ERFC.PRECISE(LowerLimit)"
+msgstr ""
+
+#. fce8U
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id2947620\n"
+"help.text"
+msgid "<emph>LowerLimit</emph> is the lower limit of the integral"
+msgstr ""
+
+#. r6BER
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id2956102\n"
+"help.text"
+msgid "<item type=\"input\">=ERFC.PRECISE(1)</item> returns 0.157299."
+msgstr ""
+
+#. ZxSwm
+#: 04060115.xhp
+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 ""
+
+#. eW353
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id3152927\n"
+"help.text"
+msgid "GESTEP"
+msgstr ""
+
+#. kcDx8
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3150763\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 ""
+
+#. cDDSb
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3145212\n"
+"help.text"
+msgid "GESTEP(Number [; Step])"
+msgstr ""
+
+#. QG8JU
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3156132\n"
+"help.text"
+msgid "<item type=\"input\">=GESTEP(5;1)</item> returns 1."
+msgstr ""
+
+#. muGwq
+#: 04060115.xhp
+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 ""
+
+#. BFuEC
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id3147276\n"
+"help.text"
+msgid "HEX2BIN"
+msgstr ""
+
+#. 9CoYr
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3150258\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_HEX2BIN\">The result is the string representing the number in binary (base-2) form for the hexadecimal number string entered.</ahelp>"
+msgstr ""
+
+#. S4Zyx
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3155847\n"
+"help.text"
+msgid "HEX2BIN(Number [; Places])"
+msgstr ""
+
+#. bSZFP
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3152810\n"
+"help.text"
+msgid "<emph>Number</emph> is 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 ""
+
+#. MyDNX
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3153758\n"
+"help.text"
+msgid "<emph>Places</emph> is the number of places to be output."
+msgstr ""
+
+#. eXJCy
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3156002\n"
+"help.text"
+msgid "<item type=\"input\">=HEX2BIN(\"6a\";8)</item> returns \"01101010\"."
+msgstr ""
+
+#. 8Exy5
+#: 04060115.xhp
+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 ""
+
+#. 72V9T
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id3154742\n"
+"help.text"
+msgid "HEX2DEC"
+msgstr ""
+
+#. EEN2E
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3153626\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_HEX2DEC\">The result is the number for the hexadecimal number string entered.</ahelp>"
+msgstr ""
+
+#. mopAX
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3149293\n"
+"help.text"
+msgid "HEX2DEC(Number)"
+msgstr ""
+
+#. MUEBC
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3159176\n"
+"help.text"
+msgid "<emph>Number</emph> is 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 ""
+
+#. FoRAT
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3146093\n"
+"help.text"
+msgid "<item type=\"input\">=HEX2DEC(\"6a\")</item> returns 106."
+msgstr ""
+
+#. fh2wp
+#: 04060115.xhp
+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 ""
+
+#. TXoEu
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id3149750\n"
+"help.text"
+msgid "HEX2OCT"
+msgstr ""
+
+#. VADw5
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3153983\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_HEX2OCT\">The result is the string representing the number in octal form for the hexadecimal number string entered.</ahelp>"
+msgstr ""
+
+#. BoGKD
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3151170\n"
+"help.text"
+msgid "HEX2OCT(Number [; Places])"
+msgstr ""
+
+#. 9wBCe
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3152795\n"
+"help.text"
+msgid "<emph>Number</emph> is 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 ""
+
+#. EsZAJ
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3149204\n"
+"help.text"
+msgid "<emph>Places</emph> is the number of places to be output."
+msgstr ""
+
+#. nPHCR
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3159341\n"
+"help.text"
+msgid "<item type=\"input\">=HEX2OCT(\"6a\";4)</item> returns \"0152\"."
+msgstr ""
+
+#. J65Mw
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"tit\n"
+"help.text"
+msgid "Add-in Functions, List of Analysis Functions Part Two"
+msgstr ""
+
+#. iQYW6
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"bm_id3145074\n"
+"help.text"
+msgid "<bookmark_value>imaginary numbers in analysis functions</bookmark_value> <bookmark_value>complex numbers in analysis functions</bookmark_value>"
+msgstr ""
+
+#. Be5xp
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3154659\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 ""
+
+#. goyGU
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id961592361784406\n"
+"help.text"
+msgid "The Add-in functions are supplied by the <link href=\"text/sbasic/shared/calc_functions.xhp\" name=\"addinanalysis\">UNO <literal>com.sun.star.sheet.addin.Analysis</literal> service</link>."
+msgstr ""
+
+#. DBHCw
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"bm_id3154959\n"
+"help.text"
+msgid "<bookmark_value>IMABS function</bookmark_value>"
+msgstr ""
+
+#. NMudK
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3154959\n"
+"help.text"
+msgid "IMABS"
+msgstr ""
+
+#. RCC7t
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3149895\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMABS\">The result is the absolute value of a complex number.</ahelp>"
+msgstr ""
+
+#. 7DFCE
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3151302\n"
+"help.text"
+msgid "IMABS(\"ComplexNumber\")"
+msgstr ""
+
+#. G3zLE
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3153974\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 ""
+
+#. XCGpA
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3143222\n"
+"help.text"
+msgid "<item type=\"input\">=IMABS(\"5+12j\")</item> returns 13."
+msgstr ""
+
+#. q3tXj
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"bm_id3145357\n"
+"help.text"
+msgid "<bookmark_value>IMAGINARY function</bookmark_value>"
+msgstr ""
+
+#. Sx5EK
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3145357\n"
+"help.text"
+msgid "IMAGINARY"
+msgstr ""
+
+#. W5nRA
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3146965\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMAGINARY\">The result is the imaginary coefficient of a complex number.</ahelp>"
+msgstr ""
+
+#. GKfQV
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3155522\n"
+"help.text"
+msgid "IMAGINARY(\"ComplexNumber\")"
+msgstr ""
+
+#. EdYRD
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3155592\n"
+"help.text"
+msgid "<item type=\"input\">=IMAGINARY(\"4+3j\")</item> returns 3."
+msgstr ""
+
+#. wXqqq
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"bm_id3146106\n"
+"help.text"
+msgid "<bookmark_value>IMPOWER function</bookmark_value>"
+msgstr ""
+
+#. NcahA
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3146106\n"
+"help.text"
+msgid "IMPOWER"
+msgstr ""
+
+#. AmCBb
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3147245\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 ""
+
+#. D7dUn
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3147501\n"
+"help.text"
+msgid "IMPOWER(\"ComplexNumber\"; Number)"
+msgstr ""
+
+#. Vux8Q
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3155743\n"
+"help.text"
+msgid "<emph>Number</emph> is the exponent."
+msgstr ""
+
+#. YAHXD
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3151393\n"
+"help.text"
+msgid "<item type=\"input\">=IMPOWER(\"2+3i\";2)</item> returns -5+12i."
+msgstr ""
+
+#. WEhu8
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"bm_id3148748\n"
+"help.text"
+msgid "<bookmark_value>IMARGUMENT function</bookmark_value>"
+msgstr ""
+
+#. Y9XrB
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3148748\n"
+"help.text"
+msgid "IMARGUMENT"
+msgstr ""
+
+#. ZLe62
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3151341\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMARGUMENT\">The result is the argument (the phi angle) of a complex number.</ahelp>"
+msgstr ""
+
+#. j8fUx
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3156402\n"
+"help.text"
+msgid "IMARGUMENT(\"ComplexNumber\")"
+msgstr ""
+
+#. ADktn
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3159125\n"
+"help.text"
+msgid "<item type=\"input\">=IMARGUMENT(\"3+4j\")</item> returns 0.927295."
+msgstr ""
+
+#. TVX4f
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id69271214320055\n"
+"help.text"
+msgid "<embedvar href=\"text/scalc/01/func_imcos.xhp#imcos_head\"/>"
+msgstr ""
+
+#. 4HGsN
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id217971417131058\n"
+"help.text"
+msgid "<embedvar href=\"text/scalc/01/func_imcosh.xhp#imcosh_head\"/>"
+msgstr ""
+
+#. H4rBq
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id7625634121212\n"
+"help.text"
+msgid "<embedvar href=\"text/scalc/01/func_imcot.xhp#imcot_head\"/>"
+msgstr ""
+
+#. Fev3E
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id2907192866882\n"
+"help.text"
+msgid "<embedvar href=\"text/scalc/01/func_imcsc.xhp#imcsc_head\"/>"
+msgstr ""
+
+#. U7uHv
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id2111268313694\n"
+"help.text"
+msgid "<embedvar href=\"text/scalc/01/func_imcsch.xhp#imcsch_head\"/>"
+msgstr ""
+
+#. y5rLV
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"bm_id3150024\n"
+"help.text"
+msgid "<bookmark_value>IMDIV function</bookmark_value>"
+msgstr ""
+
+#. ZPsCf
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3150024\n"
+"help.text"
+msgid "IMDIV"
+msgstr ""
+
+#. MsZRA
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3145825\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMDIV\">The result is the division of two complex numbers.</ahelp>"
+msgstr ""
+
+#. eSq58
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3146942\n"
+"help.text"
+msgid "IMDIV(\"Numerator\"; \"Denominator\")"
+msgstr ""
+
+#. fNy9h
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3150741\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 ""
+
+#. EVZ4f
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3148440\n"
+"help.text"
+msgid "<item type=\"input\">=IMDIV(\"-238+240i\";\"10+24i\")</item> returns 5+12i."
+msgstr ""
+
+#. kdcUm
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"bm_id3153039\n"
+"help.text"
+msgid "<bookmark_value>IMEXP function</bookmark_value>"
+msgstr ""
+
+#. ChEMy
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3153039\n"
+"help.text"
+msgid "IMEXP"
+msgstr ""
+
+#. MCPAH
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3144741\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 ""
+
+#. L4huw
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3154810\n"
+"help.text"
+msgid "IMEXP(\"ComplexNumber\")"
+msgstr ""
+
+#. AFJGa
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3149253\n"
+"help.text"
+msgid "<item type=\"input\">=IMEXP(\"1+j\") </item>returns 1.47+2.29j (rounded)."
+msgstr ""
+
+#. MBDq8
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"bm_id3149955\n"
+"help.text"
+msgid "<bookmark_value>IMCONJUGATE function</bookmark_value>"
+msgstr ""
+
+#. CERuG
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3149955\n"
+"help.text"
+msgid "IMCONJUGATE"
+msgstr ""
+
+#. 2DEBC
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3155263\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMCONJUGATE\">The result is the conjugated complex complement to a complex number.</ahelp>"
+msgstr ""
+
+#. ohb4S
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3153082\n"
+"help.text"
+msgid "IMCONJUGATE(\"ComplexNumber\")"
+msgstr ""
+
+#. bLYrM
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3149688\n"
+"help.text"
+msgid "<item type=\"input\">=IMCONJUGATE(\"1+j\")</item> returns 1-j."
+msgstr ""
+
+#. C4AbN
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"bm_id3150898\n"
+"help.text"
+msgid "<bookmark_value>IMLN function</bookmark_value>"
+msgstr ""
+
+#. 9CHKB
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3150898\n"
+"help.text"
+msgid "IMLN"
+msgstr ""
+
+#. PXrQj
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3146853\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 ""
+
+#. 2wQpH
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3155954\n"
+"help.text"
+msgid "IMLN(\"ComplexNumber\")"
+msgstr ""
+
+#. k5Z33
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3153736\n"
+"help.text"
+msgid "<item type=\"input\">=IMLN(\"1+j\")</item> returns 0.35+0.79j (rounded)."
+msgstr ""
+
+#. auAWE
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"bm_id3155929\n"
+"help.text"
+msgid "<bookmark_value>IMLOG10 function</bookmark_value>"
+msgstr ""
+
+#. fzCJ7
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3155929\n"
+"help.text"
+msgid "IMLOG10"
+msgstr ""
+
+#. pEQi8
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3149882\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 ""
+
+#. 4GuX3
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3150128\n"
+"help.text"
+msgid "IMLOG10(\"ComplexNumber\")"
+msgstr ""
+
+#. U3K7d
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3151021\n"
+"help.text"
+msgid "<item type=\"input\">=IMLOG10(\"1+j\")</item> returns 0.15+0.34j (rounded)."
+msgstr ""
+
+#. 7DqRB
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"bm_id3155623\n"
+"help.text"
+msgid "<bookmark_value>IMLOG2 function</bookmark_value>"
+msgstr ""
+
+#. 8gn7z
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3155623\n"
+"help.text"
+msgid "IMLOG2"
+msgstr ""
+
+#. 4CquR
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3150932\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMLOG2\">The result is the binary logarithm of a complex number.</ahelp>"
+msgstr ""
+
+#. GJRCv
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3145355\n"
+"help.text"
+msgid "IMLOG2(\"ComplexNumber\")"
+msgstr ""
+
+#. dtZFB
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3149536\n"
+"help.text"
+msgid "<item type=\"input\">=IMLOG2(\"1+j\")</item> returns 0.50+1.13j (rounded)."
+msgstr ""
+
+#. ctbBh
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"bm_id3145626\n"
+"help.text"
+msgid "<bookmark_value>IMPRODUCT function</bookmark_value>"
+msgstr ""
+
+#. E6Dt2
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3145626\n"
+"help.text"
+msgid "IMPRODUCT"
+msgstr ""
+
+#. DSBR5
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3153545\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMPRODUCT\">The result is the product of a set of complex numbers.</ahelp>"
+msgstr ""
+
+#. RDe9u
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3149027\n"
+"help.text"
+msgid "IMPRODUCT(<embedvar href=\"text/scalc/01/ful_func.xhp#complex255_1\" markup=\"keep\"/>)"
+msgstr ""
+
+#. x58Ur
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3155815\n"
+"help.text"
+msgid "<item type=\"input\">=IMPRODUCT(\"3+4j\";\"5-3j\")</item> returns 27+11j."
+msgstr ""
+
+#. CTE7T
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"bm_id3147539\n"
+"help.text"
+msgid "<bookmark_value>IMREAL function</bookmark_value>"
+msgstr ""
+
+#. S9ZQz
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3147539\n"
+"help.text"
+msgid "IMREAL"
+msgstr ""
+
+#. BFPvt
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3155372\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMREAL\">The result is the real coefficient of a complex number.</ahelp>"
+msgstr ""
+
+#. X6AqJ
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3153927\n"
+"help.text"
+msgid "IMREAL(\"ComplexNumber\")"
+msgstr ""
+
+#. iDzRN
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3155986\n"
+"help.text"
+msgid "<item type=\"input\">=IMREAL(\"1+3j\")</item> returns 1."
+msgstr ""
+
+#. 7L6GP
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id882954222038\n"
+"help.text"
+msgid "<embedvar href=\"text/scalc/01/func_imsec.xhp#imsec_head\"/>"
+msgstr ""
+
+#. WpR5E
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id25480538323169\n"
+"help.text"
+msgid "<embedvar href=\"text/scalc/01/func_imsech.xhp#imsech_head\"/>"
+msgstr ""
+
+#. sWL67
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id14741462320337\n"
+"help.text"
+msgid "<embedvar href=\"text/scalc/01/func_imsin.xhp#imsin_head\"/>"
+msgstr ""
+
+#. bXgFc
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id12978120123414\n"
+"help.text"
+msgid "<embedvar href=\"text/scalc/01/func_imsinh.xhp#imsinh_head\"/>"
+msgstr ""
+
+#. ZRj2s
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id186491693515289\n"
+"help.text"
+msgid "<embedvar href=\"text/scalc/01/func_imtan.xhp#imtan_head\"/>"
+msgstr ""
+
+#. rAXpY
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"bm_id3163826\n"
+"help.text"
+msgid "<bookmark_value>IMSUB function</bookmark_value>"
+msgstr ""
+
+#. WBEgC
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3163826\n"
+"help.text"
+msgid "IMSUB"
+msgstr ""
+
+#. souPU
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3149277\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMSUB\">The result is the subtraction of two complex numbers.</ahelp>"
+msgstr ""
+
+#. ECZ36
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3149710\n"
+"help.text"
+msgid "IMSUB(\"ComplexNumber1\"; \"ComplexNumber2\")"
+msgstr ""
+
+#. dQQka
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3150963\n"
+"help.text"
+msgid "<item type=\"input\">=IMSUB(\"13+4j\";\"5+3j\")</item> returns 8+j."
+msgstr ""
+
+#. TuBoB
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"bm_id3156312\n"
+"help.text"
+msgid "<bookmark_value>IMSUM function</bookmark_value>"
+msgstr ""
+
+#. 9otEu
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3156312\n"
+"help.text"
+msgid "IMSUM"
+msgstr ""
+
+#. sD27s
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3153215\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMSUM\">The result is the sum of a set of complex numbers.</ahelp>"
+msgstr ""
+
+#. dY4UY
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3152930\n"
+"help.text"
+msgid "IMSUM(<embedvar href=\"text/scalc/01/ful_func.xhp#complex255_1\" markup=\"keep\"/>)"
+msgstr ""
+
+#. CNtPR
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3147081\n"
+"help.text"
+msgid "<item type=\"input\">=IMSUM(\"13+4j\";\"5+3j\")</item> returns 18+7j."
+msgstr ""
+
+#. oxFAB
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"bm_id3147570\n"
+"help.text"
+msgid "<bookmark_value>IMSQRT function</bookmark_value>"
+msgstr ""
+
+#. qCvab
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3147570\n"
+"help.text"
+msgid "IMSQRT"
+msgstr ""
+
+#. XeDap
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3156131\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMSQRT\">The result is the square root of a complex number.</ahelp>"
+msgstr ""
+
+#. A8FDB
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3150760\n"
+"help.text"
+msgid "IMSQRT(\"ComplexNumber\")"
+msgstr ""
+
+#. oShc6
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3152807\n"
+"help.text"
+msgid "<item type=\"input\">=IMSQRT(\"3+4i\")</item> returns 2+1i."
+msgstr ""
+
+#. CSaHU
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"bm_id3154054\n"
+"help.text"
+msgid "<bookmark_value>COMPLEX function</bookmark_value>"
+msgstr ""
+
+#. GXCqc
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3154054\n"
+"help.text"
+msgid "COMPLEX"
+msgstr ""
+
+#. GLk2Q
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3156111\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 ""
+
+#. c2huU
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3155999\n"
+"help.text"
+msgid "COMPLEX(RealNum; INum [; Suffix])"
+msgstr ""
+
+#. FCxXC
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3153626\n"
+"help.text"
+msgid "<emph>RealNum</emph> is the real coefficient of the complex number."
+msgstr ""
+
+#. cYq6E
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3149135\n"
+"help.text"
+msgid "<emph>INum</emph> is the imaginary coefficient of the complex number."
+msgstr ""
+
+#. mGTGC
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3155849\n"
+"help.text"
+msgid "<emph>Suffix</emph> is a list of options, \"i\" or \"j\"."
+msgstr ""
+
+#. Wz4zw
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3143229\n"
+"help.text"
+msgid "<item type=\"input\">=COMPLEX(3;4;\"j\")</item> returns 3+4j."
+msgstr ""
+
+#. gkMhR
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"bm_id3155103\n"
+"help.text"
+msgid "<bookmark_value>OCT2BIN function</bookmark_value> <bookmark_value>converting;octal numbers, into binary numbers</bookmark_value>"
+msgstr ""
+
+#. qKhqK
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3155103\n"
+"help.text"
+msgid "OCT2BIN"
+msgstr ""
+
+#. auUtf
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3146898\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_OCT2BIN\">The result is the string representing the number in binary (base-2) form for the octal number string entered.</ahelp>"
+msgstr ""
+
+#. BTUGA
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3154303\n"
+"help.text"
+msgid "OCT2BIN(Number [; Places])"
+msgstr ""
+
+#. zBe2h
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3156013\n"
+"help.text"
+msgid "<emph>Number</emph> is a string that represents an octal 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 ""
+
+#. is4pd
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3153984\n"
+"help.text"
+msgid "<emph>Places</emph> is the number of places to be output."
+msgstr ""
+
+#. Yuz4F
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3147260\n"
+"help.text"
+msgid "<item type=\"input\">=OCT2BIN(\"3\";3)</item> returns \"011\"."
+msgstr ""
+
+#. EGVvV
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"bm_id3152791\n"
+"help.text"
+msgid "<bookmark_value>OCT2DEC function</bookmark_value> <bookmark_value>converting;octal numbers, into decimal numbers</bookmark_value>"
+msgstr ""
+
+#. G7YgZ
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3152791\n"
+"help.text"
+msgid "OCT2DEC"
+msgstr ""
+
+#. gU9DP
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3149199\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_OCT2DEZ\">The result is the number for the octal number string entered.</ahelp>"
+msgstr ""
+
+#. UTGiF
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3153902\n"
+"help.text"
+msgid "OCT2DEC(Number)"
+msgstr ""
+
+#. FqgE4
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3155326\n"
+"help.text"
+msgid "<emph>Number</emph> is a string that represents an octal 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 ""
+
+#. 7k2Cf
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3154930\n"
+"help.text"
+msgid "<item type=\"input\">=OCT2DEC(\"144\")</item> returns 100."
+msgstr ""
+
+#. BhDCE
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"bm_id3155391\n"
+"help.text"
+msgid "<bookmark_value>OCT2HEX function</bookmark_value> <bookmark_value>converting;octal numbers, into hexadecimal numbers</bookmark_value>"
+msgstr ""
+
+#. 75EtY
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3155391\n"
+"help.text"
+msgid "OCT2HEX"
+msgstr ""
+
+#. xbBzR
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3148831\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_OCT2HEX\">The result is the string representing the number in hexadecimal form for the octal number string entered.</ahelp>"
+msgstr ""
+
+#. dvEBj
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3150523\n"
+"help.text"
+msgid "OCT2HEX(Number [; Places])"
+msgstr ""
+
+#. ZKpN6
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3159162\n"
+"help.text"
+msgid "<emph>Number</emph> is a string that represents an octal 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 ""
+
+#. fDsip
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3145420\n"
+"help.text"
+msgid "<emph>Places</emph> is the number of places to be output."
+msgstr ""
+
+#. teETk
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3148802\n"
+"help.text"
+msgid "<item type=\"input\">=OCT2HEX(\"144\";4)</item> returns \"0064\"."
+msgstr ""
+
+#. G7UNe
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"bm_id3147096\n"
+"help.text"
+msgid "<bookmark_value>FACTDOUBLE function</bookmark_value> <bookmark_value>factorials;numbers with increments of two</bookmark_value>"
+msgstr ""
+
+#. RDAHc
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3147096\n"
+"help.text"
+msgid "FACTDOUBLE"
+msgstr ""
+
+#. j53U2
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3151309\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_FACTDOUBLE\">Returns the double factorial of a number.</ahelp>"
+msgstr ""
+
+#. BL6DD
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3155121\n"
+"help.text"
+msgid "FACTDOUBLE(Number)"
+msgstr ""
+
+#. xDdCW
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3158440\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 ""
+
+#. ny5zy
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id2480849\n"
+"help.text"
+msgid "For even numbers FACTDOUBLE(n) returns:"
+msgstr ""
+
+#. RBRAf
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id4181951\n"
+"help.text"
+msgid "2*4*6*8* ... *n"
+msgstr ""
+
+#. i3UiX
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id2927335\n"
+"help.text"
+msgid "For odd numbers FACTDOUBLE(n) returns:"
+msgstr ""
+
+#. kmuXq
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id2107303\n"
+"help.text"
+msgid "1*3*5*7* ... *n"
+msgstr ""
+
+#. FVTwT
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id4071779\n"
+"help.text"
+msgid "FACTDOUBLE(0) returns 1 by definition."
+msgstr ""
+
+#. nJjce
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id7844477\n"
+"help.text"
+msgid "<item type=\"input\">=FACTDOUBLE(5)</item> returns 15."
+msgstr ""
+
+#. m6Ewe
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3154116\n"
+"help.text"
+msgid "<item type=\"input\">=FACTDOUBLE(6)</item> returns 48."
+msgstr ""
+
+#. vw2pX
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id6478469\n"
+"help.text"
+msgid "<item type=\"input\">=FACTDOUBLE(0)</item> returns 1."
+msgstr ""
+
+#. MNSxC
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"tit\n"
+"help.text"
+msgid "Financial Functions Part Three"
+msgstr ""
+
+#. 7EfPK
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3146780\n"
+"help.text"
+msgid "Financial Functions Part Three"
+msgstr ""
+
+#. eCDaf
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"bm_id3145112\n"
+"help.text"
+msgid "<bookmark_value>ODDFPRICE function</bookmark_value> <bookmark_value>prices;securities with irregular first interest date</bookmark_value>"
+msgstr ""
+
+#. e2bgB
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3145112\n"
+"help.text"
+msgid "ODDFPRICE"
+msgstr ""
+
+#. J4d4t
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3147250\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_ODDFPRICE\">Calculates the price per 100 currency units par value of a security, if the first interest date falls irregularly.</ahelp>"
+msgstr ""
+
+#. BvVwj
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3146098\n"
+"help.text"
+msgid "ODDFPRICE(Settlement; Maturity; Issue; FirstCoupon; Rate; Yield; Redemption; Frequency [; Basis])"
+msgstr ""
+
+#. kHZM8
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3153337\n"
+"help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr ""
+
+#. Q9B7E
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149051\n"
+"help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr ""
+
+#. 7ams2
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3147297\n"
+"help.text"
+msgid "<emph>Issue</emph> is the date of issue of the security."
+msgstr ""
+
+#. m3Hy5
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3150393\n"
+"help.text"
+msgid "<emph>FirstCoupon</emph> is the first interest date of the security."
+msgstr ""
+
+#. 5rwAJ
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3147402\n"
+"help.text"
+msgid "<emph>Rate</emph> is the annual rate of interest."
+msgstr ""
+
+#. ip6ca
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3151387\n"
+"help.text"
+msgid "<emph>Yield</emph> is the annual yield of the security."
+msgstr ""
+
+#. J2FBE
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3153023\n"
+"help.text"
+msgid "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
+msgstr ""
+
+#. BDj64
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3150539\n"
+"help.text"
+msgid "<emph>Frequency</emph> is number of interest payments per year (1, 2 or 4)."
+msgstr ""
+
+#. 7hgnE
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"bm_id3157871\n"
+"help.text"
+msgid "<bookmark_value>ODDFYIELD function</bookmark_value>"
+msgstr ""
+
+#. hKkg2
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3157871\n"
+"help.text"
+msgid "ODDFYIELD"
+msgstr ""
+
+#. YuoYB
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3147414\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_ODDFYIELD\">Calculates the yield of a security if the first interest date falls irregularly.</ahelp>"
+msgstr ""
+
+#. nGSvB
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3152982\n"
+"help.text"
+msgid "ODDFYIELD(Settlement; Maturity; Issue; FirstCoupon; Rate; Price; Redemption; Frequency [; Basis])"
+msgstr ""
+
+#. nJXTW
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3157906\n"
+"help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr ""
+
+#. FTiF4
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3150026\n"
+"help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr ""
+
+#. bUjEH
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149012\n"
+"help.text"
+msgid "<emph>Issue</emph> is the date of issue of the security."
+msgstr ""
+
+#. cUfh5
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3148725\n"
+"help.text"
+msgid "<emph>FirstCoupon</emph> is the first interest period of the security."
+msgstr ""
+
+#. A4B9B
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3150465\n"
+"help.text"
+msgid "<emph>Rate</emph> is the annual rate of interest."
+msgstr ""
+
+#. omnWA
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3146940\n"
+"help.text"
+msgid "<emph>Price</emph> is the price of the security."
+msgstr ""
+
+#. Ue2Q4
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149893\n"
+"help.text"
+msgid "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
+msgstr ""
+
+#. jDLHR
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3148888\n"
+"help.text"
+msgid "<emph>Frequency</emph> is number of interest payments per year (1, 2 or 4)."
+msgstr ""
+
+#. WBLRb
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"bm_id3153933\n"
+"help.text"
+msgid "<bookmark_value>ODDLPRICE function</bookmark_value>"
+msgstr ""
+
+#. CFqHX
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3153933\n"
+"help.text"
+msgid "ODDLPRICE"
+msgstr ""
+
+#. PCR6H
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3145145\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_ODDLPRICE\">Calculates the price per 100 currency units par value of a security, if the last interest date falls irregularly.</ahelp>"
+msgstr ""
+
+#. ozTCG
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3155262\n"
+"help.text"
+msgid "ODDLPRICE(Settlement; Maturity; LastInterest; Rate; Yield; Redemption; Frequency [; Basis])"
+msgstr ""
+
+#. iTfu4
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149689\n"
+"help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr ""
+
+#. 2GQhA
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3148753\n"
+"help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr ""
+
+#. WYtoY
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3150861\n"
+"help.text"
+msgid "<emph>LastInterest</emph> is the last interest date of the security."
+msgstr ""
+
+#. jErjP
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3155831\n"
+"help.text"
+msgid "<emph>Rate</emph> is the annual rate of interest."
+msgstr ""
+
+#. RwCqm
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3153328\n"
+"help.text"
+msgid "<emph>Yield</emph> is the annual yield of the security."
+msgstr ""
+
+#. MYEsM
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149186\n"
+"help.text"
+msgid "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
+msgstr ""
+
+#. A2eCP
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149726\n"
+"help.text"
+msgid "<emph>Frequency</emph> is number of interest payments per year (1, 2 or 4)."
+msgstr ""
+
+#. zebpV
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3152999\n"
+"help.text"
+msgid "Settlement date: February 7 1999, maturity date: June 15 1999, last interest: October 15 1998. Interest rate: 3.75 per cent, yield: 4.05 per cent, redemption value: 100 currency units, frequency of payments: half-yearly = 2, basis: = 0"
+msgstr ""
+
+#. anhTe
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3148567\n"
+"help.text"
+msgid "The price per 100 currency units per value of a security, which has an irregular last interest date, is calculated as follows:"
+msgstr ""
+
+#. QD6Zv
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3150332\n"
+"help.text"
+msgid "=ODDLPRICE(\"1999-02-07\";\"1999-06-15\";\"1998-10-15\"; 0.0375; 0.0405;100;2;0) returns 99.87829."
+msgstr ""
+
+#. aAzcV
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"bm_id3153564\n"
+"help.text"
+msgid "<bookmark_value>ODDLYIELD function</bookmark_value>"
+msgstr ""
+
+#. tEEFZ
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3153564\n"
+"help.text"
+msgid "ODDLYIELD"
+msgstr ""
+
+#. wujVp
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3158002\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_ODDLYIELD\">Calculates the yield of a security if the last interest date falls irregularly.</ahelp>"
+msgstr ""
+
+#. pwm9F
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3150018\n"
+"help.text"
+msgid "ODDLYIELD(Settlement; Maturity; LastInterest; Rate; Price; Redemption; Frequency [; Basis])"
+msgstr ""
+
+#. 4X7wa
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3159132\n"
+"help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr ""
+
+#. BGuAX
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3150134\n"
+"help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr ""
+
+#. TFbaf
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3145245\n"
+"help.text"
+msgid "<emph>LastInterest</emph> is the last interest date of the security."
+msgstr ""
+
+#. HEVvA
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3151014\n"
+"help.text"
+msgid "<emph>Rate</emph> is the annual rate of interest."
+msgstr ""
+
+#. 3chiS
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149003\n"
+"help.text"
+msgid "<emph>Price</emph> is the price of the security."
+msgstr ""
+
+#. EZuav
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3148880\n"
+"help.text"
+msgid "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
+msgstr ""
+
+#. YpBEE
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3155622\n"
+"help.text"
+msgid "<emph>Frequency</emph> is number of interest payments per year (1, 2 or 4)."
+msgstr ""
+
+#. LkjYW
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3145350\n"
+"help.text"
+msgid "Settlement date: April 20 1999, maturity date: June 15 1999, last interest: October 15 1998. Interest rate: 3.75 per cent, price: 99.875 currency units, redemption value: 100 currency units, frequency of payments: half-yearly = 2, basis: = 0"
+msgstr ""
+
+#. UZV4Z
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3157990\n"
+"help.text"
+msgid "The yield of the security, that has an irregular last interest date, is calculated as follows:"
+msgstr ""
+
+#. 5BDiF
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3150572\n"
+"help.text"
+msgid "=ODDLYIELD(\"1999-04-20\";\"1999-06-15\"; \"1998-10-15\"; 0.0375; 99.875; 100;2;0) returns 0.044873 or 4.4873%."
+msgstr ""
+
+#. 3kY6W
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"bm_id3148768\n"
+"help.text"
+msgid "<bookmark_value>calculating;variable declining depreciations</bookmark_value> <bookmark_value>depreciations;variable declining</bookmark_value> <bookmark_value>VDB function</bookmark_value>"
+msgstr ""
+
+#. PdSCG
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3148768\n"
+"help.text"
+msgid "VDB"
+msgstr ""
+
+#. pjG8a
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3154636\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_VDB\">Returns the depreciation of an asset for a specified or partial period using a variable declining balance method.</ahelp>"
+msgstr ""
+
+#. pUVVr
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149025\n"
+"help.text"
+msgid "VDB(Cost; Salvage; Life; Start; End [; Factor [; NoSwitch]])"
+msgstr ""
+
+#. zGhDb
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3150692\n"
+"help.text"
+msgid "<emph>Cost</emph> is the initial value of an asset."
+msgstr ""
+
+#. aCwbE
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3155369\n"
+"help.text"
+msgid "<emph>Salvage</emph> is the value of an asset at the end of the depreciation."
+msgstr ""
+
+#. bVSSL
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3154954\n"
+"help.text"
+msgid "<emph>Life</emph> is the depreciation duration of the asset."
+msgstr ""
+
+#. wA4Tu
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3152817\n"
+"help.text"
+msgid "<emph>S</emph> is the start of the depreciation. A must be entered in the same date unit as the duration."
+msgstr ""
+
+#. DMz6v
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3153221\n"
+"help.text"
+msgid "<emph>End</emph> is the end of the depreciation."
+msgstr ""
+
+#. rDDFo
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3147536\n"
+"help.text"
+msgid "<emph>Factor</emph> (optional) is the depreciation factor. Factor = 2 is double rate depreciation."
+msgstr ""
+
+#. JaZEz
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3154865\n"
+"help.text"
+msgid "<emph>NoSwitch</emph>is an optional parameter. NoSwitch = 0 (default) means a switch to linear depreciation. In NoSwitch = 1 no switch is made."
+msgstr ""
+
+#. bJGVM
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3153927\n"
+"help.text"
+msgid "What is the declining-balance double-rate depreciation for a period if the initial cost is 35,000 currency units and the value at the end of the depreciation is 7,500 currency units. The depreciation period is 3 years. The depreciation from the 10th to the 20th period is calculated."
+msgstr ""
+
+#. nBVzp
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3155991\n"
+"help.text"
+msgid "<item type=\"input\">=VDB(35000;7500;36;10;20;2)</item> = 8603.80 currency units. The depreciation during the period between the 10th and the 20th period is 8,603.80 currency units."
+msgstr ""
+
+#. UWWCY
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"bm_id3147485\n"
+"help.text"
+msgid "<bookmark_value>calculating;internal rates of return, irregular payments</bookmark_value> <bookmark_value>internal rates of return;irregular payments</bookmark_value> <bookmark_value>XIRR function</bookmark_value>"
+msgstr ""
+
+#. CVXiW
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3147485\n"
+"help.text"
+msgid "XIRR"
+msgstr ""
+
+#. CNaaF
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3145614\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_XIRR\">Calculates the internal rate of return for a list of payments which take place on different dates.</ahelp> The calculation is based on a 365 days per year basis, ignoring leap years."
+msgstr ""
+
+#. ezGx6
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_idN10E62\n"
+"help.text"
+msgid "If the payments take place at regular intervals, use the <link href=\"text/scalc/01/04060103.xhp#irr\" name=\"IRR\">IRR</link> function."
+msgstr ""
+
+#. CVXB7
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149826\n"
+"help.text"
+msgid "XIRR(Values; Dates [; Guess])"
+msgstr ""
+
+#. GoDCv
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3163821\n"
+"help.text"
+msgid "<emph>Values</emph> and <emph>Dates</emph> refer to a series of payments and the series of associated date values. The first pair of dates defines the start of the payment plan. All other date values must be later, but need not be in any order. The series of values must contain at least one negative and one positive value (receipts and deposits)."
+msgstr ""
+
+#. bBDGv
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149708\n"
+"help.text"
+msgid "<emph>Guess</emph> (optional) is a guess that can be input for the internal rate of return. The default is 10%."
+msgstr ""
+
+#. dZESY
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149273\n"
+"help.text"
+msgid "Calculation of the internal rate of return for the following five payments (dates are in ISO 8601 format):"
+msgstr ""
+
+#. 6JTLA
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3146856\n"
+"help.text"
+msgid "Received"
+msgstr ""
+
+#. N2RNr
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149985\n"
+"help.text"
+msgid "Deposited"
+msgstr ""
+
+#. FLNWb
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3152793\n"
+"help.text"
+msgid "<input>=XIRR(B1:B5; A1:A5; 0.1)</input> returns 0.1828 or 18.28%."
+msgstr ""
+
+#. HRiCT
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"bm_id3149198\n"
+"help.text"
+msgid "<bookmark_value>XNPV function</bookmark_value>"
+msgstr ""
+
+#. Shjhk
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3149198\n"
+"help.text"
+msgid "XNPV"
+msgstr ""
+
+#. WAkTq
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3153904\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_XNPV\">Calculates the capital value (net present value) for a list of payments which take place on different dates.</ahelp> The calculation is based on a 365 days per year basis, ignoring leap years."
+msgstr ""
+
+#. cvXHz
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_idN11138\n"
+"help.text"
+msgid "If the payments take place at regular intervals, use the <link href=\"text/scalc/01/04060119.xhp#npv\" name=\"NPV\">NPV</link> function."
+msgstr ""
+
+#. D5fSB
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3150117\n"
+"help.text"
+msgid "XNPV(Rate; Values; Dates)"
+msgstr ""
+
+#. gAnyf
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3153100\n"
+"help.text"
+msgid "<emph>Rate</emph> is the internal rate of return for the payments."
+msgstr ""
+
+#. Xktpx
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3155395\n"
+"help.text"
+msgid "<emph>Values</emph> and <emph>Dates</emph> refer to a series of payments and the series of associated date values. The first pair of dates defines the start of the payment plan. All other date values must be later, but need not be in any order. The series of values must contain at least one negative and one positive value (receipts and deposits)"
+msgstr ""
+
+#. ZQrZE
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3150525\n"
+"help.text"
+msgid "Calculation of the net present value for the above-mentioned five payments for a national internal rate of return of 6%."
+msgstr ""
+
+#. YFtiD
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149910\n"
+"help.text"
+msgid "<item type=\"input\">=XNPV(0.06;B1:B5;A1:A5)</item> returns 323.02."
+msgstr ""
+
+#. Lm58R
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"bm_id3148822\n"
+"help.text"
+msgid "<bookmark_value>calculating;rates of return</bookmark_value> <bookmark_value>RRI function</bookmark_value>"
+msgstr ""
+
+#. HSfk8
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3148822\n"
+"help.text"
+msgid "RRI"
+msgstr ""
+
+#. khEAw
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3154293\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_ZGZ\">Calculates the interest rate resulting from the profit (return) of an investment.</ahelp>"
+msgstr ""
+
+#. AkVLJ
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3148804\n"
+"help.text"
+msgid "RRI(P; PV; FV)"
+msgstr ""
+
+#. dZD5L
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3154901\n"
+"help.text"
+msgid "<emph>P</emph> is the number of periods needed for calculating the interest rate."
+msgstr ""
+
+#. bGvT3
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3159149\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 ""
+
+#. 66Ant
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149771\n"
+"help.text"
+msgid "<emph>FV</emph> determines what is desired as the cash value of the deposit."
+msgstr ""
+
+#. M9iaw
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3154212\n"
+"help.text"
+msgid "For four periods (years) and a cash value of 7,500 currency units, the interest rate of the return is to be calculated if the future value is 10,000 currency units."
+msgstr ""
+
+#. 4QyXH
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3150775\n"
+"help.text"
+msgid "<item type=\"input\">=RRI(4;7500;10000)</item> = 7.46 %"
+msgstr ""
+
+#. eXtBE
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3145413\n"
+"help.text"
+msgid "The interest rate must be 7.46 % so that 7,500 currency units will become 10,000 currency units."
+msgstr ""
+
+#. CgMsY
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"bm_id3154267\n"
+"help.text"
+msgid "<bookmark_value>calculating;constant interest rates</bookmark_value> <bookmark_value>constant interest rates</bookmark_value> <bookmark_value>RATE function</bookmark_value>"
+msgstr ""
+
+#. oABKU
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3154267\n"
+"help.text"
+msgid "RATE"
+msgstr ""
+
+#. BxnGh
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3151052\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_ZINS\">Returns the constant interest rate per period of an annuity.</ahelp>"
+msgstr ""
+
+#. wEYqD
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3158423\n"
+"help.text"
+msgid "RATE(NPer; Pmt; PV [ ; [ FV ] [ ; [ Type ] [ ; Guess ] ] ])"
+msgstr ""
+
+#. kkBfr
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3148910\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods, during which payments are made (payment period)."
+msgstr ""
+
+#. whqfg
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3148925\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the constant payment (annuity) paid during each period."
+msgstr ""
+
+#. GgMpv
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149160\n"
+"help.text"
+msgid "<emph>PV</emph> is the cash value in the sequence of payments."
+msgstr ""
+
+#. DjAcx
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3166456\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the future value, which is reached at the end of the periodic payments."
+msgstr ""
+
+#. uCeUZ
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3153243\n"
+"help.text"
+msgid "<emph>Type</emph> (optional) is the due date of the periodic payment, either at the beginning or at the end of a period."
+msgstr ""
+
+#. JiFAA
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3146949\n"
+"help.text"
+msgid "<emph>Guess</emph> (optional) determines the estimated value of the interest with iterative calculation."
+msgstr ""
+
+#. ev5Hs
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3150706\n"
+"help.text"
+msgid "What is the constant interest rate for a payment period of 3 periods if 10 currency units are paid regularly and the present cash value is 900 currency units."
+msgstr ""
+
+#. YEknU
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3155586\n"
+"help.text"
+msgid "<item type=\"input\">=RATE(3;-10;900)</item> = -75.63% The interest rate is therefore 75.63%."
+msgstr ""
+
+#. D7RA6
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"bm_id3149106\n"
+"help.text"
+msgid "<bookmark_value>INTRATE function</bookmark_value>"
+msgstr ""
+
+#. QGJJD
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3149106\n"
+"help.text"
+msgid "INTRATE"
+msgstr ""
+
+#. ACMxZ
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149918\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_INTRATE\">Calculates the annual interest rate that results when a security (or other item) is purchased at an investment value and sold at a redemption value. No interest is paid.</ahelp>"
+msgstr ""
+
+#. kFnJn
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149800\n"
+"help.text"
+msgid "INTRATE(Settlement; Maturity; Investment; Redemption [; Basis])"
+msgstr ""
+
+#. 9szb8
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3148618\n"
+"help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr ""
+
+#. JfJLM
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3148988\n"
+"help.text"
+msgid "<emph>Maturity</emph> is the date on which the security is sold."
+msgstr ""
+
+#. GjEAa
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3154604\n"
+"help.text"
+msgid "<emph>Investment</emph> is the purchase price."
+msgstr ""
+
+#. Ecr7E
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3154337\n"
+"help.text"
+msgid "<emph>Redemption</emph> is the selling price."
+msgstr ""
+
+#. TFFEZ
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149426\n"
+"help.text"
+msgid "A painting is bought on 1990-01-15 for 1 million and sold on 2002-05-05 for 2 million. The basis is daily balance calculation (basis = 3). What is the average annual level of interest?"
+msgstr ""
+
+#. ZSZxR
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3151125\n"
+"help.text"
+msgid "=INTRATE(\"1990-01-15\"; \"2002-05-05\"; 1000000; 2000000; 3) returns 8.12%."
+msgstr ""
+
+#. 8bzpG
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"bm_id3148654\n"
+"help.text"
+msgid "<bookmark_value>COUPNCD function</bookmark_value>"
+msgstr ""
+
+#. HR5qS
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3148654\n"
+"help.text"
+msgid "COUPNCD"
+msgstr ""
+
+#. YuaDx
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149927\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_COUPNCD\">Returns the date of the first interest date after the settlement date. Format the result as a date.</ahelp>"
+msgstr ""
+
+#. 6sEfy
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3150423\n"
+"help.text"
+msgid "COUPNCD(Settlement; Maturity; Frequency [; Basis])"
+msgstr ""
+
+#. vGKDd
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3150628\n"
+"help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr ""
+
+#. iEZXx
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3153536\n"
+"help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr ""
+
+#. Lziex
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3145313\n"
+"help.text"
+msgid "<emph>Frequency</emph> is number of interest payments per year (1, 2 or 4)."
+msgstr ""
+
+#. kN5Mt
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3154794\n"
+"help.text"
+msgid "A security is purchased on 2001-01-25; the date of maturity is 2001-11-15. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) when is the next interest date?"
+msgstr ""
+
+#. DhyaU
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3159251\n"
+"help.text"
+msgid "=COUPNCD(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 2001-05-15."
+msgstr ""
+
+#. rtDCn
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"bm_id3143281\n"
+"help.text"
+msgid "<bookmark_value>COUPDAYS function</bookmark_value>"
+msgstr ""
+
+#. VJGXN
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3143281\n"
+"help.text"
+msgid "COUPDAYS"
+msgstr ""
+
+#. 4kXXP
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149488\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_COUPDAYS\">Returns the number of days in the current interest period in which the settlement date falls.</ahelp>"
+msgstr ""
+
+#. ALYbR
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149585\n"
+"help.text"
+msgid "COUPDAYS(Settlement; Maturity; Frequency [; Basis])"
+msgstr ""
+
+#. UuJui
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3152767\n"
+"help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr ""
+
+#. t9KbY
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3151250\n"
+"help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr ""
+
+#. Zizx8
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3146126\n"
+"help.text"
+msgid "<emph>Frequency</emph> is number of interest payments per year (1, 2 or 4)."
+msgstr ""
+
+#. 2FxAA
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3147530\n"
+"help.text"
+msgid "A security is purchased on 2001-01-25; the date of maturity is 2001-11-15. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) how many days are there in the interest period in which the settlement date falls?"
+msgstr ""
+
+#. L2peb
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3156338\n"
+"help.text"
+msgid "=COUPDAYS(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 181."
+msgstr ""
+
+#. 9rAEC
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"bm_id3154832\n"
+"help.text"
+msgid "<bookmark_value>COUPDAYSNC function</bookmark_value>"
+msgstr ""
+
+#. LrGCE
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3154832\n"
+"help.text"
+msgid "COUPDAYSNC"
+msgstr ""
+
+#. ktCFG
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3147100\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_COUPDAYSNC\">Returns the number of days from the settlement date until the next interest date.</ahelp>"
+msgstr ""
+
+#. 2AgvC
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3155121\n"
+"help.text"
+msgid "COUPDAYSNC(Settlement; Maturity; Frequency [; Basis])"
+msgstr ""
+
+#. ECNxY
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3158440\n"
+"help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr ""
+
+#. W2RDh
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3146075\n"
+"help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr ""
+
+#. 6wB6A
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3154620\n"
+"help.text"
+msgid "<emph>Frequency </emph>is number of interest payments per year (1, 2 or 4)."
+msgstr ""
+
+#. iaGqC
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3148671\n"
+"help.text"
+msgid "A security is purchased on 2001-01-25; the date of maturity is 2001-11-15. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) how many days are there until the next interest payment?"
+msgstr ""
+
+#. tTcFU
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3156158\n"
+"help.text"
+msgid "=COUPDAYSNC(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 110."
+msgstr ""
+
+#. ZtaKE
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"bm_id3150408\n"
+"help.text"
+msgid "<bookmark_value>COUPDAYBS function</bookmark_value> <bookmark_value>durations;first interest payment until settlement date</bookmark_value> <bookmark_value>securities;first interest payment until settlement date</bookmark_value>"
+msgstr ""
+
+#. A7YVA
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3150408\n"
+"help.text"
+msgid "COUPDAYBS"
+msgstr ""
+
+#. jVGR6
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3146795\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_COUPDAYBS\">Returns the number of days from the first day of interest payment on a security until the settlement date.</ahelp>"
+msgstr ""
+
+#. Zbdd9
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3159083\n"
+"help.text"
+msgid "COUPDAYBS(Settlement; Maturity; Frequency [; Basis])"
+msgstr ""
+
+#. CH3ja
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3146907\n"
+"help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr ""
+
+#. JmgyZ
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3159390\n"
+"help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr ""
+
+#. RVi4E
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3154414\n"
+"help.text"
+msgid "<emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
+msgstr ""
+
+#. EjJSD
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3150592\n"
+"help.text"
+msgid "A security is purchased on 2001-01-25; the date of maturity is 2001-11-15. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) how many days is this?"
+msgstr ""
+
+#. CSCK8
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3151103\n"
+"help.text"
+msgid "=COUPDAYBS(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 71."
+msgstr ""
+
+#. xuHak
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"bm_id3152957\n"
+"help.text"
+msgid "<bookmark_value>COUPPCD function</bookmark_value> <bookmark_value>dates;interest date prior to settlement date</bookmark_value>"
+msgstr ""
+
+#. DenUx
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3152957\n"
+"help.text"
+msgid "COUPPCD"
+msgstr ""
+
+#. 9DxGQ
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3153678\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_COUPPCD\">Returns the date of the interest date prior to the settlement date. Format the result as a date.</ahelp>"
+msgstr ""
+
+#. a3gA8
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3153790\n"
+"help.text"
+msgid "COUPPCD(Settlement; Maturity; Frequency [; Basis])"
+msgstr ""
+
+#. DCtJY
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3150989\n"
+"help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr ""
+
+#. EgT9v
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3154667\n"
+"help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr ""
+
+#. uiSDB
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3154569\n"
+"help.text"
+msgid "<emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
+msgstr ""
+
+#. cvPoq
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3148968\n"
+"help.text"
+msgid "A security is purchased on 2001-01-25; the date of maturity is 2001-11-15. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) what was the interest date prior to purchase?"
+msgstr ""
+
+#. ACAdL
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149992\n"
+"help.text"
+msgid "=COUPPCD(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 2000-15-11."
+msgstr ""
+
+#. nXJAK
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"bm_id3150673\n"
+"help.text"
+msgid "<bookmark_value>COUPNUM function</bookmark_value> <bookmark_value>number of coupons</bookmark_value>"
+msgstr ""
+
+#. pEnGA
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3150673\n"
+"help.text"
+msgid "COUPNUM"
+msgstr ""
+
+#. GNJt2
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3154350\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_COUPNUM\">Returns the number of coupons (interest payments) between the settlement date and the maturity date.</ahelp>"
+msgstr ""
+
+#. TbHua
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3153200\n"
+"help.text"
+msgid "COUPNUM(Settlement; Maturity; Frequency [; Basis])"
+msgstr ""
+
+#. 7oq6X
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3159406\n"
+"help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr ""
+
+#. BXynY
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3155864\n"
+"help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr ""
+
+#. QVuqp
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3154720\n"
+"help.text"
+msgid "<emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
+msgstr ""
+
+#. HrLUn
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3152460\n"
+"help.text"
+msgid "A security is purchased on 2001-01-25; the date of maturity is 2001-11-15. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) how many interest dates are there?"
+msgstr ""
+
+#. hFM7a
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3150640\n"
+"help.text"
+msgid "=COUPNUM(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 2."
+msgstr ""
+
+#. qxhyC
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"bm_id3149339\n"
+"help.text"
+msgid "<bookmark_value>IPMT function</bookmark_value> <bookmark_value>periodic amortizement rates</bookmark_value>"
+msgstr ""
+
+#. unKPX
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3149339\n"
+"help.text"
+msgid "IPMT"
+msgstr ""
+
+#. sF2CK
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3154522\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_ZINSZ\">Calculates the periodic amortizement for an investment with regular payments and a constant interest rate.</ahelp>"
+msgstr ""
+
+#. DPv99
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3151283\n"
+"help.text"
+msgid "IPMT(Rate; Period; NPer; PV [; FV [; Type]])"
+msgstr ""
+
+#. WpENP
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3147313\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#. X2APK
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3145158\n"
+"help.text"
+msgid "<emph>Period</emph> is the period, for which the compound interest is calculated. Period=NPER if compound interest for the last period is calculated."
+msgstr ""
+
+#. ywM9B
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3147577\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
+msgstr ""
+
+#. 5LejQ
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3156211\n"
+"help.text"
+msgid "<emph>PV</emph> is the present cash value in sequence of payments."
+msgstr ""
+
+#. GcCKu
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3151213\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the desired value (future value) at the end of the periods."
+msgstr ""
+
+#. EKi2F
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3154195\n"
+"help.text"
+msgid "<emph>Type</emph> is the due date for the periodic payments."
+msgstr ""
+
+#. PZLFX
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149438\n"
+"help.text"
+msgid "What is the interest rate during the fifth period (year) if the constant interest rate is 5% and the cash value is 15,000 currency units? The periodic payment is seven years."
+msgstr ""
+
+#. YsAKm
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3150496\n"
+"help.text"
+msgid "<item type=\"input\">=IPMT(5%;5;7;15000)</item> = -352.97 currency units. The compound interest during the fifth period (year) is 352.97 currency units."
+msgstr ""
+
+#. oyrFC
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"bm_id3151205\n"
+"help.text"
+msgid "<bookmark_value>calculating;future values</bookmark_value> <bookmark_value>future values;constant interest rates</bookmark_value> <bookmark_value>FV function</bookmark_value>"
+msgstr ""
+
+#. BijFE
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3151205\n"
+"help.text"
+msgid "FV"
+msgstr ""
+
+#. wiBej
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3154140\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_ZW\">Returns the future value of an investment based on periodic, constant payments and a constant interest rate (Future Value).</ahelp>"
+msgstr ""
+
+#. Gnz7u
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3145215\n"
+"help.text"
+msgid "FV(Rate; NPer; Pmt [ ; [ PV ] [ ; Type ] ])"
+msgstr ""
+
+#. Y9GP8
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3155136\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#. gh3CB
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3156029\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods (payment period)."
+msgstr ""
+
+#. HpKNK
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3151322\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#. UKiLK
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3145256\n"
+"help.text"
+msgid "<emph>PV</emph> (optional) is the (present) cash value of an investment."
+msgstr ""
+
+#. 8G8EY
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3150999\n"
+"help.text"
+msgid "<emph>Type</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#. CCFRJ
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3146813\n"
+"help.text"
+msgid "What is the value at the end of an investment if the interest rate is 4% and the payment period is two years, with a periodic payment of 750 currency units. The investment has a present value of 2,500 currency units."
+msgstr ""
+
+#. F9Qp2
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149302\n"
+"help.text"
+msgid "<item type=\"input\">=FV(4%;2;750;2500) </item>= -4234.00 currency units. The value at the end of the investment is 4234.00 currency units."
+msgstr ""
+
+#. EGYDn
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"bm_id3155912\n"
+"help.text"
+msgid "<bookmark_value>FVSCHEDULE function</bookmark_value> <bookmark_value>future values;varying interest rates</bookmark_value>"
+msgstr ""
+
+#. PCwSd
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3155912\n"
+"help.text"
+msgid "FVSCHEDULE"
+msgstr ""
+
+#. CzFkE
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3163726\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_FVSCHEDULE\">Calculates the accumulated value of the starting capital for a series of periodically varying interest rates.</ahelp>"
+msgstr ""
+
+#. QrPVq
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3148891\n"
+"help.text"
+msgid "FVSCHEDULE(Principal; Schedule)"
+msgstr ""
+
+#. MFuL8
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3148904\n"
+"help.text"
+msgid "<emph>Principal</emph> is the starting capital."
+msgstr ""
+
+#. BZAvx
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3148562\n"
+"help.text"
+msgid "<emph>Schedule</emph> is a series of interest rates, for example, as a range H3:H5 or as a (List) (see example)."
+msgstr ""
+
+#. 9FnDp
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3148638\n"
+"help.text"
+msgid "1000 currency units have been invested in for three years. The interest rates were 3%, 4% and 5% per annum. What is the value after three years?"
+msgstr ""
+
+#. dMAc6
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3156358\n"
+"help.text"
+msgid "<item type=\"input\">=FVSCHEDULE(1000;{0.03;0.04;0.05})</item> returns 1124.76."
+msgstr ""
+
+#. fi9VS
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"bm_id3156435\n"
+"help.text"
+msgid "<bookmark_value>calculating;number of payment periods</bookmark_value> <bookmark_value>payment periods;number of</bookmark_value> <bookmark_value>number of payment periods</bookmark_value> <bookmark_value>NPER function</bookmark_value>"
+msgstr ""
+
+#. NCCXK
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3156435\n"
+"help.text"
+msgid "NPER"
+msgstr ""
+
+#. BDUmA
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3152363\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_ZZR\">Returns the number of periods for an investment based on periodic, constant payments and a constant interest rate.</ahelp>"
+msgstr ""
+
+#. Fopz2
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3155934\n"
+"help.text"
+msgid "NPER(Rate; Pmt; PV [ ; [ FV ] [ ; Type ] ])"
+msgstr ""
+
+#. X44J9
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3155946\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#. 7FVrB
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149042\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the constant annuity paid in each period."
+msgstr ""
+
+#. eSocM
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3153134\n"
+"help.text"
+msgid "<emph>PV</emph> is the present value (cash value) in a sequence of payments."
+msgstr ""
+
+#. BqqW6
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3154398\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the future value, which is reached at the end of the last period."
+msgstr ""
+
+#. Cc3zB
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3145127\n"
+"help.text"
+msgid "<emph>Type</emph> (optional) is the due date of the payment at the beginning or at the end of the period."
+msgstr ""
+
+#. E89kG
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3147378\n"
+"help.text"
+msgid "How many payment periods does a payment period cover with a periodic interest rate of 6%, a periodic payment of 153.75 currency units and a present cash value of 2.600 currency units."
+msgstr ""
+
+#. 5FHvA
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3156171\n"
+"help.text"
+msgid "<item type=\"input\">=NPER(6%;153.75;2600)</item> = -12,02. The payment period covers 12.02 periods."
+msgstr ""
+
+#. AvdqB
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3150309\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 ""
+
+#. 7oEKT
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3153163\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060119.xhp\" name=\"Back to Financial Functions Part Two\">Back to Financial Functions Part Two</link>"
+msgstr ""
+
+#. 4tGFf
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"tit\n"
+"help.text"
+msgid "Financial Functions Part Two"
+msgstr ""
+
+#. NXDcR
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"hd_id3149052\n"
+"help.text"
+msgid "Financial Functions Part Two"
+msgstr ""
+
+#. iq5Jt
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3148742\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 ""
+
+#. vjtYs
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3151341\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 ""
+
+#. wkvF6
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"bm_id3150026\n"
+"help.text"
+msgid "<bookmark_value>PPMT function</bookmark_value>"
+msgstr ""
+
+#. LDDC5
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"hd_id3150026\n"
+"help.text"
+msgid "PPMT"
+msgstr ""
+
+#. ypm9a
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3146942\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 ""
+
+#. gxWF2
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3146878\n"
+"help.text"
+msgid "PPMT(Rate; Period; NPer; PV [ ; FV [ ; Type ] ])"
+msgstr ""
+
+#. t4fJk
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3151228\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#. RZqLF
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3148887\n"
+"help.text"
+msgid "<emph>Period</emph> is the amortizement period. P = 1 for the first and P = NPer for the last period."
+msgstr ""
+
+#. yFB4e
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3148436\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods during which annuity is paid."
+msgstr ""
+
+#. UBUtw
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3153035\n"
+"help.text"
+msgid "<emph>PV</emph> is the present value in the sequence of payments."
+msgstr ""
+
+#. Ckyr7
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3147474\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the desired (future) value."
+msgstr ""
+
+#. e2CaX
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3144744\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 ""
+
+#. dGMDT
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3154811\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 ""
+
+#. A2AsC
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3149246\n"
+"help.text"
+msgid "<item type=\"input\">=PPMT(8.75%/12;1;36;5000;8000;1)</item> = -350.99 currency units."
+msgstr ""
+
+#. DYXBe
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"bm_id3146139\n"
+"help.text"
+msgid "<bookmark_value>calculating; total amortizement rates</bookmark_value><bookmark_value>total amortizement rates</bookmark_value><bookmark_value>amortization installment</bookmark_value><bookmark_value>repayment installment</bookmark_value><bookmark_value>CUMPRINC function</bookmark_value>"
+msgstr ""
+
+#. qthNg
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"hd_id3146139\n"
+"help.text"
+msgid "CUMPRINC"
+msgstr ""
+
+#. LDBjj
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3150140\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 ""
+
+#. cZFVU
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3148733\n"
+"help.text"
+msgid "CUMPRINC(Rate; NPer; PV; S; E; Type)"
+msgstr ""
+
+#. MmfhY
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3150864\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#. tfiiZ
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3166052\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 ""
+
+#. ZeD58
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3150007\n"
+"help.text"
+msgid "<emph>PV</emph> is the current value in the sequence of payments."
+msgstr ""
+
+#. 8JeyU
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3153112\n"
+"help.text"
+msgid "<emph>S</emph> is the first period."
+msgstr ""
+
+#. v9xxo
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3146847\n"
+"help.text"
+msgid "<emph>E</emph> is the last period."
+msgstr ""
+
+#. 7emzg
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3145167\n"
+"help.text"
+msgid "<emph>Type</emph> is the due date of the payment at the beginning or end of each period."
+msgstr ""
+
+#. PptaD
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3153570\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 ""
+
+#. uZpa6
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3149884\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 ""
+
+#. 3DYRA
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"bm_id3150019\n"
+"help.text"
+msgid "<bookmark_value>CUMPRINC_ADD function</bookmark_value>"
+msgstr ""
+
+#. NPMHY
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"hd_id3150019\n"
+"help.text"
+msgid "CUMPRINC_ADD"
+msgstr ""
+
+#. Kricq
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3145246\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_CUMPRINC\"> Calculates the cumulative redemption of a loan in a period.</ahelp>"
+msgstr ""
+
+#. AzC4f
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3157970\n"
+"help.text"
+msgid "CUMPRINC_ADD(Rate; NPer; PV; StartPeriod; EndPeriod; Type)"
+msgstr ""
+
+#. FqUc7
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3145302\n"
+"help.text"
+msgid "<emph>Rate</emph> is the interest rate for each period."
+msgstr ""
+
+#. 8drNo
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3151017\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 ""
+
+#. A6Wgj
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3155620\n"
+"help.text"
+msgid "<emph>PV</emph> is the current value."
+msgstr ""
+
+#. 2BAoA
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3145352\n"
+"help.text"
+msgid "<emph>StartPeriod</emph> is the first payment period for the calculation."
+msgstr ""
+
+#. AKZWS
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3157986\n"
+"help.text"
+msgid "<emph>EndPeriod</emph> is the last payment period for the calculation."
+msgstr ""
+
+#. Ng5aR
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3150570\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 ""
+
+#. dUFpG
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3148774\n"
+"help.text"
+msgid "The following mortgage loan is taken out on a house:"
+msgstr ""
+
+#. DfTU9
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3150661\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 ""
+
+#. CyBfE
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3155512\n"
+"help.text"
+msgid "How much will you repay in the second year of the mortgage (thus from periods 13 to 24)?"
+msgstr ""
+
+#. qSRSK
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3149394\n"
+"help.text"
+msgid "<item type=\"input\">=CUMPRINC_ADD(0.0075;360;125000;13;24;0)</item> returns -934.1071"
+msgstr ""
+
+#. k7uxi
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3149026\n"
+"help.text"
+msgid "In the first month you will be repaying the following amount:"
+msgstr ""
+
+#. 326AE
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3154636\n"
+"help.text"
+msgid "<item type=\"input\">=CUMPRINC_ADD(0.0075;360;125000;1;1;0)</item> returns -68.27827"
+msgstr ""
+
+#. 7VMrh
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"bm_id3155370\n"
+"help.text"
+msgid "<bookmark_value>calculating; accumulated interests</bookmark_value><bookmark_value>accumulated interests</bookmark_value><bookmark_value>CUMIPMT function</bookmark_value>"
+msgstr ""
+
+#. ovgEx
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"hd_id3155370\n"
+"help.text"
+msgid "CUMIPMT"
+msgstr ""
+
+#. atpfA
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3158411\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 ""
+
+#. ZgAXB
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3147536\n"
+"help.text"
+msgid "CUMIPMT(Rate; NPer; PV; S; E; Type)"
+msgstr ""
+
+#. EQsat
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3150475\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#. AmB5k
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3153921\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 ""
+
+#. Fc69n
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3153186\n"
+"help.text"
+msgid "<emph>PV</emph> is the current value in the sequence of payments."
+msgstr ""
+
+#. m6B7v
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3156259\n"
+"help.text"
+msgid "<emph>S</emph> is the first period."
+msgstr ""
+
+#. DfYGF
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3155990\n"
+"help.text"
+msgid "<emph>E</emph> is the last period."
+msgstr ""
+
+#. ckByz
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3149777\n"
+"help.text"
+msgid "<emph>Type</emph> is the due date of the payment at the beginning or end of each period."
+msgstr ""
+
+#. BGZdj
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3147478\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 ""
+
+#. BSssC
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3149819\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 ""
+
+#. kkQE9
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"bm_id3083280\n"
+"help.text"
+msgid "<bookmark_value>CUMIPMT_ADD function</bookmark_value>"
+msgstr ""
+
+#. KoAeq
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"hd_id3083280\n"
+"help.text"
+msgid "CUMIPMT_ADD"
+msgstr ""
+
+#. UBXor
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3152482\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_CUMIPMT\">Calculates the accumulated interest for a period.</ahelp>"
+msgstr ""
+
+#. dJSwR
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3145087\n"
+"help.text"
+msgid "CUMIPMT_ADD(Rate; NPer; PV; StartPeriod; EndPeriod; Type)"
+msgstr ""
+
+#. TXptN
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3149277\n"
+"help.text"
+msgid "<emph>Rate</emph> is the interest rate for each period."
+msgstr ""
+
+#. ZBF3X
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3149270\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 ""
+
+#. Fyd98
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3152967\n"
+"help.text"
+msgid "<emph>PV</emph> is the current value."
+msgstr ""
+
+#. USjNi
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3156308\n"
+"help.text"
+msgid "<emph>StartPeriod</emph> is the first payment period for the calculation."
+msgstr ""
+
+#. f6UhB
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3149453\n"
+"help.text"
+msgid "<emph>EndPeriod</emph> is the last payment period for the calculation."
+msgstr ""
+
+#. 9Uq5w
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3150962\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 ""
+
+#. moZC6
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3156324\n"
+"help.text"
+msgid "The following mortgage loan is taken out on a house:"
+msgstr ""
+
+#. FKKBw
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3147566\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 ""
+
+#. xBJmd
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3151272\n"
+"help.text"
+msgid "How much interest must you pay in the second year of the mortgage (thus from periods 13 to 24)?"
+msgstr ""
+
+#. AHELF
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3156130\n"
+"help.text"
+msgid "<item type=\"input\">=CUMIPMT_ADD(0.0075;360;125000;13;24;0)</item> returns -11135.23."
+msgstr ""
+
+#. FBDuD
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3150764\n"
+"help.text"
+msgid "How much interest must you pay in the first month?"
+msgstr ""
+
+#. CBFwZ
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3146857\n"
+"help.text"
+msgid "<item type=\"input\">=CUMIPMT_ADD(0.0075;360;125000;1;1;0)</item> returns -937.50."
+msgstr ""
+
+#. rf6ur
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"bm_id3150878\n"
+"help.text"
+msgid "<bookmark_value>PRICE function</bookmark_value><bookmark_value>prices; fixed interest securities</bookmark_value><bookmark_value>sales values;fixed interest securities</bookmark_value>"
+msgstr ""
+
+#. ChHax
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"hd_id3150878\n"
+"help.text"
+msgid "PRICE"
+msgstr ""
+
+#. JgCvp
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3153210\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 ""
+
+#. k7qtv
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3152804\n"
+"help.text"
+msgid "PRICE(Settlement; Maturity; Rate; Yield; Redemption; Frequency [; Basis])"
+msgstr ""
+
+#. FUP24
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3156121\n"
+"help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr ""
+
+#. xH3jP
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3149983\n"
+"help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr ""
+
+#. Eo7Cn
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3153755\n"
+"help.text"
+msgid "<emph>Rate</emph> is the annual nominal rate of interest (coupon interest rate)"
+msgstr ""
+
+#. QcHcK
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3155999\n"
+"help.text"
+msgid "<emph>Yield</emph> is the annual yield of the security."
+msgstr ""
+
+#. 2LD3E
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3156114\n"
+"help.text"
+msgid "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
+msgstr ""
+
+#. kJgyG
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3155846\n"
+"help.text"
+msgid "<emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
+msgstr ""
+
+#. w5B9t
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3150260\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 ""
+
+#. mvRnh
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3147273\n"
+"help.text"
+msgid "<input>=PRICE(\"1999-02-15\"; \"2007-11-15\"; 0.0575; 0.065; 100; 2; 0)</input> returns 95.04287."
+msgstr ""
+
+#. sQGxa
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"bm_id3151297\n"
+"help.text"
+msgid "<bookmark_value>PRICEDISC function</bookmark_value><bookmark_value>prices;non-interest-bearing securities</bookmark_value><bookmark_value>sales values;non-interest-bearing securities</bookmark_value>"
+msgstr ""
+
+#. JuT2F
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"hd_id3151297\n"
+"help.text"
+msgid "PRICEDISC"
+msgstr ""
+
+#. BmTrm
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3155100\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 ""
+
+#. 6dK5H
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3146084\n"
+"help.text"
+msgid "PRICEDISC(Settlement; Maturity; Discount; Redemption [; Basis])"
+msgstr ""
+
+#. WBvCG
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3159179\n"
+"help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr ""
+
+#. Nvskp
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3154304\n"
+"help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr ""
+
+#. EEGAG
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3156014\n"
+"help.text"
+msgid "<emph>Discount</emph> is the discount of a security as a percentage."
+msgstr ""
+
+#. Bsgje
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3147489\n"
+"help.text"
+msgid "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
+msgstr ""
+
+#. k8LRc
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3149198\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 ""
+
+#. ZeFG7
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3151178\n"
+"help.text"
+msgid "<input>=PRICEDISC(\"1999-02-15\"; \"1999-03-01\"; 0.0525; 100; 2)</input> returns 99.79583."
+msgstr ""
+
+#. hbGNH
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"bm_id3154693\n"
+"help.text"
+msgid "<bookmark_value>PRICEMAT function</bookmark_value><bookmark_value>prices;interest-bearing securities</bookmark_value>"
+msgstr ""
+
+#. SCFnr
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"hd_id3154693\n"
+"help.text"
+msgid "PRICEMAT"
+msgstr ""
+
+#. qnKpP
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3153906\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 ""
+
+#. h6UDj
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3155393\n"
+"help.text"
+msgid "PRICEMAT(Settlement; Maturity; Issue; Rate; Yield [; Basis])"
+msgstr ""
+
+#. tG4zg
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3153102\n"
+"help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr ""
+
+#. M4xAU
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3150530\n"
+"help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr ""
+
+#. NnK8K
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3149903\n"
+"help.text"
+msgid "<emph>Issue</emph> is the date of issue of the security."
+msgstr ""
+
+#. KG9Fq
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3148828\n"
+"help.text"
+msgid "<emph>Rate</emph> is the interest rate of the security on the issue date."
+msgstr ""
+
+#. fSAfb
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3146993\n"
+"help.text"
+msgid "<emph>Yield</emph> is the annual yield of the security."
+msgstr ""
+
+#. fiNQN
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3154289\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 ""
+
+#. JGVzC
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3154905\n"
+"help.text"
+msgid "The price is calculated as follows:"
+msgstr ""
+
+#. fi4NY
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3158409\n"
+"help.text"
+msgid "<input>=PRICEMAT(\"1999-02-15\";\"1999-04-13\";\"1998-11-11\"; 0.061; 0.061;0)</input> returns 99.98449888."
+msgstr ""
+
+#. GAN7n
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"bm_id3148448\n"
+"help.text"
+msgid "<bookmark_value>calculating; durations</bookmark_value><bookmark_value>durations;calculating</bookmark_value><bookmark_value>PDURATION function</bookmark_value>"
+msgstr ""
+
+#. EjWXp
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"hd_id3148448\n"
+"help.text"
+msgid "PDURATION"
+msgstr ""
+
+#. mQkqy
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3153056\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 ""
+
+#. wLSMC
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3148933\n"
+"help.text"
+msgid "PDURATION(Rate; PV; FV)"
+msgstr ""
+
+#. Rzxhq
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3148801\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 ""
+
+#. jpBBn
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3147239\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 ""
+
+#. rxSZX
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3147515\n"
+"help.text"
+msgid "<emph>FV</emph> is the expected value. The future value determines the desired (future) value of the deposit."
+msgstr ""
+
+#. SATJW
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3148480\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 ""
+
+#. kv4Pb
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"bm_id3148912\n"
+"help.text"
+msgid "<bookmark_value>calculating;linear depreciations</bookmark_value><bookmark_value>depreciations;linear</bookmark_value><bookmark_value>linear depreciations</bookmark_value><bookmark_value>straight-line depreciations</bookmark_value><bookmark_value>SLN function</bookmark_value>"
+msgstr ""
+
+#. ScCBu
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"hd_id3148912\n"
+"help.text"
+msgid "SLN"
+msgstr ""
+
+#. rGCTo
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3149154\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 ""
+
+#. GzXsv
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3166456\n"
+"help.text"
+msgid "SLN(Cost; Salvage; Life)"
+msgstr ""
+
+#. 8CSs2
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3146955\n"
+"help.text"
+msgid "<emph>Cost</emph> is the initial cost of an asset."
+msgstr ""
+
+#. FANVf
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3149796\n"
+"help.text"
+msgid "<emph>Salvage</emph> is the value of an asset at the end of the depreciation."
+msgstr ""
+
+#. FybWr
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3166444\n"
+"help.text"
+msgid "<emph>Life</emph> is the depreciation period determining the number of periods in the depreciation of the asset."
+msgstr ""
+
+#. 4tbmH
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3154098\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 ""
+
+#. sAuz4
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3153390\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 ""
+
+#. zLdSt
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"bm_id3153739\n"
+"help.text"
+msgid "<bookmark_value>MDURATION function</bookmark_value><bookmark_value>Macauley duration</bookmark_value>"
+msgstr ""
+
+#. FWB2Q
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"hd_id3153739\n"
+"help.text"
+msgid "MDURATION"
+msgstr ""
+
+#. MggV6
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3149923\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_MDURATION\">Calculates the modified Macauley duration of a fixed interest security in years.</ahelp>"
+msgstr ""
+
+#. tGit8
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3148987\n"
+"help.text"
+msgid "MDURATION(Settlement; Maturity; Coupon; Yield; Frequency [; Basis])"
+msgstr ""
+
+#. xTn69
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3148619\n"
+"help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr ""
+
+#. UgBHk
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3149805\n"
+"help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr ""
+
+#. vMW33
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3154338\n"
+"help.text"
+msgid "<emph>Coupon</emph> is the annual nominal rate of interest (coupon interest rate)"
+msgstr ""
+
+#. 5NyMh
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3148466\n"
+"help.text"
+msgid "<emph>Yield</emph> is the annual yield of the security."
+msgstr ""
+
+#. GsSHE
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3149423\n"
+"help.text"
+msgid "<emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
+msgstr ""
+
+#. i5kGf
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3148652\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 ""
+
+#. PWSr2
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3145378\n"
+"help.text"
+msgid "<input>=MDURATION(\"2001-01-01\"; \"2006-01-01\"; 0.08; 0.09; 2; 3)</input> returns 4.02 years."
+msgstr ""
+
+#. BrDKP
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"bm_id3149242\n"
+"help.text"
+msgid "<bookmark_value>calculating;net present values</bookmark_value><bookmark_value>net present values</bookmark_value><bookmark_value>NPV function</bookmark_value>"
+msgstr ""
+
+#. AMMGA
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"hd_id3149242\n"
+"help.text"
+msgid "NPV"
+msgstr ""
+
+#. hs7Jd
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3145308\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_NBW\">Returns the present value of an investment based on a series of periodic cash flows and a discount rate. To get the net present value, subtract the cost of the project (the initial cash flow at time zero) from the returned value.</ahelp>"
+msgstr ""
+
+#. Lrg8g
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_idN111381\n"
+"help.text"
+msgid "If the payments take place at irregular intervals, use the <link href=\"text/scalc/01/04060118.xhp#xnpv\" name=\"XNPV\">XNPV</link> function."
+msgstr ""
+
+#. ZxBQz
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3153321\n"
+"help.text"
+msgid "NPV(Rate; <embedvar href=\"text/scalc/01/ful_func.xhp#number254_1\" markup=\"keep\"/>)"
+msgstr ""
+
+#. EEL34
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3150630\n"
+"help.text"
+msgid "<emph>Rate</emph> is the discount rate for a period."
+msgstr ""
+
+#. DAypR
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3154800\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 paid as -40 currency units."
+msgstr ""
+
+#. LA3fY
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3143270\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 ""
+
+#. fyPVS
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"bm_id3149484\n"
+"help.text"
+msgid "<bookmark_value>calculating;nominal interest rates</bookmark_value><bookmark_value>nominal interest rates</bookmark_value><bookmark_value>NOMINAL function</bookmark_value>"
+msgstr ""
+
+#. HCJLx
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"hd_id3149484\n"
+"help.text"
+msgid "NOMINAL"
+msgstr ""
+
+#. ZtXoJ
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3149596\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 ""
+
+#. C7tsK
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3152769\n"
+"help.text"
+msgid "NOMINAL(EffectiveRate; NPerY)"
+msgstr ""
+
+#. AgWeQ
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3147521\n"
+"help.text"
+msgid "<emph>EffectiveRate</emph> is the effective interest rate"
+msgstr ""
+
+#. hQuGX
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3156334\n"
+"help.text"
+msgid "<emph>NPerY</emph> is the number of periodic interest payments per year."
+msgstr ""
+
+#. Aihdg
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3147091\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 ""
+
+#. fX48v
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3154831\n"
+"help.text"
+msgid "<item type=\"input\">=NOMINAL(13.5%;12)</item> = 12.73%. The nominal interest rate per year is 12.73%."
+msgstr ""
+
+#. nopCm
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"bm_id3155123\n"
+"help.text"
+msgid "<bookmark_value>NOMINAL_ADD function</bookmark_value>"
+msgstr ""
+
+#. waSCK
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"hd_id3155123\n"
+"help.text"
+msgid "NOMINAL_ADD"
+msgstr ""
+
+#. zBbRt
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3148671\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 ""
+
+#. 6DdxN
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3156157\n"
+"help.text"
+msgid "NOMINAL_ADD(EffectiveRate; NPerY)"
+msgstr ""
+
+#. AG9aq
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3153777\n"
+"help.text"
+msgid "<emph>EffectiveRate</emph> is the effective annual rate of interest."
+msgstr ""
+
+#. 6hEH3
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3150409\n"
+"help.text"
+msgid "<emph>NPerY</emph> the number of interest payments per year."
+msgstr ""
+
+#. YQdC7
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3145777\n"
+"help.text"
+msgid "What is the nominal rate of interest for a 5.3543% effective rate of interest and quarterly payment."
+msgstr ""
+
+#. JLGFE
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3156146\n"
+"help.text"
+msgid "<item type=\"input\">=NOMINAL_ADD(5.3543%;4)</item> returns 0.0525 or 5.25%."
+msgstr ""
+
+#. VhSHk
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"bm_id3159087\n"
+"help.text"
+msgid "<bookmark_value>DOLLARFR function</bookmark_value><bookmark_value>converting;decimal fractions, into mixed decimal fractions</bookmark_value>"
+msgstr ""
+
+#. Qhe3N
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"hd_id3159087\n"
+"help.text"
+msgid "DOLLARFR"
+msgstr ""
+
+#. F57wX
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3150593\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 ""
+
+#. qrWCW
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3152959\n"
+"help.text"
+msgid "DOLLARFR(DecimalDollar; Fraction)"
+msgstr ""
+
+#. N5WPe
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3149558\n"
+"help.text"
+msgid "<emph>DecimalDollar</emph> is a decimal number."
+msgstr ""
+
+#. FiLbV
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3153672\n"
+"help.text"
+msgid "<emph>Fraction</emph> is a whole number that is used as the denominator of the decimal fraction."
+msgstr ""
+
+#. nz8K4
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3153795\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 ""
+
+#. Bkq9d
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3150995\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 ""
+
+#. oTXcz
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"bm_id3154671\n"
+"help.text"
+msgid "<bookmark_value>fractions; converting</bookmark_value><bookmark_value>converting;decimal fractions, into decimal numbers</bookmark_value><bookmark_value>DOLLARDE function</bookmark_value>"
+msgstr ""
+
+#. M5fCi
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"hd_id3154671\n"
+"help.text"
+msgid "DOLLARDE"
+msgstr ""
+
+#. AzXDV
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3154418\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 ""
+
+#. zxFEq
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3150348\n"
+"help.text"
+msgid "DOLLARDE(FractionalDollar; Fraction)"
+msgstr ""
+
+#. gtkuA
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3154111\n"
+"help.text"
+msgid "<emph>FractionalDollar</emph> is a number given as a decimal fraction."
+msgstr ""
+
+#. A3rfB
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3153695\n"
+"help.text"
+msgid "<emph>Fraction</emph> is a whole number that is used as the denominator of the decimal fraction."
+msgstr ""
+
+#. EVEdB
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3150941\n"
+"help.text"
+msgid "<item type=\"input\">=DOLLARDE(1.02;16)</item> stands for 1 and 2/16. This returns 1.125."
+msgstr ""
+
+#. Z3ukC
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3150830\n"
+"help.text"
+msgid "<item type=\"input\">=DOLLARDE(1.1;8)</item> stands for 1 and 1/8. This returns 1.125."
+msgstr ""
+
+#. KvbAk
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"bm_id3148974\n"
+"help.text"
+msgid "<bookmark_value>calculating;modified internal rates of return</bookmark_value><bookmark_value>modified internal rates of return</bookmark_value><bookmark_value>MIRR function</bookmark_value><bookmark_value>internal rates of return;modified</bookmark_value>"
+msgstr ""
+
+#. iChyK
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"hd_id3148974\n"
+"help.text"
+msgid "MIRR"
+msgstr ""
+
+#. CMsDu
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3155497\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_QIKV\">Calculates the modified internal rate of return of a series of investments.</ahelp>"
+msgstr ""
+
+#. gEqNo
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3148399\n"
+"help.text"
+msgid "MIRR(Values; Investment; ReinvestRate)"
+msgstr ""
+
+#. D6MGL
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3155896\n"
+"help.text"
+msgid "<emph>Values</emph> corresponds to the array or the cell reference for cells whose content corresponds to the payments."
+msgstr ""
+
+#. gwC77
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3149998\n"
+"help.text"
+msgid "<emph>Investment</emph> is the rate of interest of the investments (the negative values of the array)"
+msgstr ""
+
+#. J42GD
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3159408\n"
+"help.text"
+msgid "<emph>ReinvestRate</emph>:the rate of interest of the reinvestment (the positive values of the array)"
+msgstr ""
+
+#. Auhk8
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3147352\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 ""
+
+#. jJV3r
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"bm_id3149323\n"
+"help.text"
+msgid "<bookmark_value>YIELD function</bookmark_value><bookmark_value>rates of return;securities</bookmark_value><bookmark_value>yields, see also rates of return</bookmark_value>"
+msgstr ""
+
+#. 6iiWG
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"hd_id3149323\n"
+"help.text"
+msgid "YIELD"
+msgstr ""
+
+#. Ssro5
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3150643\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_YIELD\">Calculates the yield of a security.</ahelp>"
+msgstr ""
+
+#. iZ8rB
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3149744\n"
+"help.text"
+msgid "YIELD(Settlement; Maturity; Rate; Price; Redemption; Frequency [; Basis])"
+msgstr ""
+
+#. C68Mv
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3154526\n"
+"help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr ""
+
+#. Ctn8H
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3153266\n"
+"help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr ""
+
+#. SYg4J
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3151284\n"
+"help.text"
+msgid "<emph>Rate</emph> is the annual rate of interest."
+msgstr ""
+
+#. UtDFU
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3147314\n"
+"help.text"
+msgid "<emph>Price</emph> is the price (purchase price) of the security per 100 currency units of par value."
+msgstr ""
+
+#. XgnuZ
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3145156\n"
+"help.text"
+msgid "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
+msgstr ""
+
+#. JypkN
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3159218\n"
+"help.text"
+msgid "<emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
+msgstr ""
+
+#. qkgFi
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3151214\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 ""
+
+#. iewbU
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3154194\n"
+"help.text"
+msgid "<input>=YIELD(\"1999-02-15\"; \"2007-11-15\"; 0.0575 ;95.04287; 100; 2; 0)</input> returns 0.065 or 6.50 per cent."
+msgstr ""
+
+#. AeJmf
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"bm_id3150100\n"
+"help.text"
+msgid "<bookmark_value>YIELDDISC function</bookmark_value><bookmark_value>rates of return;non-interest-bearing securities</bookmark_value>"
+msgstr ""
+
+#. jMMDF
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"hd_id3150100\n"
+"help.text"
+msgid "YIELDDISC"
+msgstr ""
+
+#. CTBdC
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3150486\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_YIELDDISC\">Calculates the annual yield of a non-interest-bearing security.</ahelp>"
+msgstr ""
+
+#. z5sGa
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3159191\n"
+"help.text"
+msgid "YIELDDISC(Settlement; Maturity; Price; Redemption [; Basis])"
+msgstr ""
+
+#. fFG4g
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3150237\n"
+"help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr ""
+
+#. yu3bU
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3146924\n"
+"help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr ""
+
+#. RdnvF
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3151201\n"
+"help.text"
+msgid "<emph>Price</emph> is the price (purchase price) of the security per 100 currency units of par value."
+msgstr ""
+
+#. BJS6o
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3156049\n"
+"help.text"
+msgid "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
+msgstr ""
+
+#. rkDWB
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3163815\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 ""
+
+#. DMev8
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3155187\n"
+"help.text"
+msgid "<input>=YIELDDISC(\"1999-02-15\"; \"1999-03-01\"; 99.795; 100; 2)</input> returns 0.052823 or 5.2823 per cent."
+msgstr ""
+
+#. 5mbhE
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"bm_id3155140\n"
+"help.text"
+msgid "<bookmark_value>YIELDMAT function</bookmark_value><bookmark_value>rates of return;securities with interest paid on maturity</bookmark_value>"
+msgstr ""
+
+#. gDVei
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"hd_id3155140\n"
+"help.text"
+msgid "YIELDMAT"
+msgstr ""
+
+#. AvmYj
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3151332\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 ""
+
+#. 63YEW
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3159113\n"
+"help.text"
+msgid "YIELDMAT(Settlement; Maturity; Issue; Rate; Price [; Basis])"
+msgstr ""
+
+#. db9jM
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3149309\n"
+"help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr ""
+
+#. mDA8k
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3151381\n"
+"help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr ""
+
+#. MvUAc
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3153302\n"
+"help.text"
+msgid "<emph>Issue</emph> is the date of issue of the security."
+msgstr ""
+
+#. E7jdC
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3147140\n"
+"help.text"
+msgid "<emph>Rate</emph> is the interest rate of the security on the issue date."
+msgstr ""
+
+#. AUZxg
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3151067\n"
+"help.text"
+msgid "<emph>Price</emph> is the price (purchase price) of the security per 100 currency units of par value."
+msgstr ""
+
+#. CVbVY
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3163717\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 ""
+
+#. DswXC
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3155311\n"
+"help.text"
+msgid "<input>=YIELDMAT(\"1999-03-15\"; \"1999-11-03\"; \"1998-11-08\"; 0.0625; 100.0123; 0)</input> returns 0.060954 or 6.0954 per cent."
+msgstr ""
+
+#. 2ZC4E
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"bm_id3149577\n"
+"help.text"
+msgid "<bookmark_value>calculating;annuities</bookmark_value><bookmark_value>annuities</bookmark_value><bookmark_value>PMT function</bookmark_value>"
+msgstr ""
+
+#. Uj2ew
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"hd_id3149577\n"
+"help.text"
+msgid "PMT"
+msgstr ""
+
+#. FHFRn
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3148563\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_RMZ\">Returns the periodic payment for an annuity with constant interest rates.</ahelp>"
+msgstr ""
+
+#. 94VHK
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3147278\n"
+"help.text"
+msgid "PMT(Rate; NPer; PV [ ; [ FV ] [ ; Type ] ])"
+msgstr ""
+
+#. fGg3G
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3147291\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#. yz8oV
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3148641\n"
+"help.text"
+msgid "<emph>NPer</emph> is the number of periods in which annuity is paid."
+msgstr ""
+
+#. dAkZ3
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3156360\n"
+"help.text"
+msgid "<emph>PV</emph> is the present value (cash value) in a sequence of payments."
+msgstr ""
+
+#. ckGU8
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3154920\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 ""
+
+#. krZrE
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3156434\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 ""
+
+#. y9wSn
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3154222\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 ""
+
+#. 5kcxK
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3155943\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 ""
+
+#. qYZB7
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"bm_id3155799\n"
+"help.text"
+msgid "<bookmark_value>TBILLEQ function</bookmark_value><bookmark_value>treasury bills;annual return</bookmark_value><bookmark_value>annual return on treasury bills</bookmark_value>"
+msgstr ""
+
+#. fAddD
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"hd_id3155799\n"
+"help.text"
+msgid "TBILLEQ"
+msgstr ""
+
+#. jvBir
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3154403\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 ""
+
+#. gFfjX
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3150224\n"
+"help.text"
+msgid "TBILLEQ(Settlement; Maturity; Discount)"
+msgstr ""
+
+#. nqU3u
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3156190\n"
+"help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr ""
+
+#. C2v6G
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3153827\n"
+"help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr ""
+
+#. 9AGUY
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3150310\n"
+"help.text"
+msgid "<emph>Discount</emph> is the percentage discount on acquisition of the security."
+msgstr ""
+
+#. tCoCK
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3153173\n"
+"help.text"
+msgid "Settlement date: March 31 1999, maturity date: June 1 1999, discount: 9.14 per cent."
+msgstr ""
+
+#. s7DE6
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3153520\n"
+"help.text"
+msgid "The return on the treasury bill corresponding to a security is worked out as follows:"
+msgstr ""
+
+#. QzDeZ
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3154382\n"
+"help.text"
+msgid "<input>=TBILLEQ(\"1999-03-31\";\"1999-06-01\"; 0.0914)</input> returns 0.094151 or 9.4151 per cent."
+msgstr ""
+
+#. zcFRa
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"bm_id3151032\n"
+"help.text"
+msgid "<bookmark_value>TBILLPRICE function</bookmark_value><bookmark_value>treasury bills;prices</bookmark_value><bookmark_value>prices;treasury bills</bookmark_value>"
+msgstr ""
+
+#. BWEGo
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"hd_id3151032\n"
+"help.text"
+msgid "TBILLPRICE"
+msgstr ""
+
+#. QvMyA
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3157887\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_TBILLPRICE\">Calculates the price of a treasury bill per 100 currency units.</ahelp>"
+msgstr ""
+
+#. RBrJZ
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3150284\n"
+"help.text"
+msgid "TBILLPRICE(Settlement; Maturity; Discount)"
+msgstr ""
+
+#. LmGTo
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3154059\n"
+"help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr ""
+
+#. ESXrv
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3154073\n"
+"help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr ""
+
+#. kk3dB
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3145765\n"
+"help.text"
+msgid "<emph>Discount</emph> is the percentage discount upon acquisition of the security."
+msgstr ""
+
+#. fGMCF
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3155542\n"
+"help.text"
+msgid "Settlement date: March 31 1999, maturity date: June 1 1999, discount: 9 per cent."
+msgstr ""
+
+#. YQuKY
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3154578\n"
+"help.text"
+msgid "The price of the treasury bill is worked out as follows:"
+msgstr ""
+
+#. VfuXC
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3154592\n"
+"help.text"
+msgid "<input>=TBILLPRICE(\"1999-03-31\";\"1999-06-01\"; 0.09)</input> returns 98.45."
+msgstr ""
+
+#. yEHpt
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"bm_id3152912\n"
+"help.text"
+msgid "<bookmark_value>TBILLYIELD function</bookmark_value><bookmark_value>treasury bills;rates of return</bookmark_value><bookmark_value>rates of return of treasury bills</bookmark_value>"
+msgstr ""
+
+#. 59XBc
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"hd_id3152912\n"
+"help.text"
+msgid "TBILLYIELD"
+msgstr ""
+
+#. B7QFQ
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3145560\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_TBILLYIELD\">Calculates the yield of a treasury bill.</ahelp>"
+msgstr ""
+
+#. muxsD
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3156077\n"
+"help.text"
+msgid "TBILLYIELD(Settlement; Maturity; Price)"
+msgstr ""
+
+#. zwaEn
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3156091\n"
+"help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr ""
+
+#. xuRy4
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3157856\n"
+"help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr ""
+
+#. Pst9h
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3149627\n"
+"help.text"
+msgid "<emph>Price</emph> is the price (purchase price) of the treasury bill per 100 currency units of par value."
+msgstr ""
+
+#. vRYFV
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3145178\n"
+"help.text"
+msgid "Settlement date: March 31 1999, maturity date: June 1 1999, price: 98.45 currency units."
+msgstr ""
+
+#. RnRrM
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3145193\n"
+"help.text"
+msgid "The yield of the treasury bill is worked out as follows:"
+msgstr ""
+
+#. CrxD8
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3148528\n"
+"help.text"
+msgid "<input>=TBILLYIELD(\"1999-03-31\";\"1999-06-01\"; 98.45)</input> returns 0.091417 or 9.1417 per cent."
+msgstr ""
+
+#. NF5nu
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3148546\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 ""
+
+#. 2fAip
+#: 04060119.xhp
+msgctxt ""
+"04060119.xhp\n"
+"par_id3146762\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 ""
+
+#. PE8Nt
+#: 04060120.xhp
+msgctxt ""
+"04060120.xhp\n"
+"tit\n"
+"help.text"
+msgid "Bit Operation Functions"
+msgstr ""
+
+#. vWoFh
+#: 04060120.xhp
+msgctxt ""
+"04060120.xhp\n"
+"hd_id4149052\n"
+"help.text"
+msgid "Bit Operation Functions"
+msgstr ""
+
+#. 72BSr
+#: 04060120.xhp
+msgctxt ""
+"04060120.xhp\n"
+"bm_id4150026\n"
+"help.text"
+msgid "<bookmark_value>BITAND function</bookmark_value>"
+msgstr ""
+
+#. ZhjDV
+#: 04060120.xhp
+msgctxt ""
+"04060120.xhp\n"
+"hd_id4150026\n"
+"help.text"
+msgid "BITAND"
+msgstr ""
+
+#. sBFc6
+#: 04060120.xhp
+msgctxt ""
+"04060120.xhp\n"
+"par_id4146942\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_BITAND\">Returns a bitwise logical \"and\" of the parameters.</ahelp>"
+msgstr ""
+
+#. 88GjT
+#: 04060120.xhp
+msgctxt ""
+"04060120.xhp\n"
+"par_id4146878\n"
+"help.text"
+msgid "BITAND(number1; number2)"
+msgstr ""
+
+#. Ed8iU
+#: 04060120.xhp
+msgctxt ""
+"04060120.xhp\n"
+"par_id4151228\n"
+"help.text"
+msgid "<emph>Number1</emph> and <emph>number2</emph> are positive integers less than 2 ^ 48 (281 474 976 710 656)."
+msgstr ""
+
+#. YiAov
+#: 04060120.xhp
+msgctxt ""
+"04060120.xhp\n"
+"par_id4149246\n"
+"help.text"
+msgid "<item type=\"input\">=BITAND(6;10)</item> returns 2 (0110 & 1010 = 0010)."
+msgstr ""
+
+#. a432s
+#: 04060120.xhp
+msgctxt ""
+"04060120.xhp\n"
+"bm_id4146139\n"
+"help.text"
+msgid "<bookmark_value>BITOR function</bookmark_value>"
+msgstr ""
+
+#. PwfzM
+#: 04060120.xhp
+msgctxt ""
+"04060120.xhp\n"
+"hd_id4146139\n"
+"help.text"
+msgid "BITOR"
+msgstr ""
+
+#. Xq7kt
+#: 04060120.xhp
+msgctxt ""
+"04060120.xhp\n"
+"par_id4150140\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_BITOR\">Returns a bitwise logical \"or\" of the parameters.</ahelp>"
+msgstr ""
+
+#. zsPQd
+#: 04060120.xhp
+msgctxt ""
+"04060120.xhp\n"
+"par_id4148733\n"
+"help.text"
+msgid "BITOR(number1; number2)"
+msgstr ""
+
+#. eAa8N
+#: 04060120.xhp
+msgctxt ""
+"04060120.xhp\n"
+"par_id4150864\n"
+"help.text"
+msgid "<emph>Number1</emph> and <emph>number2</emph> are positive integers less than 2 ^ 48 (281 474 976 710 656)."
+msgstr ""
+
+#. FXiFR
+#: 04060120.xhp
+msgctxt ""
+"04060120.xhp\n"
+"par_id4149884\n"
+"help.text"
+msgid "<item type=\"input\">=BITOR(6;10)</item> returns 14 (0110 | 1010 = 1110)."
+msgstr ""
+
+#. vYQgj
+#: 04060120.xhp
+msgctxt ""
+"04060120.xhp\n"
+"bm_id4150019\n"
+"help.text"
+msgid "<bookmark_value>BITXOR function</bookmark_value>"
+msgstr ""
+
+#. Q5CWK
+#: 04060120.xhp
+msgctxt ""
+"04060120.xhp\n"
+"hd_id4150019\n"
+"help.text"
+msgid "BITXOR"
+msgstr ""
+
+#. azGyx
+#: 04060120.xhp
+msgctxt ""
+"04060120.xhp\n"
+"par_id4145246\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_BITXOR\">Returns a bitwise logical \"exclusive or\" of the parameters.</ahelp>"
+msgstr ""
+
+#. Gcfrv
+#: 04060120.xhp
+msgctxt ""
+"04060120.xhp\n"
+"par_id4157970\n"
+"help.text"
+msgid "BITXOR(number1; number2)"
+msgstr ""
+
+#. nFNuB
+#: 04060120.xhp
+msgctxt ""
+"04060120.xhp\n"
+"par_id4145302\n"
+"help.text"
+msgid "<emph>Number1</emph> and <emph>number2</emph> are positive integers less than 2 ^ 48 (281 474 976 710 656)."
+msgstr ""
+
+#. EkMSL
+#: 04060120.xhp
+msgctxt ""
+"04060120.xhp\n"
+"par_id4149394\n"
+"help.text"
+msgid "<item type=\"input\">=BITXOR(6;10)</item> returns 12 (0110 ^ 1010 = 1100)"
+msgstr ""
+
+#. gcq6T
+#: 04060120.xhp
+msgctxt ""
+"04060120.xhp\n"
+"bm_id4155370\n"
+"help.text"
+msgid "<bookmark_value>BITLSHIFT function</bookmark_value>"
+msgstr ""
+
+#. Uue3a
+#: 04060120.xhp
+msgctxt ""
+"04060120.xhp\n"
+"hd_id4155370\n"
+"help.text"
+msgid "BITLSHIFT"
+msgstr ""
+
+#. msYD8
+#: 04060120.xhp
+msgctxt ""
+"04060120.xhp\n"
+"par_id4158411\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_BITLSHIFT\">Shifts a number left by n bits.</ahelp>"
+msgstr ""
+
+#. V9Edi
+#: 04060120.xhp
+msgctxt ""
+"04060120.xhp\n"
+"par_id4147536\n"
+"help.text"
+msgid "BITLSHIFT(number; shift)"
+msgstr ""
+
+#. F2aRk
+#: 04060120.xhp
+msgctxt ""
+"04060120.xhp\n"
+"par_id4150475\n"
+"help.text"
+msgid "<emph>Number</emph> is a positive integer less than 2 ^ 48 (281 474 976 710 656)."
+msgstr ""
+
+#. F6gei
+#: 04060120.xhp
+msgctxt ""
+"04060120.xhp\n"
+"par_id4153921\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 ""
+
+#. HXLGB
+#: 04060120.xhp
+msgctxt ""
+"04060120.xhp\n"
+"par_id4149819\n"
+"help.text"
+msgid "<item type=\"input\">=BITLSHIFT(6;1)</item> returns 12 (0110 << 1 = 1100)."
+msgstr ""
+
+#. H42WE
+#: 04060120.xhp
+msgctxt ""
+"04060120.xhp\n"
+"bm_id4083280\n"
+"help.text"
+msgid "<bookmark_value>BITRSHIFT function</bookmark_value>"
+msgstr ""
+
+#. QQAka
+#: 04060120.xhp
+msgctxt ""
+"04060120.xhp\n"
+"hd_id4083280\n"
+"help.text"
+msgid "BITRSHIFT"
+msgstr ""
+
+#. RRfun
+#: 04060120.xhp
+msgctxt ""
+"04060120.xhp\n"
+"par_id4152482\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_BITRSHIFT\">Shifts a number right by n bits.</ahelp>"
+msgstr ""
+
+#. 3VyLt
+#: 04060120.xhp
+msgctxt ""
+"04060120.xhp\n"
+"par_id4145087\n"
+"help.text"
+msgid "BITRSHIFT(number; shift)"
+msgstr ""
+
+#. KMGD8
+#: 04060120.xhp
+msgctxt ""
+"04060120.xhp\n"
+"par_id4149277\n"
+"help.text"
+msgid "<emph>Number</emph> is a positive integer less than 2 ^ 48 (281 474 976 710 656)."
+msgstr ""
+
+#. A2anz
+#: 04060120.xhp
+msgctxt ""
+"04060120.xhp\n"
+"par_id4149270\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 ""
+
+#. qYBC4
+#: 04060120.xhp
+msgctxt ""
+"04060120.xhp\n"
+"par_id4156130\n"
+"help.text"
+msgid "<item type=\"input\">=BITRSHIFT(6;1)</item> returns 3 (0110 >> 1 = 0011)."
+msgstr ""
+
+#. iF4rD
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"tit\n"
+"help.text"
+msgid "Statistical Functions Part One"
+msgstr ""
+
+#. wmdPZ
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"hd_id3146320\n"
+"help.text"
+msgid "<variable id=\"ae\"><link href=\"text/scalc/01/04060181.xhp\">Statistical Functions Part One</link></variable>"
+msgstr ""
+
+#. cv8gp
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"bm_id3145632\n"
+"help.text"
+msgid "<bookmark_value>INTERCEPT function</bookmark_value> <bookmark_value>points of intersection</bookmark_value> <bookmark_value>intersections</bookmark_value>"
+msgstr ""
+
+#. WbRgB
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"hd_id3145632\n"
+"help.text"
+msgid "INTERCEPT"
+msgstr ""
+
+#. zCexh
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3146887\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_ACHSENABSCHNITT\">Calculates the point at which a line will intersect the y-values by using known x-values and y-values.</ahelp>"
+msgstr ""
+
+#. vPbsW
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3149718\n"
+"help.text"
+msgid "INTERCEPT(DataY; DataX)"
+msgstr ""
+
+#. yVehp
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3149947\n"
+"help.text"
+msgid "<emph>DataY</emph> is the dependent set of observations or data."
+msgstr ""
+
+#. QNqQH
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3147412\n"
+"help.text"
+msgid "<emph>DataX</emph> is the independent set of observations or data."
+msgstr ""
+
+#. tYtng
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3152983\n"
+"help.text"
+msgid "Names, arrays or references containing numbers must be used here. Numbers can also be entered directly."
+msgstr ""
+
+#. tFVF3
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3148728\n"
+"help.text"
+msgid "To calculate the intercept, use cells D3:D9 as the y value and C3:C9 as the x value from the example spreadsheet. Input will be as follows:"
+msgstr ""
+
+#. 4w8AM
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3149013\n"
+"help.text"
+msgid "<item type=\"input\">=INTERCEPT(D3:D9;C3:C9)</item> = 2.15."
+msgstr ""
+
+#. LmoQP
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"bm_id3148437\n"
+"help.text"
+msgid "<bookmark_value>COUNT function</bookmark_value> <bookmark_value>numbers;counting</bookmark_value>"
+msgstr ""
+
+#. 572uZ
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"hd_id3148437\n"
+"help.text"
+msgid "<variable id=\"count_head\"><link href=\"text/scalc/01/04060181.xhp#count\">COUNT</link></variable>"
+msgstr ""
+
+#. byWbW
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3150700\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_ANZAHL\">Counts how many numbers are in the list of arguments.</ahelp> Text entries are ignored."
+msgstr ""
+
+#. AWuDZ
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3148585\n"
+"help.text"
+msgid "COUNT(<embedvar href=\"text/scalc/01/ful_func.xhp#number255_1\" markup=\"keep\"/>)"
+msgstr ""
+
+#. VBCGA
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3149953\n"
+"help.text"
+msgid "The entries 2, 4, 6 and eight in the Value 1-4 fields are to be counted."
+msgstr ""
+
+#. 4J3HX
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3154558\n"
+"help.text"
+msgid "<item type=\"input\">=COUNT(2;4;6;\"eight\")</item> = 3. The count of numbers is therefore 3."
+msgstr ""
+
+#. Gx8kb
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"bm_id3149729\n"
+"help.text"
+msgid "<bookmark_value>COUNTA function</bookmark_value> <bookmark_value>number of entries</bookmark_value>"
+msgstr ""
+
+#. HCAiK
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"hd_id3149729\n"
+"help.text"
+msgid "<variable id=\"counta_head\"><link href=\"text/scalc/01/04060181.xhp#counta\">COUNTA</link></variable>"
+msgstr ""
+
+#. epCgy
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3150142\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_ANZAHL2\">Counts how many values are in the list of arguments.</ahelp> Text entries are also counted, even when they contain an empty string of length 0. If an argument is an array or reference, empty cells within the array or reference are ignored."
+msgstr ""
+
+#. eEkCJ
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3153111\n"
+"help.text"
+msgid "COUNTA(<embedvar href=\"text/scalc/01/ful_func.xhp#number255_1\" markup=\"keep\"/>)"
+msgstr ""
+
+#. QKY5C
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3154508\n"
+"help.text"
+msgid "The entries 2, 4, 6 and eight in the Value 1-4 fields are to be counted."
+msgstr ""
+
+#. 2BTA2
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3158000\n"
+"help.text"
+msgid "<item type=\"input\">=COUNTA(2;4;6;\"eight\")</item> = 4. The count of values is therefore 4."
+msgstr ""
+
+#. uuPnw
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"bm_id3150896\n"
+"help.text"
+msgid "<bookmark_value>COUNTBLANK function</bookmark_value> <bookmark_value>counting;empty cells</bookmark_value> <bookmark_value>empty cells;counting</bookmark_value>"
+msgstr ""
+
+#. 34Lr6
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"hd_id3150896\n"
+"help.text"
+msgid "<variable id=\"countblank_head\"><link href=\"text/scalc/01/04060181.xhp#countblank\">COUNTBLANK</link></variable>"
+msgstr ""
+
+#. HUWNd
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3155260\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_ANZAHLLEEREZELLEN\">Returns the number of empty cells.</ahelp>"
+msgstr ""
+
+#. e7BZV
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3153931\n"
+"help.text"
+msgid "COUNTBLANK(Range)"
+msgstr ""
+
+#. AQCFv
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3149512\n"
+"help.text"
+msgid "Returns the number of empty cells in the cell range <emph>Range</emph>."
+msgstr ""
+
+#. aB6WZ
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3148586\n"
+"help.text"
+msgid "<item type=\"input\">=COUNTBLANK(A1:B2)</item> returns 4 if cells A1, A2, B1, and B2 are all empty."
+msgstr ""
+
+#. X2EEE
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"bm_id3164897\n"
+"help.text"
+msgid "<bookmark_value>COUNTIF function</bookmark_value> <bookmark_value>counting;specified cells</bookmark_value>"
+msgstr ""
+
+#. WFqfL
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"hd_id3164897\n"
+"help.text"
+msgid "<variable id=\"countif_head\"><link href=\"text/scalc/01/04060181.xhp#countif\">COUNTIF</link></variable>"
+msgstr ""
+
+#. NbceE
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3164926\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_ZAEHLENWENN\">Returns the number of cells that meet with certain criteria within a cell range.</ahelp>"
+msgstr ""
+
+#. ZS8Ej
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3164967\n"
+"help.text"
+msgid "COUNTIF(Range; Criterion)"
+msgstr ""
+
+#. sxGvB
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3164980\n"
+"help.text"
+msgid "<emph>Range</emph> is the range to which the criteria are to be applied."
+msgstr ""
+
+#. ZpDRv
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3166505\n"
+"help.text"
+msgid "A1:A10 is a cell range containing the numbers <item type=\"input\">2000</item> to <item type=\"input\">2009</item>. Cell B1 contains the number <item type=\"input\">2006</item>. In cell B2, you enter a formula:"
+msgstr ""
+
+#. fHBch
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3581652\n"
+"help.text"
+msgid "<item type=\"input\">=COUNTIF(A1:A10;2006)</item> - this returns 1."
+msgstr ""
+
+#. EdMbp
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id708639\n"
+"help.text"
+msgid "<item type=\"input\">=COUNTIF(A1:A10;B1)</item> - this returns 1."
+msgstr ""
+
+#. GRXFA
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id5169225\n"
+"help.text"
+msgid "<item type=\"input\">=COUNTIF(A1:A10;\">=2006\")</item> - this returns 4."
+msgstr ""
+
+#. ZhuPt
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id2118594\n"
+"help.text"
+msgid "<item type=\"input\">=COUNTIF(A1:A10;\"<\"&B1)</item> - when B1 contains <item type=\"input\">2006</item>, this returns 6."
+msgstr ""
+
+#. Esf3P
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id166020\n"
+"help.text"
+msgid "<item type=\"input\">=COUNTIF(A1:A10;C2)</item> where cell C2 contains the text <item type=\"input\">>2006</item> counts the number of cells in the range A1:A10 which are >2006."
+msgstr ""
+
+#. z6NgE
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id6386913\n"
+"help.text"
+msgid "To count only negative numbers: <item type=\"input\">=COUNTIF(A1:A10;\"<0\")</item>"
+msgstr ""
+
+#. GWdLd
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"bm_id3150267\n"
+"help.text"
+msgid "<bookmark_value>B function</bookmark_value> <bookmark_value>probabilities of samples with binomial distribution</bookmark_value>"
+msgstr ""
+
+#. NKDUL
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"hd_id3150267\n"
+"help.text"
+msgid "B"
+msgstr ""
+
+#. VDC2z
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3156061\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_B\">Returns the probability of a sample with binomial distribution.</ahelp>"
+msgstr ""
+
+#. tYKH6
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3148392\n"
+"help.text"
+msgid "B(Trials; SP; T1 [; T2])"
+msgstr ""
+
+#. 5gx3q
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3149002\n"
+"help.text"
+msgid "<emph>Trials</emph> is the number of independent trials."
+msgstr ""
+
+#. zLBbF
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3148875\n"
+"help.text"
+msgid "<emph>SP</emph> is the probability of success on each trial."
+msgstr ""
+
+#. BJYUG
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3145352\n"
+"help.text"
+msgid "<emph>T1</emph> defines the lower limit for the number of trials."
+msgstr ""
+
+#. EqPwz
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3149538\n"
+"help.text"
+msgid "<emph>T2</emph> (optional) defines the upper limit for the number of trials."
+msgstr ""
+
+#. 4BXFL
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3154633\n"
+"help.text"
+msgid "What is the probability with ten throws of the dice, that a six will come up exactly twice? The probability of a six (or any other number) is 1/6. The following formula combines these factors:"
+msgstr ""
+
+#. YrQVi
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3149393\n"
+"help.text"
+msgid "<item type=\"input\">=B(10;1/6;2)</item> returns a probability of 29%."
+msgstr ""
+
+#. yxmoz
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"bm_id3158416\n"
+"help.text"
+msgid "<bookmark_value>RSQ function</bookmark_value> <bookmark_value>determination coefficients</bookmark_value> <bookmark_value>regression analysis</bookmark_value>"
+msgstr ""
+
+#. xqMCd
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"hd_id3158416\n"
+"help.text"
+msgid "RSQ"
+msgstr ""
+
+#. iGuy8
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3154949\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_BESTIMMTHEITSMASS\">Returns the square of the Pearson correlation coefficient based on the given values.</ahelp> RSQ (also called determination coefficient) is a measure for the accuracy of an adjustment and can be used to produce a regression analysis."
+msgstr ""
+
+#. 9oPPj
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3155822\n"
+"help.text"
+msgid "RSQ(DataY; DataX)"
+msgstr ""
+
+#. GqiLB
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3150470\n"
+"help.text"
+msgid "<emph>DataY</emph> is an array or range of data points."
+msgstr ""
+
+#. Wxy2V
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3153181\n"
+"help.text"
+msgid "<emph>DataX</emph> is an array or range of data points."
+msgstr ""
+
+#. hCmTw
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3155991\n"
+"help.text"
+msgid "<item type=\"input\">=RSQ(A1:A20;B1:B20)</item> calculates the determination coefficient for both data sets in columns A and B."
+msgstr ""
+
+#. YFbAG
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"bm_id3145620\n"
+"help.text"
+msgid "<bookmark_value>BETAINV function</bookmark_value> <bookmark_value>cumulative probability density function;inverse of</bookmark_value>"
+msgstr ""
+
+#. H7CXC
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"hd_id3145620\n"
+"help.text"
+msgid "BETAINV"
+msgstr ""
+
+#. vr2VZ
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3149825\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_BETAINV\">Returns the inverse of the cumulative Beta probability density function.</ahelp>"
+msgstr ""
+
+#. 9kR89
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3156300\n"
+"help.text"
+msgid "BETAINV(Number; Alpha; Beta [; Start [; End]])"
+msgstr ""
+
+#. vj4KZ
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3149266\n"
+"help.text"
+msgid "<emph>Number</emph> is the probability associated with the Beta distribution for the given arguments <emph>Alpha</emph> and <emph>Beta</emph>."
+msgstr ""
+
+#. dxYmS
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3149710\n"
+"help.text"
+msgid "<emph>Alpha</emph> is a strictly positive parameter of the Beta distribution."
+msgstr ""
+
+#. kzkLn
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3156306\n"
+"help.text"
+msgid "<emph>Beta</emph> is a strictly positive parameter of the Beta distribution."
+msgstr ""
+
+#. GMG7C
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3150960\n"
+"help.text"
+msgid "<emph>Start</emph> (optional) is the lower bound of the output range of the function. If omitted, the default value is 0."
+msgstr ""
+
+#. NNPPv
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3151268\n"
+"help.text"
+msgid "<emph>End</emph> (optional) is the upper bound of the output range of the function. If omitted, the default value is 1."
+msgstr ""
+
+#. CfVEd
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3146859\n"
+"help.text"
+msgid "<input>=BETAINV(0.5;5;10)</input> returns the value 0.3257511553."
+msgstr ""
+
+#. hpGub
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id871621424421294\n"
+"help.text"
+msgid "<link href=\"https://wiki.documentfoundation.org/Documentation/Calc_Functions/BETAINV\">BETAINV Wiki page</link>"
+msgstr ""
+
+#. kAezG
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"bm_id2945620\n"
+"help.text"
+msgid "<bookmark_value>BETA.INV function</bookmark_value><bookmark_value>cumulative probability density function;inverse of</bookmark_value>"
+msgstr ""
+
+#. SdmAC
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"hd_id2945620\n"
+"help.text"
+msgid "BETA.INV"
+msgstr ""
+
+#. guzrk
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id2949825\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_BETAINV_MS\">Returns the inverse of the cumulative Beta probability density function.</ahelp>"
+msgstr ""
+
+#. xtGcA
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id2956300\n"
+"help.text"
+msgid "BETA.INV(Number; Alpha; Beta [; Start [; End]])"
+msgstr ""
+
+#. wYUz2
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id2949266\n"
+"help.text"
+msgid "<emph>Number</emph> is the probability associated with the Beta distribution for the given arguments <emph>Alpha</emph> and <emph>Beta</emph>."
+msgstr ""
+
+#. oRwEr
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id2949710\n"
+"help.text"
+msgid "<emph>Alpha</emph> is a strictly positive parameter of the Beta distribution."
+msgstr ""
+
+#. AcKWH
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id2956306\n"
+"help.text"
+msgid "<emph>Beta</emph> is a strictly positive parameter of the Beta distribution."
+msgstr ""
+
+#. Xijgg
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id2950960\n"
+"help.text"
+msgid "<emph>Start</emph> (optional) is the lower bound of the output range of the function. If omitted, the default value is 0."
+msgstr ""
+
+#. Rg7zt
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id2951268\n"
+"help.text"
+msgid "<emph>End</emph> (optional) is the upper bound of the output range of the function. If omitted, the default value is 1."
+msgstr ""
+
+#. dbj7p
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id2946859\n"
+"help.text"
+msgid "<input>=BETA.INV(0.5;5;10)</input> returns the value 0.3257511553."
+msgstr ""
+
+#. Qrj6p
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id841621424421294\n"
+"help.text"
+msgid "<link href=\"https://wiki.documentfoundation.org/Documentation/Calc_Functions/BETA.INV\">BETA.INV Wiki page</link>"
+msgstr ""
+
+#. fbcUB
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"bm_id3156096\n"
+"help.text"
+msgid "<bookmark_value>BETADIST function</bookmark_value> <bookmark_value>cumulative probability density function;calculating</bookmark_value>"
+msgstr ""
+
+#. i7WAn
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"hd_id3156096\n"
+"help.text"
+msgid "BETADIST"
+msgstr ""
+
+#. KQn8d
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3150880\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_BETAVERT\">Returns the beta function.</ahelp>"
+msgstr ""
+
+#. AKfrR
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3147571\n"
+"help.text"
+msgid "BETADIST(Number; Alpha; Beta [; Start [; End [; Cumulative]]])"
+msgstr ""
+
+#. jfrX3
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3156317\n"
+"help.text"
+msgid "<emph>Number</emph> is the value between <emph>Start</emph> and <emph>End</emph> at which to evaluate the function."
+msgstr ""
+
+#. keEva
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3156107\n"
+"help.text"
+msgid "<emph>Alpha</emph> is a parameter to the distribution."
+msgstr ""
+
+#. 4czap
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3153619\n"
+"help.text"
+msgid "<emph>Beta</emph> is a parameter to the distribution."
+msgstr ""
+
+#. 6QBee
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3150254\n"
+"help.text"
+msgid "<emph>Start</emph> (optional) is the lower bound for <emph>Number</emph>."
+msgstr ""
+
+#. 9Mzdj
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3149138\n"
+"help.text"
+msgid "<emph>End</emph> (optional) is the upper bound for <emph>Number</emph>."
+msgstr ""
+
+#. zU5US
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id012020091254453\n"
+"help.text"
+msgid "<emph>Cumulative</emph> (optional) can be 0 or False to calculate the probability density function. It can be any other value or True or omitted to calculate the cumulative distribution function."
+msgstr ""
+
+#. Do7Fo
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3156118\n"
+"help.text"
+msgid "<item type=\"input\">=BETADIST(0.75;3;4)</item> returns the value 0.96."
+msgstr ""
+
+#. J4qKJ
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"bm_id2956096\n"
+"help.text"
+msgid "<bookmark_value>BETA.DIST function</bookmark_value> <bookmark_value>cumulative probability density function;calculating</bookmark_value>"
+msgstr ""
+
+#. YoRLC
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"hd_id2956096\n"
+"help.text"
+msgid "BETA.DIST"
+msgstr ""
+
+#. 3CAeP
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id2950880\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_BETADIST_MS\">Returns the beta function.</ahelp>"
+msgstr ""
+
+#. qpb3A
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id2947571\n"
+"help.text"
+msgid "BETA.DIST(Number; Alpha; Beta; Cumulative [; Start [; End]])"
+msgstr ""
+
+#. VV9bt
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id2956317\n"
+"help.text"
+msgid "<emph>Number</emph> (required) is the value between <emph>Start</emph> and <emph>End</emph> at which to evaluate the function."
+msgstr ""
+
+#. LhCYX
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id2956107\n"
+"help.text"
+msgid "<emph>Alpha</emph> (required) is a parameter to the distribution."
+msgstr ""
+
+#. YiCGA
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id2953619\n"
+"help.text"
+msgid "<emph>Beta</emph> (required) is a parameter to the distribution."
+msgstr ""
+
+#. FY5Mb
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id062920141254453\n"
+"help.text"
+msgid "<emph>Cumulative</emph> (required) can be 0 or False to calculate the probability density function. It can be any other value or True to calculate the cumulative distribution function."
+msgstr ""
+
+#. LUTm6
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id2950254\n"
+"help.text"
+msgid "<emph>Start</emph> (optional) is the lower bound for <emph>Number</emph>."
+msgstr ""
+
+#. qUy9z
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id2949138\n"
+"help.text"
+msgid "<emph>End</emph> (optional) is the upper bound for <emph>Number</emph>."
+msgstr ""
+
+#. oM4CA
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id2956118\n"
+"help.text"
+msgid "<item type=\"input\">=BETA.DIST(2;8;10;1;1;3)</item> returns the value 0.6854706"
+msgstr ""
+
+#. wcJQY
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id2956119\n"
+"help.text"
+msgid "<item type=\"input\">=BETA.DIST(2;8;10;0;1;3)</item> returns the value 1.4837646"
+msgstr ""
+
+#. UniYw
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"bm_id3143228\n"
+"help.text"
+msgid "<bookmark_value>BINOMDIST function</bookmark_value>"
+msgstr ""
+
+#. HqQTx
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"hd_id3143228\n"
+"help.text"
+msgid "BINOMDIST"
+msgstr ""
+
+#. wgcwF
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3146897\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_BINOMVERT\">Returns the individual term binomial distribution probability.</ahelp>"
+msgstr ""
+
+#. JLBqH
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3156009\n"
+"help.text"
+msgid "BINOMDIST(X; Trials; SP; C)"
+msgstr ""
+
+#. vCwaa
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3154304\n"
+"help.text"
+msgid "<emph>X</emph> is the number of successes in a set of trials."
+msgstr ""
+
+#. iKkPQ
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3147492\n"
+"help.text"
+msgid "<emph>Trials</emph> is the number of independent trials."
+msgstr ""
+
+#. QqKmT
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3146085\n"
+"help.text"
+msgid "<emph>SP</emph> is the probability of success on each trial."
+msgstr ""
+
+#. 3dJBv
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3149760\n"
+"help.text"
+msgid "<emph>C</emph> = 0 calculates the probability of a single event and <emph>C</emph> = 1 calculates the cumulative probability."
+msgstr ""
+
+#. SmUaa
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3145666\n"
+"help.text"
+msgid "<item type=\"input\">=BINOMDIST(A1;12;0.5;0)</item> shows (if the values <item type=\"input\">0</item> to <item type=\"input\">12</item> are entered in A1) the probabilities for 12 flips of a coin that <emph>Heads</emph> will come up exactly the number of times entered in A1."
+msgstr ""
+
+#. FEzB6
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3150120\n"
+"help.text"
+msgid "<item type=\"input\">=BINOMDIST(A1;12;0.5;1)</item> shows the cumulative probabilities for the same series. For example, if A1 = <item type=\"input\">4</item>, the cumulative probability of the series is 0, 1, 2, 3 or 4 times <emph>Heads</emph> (non-exclusive OR)."
+msgstr ""
+
+#. nFFdt
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"bm_id2943228\n"
+"help.text"
+msgid "<bookmark_value>BINOM.DIST function</bookmark_value>"
+msgstr ""
+
+#. py4DG
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"hd_id2943228\n"
+"help.text"
+msgid "BINOM.DIST"
+msgstr ""
+
+#. iQPTB
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id2946897\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_BINOM_DIST_MS\">Returns the individual term binomial distribution probability.</ahelp>"
+msgstr ""
+
+#. ocFmp
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id2956009\n"
+"help.text"
+msgid "BINOM.DIST(X; Trials; SP; C)"
+msgstr ""
+
+#. EvpET
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id2954304\n"
+"help.text"
+msgid "<emph>X</emph> is the number of successes in a set of trials."
+msgstr ""
+
+#. DSctj
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id2947492\n"
+"help.text"
+msgid "<emph>Trials</emph> is the number of independent trials."
+msgstr ""
+
+#. EB9Fw
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id2946085\n"
+"help.text"
+msgid "<emph>SP</emph> is the probability of success on each trial."
+msgstr ""
+
+#. E8BLs
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id299760\n"
+"help.text"
+msgid "<emph>C</emph> = 0 calculates the probability of a single event and <emph>C</emph> = 1 calculates the cumulative probability."
+msgstr ""
+
+#. eTPtr
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id295666\n"
+"help.text"
+msgid "<item type=\"input\">=BINOM.DIST(A1;12;0.5;0)</item> shows (if the values <item type=\"input\">0</item> to <item type=\"input\">12</item> are entered in A1) the probabilities for 12 flips of a coin that <emph>Heads</emph> will come up exactly the number of times entered in A1."
+msgstr ""
+
+#. oQEBB
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id290120\n"
+"help.text"
+msgid "<item type=\"input\">=BINOM.DIST(A1;12;0.5;1)</item> shows the cumulative probabilities for the same series. For example, if A1 = <item type=\"input\">4</item>, the cumulative probability of the series is 0, 1, 2, 3 or 4 times <emph>Heads</emph> (non-exclusive OR)."
+msgstr ""
+
+#. rGKJM
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"bm_id2843228\n"
+"help.text"
+msgid "<bookmark_value>BINOM.INV function</bookmark_value>"
+msgstr ""
+
+#. MWXpS
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"hd_id2843228\n"
+"help.text"
+msgid "BINOM.INV"
+msgstr ""
+
+#. s5VnW
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id2846897\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_BINOM_INV_MS\">Returns the smallest value for which the cumulative binomial distribution is greater than or equal to a criterion value.</ahelp>"
+msgstr ""
+
+#. AZmxs
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id2856009\n"
+"help.text"
+msgid "BINOM.INV(Trials; SP; Alpha)"
+msgstr ""
+
+#. mUrC8
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id2847492\n"
+"help.text"
+msgid "<emph>Trials</emph> The total number of trials."
+msgstr ""
+
+#. Ydde5
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id2846085\n"
+"help.text"
+msgid "<emph>SP</emph> is the probability of success on each trial."
+msgstr ""
+
+#. Nnfmp
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id289760\n"
+"help.text"
+msgid "<emph>Alpha</emph> The border probability that is attained or exceeded."
+msgstr ""
+
+#. 9ZZFu
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id285666\n"
+"help.text"
+msgid "<item type=\"input\">=BINOM.INV(8;0.6;0.9)</item> returns 7, the smallest value for which the cumulative binomial distribution is greater than or equal to a criterion value."
+msgstr ""
+
+#. BAV48
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"bm_id0119200902432928\n"
+"help.text"
+msgid "<bookmark_value>CHISQINV function</bookmark_value>"
+msgstr ""
+
+#. 8XGBD
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"hd_id0119200902421451\n"
+"help.text"
+msgid "CHISQINV"
+msgstr ""
+
+#. bYDy8
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id0119200902421449\n"
+"help.text"
+msgid "<ahelp hid=\".\">Returns the inverse of CHISQDIST.</ahelp>"
+msgstr ""
+
+#. ELVTS
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id21585771564740\n"
+"help.text"
+msgid "CHISQINV(Probability; Degrees of Freedom)"
+msgstr ""
+
+#. KibGe
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id0119200902475286\n"
+"help.text"
+msgid "<emph>Probability</emph> is the probability value for which the inverse of the chi-square distribution is to be calculated."
+msgstr ""
+
+#. 5SyjX
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id0119200902475282\n"
+"help.text"
+msgid "<emph>Degrees Of Freedom</emph> is the degrees of freedom for the chi-square function."
+msgstr ""
+
+#. G8v5J
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"bm_id2919200902432928\n"
+"help.text"
+msgid "<bookmark_value>CHISQ.INV function</bookmark_value>"
+msgstr ""
+
+#. zBgd5
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"hd_id2919200902421451\n"
+"help.text"
+msgid "CHISQ.INV"
+msgstr ""
+
+#. sweX9
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id2919200902421449\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_CHISQINV_MS\">Returns the inverse of the left-tailed probability of the chi-square distribution.</ahelp>"
+msgstr ""
+
+#. kKGSE
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id1150504\n"
+"help.text"
+msgid "CHISQ.INV(Probability; DegreesFreedom)"
+msgstr ""
+
+#. UzSVT
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id2919200902475286\n"
+"help.text"
+msgid "<emph>Probability</emph> is the probability value for which the inverse of the chi-square distribution is to be calculated."
+msgstr ""
+
+#. Hzp98
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id2919200902475282\n"
+"help.text"
+msgid "<emph>Degrees Of Freedom</emph> is the degrees of freedom for the chi-square function."
+msgstr ""
+
+#. jKudB
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id275666\n"
+"help.text"
+msgid "<item type=\"input\">=CHISQ.INV(0,5;1)</item> returns 0.4549364231."
+msgstr ""
+
+#. eYKBG
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"bm_id3148835\n"
+"help.text"
+msgid "<bookmark_value>CHIINV function</bookmark_value>"
+msgstr ""
+
+#. 6wz6r
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"hd_id3148835\n"
+"help.text"
+msgid "CHIINV"
+msgstr ""
+
+#. sgKAu
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3149906\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_CHIINV\">Returns the inverse of the one-tailed probability of the chi-squared distribution.</ahelp>"
+msgstr ""
+
+#. Ymf9m
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3150504\n"
+"help.text"
+msgid "CHIINV(Number; DegreesFreedom)"
+msgstr ""
+
+#. nPgaN
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3154898\n"
+"help.text"
+msgid "<emph>Number</emph> is the value of the error probability."
+msgstr ""
+
+#. JDS6y
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3154294\n"
+"help.text"
+msgid "<emph>DegreesFreedom</emph> is the degrees of freedom of the experiment."
+msgstr ""
+
+#. 8jxkV
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3150777\n"
+"help.text"
+msgid "A die is thrown 1020 times. The numbers on the die 1 through 6 come up 195, 151, 148, 189, 183 and 154 times (observation values). The hypothesis that the die is not fixed is to be tested."
+msgstr ""
+
+#. S98CF
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3153062\n"
+"help.text"
+msgid "The Chi square distribution of the random sample is determined by the formula given above. Since the expected value for a given number on the die for n throws is n times 1/6, thus 1020/6 = 170, the formula returns a Chi square value of 13.27."
+msgstr ""
+
+#. 3XCGW
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3148806\n"
+"help.text"
+msgid "If the (observed) Chi square is greater than or equal to the (theoretical) Chi square CHIINV, the hypothesis will be discarded, since the deviation between theory and experiment is too great. If the observed Chi square is less that CHIINV, the hypothesis is confirmed with the indicated probability of error."
+msgstr ""
+
+#. 8tDhw
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3149763\n"
+"help.text"
+msgid "<item type=\"input\">=CHIINV(0.05;5)</item> returns 11.07."
+msgstr ""
+
+#. ZDwAj
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3159142\n"
+"help.text"
+msgid "<item type=\"input\">=CHIINV(0.02;5)</item> returns 13.39."
+msgstr ""
+
+#. fvNEF
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3158401\n"
+"help.text"
+msgid "If the probability of error is 5%, the die is not true. If the probability of error is 2%, there is no reason to believe it is fixed."
+msgstr ""
+
+#. qof4M
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"bm_id2948835\n"
+"help.text"
+msgid "<bookmark_value>CHISQ.INV.RT function</bookmark_value>"
+msgstr ""
+
+#. unAAZ
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"hd_id2948835\n"
+"help.text"
+msgid "CHISQ.INV.RT"
+msgstr ""
+
+#. UAFyq
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id2949906\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_CHIINV_MS\">Returns the inverse of the one-tailed probability of the chi-squared distribution.</ahelp>"
+msgstr ""
+
+#. yDWyW
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id2950504\n"
+"help.text"
+msgid "CHISQ.INV.RT(Number; DegreesFreedom)"
+msgstr ""
+
+#. LLocG
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id2954898\n"
+"help.text"
+msgid "<emph>Number</emph> is the value of the error probability."
+msgstr ""
+
+#. dBNEW
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id2954294\n"
+"help.text"
+msgid "<emph>DegreesFreedom</emph> is the degrees of freedom of the experiment."
+msgstr ""
+
+#. FeCGg
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id2950777\n"
+"help.text"
+msgid "A die is thrown 1020 times. The numbers on the die 1 through 6 come up 195, 151, 148, 189, 183 and 154 times (observation values). The hypothesis that the die is not fixed is to be tested."
+msgstr ""
+
+#. USHh6
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id2953062\n"
+"help.text"
+msgid "The Chi square distribution of the random sample is determined by the formula given above. Since the expected value for a given number on the die for n throws is n times 1/6, thus 1020/6 = 170, the formula returns a Chi square value of 13.27."
+msgstr ""
+
+#. vp33a
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id2948806\n"
+"help.text"
+msgid "If the (observed) Chi square is greater than or equal to the (theoretical) Chi square CHIINV, the hypothesis will be discarded, since the deviation between theory and experiment is too great. If the observed Chi square is less that CHIINV, the hypothesis is confirmed with the indicated probability of error."
+msgstr ""
+
+#. 2vYvm
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id2949763\n"
+"help.text"
+msgid "<item type=\"input\">=CHISQ.INV.RT(0.05;5)</item> returns 11.0704976935."
+msgstr ""
+
+#. mCnAh
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id2959142\n"
+"help.text"
+msgid "<item type=\"input\">=CHISQ.INV.RT(0.02;5)</item> returns 13.388222599."
+msgstr ""
+
+#. kJWrn
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id2958401\n"
+"help.text"
+msgid "If the probability of error is 5%, the die is not true. If the probability of error is 2%, there is no reason to believe it is fixed."
+msgstr ""
+
+#. hui6m
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"bm_id3154260\n"
+"help.text"
+msgid "<bookmark_value>CHITEST function</bookmark_value>"
+msgstr ""
+
+#. VuKE2
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"hd_id3154260\n"
+"help.text"
+msgid "CHITEST"
+msgstr ""
+
+#. sytmD
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3151052\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_CHITEST\">Returns the probability of a deviance from a random distribution of two test series based on the chi-squared test for independence.</ahelp> CHITEST returns the chi-squared distribution of the data."
+msgstr ""
+
+#. xV9Ae
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3148925\n"
+"help.text"
+msgid "The probability determined by CHITEST can also be determined with CHIDIST, in which case the Chi square of the random sample must then be passed as a parameter instead of the data row."
+msgstr ""
+
+#. FQEZF
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3149162\n"
+"help.text"
+msgid "CHITEST(DataB; DataE)"
+msgstr ""
+
+#. KYPvX
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3158421\n"
+"help.text"
+msgid "<emph>DataB</emph> is the array of the observations."
+msgstr ""
+
+#. iJK7y
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3166453\n"
+"help.text"
+msgid "<emph>DataE</emph> is the range of the expected values."
+msgstr ""
+
+#. rEABj
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3149481\n"
+"help.text"
+msgid "<item type=\"input\">=CHITEST(A1:A6;B1:B6)</item> equals 0.02. This is the probability which suffices the observed data of the theoretical Chi-square distribution."
+msgstr ""
+
+#. Gt8M7
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"bm_id2954260\n"
+"help.text"
+msgid "<bookmark_value>CHISQ.TEST function</bookmark_value>"
+msgstr ""
+
+#. h5wnW
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"hd_id2954260\n"
+"help.text"
+msgid "CHISQ.TEST"
+msgstr ""
+
+#. TEfCH
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id2951052\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_CHITEST_MS\">Returns the probability of a deviance from a random distribution of two test series based on the chi-squared test for independence.</ahelp> CHISQ.TEST returns the chi-squared distribution of the data."
+msgstr ""
+
+#. Uf7CA
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id2948925\n"
+"help.text"
+msgid "The probability determined by CHISQ.TEST can also be determined with CHISQ.DIST, in which case the Chi square of the random sample must then be passed as a parameter instead of the data row."
+msgstr ""
+
+#. zGBVz
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id2949162\n"
+"help.text"
+msgid "CHISQ.TEST(DataB; DataE)"
+msgstr ""
+
+#. UDBk6
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id2958421\n"
+"help.text"
+msgid "<emph>DataB</emph> is the array of the observations."
+msgstr ""
+
+#. K7dTB
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id2966453\n"
+"help.text"
+msgid "<emph>DataE</emph> is the range of the expected values."
+msgstr ""
+
+#. gPYqM
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id2954096\n"
+"help.text"
+msgid "Data_B (observed)"
+msgstr ""
+
+#. YBiAs
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id2952948\n"
+"help.text"
+msgid "Data_E (expected)"
+msgstr ""
+
+#. CCSNU
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id2949481\n"
+"help.text"
+msgid "<item type=\"input\">=CHISQ.TEST(A1:A6;B1:B6)</item> equals 0.0209708029. This is the probability which suffices the observed data of the theoretical Chi-square distribution."
+msgstr ""
+
+#. i2JiW
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"bm_id3148690\n"
+"help.text"
+msgid "<bookmark_value>CHIDIST function</bookmark_value>"
+msgstr ""
+
+#. 4bowE
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"hd_id3148690\n"
+"help.text"
+msgid "CHIDIST"
+msgstr ""
+
+#. QHbpD
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3156338\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_CHIVERT\">Returns the probability value from the indicated Chi square that a hypothesis is confirmed.</ahelp> CHIDIST compares the Chi square value to be given for a random sample that is calculated from the sum of (observed value-expected value)^2/expected value for all values with the theoretical Chi square distribution and determines from this the probability of error for the hypothesis to be tested."
+msgstr ""
+
+#. ACBVU
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3151316\n"
+"help.text"
+msgid "The probability determined by CHIDIST can also be determined by CHITEST."
+msgstr ""
+
+#. Aqvza
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3158439\n"
+"help.text"
+msgid "CHIDIST(Number; DegreesFreedom)"
+msgstr ""
+
+#. DD6iS
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3148675\n"
+"help.text"
+msgid "<emph>Number</emph> is the chi-square value of the random sample used to determine the error probability."
+msgstr ""
+
+#. HKCk4
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3155615\n"
+"help.text"
+msgid "<emph>DegreesFreedom</emph> are the degrees of freedom of the experiment."
+msgstr ""
+
+#. pEtQp
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3145774\n"
+"help.text"
+msgid "<item type=\"input\">=CHIDIST(13.27; 5)</item> equals 0.02."
+msgstr ""
+
+#. ED5xr
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3156141\n"
+"help.text"
+msgid "If the Chi square value of the random sample is 13.27 and if the experiment has 5 degrees of freedom, then the hypothesis is assured with a probability of error of 2%."
+msgstr ""
+
+#. fAFCm
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"bm_id2848690\n"
+"help.text"
+msgid "<bookmark_value>CHISQ.DIST function</bookmark_value>"
+msgstr ""
+
+#. FEGDg
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"hd_id2848690\n"
+"help.text"
+msgid "CHISQ.DIST"
+msgstr ""
+
+#. TA6Uq
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id2856338\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_CHISQDIST_MS\">Returns the probability density function or the cumulative distribution function for the chi-square distribution.</ahelp>"
+msgstr ""
+
+#. eTnks
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id2858439\n"
+"help.text"
+msgid "CHISQ.DIST(Number; DegreesFreedom; Cumulative)"
+msgstr ""
+
+#. gCLJq
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id2848675\n"
+"help.text"
+msgid "<emph>Number</emph> is the chi-square value of the random sample used to determine the error probability."
+msgstr ""
+
+#. GGYCe
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id2855615\n"
+"help.text"
+msgid "<emph>DegreesFreedom</emph> are the degrees of freedom of the experiment."
+msgstr ""
+
+#. bBVjB
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id282020091254453\n"
+"help.text"
+msgid "<emph>Cumulative</emph> can be 0 or False to calculate the probability density function. It can be any other value or True to calculate the cumulative distribution function."
+msgstr ""
+
+#. 85qc6
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id2845774\n"
+"help.text"
+msgid "<item type=\"input\">=CHISQ.DIST(3; 2; 0) </item>equals 0.1115650801, the probability density function with 2 degrees of freedom, at x = 3."
+msgstr ""
+
+#. poM23
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id2745774\n"
+"help.text"
+msgid "<item type=\"input\">=CHISQ.DIST(3; 2; 1) </item>equals 0.7768698399, the cumulative chi-square distribution with 2 degrees of freedom, at the value x = 3."
+msgstr ""
+
+#. NE9BQ
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"bm_id2948690\n"
+"help.text"
+msgid "<bookmark_value>CHISQ.DIST.RT function</bookmark_value>"
+msgstr ""
+
+#. R5hxs
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"hd_id2948690\n"
+"help.text"
+msgid "CHISQ.DIST.RT"
+msgstr ""
+
+#. BqVBu
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id2956338\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_CHIVERT_MS\">Returns the probability value from the indicated Chi square that a hypothesis is confirmed.</ahelp> CHISQ.DIST.RT compares the Chi square value to be given for a random sample that is calculated from the sum of (observed value-expected value)^2/expected value for all values with the theoretical Chi square distribution and determines from this the probability of error for the hypothesis to be tested."
+msgstr ""
+
+#. i9AME
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id2951316\n"
+"help.text"
+msgid "The probability determined by CHISQ.DIST.RT can also be determined by CHITEST."
+msgstr ""
+
+#. 2ZmC6
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id2958439\n"
+"help.text"
+msgid "CHISQ.DIST.RT(Number; DegreesFreedom)"
+msgstr ""
+
+#. hC5Pn
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id2948675\n"
+"help.text"
+msgid "<emph>Number</emph> is the chi-square value of the random sample used to determine the error probability."
+msgstr ""
+
+#. 9Xufc
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id2955615\n"
+"help.text"
+msgid "<emph>DegreesFreedom</emph> are the degrees of freedom of the experiment."
+msgstr ""
+
+#. GbrAJ
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id2945774\n"
+"help.text"
+msgid "<item type=\"input\">=CHISQ.DIST.RT(13.27; 5)</item> equals 0.0209757694."
+msgstr ""
+
+#. C7m4A
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id2956141\n"
+"help.text"
+msgid "If the Chi square value of the random sample is 13.27 and if the experiment has 5 degrees of freedom, then the hypothesis is assured with a probability of error of 2%."
+msgstr ""
+
+#. qbkUf
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"bm_id0119200902231887\n"
+"help.text"
+msgid "<bookmark_value>CHISQDIST function</bookmark_value> <bookmark_value>chi-square distribution</bookmark_value>"
+msgstr ""
+
+#. G72s9
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"hd_id0119200901583452\n"
+"help.text"
+msgid "CHISQDIST"
+msgstr ""
+
+#. dUYdD
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id0119200901583471\n"
+"help.text"
+msgid "<ahelp hid=\".\">Returns the value of the probability density function or the cumulative distribution function for the chi-square distribution.</ahelp>"
+msgstr ""
+
+#. 9t3Cb
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id0119200902395679\n"
+"help.text"
+msgid "CHISQDIST(Number; Degrees Of Freedom [; Cumulative])"
+msgstr ""
+
+#. nLEaF
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id011920090239564\n"
+"help.text"
+msgid "<emph>Number</emph> is the number for which the function is to be calculated."
+msgstr ""
+
+#. NGD4K
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id0119200902395660\n"
+"help.text"
+msgid "<emph>Degrees Of Freedom</emph> is the degrees of freedom for the chi-square function."
+msgstr ""
+
+#. XwNAs
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id0119200902395623\n"
+"help.text"
+msgid "<emph>Cumulative</emph> (optional): 0 or False calculates the probability density function. Other values or True or omitted calculates the cumulative distribution function."
+msgstr ""
+
+#. QBYrD
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"bm_id3150603\n"
+"help.text"
+msgid "<bookmark_value>EXPONDIST function</bookmark_value> <bookmark_value>exponential distributions</bookmark_value>"
+msgstr ""
+
+#. pPiNF
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"hd_id3150603\n"
+"help.text"
+msgid "EXPONDIST"
+msgstr ""
+
+#. PRnz8
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3149563\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_EXPONVERT\">Returns the exponential distribution.</ahelp>"
+msgstr ""
+
+#. MrFDn
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3150987\n"
+"help.text"
+msgid "EXPONDIST(Number; Lambda; C)"
+msgstr ""
+
+#. hFuao
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3154663\n"
+"help.text"
+msgid "<emph>Number</emph> is the value of the function."
+msgstr ""
+
+#. P6fSV
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3154569\n"
+"help.text"
+msgid "<emph>Lambda</emph> is the parameter value."
+msgstr ""
+
+#. MjdA5
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3147332\n"
+"help.text"
+msgid "<emph>C</emph> is a logical value that determines the form of the function. <emph>C = 0</emph> calculates the density function, and <emph>C = 1</emph> calculates the distribution."
+msgstr ""
+
+#. YenkE
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3150357\n"
+"help.text"
+msgid "<item type=\"input\">=EXPONDIST(3;0.5;1)</item> returns 0.78."
+msgstr ""
+
+#. zSBBn
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"bm_id2950603\n"
+"help.text"
+msgid "<bookmark_value>EXPON.DIST function</bookmark_value> <bookmark_value>exponential distributions</bookmark_value>"
+msgstr ""
+
+#. 3AfCq
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"hd_id2950603\n"
+"help.text"
+msgid "EXPON.DIST"
+msgstr ""
+
+#. 2Nrho
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id2949563\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_EXP_DIST_MS\">Returns the exponential distribution.</ahelp>"
+msgstr ""
+
+#. VrTRp
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id2950987\n"
+"help.text"
+msgid "EXPON.DIST(Number; Lambda; C)"
+msgstr ""
+
+#. c42NV
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id2954663\n"
+"help.text"
+msgid "<emph>Number</emph> is the value of the function."
+msgstr ""
+
+#. 2sGzU
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id2954569\n"
+"help.text"
+msgid "<emph>Lambda</emph> is the parameter value."
+msgstr ""
+
+#. Rmw6s
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id2947332\n"
+"help.text"
+msgid "<emph>C</emph> is a logical value that determines the form of the function. <emph>C = 0</emph> calculates the density function, and <emph>C = 1</emph> calculates the distribution."
+msgstr ""
+
+#. DF6kg
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id2950357\n"
+"help.text"
+msgid "<item type=\"input\">=EXPON.DIST(3;0.5;1)</item> returns 0.7768698399."
+msgstr ""
+
+#. EcuRS
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"tit\n"
+"help.text"
+msgid "Statistical Functions Part Two"
+msgstr ""
+
+#. MAPpV
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"hd_id3154372\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 ""
+
+#. dGFBq
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"bm_id3145388\n"
+"help.text"
+msgid "<bookmark_value>FINV function</bookmark_value> <bookmark_value>inverse F probability distribution</bookmark_value>"
+msgstr ""
+
+#. bFCUG
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"hd_id3145388\n"
+"help.text"
+msgid "FINV"
+msgstr ""
+
+#. GG7mb
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3155089\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 ""
+
+#. TengJ
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3153068\n"
+"help.text"
+msgid "FINV(Number; DegreesFreedom1; DegreesFreedom2)"
+msgstr ""
+
+#. KFEHp
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3146866\n"
+"help.text"
+msgid "<emph>Number</emph> is probability value for which the inverse F distribution is to be calculated."
+msgstr ""
+
+#. P3kD7
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3153914\n"
+"help.text"
+msgid "<emph>DegreesFreedom1</emph> is the number of degrees of freedom in the numerator of the F distribution."
+msgstr ""
+
+#. cEo5Q
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3148607\n"
+"help.text"
+msgid "<emph>DegreesFreedom2</emph> is the number of degrees of freedom in the denominator of the F distribution."
+msgstr ""
+
+#. o23DQ
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3145073\n"
+"help.text"
+msgid "<item type=\"input\">=FINV(0.5;5;10)</item> yields 0.93."
+msgstr ""
+
+#. qufjZ
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"bm_id2945388\n"
+"help.text"
+msgid "<bookmark_value>F.INV function</bookmark_value> <bookmark_value>Values of the inverse left tail of the F distribution</bookmark_value>"
+msgstr ""
+
+#. mfp9b
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"hd_id2945388\n"
+"help.text"
+msgid "F.INV"
+msgstr ""
+
+#. dhG8L
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id2955089\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 ""
+
+#. ZZUpG
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id2953068\n"
+"help.text"
+msgid "F.INV(Number; DegreesFreedom1; DegreesFreedom2)"
+msgstr ""
+
+#. 3t3iq
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id2946866\n"
+"help.text"
+msgid "<emph>Number</emph> is probability value for which the inverse F distribution is to be calculated."
+msgstr ""
+
+#. QWsR4
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id2953914\n"
+"help.text"
+msgid "<emph>DegreesFreedom1</emph> is the number of degrees of freedom in the numerator of the F distribution."
+msgstr ""
+
+#. 7rbzv
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id2948607\n"
+"help.text"
+msgid "<emph>DegreesFreedom2</emph> is the number of degrees of freedom in the denominator of the F distribution."
+msgstr ""
+
+#. DW9BE
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id2945073\n"
+"help.text"
+msgid "<item type=\"input\">=F.INV(0.5;5;10)</item> yields 0.9319331609."
+msgstr ""
+
+#. CWfPm
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"bm_id2845388\n"
+"help.text"
+msgid "<bookmark_value>F.INV.RT function</bookmark_value> <bookmark_value>Values of the inverse right tail of the F distribution</bookmark_value>"
+msgstr ""
+
+#. 7Ztar
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"hd_id2845388\n"
+"help.text"
+msgid "F.INV.RT"
+msgstr ""
+
+#. MEANj
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id2855089\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_F_INV_RT\">Returns the inverse right tail of the F distribution.</ahelp>"
+msgstr ""
+
+#. cZXD3
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id2853068\n"
+"help.text"
+msgid "F.INV.RT(Number; DegreesFreedom1; DegreesFreedom2)"
+msgstr ""
+
+#. Lrg3j
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id2846866\n"
+"help.text"
+msgid "<emph>Number</emph> is probability value for which the inverse F distribution is to be calculated."
+msgstr ""
+
+#. pAdQP
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id2853914\n"
+"help.text"
+msgid "<emph>DegreesFreedom1</emph> is the number of degrees of freedom in the numerator of the F distribution."
+msgstr ""
+
+#. g4hYw
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id2848607\n"
+"help.text"
+msgid "<emph>DegreesFreedom2</emph> is the number of degrees of freedom in the denominator of the F distribution."
+msgstr ""
+
+#. wwd5j
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id2845073\n"
+"help.text"
+msgid "<item type=\"input\">=F.INV.RT(0.5;5;10)</item> yields 0.9319331609."
+msgstr ""
+
+#. PxFa5
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"bm_id3150888\n"
+"help.text"
+msgid "<bookmark_value>FISHER function</bookmark_value>"
+msgstr ""
+
+#. DKZwe
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"hd_id3150888\n"
+"help.text"
+msgid "FISHER"
+msgstr ""
+
+#. hDWKe
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3155384\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 ""
+
+#. DiTG5
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3143220\n"
+"help.text"
+msgid "FISHER(Number)"
+msgstr ""
+
+#. 22KHP
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3159228\n"
+"help.text"
+msgid "<emph>Number</emph> is the value to be transformed."
+msgstr ""
+
+#. D2Hi7
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3149383\n"
+"help.text"
+msgid "<item type=\"input\">=FISHER(0.5)</item> yields 0.55."
+msgstr ""
+
+#. U6XBd
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"bm_id3155758\n"
+"help.text"
+msgid "<bookmark_value>FISHERINV function</bookmark_value> <bookmark_value>inverse of Fisher transformation</bookmark_value>"
+msgstr ""
+
+#. 35DYT
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"hd_id3155758\n"
+"help.text"
+msgid "FISHERINV"
+msgstr ""
+
+#. NBheE
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3154734\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 ""
+
+#. qz5Mb
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3146108\n"
+"help.text"
+msgid "FISHERINV(Number)"
+msgstr ""
+
+#. BCTgL
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3145115\n"
+"help.text"
+msgid "<emph>Number</emph> is the value that is to undergo reverse-transformation."
+msgstr ""
+
+#. WnyAB
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3150432\n"
+"help.text"
+msgid "<item type=\"input\">=FISHERINV(0.5)</item> yields 0.46."
+msgstr ""
+
+#. bydJJ
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"bm_id3151390\n"
+"help.text"
+msgid "<bookmark_value>FTEST function</bookmark_value>"
+msgstr ""
+
+#. PrsFu
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"hd_id3151390\n"
+"help.text"
+msgid "FTEST"
+msgstr ""
+
+#. 4CuRA
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3150534\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_FTEST\">Returns the result of an F test.</ahelp>"
+msgstr ""
+
+#. dfQhF
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3153024\n"
+"help.text"
+msgid "FTEST(Data1; Data2)"
+msgstr ""
+
+#. MPHx3
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3150032\n"
+"help.text"
+msgid "<emph>Data1</emph> is the first record array."
+msgstr ""
+
+#. BobBA
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3153018\n"
+"help.text"
+msgid "<emph>Data2</emph> is the second record array."
+msgstr ""
+
+#. JnYCp
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3159126\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 ""
+
+#. h3uEB
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"bm_id2951390\n"
+"help.text"
+msgid "<bookmark_value>F.TEST function</bookmark_value>"
+msgstr ""
+
+#. cZvT9
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"hd_id2951390\n"
+"help.text"
+msgid "F.TEST"
+msgstr ""
+
+#. CgMsG
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id2950534\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_F_TEST_MS\">Returns the result of an F test.</ahelp>"
+msgstr ""
+
+#. t5c7F
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id2953024\n"
+"help.text"
+msgid "F.TEST(Data1; Data2)"
+msgstr ""
+
+#. fAhSn
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id2950032\n"
+"help.text"
+msgid "<emph>Data1</emph> is the first record array."
+msgstr ""
+
+#. pYEB5
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id2953018\n"
+"help.text"
+msgid "<emph>Data2</emph> is the second record array."
+msgstr ""
+
+#. CDKEZ
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id2959126\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 ""
+
+#. yMEaw
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"bm_id3150372\n"
+"help.text"
+msgid "<bookmark_value>FDIST function</bookmark_value>"
+msgstr ""
+
+#. JbBAA
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"hd_id3150372\n"
+"help.text"
+msgid "FDIST"
+msgstr ""
+
+#. ZWskN
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3152981\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_FVERT\">Calculates the values of an F distribution.</ahelp>"
+msgstr ""
+
+#. M9VcP
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3145826\n"
+"help.text"
+msgid "FDIST(Number; DegreesFreedom1; DegreesFreedom2)"
+msgstr ""
+
+#. AUqZB
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3150461\n"
+"help.text"
+msgid "<emph>Number</emph> is the value for which the F distribution is to be calculated."
+msgstr ""
+
+#. TGtxW
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3150029\n"
+"help.text"
+msgid "<emph>degreesFreedom1</emph> is the degrees of freedom in the numerator in the F distribution."
+msgstr ""
+
+#. idJAF
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3146877\n"
+"help.text"
+msgid "<emph>degreesFreedom2</emph> is the degrees of freedom in the denominator in the F distribution."
+msgstr ""
+
+#. 3BS6a
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3150696\n"
+"help.text"
+msgid "<item type=\"input\">=FDIST(0.8;8;12)</item> yields 0.61."
+msgstr ""
+
+#. G3Qhd
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"bm_id2950372\n"
+"help.text"
+msgid "<bookmark_value>F.DIST function</bookmark_value>"
+msgstr ""
+
+#. JCFFP
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"hd_id2950372\n"
+"help.text"
+msgid "F.DIST"
+msgstr ""
+
+#. SiEUr
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id2952981\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_F_DIST_LT\">Calculates the values of the left tail of the F distribution.</ahelp>"
+msgstr ""
+
+#. kNsgP
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id2945826\n"
+"help.text"
+msgid "F.DIST(Number; DegreesFreedom1; DegreesFreedom2 [; Cumulative])"
+msgstr ""
+
+#. TeZSu
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id2950461\n"
+"help.text"
+msgid "<emph>Number</emph> is the value for which the F distribution is to be calculated."
+msgstr ""
+
+#. Dd9Fy
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id2950029\n"
+"help.text"
+msgid "<emph>degreesFreedom1</emph> is the degrees of freedom in the numerator in the F distribution."
+msgstr ""
+
+#. i5bYM
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id2946877\n"
+"help.text"
+msgid "<emph>degreesFreedom2</emph> is the degrees of freedom in the denominator in the F distribution."
+msgstr ""
+
+#. FECby
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id2946878\n"
+"help.text"
+msgid "<emph>Cumulative</emph> = 0 or False calculates the density function <emph>Cumulative</emph> = 1 or True calculates the distribution."
+msgstr ""
+
+#. 4kJ9b
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id2950696\n"
+"help.text"
+msgid "<item type=\"input\">=F.DIST(0.8;8;12;0)</item> yields 0.7095282499."
+msgstr ""
+
+#. QZ4ha
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id2950697\n"
+"help.text"
+msgid "<item type=\"input\">=F.DIST(0.8;8;12;1)</item> yields 0.3856603563."
+msgstr ""
+
+#. fxvxG
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"bm_id2850372\n"
+"help.text"
+msgid "<bookmark_value>F.DIST.RT function</bookmark_value>"
+msgstr ""
+
+#. eeM5C
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"hd_id280372\n"
+"help.text"
+msgid "F.DIST.RT"
+msgstr ""
+
+#. Sj3wx
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id2852981\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_F_DIST_RT\">Calculates the values of the right tail of the F distribution.</ahelp>"
+msgstr ""
+
+#. jffhA
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id2845826\n"
+"help.text"
+msgid "F.DIST.RT(Number; DegreesFreedom1; DegreesFreedom2)"
+msgstr ""
+
+#. iS6YC
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id2850461\n"
+"help.text"
+msgid "<emph>Number</emph> is the value for which the F distribution is to be calculated."
+msgstr ""
+
+#. TaWTm
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id2850029\n"
+"help.text"
+msgid "<emph>degreesFreedom1</emph> is the degrees of freedom in the numerator in the F distribution."
+msgstr ""
+
+#. RBfCC
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id2846877\n"
+"help.text"
+msgid "<emph>degreesFreedom2</emph> is the degrees of freedom in the denominator in the F distribution."
+msgstr ""
+
+#. dZCzj
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id2850696\n"
+"help.text"
+msgid "<item type=\"input\">=F.DIST.RT(0.8;8;12)</item> yields 0.6143396437."
+msgstr ""
+
+#. sP7Ai
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"bm_id0119200903223192\n"
+"help.text"
+msgid "<bookmark_value>GAMMA function</bookmark_value>"
+msgstr ""
+
+#. RByBD
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"hd_id0119200903205393\n"
+"help.text"
+msgid "GAMMA"
+msgstr ""
+
+#. 8RdE5
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id0119200903205379\n"
+"help.text"
+msgid "<ahelp hid=\".\">Returns the Gamma function value.</ahelp> Note that GAMMAINV is not the inverse of GAMMA, but of GAMMADIST."
+msgstr ""
+
+#. WT29Z
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id211585771824267\n"
+"help.text"
+msgid "GAMMA(Number)"
+msgstr ""
+
+#. 2DdQa
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id0119200903271614\n"
+"help.text"
+msgid "<emph>Number</emph> is the number for which the Gamma function value is to be calculated."
+msgstr ""
+
+#. evGF4
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"bm_id3154841\n"
+"help.text"
+msgid "<bookmark_value>GAMMAINV function</bookmark_value>"
+msgstr ""
+
+#. NAEn9
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"hd_id3154841\n"
+"help.text"
+msgid "GAMMAINV"
+msgstr ""
+
+#. VjdSc
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3153932\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 ""
+
+#. W5ECp
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3155828\n"
+"help.text"
+msgid "GAMMAINV(Number; Alpha; Beta)"
+msgstr ""
+
+#. 6dQsb
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3145138\n"
+"help.text"
+msgid "<emph>Number</emph> is the probability value for which the inverse Gamma distribution is to be calculated."
+msgstr ""
+
+#. A9MmF
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3152785\n"
+"help.text"
+msgid "<emph>Alpha</emph> is the parameter Alpha of the Gamma distribution."
+msgstr ""
+
+#. htBZo
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3154561\n"
+"help.text"
+msgid "<emph>Beta</emph> is the parameter Beta of the Gamma distribution."
+msgstr ""
+
+#. 9DEz7
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3153331\n"
+"help.text"
+msgid "<item type=\"input\">=GAMMAINV(0.8;1;1)</item> yields 1.61."
+msgstr ""
+
+#. SMBpY
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"bm_id2914841\n"
+"help.text"
+msgid "<bookmark_value>GAMMA.INV function</bookmark_value>"
+msgstr ""
+
+#. WS8Dh
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"hd_id2914841\n"
+"help.text"
+msgid "GAMMA.INV"
+msgstr ""
+
+#. bjbtj
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id2913932\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 ""
+
+#. enVLQ
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id291422405814\n"
+"help.text"
+msgid "This function is identical to GAMMAINV and was introduced for interoperability with other office suites."
+msgstr ""
+
+#. HMY9H
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id2915828\n"
+"help.text"
+msgid "GAMMA.INV(Number; Alpha; Beta)"
+msgstr ""
+
+#. fLqmy
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id2915138\n"
+"help.text"
+msgid "<emph>Number</emph> is the probability value for which the inverse Gamma distribution is to be calculated."
+msgstr ""
+
+#. xGjEE
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id2912785\n"
+"help.text"
+msgid "<emph>Alpha</emph> is the parameter Alpha of the Gamma distribution."
+msgstr ""
+
+#. FveGL
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id2914561\n"
+"help.text"
+msgid "<emph>Beta</emph> is the parameter Beta of the Gamma distribution."
+msgstr ""
+
+#. 4xDDD
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id2913331\n"
+"help.text"
+msgid "<item type=\"input\">=GAMMA.INV(0.8;1;1)</item> yields 1.61."
+msgstr ""
+
+#. qXs2u
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"bm_id3154806\n"
+"help.text"
+msgid "<bookmark_value>GAMMALN function</bookmark_value> <bookmark_value>natural logarithm of Gamma function</bookmark_value>"
+msgstr ""
+
+#. nocKU
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"hd_id3154806\n"
+"help.text"
+msgid "GAMMALN"
+msgstr ""
+
+#. HkbPu
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3148572\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_GAMMALN\">Returns the natural logarithm of the Gamma function: G(x).</ahelp>"
+msgstr ""
+
+#. FsWBA
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3153112\n"
+"help.text"
+msgid "GAMMALN(Number)"
+msgstr ""
+
+#. yxCQF
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3154502\n"
+"help.text"
+msgid "<emph>Number</emph> is the value for which the natural logarithm of the Gamma function is to be calculated."
+msgstr ""
+
+#. CCwMb
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3153730\n"
+"help.text"
+msgid "<item type=\"input\">=GAMMALN(2)</item> yields 0."
+msgstr ""
+
+#. m5t86
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"bm_id2914806\n"
+"help.text"
+msgid "<bookmark_value>GAMMALN.PRECISE function</bookmark_value> <bookmark_value>natural logarithm of Gamma function</bookmark_value>"
+msgstr ""
+
+#. GqFsu
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"hd_id2914806\n"
+"help.text"
+msgid "GAMMALN.PRECISE"
+msgstr ""
+
+#. kQGBj
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id2918572\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_GAMMALN_MS\">Returns the natural logarithm of the Gamma function: G(x).</ahelp>"
+msgstr ""
+
+#. EPFGG
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id2913112\n"
+"help.text"
+msgid "GAMMALN.PRECISE(Number)"
+msgstr ""
+
+#. AB9GD
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id2914502\n"
+"help.text"
+msgid "<emph>Number</emph> is the value for which the natural logarithm of the Gamma function is to be calculated."
+msgstr ""
+
+#. uQF39
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id2913730\n"
+"help.text"
+msgid "<item type=\"input\">=GAMMALN.PRECISE(2)</item> yields 0."
+msgstr ""
+
+#. mMbT3
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"bm_id3150132\n"
+"help.text"
+msgid "<bookmark_value>GAMMADIST function</bookmark_value>"
+msgstr ""
+
+#. Y2Ak5
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"hd_id3150132\n"
+"help.text"
+msgid "GAMMADIST"
+msgstr ""
+
+#. hUYKj
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3155931\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_GAMMAVERT\">Returns the values of a Gamma distribution.</ahelp>"
+msgstr ""
+
+#. meoeA
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id0119200903333675\n"
+"help.text"
+msgid "The inverse function is GAMMAINV."
+msgstr ""
+
+#. ER624
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3155436\n"
+"help.text"
+msgid "GAMMADIST(Number; Alpha; Beta [; C])"
+msgstr ""
+
+#. erGE4
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3150571\n"
+"help.text"
+msgid "<emph>Number</emph> is the value for which the Gamma distribution is to be calculated."
+msgstr ""
+
+#. u9N2F
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3145295\n"
+"help.text"
+msgid "<emph>Alpha</emph> is the parameter Alpha of the Gamma distribution."
+msgstr ""
+
+#. URsBX
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3151015\n"
+"help.text"
+msgid "<emph>Beta</emph> is the parameter Beta of the Gamma distribution."
+msgstr ""
+
+#. 99H9a
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3157972\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 ""
+
+#. EdgDo
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3145354\n"
+"help.text"
+msgid "<item type=\"input\">=GAMMADIST(2;1;1;1)</item> yields 0.86."
+msgstr ""
+
+#. KxBdg
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"bm_id240620142206421\n"
+"help.text"
+msgid "<bookmark_value>GAMMA.DIST function</bookmark_value>"
+msgstr ""
+
+#. AQoAB
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"hd_id2406201422120061\n"
+"help.text"
+msgid "GAMMA.DIST"
+msgstr ""
+
+#. xqDfL
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id2406201422414690\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_GAMMADIST_MS\">Returns the values of a Gamma distribution.</ahelp>"
+msgstr ""
+
+#. yftrF
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id24061422414690\n"
+"help.text"
+msgid "The inverse function is GAMMAINV or GAMMA.INV."
+msgstr ""
+
+#. P8Kc2
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id2406201422405814\n"
+"help.text"
+msgid "This function is similar to GAMMADIST and was introduced for interoperability with other office suites."
+msgstr ""
+
+#. Gk9Ch
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id240620142238475\n"
+"help.text"
+msgid "GAMMA.DIST(Number; Alpha; Beta; Cumulative)"
+msgstr ""
+
+#. kLcmS
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id2406201422385134\n"
+"help.text"
+msgid "<emph>Number</emph> is the value for which the Gamma distribution is to be calculated."
+msgstr ""
+
+#. zehYa
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id2406201422385590\n"
+"help.text"
+msgid "<emph>Alpha</emph> is the parameter Alpha of the Gamma distribution."
+msgstr ""
+
+#. Ncoxo
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id2406201422390458\n"
+"help.text"
+msgid "<emph>Beta</emph> is the parameter Beta of the Gamma distribution."
+msgstr ""
+
+#. a6oxX
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id2406201422391058\n"
+"help.text"
+msgid "<emph>Cumulative</emph> = 0 or False calculates the probability density function; <emph>Cumulative</emph> = 1, True, or any other value calculates the cumulative distribution function."
+msgstr ""
+
+#. Z7AS8
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id2406201422392251\n"
+"help.text"
+msgid "<item type=\"input\">=GAMMA.DIST(2;1;1;1)</item> yields 0.86."
+msgstr ""
+
+#. 6mr63
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"bm_id3150272\n"
+"help.text"
+msgid "<bookmark_value>GAUSS function</bookmark_value> <bookmark_value>normal distribution; standard</bookmark_value>"
+msgstr ""
+
+#. Uz5Sm
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"hd_id3150272\n"
+"help.text"
+msgid "GAUSS"
+msgstr ""
+
+#. NVGvv
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3149030\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_GAUSS\">Returns the standard normal cumulative distribution.</ahelp>"
+msgstr ""
+
+#. GB3Ci
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id2059694\n"
+"help.text"
+msgid "It is GAUSS(x)=NORMSDIST(x)-0.5"
+msgstr ""
+
+#. UNZDd
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3155368\n"
+"help.text"
+msgid "GAUSS(Number)"
+msgstr ""
+
+#. 88hAb
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3153228\n"
+"help.text"
+msgid "<emph>Number</emph> is the value for which the value of the standard normal distribution is to be calculated."
+msgstr ""
+
+#. GHQvB
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3154867\n"
+"help.text"
+msgid "<item type=\"input\">=GAUSS(0.19)</item> = 0.08"
+msgstr ""
+
+#. Fe79N
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3148594\n"
+"help.text"
+msgid "<item type=\"input\">=GAUSS(0.0375)</item> = 0.01"
+msgstr ""
+
+#. nrdNQ
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"bm_id3148425\n"
+"help.text"
+msgid "<bookmark_value>GEOMEAN function</bookmark_value> <bookmark_value>means;geometric</bookmark_value>"
+msgstr ""
+
+#. iBcgZ
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"hd_id3148425\n"
+"help.text"
+msgid "GEOMEAN"
+msgstr ""
+
+#. feyGb
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3156257\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_GEOMITTEL\">Returns the geometric mean of a sample.</ahelp>"
+msgstr ""
+
+#. YBnZG
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3153720\n"
+"help.text"
+msgid "GEOMEAN(<embedvar href=\"text/scalc/01/ful_func.xhp#number255_1\" markup=\"keep\"/>)"
+msgstr ""
+
+#. EGwom
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3149819\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 ""
+
+#. orW9n
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"bm_id3152966\n"
+"help.text"
+msgid "<bookmark_value>TRIMMEAN function</bookmark_value> <bookmark_value>means;of data set without margin data</bookmark_value>"
+msgstr ""
+
+#. EAAVp
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"hd_id3152966\n"
+"help.text"
+msgid "TRIMMEAN"
+msgstr ""
+
+#. zgYaB
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3149716\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 ""
+
+#. JvcGQ
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3154821\n"
+"help.text"
+msgid "TRIMMEAN(Data; Alpha)"
+msgstr ""
+
+#. CqTC5
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3155834\n"
+"help.text"
+msgid "<emph>Data</emph> is the array of data in the sample."
+msgstr ""
+
+#. sCq8s
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3156304\n"
+"help.text"
+msgid "<emph>Alpha</emph> is the percentage of the marginal data that will not be taken into consideration."
+msgstr ""
+
+#. WTT6h
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3156130\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 ""
+
+#. 72brA
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"bm_id3153216\n"
+"help.text"
+msgid "<bookmark_value>ZTEST function</bookmark_value>"
+msgstr ""
+
+#. rkrJC
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"hd_id3153216\n"
+"help.text"
+msgid "ZTEST"
+msgstr ""
+
+#. dhrcC
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3150758\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 ""
+
+#. GeqDU
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3153274\n"
+"help.text"
+msgid "ZTEST(Data; mu [; Sigma])"
+msgstr ""
+
+#. RKyE7
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3156109\n"
+"help.text"
+msgid "<emph>Data</emph> is the given sample, drawn from a normally distributed population."
+msgstr ""
+
+#. E3dLC
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3149977\n"
+"help.text"
+msgid "<emph>mu</emph> is the known mean of the population."
+msgstr ""
+
+#. ddokB
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3154740\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 ""
+
+#. EpJ8j
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id0305200911372999\n"
+"help.text"
+msgid "See also the <link href=\"https://wiki.documentfoundation.org/Documentation/How_Tos/Calc:_ZTEST_function\" name=\"wiki.documentfoundation.org Documentation/HowTo/Calc/ZTEST function\">Wiki page</link>."
+msgstr ""
+
+#. BM9oD
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"bm_id2953216\n"
+"help.text"
+msgid "<bookmark_value>Z.TEST function</bookmark_value>"
+msgstr ""
+
+#. ycBEg
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"hd_id2953216\n"
+"help.text"
+msgid "Z.TEST"
+msgstr ""
+
+#. xo3Fc
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id2950758\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 ""
+
+#. Ug83K
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id2953274\n"
+"help.text"
+msgid "Z.TEST(Data; mu [; Sigma])"
+msgstr ""
+
+#. 2peSH
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id2956109\n"
+"help.text"
+msgid "<emph>Data</emph> is the given sample, drawn from a normally distributed population."
+msgstr ""
+
+#. havEd
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id2949977\n"
+"help.text"
+msgid "<emph>mu</emph> is the known mean of the population."
+msgstr ""
+
+#. uuVdM
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id2954740\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 ""
+
+#. sbnS9
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id2948770\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 ""
+
+#. E34M8
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"bm_id3153623\n"
+"help.text"
+msgid "<bookmark_value>HARMEAN function</bookmark_value> <bookmark_value>means;harmonic</bookmark_value>"
+msgstr ""
+
+#. QgAHe
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"hd_id3153623\n"
+"help.text"
+msgid "HARMEAN"
+msgstr ""
+
+#. Mp6mJ
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3155102\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_HARMITTEL\">Returns the harmonic mean of a data set.</ahelp>"
+msgstr ""
+
+#. EKBXf
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3149287\n"
+"help.text"
+msgid "HARMEAN(<embedvar href=\"text/scalc/01/ful_func.xhp#number255_1\" markup=\"keep\"/>)"
+msgstr ""
+
+#. DMCH7
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3146093\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 ""
+
+#. Cd5VE
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"bm_id3152801\n"
+"help.text"
+msgid "<bookmark_value>HYPGEOMDIST function</bookmark_value> <bookmark_value>sampling without replacement</bookmark_value>"
+msgstr ""
+
+#. 9mrAG
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"hd_id3152801\n"
+"help.text"
+msgid "HYPGEOMDIST"
+msgstr ""
+
+#. XWGNo
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3159341\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_HYPGEOMVERT\">Returns the hypergeometric distribution.</ahelp>"
+msgstr ""
+
+#. BEUMD
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3155388\n"
+"help.text"
+msgid "HYPGEOMDIST(X; NSample; Successes; NPopulation [; Cumulative])"
+msgstr ""
+
+#. ingyW
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3154933\n"
+"help.text"
+msgid "<emph>X</emph> is the number of results achieved in the random sample."
+msgstr ""
+
+#. EXbsZ
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3153106\n"
+"help.text"
+msgid "<emph>NSample</emph> is the size of the random sample."
+msgstr ""
+
+#. dxUiA
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3146992\n"
+"help.text"
+msgid "<emph>Successes</emph> is the number of possible results in the total population."
+msgstr ""
+
+#. CtC87
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3148826\n"
+"help.text"
+msgid "<emph>NPopulation </emph>is the size of the total population."
+msgstr ""
+
+#. MDMvu
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id231585952506847\n"
+"help.text"
+msgid "<emph>Cumulative </emph> (optional) specifies whether to calculate the probability mass function (FALSE or 0) or the cumulative distribution function (any other value). The probability mass function is the default if no value is specified for this parameter."
+msgstr ""
+
+#. WUiB6
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3154904\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 ""
+
+#. V8zPJ
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"bm_id2952801\n"
+"help.text"
+msgid "<bookmark_value>HYPGEOM.DIST function</bookmark_value> <bookmark_value>sampling without replacement</bookmark_value>"
+msgstr ""
+
+#. CoN4S
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"hd_id2952801\n"
+"help.text"
+msgid "HYPGEOM.DIST"
+msgstr ""
+
+#. CB8RU
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id2959341\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_HYP_GEOM_DIST_MS\">Returns the hypergeometric distribution.</ahelp>"
+msgstr ""
+
+#. cr6Cw
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id2955388\n"
+"help.text"
+msgid "HYPGEOM.DIST(X; NSample; Successes; NPopulation; Cumulative)"
+msgstr ""
+
+#. CuQSa
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id2954933\n"
+"help.text"
+msgid "<emph>X</emph> is the number of results achieved in the random sample."
+msgstr ""
+
+#. 6BMz6
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id2953106\n"
+"help.text"
+msgid "<emph>NSample</emph> is the size of the random sample."
+msgstr ""
+
+#. GvWAn
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id2946992\n"
+"help.text"
+msgid "<emph>Successes</emph> is the number of possible results in the total population."
+msgstr ""
+
+#. VEzuG
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id2948826\n"
+"help.text"
+msgid "<emph>NPopulation </emph>is the size of the total population."
+msgstr ""
+
+#. JG59B
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id2948827\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 ""
+
+#. xhCCb
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id2954904\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 ""
+
+#. FEcD8
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id2954905\n"
+"help.text"
+msgid "<item type=\"input\">=HYPGEOM.DIST(2;2;90;100;1)</item> yields 1."
+msgstr ""
+
+#. L3n3y
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"tit\n"
+"help.text"
+msgid "Statistical Functions Part Three"
+msgstr ""
+
+#. apt3v
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"hd_id3166425\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 ""
+
+#. bB7mP
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"bm_id3149530\n"
+"help.text"
+msgid "<bookmark_value>LARGE function</bookmark_value>"
+msgstr ""
+
+#. CBSo7
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"hd_id3149530\n"
+"help.text"
+msgid "LARGE"
+msgstr ""
+
+#. Hr8AM
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id3150518\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_KGROESSTE\">Returns the Rank_c-th largest value in a data set.</ahelp>"
+msgstr ""
+
+#. nrZUw
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id3154372\n"
+"help.text"
+msgid "LARGE(Data; RankC)"
+msgstr ""
+
+#. Z5puA
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id3152986\n"
+"help.text"
+msgid "<emph>Data</emph> is the cell range of data."
+msgstr ""
+
+#. PqrWi
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id3156448\n"
+"help.text"
+msgid "<emph>RankC</emph> is the ranking of the value. If RankC is an array, the function becomes an <link href=\"text/scalc/01/04060107.xhp\" name=\"array function\">array function</link>."
+msgstr ""
+
+#. 9gMJx
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id3148702\n"
+"help.text"
+msgid "<input>=LARGE(A1:C50;2)</input> gives the second largest value in A1:C50."
+msgstr ""
+
+#. fdcAk
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id3248702\n"
+"help.text"
+msgid "<input>=LARGE(A1:C50;B1:B5)</input> entered as an array function gives an array of the c-th largest value in A1:C50 with ranks defined in B1:B5."
+msgstr ""
+
+#. p8pZc
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"bm_id3154532\n"
+"help.text"
+msgid "<bookmark_value>SMALL function</bookmark_value>"
+msgstr ""
+
+#. mzbdE
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"hd_id3154532\n"
+"help.text"
+msgid "SMALL"
+msgstr ""
+
+#. 6ApAi
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id3157981\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_KKLEINSTE\">Returns the Rank_c-th smallest value in a data set.</ahelp>"
+msgstr ""
+
+#. jXJsY
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id3153974\n"
+"help.text"
+msgid "SMALL(Data; RankC)"
+msgstr ""
+
+#. LxZAE
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id3154540\n"
+"help.text"
+msgid "<emph>Data</emph> is the cell range of data."
+msgstr ""
+
+#. oJV9f
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id3155094\n"
+"help.text"
+msgid "<emph>RankC</emph> is the rank of the value. If RankC is an array, the function becomes an <link href=\"text/scalc/01/04060107.xhp\" name=\"array function\">array function</link>."
+msgstr ""
+
+#. 8BLf3
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id3149897\n"
+"help.text"
+msgid "<input>=SMALL(A1:C50;2)</input> gives the second smallest value in A1:C50."
+msgstr ""
+
+#. AuKCZ
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id3249897\n"
+"help.text"
+msgid "<input>=SMALL(A1:C50;B1:B5)</input> entered as an array function gives an array of the c-th smallest value in A1:C50 with ranks defined in B1:B5."
+msgstr ""
+
+#. KDBoE
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"bm_id3153559\n"
+"help.text"
+msgid "<bookmark_value>CONFIDENCE function</bookmark_value>"
+msgstr ""
+
+#. 9nXq7
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"hd_id3153559\n"
+"help.text"
+msgid "CONFIDENCE"
+msgstr ""
+
+#. 4ABAb
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id3153814\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_KONFIDENZ\">Returns the (1-alpha) confidence interval for a normal distribution.</ahelp>"
+msgstr ""
+
+#. 8K2G5
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id3147501\n"
+"help.text"
+msgid "CONFIDENCE(Alpha; StDev; Size)"
+msgstr ""
+
+#. DqcAB
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id3149872\n"
+"help.text"
+msgid "<emph>Alpha</emph> is the level of the confidence interval."
+msgstr ""
+
+#. CBEqd
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id3145324\n"
+"help.text"
+msgid "<emph>StDev</emph> is the standard deviation for the total population."
+msgstr ""
+
+#. mHvfH
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id3153075\n"
+"help.text"
+msgid "<emph>Size</emph> is the size of the total population."
+msgstr ""
+
+#. BJrpA
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id3153335\n"
+"help.text"
+msgid "<item type=\"input\">=CONFIDENCE(0.05;1.5;100)</item> gives 0.29."
+msgstr ""
+
+#. GCLue
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"bm_id2953559\n"
+"help.text"
+msgid "<bookmark_value>CONFIDENCE.T function</bookmark_value>"
+msgstr ""
+
+#. eHLzB
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"hd_id2953559\n"
+"help.text"
+msgid "CONFIDENCE.T"
+msgstr ""
+
+#. gsbQL
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id2953814\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_CONFIDENCE_T\">Returns the (1-alpha) confidence interval for a Student's t distribution.</ahelp>"
+msgstr ""
+
+#. khHBF
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id2947501\n"
+"help.text"
+msgid "CONFIDENCE.T(Alpha; StDev; Size)"
+msgstr ""
+
+#. P5YFG
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id2949872\n"
+"help.text"
+msgid "<emph>Alpha</emph> is the level of the confidence interval."
+msgstr ""
+
+#. bQwaZ
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id2945324\n"
+"help.text"
+msgid "<emph>StDev</emph> is the standard deviation for the total population."
+msgstr ""
+
+#. urFEo
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id2953075\n"
+"help.text"
+msgid "<emph>Size</emph> is the size of the total population."
+msgstr ""
+
+#. v37Jx
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id2953335\n"
+"help.text"
+msgid "<item type=\"input\">=CONFIDENCE.T(0.05;1.5;100)</item> gives 0.2976325427."
+msgstr ""
+
+#. dq7TB
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"bm_id2853559\n"
+"help.text"
+msgid "<bookmark_value>CONFIDENCE.NORM function</bookmark_value>"
+msgstr ""
+
+#. vYCr7
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"hd_id2853559\n"
+"help.text"
+msgid "CONFIDENCE.NORM"
+msgstr ""
+
+#. GqbDh
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id2853814\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_CONFIDENCE_N\">Returns the (1-alpha) confidence interval for a normal distribution.</ahelp>"
+msgstr ""
+
+#. t87Ts
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id2847501\n"
+"help.text"
+msgid "CONFIDENCE.NORM(Alpha; StDev; Size)"
+msgstr ""
+
+#. 2FBGV
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id2849872\n"
+"help.text"
+msgid "<emph>Alpha</emph> is the level of the confidence interval."
+msgstr ""
+
+#. NxWTM
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id2845324\n"
+"help.text"
+msgid "<emph>StDev</emph> is the standard deviation for the total population."
+msgstr ""
+
+#. FgvKt
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id2853075\n"
+"help.text"
+msgid "<emph>Size</emph> is the size of the total population."
+msgstr ""
+
+#. n5BXo
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id2853335\n"
+"help.text"
+msgid "<item type=\"input\">=CONFIDENCE.NORM(0.05;1.5;100)</item> gives 0.2939945977."
+msgstr ""
+
+#. 2RZme
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"bm_id3148746\n"
+"help.text"
+msgid "<bookmark_value>CORREL function</bookmark_value><bookmark_value>coefficient of correlation</bookmark_value>"
+msgstr ""
+
+#. khAGE
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"hd_id3148746\n"
+"help.text"
+msgid "CORREL"
+msgstr ""
+
+#. LGDKB
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id3147299\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_KORREL\">Returns the correlation coefficient between two data sets.</ahelp>"
+msgstr ""
+
+#. GVCK8
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id3153023\n"
+"help.text"
+msgid "CORREL(Data1; Data2)"
+msgstr ""
+
+#. GHV79
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id3150036\n"
+"help.text"
+msgid "<emph>Data1</emph> is the first data set."
+msgstr ""
+
+#. jQmib
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id3153021\n"
+"help.text"
+msgid "<emph>Data2</emph> is the second data set."
+msgstr ""
+
+#. tRoAB
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id3149941\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 ""
+
+#. cLGdF
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"bm_id3150652\n"
+"help.text"
+msgid "<bookmark_value>COVAR function</bookmark_value>"
+msgstr ""
+
+#. Whn8H
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"hd_id3150652\n"
+"help.text"
+msgid "COVAR"
+msgstr ""
+
+#. PyxZm
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id3146875\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_KOVAR\">Returns the covariance of the product of paired deviations.</ahelp>"
+msgstr ""
+
+#. e4Ztx
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id3150740\n"
+"help.text"
+msgid "COVAR(Data1; Data2)"
+msgstr ""
+
+#. DHWDD
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id3145827\n"
+"help.text"
+msgid "<emph>Data1</emph> is the first data set."
+msgstr ""
+
+#. bHVAY
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id3150465\n"
+"help.text"
+msgid "<emph>Data2</emph> is the second data set."
+msgstr ""
+
+#. gAEGY
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id3144748\n"
+"help.text"
+msgid "<item type=\"input\">=COVAR(A1:A30;B1:B30)</item>"
+msgstr ""
+
+#. FraHr
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"bm_id2950652\n"
+"help.text"
+msgid "<bookmark_value>COVARIANCE.P function</bookmark_value>"
+msgstr ""
+
+#. Cm2X5
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"hd_id2950652\n"
+"help.text"
+msgid "COVARIANCE.P"
+msgstr ""
+
+#. EcoZQ
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id2946875\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 ""
+
+#. mRijA
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id2950740\n"
+"help.text"
+msgid "COVARIANCE.P(Data1; Data2)"
+msgstr ""
+
+#. v94iP
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id2945827\n"
+"help.text"
+msgid "<emph>Data1</emph> is the first data set."
+msgstr ""
+
+#. 36GZS
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id2950465\n"
+"help.text"
+msgid "<emph>Data2</emph> is the second data set."
+msgstr ""
+
+#. BUFDd
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id2944748\n"
+"help.text"
+msgid "<item type=\"input\">=COVARIANCE.P(A1:A30;B1:B30)</item>"
+msgstr ""
+
+#. DGdK4
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"bm_id280652\n"
+"help.text"
+msgid "<bookmark_value>COVARIANCE.S function</bookmark_value>"
+msgstr ""
+
+#. 97kfB
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"hd_id2850652\n"
+"help.text"
+msgid "COVARIANCE.S"
+msgstr ""
+
+#. YuTmR
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id2846875\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 ""
+
+#. R5CkE
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id2850740\n"
+"help.text"
+msgid "COVARIANCE.S(Data1; Data2)"
+msgstr ""
+
+#. G7eyH
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id2845827\n"
+"help.text"
+msgid "<emph>Data1</emph> is the first data set."
+msgstr ""
+
+#. GFKnA
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id2850465\n"
+"help.text"
+msgid "<emph>Data2</emph> is the second data set."
+msgstr ""
+
+#. sAG8k
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id2844748\n"
+"help.text"
+msgid "<item type=\"input\">=COVARIANCE.S(A1:A30;B1:B30)</item>"
+msgstr ""
+
+#. XHGgs
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"bm_id3147472\n"
+"help.text"
+msgid "<bookmark_value>CRITBINOM function</bookmark_value>"
+msgstr ""
+
+#. SzX7B
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"hd_id3147472\n"
+"help.text"
+msgid "CRITBINOM"
+msgstr ""
+
+#. hUSNJ
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id3149254\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 ""
+
+#. zr46x
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id3148586\n"
+"help.text"
+msgid "CRITBINOM(Trials; SP; Alpha)"
+msgstr ""
+
+#. Tyv6i
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id3145593\n"
+"help.text"
+msgid "<emph>Trials</emph> is the total number of trials."
+msgstr ""
+
+#. Bk2fZ
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id3153084\n"
+"help.text"
+msgid "<emph>SP</emph> is the probability of success for one trial."
+msgstr ""
+
+#. CXBen
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id3149726\n"
+"help.text"
+msgid "<emph>Alpha</emph> is the threshold probability to be reached or exceeded."
+msgstr ""
+
+#. CB9AU
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id3148740\n"
+"help.text"
+msgid "<item type=\"input\">=CRITBINOM(100;0.5;0.1)</item> yields 44."
+msgstr ""
+
+#. rHwmt
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"bm_id3155956\n"
+"help.text"
+msgid "<bookmark_value>KURT function</bookmark_value>"
+msgstr ""
+
+#. NAnB8
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"hd_id3155956\n"
+"help.text"
+msgid "KURT"
+msgstr ""
+
+#. PFx4k
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id3153108\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_KURT\">Returns the kurtosis of a data set (at least 4 values required).</ahelp>"
+msgstr ""
+
+#. VpSiM
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id3154508\n"
+"help.text"
+msgid "KURT(<embedvar href=\"text/scalc/01/ful_func.xhp#number255_1\" markup=\"keep\"/>)"
+msgstr ""
+
+#. qFqj4
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id501585152669900\n"
+"help.text"
+msgid "The parameters should specify at least four values."
+msgstr ""
+
+#. V4wcF
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id3150016\n"
+"help.text"
+msgid "<item type=\"input\">=KURT(A1;A2;A3;A4;A5;A6)</item>"
+msgstr ""
+
+#. jEGQr
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"bm_id3150928\n"
+"help.text"
+msgid "<bookmark_value>LOGINV function</bookmark_value><bookmark_value>inverse of lognormal distribution</bookmark_value>"
+msgstr ""
+
+#. 3n4aT
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"hd_id3150928\n"
+"help.text"
+msgid "LOGINV"
+msgstr ""
+
+#. LWoHA
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id3145297\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_LOGINV\">Returns the inverse of the lognormal distribution.</ahelp>"
+msgstr ""
+
+#. kK6DB
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id3153049\n"
+"help.text"
+msgid "LOGINV(Number [; Mean [; StDev]])"
+msgstr ""
+
+#. vDVWm
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id3148390\n"
+"help.text"
+msgid "<emph>Number</emph> (required) is the probability value for which the inverse standard logarithmic distribution is to be calculated."
+msgstr ""
+
+#. aJATB
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id3149538\n"
+"help.text"
+msgid "<emph>Mean</emph> (optional) is the arithmetic mean of the standard logarithmic distribution (defaults to 0 if omitted)."
+msgstr ""
+
+#. PDJWU
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id3145355\n"
+"help.text"
+msgid "<emph>StDev</emph> (optional) is the standard deviation of the standard logarithmic distribution (defaults to 1 if omitted)."
+msgstr ""
+
+#. Uh6oi
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id3155623\n"
+"help.text"
+msgid "<item type=\"input\">=LOGINV(0.05;0;1)</item> returns 0.1930408167."
+msgstr ""
+
+#. gQ7EM
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"bm_id2901928\n"
+"help.text"
+msgid "<bookmark_value>LOGNORM.INV function</bookmark_value><bookmark_value>inverse of lognormal distribution</bookmark_value>"
+msgstr ""
+
+#. J2Zm9
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"hd_id2901928\n"
+"help.text"
+msgid "LOGNORM.INV"
+msgstr ""
+
+#. EHoeL
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id2901297\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_LOGINV_MS\">Returns the inverse of the lognormal distribution.</ahelp>"
+msgstr ""
+
+#. Nj7bL
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id290122405814\n"
+"help.text"
+msgid "This function is identical to LOGINV and was introduced for interoperability with other office suites."
+msgstr ""
+
+#. xAjhR
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id2901049\n"
+"help.text"
+msgid "LOGNORM.INV(Number ; Mean ; StDev)"
+msgstr ""
+
+#. p2y5k
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id2901390\n"
+"help.text"
+msgid "<emph>Number</emph> (required) is the probability value for which the inverse standard logarithmic distribution is to be calculated."
+msgstr ""
+
+#. sFACF
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id2901538\n"
+"help.text"
+msgid "<emph>Mean</emph> (required) is the arithmetic mean of the standard logarithmic distribution."
+msgstr ""
+
+#. PZ4w5
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id2901355\n"
+"help.text"
+msgid "<emph>StDev</emph> (required) is the standard deviation of the standard logarithmic distribution."
+msgstr ""
+
+#. UYg6S
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id2901623\n"
+"help.text"
+msgid "<item type=\"input\">=LOGNORM.INV(0.05;0;1)</item> returns 0.1930408167."
+msgstr ""
+
+#. spVtz
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"bm_id3158417\n"
+"help.text"
+msgid "<bookmark_value>LOGNORMDIST function</bookmark_value><bookmark_value>lognormal distribution</bookmark_value>"
+msgstr ""
+
+#. FWMyW
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"hd_id3158417\n"
+"help.text"
+msgid "LOGNORMDIST"
+msgstr ""
+
+#. bwd9F
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id3154953\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_LOGNORMVERT\">Returns the values of a lognormal distribution.</ahelp>"
+msgstr ""
+
+#. r4obV
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id3150686\n"
+"help.text"
+msgid "LOGNORMDIST(Number [; Mean [; StDev [; Cumulative]]])"
+msgstr ""
+
+#. BiGC6
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id3154871\n"
+"help.text"
+msgid "<emph>Number</emph> is the probability value for which the standard logarithmic distribution is to be calculated."
+msgstr ""
+
+#. sHpZv
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id3155820\n"
+"help.text"
+msgid "<emph>Mean</emph> (optional) is the mean value of the standard logarithmic distribution."
+msgstr ""
+
+#. zUAQh
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id3155991\n"
+"help.text"
+msgid "<emph>StDev</emph> (optional) is the standard deviation of the standard logarithmic distribution."
+msgstr ""
+
+#. PBogE
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id3155992\n"
+"help.text"
+msgid "<emph>Cumulative</emph> (optional) = 0 calculates the density function, Cumulative = 1 calculates the distribution."
+msgstr ""
+
+#. TCmfp
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id3149778\n"
+"help.text"
+msgid "<item type=\"input\">=LOGNORMDIST(0.1;0;1)</item> returns 0.01."
+msgstr ""
+
+#. cDRV3
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"bm_id2901417\n"
+"help.text"
+msgid "<bookmark_value>LOGNORM.DIST function</bookmark_value><bookmark_value>lognormal distribution</bookmark_value>"
+msgstr ""
+
+#. hhsFy
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"hd_id2908417\n"
+"help.text"
+msgid "LOGNORM.DIST"
+msgstr ""
+
+#. FyQNA
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id2904953\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_LOGNORMDIST_MS\">Returns the values of a lognormal distribution.</ahelp>"
+msgstr ""
+
+#. ZHrxv
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id2900686\n"
+"help.text"
+msgid "LOGNORM.DIST(Number; Mean; StDev; Cumulative)"
+msgstr ""
+
+#. nLfGx
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id2904871\n"
+"help.text"
+msgid "<emph>Number</emph> (required) is the probability value for which the standard logarithmic distribution is to be calculated."
+msgstr ""
+
+#. oRBDn
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id2905820\n"
+"help.text"
+msgid "<emph>Mean</emph> (required) is the mean value of the standard logarithmic distribution."
+msgstr ""
+
+#. tX6iZ
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id2905991\n"
+"help.text"
+msgid "<emph>StDev</emph> (required) is the standard deviation of the standard logarithmic distribution."
+msgstr ""
+
+#. ajzHR
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id2905992\n"
+"help.text"
+msgid "<emph>Cumulative</emph> (required) = 0 calculates the density function, Cumulative = 1 calculates the distribution."
+msgstr ""
+
+#. omgye
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id2909778\n"
+"help.text"
+msgid "<item type=\"input\">=LOGNORM.DIST(0.1;0;1;1)</item> returns 0.0106510993."
+msgstr ""
+
+#. QFUqZ
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"tit\n"
+"help.text"
+msgid "Statistical Functions Part Four"
+msgstr ""
+
+#. YxGDR
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3153415\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 ""
+
+#. CVfDF
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"bm_id3154511\n"
+"help.text"
+msgid "<bookmark_value>MAX function</bookmark_value>"
+msgstr ""
+
+#. x2aCp
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3154511\n"
+"help.text"
+msgid "<variable id=\"max_head\"><link href=\"text/scalc/01/04060184.xhp#max\">MAX</link></variable>"
+msgstr ""
+
+#. 4EQ9W
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3153709\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_MAX\">Returns the maximum value in a list of arguments.</ahelp>"
+msgstr ""
+
+#. B9REu
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id9282509\n"
+"help.text"
+msgid "Returns 0 if no numeric value and no error was encountered in the cell range(s) passed as cell reference(s). Text cells are ignored by MIN() and MAX(). The functions MINA() and MAXA() return 0 if no value (numeric or text) and no error was encountered. Passing a literal string argument to MIN() or MAX(), e.g. MIN(\"string\"), still results in an error."
+msgstr ""
+
+#. gTV5V
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3147340\n"
+"help.text"
+msgid "MAX(<embedvar href=\"text/scalc/01/ful_func.xhp#number255_1\" markup=\"keep\"/>)"
+msgstr ""
+
+#. giyJK
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3147343\n"
+"help.text"
+msgid "<item type=\"input\">=MAX(A1;A2;A3;50;100;200)</item> returns the largest value from the list."
+msgstr ""
+
+#. x6DYC
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3148485\n"
+"help.text"
+msgid "<item type=\"input\">=MAX(A1:B100)</item> returns the largest value from the list."
+msgstr ""
+
+#. DkUJF
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"bm_id3166426\n"
+"help.text"
+msgid "<bookmark_value>MAXA function</bookmark_value>"
+msgstr ""
+
+#. B6uTY
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3166426\n"
+"help.text"
+msgid "<variable id=\"maxa_head\"><link href=\"text/scalc/01/04060184.xhp#maxa\">MAXA</link></variable>"
+msgstr ""
+
+#. F49oQ
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3150363\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 ""
+
+#. HizWD
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id7689443\n"
+"help.text"
+msgid "The functions MINA() and MAXA() return 0 if no value (numeric or text) and no error was encountered."
+msgstr ""
+
+#. X7jxS
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3166431\n"
+"help.text"
+msgid "MAXA(<embedvar href=\"text/scalc/01/ful_func.xhp#number255_1\" markup=\"keep\"/>)"
+msgstr ""
+
+#. ZxXLp
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3156446\n"
+"help.text"
+msgid "<item type=\"input\">=MAXA(A1;A2;A3;50;100;200;\"Text\")</item> returns the largest value from the list."
+msgstr ""
+
+#. EGECF
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3149404\n"
+"help.text"
+msgid "<item type=\"input\">=MAXA(A1:B100)</item> returns the largest value from the list."
+msgstr ""
+
+#. FxJE5
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"bm_id3153820\n"
+"help.text"
+msgid "<bookmark_value>MEDIAN function</bookmark_value>"
+msgstr ""
+
+#. T4n9U
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3153820\n"
+"help.text"
+msgid "<variable id=\"median_head\"><link href=\"text/scalc/01/04060184.xhp#median\">MEDIAN</link></variable>"
+msgstr ""
+
+#. Ebi8h
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3151241\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 ""
+
+#. CGf4S
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3155264\n"
+"help.text"
+msgid "MEDIAN(<embedvar href=\"text/scalc/01/ful_func.xhp#number255_1\" markup=\"keep\"/>)"
+msgstr ""
+
+#. bDCXJ
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3145078\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 ""
+
+#. QNHLS
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3149126\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 ""
+
+#. eyRXF
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"bm_id3154541\n"
+"help.text"
+msgid "<bookmark_value>MIN function</bookmark_value>"
+msgstr ""
+
+#. SDG5E
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3154541\n"
+"help.text"
+msgid "<variable id=\"min_head\"><link href=\"text/scalc/01/04060184.xhp#min\">MIN</link></variable>"
+msgstr ""
+
+#. yVHdH
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3143222\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_MIN\">Returns the minimum value in a list of arguments.</ahelp>"
+msgstr ""
+
+#. ADC6n
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id2301400\n"
+"help.text"
+msgid "Returns 0 if no numeric value and no error was encountered in the cell range(s) passed as cell reference(s). Text cells are ignored by MIN() and MAX(). The functions MINA() and MAXA() return 0 if no value (numeric or text) and no error was encountered. Passing a literal string argument to MIN() or MAX(), e.g. MIN(\"string\"), still results in an error."
+msgstr ""
+
+#. YtBaP
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3146964\n"
+"help.text"
+msgid "MIN(<embedvar href=\"text/scalc/01/ful_func.xhp#number255_1\" markup=\"keep\"/>)"
+msgstr ""
+
+#. yutoe
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3154734\n"
+"help.text"
+msgid "<item type=\"input\">=MIN(A1:B100)</item> returns the smallest value in the list."
+msgstr ""
+
+#. XSXDU
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"bm_id3147504\n"
+"help.text"
+msgid "<bookmark_value>MINA function</bookmark_value>"
+msgstr ""
+
+#. YBxFd
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3147504\n"
+"help.text"
+msgid "<variable id=\"mina_head\"><link href=\"text/scalc/01/04060184.xhp#mina\">MINA</link></variable>"
+msgstr ""
+
+#. WeECE
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3147249\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 ""
+
+#. CdVcr
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id4294564\n"
+"help.text"
+msgid "The functions MINA() and MAXA() return 0 if no value (numeric or text) and no error was encountered."
+msgstr ""
+
+#. AG7MH
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3153336\n"
+"help.text"
+msgid "MINA(<embedvar href=\"text/scalc/01/ful_func.xhp#number255_1\" markup=\"keep\"/>)"
+msgstr ""
+
+#. TrF9C
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3147401\n"
+"help.text"
+msgid "<item type=\"input\">=MINA(1;\"Text\";20)</item> returns 0."
+msgstr ""
+
+#. Rgy2V
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3147295\n"
+"help.text"
+msgid "<item type=\"input\">=MINA(A1:B100)</item> returns the smallest value in the list."
+msgstr ""
+
+#. MTSTr
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"bm_id3166465\n"
+"help.text"
+msgid "<bookmark_value>AVEDEV function</bookmark_value><bookmark_value>averages;statistical functions</bookmark_value>"
+msgstr ""
+
+#. XsrPG
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3166465\n"
+"help.text"
+msgid "<variable id=\"avedev_head\"><link href=\"text/scalc/01/04060184.xhp#avedev\">AVEDEV</link></variable>"
+msgstr ""
+
+#. F6vKp
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3150373\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 ""
+
+#. sAUCf
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3145636\n"
+"help.text"
+msgid "AVEDEV(<embedvar href=\"text/scalc/01/ful_func.xhp#number255_1\" markup=\"keep\"/>)"
+msgstr ""
+
+#. UA5P6
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3153122\n"
+"help.text"
+msgid "<item type=\"input\">=AVEDEV(A1:A50)</item>"
+msgstr ""
+
+#. bGgPt
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"bm_id3145824\n"
+"help.text"
+msgid "<bookmark_value>AVERAGE function</bookmark_value>"
+msgstr ""
+
+#. TFPEi
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3145824\n"
+"help.text"
+msgid "<variable id=\"average_head\"><link href=\"text/scalc/01/04060184.xhp#average\">AVERAGE</link></variable>"
+msgstr ""
+
+#. FuZoD
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3150482\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_MITTELWERT\">Returns the average of the arguments.</ahelp>"
+msgstr ""
+
+#. K8QCj
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3154679\n"
+"help.text"
+msgid "AVERAGE(<embedvar href=\"text/scalc/01/ful_func.xhp#number255_1\" markup=\"keep\"/>)"
+msgstr ""
+
+#. AjUyH
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3151232\n"
+"help.text"
+msgid "<item type=\"input\">=AVERAGE(A1:A50)</item>"
+msgstr ""
+
+#. SpPo6
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"bm_id3148754\n"
+"help.text"
+msgid "<bookmark_value>AVERAGEA function</bookmark_value>"
+msgstr ""
+
+#. nwGjw
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3148754\n"
+"help.text"
+msgid "<variable id=\"averagea_head\"><link href=\"text/scalc/01/04060184.xhp#averagea\">AVERAGEA</link></variable>"
+msgstr ""
+
+#. V5nBj
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3145138\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_MITTELWERTA\">Returns the average of the arguments. The value of a text is 0.</ahelp>"
+msgstr ""
+
+#. opsEb
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3149734\n"
+"help.text"
+msgid "AVERAGEA(<embedvar href=\"text/scalc/01/ful_func.xhp#number255_1\" markup=\"keep\"/>)"
+msgstr ""
+
+#. sxYNi
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3150864\n"
+"help.text"
+msgid "<item type=\"input\">=AVERAGEA(A1:A50)</item>"
+msgstr ""
+
+#. iLCTX
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id110421803716508\n"
+"help.text"
+msgid "<embedvar href=\"text/scalc/01/func_averageif.xhp#averageif_head\"/>"
+msgstr ""
+
+#. K3rLb
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id5471656631510\n"
+"help.text"
+msgid "<embedvar href=\"text/scalc/01/func_averageifs.xhp#averageifs_head\"/>"
+msgstr ""
+
+#. hKE9h
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"bm_id3153933\n"
+"help.text"
+msgid "<bookmark_value>MODE function</bookmark_value><bookmark_value>most common value</bookmark_value>"
+msgstr ""
+
+#. VANGV
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3153933\n"
+"help.text"
+msgid "MODE"
+msgstr ""
+
+#. cZSEB
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3153085\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 ""
+
+#. DFEQv
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3155950\n"
+"help.text"
+msgid "MODE(<embedvar href=\"text/scalc/01/ful_func.xhp#number255_1\" markup=\"keep\"/>)"
+msgstr ""
+
+#. VYNy2
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3153733\n"
+"help.text"
+msgid "<item type=\"input\">=MODE(A1:A50)</item>"
+msgstr ""
+
+#. GipMF
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"bm_id2953933\n"
+"help.text"
+msgid "<bookmark_value>MODE.SNGL function</bookmark_value><bookmark_value>most common value</bookmark_value>"
+msgstr ""
+
+#. 7z62C
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id2953933\n"
+"help.text"
+msgid "MODE.SNGL"
+msgstr ""
+
+#. yUvoB
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id2953085\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 ""
+
+#. Y5cCt
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id2955950\n"
+"help.text"
+msgid "MODE.SNGL(<embedvar href=\"text/scalc/01/ful_func.xhp#number255_1\" markup=\"keep\"/>)"
+msgstr ""
+
+#. BGawC
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id2963792\n"
+"help.text"
+msgid "If the data set contains no duplicate data points, MODE.SNGL returns the #VALUE! error value."
+msgstr ""
+
+#. BRi5v
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id2953733\n"
+"help.text"
+msgid "<item type=\"input\">=MODE.SNGL(A1:A50)</item>"
+msgstr ""
+
+#. E3oGg
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"bm_id2853933\n"
+"help.text"
+msgid "<bookmark_value>MODE.MULT function</bookmark_value><bookmark_value>most common value</bookmark_value>"
+msgstr ""
+
+#. QHRCD
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id2853933\n"
+"help.text"
+msgid "MODE.MULT"
+msgstr ""
+
+#. vdYX6
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id2853085\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 ""
+
+#. zDERD
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id2855950\n"
+"help.text"
+msgid "MODE.MULT(<embedvar href=\"text/scalc/01/ful_func.xhp#number255_1\" markup=\"keep\"/>)"
+msgstr ""
+
+#. nrjtV
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id2863792\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 ""
+
+#. Y6jib
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id2853733\n"
+"help.text"
+msgid "<item type=\"input\">=MODE.MULT(A1:A50)</item>"
+msgstr ""
+
+#. RJkDj
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"bm_id3149879\n"
+"help.text"
+msgid "<bookmark_value>NEGBINOMDIST function</bookmark_value><bookmark_value>negative binomial distribution</bookmark_value>"
+msgstr ""
+
+#. GVBDJ
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3149879\n"
+"help.text"
+msgid "NEGBINOMDIST"
+msgstr ""
+
+#. qESD7
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3155437\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_NEGBINOMVERT\">Returns the negative binomial distribution.</ahelp>"
+msgstr ""
+
+#. EokAd
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3150935\n"
+"help.text"
+msgid "NEGBINOMDIST(X; R; SP)"
+msgstr ""
+
+#. dW6yF
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3153044\n"
+"help.text"
+msgid "<emph>X</emph> represents the value returned for unsuccessful tests."
+msgstr ""
+
+#. rC3qD
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3151018\n"
+"help.text"
+msgid "<emph>R</emph> represents the value returned for successful tests."
+msgstr ""
+
+#. vMAkE
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3148878\n"
+"help.text"
+msgid "<emph>SP</emph> is the probability of the success of an attempt."
+msgstr ""
+
+#. J26hB
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3148770\n"
+"help.text"
+msgid "<item type=\"input\">=NEGBINOMDIST(1;1;0.5)</item> returns 0.25."
+msgstr ""
+
+#. PaZE8
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"bm_id2949879\n"
+"help.text"
+msgid "<bookmark_value>NEGBINOM.DIST function</bookmark_value><bookmark_value>negative binomial distribution</bookmark_value>"
+msgstr ""
+
+#. aenUw
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id2949879\n"
+"help.text"
+msgid "NEGBINOM.DIST"
+msgstr ""
+
+#. 5J3FF
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id2955437\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_NEGBINOMDIST_MS\">Returns the negative binomial density or distribution function.</ahelp>"
+msgstr ""
+
+#. p5vZX
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id2950935\n"
+"help.text"
+msgid "NEGBINOM.DIST(X; R; SP; Cumulative)"
+msgstr ""
+
+#. psrpQ
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id2953044\n"
+"help.text"
+msgid "<emph>X</emph> represents the value returned for unsuccessful tests."
+msgstr ""
+
+#. ERFSu
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id2951018\n"
+"help.text"
+msgid "<emph>R</emph> represents the value returned for successful tests."
+msgstr ""
+
+#. wcfdY
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id2948878\n"
+"help.text"
+msgid "<emph>SP</emph> is the probability of the success of an attempt."
+msgstr ""
+
+#. dcABu
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id2948879\n"
+"help.text"
+msgid "<emph>Cumulative</emph> = 0 calculates the density function, <emph>Cumulative</emph> = 1 calculates the distribution."
+msgstr ""
+
+#. 9FuyH
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id2948770\n"
+"help.text"
+msgid "<item type=\"input\">=NEGBINOM.DIST(1;1;0.5;0)</item> returns 0.25."
+msgstr ""
+
+#. vELaD
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id2948771\n"
+"help.text"
+msgid "<item type=\"input\">=NEGBINOM.DIST(1;1;0.5;1)</item> returns 0.75."
+msgstr ""
+
+#. MHAwt
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"bm_id3155516\n"
+"help.text"
+msgid "<bookmark_value>NORMINV function</bookmark_value><bookmark_value>normal distribution;inverse of</bookmark_value>"
+msgstr ""
+
+#. AtXbp
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3155516\n"
+"help.text"
+msgid "NORMINV"
+msgstr ""
+
+#. ADHy8
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3154634\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_NORMINV\">Returns the inverse of the normal cumulative distribution.</ahelp>"
+msgstr ""
+
+#. AUvBi
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3147534\n"
+"help.text"
+msgid "NORMINV(Number; Mean; StDev)"
+msgstr ""
+
+#. pMv7B
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3154950\n"
+"help.text"
+msgid "<emph>Number</emph> represents the probability value used to determine the inverse normal distribution."
+msgstr ""
+
+#. u5DeA
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3150690\n"
+"help.text"
+msgid "<emph>Mean</emph> represents the mean value in the normal distribution."
+msgstr ""
+
+#. Q8iRM
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3148594\n"
+"help.text"
+msgid "<emph>StDev</emph> represents the standard deviation of the normal distribution."
+msgstr ""
+
+#. TUXfC
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3153921\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 ""
+
+#. 73wyE
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"bm_id2955516\n"
+"help.text"
+msgid "<bookmark_value>NORM.INV function</bookmark_value><bookmark_value>normal distribution;inverse of</bookmark_value>"
+msgstr ""
+
+#. EJsSe
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id2955516\n"
+"help.text"
+msgid "NORM.INV"
+msgstr ""
+
+#. pCpKv
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id2954634\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_NORMINV_MS\">Returns the inverse of the normal cumulative distribution.</ahelp>"
+msgstr ""
+
+#. DVKkN
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id2947534\n"
+"help.text"
+msgid "NORM.INV(Number; Mean; StDev)"
+msgstr ""
+
+#. jJFP7
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id2954950\n"
+"help.text"
+msgid "<emph>Number</emph> represents the probability value used to determine the inverse normal distribution."
+msgstr ""
+
+#. 5wmGT
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id2950690\n"
+"help.text"
+msgid "<emph>Mean</emph> represents the mean value in the normal distribution."
+msgstr ""
+
+#. rUvpF
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id2948594\n"
+"help.text"
+msgid "<emph>StDev</emph> represents the standard deviation of the normal distribution."
+msgstr ""
+
+#. mSfFV
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id2953921\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 ""
+
+#. 432JF
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"bm_id3153722\n"
+"help.text"
+msgid "<bookmark_value>NORMDIST function</bookmark_value><bookmark_value>density function</bookmark_value>"
+msgstr ""
+
+#. GE42g
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3153722\n"
+"help.text"
+msgid "NORMDIST"
+msgstr ""
+
+#. VQBJ4
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3150386\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_NORMVERT\">Returns the density function or the normal cumulative distribution.</ahelp>"
+msgstr ""
+
+#. Mogit
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3150613\n"
+"help.text"
+msgid "NORMDIST(Number; Mean; StDev [; C])"
+msgstr ""
+
+#. CoXtp
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3149820\n"
+"help.text"
+msgid "<emph>Number</emph> is the value of the distribution based on which the normal distribution is to be calculated."
+msgstr ""
+
+#. i3U8B
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3146063\n"
+"help.text"
+msgid "<emph>Mean</emph> is the mean value of the distribution."
+msgstr ""
+
+#. iK99R
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3156295\n"
+"help.text"
+msgid "<emph>StDev</emph> is the standard deviation of the distribution."
+msgstr ""
+
+#. bzaMQ
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3145080\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 ""
+
+#. gCNve
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3149283\n"
+"help.text"
+msgid "<item type=\"input\">=NORMDIST(70;63;5;0)</item> returns 0.03."
+msgstr ""
+
+#. PafZS
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3149448\n"
+"help.text"
+msgid "<item type=\"input\">=NORMDIST(70;63;5;1)</item> returns 0.92."
+msgstr ""
+
+#. FxKvo
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"bm_id2913722\n"
+"help.text"
+msgid "<bookmark_value>NORM.DIST function</bookmark_value><bookmark_value>density function</bookmark_value>"
+msgstr ""
+
+#. AdpkS
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id2913722\n"
+"help.text"
+msgid "NORM.DIST"
+msgstr ""
+
+#. KxfFM
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id2910386\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_NORMDIST_MS\">Returns the density function or the normal cumulative distribution.</ahelp>"
+msgstr ""
+
+#. kiDFh
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id2910613\n"
+"help.text"
+msgid "NORM.DIST(Number; Mean; StDev; C)"
+msgstr ""
+
+#. nRa9K
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id2919820\n"
+"help.text"
+msgid "<emph>Number</emph> is the value of the distribution based on which the normal distribution is to be calculated."
+msgstr ""
+
+#. FounC
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id2916063\n"
+"help.text"
+msgid "<emph>Mean</emph> is the mean value of the distribution."
+msgstr ""
+
+#. eEsVo
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id2916295\n"
+"help.text"
+msgid "<emph>StDev</emph> is the standard deviation of the distribution."
+msgstr ""
+
+#. kAAAs
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id2915080\n"
+"help.text"
+msgid "<emph>C</emph> = 0 calculates the density function, <emph>C</emph> = 1 calculates the distribution."
+msgstr ""
+
+#. tbZEB
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id2919283\n"
+"help.text"
+msgid "<item type=\"input\">=NORM.DIST(70;63;5;0)</item> returns 0.029945493."
+msgstr ""
+
+#. BoBMY
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id2919448\n"
+"help.text"
+msgid "<item type=\"input\">=NORM.DIST(70;63;5;1)</item> returns 0.9192433408."
+msgstr ""
+
+#. QWiur
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"bm_id3152934\n"
+"help.text"
+msgid "<bookmark_value>PEARSON function</bookmark_value>"
+msgstr ""
+
+#. DBAeA
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3152934\n"
+"help.text"
+msgid "PEARSON"
+msgstr ""
+
+#. Bm9iE
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3153216\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_PEARSON\">Returns the Pearson product moment correlation coefficient r.</ahelp>"
+msgstr ""
+
+#. xgzW8
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3156133\n"
+"help.text"
+msgid "PEARSON(Data1; Data2)"
+msgstr ""
+
+#. QbvS2
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3151272\n"
+"help.text"
+msgid "<emph>Data1</emph> represents the array of the first data set."
+msgstr ""
+
+#. sQXYA
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3153279\n"
+"help.text"
+msgid "<emph>Data2</emph> represents the array of the second data set."
+msgstr ""
+
+#. ynj7q
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3151187\n"
+"help.text"
+msgid "<item type=\"input\">=PEARSON(A1:A30;B1:B30)</item> returns the Pearson correlation coefficient of both data sets."
+msgstr ""
+
+#. dHHmQ
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"bm_id3152806\n"
+"help.text"
+msgid "<bookmark_value>PHI function</bookmark_value>"
+msgstr ""
+
+#. EoYHo
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3152806\n"
+"help.text"
+msgid "PHI"
+msgstr ""
+
+#. YyypL
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3150254\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_PHI\">Returns the value of the probability density function for a given value considering the standard normal distribution.</ahelp>"
+msgstr ""
+
+#. oEGwC
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id151629986285891\n"
+"help.text"
+msgid "<input>PHI(Number)</input>"
+msgstr ""
+
+#. 4JwEu
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3156108\n"
+"help.text"
+msgid "<emph>Number</emph> is the value for which the probability density function is calculated."
+msgstr ""
+
+#. 92hiK
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3155849\n"
+"help.text"
+msgid "<input>=PHI(2.25)</input> returns 0.0317."
+msgstr ""
+
+#. NsLhE
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3143236\n"
+"help.text"
+msgid "<input>=PHI(-2.25)</input> also returns 0.0317 because the normal distribution is symmetrical."
+msgstr ""
+
+#. NXho4
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3149286\n"
+"help.text"
+msgid "<input>=PHI(0)</input> returns 0.3989."
+msgstr ""
+
+#. GMDrd
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id611629985664328\n"
+"help.text"
+msgid "Calling <input>PHI(Number)</input> is equivalent to calling <input>NORMDIST(Number,0,1,FALSE())</input> or <input>NORM.S.DIST(Number;FALSE())</input>, hence using the standard normal distribution with mean equal to 0 and standard deviation equal to 1 with the <emph>Cumulative</emph> argument set to <emph>False.</emph>"
+msgstr ""
+
+#. vqBTN
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"bm_id3153985\n"
+"help.text"
+msgid "<bookmark_value>POISSON function</bookmark_value>"
+msgstr ""
+
+#. coCvX
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3153985\n"
+"help.text"
+msgid "POISSON"
+msgstr ""
+
+#. LpYEL
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3154298\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_POISSON\">Returns the Poisson distribution.</ahelp>"
+msgstr ""
+
+#. SH95D
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3146093\n"
+"help.text"
+msgid "POISSON(Number; Mean [; C])"
+msgstr ""
+
+#. mZnNF
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3147253\n"
+"help.text"
+msgid "<emph>Number</emph> represents the value based on which the Poisson distribution is calculated."
+msgstr ""
+
+#. HEia5
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3151177\n"
+"help.text"
+msgid "<emph>Mean</emph> represents the middle value of the Poisson distribution."
+msgstr ""
+
+#. C5Cg3
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3149200\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 ""
+
+#. bE3Ap
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3150113\n"
+"help.text"
+msgid "<item type=\"input\">=POISSON(60;50;1)</item> returns 0.93."
+msgstr ""
+
+#. sLFos
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"bm_id2953985\n"
+"help.text"
+msgid "<bookmark_value>POISSON.DIST function</bookmark_value>"
+msgstr ""
+
+#. kEGyt
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id2953985\n"
+"help.text"
+msgid "POISSON.DIST"
+msgstr ""
+
+#. Twq2U
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id2954298\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_POISSON_DIST_MS\">Returns the Poisson distribution.</ahelp>"
+msgstr ""
+
+#. nVnxU
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id2946093\n"
+"help.text"
+msgid "POISSON.DIST(Number; Mean ; Cumulative)"
+msgstr ""
+
+#. jnjk7
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id2947253\n"
+"help.text"
+msgid "<emph>Number</emph> represents the value based on which the Poisson distribution is calculated."
+msgstr ""
+
+#. EEfdC
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id2951177\n"
+"help.text"
+msgid "<emph>Mean</emph> represents the middle value of the Poisson distribution."
+msgstr ""
+
+#. MiQ2K
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id2949200\n"
+"help.text"
+msgid "<emph>Cumulative</emph> = 0 or False to calculate the probability mass function; <emph>Cumulative</emph> = 1, True, or any other non-zero value to calculate the cumulative distribution function."
+msgstr ""
+
+#. gXFJQ
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id2950113\n"
+"help.text"
+msgid "<item type=\"input\">=POISSON.DIST(60;50;1)</item> returns 0.9278398202."
+msgstr ""
+
+#. n8dGY
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"bm_id3153100\n"
+"help.text"
+msgid "<bookmark_value>PERCENTILE function</bookmark_value>"
+msgstr ""
+
+#. ofqnY
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3153100\n"
+"help.text"
+msgid "PERCENTILE"
+msgstr ""
+
+#. fxFVH
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3154940\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 ""
+
+#. 6cfc9
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3148813\n"
+"help.text"
+msgid "PERCENTILE(Data; Alpha)"
+msgstr ""
+
+#. ErPqf
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3153054\n"
+"help.text"
+msgid "<emph>Data</emph> represents the array of data."
+msgstr ""
+
+#. Ysdg6
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3154212\n"
+"help.text"
+msgid "<emph>Alpha</emph> represents the percentage of the scale between 0 and 1."
+msgstr ""
+
+#. Fv6gC
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3159147\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 ""
+
+#. zzrCV
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"bm_id2853100\n"
+"help.text"
+msgid "<bookmark_value>PERCENTILE.EXC function</bookmark_value>"
+msgstr ""
+
+#. YHgvC
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id2853100\n"
+"help.text"
+msgid "PERCENTILE.EXC"
+msgstr ""
+
+#. nvtYH
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id2854940\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 ""
+
+#. 88Eod
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id2754940\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 ""
+
+#. 6oVxn
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id2653976\n"
+"help.text"
+msgid "The difference between <item type=\"input\">PERCENTILE.INC</item> and <item type=\"input\">PERCENTILE.EXC</item> is that, in the <item type=\"input\">PERCENTILE.INC</item> function the value of alpha is within the range 0 to 1 inclusive, and in the <item type=\"input\">PERCENTILE.EXC</item> function, the value of alpha is within the range 0 to 1 exclusive."
+msgstr ""
+
+#. iu26H
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id2848813\n"
+"help.text"
+msgid "PERCENTILE.EXC(Data; Alpha)"
+msgstr ""
+
+#. tVAsL
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id2853054\n"
+"help.text"
+msgid "<emph>Data</emph> represents the array of data."
+msgstr ""
+
+#. mtefb
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id2854212\n"
+"help.text"
+msgid "<emph>Alpha</emph> represents the percentage of the scale between 0 and 1."
+msgstr ""
+
+#. DEwyL
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id2859147\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 ""
+
+#. CqovE
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"bm_id2953100\n"
+"help.text"
+msgid "<bookmark_value>PERCENTILE.INC function</bookmark_value>"
+msgstr ""
+
+#. CjvFy
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id2953100\n"
+"help.text"
+msgid "PERCENTILE.INC"
+msgstr ""
+
+#. PgcQ8
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id2954940\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 ""
+
+#. oLxJG
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id2753976\n"
+"help.text"
+msgid "The difference between <item type=\"input\">PERCENTILE.INC</item> and <item type=\"input\">PERCENTILE.EXC</item> is that, in the <item type=\"input\">PERCENTILE.INC</item> function the value of alpha is within the range 0 to 1 inclusive, and in the <item type=\"input\">PERCENTILE.EXC</item> function, the value of alpha is within the range 0 to 1 exclusive."
+msgstr ""
+
+#. LYbqG
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id2948813\n"
+"help.text"
+msgid "PERCENTILE.INC(Data; Alpha)"
+msgstr ""
+
+#. QcWDU
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id2953054\n"
+"help.text"
+msgid "<emph>Data</emph> represents the array of data."
+msgstr ""
+
+#. vspfD
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id2954212\n"
+"help.text"
+msgid "<emph>Alpha</emph> represents the percentage of the scale between 0 and 1."
+msgstr ""
+
+#. TnH8L
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id2959147\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 ""
+
+#. odDob
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"bm_id3148807\n"
+"help.text"
+msgid "<bookmark_value>PERCENTRANK function</bookmark_value>"
+msgstr ""
+
+#. BuLHr
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3148807\n"
+"help.text"
+msgid "PERCENTRANK"
+msgstr ""
+
+#. zvKoQ
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3153573\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_QUANTILSRANG\">Returns the percentage rank of a value in a sample.</ahelp>"
+msgstr ""
+
+#. AAjBU
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3147238\n"
+"help.text"
+msgid "PERCENTRANK(Data; Value [; Significance])"
+msgstr ""
+
+#. hPEyS
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3154266\n"
+"help.text"
+msgid "<emph>Data</emph> represents the array of data in the sample."
+msgstr ""
+
+#. pmEDN
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3148475\n"
+"help.text"
+msgid "<emph>Value</emph> represents the value whose percentile rank must be determined."
+msgstr ""
+
+#. dfAfa
+#: 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 ""
+
+#. s6CE8
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3149163\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 ""
+
+#. ShkPW
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"bm_id2848807\n"
+"help.text"
+msgid "<bookmark_value>PERCENTRANK.EXC function</bookmark_value>"
+msgstr ""
+
+#. z5iwA
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id2848807\n"
+"help.text"
+msgid "PERCENTRANK.EXC"
+msgstr ""
+
+#. kXmRd
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id2853573\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 ""
+
+#. SiK26
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id2553976\n"
+"help.text"
+msgid "The difference between <item type=\"input\">PERCENTRANK.INC</item> and <item type=\"input\">PERCENTRANK.EXC</item> is that <item type=\"input\">PERCENTRANK.INC</item> calculates a value in the range 0 to 1 inclusive, whereas the <item type=\"input\">PERCENTRANK.EXC</item> function calculates a value in the range 0 to 1 exclusive."
+msgstr ""
+
+#. FFw3f
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id2847238\n"
+"help.text"
+msgid "PERCENTRANK.EXC(Data; Value [; Significance])"
+msgstr ""
+
+#. paUED
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id2854266\n"
+"help.text"
+msgid "<emph>Data</emph> represents the array of data in the sample."
+msgstr ""
+
+#. aRW4r
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id2848475\n"
+"help.text"
+msgid "<emph>Value</emph> represents the value whose percentile rank must be determined."
+msgstr ""
+
+#. mCBKk
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id2748475\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 ""
+
+#. rFP7K
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id2849163\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 ""
+
+#. owuKF
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"bm_id2948807\n"
+"help.text"
+msgid "<bookmark_value>PERCENTRANK.INC function</bookmark_value>"
+msgstr ""
+
+#. PGEyz
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id2948807\n"
+"help.text"
+msgid "PERCENTRANK.INC"
+msgstr ""
+
+#. zYCJE
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id2953573\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 ""
+
+#. JEbgU
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id2453976\n"
+"help.text"
+msgid "The difference between <item type=\"input\">PERCENTRANK.INC</item> and <item type=\"input\">PERCENTRANK.EXC</item> is that <item type=\"input\">PERCENTRANK.INC</item> calculates a value in the range 0 to 1 inclusive, whereas the <item type=\"input\">PERCENTRANK.EXC</item> function calculates a value in the range 0 to 1 exclusive."
+msgstr ""
+
+#. YfPDe
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id2947238\n"
+"help.text"
+msgid "PERCENTRANK.INC(Data; Value [; Significance])"
+msgstr ""
+
+#. QmR4b
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id2954266\n"
+"help.text"
+msgid "<emph>Data</emph> represents the array of data in the sample."
+msgstr ""
+
+#. CjCor
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id2948475\n"
+"help.text"
+msgid "<emph>Value</emph> represents the value whose percentile rank must be determined."
+msgstr ""
+
+#. qf4Ss
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id2648475\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 ""
+
+#. EwRBE
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id2949163\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 ""
+
+#. naeAj
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"bm_id3166442\n"
+"help.text"
+msgid "<bookmark_value>QUARTILE function</bookmark_value>"
+msgstr ""
+
+#. zG8mr
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3166442\n"
+"help.text"
+msgid "QUARTILE"
+msgstr ""
+
+#. E6MEC
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3146958\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_QUARTILE\">Returns the quartile of a data set.</ahelp>"
+msgstr ""
+
+#. SKFH8
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3153684\n"
+"help.text"
+msgid "QUARTILE(Data; Type)"
+msgstr ""
+
+#. BypuU
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3153387\n"
+"help.text"
+msgid "<emph>Data</emph> represents the array of data in the sample."
+msgstr ""
+
+#. aSRpW
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3155589\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 ""
+
+#. oXLQZ
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3159276\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 ""
+
+#. rGSFw
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"bm_id2866442\n"
+"help.text"
+msgid "<bookmark_value>QUARTILE.EXC function</bookmark_value>"
+msgstr ""
+
+#. NHukC
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id2866442\n"
+"help.text"
+msgid "QUARTILE.EXC"
+msgstr ""
+
+#. SZFDZ
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id2846958\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 ""
+
+#. oTHWG
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id2353976\n"
+"help.text"
+msgid "The difference between <item type=\"input\">QUARTILE.INC</item> and <item type=\"input\">QUARTILE.EXC</item> is that the <item type=\"input\">QUARTILE.INC</item> function bases its calculation on a percentile range of 0 to 1 inclusive, whereas the <item type=\"input\">QUARTILE.EXC</item> function bases its calculation on a percentile range of 0 to 1 exclusive."
+msgstr ""
+
+#. yki2G
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id2853684\n"
+"help.text"
+msgid "QUARTILE.EXC(Data; Type)"
+msgstr ""
+
+#. BBCHu
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id2853387\n"
+"help.text"
+msgid "<emph>Data</emph> represents the range of data values for which you want to calculate the specified quartile."
+msgstr ""
+
+#. 5nCQJ
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id2855589\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 ""
+
+#. 8u38W
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id2859276\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 ""
+
+#. SVXeF
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"bm_id2966442\n"
+"help.text"
+msgid "<bookmark_value>QUARTILE.INC function</bookmark_value>"
+msgstr ""
+
+#. GpKJA
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id2966442\n"
+"help.text"
+msgid "QUARTILE.INC"
+msgstr ""
+
+#. rsvn5
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id2946958\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_QUARTILE_INC\">Returns the quartile of a data set.</ahelp>"
+msgstr ""
+
+#. z9AvW
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id2253976\n"
+"help.text"
+msgid "The difference between <item type=\"input\">QUARTILE.INC</item> and <item type=\"input\">QUARTILE.EXC</item> is that the <item type=\"input\">QUARTILE.INC</item> function bases its calculation on a percentile range of 0 to 1 inclusive, whereas the <item type=\"input\">QUARTILE.EXC</item> function bases its calculation on a percentile range of 0 to 1 exclusive."
+msgstr ""
+
+#. qgazA
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id2953684\n"
+"help.text"
+msgid "QUARTILE.INC(Data; Type)"
+msgstr ""
+
+#. SBw8d
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id2953387\n"
+"help.text"
+msgid "<emph>Data</emph> represents the array of data in the sample."
+msgstr ""
+
+#. uStbq
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id2955589\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 ""
+
+#. a6GUK
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id2959276\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 ""
+
+#. D5ZGD
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"tit\n"
+"help.text"
+msgid "Statistical Functions Part Five"
+msgstr ""
+
+#. C2cxc
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"hd_id3147072\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 ""
+
+#. REYKA
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"bm_id3155071\n"
+"help.text"
+msgid "<bookmark_value>RANK function</bookmark_value> <bookmark_value>numbers;determining ranks</bookmark_value>"
+msgstr ""
+
+#. L4gtc
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"hd_id3155071\n"
+"help.text"
+msgid "RANK"
+msgstr ""
+
+#. r5Q99
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3153976\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_RANG\">Returns the rank of a number in a sample.</ahelp>"
+msgstr ""
+
+#. oVk4F
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3153250\n"
+"help.text"
+msgid "RANK(Value; Data [; Type])"
+msgstr ""
+
+#. AzAQx
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3154543\n"
+"help.text"
+msgid "<emph>Value</emph> is the value, whose rank is to be determined."
+msgstr ""
+
+#. rCUdg
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3149130\n"
+"help.text"
+msgid "<emph>Data</emph> is the array or range of data in the sample."
+msgstr ""
+
+#. okjBp
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3150215\n"
+"help.text"
+msgid "<emph>Type</emph> (optional) is the sequence order."
+msgstr ""
+
+#. PrJu5
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id9305398\n"
+"help.text"
+msgid "Type = 0 means descending from the last item of the array to the first (this is the default),"
+msgstr ""
+
+#. iTDKV
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id9996948\n"
+"help.text"
+msgid "Type = 1 means ascending from the first item of the range to the last."
+msgstr ""
+
+#. kjqPS
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3155919\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 ""
+
+#. wBmQf
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"bm_id2955071\n"
+"help.text"
+msgid "<bookmark_value>RANK.AVG function</bookmark_value> <bookmark_value>numbers;determining ranks</bookmark_value>"
+msgstr ""
+
+#. ynDwy
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"hd_id2955071\n"
+"help.text"
+msgid "RANK.AVG"
+msgstr ""
+
+#. EWhCU
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2953976\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 ""
+
+#. BmBW6
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2653976\n"
+"help.text"
+msgid "The difference between <item type=\"input\">RANK.AVG</item> and <item type=\"input\">RANK.EQ</item> occurs when there are duplicates in the list of values. The <item type=\"input\">RANK.EQ</item> function returns the lower rank, whereas the <item type=\"input\">RANK.AVG</item> function returns the average rank."
+msgstr ""
+
+#. f8zpD
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2953250\n"
+"help.text"
+msgid "RANK.AVG(Value; Data [; Type])"
+msgstr ""
+
+#. 9jn8F
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2954543\n"
+"help.text"
+msgid "<emph>Value</emph> is the value, whose rank is to be determined."
+msgstr ""
+
+#. B7Rub
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2949130\n"
+"help.text"
+msgid "<emph>Data</emph> is the array or range of data in the sample."
+msgstr ""
+
+#. y7boJ
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2950215\n"
+"help.text"
+msgid "<emph>Type</emph> (optional) is the sequence order."
+msgstr ""
+
+#. J7EAf
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id0305398\n"
+"help.text"
+msgid "Type = 0 means descending from the last item of the array to the first (this is the default),"
+msgstr ""
+
+#. KAjCp
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id0996948\n"
+"help.text"
+msgid "Type = 1 means ascending from the first item of the range to the last."
+msgstr ""
+
+#. zDZBh
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2955919\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 ""
+
+#. EbAyE
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"bm_id2855071\n"
+"help.text"
+msgid "<bookmark_value>RANK.EQ function</bookmark_value> <bookmark_value>numbers;determining ranks</bookmark_value>"
+msgstr ""
+
+#. GCgCV
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"hd_id2855071\n"
+"help.text"
+msgid "RANK.EQ"
+msgstr ""
+
+#. UptAA
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2853976\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 ""
+
+#. CgFxq
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2753976\n"
+"help.text"
+msgid "The difference between <item type=\"input\">RANK.AVG</item> and <item type=\"input\">RANK.EQ</item> occurs when there are duplicates in the list of values. The <item type=\"input\">RANK.EQ</item> function returns the lower rank, whereas the <item type=\"input\">RANK.AVG</item> function returns the average rank."
+msgstr ""
+
+#. bGAcu
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2853250\n"
+"help.text"
+msgid "RANK.EQ(Value; Data [; Type])"
+msgstr ""
+
+#. mncnk
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2854543\n"
+"help.text"
+msgid "<emph>Value</emph> is the value, whose rank is to be determined."
+msgstr ""
+
+#. X9Bs8
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2849130\n"
+"help.text"
+msgid "<emph>Data</emph> is the array or range of data in the sample."
+msgstr ""
+
+#. SCPY6
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2850215\n"
+"help.text"
+msgid "<emph>Type</emph> (optional) is the sequence order."
+msgstr ""
+
+#. EcBcF
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id89305398\n"
+"help.text"
+msgid "Type = 0 means descending from the last item of the array to the first (this is the default),"
+msgstr ""
+
+#. 64Sc2
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id89996948\n"
+"help.text"
+msgid "Type = 1 means ascending from the first item of the range to the last."
+msgstr ""
+
+#. BhfPj
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2855919\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 ""
+
+#. D7JMM
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"bm_id3153556\n"
+"help.text"
+msgid "<bookmark_value>SKEW function</bookmark_value>"
+msgstr ""
+
+#. uFVkp
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"hd_id3153556\n"
+"help.text"
+msgid "SKEW"
+msgstr ""
+
+#. D3fiC
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3153485\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_SCHIEFE\">Returns the skewness of a distribution.</ahelp>"
+msgstr ""
+
+#. EndQD
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3151191\n"
+"help.text"
+msgid "SKEW(<embedvar href=\"text/scalc/01/ful_func.xhp#number255_1\" markup=\"keep\"/>)"
+msgstr ""
+
+#. BmsyE
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id171585151428396\n"
+"help.text"
+msgid "The parameters should specify at least three values."
+msgstr ""
+
+#. sBJ47
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3145118\n"
+"help.text"
+msgid "<item type=\"input\">=SKEW(A1:A50)</item> calculates the value of skew for the data referenced."
+msgstr ""
+
+#. FjxMm
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"bm_id3149051\n"
+"help.text"
+msgid "<bookmark_value>regression lines;FORECAST function</bookmark_value> <bookmark_value>extrapolations</bookmark_value> <bookmark_value>FORECAST function</bookmark_value>"
+msgstr ""
+
+#. XnpiE
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"hd_id3149051\n"
+"help.text"
+msgid "FORECAST"
+msgstr ""
+
+#. KY2tt
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3153290\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_SCHAETZER\">Extrapolates future values based on existing x and y values.</ahelp>"
+msgstr ""
+
+#. ifwDD
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3147404\n"
+"help.text"
+msgid "FORECAST(Value; DataY; DataX)"
+msgstr ""
+
+#. zesAB
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3148743\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 ""
+
+#. ADGQy
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3146325\n"
+"help.text"
+msgid "<emph>DataY</emph> is the array or range of known y's."
+msgstr ""
+
+#. pDBhK
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3150536\n"
+"help.text"
+msgid "<emph>DataX</emph> is the array or range of known x's."
+msgstr ""
+
+#. m7ZE7
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3157874\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 ""
+
+#. JSFnA
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"bm_id3149052\n"
+"help.text"
+msgid "<bookmark_value>regression lines;FORECAST.LINEAR function</bookmark_value> <bookmark_value>extrapolations</bookmark_value> <bookmark_value>FORECAST.LINEAR function</bookmark_value>"
+msgstr ""
+
+#. wcKih
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"hd_id3149052\n"
+"help.text"
+msgid "FORECAST.LINEAR"
+msgstr ""
+
+#. NYDH5
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3153291\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_SCHAETZER\">Extrapolates future values based on existing x and y values.</ahelp>"
+msgstr ""
+
+#. rAm7T
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3147405\n"
+"help.text"
+msgid "FORECAST.LINEAR(Value; DataY; DataX)"
+msgstr ""
+
+#. r8Ho6
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3148744\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 ""
+
+#. VCGCW
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3146326\n"
+"help.text"
+msgid "<emph>DataY</emph> is the array or range of known y's."
+msgstr ""
+
+#. ZWBNi
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3150537\n"
+"help.text"
+msgid "<emph>DataX</emph> is the array or range of known x's."
+msgstr ""
+
+#. 7gAyL
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3157875\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 ""
+
+#. WvmVF
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"bm_id3149143\n"
+"help.text"
+msgid "<bookmark_value>STDEV function</bookmark_value> <bookmark_value>standard deviations in statistics;based on a sample</bookmark_value>"
+msgstr ""
+
+#. X7TFm
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"hd_id3149143\n"
+"help.text"
+msgid "STDEV"
+msgstr ""
+
+#. CwwQ9
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3146888\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_STABW\">Estimates the standard deviation based on a sample.</ahelp>"
+msgstr ""
+
+#. 2b5hp
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3149946\n"
+"help.text"
+msgid "STDEV(<embedvar href=\"text/scalc/01/ful_func.xhp#number255_1\" markup=\"keep\"/>)"
+msgstr ""
+
+#. H3V9F
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id211585163957345\n"
+"help.text"
+msgid "The parameters should specify at least two values."
+msgstr ""
+
+#. S754h
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3149434\n"
+"help.text"
+msgid "<input>=STDEV(A1:A50)</input> returns the estimated standard deviation based on the data referenced."
+msgstr ""
+
+#. EaGD7
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"bm_id3144745\n"
+"help.text"
+msgid "<bookmark_value>STDEVA function</bookmark_value>"
+msgstr ""
+
+#. apaEv
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"hd_id3144745\n"
+"help.text"
+msgid "STDEVA"
+msgstr ""
+
+#. N8C7m
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3151234\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_STABWA\">Calculates the standard deviation of an estimation based on a sample.</ahelp>"
+msgstr ""
+
+#. JfwF6
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3147422\n"
+"help.text"
+msgid "STDEVA(<embedvar href=\"text/scalc/01/ful_func.xhp#number255_1\" markup=\"keep\"/>)"
+msgstr ""
+
+#. iK7Ch
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id981585163977014\n"
+"help.text"
+msgid "The parameters should specify at least two values. Text has the value 0."
+msgstr ""
+
+#. mgbPX
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3148581\n"
+"help.text"
+msgid "<item type=\"input\">=STDEVA(A1:A50)</item> returns the estimated standard deviation based on the data referenced."
+msgstr ""
+
+#. mwhG2
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"bm_id3149734\n"
+"help.text"
+msgid "<bookmark_value>STDEVP function</bookmark_value> <bookmark_value>standard deviations in statistics;based on a population</bookmark_value>"
+msgstr ""
+
+#. FEgtE
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"hd_id3149734\n"
+"help.text"
+msgid "STDEVP"
+msgstr ""
+
+#. RqGNB
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3149187\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_STABWN\">Calculates the standard deviation based on the entire population.</ahelp>"
+msgstr ""
+
+#. zoiE5
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3154392\n"
+"help.text"
+msgid "STDEVP(<embedvar href=\"text/scalc/01/ful_func.xhp#number255_1\" markup=\"keep\"/>)"
+msgstr ""
+
+#. ADXhB
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3153933\n"
+"help.text"
+msgid "<item type=\"input\">=STDEVP(A1:A50)</item> returns a standard deviation of the data referenced."
+msgstr ""
+
+#. sQWP2
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"bm_id2949734\n"
+"help.text"
+msgid "<bookmark_value>STDEV.P function</bookmark_value> <bookmark_value>standard deviations in statistics;based on a population</bookmark_value>"
+msgstr ""
+
+#. tcxC7
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"hd_id2949734\n"
+"help.text"
+msgid "STDEV.P"
+msgstr ""
+
+#. e3KAU
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2949187\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_ST_DEV_P_MS\">Calculates the standard deviation based on the entire population.</ahelp>"
+msgstr ""
+
+#. J5bPQ
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2954392\n"
+"help.text"
+msgid "STDEV.P(<embedvar href=\"text/scalc/01/ful_func.xhp#number255_1\" markup=\"keep\"/>)"
+msgstr ""
+
+#. 9PAi8
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2953933\n"
+"help.text"
+msgid "<item type=\"input\">=STDEV.P(A1:A50)</item> returns a standard deviation of the data referenced."
+msgstr ""
+
+#. 3VySc
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"bm_id2849734\n"
+"help.text"
+msgid "<bookmark_value>STDEV.S function</bookmark_value> <bookmark_value>standard deviations in statistics;based on a sample</bookmark_value>"
+msgstr ""
+
+#. V2ZSr
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"hd_id2849734\n"
+"help.text"
+msgid "STDEV.S"
+msgstr ""
+
+#. wyNdS
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2849187\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_ST_DEV_S\">Calculates the standard deviation based on sample of the population.</ahelp>"
+msgstr ""
+
+#. dG9nh
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2854392\n"
+"help.text"
+msgid "STDEV.S(<embedvar href=\"text/scalc/01/ful_func.xhp#number255_1\" markup=\"keep\"/>)"
+msgstr ""
+
+#. fPUck
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id671585163972431\n"
+"help.text"
+msgid "The parameters should specify at least two values."
+msgstr ""
+
+#. 9GmUP
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2853933\n"
+"help.text"
+msgid "<item type=\"input\">=STDEV.S(A1:A50)</item> returns a standard deviation of the data referenced."
+msgstr ""
+
+#. YJcDx
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"bm_id3154522\n"
+"help.text"
+msgid "<bookmark_value>STDEVPA function</bookmark_value>"
+msgstr ""
+
+#. LA4Ao
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"hd_id3154522\n"
+"help.text"
+msgid "STDEVPA"
+msgstr ""
+
+#. dSTBR
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3149549\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_STABWNA\">Calculates the standard deviation based on the entire population.</ahelp>"
+msgstr ""
+
+#. gqtD3
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3146851\n"
+"help.text"
+msgid "STDEVPA(<embedvar href=\"text/scalc/01/ful_func.xhp#number255_1\" markup=\"keep\"/>)"
+msgstr ""
+
+#. DL6D2
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id961585163990543\n"
+"help.text"
+msgid "Text has the value 0."
+msgstr ""
+
+#. avUGE
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3145163\n"
+"help.text"
+msgid "<item type=\"input\">=STDEVPA(A1:A50)</item> returns the standard deviation of the data referenced."
+msgstr ""
+
+#. jUrA3
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"bm_id3155928\n"
+"help.text"
+msgid "<bookmark_value>STANDARDIZE function</bookmark_value> <bookmark_value>converting;random variables, into normalized values</bookmark_value>"
+msgstr ""
+
+#. W8n8M
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"hd_id3155928\n"
+"help.text"
+msgid "STANDARDIZE"
+msgstr ""
+
+#. pu4sF
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3149883\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_STANDARDISIERUNG\">Converts a random variable to a normalized value.</ahelp>"
+msgstr ""
+
+#. zo3zn
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3150132\n"
+"help.text"
+msgid "STANDARDIZE(Number; Mean; StDev)"
+msgstr ""
+
+#. 3ZHHv
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3159139\n"
+"help.text"
+msgid "<emph>Number</emph> is the value to be standardized."
+msgstr ""
+
+#. RCoJ9
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3145241\n"
+"help.text"
+msgid "<emph>Mean</emph> is the arithmetic mean of the distribution."
+msgstr ""
+
+#. RaXy4
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3148874\n"
+"help.text"
+msgid "<emph>StDev</emph> is the standard deviation of the distribution."
+msgstr ""
+
+#. vQ7nD
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3156067\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 ""
+
+#. 7Zaup
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"bm_id3157986\n"
+"help.text"
+msgid "<bookmark_value>NORMSINV function</bookmark_value> <bookmark_value>normal distribution;inverse of standard</bookmark_value>"
+msgstr ""
+
+#. 3CGrL
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"hd_id3157986\n"
+"help.text"
+msgid "NORMSINV"
+msgstr ""
+
+#. YuWPN
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3151282\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_STANDNORMINV\">Returns the inverse of the standard normal cumulative distribution.</ahelp>"
+msgstr ""
+
+#. ALdZE
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3154195\n"
+"help.text"
+msgid "NORMSINV(Number)"
+msgstr ""
+
+#. aa3ET
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3148772\n"
+"help.text"
+msgid "<emph>Number</emph> is the probability to which the inverse standard normal distribution is calculated."
+msgstr ""
+
+#. uLkyV
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3149030\n"
+"help.text"
+msgid "<item type=\"input\">=NORMSINV(0.908789)</item> returns 1.3333."
+msgstr ""
+
+#. vDJ2n
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"bm_id2957986\n"
+"help.text"
+msgid "<bookmark_value>NORM.S.INV function</bookmark_value> <bookmark_value>normal distribution;inverse of standard</bookmark_value>"
+msgstr ""
+
+#. uasGU
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"hd_id2957986\n"
+"help.text"
+msgid "NORM.S.INV"
+msgstr ""
+
+#. Q4MdM
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2951282\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_STD_NORMINV_MS\">Returns the inverse of the standard normal cumulative distribution.</ahelp>"
+msgstr ""
+
+#. uuqGW
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2954195\n"
+"help.text"
+msgid "NORM.S.INV(Number)"
+msgstr ""
+
+#. hddGf
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2948772\n"
+"help.text"
+msgid "<emph>Number</emph> is the probability to which the inverse standard normal distribution is calculated."
+msgstr ""
+
+#. 88GYj
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2949030\n"
+"help.text"
+msgid "<item type=\"input\">=NORM.S.INV(0.908789)</item> returns 1.333334673."
+msgstr ""
+
+#. tBCoG
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"bm_id3147538\n"
+"help.text"
+msgid "<bookmark_value>NORMSDIST function</bookmark_value> <bookmark_value>normal distribution;statistics</bookmark_value>"
+msgstr ""
+
+#. 5XQDB
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"hd_id3147538\n"
+"help.text"
+msgid "NORMSDIST"
+msgstr ""
+
+#. 89BGS
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3150474\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 ""
+
+#. uQGAH
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id8652302\n"
+"help.text"
+msgid "It is GAUSS(x)=NORMSDIST(x)-0.5"
+msgstr ""
+
+#. sMGuX
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3158411\n"
+"help.text"
+msgid "NORMSDIST(Number)"
+msgstr ""
+
+#. ceLvD
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3154950\n"
+"help.text"
+msgid "<emph>Number</emph> is the value to which the standard normal cumulative distribution is calculated."
+msgstr ""
+
+#. EiEpA
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3155984\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 ""
+
+#. bKDgg
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"bm_id2947538\n"
+"help.text"
+msgid "<bookmark_value>NORM.S.DIST function</bookmark_value> <bookmark_value>normal distribution;statistics</bookmark_value>"
+msgstr ""
+
+#. YPiC5
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"hd_id2947538\n"
+"help.text"
+msgid "NORM.S.DIST"
+msgstr ""
+
+#. FCMzg
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2950474\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 ""
+
+#. iUVFG
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2958411\n"
+"help.text"
+msgid "NORM.S.DIST(Number; Cumulative)"
+msgstr ""
+
+#. maGpx
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2954950\n"
+"help.text"
+msgid "<emph>Number</emph> is the value to which the standard normal cumulative distribution is calculated."
+msgstr ""
+
+#. QjCGT
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2954951\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 ""
+
+#. gSip3
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2955984\n"
+"help.text"
+msgid "<item type=\"input\">=NORM.S.DIST(1;0)</item> returns 0.2419707245."
+msgstr ""
+
+#. dQCcC
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2955985\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 ""
+
+#. 8pa3T
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"bm_id3152592\n"
+"help.text"
+msgid "<bookmark_value>SLOPE function</bookmark_value>"
+msgstr ""
+
+#. foGeW
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"hd_id3152592\n"
+"help.text"
+msgid "SLOPE"
+msgstr ""
+
+#. Bwv8X
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3150386\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 ""
+
+#. BVsrF
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3149819\n"
+"help.text"
+msgid "SLOPE(DataY; DataX)"
+msgstr ""
+
+#. PSLgv
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3083446\n"
+"help.text"
+msgid "<emph>DataY</emph> is the array or matrix of Y data."
+msgstr ""
+
+#. hdC8w
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3152375\n"
+"help.text"
+msgid "<emph>DataX</emph> is the array or matrix of X data."
+msgstr ""
+
+#. SrAVS
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3152480\n"
+"help.text"
+msgid "<item type=\"input\">=SLOPE(A1:A50;B1:B50)</item>"
+msgstr ""
+
+#. CERq4
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"bm_id3155836\n"
+"help.text"
+msgid "<bookmark_value>STEYX function</bookmark_value> <bookmark_value>standard errors;statistical functions</bookmark_value>"
+msgstr ""
+
+#. mvuF7
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"hd_id3155836\n"
+"help.text"
+msgid "STEYX"
+msgstr ""
+
+#. 3thQX
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3149446\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 ""
+
+#. rW9ZG
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3151267\n"
+"help.text"
+msgid "STEYX(DataY; DataX)"
+msgstr ""
+
+#. 9dbR7
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3147313\n"
+"help.text"
+msgid "<emph>DataY</emph> is the array or matrix of Y data."
+msgstr ""
+
+#. Lygxn
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3156097\n"
+"help.text"
+msgid "<emph>DataX</emph> is the array or matrix of X data."
+msgstr ""
+
+#. iGZLG
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3156131\n"
+"help.text"
+msgid "<item type=\"input\">=STEYX(A1:A50;B1:B50)</item>"
+msgstr ""
+
+#. TwYFw
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"bm_id3150873\n"
+"help.text"
+msgid "<bookmark_value>DEVSQ function</bookmark_value> <bookmark_value>sums;of squares of deviations</bookmark_value>"
+msgstr ""
+
+#. bc9Gc
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"hd_id3150873\n"
+"help.text"
+msgid "DEVSQ"
+msgstr ""
+
+#. JBxFx
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3154748\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_SUMQUADABW\">Returns the sum of squares of deviations based on a sample mean.</ahelp>"
+msgstr ""
+
+#. pg3Aq
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3146790\n"
+"help.text"
+msgid "DEVSQ(<embedvar href=\"text/scalc/01/ful_func.xhp#number255_1\" markup=\"keep\"/>)"
+msgstr ""
+
+#. tETcx
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3149136\n"
+"help.text"
+msgid "<item type=\"input\">=DEVSQ(A1:A50)</item>"
+msgstr ""
+
+#. LAUht
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"bm_id3149579\n"
+"help.text"
+msgid "<bookmark_value>TINV function</bookmark_value> <bookmark_value>inverse of t-distribution</bookmark_value>"
+msgstr ""
+
+#. sSB2A
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"hd_id3149579\n"
+"help.text"
+msgid "TINV"
+msgstr ""
+
+#. u5WNS
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3143232\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_TINV\">Returns the inverse of the t-distribution.</ahelp>"
+msgstr ""
+
+#. ysECn
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3149289\n"
+"help.text"
+msgid "TINV(Number; DegreesFreedom)"
+msgstr ""
+
+#. rCWKP
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3154070\n"
+"help.text"
+msgid "<emph>Number</emph> is the probability associated with the two-tailed t-distribution."
+msgstr ""
+
+#. upYXw
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3155315\n"
+"help.text"
+msgid "<emph>DegreesFreedom</emph> is the number of degrees of freedom for the t-distribution."
+msgstr ""
+
+#. DCd8h
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3156010\n"
+"help.text"
+msgid "<item type=\"input\">=TINV(0.1;6)</item> returns 1.94"
+msgstr ""
+
+#. jMqu2
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"bm_id2949579\n"
+"help.text"
+msgid "<bookmark_value>T.INV function</bookmark_value> <bookmark_value>one tailed inverse of t-distribution</bookmark_value>"
+msgstr ""
+
+#. EwFyU
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"hd_id2949579\n"
+"help.text"
+msgid "T.INV"
+msgstr ""
+
+#. 79pwY
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2943232\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_TINV_MS\">Returns the one tailed inverse of the t-distribution.</ahelp>"
+msgstr ""
+
+#. aRfT9
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2949289\n"
+"help.text"
+msgid "T.INV(Number; DegreesFreedom)"
+msgstr ""
+
+#. URJZA
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2954070\n"
+"help.text"
+msgid "<emph>Number</emph> is the probability associated with the one-tailed t-distribution."
+msgstr ""
+
+#. 7mE8e
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2955315\n"
+"help.text"
+msgid "<emph>DegreesFreedom</emph> is the number of degrees of freedom for the t-distribution."
+msgstr ""
+
+#. wYCXA
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2956010\n"
+"help.text"
+msgid "<item type=\"input\">=T.INV(0.1;6)</item> returns -1.4397557473."
+msgstr ""
+
+#. KBp4a
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"bm_id2849579\n"
+"help.text"
+msgid "<bookmark_value>T.INV.2T function</bookmark_value> <bookmark_value>inverse of two tailed t-distribution</bookmark_value>"
+msgstr ""
+
+#. 4ybyR
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"hd_id2849579\n"
+"help.text"
+msgid "T.INV.2T"
+msgstr ""
+
+#. Q2L6M
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2843232\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 ""
+
+#. GMBDX
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2849289\n"
+"help.text"
+msgid "T.INV.2T(Number; DegreesFreedom)"
+msgstr ""
+
+#. n5Dv2
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2854070\n"
+"help.text"
+msgid "<emph>Number</emph> is the probability associated with the two-tailed t-distribution."
+msgstr ""
+
+#. q8qcs
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2855315\n"
+"help.text"
+msgid "<emph>DegreesFreedom</emph> is the number of degrees of freedom for the t-distribution."
+msgstr ""
+
+#. C3tvw
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2856010\n"
+"help.text"
+msgid "<item type=\"input\">=T.INV.2T(0.25; 10)</item> returns 1.221255395."
+msgstr ""
+
+#. YwEEi
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"bm_id3154129\n"
+"help.text"
+msgid "<bookmark_value>TTEST function</bookmark_value>"
+msgstr ""
+
+#. MVc6H
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"hd_id3154129\n"
+"help.text"
+msgid "TTEST"
+msgstr ""
+
+#. mT5Vx
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3159184\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_TTEST\">Returns the probability associated with a Student's t-Test.</ahelp>"
+msgstr ""
+
+#. zq4xu
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3151175\n"
+"help.text"
+msgid "TTEST(Data1; Data2; Mode; Type)"
+msgstr ""
+
+#. Zah5z
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3149202\n"
+"help.text"
+msgid "<emph>Data1</emph> is the dependent array or range of data for the first record."
+msgstr ""
+
+#. BRAEV
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3145666\n"
+"help.text"
+msgid "<emph>Data2</emph> is the dependent array or range of data for the second record."
+msgstr ""
+
+#. iEsTH
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3153903\n"
+"help.text"
+msgid "<emph>Mode</emph> = 1 calculates the one-tailed test, <emph>Mode</emph> = 2 the two- tailed test."
+msgstr ""
+
+#. BS8wJ
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3155327\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 ""
+
+#. zT8kK
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3150119\n"
+"help.text"
+msgid "<item type=\"input\">=TTEST(A1:A50;B1:B50;2;2)</item>"
+msgstr ""
+
+#. gRTGH
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"bm_id2954129\n"
+"help.text"
+msgid "<bookmark_value>T.TEST function</bookmark_value>"
+msgstr ""
+
+#. jFYuL
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"hd_id2954129\n"
+"help.text"
+msgid "T.TEST"
+msgstr ""
+
+#. yKgDs
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2959184\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_TTEST_MS\">Returns the probability associated with a Student's t-Test.</ahelp>"
+msgstr ""
+
+#. LEBMk
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2951175\n"
+"help.text"
+msgid "T.TEST(Data1; Data2; Mode; Type)"
+msgstr ""
+
+#. 2EVfF
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2949202\n"
+"help.text"
+msgid "<emph>Data1</emph> is the dependent array or range of data for the first record."
+msgstr ""
+
+#. gPGf8
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2945666\n"
+"help.text"
+msgid "<emph>Data2</emph> is the dependent array or range of data for the second record."
+msgstr ""
+
+#. MtzXe
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2953903\n"
+"help.text"
+msgid "<emph>Mode</emph> = 1 calculates the one-tailed test, <emph>Mode</emph> = 2 the two- tailed test."
+msgstr ""
+
+#. PDqCm
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2955327\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 ""
+
+#. DaBTK
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2950119\n"
+"help.text"
+msgid "<item type=\"input\">=T.TEST(A1:A50;B1:B50;2;2)</item>"
+msgstr ""
+
+#. ftBBR
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"bm_id3154930\n"
+"help.text"
+msgid "<bookmark_value>TDIST function</bookmark_value> <bookmark_value>t-distribution</bookmark_value>"
+msgstr ""
+
+#. EmaSo
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"hd_id3154930\n"
+"help.text"
+msgid "TDIST"
+msgstr ""
+
+#. 2xGgE
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3153372\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_TVERT\">Returns the t-distribution.</ahelp>"
+msgstr ""
+
+#. HtP3s
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3150521\n"
+"help.text"
+msgid "TDIST(Number; DegreesFreedom; Mode)"
+msgstr ""
+
+#. TWkgb
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3146991\n"
+"help.text"
+msgid "<emph>Number</emph> is the value for which the t-distribution is calculated."
+msgstr ""
+
+#. zmZDL
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3148824\n"
+"help.text"
+msgid "<emph>DegreesFreedom</emph> is the number of degrees of freedom for the t-distribution."
+msgstr ""
+
+#. Gm54C
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3149340\n"
+"help.text"
+msgid "<emph>Mode</emph> = 1 returns the one-tailed test, <emph>Mode</emph> = 2 returns the two-tailed test."
+msgstr ""
+
+#. AGFC9
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3149773\n"
+"help.text"
+msgid "<item type=\"input\">=TDIST(12;5;1)</item>"
+msgstr ""
+
+#. eC3Bv
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"bm_id2954930\n"
+"help.text"
+msgid "<bookmark_value>T.DIST function</bookmark_value> <bookmark_value>t-distribution</bookmark_value>"
+msgstr ""
+
+#. f9YTs
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"hd_id2954930\n"
+"help.text"
+msgid "T.DIST"
+msgstr ""
+
+#. dJG6o
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2953372\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_TDIST_MS\">Returns the t-distribution.</ahelp>"
+msgstr ""
+
+#. rDhhb
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2950521\n"
+"help.text"
+msgid "T.DIST(Number; DegreesFreedom; Cumulative)"
+msgstr ""
+
+#. 4FKAB
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2946991\n"
+"help.text"
+msgid "<emph>Number</emph> is the value for which the t-distribution is calculated."
+msgstr ""
+
+#. wpDjC
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2948824\n"
+"help.text"
+msgid "<emph>DegreesFreedom</emph> is the number of degrees of freedom for the t-distribution."
+msgstr ""
+
+#. 2vsex
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2949340\n"
+"help.text"
+msgid "<emph>Cumulative</emph> = 0 or FALSE returns the probability density function, 1 or TRUE returns the cumulative distribution function."
+msgstr ""
+
+#. dCwQU
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2949773\n"
+"help.text"
+msgid "<item type=\"input\">=T.DIST(1; 10; TRUE)</item> returns 0.8295534338"
+msgstr ""
+
+#. CTGBv
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"bm_id2854930\n"
+"help.text"
+msgid "<bookmark_value>T.DIST.2T function</bookmark_value> <bookmark_value>two tailed t-distribution</bookmark_value>"
+msgstr ""
+
+#. ACDN3
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"hd_id2854930\n"
+"help.text"
+msgid "T.DIST.2T"
+msgstr ""
+
+#. BQQUu
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2853372\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 ""
+
+#. WoA66
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2850521\n"
+"help.text"
+msgid "T.DIST.2T(Number; DegreesFreedom)"
+msgstr ""
+
+#. b8Lwi
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2846991\n"
+"help.text"
+msgid "<emph>Number</emph> is the value for which the t-distribution is calculated."
+msgstr ""
+
+#. D3pNQ
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2848824\n"
+"help.text"
+msgid "<emph>DegreesFreedom</emph> is the number of degrees of freedom for the t-distribution."
+msgstr ""
+
+#. jPG5M
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2849773\n"
+"help.text"
+msgid "<item type=\"input\">=T.DIST.2T(1; 10)</item> returns 0.3408931323."
+msgstr ""
+
+#. 3URdT
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"bm_id274930\n"
+"help.text"
+msgid "<bookmark_value>T.DIST.RT function</bookmark_value> <bookmark_value>right tailed t-distribution</bookmark_value>"
+msgstr ""
+
+#. VznXr
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"hd_id274930\n"
+"help.text"
+msgid "T.DIST.RT"
+msgstr ""
+
+#. R6F8r
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2753372\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 ""
+
+#. EXm8o
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2750521\n"
+"help.text"
+msgid "T.DIST.RT(Number; DegreesFreedom)"
+msgstr ""
+
+#. dkd8f
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2746991\n"
+"help.text"
+msgid "<emph>Number</emph> is the value for which the t-distribution is calculated."
+msgstr ""
+
+#. AYDBG
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2748824\n"
+"help.text"
+msgid "<emph>DegreesFreedom</emph> is the number of degrees of freedom for the t-distribution."
+msgstr ""
+
+#. iZJBg
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2749773\n"
+"help.text"
+msgid "<item type=\"input\">=T.DIST.RT(1; 10)</item> returns 0.1704465662."
+msgstr ""
+
+#. FiZJG
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"bm_id3153828\n"
+"help.text"
+msgid "<bookmark_value>VAR function</bookmark_value> <bookmark_value>variances</bookmark_value>"
+msgstr ""
+
+#. AeQ9B
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"hd_id3153828\n"
+"help.text"
+msgid "VAR"
+msgstr ""
+
+#. FJkXo
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3159165\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_VARIANZ\">Estimates the variance based on a sample.</ahelp>"
+msgstr ""
+
+#. NGDxF
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3153054\n"
+"help.text"
+msgid "VAR(<embedvar href=\"text/scalc/01/ful_func.xhp#number255_1\" markup=\"keep\"/>)"
+msgstr ""
+
+#. qsPg5
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id721585215582420\n"
+"help.text"
+msgid "The parameters should specify at least two values."
+msgstr ""
+
+#. 7rJxK
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3153575\n"
+"help.text"
+msgid "<item type=\"input\">=VAR(A1:A50)</item>"
+msgstr ""
+
+#. rCsRx
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"bm_id2953828\n"
+"help.text"
+msgid "<bookmark_value>VAR.S function</bookmark_value> <bookmark_value>variances</bookmark_value>"
+msgstr ""
+
+#. L58ws
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"hd_id2953828\n"
+"help.text"
+msgid "VAR.S"
+msgstr ""
+
+#. x9qqg
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2959165\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_VAR_S\">Estimates the variance based on a sample.</ahelp>"
+msgstr ""
+
+#. Y2B8P
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2953054\n"
+"help.text"
+msgid "VAR.S(<embedvar href=\"text/scalc/01/ful_func.xhp#number255_1\" markup=\"keep\"/>)"
+msgstr ""
+
+#. GGJFX
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id891585215590756\n"
+"help.text"
+msgid "The parameters should specify at least two values."
+msgstr ""
+
+#. GMEXA
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2953575\n"
+"help.text"
+msgid "<item type=\"input\">=VAR.S(A1:A50)</item>"
+msgstr ""
+
+#. FyaGk
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"bm_id3151045\n"
+"help.text"
+msgid "<bookmark_value>VARA function</bookmark_value>"
+msgstr ""
+
+#. xBBwp
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"hd_id3151045\n"
+"help.text"
+msgid "VARA"
+msgstr ""
+
+#. omDED
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3155122\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_VARIANZA\">Estimates a variance based on a sample. The value of text is 0.</ahelp>"
+msgstr ""
+
+#. mrEpZ
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3149999\n"
+"help.text"
+msgid "VARA(<embedvar href=\"text/scalc/01/ful_func.xhp#number255_1\" markup=\"keep\"/>)"
+msgstr ""
+
+#. KSAnB
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id451585215586628\n"
+"help.text"
+msgid "The parameters should specify at least two values."
+msgstr ""
+
+#. 4Prou
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3154279\n"
+"help.text"
+msgid "<item type=\"input\">=VARA(A1:A50)</item>"
+msgstr ""
+
+#. VfCoQ
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"bm_id3166441\n"
+"help.text"
+msgid "<bookmark_value>VARP function</bookmark_value>"
+msgstr ""
+
+#. VpAar
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"hd_id3166441\n"
+"help.text"
+msgid "VARP"
+msgstr ""
+
+#. oHjST
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3159199\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_VARIANZEN\">Calculates a variance based on the entire population.</ahelp>"
+msgstr ""
+
+#. ArDPU
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3147282\n"
+"help.text"
+msgid "VARP(<embedvar href=\"text/scalc/01/ful_func.xhp#number255_1\" markup=\"keep\"/>)"
+msgstr ""
+
+#. PGCgC
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3153385\n"
+"help.text"
+msgid "<item type=\"input\">=VARP(A1:A50)</item>"
+msgstr ""
+
+#. CiHWS
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"bm_id2966441\n"
+"help.text"
+msgid "<bookmark_value>VAR.P function</bookmark_value>"
+msgstr ""
+
+#. zbjYA
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"hd_id2966441\n"
+"help.text"
+msgid "VAR.P"
+msgstr ""
+
+#. 6BSTC
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2959199\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_VAR_P_MS\">Calculates a variance based on the entire population.</ahelp>"
+msgstr ""
+
+#. t4tND
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2947282\n"
+"help.text"
+msgid "VAR.P(<embedvar href=\"text/scalc/01/ful_func.xhp#number255_1\" markup=\"keep\"/>)"
+msgstr ""
+
+#. zF5Ys
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2953385\n"
+"help.text"
+msgid "<item type=\"input\">=VAR.P(A1:A50)</item>"
+msgstr ""
+
+#. qbeNb
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"bm_id3153688\n"
+"help.text"
+msgid "<bookmark_value>VARPA function</bookmark_value>"
+msgstr ""
+
+#. 7Ba4B
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"hd_id3153688\n"
+"help.text"
+msgid "VARPA"
+msgstr ""
+
+#. mZp8D
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3149109\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 ""
+
+#. cAGPm
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3149967\n"
+"help.text"
+msgid "VARPA(<embedvar href=\"text/scalc/01/ful_func.xhp#number255_1\" markup=\"keep\"/>)"
+msgstr ""
+
+#. Fa9Jj
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3156203\n"
+"help.text"
+msgid "<item type=\"input\">=VARPA(A1:A50)</item>"
+msgstr ""
+
+#. Z4X2Z
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"bm_id3154599\n"
+"help.text"
+msgid "<bookmark_value>PERMUT function</bookmark_value> <bookmark_value>number of permutations</bookmark_value>"
+msgstr ""
+
+#. fboaH
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"hd_id3154599\n"
+"help.text"
+msgid "PERMUT"
+msgstr ""
+
+#. r2A4C
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3154334\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_VARIATIONEN\">Returns the number of permutations for a given number of objects.</ahelp>"
+msgstr ""
+
+#. ADCFF
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3148466\n"
+"help.text"
+msgid "PERMUT(Count1; Count2)"
+msgstr ""
+
+#. or3Fr
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3148656\n"
+"help.text"
+msgid "<emph>Count1</emph> is the total number of objects."
+msgstr ""
+
+#. qmgj2
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3150826\n"
+"help.text"
+msgid "<emph>Count2</emph> is the number of objects in each permutation."
+msgstr ""
+
+#. ZaaEV
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3150424\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 ""
+
+#. KZbxH
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"bm_id3143276\n"
+"help.text"
+msgid "<bookmark_value>PERMUTATIONA function</bookmark_value>"
+msgstr ""
+
+#. 4moi3
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"hd_id3143276\n"
+"help.text"
+msgid "PERMUTATIONA"
+msgstr ""
+
+#. hAt4K
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3144759\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_VARIATIONEN2\">Returns the number of permutations for a given number of objects (repetition allowed).</ahelp>"
+msgstr ""
+
+#. q5ynj
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3149298\n"
+"help.text"
+msgid "PERMUTATIONA(Count1; Count2)"
+msgstr ""
+
+#. B7uB3
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3156139\n"
+"help.text"
+msgid "<emph>Count1</emph> is the total number of objects."
+msgstr ""
+
+#. WemzG
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3149519\n"
+"help.text"
+msgid "<emph>Count2</emph> is the number of objects in each permutation."
+msgstr ""
+
+#. AD2BB
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3153949\n"
+"help.text"
+msgid "How often can 2 objects be selected from a total of 11 objects?"
+msgstr ""
+
+#. ALGqH
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3149233\n"
+"help.text"
+msgid "<item type=\"input\">=PERMUTATIONA(11;2)</item> returns 121."
+msgstr ""
+
+#. d9DHU
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3150622\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 ""
+
+#. VJEcn
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"bm_id3152952\n"
+"help.text"
+msgid "<bookmark_value>PROB function</bookmark_value>"
+msgstr ""
+
+#. GwrtD
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"hd_id3152952\n"
+"help.text"
+msgid "PROB"
+msgstr ""
+
+#. VunzE
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3154110\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 ""
+
+#. GhGG7
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3147330\n"
+"help.text"
+msgid "PROB(Data; Probability; Start [; End])"
+msgstr ""
+
+#. Reoxn
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3154573\n"
+"help.text"
+msgid "<emph>Data</emph> is the array or range of data in the sample."
+msgstr ""
+
+#. EmjBf
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3156334\n"
+"help.text"
+msgid "<emph>Probability</emph> is the array or range of the corresponding probabilities."
+msgstr ""
+
+#. y4tix
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3151107\n"
+"help.text"
+msgid "<emph>Start</emph> is the start value of the interval whose probabilities are to be summed."
+msgstr ""
+
+#. mDGuZ
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3153694\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 ""
+
+#. jAigD
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3153666\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 ""
+
+#. edgDi
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"bm_id3150941\n"
+"help.text"
+msgid "<bookmark_value>WEIBULL function</bookmark_value>"
+msgstr ""
+
+#. 6G6DT
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"hd_id3150941\n"
+"help.text"
+msgid "WEIBULL"
+msgstr ""
+
+#. qsBet
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3154916\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_WEIBULL\">Returns the values of the Weibull distribution.</ahelp>"
+msgstr ""
+
+#. GEAGn
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id0305200911372767\n"
+"help.text"
+msgid "The Weibull distribution is a continuous probability distribution, with parameters Alpha > 0 (shape) and Beta > 0 (scale)."
+msgstr ""
+
+#. QWU8W
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id0305200911372777\n"
+"help.text"
+msgid "If C is 0, WEIBULL calculates the probability density function."
+msgstr ""
+
+#. gLsBV
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id0305200911372743\n"
+"help.text"
+msgid "If C is 1, WEIBULL calculates the cumulative distribution function."
+msgstr ""
+
+#. XaFap
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3154478\n"
+"help.text"
+msgid "WEIBULL(Number; Alpha; Beta; C)"
+msgstr ""
+
+#. J9ayx
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3151317\n"
+"help.text"
+msgid "<emph>Number</emph> is the value at which to calculate the Weibull distribution."
+msgstr ""
+
+#. dLXnT
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3158436\n"
+"help.text"
+msgid "<emph>Alpha </emph>is the shape parameter of the Weibull distribution."
+msgstr ""
+
+#. VjNEG
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3154668\n"
+"help.text"
+msgid "<emph>Beta</emph> is the scale parameter of the Weibull distribution."
+msgstr ""
+
+#. SFYGY
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3154825\n"
+"help.text"
+msgid "<emph>C</emph> indicates the type of function."
+msgstr ""
+
+#. BBwGz
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id3146077\n"
+"help.text"
+msgid "<item type=\"input\">=WEIBULL(2;1;1;1)</item> returns 0.86."
+msgstr ""
+
+#. bK3hG
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id0305200911372899\n"
+"help.text"
+msgid "See also the <link href=\"https://wiki.documentfoundation.org/Documentation/How_Tos/Calc:_WEIBULL_function\" name=\"wiki.documentfoundation.org Documentation/HowTo/Calc/WEIBULL function\">Wiki page</link>."
+msgstr ""
+
+#. AC9jG
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"bm_id2950941\n"
+"help.text"
+msgid "<bookmark_value>WEIBULL.DIST function</bookmark_value>"
+msgstr ""
+
+#. 7pk6M
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"hd_id2950941\n"
+"help.text"
+msgid "WEIBULL.DIST"
+msgstr ""
+
+#. 6o2Cy
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2954916\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_WEIBULL_DIST_MS\">Returns the values of the Weibull distribution.</ahelp>"
+msgstr ""
+
+#. ojfW9
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2905200911372767\n"
+"help.text"
+msgid "The Weibull distribution is a continuous probability distribution, with parameters Alpha > 0 (shape) and Beta > 0 (scale)."
+msgstr ""
+
+#. EDiFD
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2905200911372777\n"
+"help.text"
+msgid "If C is 0, WEIBULL.DIST calculates the probability density function."
+msgstr ""
+
+#. DTAzF
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2905200911372743\n"
+"help.text"
+msgid "If C is 1, WEIBULL.DIST calculates the cumulative distribution function."
+msgstr ""
+
+#. UNtn7
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2954478\n"
+"help.text"
+msgid "WEIBULL.DIST(Number; Alpha; Beta; C)"
+msgstr ""
+
+#. xfWGd
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2951317\n"
+"help.text"
+msgid "<emph>Number</emph> is the value at which to calculate the Weibull distribution."
+msgstr ""
+
+#. AFFdf
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2958436\n"
+"help.text"
+msgid "<emph>Alpha </emph>is the shape parameter of the Weibull distribution."
+msgstr ""
+
+#. PAFkr
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2954668\n"
+"help.text"
+msgid "<emph>Beta</emph> is the scale parameter of the Weibull distribution."
+msgstr ""
+
+#. N73Gk
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2954825\n"
+"help.text"
+msgid "<emph>C</emph> indicates the type of function."
+msgstr ""
+
+#. TRrFW
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2946077\n"
+"help.text"
+msgid "<item type=\"input\">=WEIBULL.DIST(2;1;1;1)</item> returns 0.8646647168."
+msgstr ""
+
+#. 8r672
+#: 04060185.xhp
+msgctxt ""
+"04060185.xhp\n"
+"par_id2905200911372899\n"
+"help.text"
+msgid "See also the <link href=\"https://wiki.documentfoundation.org/Documentation/How_Tos/Calc:_WEIBULL_function\" name=\"wiki.documentfoundation.org Documentation/HowTo/Calc/WEIBULL function\">Wiki page</link>."
+msgstr ""
+
+#. ZC7eG
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"tit\n"
+"help.text"
+msgid "Operators in $[officename] Calc"
+msgstr ""
+
+#. hvSCc
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"bm_id3156445\n"
+"help.text"
+msgid "<bookmark_value>formulas; operators</bookmark_value><bookmark_value>operators; formula functions</bookmark_value><bookmark_value>division sign, see also operators</bookmark_value><bookmark_value>multiplication sign, see also operators</bookmark_value><bookmark_value>minus sign, see also operators</bookmark_value><bookmark_value>plus sign, see also operators</bookmark_value><bookmark_value>text operators</bookmark_value><bookmark_value>comparisons;operators in Calc</bookmark_value><bookmark_value>arithmetical operators</bookmark_value><bookmark_value>reference operators</bookmark_value>"
+msgstr ""
+
+#. EwE2J
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"hd_id3156445\n"
+"help.text"
+msgid "Operators in $[officename] Calc"
+msgstr ""
+
+#. sssoj
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3155812\n"
+"help.text"
+msgid "You can use the following operators in $[officename] Calc:"
+msgstr ""
+
+#. DVBCe
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"hd_id3153066\n"
+"help.text"
+msgid "Arithmetical Operators"
+msgstr ""
+
+#. BCT76
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3148601\n"
+"help.text"
+msgid "These operators return numerical results."
+msgstr ""
+
+#. pbFEA
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3144768\n"
+"help.text"
+msgid "Operator"
+msgstr ""
+
+#. 49fhx
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3157982\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. 3juWm
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id401599494815994\n"
+"help.text"
+msgid "Example"
+msgstr ""
+
+#. PcMRq
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3149126\n"
+"help.text"
+msgid "+ (Plus)"
+msgstr ""
+
+#. 8VGky
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3150892\n"
+"help.text"
+msgid "Addition"
+msgstr ""
+
+#. r74qM
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3159204\n"
+"help.text"
+msgid "- (Minus)"
+msgstr ""
+
+#. HNAdf
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3145362\n"
+"help.text"
+msgid "Subtraction"
+msgstr ""
+
+#. zqeEq
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3153808\n"
+"help.text"
+msgid "- (Minus)"
+msgstr ""
+
+#. Cy2wm
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3151193\n"
+"help.text"
+msgid "Negation"
+msgstr ""
+
+#. uTzKJ
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3149873\n"
+"help.text"
+msgid "* (asterisk)"
+msgstr ""
+
+#. mQ8FF
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3147504\n"
+"help.text"
+msgid "Multiplication"
+msgstr ""
+
+#. LyrLq
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3151341\n"
+"help.text"
+msgid "/ (Slash)"
+msgstr ""
+
+#. RJx3b
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3159260\n"
+"help.text"
+msgid "Division"
+msgstr ""
+
+#. St2pE
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3156396\n"
+"help.text"
+msgid "% (Percent)"
+msgstr ""
+
+#. ehGjR
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3150372\n"
+"help.text"
+msgid "Percent"
+msgstr ""
+
+#. KTLME
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3149722\n"
+"help.text"
+msgid "^ (Caret)"
+msgstr ""
+
+#. Bp5QG
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3159127\n"
+"help.text"
+msgid "Exponentiation"
+msgstr ""
+
+#. QZRSe
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id881623862728559\n"
+"help.text"
+msgid "Prefix \"-\" (negation) has a higher precedence than \"^\" (exponentiation). For example -3^2 equals 9, which is the square of a negative number."
+msgstr ""
+
+#. 77TDi
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"hd_id3152981\n"
+"help.text"
+msgid "Comparative operators"
+msgstr ""
+
+#. rod4c
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3157902\n"
+"help.text"
+msgid "These operators return either true or false."
+msgstr ""
+
+#. qxQ83
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3149889\n"
+"help.text"
+msgid "Operator"
+msgstr ""
+
+#. 8jQ6F
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3150743\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. CCsqC
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id201599495083374\n"
+"help.text"
+msgid "Example"
+msgstr ""
+
+#. AdNBV
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3148888\n"
+"help.text"
+msgid "= (equal sign)"
+msgstr ""
+
+#. ubUi7
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3154845\n"
+"help.text"
+msgid "Equal"
+msgstr ""
+
+#. Vg88D
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3154807\n"
+"help.text"
+msgid "> (Greater than)"
+msgstr ""
+
+#. vsj86
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3148580\n"
+"help.text"
+msgid "Greater than"
+msgstr ""
+
+#. jCt4x
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3149507\n"
+"help.text"
+msgid "< (Less than)"
+msgstr ""
+
+#. vKBrR
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3150145\n"
+"help.text"
+msgid "Less than"
+msgstr ""
+
+#. EBajC
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3153078\n"
+"help.text"
+msgid ">= (Greater than or equal to)"
+msgstr ""
+
+#. 4wHTT
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3150866\n"
+"help.text"
+msgid "Greater than or equal to"
+msgstr ""
+
+#. wXVvo
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3153004\n"
+"help.text"
+msgid "<= (Less than or equal to)"
+msgstr ""
+
+#. 8ghop
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3150335\n"
+"help.text"
+msgid "Less than or equal to"
+msgstr ""
+
+#. 4XUDV
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3157994\n"
+"help.text"
+msgid "<> (Inequality)"
+msgstr ""
+
+#. dXwNM
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3150019\n"
+"help.text"
+msgid "Inequality"
+msgstr ""
+
+#. aAdxC
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"hd_id3145241\n"
+"help.text"
+msgid "Text operators"
+msgstr ""
+
+#. qVCHs
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3155438\n"
+"help.text"
+msgid "The operator combines separate texts into one text."
+msgstr ""
+
+#. D3PA9
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3150566\n"
+"help.text"
+msgid "Operator"
+msgstr ""
+
+#. bHMKb
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3153048\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. Y4cRR
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id201599494708332\n"
+"help.text"
+msgid "Example"
+msgstr ""
+
+#. s2CGS
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3148769\n"
+"help.text"
+msgid "& (And)"
+msgstr ""
+
+#. tm62p
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"bm_id3157975\n"
+"help.text"
+msgid "<bookmark_value>text concatenation AND</bookmark_value>"
+msgstr ""
+
+#. V7hDo
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3157975\n"
+"help.text"
+msgid "text concatenation AND"
+msgstr ""
+
+#. JDUDf
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3157993\n"
+"help.text"
+msgid "\"Sun\" & \"day\" is \"Sunday\""
+msgstr ""
+
+#. GRADv
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"hd_id3153550\n"
+"help.text"
+msgid "Reference operators"
+msgstr ""
+
+#. X3A4D
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3149024\n"
+"help.text"
+msgid "These operators return a cell range of zero, one or more cells."
+msgstr ""
+
+#. AV5Zu
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id2324900\n"
+"help.text"
+msgid "Range has the highest precedence, then intersection, and then finally union."
+msgstr ""
+
+#. nMVzZ
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3158416\n"
+"help.text"
+msgid "Operator"
+msgstr ""
+
+#. taxei
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3152822\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. tfD9G
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id521599494740206\n"
+"help.text"
+msgid "Example"
+msgstr ""
+
+#. 52L2C
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3156257\n"
+"help.text"
+msgid ": (Colon)"
+msgstr ""
+
+#. hLJDt
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3153924\n"
+"help.text"
+msgid "Range"
+msgstr ""
+
+#. fWnpm
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3152592\n"
+"help.text"
+msgid "! (Exclamation point)"
+msgstr ""
+
+#. ua9Q9
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"bm_id3150606\n"
+"help.text"
+msgid "<bookmark_value>intersection operator</bookmark_value>"
+msgstr ""
+
+#. XoTEi
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3150606\n"
+"help.text"
+msgid "Intersection"
+msgstr ""
+
+#. 6z2iQ
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3083445\n"
+"help.text"
+msgid "SUM(A1:B6!B5:C12)"
+msgstr ""
+
+#. LEZqv
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3150385\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 ""
+
+#. joyma
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id4003723\n"
+"help.text"
+msgid "~ (Tilde)"
+msgstr ""
+
+#. aAvYu
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id838953\n"
+"help.text"
+msgid "Concatenation or union"
+msgstr ""
+
+#. Hkjhd
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id2511978\n"
+"help.text"
+msgid "Takes two references and returns a reference list, which is a concatenation of the left reference followed by the right reference. Double entries are referenced twice. See note below this table."
+msgstr ""
+
+#. MsH7r
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id181890\n"
+"help.text"
+msgid "Reference concatenation using a tilde character was implemented lately. When a formula with the tilde operator exists in a document that is opened in old versions of the software, an error is returned. A reference list is not allowed inside an array expression."
+msgstr ""
+
+#. LfJJp
+#: 04070000.xhp
+msgctxt ""
+"04070000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Named Ranges and Expressions"
+msgstr ""
+
+#. 48S8L
+#: 04070000.xhp
+msgctxt ""
+"04070000.xhp\n"
+"hd_id3153951\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04070000.xhp\" name=\"Names\">Named Ranges and Expressions</link>"
+msgstr ""
+
+#. qg7Gc
+#: 04070000.xhp
+msgctxt ""
+"04070000.xhp\n"
+"par_id3145801\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 ""
+
+#. vPPRA
+#: 04070000.xhp
+msgctxt ""
+"04070000.xhp\n"
+"hd_id3153878\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04070100.xhp\" name=\"Define\">Define</link>"
+msgstr ""
+
+#. Vr7iH
+#: 04070000.xhp
+msgctxt ""
+"04070000.xhp\n"
+"hd_id3146969\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04070200.xhp\" name=\"Insert\">Insert</link>"
+msgstr ""
+
+#. ZXCfR
+#: 04070000.xhp
+msgctxt ""
+"04070000.xhp\n"
+"hd_id3155764\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04070300.xhp\" name=\"Apply\">Apply</link>"
+msgstr ""
+
+#. rFeRo
+#: 04070000.xhp
+msgctxt ""
+"04070000.xhp\n"
+"hd_id3156382\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04070400.xhp\" name=\"Labels\">Labels</link>"
+msgstr ""
+
+#. WoeVL
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"tit\n"
+"help.text"
+msgid "Define Names"
+msgstr ""
+
+#. uRzJH
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"hd_id3156330\n"
+"help.text"
+msgid "Define Names"
+msgstr ""
+
+#. cVATk
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"par_id3154366\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 ""
+
+#. 5Tu5M
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"par_id3154123\n"
+"help.text"
+msgid "Use the mouse to define ranges or type the reference into the <emph>Define Name </emph>dialog fields."
+msgstr ""
+
+#. BbJTs
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"par_id3155131\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 ""
+
+#. wTVgT
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"hd_id3151118\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. UoygM
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"par_id3163712\n"
+"help.text"
+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 ""
+
+#. CB5A3
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"hd_id3153728\n"
+"help.text"
+msgid "Range or formula expression"
+msgstr ""
+
+#. p8ZqC
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"par_id3147435\n"
+"help.text"
+msgid "<ahelp hid=\".\">The reference of the selected area name is shown here as an absolute value.</ahelp>"
+msgstr ""
+
+#. TGCQt
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"par_id3146986\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 ""
+
+#. eH5Be
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"hd_id31547290\n"
+"help.text"
+msgid "Scope"
+msgstr ""
+
+#. suvgb
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"hd_id31547291\n"
+"help.text"
+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 ""
+
+#. TGYEi
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"hd_id3154729\n"
+"help.text"
+msgid "Range options"
+msgstr ""
+
+#. sqSBA
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"par_id3149958\n"
+"help.text"
+msgid "<ahelp hid=\".\">Allows you to specify the <emph>Area type</emph> (optional) for the reference.</ahelp>"
+msgstr ""
+
+#. ZEazY
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"par_id3155416\n"
+"help.text"
+msgid "Defines additional options related to the type of reference area."
+msgstr ""
+
+#. KRFQv
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"hd_id3150716\n"
+"help.text"
+msgid "Print range"
+msgstr ""
+
+#. yAkWW
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"par_id3150751\n"
+"help.text"
+msgid "<ahelp hid=\".\">Defines the area as a print range.</ahelp>"
+msgstr ""
+
+#. ftU4S
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"hd_id3153764\n"
+"help.text"
+msgid "Filter"
+msgstr ""
+
+#. q7HNE
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"par_id3155766\n"
+"help.text"
+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 ""
+
+#. 2Lddt
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"hd_id3159267\n"
+"help.text"
+msgid "Repeat column"
+msgstr ""
+
+#. fvRdp
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"par_id3149565\n"
+"help.text"
+msgid "<ahelp hid=\".\">Defines the area as a repeating column.</ahelp>"
+msgstr ""
+
+#. BKDfL
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"hd_id3153966\n"
+"help.text"
+msgid "Repeat row"
+msgstr ""
+
+#. 3JDTz
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"par_id3150300\n"
+"help.text"
+msgid "<ahelp hid=\".\">Defines the area as a repeating row.</ahelp>"
+msgstr ""
+
+#. nREvG
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"hd_id3155112\n"
+"help.text"
+msgid "Add"
+msgstr ""
+
+#. CsTuJ
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"par_id3159236\n"
+"help.text"
+msgid "<ahelp hid=\".\">Click the <emph>Add</emph> button to add a new defined name.</ahelp>"
+msgstr ""
+
+#. uNvUE
+#: 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 ""
+
+#. 7YDh3
+#: 04070200.xhp
+msgctxt ""
+"04070200.xhp\n"
+"tit\n"
+"help.text"
+msgid "Paste Names"
+msgstr ""
+
+#. CPsCv
+#: 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> <bookmark_value>pasting; cell ranges</bookmark_value>"
+msgstr ""
+
+#. DXBqc
+#: 04070200.xhp
+msgctxt ""
+"04070200.xhp\n"
+"hd_id3153195\n"
+"help.text"
+msgid "Paste Names"
+msgstr ""
+
+#. TrREc
+#: 04070200.xhp
+msgctxt ""
+"04070200.xhp\n"
+"par_id3150011\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 ""
+
+#. ecmkK
+#: 04070200.xhp
+msgctxt ""
+"04070200.xhp\n"
+"par_id3149412\n"
+"help.text"
+msgid "You can only insert a cell area after having defined a name for the area."
+msgstr ""
+
+#. VPGCX
+#: 04070200.xhp
+msgctxt ""
+"04070200.xhp\n"
+"hd_id3153160\n"
+"help.text"
+msgid "Table area"
+msgstr ""
+
+#. aDEGv
+#: 04070200.xhp
+msgctxt ""
+"04070200.xhp\n"
+"par_id3154944\n"
+"help.text"
+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 ""
+
+#. ThnuT
+#: 04070200.xhp
+msgctxt ""
+"04070200.xhp\n"
+"hd_id3153418\n"
+"help.text"
+msgid "Paste All"
+msgstr ""
+
+#. G2G5Y
+#: 04070200.xhp
+msgctxt ""
+"04070200.xhp\n"
+"par_id3155066\n"
+"help.text"
+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 ""
+
+#. ATm7V
+#: 04070200.xhp
+msgctxt ""
+"04070200.xhp\n"
+"hd_id3153419\n"
+"help.text"
+msgid "Paste"
+msgstr ""
+
+#. GYypP
+#: 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 ""
+
+#. L8wko
+#: 04070300.xhp
+msgctxt ""
+"04070300.xhp\n"
+"tit\n"
+"help.text"
+msgid "Creating Names"
+msgstr ""
+
+#. c2WJj
+#: 04070300.xhp
+msgctxt ""
+"04070300.xhp\n"
+"bm_id3147264\n"
+"help.text"
+msgid "<bookmark_value>cell ranges;creating names automatically</bookmark_value><bookmark_value>names; for cell ranges</bookmark_value>"
+msgstr ""
+
+#. Rw5G6
+#: 04070300.xhp
+msgctxt ""
+"04070300.xhp\n"
+"hd_id3147264\n"
+"help.text"
+msgid "Creating Names"
+msgstr ""
+
+#. dby9X
+#: 04070300.xhp
+msgctxt ""
+"04070300.xhp\n"
+"par_id3153969\n"
+"help.text"
+msgid "<variable id=\"namenuebernehmentext\"><ahelp hid=\".uno:CreateNames\">Allows you to automatically name multiple cell ranges.</ahelp></variable>"
+msgstr ""
+
+#. Jeuvx
+#: 04070300.xhp
+msgctxt ""
+"04070300.xhp\n"
+"par_id3156280\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 ""
+
+#. kFKZK
+#: 04070300.xhp
+msgctxt ""
+"04070300.xhp\n"
+"hd_id3151116\n"
+"help.text"
+msgid "Create names from"
+msgstr ""
+
+#. wkLQm
+#: 04070300.xhp
+msgctxt ""
+"04070300.xhp\n"
+"par_id3152597\n"
+"help.text"
+msgid "Defines which part of the spreadsheet is to be used for creating the name."
+msgstr ""
+
+#. NHPQX
+#: 04070300.xhp
+msgctxt ""
+"04070300.xhp\n"
+"hd_id3153729\n"
+"help.text"
+msgid "Top row"
+msgstr ""
+
+#. SFGxD
+#: 04070300.xhp
+msgctxt ""
+"04070300.xhp\n"
+"par_id3149263\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 ""
+
+#. FsjVG
+#: 04070300.xhp
+msgctxt ""
+"04070300.xhp\n"
+"hd_id3146984\n"
+"help.text"
+msgid "Left Column"
+msgstr ""
+
+#. 8a5TZ
+#: 04070300.xhp
+msgctxt ""
+"04070300.xhp\n"
+"par_id3153190\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 ""
+
+#. xeEhg
+#: 04070300.xhp
+msgctxt ""
+"04070300.xhp\n"
+"hd_id3156284\n"
+"help.text"
+msgid "Bottom row"
+msgstr ""
+
+#. ERACD
+#: 04070300.xhp
+msgctxt ""
+"04070300.xhp\n"
+"par_id3147124\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 ""
+
+#. JDh95
+#: 04070300.xhp
+msgctxt ""
+"04070300.xhp\n"
+"hd_id3154731\n"
+"help.text"
+msgid "Right Column"
+msgstr ""
+
+#. LkcXp
+#: 04070300.xhp
+msgctxt ""
+"04070300.xhp\n"
+"par_id3153158\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 ""
+
+#. R788C
+#: 04070400.xhp
+msgctxt ""
+"04070400.xhp\n"
+"tit\n"
+"help.text"
+msgid "Define Label Range"
+msgstr ""
+
+#. iuVDY
+#: 04070400.xhp
+msgctxt ""
+"04070400.xhp\n"
+"bm_id3150791\n"
+"help.text"
+msgid "<bookmark_value>sheets; defining label ranges</bookmark_value><bookmark_value>label ranges in sheets</bookmark_value>"
+msgstr ""
+
+#. vBCEf
+#: 04070400.xhp
+msgctxt ""
+"04070400.xhp\n"
+"hd_id3150791\n"
+"help.text"
+msgid "<variable id=\"define_label_range\"><link href=\"text/scalc/01/04070400.xhp\">Define Label Range</link></variable>"
+msgstr ""
+
+#. sTpBB
+#: 04070400.xhp
+msgctxt ""
+"04070400.xhp\n"
+"par_id3150868\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 ""
+
+#. 5KVaz
+#: 04070400.xhp
+msgctxt ""
+"04070400.xhp\n"
+"par_id3155411\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 ""
+
+#. zUV9n
+#: 04070400.xhp
+msgctxt ""
+"04070400.xhp\n"
+"par_id3147435\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 ""
+
+#. BVyD4
+#: 04070400.xhp
+msgctxt ""
+"04070400.xhp\n"
+"hd_id3145801\n"
+"help.text"
+msgid "Range"
+msgstr ""
+
+#. EpVti
+#: 04070400.xhp
+msgctxt ""
+"04070400.xhp\n"
+"par_id3154731\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 ""
+
+#. X5AEH
+#: 04070400.xhp
+msgctxt ""
+"04070400.xhp\n"
+"hd_id3149121\n"
+"help.text"
+msgid "Contains column labels"
+msgstr ""
+
+#. DxBAW
+#: 04070400.xhp
+msgctxt ""
+"04070400.xhp\n"
+"par_id3150330\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/namerangesdialog/colhead\">Includes column labels in the current label range.</ahelp>"
+msgstr ""
+
+#. FCaRd
+#: 04070400.xhp
+msgctxt ""
+"04070400.xhp\n"
+"hd_id3149020\n"
+"help.text"
+msgid "Contains row labels"
+msgstr ""
+
+#. nCXH5
+#: 04070400.xhp
+msgctxt ""
+"04070400.xhp\n"
+"par_id3154754\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/namerangesdialog/rowhead\">Includes row labels in the current label range.</ahelp>"
+msgstr ""
+
+#. 6owcC
+#: 04070400.xhp
+msgctxt ""
+"04070400.xhp\n"
+"hd_id3159264\n"
+"help.text"
+msgid "For data range"
+msgstr ""
+
+#. uPMTB
+#: 04070400.xhp
+msgctxt ""
+"04070400.xhp\n"
+"par_id3154703\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 ""
+
+#. JYFUv
+#: 04070400.xhp
+msgctxt ""
+"04070400.xhp\n"
+"hd_id3145789\n"
+"help.text"
+msgid "Add"
+msgstr ""
+
+#. 8FenH
+#: 04070400.xhp
+msgctxt ""
+"04070400.xhp\n"
+"par_id3147005\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/namerangesdialog/add\">Adds the current label range to the list.</ahelp>"
+msgstr ""
+
+#. sEQ86
+#: 04080000.xhp
+msgctxt ""
+"04080000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Function List"
+msgstr ""
+
+#. MLdGA
+#: 04080000.xhp
+msgctxt ""
+"04080000.xhp\n"
+"bm_id3154126\n"
+"help.text"
+msgid "<bookmark_value>formula list window</bookmark_value> <bookmark_value>function list window</bookmark_value> <bookmark_value>inserting functions; function list window</bookmark_value>"
+msgstr ""
+
+#. SFavL
+#: 04080000.xhp
+msgctxt ""
+"04080000.xhp\n"
+"hd_id3154126\n"
+"help.text"
+msgid "<variable id=\"function_list_title\"><link href=\"text/scalc/01/04080000.xhp\" name=\"Function List\">Function List</link></variable>"
+msgstr ""
+
+#. NSY5f
+#: 04080000.xhp
+msgctxt ""
+"04080000.xhp\n"
+"par_id3151118\n"
+"help.text"
+msgid "<variable id=\"function_list_text\"><ahelp hid=\"HID_SC_FUNCTIONLIST\">Opens the Function List deck of the Sidebar, which displays all functions that can be inserted into your document.</ahelp></variable> The <emph>Function List</emph> deck is similar to the <emph>Functions</emph> tab page of the <link href=\"text/scalc/01/04060000.xhp\" name=\"Function Wizard\">Function Wizard</link>. The functions are inserted with placeholders to be replaced with your own values."
+msgstr ""
+
+#. kJGdD
+#: 04080000.xhp
+msgctxt ""
+"04080000.xhp\n"
+"par_id3152576\n"
+"help.text"
+msgid "The <emph>Function List</emph> window is a resizable <link href=\"text/shared/00/00000005.xhp#docking\" name=\"dockable window\">dockable window</link>. Use it to quickly enter functions in the spreadsheet. By double-clicking an entry in the functions list, the respective function is directly inserted with all parameters."
+msgstr ""
+
+#. tu2NZ
+#: 04080000.xhp
+msgctxt ""
+"04080000.xhp\n"
+"hd_id3145799\n"
+"help.text"
+msgid "Category List"
+msgstr ""
+
+#. ep6FT
+#: 04080000.xhp
+msgctxt ""
+"04080000.xhp\n"
+"hd_id3153160\n"
+"help.text"
+msgid "Function List"
+msgstr ""
+
+#. pz87U
+#: 04080000.xhp
+msgctxt ""
+"04080000.xhp\n"
+"par_id3149412\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/functionpanel/funclist\">Displays the available functions.</ahelp> When you select a function, the area below the list box displays a short description. To insert the selected function double-click it or click the <emph>Insert Function into calculation sheet</emph> icon."
+msgstr ""
+
+#. iSekQ
+#: 04080000.xhp
+msgctxt ""
+"04080000.xhp\n"
+"hd_id3146971\n"
+"help.text"
+msgid "Insert Function into calculation sheet"
+msgstr ""
+
+#. UPFoX
+#: 04080000.xhp
+msgctxt ""
+"04080000.xhp\n"
+"par_id3150043\n"
+"help.text"
+msgid "<image id=\"img_id3159267\" src=\"sc/res/fx.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3159267\">Icon Insert Function</alt></image>"
+msgstr ""
+
+#. 4Hfgb
+#: 04080000.xhp
+msgctxt ""
+"04080000.xhp\n"
+"par_id3147345\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/functionpanel/insert\">Inserts the selected function into the document.</ahelp>"
+msgstr ""
+
+#. fMNek
+#: 04090000.xhp
+msgctxt ""
+"04090000.xhp\n"
+"tit\n"
+"help.text"
+msgid "External Links"
+msgstr ""
+
+#. Fnwpz
+#: 04090000.xhp
+msgctxt ""
+"04090000.xhp\n"
+"par_id3153192\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Open a file dialog to locate the file containing the data you want to insert.</ahelp>"
+msgstr ""
+
+#. rGHoi
+#: 04090000.xhp
+msgctxt ""
+"04090000.xhp\n"
+"hd_id3145785\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04090000.xhp\" name=\"External Data\">External Links</link>"
+msgstr ""
+
+#. SaAut
+#: 04090000.xhp
+msgctxt ""
+"04090000.xhp\n"
+"par_id3149262\n"
+"help.text"
+msgid "<ahelp hid=\".uno:InsertExternalDataSourc\">Inserts data from an HTML, Calc, CSV or Excel file into the current sheet as a link. The data must be located within a named range.</ahelp>"
+msgstr ""
+
+#. ZYJLh
+#: 04090000.xhp
+msgctxt ""
+"04090000.xhp\n"
+"hd_id3146984\n"
+"help.text"
+msgid "URL of external data source."
+msgstr ""
+
+#. UPCaZ
+#: 04090000.xhp
+msgctxt ""
+"04090000.xhp\n"
+"par_id3145366\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> Alternatively, click <emph>Browse</emph> button to select the file name from a file dialog that opens. Only then will the URL be requested from the network or file system."
+msgstr ""
+
+#. oomVx
+#: 04090000.xhp
+msgctxt ""
+"04090000.xhp\n"
+"par_id621519313666202\n"
+"help.text"
+msgid "<link href=\"text/shared/00/00000208.xhp\" name=\"linkname\">A dialog for CSV data import</link> appears when linking to external CSV file."
+msgstr ""
+
+#. dEiJ7
+#: 04090000.xhp
+msgctxt ""
+"04090000.xhp\n"
+"hd_id3145251\n"
+"help.text"
+msgid "Available tables/ranges"
+msgstr ""
+
+#. RyXiF
+#: 04090000.xhp
+msgctxt ""
+"04090000.xhp\n"
+"par_id3147397\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp> If the selected Calc or Excel document contains no named range, spreadsheet data cannot be inserted and <emph>OK</emph> button will remain inactive"
+msgstr ""
+
+#. PVMSv
+#: 04090000.xhp
+msgctxt ""
+"04090000.xhp\n"
+"hd_id3154492\n"
+"help.text"
+msgid "Update every"
+msgstr ""
+
+#. zX8A3
+#: 04090000.xhp
+msgctxt ""
+"04090000.xhp\n"
+"par_id3154017\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 ""
+
+#. sTDFW
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Format Cells"
+msgstr ""
+
+#. zwHsD
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"bm_id3148663\n"
+"help.text"
+msgid "<bookmark_value>cell attributes</bookmark_value><bookmark_value>attributes;cells</bookmark_value><bookmark_value>formatting;cells</bookmark_value><bookmark_value>cells;formatting dialog</bookmark_value>"
+msgstr ""
+
+#. BDbGo
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"hd_id3148663\n"
+"help.text"
+msgid "Format Cells"
+msgstr ""
+
+#. Erm44
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"par_id3150448\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 ""
+
+#. BW9bs
+#: 05020600.xhp
+msgctxt ""
+"05020600.xhp\n"
+"tit\n"
+"help.text"
+msgid "Cell Protection"
+msgstr ""
+
+#. 7ynzR
+#: 05020600.xhp
+msgctxt ""
+"05020600.xhp\n"
+"hd_id3145119\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/05020600.xhp\" name=\"Cell Protection\">Cell Protection</link>"
+msgstr ""
+
+#. SwYVx
+#: 05020600.xhp
+msgctxt ""
+"05020600.xhp\n"
+"par_id3150398\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/cellprotectionpage/CellProtectionPage\">Defines protection options for selected cells.</ahelp>"
+msgstr ""
+
+#. 66fhc
+#: 05020600.xhp
+msgctxt ""
+"05020600.xhp\n"
+"hd_id3150447\n"
+"help.text"
+msgid "Protection"
+msgstr ""
+
+#. UZGtr
+#: 05020600.xhp
+msgctxt ""
+"05020600.xhp\n"
+"hd_id3125864\n"
+"help.text"
+msgid "Hide all"
+msgstr ""
+
+#. dFkaQ
+#: 05020600.xhp
+msgctxt ""
+"05020600.xhp\n"
+"par_id3153768\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/cellprotectionpage/checkHideAll\">Hides formulas and contents of the selected cells.</ahelp>"
+msgstr ""
+
+#. GCMBm
+#: 05020600.xhp
+msgctxt ""
+"05020600.xhp\n"
+"hd_id3153190\n"
+"help.text"
+msgid "Protected"
+msgstr ""
+
+#. T2UKs
+#: 05020600.xhp
+msgctxt ""
+"05020600.xhp\n"
+"par_id3151119\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/cellprotectionpage/checkProtected\">Prevents the selected cells from being modified.</ahelp>"
+msgstr ""
+
+#. GFkj2
+#: 05020600.xhp
+msgctxt ""
+"05020600.xhp\n"
+"par_id3156283\n"
+"help.text"
+msgid "This cell protection only takes effect if you also protect the sheet (<emph>Tools - Protect Sheet</emph>)."
+msgstr ""
+
+#. KDkXv
+#: 05020600.xhp
+msgctxt ""
+"05020600.xhp\n"
+"hd_id3149377\n"
+"help.text"
+msgid "Hide formula"
+msgstr ""
+
+#. sj8G9
+#: 05020600.xhp
+msgctxt ""
+"05020600.xhp\n"
+"par_id3154510\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/cellprotectionpage/checkHideFormula\">Hides formulas in the selected cells.</ahelp>"
+msgstr ""
+
+#. EvNBX
+#: 05020600.xhp
+msgctxt ""
+"05020600.xhp\n"
+"hd_id3155602\n"
+"help.text"
+msgid "Print"
+msgstr ""
+
+#. BcpeN
+#: 05020600.xhp
+msgctxt ""
+"05020600.xhp\n"
+"par_id3153836\n"
+"help.text"
+msgid "Defines print options for the sheet."
+msgstr ""
+
+#. CBBC7
+#: 05020600.xhp
+msgctxt ""
+"05020600.xhp\n"
+"hd_id3155065\n"
+"help.text"
+msgid "Hide when printing"
+msgstr ""
+
+#. DsG6g
+#: 05020600.xhp
+msgctxt ""
+"05020600.xhp\n"
+"par_id3155443\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/cellprotectionpage/checkHidePrinting\">Keeps the selected cells from being printed.</ahelp>"
+msgstr ""
+
+#. pre9G
+#: 05030000.xhp
+msgctxt ""
+"05030000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Row"
+msgstr ""
+
+#. 65bGM
+#: 05030000.xhp
+msgctxt ""
+"05030000.xhp\n"
+"hd_id3147228\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/05030000.xhp\" name=\"Row\">Row</link>"
+msgstr ""
+
+#. mX88W
+#: 05030000.xhp
+msgctxt ""
+"05030000.xhp\n"
+"par_id3154685\n"
+"help.text"
+msgid "<ahelp hid=\".\">Sets the row height and hides or shows selected rows.</ahelp>"
+msgstr ""
+
+#. VHCeF
+#: 05030000.xhp
+msgctxt ""
+"05030000.xhp\n"
+"hd_id3155132\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05340100.xhp\" name=\"Height\">Height</link>"
+msgstr ""
+
+#. xdW29
+#: 05030000.xhp
+msgctxt ""
+"05030000.xhp\n"
+"hd_id3155854\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/05030200.xhp\" name=\"Optimal Height\">Optimal Height</link>"
+msgstr ""
+
+#. MYt76
+#: 05030200.xhp
+msgctxt ""
+"05030200.xhp\n"
+"tit\n"
+"help.text"
+msgid "Optimal Row Heights"
+msgstr ""
+
+#. oaUQw
+#: 05030200.xhp
+msgctxt ""
+"05030200.xhp\n"
+"bm_id3148491\n"
+"help.text"
+msgid "<bookmark_value>sheets; optimal row heights</bookmark_value><bookmark_value>rows; optimal heights</bookmark_value><bookmark_value>optimal row heights</bookmark_value>"
+msgstr ""
+
+#. cFpPj
+#: 05030200.xhp
+msgctxt ""
+"05030200.xhp\n"
+"hd_id3148491\n"
+"help.text"
+msgid "Optimal Row Heights"
+msgstr ""
+
+#. 2YhvB
+#: 05030200.xhp
+msgctxt ""
+"05030200.xhp\n"
+"par_id3154758\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#measurement_units\" name=\"units of measure\">units of measure</link>."
+msgstr ""
+
+#. hCkvc
+#: 05030200.xhp
+msgctxt ""
+"05030200.xhp\n"
+"hd_id3154908\n"
+"help.text"
+msgid "Add"
+msgstr ""
+
+#. XZVzF
+#: 05030200.xhp
+msgctxt ""
+"05030200.xhp\n"
+"par_id3151044\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 ""
+
+#. EE9Hj
+#: 05030200.xhp
+msgctxt ""
+"05030200.xhp\n"
+"hd_id3150439\n"
+"help.text"
+msgid "Default value"
+msgstr ""
+
+#. bPBLW
+#: 05030200.xhp
+msgctxt ""
+"05030200.xhp\n"
+"par_id3146984\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/optimalrowheightdialog/default\">Restores the default value for the optimal row height.</ahelp>"
+msgstr ""
+
+#. WqW5P
+#: 05030300.xhp
+msgctxt ""
+"05030300.xhp\n"
+"tit\n"
+"help.text"
+msgid "Hide"
+msgstr ""
+
+#. B8BUx
+#: 05030300.xhp
+msgctxt ""
+"05030300.xhp\n"
+"bm_id3147265\n"
+"help.text"
+msgid "<bookmark_value>spreadsheets; hiding functions</bookmark_value><bookmark_value>hiding; rows</bookmark_value><bookmark_value>hiding; columns</bookmark_value><bookmark_value>hiding; sheets</bookmark_value><bookmark_value>sheets;hiding</bookmark_value><bookmark_value>columns;hiding</bookmark_value><bookmark_value>rows;hiding</bookmark_value>"
+msgstr ""
+
+#. 8fAGo
+#: 05030300.xhp
+msgctxt ""
+"05030300.xhp\n"
+"hd_id3147265\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/05030300.xhp\" name=\"Hide\">Hide</link>"
+msgstr ""
+
+#. efsZE
+#: 05030300.xhp
+msgctxt ""
+"05030300.xhp\n"
+"par_id3156281\n"
+"help.text"
+msgid "<ahelp hid=\".\">Hides selected rows, columns or individual sheets.</ahelp>"
+msgstr ""
+
+#. MJRUG
+#: 05030300.xhp
+msgctxt ""
+"05030300.xhp\n"
+"par_id3148645\n"
+"help.text"
+msgid "Select the rows or columns that you want to hide, and then choose <emph>Format - Rows - Hide </emph>or<emph> Format - Columns - Hide</emph>."
+msgstr ""
+
+#. nuUMt
+#: 05030300.xhp
+msgctxt ""
+"05030300.xhp\n"
+"par_id3147427\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 ""
+
+#. 6Abxr
+#: 05030300.xhp
+msgctxt ""
+"05030300.xhp\n"
+"par_id3153157\n"
+"help.text"
+msgid "A break in the row or column header indicates whether the row or column is hidden."
+msgstr ""
+
+#. bEAFm
+#: 05030300.xhp
+msgctxt ""
+"05030300.xhp\n"
+"par_id3145251\n"
+"help.text"
+msgid "To display hidden rows, columns or sheets"
+msgstr ""
+
+#. FGnsj
+#: 05030300.xhp
+msgctxt ""
+"05030300.xhp\n"
+"par_id8337046\n"
+"help.text"
+msgid "Select the range that includes the hidden objects. You can also use the box in the corner above row 1 and beside column A. For sheets, this step is not necessary."
+msgstr ""
+
+#. TmjTu
+#: 05030300.xhp
+msgctxt ""
+"05030300.xhp\n"
+"par_id5532090\n"
+"help.text"
+msgid "Choose <link href=\"text/scalc/01/05030400.xhp\" name=\"Format - Rows/Columns - Show\">Format - Rows/Columns - Show</link> or <link href=\"text/scalc/01/05050300.xhp\" name=\"Format - Sheet - Show\">Format - Sheet - Show</link>."
+msgstr ""
+
+#. cGFcB
+#: 05030400.xhp
+msgctxt ""
+"05030400.xhp\n"
+"tit\n"
+"help.text"
+msgid "Show"
+msgstr ""
+
+#. SEBHD
+#: 05030400.xhp
+msgctxt ""
+"05030400.xhp\n"
+"bm_id3147264\n"
+"help.text"
+msgid "<bookmark_value>spreadsheets; showing columns</bookmark_value><bookmark_value>showing; columns</bookmark_value><bookmark_value>showing; rows</bookmark_value>"
+msgstr ""
+
+#. q3EGA
+#: 05030400.xhp
+msgctxt ""
+"05030400.xhp\n"
+"hd_id3147264\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/05030400.xhp\" name=\"Show\">Show</link>"
+msgstr ""
+
+#. KCEi2
+#: 05030400.xhp
+msgctxt ""
+"05030400.xhp\n"
+"par_id3150447\n"
+"help.text"
+msgid "<ahelp hid=\".\">Choose this command to show previously hidden rows or columns.</ahelp>"
+msgstr ""
+
+#. 2G8WY
+#: 05030400.xhp
+msgctxt ""
+"05030400.xhp\n"
+"par_id3155131\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 - Rows - Show</emph> or <emph>Format - Columns - Show</emph>."
+msgstr ""
+
+#. wUVHJ
+#: 05030400.xhp
+msgctxt ""
+"05030400.xhp\n"
+"par_id3155132\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 - Columns - 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 - Columns - Show</emph>. Proceed the same way with rows."
+msgstr ""
+
+#. 2FmRj
+#: 05030400.xhp
+msgctxt ""
+"05030400.xhp\n"
+"par_id3145748\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 ""
+
+#. CMevq
+#: 05040000.xhp
+msgctxt ""
+"05040000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Column"
+msgstr ""
+
+#. f4QXn
+#: 05040000.xhp
+msgctxt ""
+"05040000.xhp\n"
+"hd_id3155628\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/05040000.xhp\" name=\"Column\">Column</link>"
+msgstr ""
+
+#. DDqh8
+#: 05040000.xhp
+msgctxt ""
+"05040000.xhp\n"
+"par_id3148946\n"
+"help.text"
+msgid "<ahelp hid=\".\">Sets the column width and hides or shows selected columns.</ahelp>"
+msgstr ""
+
+#. bGVCi
+#: 05040000.xhp
+msgctxt ""
+"05040000.xhp\n"
+"hd_id3150398\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05340200.xhp\" name=\"Width\">Width</link>"
+msgstr ""
+
+#. Aw7uF
+#: 05040000.xhp
+msgctxt ""
+"05040000.xhp\n"
+"hd_id3145171\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/05040200.xhp\" name=\"Optimal Width\">Optimal Width</link>"
+msgstr ""
+
+#. QNy4Y
+#: 05040200.xhp
+msgctxt ""
+"05040200.xhp\n"
+"tit\n"
+"help.text"
+msgid "Optimal Column Width"
+msgstr ""
+
+#. AfUzF
+#: 05040200.xhp
+msgctxt ""
+"05040200.xhp\n"
+"bm_id3155628\n"
+"help.text"
+msgid "<bookmark_value>spreadsheets; optimal column widths</bookmark_value><bookmark_value>columns; optimal widths</bookmark_value><bookmark_value>optimal column widths</bookmark_value>"
+msgstr ""
+
+#. mVifp
+#: 05040200.xhp
+msgctxt ""
+"05040200.xhp\n"
+"hd_id3155628\n"
+"help.text"
+msgid "Optimal Column Width"
+msgstr ""
+
+#. oVYyg
+#: 05040200.xhp
+msgctxt ""
+"05040200.xhp\n"
+"par_id3145068\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 ""
+
+#. dYhnc
+#: 05040200.xhp
+msgctxt ""
+"05040200.xhp\n"
+"hd_id3150767\n"
+"help.text"
+msgid "Add"
+msgstr ""
+
+#. qStM8
+#: 05040200.xhp
+msgctxt ""
+"05040200.xhp\n"
+"par_id3150449\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 ""
+
+#. aA4B5
+#: 05040200.xhp
+msgctxt ""
+"05040200.xhp\n"
+"hd_id3145785\n"
+"help.text"
+msgid "Default value"
+msgstr ""
+
+#. PhQgy
+#: 05040200.xhp
+msgctxt ""
+"05040200.xhp\n"
+"par_id3146120\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 2 mm."
+msgstr ""
+
+#. CYMhG
+#: 05050000.xhp
+msgctxt ""
+"05050000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Sheet"
+msgstr ""
+
+#. nwBNj
+#: 05050000.xhp
+msgctxt ""
+"05050000.xhp\n"
+"bm_id1245460\n"
+"help.text"
+msgid "<bookmark_value>CTL;right-to-left sheets</bookmark_value><bookmark_value>sheets;right-to-left</bookmark_value><bookmark_value>right-to-left text;spreadsheets</bookmark_value>"
+msgstr ""
+
+#. kVAsn
+#: 05050000.xhp
+msgctxt ""
+"05050000.xhp\n"
+"hd_id3155923\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/05050000.xhp\" name=\"Sheet\">Sheet</link>"
+msgstr ""
+
+#. 3DmMF
+#: 05050000.xhp
+msgctxt ""
+"05050000.xhp\n"
+"par_id3154758\n"
+"help.text"
+msgid "<ahelp hid=\".\">Sets the sheet name and hides or shows selected sheets.</ahelp>"
+msgstr ""
+
+#. 98YEy
+#: 05050000.xhp
+msgctxt ""
+"05050000.xhp\n"
+"hd_id3156280\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/05050100.xhp\" name=\"Rename\">Rename</link>"
+msgstr ""
+
+#. oCREo
+#: 05050000.xhp
+msgctxt ""
+"05050000.xhp\n"
+"hd_id3145787\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/05050300.xhp\" name=\"Show\">Show</link>"
+msgstr ""
+
+#. 4GEuh
+#: 05050000.xhp
+msgctxt ""
+"05050000.xhp\n"
+"par_id3150542\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 ""
+
+#. mTBVx
+#: 05050000.xhp
+msgctxt ""
+"05050000.xhp\n"
+"par_idN10656\n"
+"help.text"
+msgid "Right-To-Left"
+msgstr ""
+
+#. BBRDz
+#: 05050000.xhp
+msgctxt ""
+"05050000.xhp\n"
+"par_idN1065A\n"
+"help.text"
+msgid "<ahelp hid=\".uno:SheetRightToLeft\">Changes the orientation of the current sheet to Right-To-Left if <link href=\"text/shared/optionen/01150300.xhp\">CTL</link> support is enabled.</ahelp>"
+msgstr ""
+
+#. ZZLCF
+#: 05050100.xhp
+msgctxt ""
+"05050100.xhp\n"
+"tit\n"
+"help.text"
+msgid "Rename Sheet"
+msgstr ""
+
+#. 2tjxG
+#: 05050100.xhp
+msgctxt ""
+"05050100.xhp\n"
+"bm_id3147336\n"
+"help.text"
+msgid "<bookmark_value>worksheet names</bookmark_value><bookmark_value>changing; sheet names</bookmark_value><bookmark_value>sheets; renaming</bookmark_value>"
+msgstr ""
+
+#. esFGF
+#: 05050100.xhp
+msgctxt ""
+"05050100.xhp\n"
+"hd_id3147336\n"
+"help.text"
+msgid "Rename Sheet"
+msgstr ""
+
+#. RDpzd
+#: 05050100.xhp
+msgctxt ""
+"05050100.xhp\n"
+"par_id3150792\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 ""
+
+#. ZsSww
+#: 05050100.xhp
+msgctxt ""
+"05050100.xhp\n"
+"hd_id3153968\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. LdqUo
+#: 05050100.xhp
+msgctxt ""
+"05050100.xhp\n"
+"par_id3155131\n"
+"help.text"
+msgid "<ahelp hid=\"HID_SC_APPEND_NAME\">Enter a new name for the sheet here.</ahelp>"
+msgstr ""
+
+#. JF3vh
+#: 05050100.xhp
+msgctxt ""
+"05050100.xhp\n"
+"par_id3153092\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 ""
+
+#. 6mAmV
+#: 05050100.xhp
+msgctxt ""
+"05050100.xhp\n"
+"par_id3147396\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 ""
+
+#. e5RQH
+#: 05050300.xhp
+msgctxt ""
+"05050300.xhp\n"
+"tit\n"
+"help.text"
+msgid "Show Sheet"
+msgstr ""
+
+#. DU2mg
+#: 05050300.xhp
+msgctxt ""
+"05050300.xhp\n"
+"bm_id3148946\n"
+"help.text"
+msgid "<bookmark_value>sheets; displaying</bookmark_value><bookmark_value>displaying; sheets</bookmark_value>"
+msgstr ""
+
+#. EG8KY
+#: 05050300.xhp
+msgctxt ""
+"05050300.xhp\n"
+"hd_id3148946\n"
+"help.text"
+msgid "Show Sheet"
+msgstr ""
+
+#. cs7PB
+#: 05050300.xhp
+msgctxt ""
+"05050300.xhp\n"
+"par_id3148799\n"
+"help.text"
+msgid "<variable id=\"tabeintext\"><ahelp visibility=\"visible\" hid=\".uno:Show\">Displays sheets that were previously hidden with the <emph>Hide Sheets</emph> command.</ahelp></variable> Select one sheet only to call the command. The current sheet is always selected. If a sheet other than the current sheet is selected, you can deselect it by pressing <switchinline select=\"sys\"> <caseinline select=\"MAC\">Command</caseinline> <defaultinline>Ctrl</defaultinline> </switchinline> while clicking the corresponding sheet tab at the bottom of the window."
+msgstr ""
+
+#. fbAv3
+#: 05050300.xhp
+msgctxt ""
+"05050300.xhp\n"
+"hd_id3151112\n"
+"help.text"
+msgid "Hidden sheets"
+msgstr ""
+
+#. Sb7eJ
+#: 05050300.xhp
+msgctxt ""
+"05050300.xhp\n"
+"par_id3145273\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/showsheetdialog/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 ""
+
+#. 7WL8E
+#: 05060000.xhp
+msgctxt ""
+"05060000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Merge and Center Cells"
+msgstr ""
+
+#. yCXuu
+#: 05060000.xhp
+msgctxt ""
+"05060000.xhp\n"
+"bm_id501632012952361\n"
+"help.text"
+msgid "<bookmark_value>toggle merge and center cells</bookmark_value>"
+msgstr ""
+
+#. CQ5ZE
+#: 05060000.xhp
+msgctxt ""
+"05060000.xhp\n"
+"hd_id3149785\n"
+"help.text"
+msgid "<variable id=\"togglemergecells\"><link href=\"text/scalc/01/05060000.xhp\" name=\"Merge and Center Cells\">Merge and Center Cells</link></variable>"
+msgstr ""
+
+#. 8qb5f
+#: 05060000.xhp
+msgctxt ""
+"05060000.xhp\n"
+"par_id3151246\n"
+"help.text"
+msgid "<ahelp hid=\".\">This is a toggleable control that joins all cells in a rectangular selection into a single cell, or returns merged cells to the original individual cells. When merging it will format the merged cell as center aligned.</ahelp>"
+msgstr ""
+
+#. b63oA
+#: 05060000.xhp
+msgctxt ""
+"05060000.xhp\n"
+"par_id541633057818950\n"
+"help.text"
+msgid "The control is shown toggled-on whenever there are merged cells in the selection, indicating that clicking the control will unmerge those cells."
+msgstr ""
+
+#. MiEGm
+#: 05060000.xhp
+msgctxt ""
+"05060000.xhp\n"
+"par_id3153718\n"
+"help.text"
+msgid "Merging cells can lead to calculation errors in formulas in the table."
+msgstr ""
+
+#. fBfnU
+#: 05060000.xhp
+msgctxt ""
+"05060000.xhp\n"
+"par_id441632808439621\n"
+"help.text"
+msgid "Do one of the following:"
+msgstr ""
+
+#. bnEwD
+#: 05060000.xhp
+msgctxt ""
+"05060000.xhp\n"
+"par_id691632803588118\n"
+"help.text"
+msgid "In the <emph>Formatting</emph> toolbar, click:"
+msgstr ""
+
+#. BCsAA
+#: 05060000.xhp
+msgctxt ""
+"05060000.xhp\n"
+"par_id521632804983642\n"
+"help.text"
+msgid "<image id=\"img_id811632804983642\" src=\"cmd/sc_togglemergecells.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id921632804983642\">Icon Merge and Center Cells</alt></image>"
+msgstr ""
+
+#. 86yef
+#: 05060000.xhp
+msgctxt ""
+"05060000.xhp\n"
+"par_id491632804983642\n"
+"help.text"
+msgid "Merge and Center Cells"
+msgstr ""
+
+#. ZRQSQ
+#: 05060000.xhp
+msgctxt ""
+"05060000.xhp\n"
+"par_id3154020\n"
+"help.text"
+msgid "Or, choose <variable id=\"format_mergecells_menu\"><menuitem>Format - Merge and Unmerge Cells - </menuitem></variable><menuitem> Merge and Center Cells</menuitem>."
+msgstr ""
+
+#. 8zues
+#: 05060000.xhp
+msgctxt ""
+"05060000.xhp\n"
+"par_id3149665\n"
+"help.text"
+msgid "Cells cannot be merged again without first unmerging them."
+msgstr ""
+
+#. Dybs6
+#: 05060000.xhp
+msgctxt ""
+"05060000.xhp\n"
+"par_id581632979766784\n"
+"help.text"
+msgid "Merging a cell selection that partially includes merged cells is generally possible with <emph>Unmerge Cells</emph> followed by <emph>Merge Cells</emph>, without altering the initial selection. The result will be largely depend on previous choices when merging cells made with the <emph>Merge Cells Dialog</emph> options described below."
+msgstr ""
+
+#. wNBDD
+#: 05060000.xhp
+msgctxt ""
+"05060000.xhp\n"
+"par_id3148552\n"
+"help.text"
+msgid "Multiple selection is not supported, that is, the selection must be rectangular."
+msgstr ""
+
+#. XB4aH
+#: 05060000.xhp
+msgctxt ""
+"05060000.xhp\n"
+"par_id211632985508898\n"
+"help.text"
+msgid "The merged cell receives the name and content of the first cell of the selection."
+msgstr ""
+
+#. XRBDv
+#: 05060000.xhp
+msgctxt ""
+"05060000.xhp\n"
+"par_id271632985709781\n"
+"help.text"
+msgid "If more than one cell to be merged has content the <emph>Merge Cells</emph> dialog opens."
+msgstr ""
+
+#. QWjJw
+#: 05060000.xhp
+msgctxt ""
+"05060000.xhp\n"
+"par_id391632360383197\n"
+"help.text"
+msgid "Merge Cells Dialog Options"
+msgstr ""
+
+#. LBMEE
+#: 05060000.xhp
+msgctxt ""
+"05060000.xhp\n"
+"par_id1001240\n"
+"help.text"
+msgid "Three options are available:"
+msgstr ""
+
+#. hJHeB
+#: 05060000.xhp
+msgctxt ""
+"05060000.xhp\n"
+"par_id3155879\n"
+"help.text"
+msgid "<emph>Move the contents of the hidden cells into the first cell</emph>: <ahelp hid=\".\">The actual contents of the hidden cells are concatenated to the first cell, and hidden cells are emptied; the results of formulas referring to the hidden cells or the first cell will be updated.</ahelp>"
+msgstr ""
+
+#. BJLJD
+#: 05060000.xhp
+msgctxt ""
+"05060000.xhp\n"
+"par_id3155878\n"
+"help.text"
+msgid "<emph>Keep the contents of the hidden cells</emph>: <ahelp hid=\".\">The contents of the hidden cells are kept; the results of formulas referring to the hidden cells will not change.</ahelp>"
+msgstr ""
+
+#. BkGrN
+#: 05060000.xhp
+msgctxt ""
+"05060000.xhp\n"
+"par_id3155877\n"
+"help.text"
+msgid "<emph>Empty the contents of the hidden cells</emph>: <ahelp hid=\".\">The contents of the hidden cells are removed; the results of formulas referring to the hidden cells will be updated.</ahelp>"
+msgstr ""
+
+#. b8c8c
+#: 05070000.xhp
+msgctxt ""
+"05070000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Page Style"
+msgstr ""
+
+#. vEZHA
+#: 05070000.xhp
+msgctxt ""
+"05070000.xhp\n"
+"bm_id651593596384469\n"
+"help.text"
+msgid "<bookmark_value>style;page</bookmark_value><bookmark_value>page;style</bookmark_value><bookmark_value>format;page</bookmark_value><bookmark_value>formatting;page</bookmark_value>"
+msgstr ""
+
+#. Rpt6B
+#: 05070000.xhp
+msgctxt ""
+"05070000.xhp\n"
+"hd_id3157910\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/05070000.xhp\" name=\"Page Style\">Page Style</link>"
+msgstr ""
+
+#. 4vJrN
+#: 05070000.xhp
+msgctxt ""
+"05070000.xhp\n"
+"par_id3156023\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 ""
+
+#. FomNo
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"tit\n"
+"help.text"
+msgid "Sheet"
+msgstr ""
+
+#. Nnp5F
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"bm_id3150542\n"
+"help.text"
+msgid "<bookmark_value>pages; order when printing</bookmark_value><bookmark_value>printing; page order</bookmark_value>"
+msgstr ""
+
+#. 586SP
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"hd_id3156329\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/05070500.xhp\" name=\"Sheet\">Sheet</link>"
+msgstr ""
+
+#. cF9PV
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"par_id3151384\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 ""
+
+#. VFdWA
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"hd_id3150542\n"
+"help.text"
+msgid "Print"
+msgstr ""
+
+#. osYik
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"par_id3125863\n"
+"help.text"
+msgid "Defines which elements of the spreadsheet are to be printed."
+msgstr ""
+
+#. MbbQo
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"hd_id3151041\n"
+"help.text"
+msgid "Column and row headers"
+msgstr ""
+
+#. DuRDG
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"par_id3147228\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 ""
+
+#. dUDr8
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"hd_id3150439\n"
+"help.text"
+msgid "Grid"
+msgstr ""
+
+#. wUoBE
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"par_id3147436\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 ""
+
+#. E7Rqa
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"hd_id3145750\n"
+"help.text"
+msgid "Comments"
+msgstr ""
+
+#. vy7aH
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"par_id3150010\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 ""
+
+#. UEpxr
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"hd_id3154944\n"
+"help.text"
+msgid "Objects/images"
+msgstr ""
+
+#. cCDGR
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"par_id3149581\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 ""
+
+#. gdAEq
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"hd_id3149377\n"
+"help.text"
+msgid "Charts"
+msgstr ""
+
+#. KJLfW
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"par_id3148455\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_CHARTS\">Prints the charts that have been inserted into your spreadsheet.</ahelp>"
+msgstr ""
+
+#. pYAkL
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"hd_id3153418\n"
+"help.text"
+msgid "Drawing Objects"
+msgstr ""
+
+#. DQsGp
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"par_id3149122\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_DRAWINGS\">Includes all drawing objects in the printed document.</ahelp>"
+msgstr ""
+
+#. 3CToK
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"hd_id3150330\n"
+"help.text"
+msgid "Formulas"
+msgstr ""
+
+#. FTV55
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"par_id3153715\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 ""
+
+#. dXACj
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"hd_id3156385\n"
+"help.text"
+msgid "Zero Values"
+msgstr ""
+
+#. bDE6B
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"par_id3149258\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_NULLVALS\">Specifies that cells with a zero value are printed.</ahelp>"
+msgstr ""
+
+#. H2PJB
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"hd_id3154022\n"
+"help.text"
+msgid "Page Order"
+msgstr ""
+
+#. DhHDV
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"par_id3166423\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 ""
+
+#. 7mgS4
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"hd_id3152580\n"
+"help.text"
+msgid "Top to bottom, then right"
+msgstr ""
+
+#. AR84Y
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"par_id3150205\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 ""
+
+#. g4zAd
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"hd_id3150786\n"
+"help.text"
+msgid "Left to right, then down"
+msgstr ""
+
+#. dcd5d
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"par_id3154657\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 ""
+
+#. Y5Ca9
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"hd_id3150887\n"
+"help.text"
+msgid "First page number"
+msgstr ""
+
+#. oAziQ
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"par_id3155378\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_PAGENO\">Select this option if you want this style to restart page numbering.</ahelp>"
+msgstr ""
+
+#. gVwLk
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"par_id3145389\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/spinED_PAGENO\">Enter the number you want to restart at.</ahelp>"
+msgstr ""
+
+#. V6Y9R
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"hd_id3146978\n"
+"help.text"
+msgid "Scale"
+msgstr ""
+
+#. 57PH2
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"par_id3149408\n"
+"help.text"
+msgid "Defines a page scale for the printed spreadsheet."
+msgstr ""
+
+#. HJnGM
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"par_idN1096D\n"
+"help.text"
+msgid "Scaling mode"
+msgstr ""
+
+#. gevdh
+#: 05070500.xhp
+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 below the list box.</ahelp>"
+msgstr ""
+
+#. 9VfK4
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"hd_id3155089\n"
+"help.text"
+msgid "Reduce/enlarge printout"
+msgstr ""
+
+#. uCaGE
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"par_id3159171\n"
+"help.text"
+msgid "Specifies a scaling factor to scale all printed pages."
+msgstr ""
+
+#. FuaEf
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"par_idN1099A\n"
+"help.text"
+msgid "Scaling factor"
+msgstr ""
+
+#. xq9jN
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"par_id3152899\n"
+"help.text"
+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 ""
+
+#. vBP8E
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"par_idN109B2\n"
+"help.text"
+msgid "Fit print range(s) to width/height"
+msgstr ""
+
+#. MzoXE
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"par_idN109B5\n"
+"help.text"
+msgid "Specifies the maximum number of pages horizontally (width) and vertically (height) on which every sheet with the current Page Style is to be printed."
+msgstr ""
+
+#. KGfGD
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"par_idN109BB\n"
+"help.text"
+msgid "The print ranges are always scaled proportionally, so the resulting number of pages may be less than specified."
+msgstr ""
+
+#. QxBpf
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"par_idN109BF\n"
+"help.text"
+msgid "You may disable one of the boxes, then the unspecified dimension will use as many pages as necessary."
+msgstr ""
+
+#. Ak5rq
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"par_idN109C3\n"
+"help.text"
+msgid "If you disable both boxes, this will result in a scaling factor of 100%."
+msgstr ""
+
+#. CM4AG
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"par_idN109CE\n"
+"help.text"
+msgid "Width in pages"
+msgstr ""
+
+#. EnvBC
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"par_idN109D1\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/spinED_SCALEPAGEWIDTH\">Enter the maximum number of pages to be printed horizontally across.</ahelp>"
+msgstr ""
+
+#. JpChS
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"par_idN109E8\n"
+"help.text"
+msgid "Height in pages"
+msgstr ""
+
+#. 6Rat5
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"par_idN109EB\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/spinED_SCALEPAGEHEIGHT\">Enter the maximum number of pages to be printed vertically stacked.</ahelp>"
+msgstr ""
+
+#. RmjkY
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"hd_id3148868\n"
+"help.text"
+msgid "Fit print range(s) on number of pages"
+msgstr ""
+
+#. 7VYWo
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"par_id3145074\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 ""
+
+#. R3Fn6
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"par_idN10A26\n"
+"help.text"
+msgid "Number of pages"
+msgstr ""
+
+#. cp9EH
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"par_id3144507\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/spinED_SCALEPAGENUM\">Enter the maximum number of pages to be printed.</ahelp>"
+msgstr ""
+
+#. fBFBx
+#: 05080000.xhp
+msgctxt ""
+"05080000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Print Ranges"
+msgstr ""
+
+#. AZP37
+#: 05080000.xhp
+msgctxt ""
+"05080000.xhp\n"
+"hd_id3154013\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/05080000.xhp\" name=\"Print Ranges\">Print Ranges</link>"
+msgstr ""
+
+#. EQY6G
+#: 05080000.xhp
+msgctxt ""
+"05080000.xhp\n"
+"par_id3155855\n"
+"help.text"
+msgid "<ahelp hid=\".\">Manages print ranges. Only cells within the print ranges will be printed.</ahelp>"
+msgstr ""
+
+#. BagKE
+#: 05080000.xhp
+msgctxt ""
+"05080000.xhp\n"
+"par_id3146119\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 ""
+
+#. KjDFF
+#: 05080000.xhp
+msgctxt ""
+"05080000.xhp\n"
+"hd_id3154729\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/05080300.xhp\" name=\"Edit\">Edit</link>"
+msgstr ""
+
+#. pU6G7
+#: 05080100.xhp
+msgctxt ""
+"05080100.xhp\n"
+"tit\n"
+"help.text"
+msgid "Define"
+msgstr ""
+
+#. HCgFm
+#: 05080100.xhp
+msgctxt ""
+"05080100.xhp\n"
+"hd_id3145673\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/05080100.xhp\" name=\"Define\">Define</link>"
+msgstr ""
+
+#. H3NLs
+#: 05080100.xhp
+msgctxt ""
+"05080100.xhp\n"
+"par_id3153896\n"
+"help.text"
+msgid "<ahelp hid=\".uno:DefinePrintArea\">Defines an active cell or selected cell area as the print range.</ahelp>"
+msgstr ""
+
+#. E8FoB
+#: 05080200.xhp
+msgctxt ""
+"05080200.xhp\n"
+"tit\n"
+"help.text"
+msgid "Clear"
+msgstr ""
+
+#. CxCKF
+#: 05080200.xhp
+msgctxt ""
+"05080200.xhp\n"
+"hd_id3153562\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/05080200.xhp\" name=\"Clear\">Clear</link>"
+msgstr ""
+
+#. yQoXR
+#: 05080200.xhp
+msgctxt ""
+"05080200.xhp\n"
+"par_id3148550\n"
+"help.text"
+msgid "<ahelp hid=\".uno:DeletePrintArea\">Removes the defined print area.</ahelp>"
+msgstr ""
+
+#. KSEPr
+#: 05080300.xhp
+msgctxt ""
+"05080300.xhp\n"
+"tit\n"
+"help.text"
+msgid "Edit Print Ranges"
+msgstr ""
+
+#. 8w7CW
+#: 05080300.xhp
+msgctxt ""
+"05080300.xhp\n"
+"hd_id3153088\n"
+"help.text"
+msgid "Edit Print Ranges"
+msgstr ""
+
+#. JfwDe
+#: 05080300.xhp
+msgctxt ""
+"05080300.xhp\n"
+"par_id3159488\n"
+"help.text"
+msgid "<variable id=\"printrangestext\"><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 ""
+
+#. eja4j
+#: 05080300.xhp
+msgctxt ""
+"05080300.xhp\n"
+"hd_id3156281\n"
+"help.text"
+msgid "Print range"
+msgstr ""
+
+#. QqgB7
+#: 05080300.xhp
+msgctxt ""
+"05080300.xhp\n"
+"par_id3147228\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/printareasdialog/edprintarea\">Allows you to modify a defined print range.</ahelp>"
+msgstr ""
+
+#. rCXFF
+#: 05080300.xhp
+msgctxt ""
+"05080300.xhp\n"
+"par_id3145174\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 ""
+
+#. EHrtv
+#: 05080300.xhp
+msgctxt ""
+"05080300.xhp\n"
+"par_id3145272\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 ""
+
+#. GLAoB
+#: 05080300.xhp
+msgctxt ""
+"05080300.xhp\n"
+"hd_id3149260\n"
+"help.text"
+msgid "Rows to repeat"
+msgstr ""
+
+#. gtouh
+#: 05080300.xhp
+msgctxt ""
+"05080300.xhp\n"
+"par_id3147426\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 ""
+
+#. FoPy6
+#: 05080300.xhp
+msgctxt ""
+"05080300.xhp\n"
+"par_id3155418\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 ""
+
+#. ggSef
+#: 05080300.xhp
+msgctxt ""
+"05080300.xhp\n"
+"hd_id3149581\n"
+"help.text"
+msgid "Columns to repeat"
+msgstr ""
+
+#. Lym3n
+#: 05080300.xhp
+msgctxt ""
+"05080300.xhp\n"
+"par_id3155602\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 ""
+
+#. NURpc
+#: 05080300.xhp
+msgctxt ""
+"05080300.xhp\n"
+"par_id3150749\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 ""
+
+#. ARRPp
+#: 05080400.xhp
+msgctxt ""
+"05080400.xhp\n"
+"tit\n"
+"help.text"
+msgid "Add"
+msgstr ""
+
+#. XfP3x
+#: 05080400.xhp
+msgctxt ""
+"05080400.xhp\n"
+"hd_id3149457\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/05080400.xhp\" name=\"Add\">Add</link>"
+msgstr ""
+
+#. bhucD
+#: 05080400.xhp
+msgctxt ""
+"05080400.xhp\n"
+"par_id3156423\n"
+"help.text"
+msgid "<ahelp hid=\".uno:AddPrintArea\">Adds the current selection to the defined print areas.</ahelp>"
+msgstr ""
+
+#. U9JPr
+#: 05100000.xhp
+msgctxt ""
+"05100000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Styles in Calc"
+msgstr ""
+
+#. rJpRh
+#: 05100000.xhp
+msgctxt ""
+"05100000.xhp\n"
+"bm_id3150447\n"
+"help.text"
+msgid "<bookmark_value>Stylist, see Styles window</bookmark_value><bookmark_value>Styles window</bookmark_value><bookmark_value>formats; Styles window</bookmark_value><bookmark_value>formatting; Styles window</bookmark_value><bookmark_value>paint can for applying styles</bookmark_value><bookmark_value>styles in spreadsheets</bookmark_value><bookmark_value>styles; in Calc</bookmark_value>"
+msgstr ""
+
+#. eA3vo
+#: 05100000.xhp
+msgctxt ""
+"05100000.xhp\n"
+"hd_id3150447\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/05100000.xhp\" name=\"Styles\">Styles</link>"
+msgstr ""
+
+#. bBG57
+#: 05100000.xhp
+msgctxt ""
+"05100000.xhp\n"
+"par_id3147434\n"
+"help.text"
+msgid "Use the Styles deck of the Sidebar to assign styles to cells and pages. You can apply, update, and modify existing styles or create new styles."
+msgstr ""
+
+#. nTiyj
+#: 05100000.xhp
+msgctxt ""
+"05100000.xhp\n"
+"par_id3149665\n"
+"help.text"
+msgid "The Styles <link href=\"text/shared/00/00000005.xhp#docking\" name=\"dockable window\">dockable window</link> can remain open while editing the document."
+msgstr ""
+
+#. cawKF
+#: 05100000.xhp
+msgctxt ""
+"05100000.xhp\n"
+"hd_id3150012\n"
+"help.text"
+msgid "How to apply a cell style:"
+msgstr ""
+
+#. 64xa4
+#: 05100000.xhp
+msgctxt ""
+"05100000.xhp\n"
+"par_id3159155\n"
+"help.text"
+msgid "Select the cell or cell range."
+msgstr ""
+
+#. Pqy9E
+#: 05100000.xhp
+msgctxt ""
+"05100000.xhp\n"
+"par_id3145749\n"
+"help.text"
+msgid "Double-click the style in the Styles window."
+msgstr ""
+
+#. SbgEE
+#: 05100000.xhp
+msgctxt ""
+"05100000.xhp\n"
+"par_id3145801\n"
+"help.text"
+msgid "<ahelp hid=\".\">Displays the list of the available Cell Styles.</ahelp>"
+msgstr ""
+
+#. JcMEc
+#: 05100000.xhp
+msgctxt ""
+"05100000.xhp\n"
+"par_id3150751\n"
+"help.text"
+msgid "<image id=\"img_id3153714\" src=\"sc/res/sf01.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153714\">Icon Cell Styles</alt></image>"
+msgstr ""
+
+#. HKD2C
+#: 05100000.xhp
+msgctxt ""
+"05100000.xhp\n"
+"par_id3154255\n"
+"help.text"
+msgid "Cell Styles"
+msgstr ""
+
+#. 7FwJf
+#: 05100000.xhp
+msgctxt ""
+"05100000.xhp\n"
+"hd_id171593598056580\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/05070000.xhp\" name=\"page styles\">Page Styles</link>"
+msgstr ""
+
+#. 4XFww
+#: 05100000.xhp
+msgctxt ""
+"05100000.xhp\n"
+"par_id3147003\n"
+"help.text"
+msgid "<ahelp hid=\".\">Displays the Page Styles available.</ahelp>"
+msgstr ""
+
+#. cM9f4
+#: 05100000.xhp
+msgctxt ""
+"05100000.xhp\n"
+"par_id3159100\n"
+"help.text"
+msgid "<image id=\"img_id3149814\" src=\"sw/res/sf04.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149814\">Icon Page Styles</alt></image>"
+msgstr ""
+
+#. BnFvb
+#: 05100000.xhp
+msgctxt ""
+"05100000.xhp\n"
+"par_id3150361\n"
+"help.text"
+msgid "Page Styles"
+msgstr ""
+
+#. 5oqDb
+#: 05100000.xhp
+msgctxt ""
+"05100000.xhp\n"
+"hd_id3150202\n"
+"help.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#. KbBKW
+#: 05100000.xhp
+msgctxt ""
+"05100000.xhp\n"
+"par_id3155531\n"
+"help.text"
+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 window.</ahelp>"
+msgstr ""
+
+#. ChsD7
+#: 05100000.xhp
+msgctxt ""
+"05100000.xhp\n"
+"par_id3155087\n"
+"help.text"
+msgid "<image id=\"img_id3153068\" src=\"cmd/sc_fillstyle.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153068\">Icon Fill Format Mode</alt></image>"
+msgstr ""
+
+#. TEEFF
+#: 05100000.xhp
+msgctxt ""
+"05100000.xhp\n"
+"par_id3156198\n"
+"help.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#. AyAJb
+#: 05100000.xhp
+msgctxt ""
+"05100000.xhp\n"
+"hd_id3148870\n"
+"help.text"
+msgid "How to apply a new style with the paint can:"
+msgstr ""
+
+#. smD7a
+#: 05100000.xhp
+msgctxt ""
+"05100000.xhp\n"
+"par_id3145078\n"
+"help.text"
+msgid "Select the desired style from the Styles window."
+msgstr ""
+
+#. pszdB
+#: 05100000.xhp
+msgctxt ""
+"05100000.xhp\n"
+"par_id3159098\n"
+"help.text"
+msgid "Click the <emph>Fill Format Mode</emph> icon."
+msgstr ""
+
+#. wuCEH
+#: 05100000.xhp
+msgctxt ""
+"05100000.xhp\n"
+"par_id3148609\n"
+"help.text"
+msgid "Click a cell to format it, or drag your mouse over a certain range to format the whole range. Repeat this action for other cells and ranges."
+msgstr ""
+
+#. C92iH
+#: 05100000.xhp
+msgctxt ""
+"05100000.xhp\n"
+"par_id3149438\n"
+"help.text"
+msgid "Click the <emph>Fill Format Mode</emph> icon again to exit this mode."
+msgstr ""
+
+#. t4J66
+#: 05100000.xhp
+msgctxt ""
+"05100000.xhp\n"
+"hd_id3153975\n"
+"help.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#. XF53F
+#: 05100000.xhp
+msgctxt ""
+"05100000.xhp\n"
+"par_id3149499\n"
+"help.text"
+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 ""
+
+#. T967y
+#: 05100000.xhp
+msgctxt ""
+"05100000.xhp\n"
+"par_id3150050\n"
+"help.text"
+msgid "<image id=\"img_id3154649\" src=\"cmd/sc_stylenewbyexample.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154649\">Icon New Style from Selection</alt></image>"
+msgstr ""
+
+#. aE4gp
+#: 05100000.xhp
+msgctxt ""
+"05100000.xhp\n"
+"par_id3146963\n"
+"help.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#. 6fbg4
+#: 05100000.xhp
+msgctxt ""
+"05100000.xhp\n"
+"hd_id3153813\n"
+"help.text"
+msgid "Update Style"
+msgstr ""
+
+#. cnnLu
+#: 05100000.xhp
+msgctxt ""
+"05100000.xhp\n"
+"par_id3154707\n"
+"help.text"
+msgid "<ahelp hid=\"SFX2_HID_TEMPLDLG_UPDATEBYEXAMPLE\">Updates the Style selected in the Styles window with the current formatting of the selected object.</ahelp>"
+msgstr ""
+
+#. F3Lph
+#: 05100000.xhp
+msgctxt ""
+"05100000.xhp\n"
+"par_id3145118\n"
+"help.text"
+msgid "<image id=\"img_id3155754\" src=\"cmd/sc_styleupdatebyexample.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155754\">Icon Update Style</alt></image>"
+msgstr ""
+
+#. AbPzG
+#: 05100000.xhp
+msgctxt ""
+"05100000.xhp\n"
+"par_id3147501\n"
+"help.text"
+msgid "Update Style"
+msgstr ""
+
+#. r8GGG
+#: 05100000.xhp
+msgctxt ""
+"05100000.xhp\n"
+"par_idN109BE\n"
+"help.text"
+msgid "Style List"
+msgstr ""
+
+#. NwnDS
+#: 05100000.xhp
+msgctxt ""
+"05100000.xhp\n"
+"par_idN109C2\n"
+"help.text"
+msgid "<ahelp hid=\"SFX2_HID_TEMPLATE_FMT\">Displays the list of the styles from the selected style category.</ahelp>"
+msgstr ""
+
+#. YBufY
+#: 05100000.xhp
+msgctxt ""
+"05100000.xhp\n"
+"par_idN109D1\n"
+"help.text"
+msgid "In the <link href=\"text/shared/00/00000005.xhp#contextmenu\" name=\"context menu\">context menu</link> you can choose commands to create a new style, delete a user-defined style, or change the selected style."
+msgstr ""
+
+#. zdEoY
+#: 05100000.xhp
+msgctxt ""
+"05100000.xhp\n"
+"hd_id3149053\n"
+"help.text"
+msgid "Style Groups"
+msgstr ""
+
+#. ULu5G
+#: 05100000.xhp
+msgctxt ""
+"05100000.xhp\n"
+"par_id3147299\n"
+"help.text"
+msgid "<ahelp hid=\"SFX2_HID_TEMPLATE_FILTER\">Lists the available style groups.</ahelp>"
+msgstr ""
+
+#. MiWuG
+#: 05110000.xhp
+msgctxt ""
+"05110000.xhp\n"
+"tit\n"
+"help.text"
+msgid "AutoFormat"
+msgstr ""
+
+#. qyLnB
+#: 05110000.xhp
+msgctxt ""
+"05110000.xhp\n"
+"hd_id3149666\n"
+"help.text"
+msgid "<variable id=\"autoformat\"><link href=\"text/scalc/01/05110000.xhp\" name=\"AutoFormat\">AutoFormat</link></variable>"
+msgstr ""
+
+#. ATtMX
+#: 05110000.xhp
+msgctxt ""
+"05110000.xhp\n"
+"par_id3145367\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 ""
+
+#. 7SZiE
+#: 05110000.xhp
+msgctxt ""
+"05110000.xhp\n"
+"par_id181630332690300\n"
+"help.text"
+msgid "The AutoFormat command is available only if a cell range with at least 3 columns and 3 rows are selected. Otherwise this command will appear grayed out in the menu."
+msgstr ""
+
+#. Gid6Q
+#: 05110000.xhp
+msgctxt ""
+"05110000.xhp\n"
+"hd_id3148455\n"
+"help.text"
+msgid "Format"
+msgstr ""
+
+#. Bp6GQ
+#: 05110000.xhp
+msgctxt ""
+"05110000.xhp\n"
+"par_id3145799\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 ""
+
+#. AQe2Q
+#: 05110000.xhp
+msgctxt ""
+"05110000.xhp\n"
+"hd_id3149410\n"
+"help.text"
+msgid "Add"
+msgstr ""
+
+#. FXjGb
+#: 05110000.xhp
+msgctxt ""
+"05110000.xhp\n"
+"par_id3154017\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 <emph>Add AutoFormat</emph> dialog then appears."
+msgstr ""
+
+#. JArjF
+#: 05110000.xhp
+msgctxt ""
+"05110000.xhp\n"
+"par_id3153708\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter a name and click <emph>OK</emph>. </ahelp>"
+msgstr ""
+
+#. jio4T
+#: 05110000.xhp
+msgctxt ""
+"05110000.xhp\n"
+"hd_id3159223\n"
+"help.text"
+msgid "Rename"
+msgstr ""
+
+#. MqzXD
+#: 05110000.xhp
+msgctxt ""
+"05110000.xhp\n"
+"par_id3153064\n"
+"help.text"
+msgid "<ahelp hid=\".\">Opens a dialog where you can change the name of the selected AutoFormat.</ahelp>"
+msgstr ""
+
+#. tBi3c
+#: 05110000.xhp
+msgctxt ""
+"05110000.xhp\n"
+"par_id3153912\n"
+"help.text"
+msgid "The <emph>Rename AutoFormat</emph> dialog opens.<ahelp hid=\".\"> Enter the new name of the AutoFormat here.</ahelp>"
+msgstr ""
+
+#. 9Fnyt
+#: 05110000.xhp
+msgctxt ""
+"05110000.xhp\n"
+"hd_id3155961\n"
+"help.text"
+msgid "Formatting"
+msgstr ""
+
+#. xbN7F
+#: 05110000.xhp
+msgctxt ""
+"05110000.xhp\n"
+"par_id3153965\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 ""
+
+#. Fyqgf
+#: 05110000.xhp
+msgctxt ""
+"05110000.xhp\n"
+"hd_id3154021\n"
+"help.text"
+msgid "Number format"
+msgstr ""
+
+#. BCCRb
+#: 05110000.xhp
+msgctxt ""
+"05110000.xhp\n"
+"par_id3159239\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 ""
+
+#. gENSs
+#: 05110000.xhp
+msgctxt ""
+"05110000.xhp\n"
+"hd_id3149530\n"
+"help.text"
+msgid "Borders"
+msgstr ""
+
+#. BisJb
+#: 05110000.xhp
+msgctxt ""
+"05110000.xhp\n"
+"par_id3145259\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 ""
+
+#. AFrd6
+#: 05110000.xhp
+msgctxt ""
+"05110000.xhp\n"
+"hd_id3154657\n"
+"help.text"
+msgid "Font"
+msgstr ""
+
+#. phND5
+#: 05110000.xhp
+msgctxt ""
+"05110000.xhp\n"
+"par_id3152990\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 ""
+
+#. uCDGT
+#: 05110000.xhp
+msgctxt ""
+"05110000.xhp\n"
+"hd_id3155379\n"
+"help.text"
+msgid "Pattern"
+msgstr ""
+
+#. CTDte
+#: 05110000.xhp
+msgctxt ""
+"05110000.xhp\n"
+"par_id3150368\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 ""
+
+#. C6ePa
+#: 05110000.xhp
+msgctxt ""
+"05110000.xhp\n"
+"hd_id3146115\n"
+"help.text"
+msgid "Alignment"
+msgstr ""
+
+#. oLYqw
+#: 05110000.xhp
+msgctxt ""
+"05110000.xhp\n"
+"par_id3156445\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 ""
+
+#. YsUAs
+#: 05110000.xhp
+msgctxt ""
+"05110000.xhp\n"
+"hd_id3155811\n"
+"help.text"
+msgid "AutoFit width and height"
+msgstr ""
+
+#. QpFsA
+#: 05110000.xhp
+msgctxt ""
+"05110000.xhp\n"
+"par_id3148703\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 ""
+
+#. xBzMp
+#: 05120000.xhp
+msgctxt ""
+"05120000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Conditional Formatting"
+msgstr ""
+
+#. 76cMu
+#: 05120000.xhp
+msgctxt ""
+"05120000.xhp\n"
+"hd_id3155132\n"
+"help.text"
+msgid "Conditional Formatting"
+msgstr ""
+
+#. qb52L
+#: 05120000.xhp
+msgctxt ""
+"05120000.xhp\n"
+"par_id3163710\n"
+"help.text"
+msgid "<variable id=\"bedingtetext\"><ahelp hid=\".\">Use <emph>Conditional Formatting</emph> to define range-based conditions that determine which cell style will be applied to each cell in a given range based on its contents.</ahelp></variable> The cell style corresponding to the first condition that evaluates to <emph>true</emph> is applied. Cell styles applied through Conditional Formatting override cell styles applied manually using the <link href=\"text/scalc/main0202.xhp\" name=\"FormattingBar_link\"><emph>Formatting Bar</emph></link> or the <emph>Styles</emph> sidebar."
+msgstr ""
+
+#. 2GWTv
+#: 05120000.xhp
+msgctxt ""
+"05120000.xhp\n"
+"par_id3163711\n"
+"help.text"
+msgid "You can enter several conditions that query the cell values or results of formulas. The conditions are evaluated from first to the last. If <emph>Condition 1</emph> is true based on the current cell contents, the corresponding cell style is applied. Otherwise, <emph>Condition 2</emph> is evaluated to determine if its corresponding style will be applied. If none of the conditions match cell contents, then no changes are made to the cell format."
+msgstr ""
+
+#. 9vjYD
+#: 05120000.xhp
+msgctxt ""
+"05120000.xhp\n"
+"par_id431642031216368\n"
+"help.text"
+msgid "Conditional formats do not overwrite cell styles and direct formatting applied manually. They remain saved as cell properties and are applied when the cell matches no conditions or when you remove all conditional formats."
+msgstr ""
+
+#. AMXCn
+#: 05120000.xhp
+msgctxt ""
+"05120000.xhp\n"
+"par_id2414014\n"
+"help.text"
+msgid "To apply conditional formatting, AutoCalculate must be enabled. Choose <emph>Data - Calculate - AutoCalculate</emph> (you see a check mark next to the command when AutoCalculate is enabled)."
+msgstr ""
+
+#. Kp2g2
+#: 05120000.xhp
+msgctxt ""
+"05120000.xhp\n"
+"hd_id961662926287139\n"
+"help.text"
+msgid "Cell range"
+msgstr ""
+
+#. Gv4oU
+#: 05120000.xhp
+msgctxt ""
+"05120000.xhp\n"
+"hd_id431662926282555\n"
+"help.text"
+msgid "Range"
+msgstr ""
+
+#. BoUXF
+#: 05120000.xhp
+msgctxt ""
+"05120000.xhp\n"
+"par_id31494138\n"
+"help.text"
+msgid "Defines the range of cells concerned by the conditional formatting. Click on the <emph>Shrink</emph> button to minimize the dialog box. Click again on the button to come back to the dialog box once the range is selected."
+msgstr ""
+
+#. NvgCF
+#: 05120000.xhp
+msgctxt ""
+"05120000.xhp\n"
+"bm_id3153189\n"
+"help.text"
+msgid "<bookmark_value>conditional formatting; conditions</bookmark_value>"
+msgstr ""
+
+#. tYBMm
+#: 05120000.xhp
+msgctxt ""
+"05120000.xhp\n"
+"hd_id71624649758112\n"
+"help.text"
+msgid "Condition list"
+msgstr ""
+
+#. aX6Li
+#: 05120000.xhp
+msgctxt ""
+"05120000.xhp\n"
+"par_id3149413\n"
+"help.text"
+msgid "List of the conditions defined for the cell range in order of evaluation. You can define as many conditions as you want."
+msgstr ""
+
+#. YHZ6v
+#: 05120000.xhp
+msgctxt ""
+"05120000.xhp\n"
+"hd_id41624649786605\n"
+"help.text"
+msgid "Up"
+msgstr ""
+
+#. xSGWr
+#: 05120000.xhp
+msgctxt ""
+"05120000.xhp\n"
+"par_id3149414\n"
+"help.text"
+msgid "<ahelp hid=\".\">Increase priority of the selected condition.</ahelp>"
+msgstr ""
+
+#. YWF6k
+#: 05120000.xhp
+msgctxt ""
+"05120000.xhp\n"
+"hd_id861624649792266\n"
+"help.text"
+msgid "Down"
+msgstr ""
+
+#. BAEJK
+#: 05120000.xhp
+msgctxt ""
+"05120000.xhp\n"
+"par_id3149415\n"
+"help.text"
+msgid "<ahelp hid=\".\">Decrease priority of the selected condition.</ahelp>"
+msgstr ""
+
+#. niBsF
+#: 05120000.xhp
+msgctxt ""
+"05120000.xhp\n"
+"hd_id71662926011736\n"
+"help.text"
+msgid "Add"
+msgstr ""
+
+#. NiRqU
+#: 05120000.xhp
+msgctxt ""
+"05120000.xhp\n"
+"par_id721662926016039\n"
+"help.text"
+msgid "Adds the condition to the condition list."
+msgstr ""
+
+#. EXu3U
+#: 05120000.xhp
+msgctxt ""
+"05120000.xhp\n"
+"hd_id401662926020291\n"
+"help.text"
+msgid "Delete"
+msgstr ""
+
+#. njCNL
+#: 05120000.xhp
+msgctxt ""
+"05120000.xhp\n"
+"par_id301662926026944\n"
+"help.text"
+msgid "Deletes the condition from the condition list."
+msgstr ""
+
+#. ZSEod
+#: 05120000.xhp
+msgctxt ""
+"05120000.xhp\n"
+"hd_id31531891\n"
+"help.text"
+msgid "Condition list entries"
+msgstr ""
+
+#. udAbc
+#: 05120000.xhp
+msgctxt ""
+"05120000.xhp\n"
+"par_id31494132\n"
+"help.text"
+msgid "Specify if conditional formatting is dependent on one of the entry listed on the drop down box."
+msgstr ""
+
+#. WsjTp
+#: 05120000.xhp
+msgctxt ""
+"05120000.xhp\n"
+"hd_id431662938949798\n"
+"help.text"
+msgid "Apply Style"
+msgstr ""
+
+#. 8WfD4
+#: 05120000.xhp
+msgctxt ""
+"05120000.xhp\n"
+"par_id971662939043786\n"
+"help.text"
+msgid "Select the cell style to apply when the condition is verified. Select <emph>New Style</emph> to open the <link href=\"text/scalc/01/cell_styles.xhp\" name=\"cellstyledialog\">Cell Style dialog</link> and define the style properties."
+msgstr ""
+
+#. CHbab
+#: 05120100.xhp
+msgctxt ""
+"05120100.xhp\n"
+"tit\n"
+"help.text"
+msgid "Conditional Formatting - Cell value is"
+msgstr ""
+
+#. XZ4AV
+#: 05120100.xhp
+msgctxt ""
+"05120100.xhp\n"
+"hd_id431662935550205\n"
+"help.text"
+msgid "<variable id=\"h1\"><link href=\"text/scalc/01/05120100.xhp\" name=\"Cell Value\">Condition - Cell value is</link></variable>"
+msgstr ""
+
+#. RtY8f
+#: 05120100.xhp
+msgctxt ""
+"05120100.xhp\n"
+"par_id11662915615351\n"
+"help.text"
+msgid "Applies a cell style on the cell or cell range controlled by the condition set in the drop down list. The formatting is applied to each cell individually and the condition may depend on other cells values of the selected range."
+msgstr ""
+
+#. fkuaH
+#: 05120100.xhp
+msgctxt ""
+"05120100.xhp\n"
+"par_id181662913907279\n"
+"help.text"
+msgid "Condition"
+msgstr ""
+
+#. gJBMQ
+#: 05120100.xhp
+msgctxt ""
+"05120100.xhp\n"
+"par_id221663406419144\n"
+"help.text"
+msgid "Applies on"
+msgstr ""
+
+#. Yd3xQ
+#: 05120100.xhp
+msgctxt ""
+"05120100.xhp\n"
+"par_id941662913907280\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. nP5Ym
+#: 05120100.xhp
+msgctxt ""
+"05120100.xhp\n"
+"par_id31662913907282\n"
+"help.text"
+msgid "is equal to"
+msgstr ""
+
+#. rWJoB
+#: 05120100.xhp
+msgctxt ""
+"05120100.xhp\n"
+"par_id321663406539530\n"
+"help.text"
+msgid "<variable id=\"numbertext\">Numbers and text</variable>"
+msgstr ""
+
+#. bYfTW
+#: 05120100.xhp
+msgctxt ""
+"05120100.xhp\n"
+"par_id881662913907284\n"
+"help.text"
+msgid "The cell value equals the user defined value in text box in the right. Use text inside quotes if you compare text values."
+msgstr ""
+
+#. ziYCE
+#: 05120100.xhp
+msgctxt ""
+"05120100.xhp\n"
+"par_id271662914239763\n"
+"help.text"
+msgid "is less than"
+msgstr ""
+
+#. bS8eG
+#: 05120100.xhp
+msgctxt ""
+"05120100.xhp\n"
+"par_id121663406585137\n"
+"help.text"
+msgid "<variable id=\"numbers\">Numbers</variable>"
+msgstr ""
+
+#. BdnvW
+#: 05120100.xhp
+msgctxt ""
+"05120100.xhp\n"
+"par_id501662914239764\n"
+"help.text"
+msgid "The cell value is strictly less than the user defined value in the text box in the right."
+msgstr ""
+
+#. Zyiqi
+#: 05120100.xhp
+msgctxt ""
+"05120100.xhp\n"
+"par_id701662914433053\n"
+"help.text"
+msgid "is greater than"
+msgstr ""
+
+#. PCZug
+#: 05120100.xhp
+msgctxt ""
+"05120100.xhp\n"
+"par_id461662914433054\n"
+"help.text"
+msgid "The cell value is strictly greater than the user defined value in the text box in the right."
+msgstr ""
+
+#. zTBff
+#: 05120100.xhp
+msgctxt ""
+"05120100.xhp\n"
+"par_id421662914480517\n"
+"help.text"
+msgid "is less than or equal to"
+msgstr ""
+
+#. Cy2T9
+#: 05120100.xhp
+msgctxt ""
+"05120100.xhp\n"
+"par_id631662914480518\n"
+"help.text"
+msgid "The cell value is less than or equal to the user defined value in the text box in the right."
+msgstr ""
+
+#. cFMZa
+#: 05120100.xhp
+msgctxt ""
+"05120100.xhp\n"
+"par_id651662914713102\n"
+"help.text"
+msgid "is greater than or equal to"
+msgstr ""
+
+#. YG9FG
+#: 05120100.xhp
+msgctxt ""
+"05120100.xhp\n"
+"par_id251662914713103\n"
+"help.text"
+msgid "The cell value is greater than or equal to the user defined value in the text box in the right."
+msgstr ""
+
+#. Pbje6
+#: 05120100.xhp
+msgctxt ""
+"05120100.xhp\n"
+"par_id831662914760085\n"
+"help.text"
+msgid "is not equal to"
+msgstr ""
+
+#. T8x2N
+#: 05120100.xhp
+msgctxt ""
+"05120100.xhp\n"
+"par_id301662914760087\n"
+"help.text"
+msgid "The cell value is not equal (different) to the user defined value in the text box in the right. Use text inside quotes if you compare text values."
+msgstr ""
+
+#. B6eGh
+#: 05120100.xhp
+msgctxt ""
+"05120100.xhp\n"
+"par_id81662914901503\n"
+"help.text"
+msgid "is between"
+msgstr ""
+
+#. ZmHDH
+#: 05120100.xhp
+msgctxt ""
+"05120100.xhp\n"
+"par_id21662914901504\n"
+"help.text"
+msgid "The cell value is between the two values defined in the text boxes on the right - lower and upper values - including the boundary values themselves."
+msgstr ""
+
+#. PGH34
+#: 05120100.xhp
+msgctxt ""
+"05120100.xhp\n"
+"par_id411662915178872\n"
+"help.text"
+msgid "is not between"
+msgstr ""
+
+#. dECpd
+#: 05120100.xhp
+msgctxt ""
+"05120100.xhp\n"
+"par_id861662915178873\n"
+"help.text"
+msgid "The cell value is not between the two values defined in the text boxes on the right - lower and upper values - including the boundary values themselves."
+msgstr ""
+
+#. zqVSC
+#: 05120100.xhp
+msgctxt ""
+"05120100.xhp\n"
+"par_id731662915275926\n"
+"help.text"
+msgid "is duplicate"
+msgstr ""
+
+#. 4DKbK
+#: 05120100.xhp
+msgctxt ""
+"05120100.xhp\n"
+"par_id881662915275927\n"
+"help.text"
+msgid "The cell and at least one other cell in the range have equal contents."
+msgstr ""
+
+#. UC2gL
+#: 05120100.xhp
+msgctxt ""
+"05120100.xhp\n"
+"par_id381662915857686\n"
+"help.text"
+msgid "is not duplicate"
+msgstr ""
+
+#. ZBUgm
+#: 05120100.xhp
+msgctxt ""
+"05120100.xhp\n"
+"par_id341662915857687\n"
+"help.text"
+msgid "The cell contents is unique in the range."
+msgstr ""
+
+#. c8Bkp
+#: 05120100.xhp
+msgctxt ""
+"05120100.xhp\n"
+"par_id1001662915996409\n"
+"help.text"
+msgid "is in top N elements"
+msgstr ""
+
+#. pDAGV
+#: 05120100.xhp
+msgctxt ""
+"05120100.xhp\n"
+"par_id571662915996410\n"
+"help.text"
+msgid "The cell value is between the maximum value in the range and the N<sup>th</sup> greater element of the same. Enter the value of N in the text box on the right."
+msgstr ""
+
+#. V4FnF
+#: 05120100.xhp
+msgctxt ""
+"05120100.xhp\n"
+"par_id341662916338175\n"
+"help.text"
+msgid "is in bottom N elements"
+msgstr ""
+
+#. UDdhD
+#: 05120100.xhp
+msgctxt ""
+"05120100.xhp\n"
+"par_id11662916338177\n"
+"help.text"
+msgid "The cell value is between the minimum value in the range and the N<sup>th</sup> lower element of the same. Enter the value of N in the text box on the right."
+msgstr ""
+
+#. a9GoR
+#: 05120100.xhp
+msgctxt ""
+"05120100.xhp\n"
+"par_id181662916407095\n"
+"help.text"
+msgid "is in top N percent"
+msgstr ""
+
+#. rgUnx
+#: 05120100.xhp
+msgctxt ""
+"05120100.xhp\n"
+"par_id911662916407097\n"
+"help.text"
+msgid "The <emph>cell range index value is in the top N percent</emph> of the number of cells in the range. For example, in a 20 cells range and N equals 20, the style is applied to the 4 last cells of the range. Enter the value of N in the text box on the right."
+msgstr ""
+
+#. kfDTU
+#: 05120100.xhp
+msgctxt ""
+"05120100.xhp\n"
+"par_id421662917285432\n"
+"help.text"
+msgid "is in bottom N percent"
+msgstr ""
+
+#. pphGh
+#: 05120100.xhp
+msgctxt ""
+"05120100.xhp\n"
+"par_id111662917285433\n"
+"help.text"
+msgid "The <emph>cell range index value is in the bottom N percent</emph> of the number of cells in the range. For example, in a 20 cells range and N equals 20, the style is applied to the 4 first cells of the range. Enter the value of N in the text box on the right."
+msgstr ""
+
+#. W6QVL
+#: 05120100.xhp
+msgctxt ""
+"05120100.xhp\n"
+"par_id861662917382735\n"
+"help.text"
+msgid "is above average"
+msgstr ""
+
+#. YM3iz
+#: 05120100.xhp
+msgctxt ""
+"05120100.xhp\n"
+"par_id811662917382736\n"
+"help.text"
+msgid "The cell value is strictly greater than the average of the cell range values."
+msgstr ""
+
+#. AAKPP
+#: 05120100.xhp
+msgctxt ""
+"05120100.xhp\n"
+"par_id421662919561954\n"
+"help.text"
+msgid "is below average"
+msgstr ""
+
+#. DAPwV
+#: 05120100.xhp
+msgctxt ""
+"05120100.xhp\n"
+"par_id661662919561956\n"
+"help.text"
+msgid "The cell value is strictly less than the average of the cell range values."
+msgstr ""
+
+#. 5cN4q
+#: 05120100.xhp
+msgctxt ""
+"05120100.xhp\n"
+"par_id831662919693474\n"
+"help.text"
+msgid "is above or equal average"
+msgstr ""
+
+#. dk8XB
+#: 05120100.xhp
+msgctxt ""
+"05120100.xhp\n"
+"par_id71662919693475\n"
+"help.text"
+msgid "The cell value is greater or equal than the average of the cell range values."
+msgstr ""
+
+#. HuZ9i
+#: 05120100.xhp
+msgctxt ""
+"05120100.xhp\n"
+"par_id521662919771410\n"
+"help.text"
+msgid "is below or equal average"
+msgstr ""
+
+#. GRFFh
+#: 05120100.xhp
+msgctxt ""
+"05120100.xhp\n"
+"par_id131662919771411\n"
+"help.text"
+msgid "The cell value is less or equal than the average of the cell range values."
+msgstr ""
+
+#. vFFDn
+#: 05120100.xhp
+msgctxt ""
+"05120100.xhp\n"
+"par_id451662919849856\n"
+"help.text"
+msgid "is error"
+msgstr ""
+
+#. d8WFb
+#: 05120100.xhp
+msgctxt ""
+"05120100.xhp\n"
+"par_id911662919849857\n"
+"help.text"
+msgid "The cell is in the error condition defined in the text box on the right. <link href=\"text/scalc/05/02140000.xhp\" name=\"calc errors\">List of Calc errors</link>."
+msgstr ""
+
+#. DAG5B
+#: 05120100.xhp
+msgctxt ""
+"05120100.xhp\n"
+"par_id61662920733334\n"
+"help.text"
+msgid "A cell that references another cell with an error condition is not in error itself."
+msgstr ""
+
+#. uUxWk
+#: 05120100.xhp
+msgctxt ""
+"05120100.xhp\n"
+"par_id961662920774180\n"
+"help.text"
+msgid "is not error"
+msgstr ""
+
+#. BzFfB
+#: 05120100.xhp
+msgctxt ""
+"05120100.xhp\n"
+"par_id381662920774181\n"
+"help.text"
+msgid "The cell is not in the error condition defined in the text box on the right. <link href=\"text/scalc/05/02140000.xhp\" name=\"calc errors\">List of Calc errors</link>"
+msgstr ""
+
+#. uEArp
+#: 05120100.xhp
+msgctxt ""
+"05120100.xhp\n"
+"par_id151662920861587\n"
+"help.text"
+msgid "begins with"
+msgstr ""
+
+#. SrP9B
+#: 05120100.xhp
+msgctxt ""
+"05120100.xhp\n"
+"par_id341662920861588\n"
+"help.text"
+msgid "The cell contents begins with the text or number defined in the text box on the right."
+msgstr ""
+
+#. yF6EV
+#: 05120100.xhp
+msgctxt ""
+"05120100.xhp\n"
+"par_id801662922586796\n"
+"help.text"
+msgid "<variable id=\"text_comparison\">The condition applies to the internal text conversion of the cell contents. Numeric values are compared with their equivalent text representation. Numeric cell formats (currency, scientific, user-defined ... ) are not considered for comparisons.</variable>"
+msgstr ""
+
+#. v76zE
+#: 05120100.xhp
+msgctxt ""
+"05120100.xhp\n"
+"par_id361662922600585\n"
+"help.text"
+msgid "ends with"
+msgstr ""
+
+#. Ag7VY
+#: 05120100.xhp
+msgctxt ""
+"05120100.xhp\n"
+"par_id801662922600586\n"
+"help.text"
+msgid "The cell contents ends with the text or number defined in the right text box."
+msgstr ""
+
+#. kDJVK
+#: 05120100.xhp
+msgctxt ""
+"05120100.xhp\n"
+"par_id151662922939292\n"
+"help.text"
+msgid "contains"
+msgstr ""
+
+#. b4MWb
+#: 05120100.xhp
+msgctxt ""
+"05120100.xhp\n"
+"par_id251662922939293\n"
+"help.text"
+msgid "The cell contents contains the text or number defined in the right text box."
+msgstr ""
+
+#. ugaZe
+#: 05120100.xhp
+msgctxt ""
+"05120100.xhp\n"
+"par_id291662923021542\n"
+"help.text"
+msgid "does not contain"
+msgstr ""
+
+#. CyQm8
+#: 05120100.xhp
+msgctxt ""
+"05120100.xhp\n"
+"par_id541662923021543\n"
+"help.text"
+msgid "The cell contents does not contains the text or number defined in the text box on the right."
+msgstr ""
+
+#. 4zHYR
+#: 05120200.xhp
+msgctxt ""
+"05120200.xhp\n"
+"tit\n"
+"help.text"
+msgid "Conditional Formatting - Formula is"
+msgstr ""
+
+#. pRBn3
+#: 05120200.xhp
+msgctxt ""
+"05120200.xhp\n"
+"hd_id471662936567369\n"
+"help.text"
+msgid "<variable id=\"h1\"><link href=\"text/scalc/01/05120200.xhp\" name=\"Formula is\">Condition - Formula is</link></variable>"
+msgstr ""
+
+#. WwqGv
+#: 05120200.xhp
+msgctxt ""
+"05120200.xhp\n"
+"par_id31494139\n"
+"help.text"
+msgid "Applies the selected style to the cell when the formula expression in the text box in the right is <emph>not</emph> zero."
+msgstr ""
+
+#. S3dcs
+#: 05120200.xhp
+msgctxt ""
+"05120200.xhp\n"
+"par_id1001662932287796\n"
+"help.text"
+msgid "The formula is expressed similar to a test condition evaluating to <literal>TRUE</literal> or <literal>FALSE</literal>."
+msgstr ""
+
+#. dAQYf
+#: 05120200.xhp
+msgctxt ""
+"05120200.xhp\n"
+"par_id111662936728630\n"
+"help.text"
+msgid "For example, if C29 has a conditional formatting which formula is <input>B1>=(DATE(2015;5;4)+TIME(18;0;0))</input> - a logical expression that evaluates true or false - the style applied to C29 depends on B1 contents."
+msgstr ""
+
+#. PJRcV
+#: 05120300.xhp
+msgctxt ""
+"05120300.xhp\n"
+"tit\n"
+"help.text"
+msgid "Conditional Formatting - Date is"
+msgstr ""
+
+#. 9mjQT
+#: 05120300.xhp
+msgctxt ""
+"05120300.xhp\n"
+"hd_id321662936831682\n"
+"help.text"
+msgid "<variable id=\"h1\"><link href=\"text/scalc/01/05120300.xhp\" name=\"Date is\">Condition - Date is</link></variable>"
+msgstr ""
+
+#. eZ8g9
+#: 05120300.xhp
+msgctxt ""
+"05120300.xhp\n"
+"par_id31662934883939\n"
+"help.text"
+msgid "Applies the selected style to the cell when the cell contents is formatted as date and the condition is one of the available date interval in the dropdown list."
+msgstr ""
+
+#. FuPW5
+#: 05120300.xhp
+msgctxt ""
+"05120300.xhp\n"
+"par_id231662933568615\n"
+"help.text"
+msgid "<emph>Today</emph>: applies the cell style if the cell date contents is today."
+msgstr ""
+
+#. Jp3xf
+#: 05120300.xhp
+msgctxt ""
+"05120300.xhp\n"
+"par_id891662933647849\n"
+"help.text"
+msgid "<emph>Yesterday</emph>: applies the cell style if the cell date contents is yesterday."
+msgstr ""
+
+#. kGKdd
+#: 05120300.xhp
+msgctxt ""
+"05120300.xhp\n"
+"par_id701662933702962\n"
+"help.text"
+msgid "<emph>Tomorrow</emph>: applies the cell style if the cell date contents is tomorrow."
+msgstr ""
+
+#. qiPQc
+#: 05120300.xhp
+msgctxt ""
+"05120300.xhp\n"
+"par_id291662933755624\n"
+"help.text"
+msgid "<emph>Last 7 days</emph>: applies the cell style if the cell date contents is in the last 7 calendar days."
+msgstr ""
+
+#. ReAps
+#: 05120300.xhp
+msgctxt ""
+"05120300.xhp\n"
+"par_id151662933849611\n"
+"help.text"
+msgid "<emph>This week, Last week and Next week</emph>: applies the cell style if the cell date contents is in this week, last week and next week respectively. The start and end of the week is locale dependent."
+msgstr ""
+
+#. 6bfmv
+#: 05120300.xhp
+msgctxt ""
+"05120300.xhp\n"
+"par_id421662934429482\n"
+"help.text"
+msgid "<emph>This month, Last month and Next month</emph>: applies the cell style if the cell date contents is in this month, last month and next month respectively."
+msgstr ""
+
+#. xduEr
+#: 05120300.xhp
+msgctxt ""
+"05120300.xhp\n"
+"par_id461662934605639\n"
+"help.text"
+msgid "<emph>This year, Last year and Next year</emph>: applies the cell style if the cell date contents is in this year, last year and next year respectively."
+msgstr ""
+
+#. ZANZR
+#: 05120400.xhp
+msgctxt ""
+"05120400.xhp\n"
+"tit\n"
+"help.text"
+msgid "Conditional Formatting - All cells"
+msgstr ""
+
+#. EcBzD
+#: 05120400.xhp
+msgctxt ""
+"05120400.xhp\n"
+"hd_id861662937013389\n"
+"help.text"
+msgid "<variable id=\"h1\"><link href=\"text/scalc/01/05120400.xhp\" name=\"All cells\">Condition - All cells</link></variable>"
+msgstr ""
+
+#. Bstud
+#: 05120400.xhp
+msgctxt ""
+"05120400.xhp\n"
+"par_id31662915586650\n"
+"help.text"
+msgid "Applies the conditional formatting to the set of cells defined in the selected range. The formatting is applied based on the contents of the whole range."
+msgstr ""
+
+#. UrbTk
+#: 05120400.xhp
+msgctxt ""
+"05120400.xhp\n"
+"hd_id3147394\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/05120400.xhp#colorscale\" name=\"Color Scale\">Color Scale</link>"
+msgstr ""
+
+#. VvAiE
+#: 05120400.xhp
+msgctxt ""
+"05120400.xhp\n"
+"par_id3155602\n"
+"help.text"
+msgid "Applies a color scale to a range consisting of displaying a bicolor or tricolor gradient on this range depending on the value of each cell."
+msgstr ""
+
+#. S9Btk
+#: 05120400.xhp
+msgctxt ""
+"05120400.xhp\n"
+"hd_id541663598275609\n"
+"help.text"
+msgid "Conditions"
+msgstr ""
+
+#. zip59
+#: 05120400.xhp
+msgctxt ""
+"05120400.xhp\n"
+"par_id231663598294535\n"
+"help.text"
+msgid "The calculation of the color scale depends on 2 or 3 conditions, defined as follows:"
+msgstr ""
+
+#. XKMSV
+#: 05120400.xhp
+msgctxt ""
+"05120400.xhp\n"
+"par_id701864449697771\n"
+"help.text"
+msgid "<emph>Min (Max)</emph>: calculates using the minimum (maximum) values in the range."
+msgstr ""
+
+#. eGYev
+#: 05120400.xhp
+msgctxt ""
+"05120400.xhp\n"
+"par_id321663440728295\n"
+"help.text"
+msgid "<emph>Value</emph>: a fixed value. Enter the value in the text box."
+msgstr ""
+
+#. DZxAs
+#: 05120400.xhp
+msgctxt ""
+"05120400.xhp\n"
+"par_id611663440697270\n"
+"help.text"
+msgid "<emph>Percentile</emph>: A percentile is each of the 99 values which divide the sorted data in 100 equal parts, so that each part represents 1/100 of the sample population. A percentile return the value for a data series going from the smallest to the largest value in a set of data. For P = 25, the percentile means the first quartile. P = 50 is also the MEDIAN of the data set. Enter the percentile value in the text box. Valid values are from 0 to 100."
+msgstr ""
+
+#. zwwLa
+#: 05120400.xhp
+msgctxt ""
+"05120400.xhp\n"
+"par_id211663440834104\n"
+"help.text"
+msgid "<emph>Percent</emph>: a fixed value representing the percentage of the minimum (maximum) of the length defined by minimum and maximum values in the range. A minimum of 10% selects the values below 10% of the segment [Min,Max]. A maximum of 80% select values above 80% of the segment [Min,Max]. Valid values are from 0 (zero) to 100. Do not enter a percent (%) sign."
+msgstr ""
+
+#. nF8iD
+#: 05120400.xhp
+msgctxt ""
+"05120400.xhp\n"
+"par_id961663440848168\n"
+"help.text"
+msgid "<emph>Formula</emph>: A formula expression starting with the equal sign (=) that calculates a numeric value. Values can be numbers, dates or time. Enter the formula expression in the text box."
+msgstr ""
+
+#. rDuW2
+#: 05120400.xhp
+msgctxt ""
+"05120400.xhp\n"
+"par_id991609782427459\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/05120400.xhp#databar\" name=\"Data Bar\">Data Bar</link>"
+msgstr ""
+
+#. ZEyNr
+#: 05120400.xhp
+msgctxt ""
+"05120400.xhp\n"
+"par_id41609780964157\n"
+"help.text"
+msgid "Data bar option will fill the cell with solid or gradient color corresponding to the numeric value in the cell."
+msgstr ""
+
+#. WHWWc
+#: 05120400.xhp
+msgctxt ""
+"05120400.xhp\n"
+"hd_id631663449553346\n"
+"help.text"
+msgid "Conditions"
+msgstr ""
+
+#. CENjM
+#: 05120400.xhp
+msgctxt ""
+"05120400.xhp\n"
+"par_id931609781970981\n"
+"help.text"
+msgid "The calculation of the bar area fill is based on the conditions below:"
+msgstr ""
+
+#. DzwrN
+#: 05120400.xhp
+msgctxt ""
+"05120400.xhp\n"
+"par_id281663449673792\n"
+"help.text"
+msgid "<emph>Automatic</emph>: calculates using the minimum and maximum values in the range."
+msgstr ""
+
+#. 9aPGW
+#: 05120400.xhp
+msgctxt ""
+"05120400.xhp\n"
+"par_id701663449697771\n"
+"help.text"
+msgid "<emph>Min (Max)</emph>: calculates using the minimum (maximum) values in the range."
+msgstr ""
+
+#. Yst5U
+#: 05120400.xhp
+msgctxt ""
+"05120400.xhp\n"
+"par_id281609781729359\n"
+"help.text"
+msgid "More Options"
+msgstr ""
+
+#. wB7B5
+#: 05120400.xhp
+msgctxt ""
+"05120400.xhp\n"
+"par_id501663454998977\n"
+"help.text"
+msgid "The Data Bar dialog opens to add details on the display of data bars."
+msgstr ""
+
+#. Xi84x
+#: 05120400.xhp
+msgctxt ""
+"05120400.xhp\n"
+"hd_id221663453502042\n"
+"help.text"
+msgid "Entry values"
+msgstr ""
+
+#. j4CZx
+#: 05120400.xhp
+msgctxt ""
+"05120400.xhp\n"
+"par_id891663453681870\n"
+"help.text"
+msgid "Same as the conditions above."
+msgstr ""
+
+#. qYC9D
+#: 05120400.xhp
+msgctxt ""
+"05120400.xhp\n"
+"hd_id511663453530293\n"
+"help.text"
+msgid "Bar Colors"
+msgstr ""
+
+#. 3WvU9
+#: 05120400.xhp
+msgctxt ""
+"05120400.xhp\n"
+"par_id371663453564807\n"
+"help.text"
+msgid "Choose the color for positive and negative values."
+msgstr ""
+
+#. F7ADR
+#: 05120400.xhp
+msgctxt ""
+"05120400.xhp\n"
+"hd_id891663453607961\n"
+"help.text"
+msgid "Fill"
+msgstr ""
+
+#. NK7yv
+#: 05120400.xhp
+msgctxt ""
+"05120400.xhp\n"
+"par_id671663453639829\n"
+"help.text"
+msgid "<emph>Gradient</emph>: set a color scale between the color of positive (negative) values and white."
+msgstr ""
+
+#. UsHFm
+#: 05120400.xhp
+msgctxt ""
+"05120400.xhp\n"
+"par_id551663453647462\n"
+"help.text"
+msgid "<emph>Color</emph>: use the positive (negative) color for the entire data bar, no fade out gradient."
+msgstr ""
+
+#. 3XDGX
+#: 05120400.xhp
+msgctxt ""
+"05120400.xhp\n"
+"hd_id701663453750779\n"
+"help.text"
+msgid "Axis"
+msgstr ""
+
+#. SCFQf
+#: 05120400.xhp
+msgctxt ""
+"05120400.xhp\n"
+"par_id691663453763746\n"
+"help.text"
+msgid "Set the position of the vertical axis for the data bar. Values are"
+msgstr ""
+
+#. 7mCxG
+#: 05120400.xhp
+msgctxt ""
+"05120400.xhp\n"
+"par_id381663453792294\n"
+"help.text"
+msgid "<emph>Automatic:</emph> position the vertical axis in the middle of the maximum and minimum values."
+msgstr ""
+
+#. u9oCp
+#: 05120400.xhp
+msgctxt ""
+"05120400.xhp\n"
+"par_id791663453800602\n"
+"help.text"
+msgid "<emph>Middle:</emph> set the vertical axis in the middle of the column."
+msgstr ""
+
+#. NGqHG
+#: 05120400.xhp
+msgctxt ""
+"05120400.xhp\n"
+"par_id461663453808288\n"
+"help.text"
+msgid "<emph>None:</emph> do not display a vertical axis."
+msgstr ""
+
+#. MbcW9
+#: 05120400.xhp
+msgctxt ""
+"05120400.xhp\n"
+"hd_id511663453851599\n"
+"help.text"
+msgid "Bar Lengths"
+msgstr ""
+
+#. EcZWp
+#: 05120400.xhp
+msgctxt ""
+"05120400.xhp\n"
+"par_id601663453865023\n"
+"help.text"
+msgid "Sets the minimum (maximum) length of the data bars, as a percentage of the column width."
+msgstr ""
+
+#. 6iAs7
+#: 05120400.xhp
+msgctxt ""
+"05120400.xhp\n"
+"hd_id211663453914830\n"
+"help.text"
+msgid "Display bars only"
+msgstr ""
+
+#. zAE3C
+#: 05120400.xhp
+msgctxt ""
+"05120400.xhp\n"
+"par_id561663453936590\n"
+"help.text"
+msgid "Do not display values in the cell, only the data bars."
+msgstr ""
+
+#. EjewA
+#: 05120400.xhp
+msgctxt ""
+"05120400.xhp\n"
+"hd_id3153709\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/05120400.xhp#iconset\" name=\"Icon Set\">Icon Set</link>"
+msgstr ""
+
+#. RjnfG
+#: 05120400.xhp
+msgctxt ""
+"05120400.xhp\n"
+"par_id3153764\n"
+"help.text"
+msgid "Add an icon to the cell based on the value relative to the specified thresholds. Several icon sets are available."
+msgstr ""
+
+#. 5EFt7
+#: 05120400.xhp
+msgctxt ""
+"05120400.xhp\n"
+"hd_id191663440362309\n"
+"help.text"
+msgid "Available Icon Sets"
+msgstr ""
+
+#. 8cgd9
+#: 05120400.xhp
+msgctxt ""
+"05120400.xhp\n"
+"par_id31494140\n"
+"help.text"
+msgid "3, 4 or 5 - arrows"
+msgstr ""
+
+#. Aoquj
+#: 05120400.xhp
+msgctxt ""
+"05120400.xhp\n"
+"par_id91663429174806\n"
+"help.text"
+msgid "<image src=\"media/icon-themes/sc/res/icon-set-colorarrows-up.svg\" id=\"img_id261663429174807\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id81663429174808\">Color arrow up</alt></image> <image src=\"media/icon-themes/sc/res/icon-set-colorarrows-slightly-up.svg\" id=\"img_id261663429176807\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id81663529174808\">Color arrow slightly up</alt></image> <image src=\"media/icon-themes/sc/res/icon-set-colorarrows-same.svg\" id=\"img_id261663429176807\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id81663529174808\">Color arrow same</alt></image> <image src=\"media/icon-themes/sc/res/icon-set-colorarrows-slightly-down.svg\" id=\"img_id261663429176807\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id81663729174808\">Color arrow slightly down</alt></image> <image src=\"media/icon-themes/sc/res/icon-set-colorarrows-down.svg\" id=\"img_id261663429176807\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id81663329174808\">Color arrow down</alt></image>"
+msgstr ""
+
+#. PxAE7
+#: 05120400.xhp
+msgctxt ""
+"05120400.xhp\n"
+"par_id31494141\n"
+"help.text"
+msgid "3, 4 or 5 - gray arrows"
+msgstr ""
+
+#. 2Fk3v
+#: 05120400.xhp
+msgctxt ""
+"05120400.xhp\n"
+"par_id91661429174806\n"
+"help.text"
+msgid "<image src=\"media/icon-themes/sc/res/icon-set-grayarrows-up.svg\" id=\"img_id261663429174807\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id91663429174808\">Gray arrow up</alt></image> <image src=\"media/icon-themes/sc/res/icon-set-grayarrows-slightly-up.svg\" id=\"img_id261663429176807\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id91663529174808\">Gray arrow slightly up</alt></image> <image src=\"media/icon-themes/sc/res/icon-set-grayarrows-same.svg\" id=\"img_id261663429176807\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id91663529174808\">Gray arrow same</alt></image> <image src=\"media/icon-themes/sc/res/icon-set-grayarrows-slightly-down.svg\" id=\"img_id261663429176807\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id91663729174808\">Gray arrow slightly down</alt></image> <image src=\"media/icon-themes/sc/res/icon-set-grayarrows-down.svg\" id=\"img_id261663429176807\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id91663329174808\">Gray arrow down</alt></image>"
+msgstr ""
+
+#. jA8Sa
+#: 05120400.xhp
+msgctxt ""
+"05120400.xhp\n"
+"par_id31494142\n"
+"help.text"
+msgid "3 - flags"
+msgstr ""
+
+#. Bi9Tr
+#: 05120400.xhp
+msgctxt ""
+"05120400.xhp\n"
+"par_id101663433624185\n"
+"help.text"
+msgid "<image src=\"media/icon-themes/sc/res/icon-set-flags-yellow.svg\" id=\"img_id261663429174807\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id91663429174808\">Yellow flag</alt></image> <image src=\"media/icon-themes/sc/res/icon-set-flags-red.svg\" id=\"img_id261663429176807\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id91663529174808\">Red flag</alt></image> <image src=\"media/icon-themes/sc/res/icon-set-flags-green.svg\" id=\"img_id261663429176807\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id91663529174808\">Green flag</alt></image>"
+msgstr ""
+
+#. FCb5V
+#: 05120400.xhp
+msgctxt ""
+"05120400.xhp\n"
+"par_id31494143\n"
+"help.text"
+msgid "3 - traffic lights 1 and 2 (two different designs)"
+msgstr ""
+
+#. LugGg
+#: 05120400.xhp
+msgctxt ""
+"05120400.xhp\n"
+"par_id721663433917655\n"
+"help.text"
+msgid "<image src=\"media/icon-themes/sc/res/icon-set-circles1-yellow.svg\" id=\"img_id261663429174807\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id91663429174808\">Yellow traffic light 1</alt></image> <image src=\"media/icon-themes/sc/res/icon-set-circles1-red.svg\" id=\"img_id261663429176807\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id91663529174808\">Red traffic light 1</alt></image> <image src=\"media/icon-themes/sc/res/icon-set-circles1-green.svg\" id=\"img_id261663429176807\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id91663529174808\">Green traffic light 1</alt></image>"
+msgstr ""
+
+#. EBREt
+#: 05120400.xhp
+msgctxt ""
+"05120400.xhp\n"
+"par_id501663433925207\n"
+"help.text"
+msgid "<image src=\"media/icon-themes/sc/res/icon-set-trafficlights-yellow.svg\" id=\"img_id261663429174807\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id91663429174808\">Yellow traffic light 2</alt></image> <image src=\"media/icon-themes/sc/res/icon-set-trafficlights-red.svg\" id=\"img_id261663429176807\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id91663529174808\">Red traffic light 2</alt></image> <image src=\"media/icon-themes/sc/res/icon-set-trafficlights-green.svg\" id=\"img_id261663429176807\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id91663529174808\">Green traffic light 2</alt></image>"
+msgstr ""
+
+#. itKqQ
+#: 05120400.xhp
+msgctxt ""
+"05120400.xhp\n"
+"par_id701663438522480\n"
+"help.text"
+msgid "3 - Smileys 1 and 2"
+msgstr ""
+
+#. GoDfk
+#: 05120400.xhp
+msgctxt ""
+"05120400.xhp\n"
+"par_id991663438568052\n"
+"help.text"
+msgid "<image src=\"media/icon-themes/sc/res/icon-set-positive-yellow-smilie.svg\" id=\"img_id261663429174807\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id91663429174808\">Yellow positive smiley</alt></image> <image src=\"media/icon-themes/sc/res/icon-set-neutral-yellow-smilie.svg\" id=\"img_id261663429176807\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id91663529174808\">Yellow neutral smiley</alt></image> <image src=\"media/icon-themes/sc/res/icon-set-negative-yellow-smilie.svg\" id=\"img_id261663429176807\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id91663529174808\">Yellow negative smiley</alt></image>"
+msgstr ""
+
+#. ABksa
+#: 05120400.xhp
+msgctxt ""
+"05120400.xhp\n"
+"par_id991663438966721\n"
+"help.text"
+msgid "<image src=\"media/icon-themes/sc/res/icon-set-positive-green-smilie.svg\" id=\"img_id261663429174807\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id91663429174808\">Green positive smiley</alt></image> <image src=\"media/icon-themes/sc/res/icon-set-neutral-yellow-smilie.svg\" id=\"img_id261663429176807\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id91663529174808\">Yellow neutral smiley</alt></image> <image src=\"media/icon-themes/sc/res/icon-set-negative-red-smilie.svg\" id=\"img_id261663429176807\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id91663529174808\">Red negative smiley</alt></image>"
+msgstr ""
+
+#. QdJxa
+#: 05120400.xhp
+msgctxt ""
+"05120400.xhp\n"
+"par_id31494144\n"
+"help.text"
+msgid "3 - symbols"
+msgstr ""
+
+#. 3DDFG
+#: 05120400.xhp
+msgctxt ""
+"05120400.xhp\n"
+"par_id421663434453517\n"
+"help.text"
+msgid "<image src=\"media/icon-themes/sc/res/icon-set-shapes-triangle.svg\" id=\"img_id261663429176807\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id91663529174808\">Shape triangle</alt></image> <image src=\"media/icon-themes/sc/res/icon-set-shapes-diamond.svg\" id=\"img_id261663429176807\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id91663529174808\">Shape diamond</alt></image> <image src=\"media/icon-themes/sc/res/icon-set-shapes-circle.svg\" id=\"img_id261663429176807\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id91663529174808\">Shape circle</alt></image>"
+msgstr ""
+
+#. ndFCp
+#: 05120400.xhp
+msgctxt ""
+"05120400.xhp\n"
+"par_id961663439450424\n"
+"help.text"
+msgid "<image src=\"media/icon-themes/sc/res/icon-set-symbols1-exclamation-mark.svg\" id=\"img_id261663429176807\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id91663529174808\">Exclamation mark</alt></image> <image src=\"media/icon-themes/sc/res/icon-set-symbols1-cross.svg\" id=\"img_id261663429176807\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id91663529174808\">Cross</alt></image> <image src=\"media/icon-themes/sc/res/icon-set-symbols1-check.svg\" id=\"img_id261663429176807\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id91663529174808\">Check mark</alt></image>"
+msgstr ""
+
+#. BQAHC
+#: 05120400.xhp
+msgctxt ""
+"05120400.xhp\n"
+"par_id1001663439805133\n"
+"help.text"
+msgid "<image src=\"media/icon-themes/sc/res/icon-set-stars-empty.svg\" id=\"img_id261663429176807\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id91663529174808\">Empty star</alt></image> <image src=\"media/icon-themes/sc/res/icon-set-stars-half.svg\" id=\"img_id261663429176807\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id91663529174808\">Half star</alt></image> <image src=\"media/icon-themes/sc/res/icon-set-stars-full.svg\" id=\"img_id261663429176807\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id91663529174808\">Full star</alt></image>"
+msgstr ""
+
+#. dEQvx
+#: 05120400.xhp
+msgctxt ""
+"05120400.xhp\n"
+"par_id171663440020964\n"
+"help.text"
+msgid "<image src=\"media/icon-themes/sc/res/icon-set-triangles-up.svg\" id=\"img_id261663429176807\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id91663529174808\">Triangle up</alt></image> <image src=\"media/icon-themes/sc/res/icon-set-triangles-same.svg\" id=\"img_id261663429176807\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id91663529174808\">Same</alt></image> <image src=\"media/icon-themes/sc/res/icon-set-triangles-down.svg\" id=\"img_id261663429176807\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id91663529174808\">Triangle down</alt></image>"
+msgstr ""
+
+#. MtGvd
+#: 05120400.xhp
+msgctxt ""
+"05120400.xhp\n"
+"par_id31494145\n"
+"help.text"
+msgid "4 - circles from red to black"
+msgstr ""
+
+#. C9BEU
+#: 05120400.xhp
+msgctxt ""
+"05120400.xhp\n"
+"par_id481663434995022\n"
+"help.text"
+msgid "<image src=\"media/icon-themes/sc/res/icon-set-circles2-dark-red.svg\" id=\"img_id261663429174807\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id91663429174808\">Dark red</alt></image> <image src=\"media/icon-themes/sc/res/icon-set-circles2-light-red.svg\" id=\"img_id261663429174807\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id91663429174808\">Light red</alt></image> <image src=\"media/icon-themes/sc/res/icon-set-circles2-light-gray.svg\" id=\"img_id261663429174807\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id91663429174808\">Light gray</alt></image> <image src=\"media/icon-themes/sc/res/icon-set-circles2-dark-gray.svg\" id=\"img_id261663429174807\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id91663429174808\">Dark gray</alt></image>"
+msgstr ""
+
+#. AuYQx
+#: 05120400.xhp
+msgctxt ""
+"05120400.xhp\n"
+"par_id31494146\n"
+"help.text"
+msgid "4 or 5 - ratings"
+msgstr ""
+
+#. 8WLQP
+#: 05120400.xhp
+msgctxt ""
+"05120400.xhp\n"
+"par_id631663435728155\n"
+"help.text"
+msgid "<image src=\"media/icon-themes/sc/res/icon-set-bars-empty.svg\" id=\"img_id261663429174807\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id91663429174808\">Empty bars</alt></image> <image src=\"media/icon-themes/sc/res/icon-set-bars-one-quarter.svg\" id=\"img_id261663429174807\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id91663429174808\">One quarters bars</alt></image> <image src=\"media/icon-themes/sc/res/icon-set-bars-half.svg\" id=\"img_id261663429174807\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id91663429174808\">Half bars</alt></image> <image src=\"media/icon-themes/sc/res/icon-set-bars-three-quarters.svg\" id=\"img_id261663429174807\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id91663429174808\">Three quarters bars</alt></image> <image src=\"media/icon-themes/sc/res/icon-set-bars-full.svg\" id=\"img_id261663429174807\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id91663429174808\">Full bars</alt></image>"
+msgstr ""
+
+#. FdJYa
+#: 05120400.xhp
+msgctxt ""
+"05120400.xhp\n"
+"par_id31494147\n"
+"help.text"
+msgid "5 - quarters"
+msgstr ""
+
+#. Db9xw
+#: 05120400.xhp
+msgctxt ""
+"05120400.xhp\n"
+"par_id741663436015689\n"
+"help.text"
+msgid "<image src=\"media/icon-themes/sc/res/icon-set-pies-empty.svg\" id=\"img_id261663429174807\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id91663429174808\">Empty</alt></image> <image src=\"media/icon-themes/sc/res/icon-set-pies-one-quarter.svg\" id=\"img_id261663429174807\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id91663429174808\">One quarter</alt></image> <image src=\"media/icon-themes/sc/res/icon-set-pies-half.svg\" id=\"img_id261663429174807\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id91663429174808\">Half</alt></image> <image src=\"media/icon-themes/sc/res/icon-set-pies-three-quarters.svg\" id=\"img_id261663429174807\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id91663429174808\">Three quarters</alt></image> <image src=\"media/icon-themes/sc/res/icon-set-pies-full.svg\" id=\"img_id261663429174807\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id91663429174808\">Full</alt></image>"
+msgstr ""
+
+#. 4Gyqu
+#: 05120400.xhp
+msgctxt ""
+"05120400.xhp\n"
+"par_id821663436639070\n"
+"help.text"
+msgid "5 - boxes"
+msgstr ""
+
+#. QqwRQ
+#: 05120400.xhp
+msgctxt ""
+"05120400.xhp\n"
+"par_id811663438472751\n"
+"help.text"
+msgid "<image src=\"media/icon-themes/sc/res/icon-set-squares-empty.svg\" id=\"img_id261663429174807\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id91663429174808\">Empty</alt></image> <image src=\"media/icon-themes/sc/res/icon-set-squares-one-quarter.svg\" id=\"img_id261663429174807\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id91663429174808\">One quarter</alt></image> <image src=\"media/icon-themes/sc/res/icon-set-squares-half.svg\" id=\"img_id261663429174807\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id91663429174808\">Half</alt></image> <image src=\"media/icon-themes/sc/res/icon-set-squares-three-quarters.svg\" id=\"img_id261663429174807\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id91663429174808\">Three quarters</alt></image> <image src=\"media/icon-themes/sc/res/icon-set-squares-full.svg\" id=\"img_id261663429174807\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id91663429174808\">Full</alt></image>"
+msgstr ""
+
+#. pB8zZ
+#: 05120400.xhp
+msgctxt ""
+"05120400.xhp\n"
+"hd_id621663440395987\n"
+"help.text"
+msgid "Conditions for thresholds"
+msgstr ""
+
+#. 7BkCL
+#: 05120400.xhp
+msgctxt ""
+"05120400.xhp\n"
+"par_id3153765\n"
+"help.text"
+msgid "Conditions to set the thresholds for each icon can be specified as follows"
+msgstr ""
+
+#. DdaUm
+#: 05120400.xhp
+msgctxt ""
+"05120400.xhp\n"
+"par_id3155606\n"
+"help.text"
+msgid "<link href=\"https://wiki.documentfoundation.org/Faq/Calc/141\">How to use Icon Set Conditional Formatting page</link> in TDF Wiki."
+msgstr ""
+
+#. s9tpC
+#: 05120400.xhp
+msgctxt ""
+"05120400.xhp\n"
+"par_id651663598549283\n"
+"help.text"
+msgid "<link href=\"https://wiki.documentfoundation.org/Faq/Calc/142\">How to apply a Color Scale Conditional Formatting page</link> in TDF Wiki."
+msgstr ""
+
+#. AiUSf
+#: 05120500.xhp
+msgctxt ""
+"05120500.xhp\n"
+"tit\n"
+"help.text"
+msgid "Conditional Formatting - Manage Conditions"
+msgstr ""
+
+#. EJnPj
+#: 05120500.xhp
+msgctxt ""
+"05120500.xhp\n"
+"hd_id391662937414401\n"
+"help.text"
+msgid "<variable id=\"h1\"><link href=\"text/scalc/01/05120500.xhp\" name=\"Manage Conditions\">Manage Conditions</link></variable>"
+msgstr ""
+
+#. SdPis
+#: 05120500.xhp
+msgctxt ""
+"05120500.xhp\n"
+"par_id3155906\n"
+"help.text"
+msgid "Manage all the conditional formatting defined in the spreadsheet."
+msgstr ""
+
+#. rMivF
+#: 05120500.xhp
+msgctxt ""
+"05120500.xhp\n"
+"par_id3155907\n"
+"help.text"
+msgid "The <emph>Manage Conditional Formatting</emph> dialog is where you can add, edit or delete one or several conditional formattings."
+msgstr ""
+
+#. rFGM7
+#: 05120500.xhp
+msgctxt ""
+"05120500.xhp\n"
+"par_id3155909\n"
+"help.text"
+msgid "The <emph>Conditional Formats</emph> list displays the active conditional formatting rules set in the current spreadsheet. Only the first rule for each cell range is listed, even if there are multiple rules defined for a given range."
+msgstr ""
+
+#. dEeLT
+#: 05120500.xhp
+msgctxt ""
+"05120500.xhp\n"
+"par_id3155908\n"
+"help.text"
+msgid "If you have defined a conditional formatting on a cell range and you try now to define a new conditional formatting on a part of this range, a warning message will be displayed, asking if you want to edit the existing conditional formatting (on the whole range) or define a new conditional formatting overlapping it (on the selected range)."
+msgstr ""
+
+#. GXZBY
+#: 06020000.xhp
+msgctxt ""
+"06020000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Hyphenation"
+msgstr ""
+
+#. fFwFU
+#: 06020000.xhp
+msgctxt ""
+"06020000.xhp\n"
+"bm_id3159399\n"
+"help.text"
+msgid "<bookmark_value>automatic hyphenation in spreadsheets</bookmark_value><bookmark_value>hyphenation; in spreadsheets</bookmark_value><bookmark_value>syllables in spreadsheets</bookmark_value>"
+msgstr ""
+
+#. RFvCe
+#: 06020000.xhp
+msgctxt ""
+"06020000.xhp\n"
+"hd_id3159399\n"
+"help.text"
+msgid "Hyphenation"
+msgstr ""
+
+#. uDEz3
+#: 06020000.xhp
+msgctxt ""
+"06020000.xhp\n"
+"par_id3145068\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 ""
+
+#. xwmmG
+#: 06020000.xhp
+msgctxt ""
+"06020000.xhp\n"
+"par_id3154366\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 ""
+
+#. 26g7N
+#: 06020000.xhp
+msgctxt ""
+"06020000.xhp\n"
+"hd_id3153192\n"
+"help.text"
+msgid "Hyphenation for selected cells."
+msgstr ""
+
+#. g7WAn
+#: 06020000.xhp
+msgctxt ""
+"06020000.xhp\n"
+"par_id3150868\n"
+"help.text"
+msgid "Select the cells for which you want to change the hyphenation."
+msgstr ""
+
+#. cECJ8
+#: 06020000.xhp
+msgctxt ""
+"06020000.xhp\n"
+"par_id3150440\n"
+"help.text"
+msgid "Choose <emph>Tools - Language - Hyphenation</emph>."
+msgstr ""
+
+#. DWP9n
+#: 06020000.xhp
+msgctxt ""
+"06020000.xhp\n"
+"par_id3156441\n"
+"help.text"
+msgid "The <emph>Format Cells</emph> dialog appears with the <emph>Alignment</emph> tab page open."
+msgstr ""
+
+#. 4AetC
+#: 06020000.xhp
+msgctxt ""
+"06020000.xhp\n"
+"par_id3149260\n"
+"help.text"
+msgid "Mark the <emph>Wrap text automatically</emph> and <emph>Hyphenation active</emph> check boxes."
+msgstr ""
+
+#. isLg3
+#: 06020000.xhp
+msgctxt ""
+"06020000.xhp\n"
+"hd_id3153094\n"
+"help.text"
+msgid "Hyphenation for Drawing Objects"
+msgstr ""
+
+#. jMPZJ
+#: 06020000.xhp
+msgctxt ""
+"06020000.xhp\n"
+"par_id3148577\n"
+"help.text"
+msgid "Select a drawing object."
+msgstr ""
+
+#. wSSK3
+#: 06020000.xhp
+msgctxt ""
+"06020000.xhp\n"
+"par_id3156285\n"
+"help.text"
+msgid "Choose <emph>Tools - Language - Hyphenation</emph>."
+msgstr ""
+
+#. EyCsS
+#: 06020000.xhp
+msgctxt ""
+"06020000.xhp\n"
+"par_id3147394\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 ""
+
+#. HDYd5
+#: 06030000.xhp
+msgctxt ""
+"06030000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Detective"
+msgstr ""
+
+#. VMHRA
+#: 06030000.xhp
+msgctxt ""
+"06030000.xhp\n"
+"bm_id3151245\n"
+"help.text"
+msgid "<bookmark_value>cell links search</bookmark_value> <bookmark_value>searching; links in cells</bookmark_value> <bookmark_value>traces;precedents and dependents</bookmark_value> <bookmark_value>Formula Auditing,see Detective</bookmark_value> <bookmark_value>Detective</bookmark_value>"
+msgstr ""
+
+#. R7MAF
+#: 06030000.xhp
+msgctxt ""
+"06030000.xhp\n"
+"hd_id3151245\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/06030000.xhp\" name=\"Detective\">Detective</link>"
+msgstr ""
+
+#. yYvTs
+#: 06030000.xhp
+msgctxt ""
+"06030000.xhp\n"
+"par_id3151211\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 ""
+
+#. ZEfCb
+#: 06030000.xhp
+msgctxt ""
+"06030000.xhp\n"
+"par_id3150447\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 ""
+
+#. eFaMR
+#: 06030100.xhp
+msgctxt ""
+"06030100.xhp\n"
+"tit\n"
+"help.text"
+msgid "Trace Precedents"
+msgstr ""
+
+#. BFfGz
+#: 06030100.xhp
+msgctxt ""
+"06030100.xhp\n"
+"bm_id3155628\n"
+"help.text"
+msgid "<bookmark_value>cells; tracing precedents</bookmark_value><bookmark_value>formula cells;tracing precedents</bookmark_value>"
+msgstr ""
+
+#. rGGRR
+#: 06030100.xhp
+msgctxt ""
+"06030100.xhp\n"
+"hd_id3155628\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/06030100.xhp\" name=\"Trace Precedents\">Trace Precedents</link>"
+msgstr ""
+
+#. kbTq3
+#: 06030100.xhp
+msgctxt ""
+"06030100.xhp\n"
+"par_id3153542\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 ""
+
+#. B6EzS
+#: 06030100.xhp
+msgctxt ""
+"06030100.xhp\n"
+"par_id3147265\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 ""
+
+#. 2t8KL
+#: 06030100.xhp
+msgctxt ""
+"06030100.xhp\n"
+"par_id3154321\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 ""
+
+#. rijCn
+#: 06030200.xhp
+msgctxt ""
+"06030200.xhp\n"
+"tit\n"
+"help.text"
+msgid "Remove Precedents"
+msgstr ""
+
+#. G9y95
+#: 06030200.xhp
+msgctxt ""
+"06030200.xhp\n"
+"bm_id3155628\n"
+"help.text"
+msgid "<bookmark_value>cells; removing precedents</bookmark_value><bookmark_value>formula cells;removing precedents</bookmark_value>"
+msgstr ""
+
+#. e5UZu
+#: 06030200.xhp
+msgctxt ""
+"06030200.xhp\n"
+"hd_id3155628\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/06030200.xhp\" name=\"Remove Precedents\">Remove Precedents</link>"
+msgstr ""
+
+#. S5xB6
+#: 06030200.xhp
+msgctxt ""
+"06030200.xhp\n"
+"par_id3149456\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 ""
+
+#. S5MTv
+#: 06030300.xhp
+msgctxt ""
+"06030300.xhp\n"
+"tit\n"
+"help.text"
+msgid "Trace Dependents"
+msgstr ""
+
+#. bnNWX
+#: 06030300.xhp
+msgctxt ""
+"06030300.xhp\n"
+"bm_id3153252\n"
+"help.text"
+msgid "<bookmark_value>cells; tracing dependents</bookmark_value>"
+msgstr ""
+
+#. FRMXb
+#: 06030300.xhp
+msgctxt ""
+"06030300.xhp\n"
+"hd_id3153252\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/06030300.xhp\" name=\"Trace Dependents\">Trace Dependents</link>"
+msgstr ""
+
+#. 6eErV
+#: 06030300.xhp
+msgctxt ""
+"06030300.xhp\n"
+"par_id3156024\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 ""
+
+#. CF67V
+#: 06030300.xhp
+msgctxt ""
+"06030300.xhp\n"
+"par_id3148948\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 ""
+
+#. dKfwu
+#: 06030300.xhp
+msgctxt ""
+"06030300.xhp\n"
+"par_id3151112\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 ""
+
+#. UAsFb
+#: 06030400.xhp
+msgctxt ""
+"06030400.xhp\n"
+"tit\n"
+"help.text"
+msgid "Remove Dependents"
+msgstr ""
+
+#. ZbBNY
+#: 06030400.xhp
+msgctxt ""
+"06030400.xhp\n"
+"bm_id3147335\n"
+"help.text"
+msgid "<bookmark_value>cells; removing dependents</bookmark_value>"
+msgstr ""
+
+#. BFg8w
+#: 06030400.xhp
+msgctxt ""
+"06030400.xhp\n"
+"hd_id3147335\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/06030400.xhp\" name=\"Remove Dependents\">Remove Dependents</link>"
+msgstr ""
+
+#. jgyjb
+#: 06030400.xhp
+msgctxt ""
+"06030400.xhp\n"
+"par_id3148663\n"
+"help.text"
+msgid "<ahelp visibility=\"visible\" hid=\".uno:ClearArrowDependents\">Deletes one level of tracer arrows created with <emph>Trace Dependents</emph>.</ahelp>"
+msgstr ""
+
+#. dVjhF
+#: 06030500.xhp
+msgctxt ""
+"06030500.xhp\n"
+"tit\n"
+"help.text"
+msgid "Remove All Traces"
+msgstr ""
+
+#. FrbBp
+#: 06030500.xhp
+msgctxt ""
+"06030500.xhp\n"
+"bm_id3153088\n"
+"help.text"
+msgid "<bookmark_value>cells; removing traces</bookmark_value>"
+msgstr ""
+
+#. Cg49J
+#: 06030500.xhp
+msgctxt ""
+"06030500.xhp\n"
+"hd_id3153088\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/06030500.xhp\" name=\"Remove All Traces\">Remove All Traces</link>"
+msgstr ""
+
+#. GLdx2
+#: 06030500.xhp
+msgctxt ""
+"06030500.xhp\n"
+"par_id3151246\n"
+"help.text"
+msgid "<ahelp hid=\".uno:ClearArrows\" visibility=\"visible\">Removes all tracer arrows from the spreadsheet.</ahelp>"
+msgstr ""
+
+#. fmWcK
+#: 06030600.xhp
+msgctxt ""
+"06030600.xhp\n"
+"tit\n"
+"help.text"
+msgid "Trace Error"
+msgstr ""
+
+#. fDCGx
+#: 06030600.xhp
+msgctxt ""
+"06030600.xhp\n"
+"bm_id3153561\n"
+"help.text"
+msgid "<bookmark_value>cells; tracing errors</bookmark_value><bookmark_value>tracing errors</bookmark_value><bookmark_value>error tracing</bookmark_value>"
+msgstr ""
+
+#. vT3kz
+#: 06030600.xhp
+msgctxt ""
+"06030600.xhp\n"
+"hd_id3153561\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/06030600.xhp\" name=\"Trace Error\">Trace Error</link>"
+msgstr ""
+
+#. 9hwFp
+#: 06030600.xhp
+msgctxt ""
+"06030600.xhp\n"
+"par_id3148550\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 ""
+
+#. UDwxp
+#: 06030700.xhp
+msgctxt ""
+"06030700.xhp\n"
+"tit\n"
+"help.text"
+msgid "Fill Mode"
+msgstr ""
+
+#. uZbQV
+#: 06030700.xhp
+msgctxt ""
+"06030700.xhp\n"
+"bm_id3145119\n"
+"help.text"
+msgid "<bookmark_value>cells; trace fill mode</bookmark_value><bookmark_value>traces; precedents for multiple cells</bookmark_value>"
+msgstr ""
+
+#. RrV7R
+#: 06030700.xhp
+msgctxt ""
+"06030700.xhp\n"
+"hd_id3145119\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/06030700.xhp\" name=\"Fill Mode\">Fill Mode</link>"
+msgstr ""
+
+#. EosfQ
+#: 06030700.xhp
+msgctxt ""
+"06030700.xhp\n"
+"par_id3151246\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 ""
+
+#. RmyPo
+#: 06030700.xhp
+msgctxt ""
+"06030700.xhp\n"
+"par_id3151211\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 ""
+
+#. e3Ysa
+#: 06030800.xhp
+msgctxt ""
+"06030800.xhp\n"
+"tit\n"
+"help.text"
+msgid "Mark Invalid Data"
+msgstr ""
+
+#. kDvoF
+#: 06030800.xhp
+msgctxt ""
+"06030800.xhp\n"
+"bm_id3153821\n"
+"help.text"
+msgid "<bookmark_value>cells; invalid data</bookmark_value><bookmark_value>data; showing invalid data</bookmark_value><bookmark_value>invalid data;marking</bookmark_value>"
+msgstr ""
+
+#. 5TNrr
+#: 06030800.xhp
+msgctxt ""
+"06030800.xhp\n"
+"hd_id3153821\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/06030800.xhp\" name=\"Mark Invalid Data\">Mark Invalid Data</link>"
+msgstr ""
+
+#. wBsUp
+#: 06030800.xhp
+msgctxt ""
+"06030800.xhp\n"
+"par_id3147264\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 ""
+
+#. v7Czx
+#: 06030800.xhp
+msgctxt ""
+"06030800.xhp\n"
+"par_id3151211\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 ""
+
+#. eUjEa
+#: 06030900.xhp
+msgctxt ""
+"06030900.xhp\n"
+"tit\n"
+"help.text"
+msgid "Refresh Traces"
+msgstr ""
+
+#. N5KCs
+#: 06030900.xhp
+msgctxt ""
+"06030900.xhp\n"
+"bm_id3152349\n"
+"help.text"
+msgid "<bookmark_value>cells; refreshing traces</bookmark_value><bookmark_value>traces; refreshing</bookmark_value><bookmark_value>updating;traces</bookmark_value>"
+msgstr ""
+
+#. ZPX5J
+#: 06030900.xhp
+msgctxt ""
+"06030900.xhp\n"
+"hd_id3152349\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/06030900.xhp\" name=\"Refresh Traces\">Refresh Traces</link>"
+msgstr ""
+
+#. BfwsW
+#: 06030900.xhp
+msgctxt ""
+"06030900.xhp\n"
+"par_id3148947\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 ""
+
+#. AfZeP
+#: 06030900.xhp
+msgctxt ""
+"06030900.xhp\n"
+"par_id3148798\n"
+"help.text"
+msgid "Detective arrows in the document are updated under the following circumstances:"
+msgstr ""
+
+#. e6xe4
+#: 06030900.xhp
+msgctxt ""
+"06030900.xhp\n"
+"par_id3153192\n"
+"help.text"
+msgid "Starting <emph>Tools - Detective - Update Refresh Traces</emph>"
+msgstr ""
+
+#. xpA7W
+#: 06030900.xhp
+msgctxt ""
+"06030900.xhp\n"
+"par_id3151041\n"
+"help.text"
+msgid "If <emph>Tools - Detective - AutoRefresh</emph> is turned on, every time formulas are changed in the document."
+msgstr ""
+
+#. rftbG
+#: 06031000.xhp
+msgctxt ""
+"06031000.xhp\n"
+"tit\n"
+"help.text"
+msgid "AutoRefresh"
+msgstr ""
+
+#. KcDEQ
+#: 06031000.xhp
+msgctxt ""
+"06031000.xhp\n"
+"bm_id3154515\n"
+"help.text"
+msgid "<bookmark_value>cells; autorefreshing traces</bookmark_value><bookmark_value>traces; autorefreshing</bookmark_value>"
+msgstr ""
+
+#. CRW5U
+#: 06031000.xhp
+msgctxt ""
+"06031000.xhp\n"
+"hd_id3154515\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/06031000.xhp\" name=\"AutoRefresh\">AutoRefresh</link>"
+msgstr ""
+
+#. TnDpQ
+#: 06031000.xhp
+msgctxt ""
+"06031000.xhp\n"
+"par_id3147264\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 ""
+
+#. vHqaw
+#: 06040000.xhp
+msgctxt ""
+"06040000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Goal Seek"
+msgstr ""
+
+#. Zg3DC
+#: 06040000.xhp
+msgctxt ""
+"06040000.xhp\n"
+"hd_id3155629\n"
+"help.text"
+msgid "Goal Seek"
+msgstr ""
+
+#. YJAAa
+#: 06040000.xhp
+msgctxt ""
+"06040000.xhp\n"
+"par_id3145119\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 ""
+
+#. 244L8
+#: 06040000.xhp
+msgctxt ""
+"06040000.xhp\n"
+"hd_id3149656\n"
+"help.text"
+msgid "Default"
+msgstr ""
+
+#. LQrWD
+#: 06040000.xhp
+msgctxt ""
+"06040000.xhp\n"
+"par_id3151211\n"
+"help.text"
+msgid "In this section, you can define the variables in your formula."
+msgstr ""
+
+#. VBDE8
+#: 06040000.xhp
+msgctxt ""
+"06040000.xhp\n"
+"hd_id3150869\n"
+"help.text"
+msgid "Formula cell"
+msgstr ""
+
+#. Yi4Gh
+#: 06040000.xhp
+msgctxt ""
+"06040000.xhp\n"
+"par_id3153194\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 ""
+
+#. qq9Dc
+#: 06040000.xhp
+msgctxt ""
+"06040000.xhp\n"
+"hd_id3154685\n"
+"help.text"
+msgid "Target value"
+msgstr ""
+
+#. a49xw
+#: 06040000.xhp
+msgctxt ""
+"06040000.xhp\n"
+"par_id3146984\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/goalseekdlg/target\">Specifies the value you want to achieve as a new result.</ahelp>"
+msgstr ""
+
+#. PLdFx
+#: 06040000.xhp
+msgctxt ""
+"06040000.xhp\n"
+"hd_id3150012\n"
+"help.text"
+msgid "Variable cell"
+msgstr ""
+
+#. 6rGDG
+#: 06040000.xhp
+msgctxt ""
+"06040000.xhp\n"
+"par_id3147427\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 ""
+
+#. XHDpX
+#: 06050000.xhp
+msgctxt ""
+"06050000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Create Scenario"
+msgstr ""
+
+#. tGY5M
+#: 06050000.xhp
+msgctxt ""
+"06050000.xhp\n"
+"hd_id3156023\n"
+"help.text"
+msgid "Create Scenario"
+msgstr ""
+
+#. oYHUF
+#: 06050000.xhp
+msgctxt ""
+"06050000.xhp\n"
+"par_id3150541\n"
+"help.text"
+msgid "<variable id=\"szenariotext\"><ahelp hid=\".\">Defines a scenario for the selected sheet area.</ahelp></variable>"
+msgstr ""
+
+#. 4VMCm
+#: 06050000.xhp
+msgctxt ""
+"06050000.xhp\n"
+"hd_id3156280\n"
+"help.text"
+msgid "Name of scenario"
+msgstr ""
+
+#. fkFFr
+#: 06050000.xhp
+msgctxt ""
+"06050000.xhp\n"
+"par_id3151041\n"
+"help.text"
+msgid "<ahelp hid=\".\">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 ""
+
+#. G5BEC
+#: 06050000.xhp
+msgctxt ""
+"06050000.xhp\n"
+"hd_id3153954\n"
+"help.text"
+msgid "Comment"
+msgstr ""
+
+#. TDahD
+#: 06050000.xhp
+msgctxt ""
+"06050000.xhp\n"
+"par_id3155411\n"
+"help.text"
+msgid "<ahelp hid=\".\">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 ""
+
+#. SqrLg
+#: 06050000.xhp
+msgctxt ""
+"06050000.xhp\n"
+"hd_id3145273\n"
+"help.text"
+msgid "Settings"
+msgstr ""
+
+#. ARyeH
+#: 06050000.xhp
+msgctxt ""
+"06050000.xhp\n"
+"par_id3153364\n"
+"help.text"
+msgid "This section is used to define some of the settings used in the scenario display."
+msgstr ""
+
+#. faCcw
+#: 06050000.xhp
+msgctxt ""
+"06050000.xhp\n"
+"hd_id3145367\n"
+"help.text"
+msgid "Display border"
+msgstr ""
+
+#. hRLSj
+#: 06050000.xhp
+msgctxt ""
+"06050000.xhp\n"
+"par_id3151073\n"
+"help.text"
+msgid "<ahelp hid=\".\">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 ""
+
+#. aGsrM
+#: 06050000.xhp
+msgctxt ""
+"06050000.xhp\n"
+"hd_id3149582\n"
+"help.text"
+msgid "Copy back"
+msgstr ""
+
+#. nFScH
+#: 06050000.xhp
+msgctxt ""
+"06050000.xhp\n"
+"par_id3154942\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 ""
+
+#. au3d7
+#: 06050000.xhp
+msgctxt ""
+"06050000.xhp\n"
+"hd_id3149402\n"
+"help.text"
+msgid "Copy entire sheet"
+msgstr ""
+
+#. QFHtF
+#: 06050000.xhp
+msgctxt ""
+"06050000.xhp\n"
+"par_id3146969\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/scenariodialog/copysheet\">Copies the entire sheet into an additional scenario sheet. </ahelp>"
+msgstr ""
+
+#. qDcZR
+#: 06050000.xhp
+msgctxt ""
+"06050000.xhp\n"
+"par_idN1075A\n"
+"help.text"
+msgid "Prevent changes"
+msgstr ""
+
+#. ZM4gZ
+#: 06050000.xhp
+msgctxt ""
+"06050000.xhp\n"
+"par_idN1075E\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/scenariodialog/preventchanges\">Prevents changes to the active scenario. 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 ""
+
+#. t7VMq
+#: 06050000.xhp
+msgctxt ""
+"06050000.xhp\n"
+"par_idN10778\n"
+"help.text"
+msgid "You can only change the scenario properties if the <emph>Prevent changes</emph> option is not selected and if the sheet is not protected."
+msgstr ""
+
+#. H89bX
+#: 06050000.xhp
+msgctxt ""
+"06050000.xhp\n"
+"par_idN10780\n"
+"help.text"
+msgid "You can only edit cell values if the <emph>Prevent changes</emph> option is selected, if the <emph>Copy back</emph> is option is not selected, and if the cells are not protected."
+msgstr ""
+
+#. yMejD
+#: 06050000.xhp
+msgctxt ""
+"06050000.xhp\n"
+"par_idN1078C\n"
+"help.text"
+msgid "You can only change scenario cell values and write them back into the scenario if the <emph>Prevent changes</emph> option is not selected, if the <emph>Copy back</emph> option is selected, and if the cells are not protected."
+msgstr ""
+
+#. AMrfx
+#: 06060000.xhp
+msgctxt ""
+"06060000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Protect Document"
+msgstr ""
+
+#. hGhhB
+#: 06060000.xhp
+msgctxt ""
+"06060000.xhp\n"
+"hd_id3148946\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/06060000.xhp\" name=\"Protect Document\">Protect Document</link>"
+msgstr ""
+
+#. wQUat
+#: 06060000.xhp
+msgctxt ""
+"06060000.xhp\n"
+"par_id3153362\n"
+"help.text"
+msgid "The <emph>Protect Sheet</emph> or <emph>Protect Spreadsheet Structure</emph> commands prevent changes from being made to cells in the sheets or to sheets in a document. As an option, you can define a password. If a password is defined, removal of the protection is only possible if the user enters the correct password."
+msgstr ""
+
+#. Z8jxs
+#: 06060000.xhp
+msgctxt ""
+"06060000.xhp\n"
+"hd_id3147228\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/06060100.xhp\" name=\"Sheets\">Sheets</link>"
+msgstr ""
+
+#. 7UWiX
+#: 06060000.xhp
+msgctxt ""
+"06060000.xhp\n"
+"hd_id3153768\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/06060200.xhp\" name=\"Documents\">Documents</link>"
+msgstr ""
+
+#. 3GYGr
+#: 06060100.xhp
+msgctxt ""
+"06060100.xhp\n"
+"tit\n"
+"help.text"
+msgid "Protecting Sheet"
+msgstr ""
+
+#. du7pC
+#: 06060100.xhp
+msgctxt ""
+"06060100.xhp\n"
+"bm_id141619439455954\n"
+"help.text"
+msgid "<bookmark_value>insert rows;protected sheet</bookmark_value><bookmark_value>insert columns;protected sheet</bookmark_value><bookmark_value>delete columns;protected sheet</bookmark_value><bookmark_value>delete rows;protected sheet</bookmark_value><bookmark_value>protected sheet;insert columns</bookmark_value><bookmark_value>protected sheet;insert rows</bookmark_value><bookmark_value>protected sheet;delete rows</bookmark_value><bookmark_value>protected sheet;delete columns</bookmark_value><bookmark_value>protect;sheet</bookmark_value><bookmark_value>selection;in protected cells</bookmark_value>"
+msgstr ""
+
+#. ZFcP8
+#: 06060100.xhp
+msgctxt ""
+"06060100.xhp\n"
+"hd_id3153087\n"
+"help.text"
+msgid "<variable id=\"ProtectingSheeth1\"><link href=\"text/scalc/01/06060100.xhp\" name=\"Protecting Sheet\">Protecting Sheet</link></variable>"
+msgstr ""
+
+#. LcpD8
+#: 06060100.xhp
+msgctxt ""
+"06060100.xhp\n"
+"par_id3148664\n"
+"help.text"
+msgid "<variable id=\"tabelletext\"><ahelp hid=\".uno:Protect\">Protects the cells in the current sheet from being modified.</ahelp></variable>"
+msgstr ""
+
+#. YZ3HB
+#: 06060100.xhp
+msgctxt ""
+"06060100.xhp\n"
+"par_id701619429750616\n"
+"help.text"
+msgid "Choose <emph>Tools - Protect Sheet</emph> to open the <emph>Protect Sheet</emph> dialog in which you then specify sheet protection with or without a password, and select the elements of the sheet to protect."
+msgstr ""
+
+#. vFHpY
+#: 06060100.xhp
+msgctxt ""
+"06060100.xhp\n"
+"par_id3149664\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 ""
+
+#. eUvfv
+#: 06060100.xhp
+msgctxt ""
+"06060100.xhp\n"
+"hd_id901619431276995\n"
+"help.text"
+msgid "Protect this sheet and contents of the protected cells"
+msgstr ""
+
+#. G5UKV
+#: 06060100.xhp
+msgctxt ""
+"06060100.xhp\n"
+"par_id381619431285815\n"
+"help.text"
+msgid "Mark this checkbox to activate protection of sheet and cell contents."
+msgstr ""
+
+#. SFevC
+#: 06060100.xhp
+msgctxt ""
+"06060100.xhp\n"
+"hd_id31619431291108\n"
+"help.text"
+msgid "Password / Confirm"
+msgstr ""
+
+#. AaZQG
+#: 06060100.xhp
+msgctxt ""
+"06060100.xhp\n"
+"par_id851619431300487\n"
+"help.text"
+msgid "Allows you to enter a password to protect the sheet from unauthorized changes. Confirm the password entered in the first box."
+msgstr ""
+
+#. WX7Gh
+#: 06060100.xhp
+msgctxt ""
+"06060100.xhp\n"
+"hd_id711619431316966\n"
+"help.text"
+msgid "Allow users of this sheet to"
+msgstr ""
+
+#. skcWB
+#: 06060100.xhp
+msgctxt ""
+"06060100.xhp\n"
+"par_id41619431361278\n"
+"help.text"
+msgid "Select the elements to protect from user actions:"
+msgstr ""
+
+#. 9Mc4m
+#: 06060100.xhp
+msgctxt ""
+"06060100.xhp\n"
+"par_id661619430257262\n"
+"help.text"
+msgid "<emph>Select protected cells</emph>: mark this checkbox to allow you to select protected cells. When the checkbox is unmarked, you cannot select protected cells, the cursor cannot enter in a protected range."
+msgstr ""
+
+#. UqBRQ
+#: 06060100.xhp
+msgctxt ""
+"06060100.xhp\n"
+"par_id921619430295947\n"
+"help.text"
+msgid "<emph>Select unprotected cells</emph>: mark this checkbox to allow user to select unprotected cells. When the checkbox is unmarked, user cannot select unprotected cells, the cursor cannot enter in a unprotected cell or range."
+msgstr ""
+
+#. R6DuD
+#: 06060100.xhp
+msgctxt ""
+"06060100.xhp\n"
+"par_id101619430333784\n"
+"help.text"
+msgid "<emph>Insert columns</emph>: Allow column insertions even when the sheet is protected. Note that when column insertions is enabled, you can insert columns even when the range to insert the new columns into contains protected cells which will get shifted after the insertion. Cells of the newly inserted columns inherit the Protection property of the range it belongs: when the new cell is inside a protected range, the cell is protected, and when it is in an unprotected range, the cell is unprotected."
+msgstr ""
+
+#. 36hCi
+#: 06060100.xhp
+msgctxt ""
+"06060100.xhp\n"
+"par_id891619430338809\n"
+"help.text"
+msgid "<emph>Insert rows</emph>: Allow row insertions even when the sheet is protected. Note that when row insertions is enabled, you can insert rows even when the range to insert the new rows into contains protected cells which will get shifted after the insertion. Cells of the newly inserted rows inherit the Protection property of the range it belongs: when the new cell is inside a protected range it is protected, and when it is in an unprotected range, the cell is unprotected."
+msgstr ""
+
+#. hGXEq
+#: 06060100.xhp
+msgctxt ""
+"06060100.xhp\n"
+"par_id311619430374686\n"
+"help.text"
+msgid "<emph>Delete columns</emph>: Allow column deletions. Note that column deletions are only allowed on unprotected cells."
+msgstr ""
+
+#. ebwLU
+#: 06060100.xhp
+msgctxt ""
+"06060100.xhp\n"
+"par_id561619430376854\n"
+"help.text"
+msgid "<emph>Delete rows</emph>: Allow row deletions. Note that row deletions are only allowed on unprotected cells."
+msgstr ""
+
+#. cE3Ff
+#: 06060100.xhp
+msgctxt ""
+"06060100.xhp\n"
+"par_id3154490\n"
+"help.text"
+msgid "Unprotected cells or cell ranges can be set up on a protected sheet by using the <emph>Tools - Protect Sheet</emph> and <emph>Format - Cells - Cell Protection</emph> menus:"
+msgstr ""
+
+#. 327UP
+#: 06060100.xhp
+msgctxt ""
+"06060100.xhp\n"
+"par_id3149123\n"
+"help.text"
+msgid "Select the cells that will be unprotected"
+msgstr ""
+
+#. ArCpC
+#: 06060100.xhp
+msgctxt ""
+"06060100.xhp\n"
+"par_id3150329\n"
+"help.text"
+msgid "Select <emph>Format - Cells - Cell Protection</emph>. Unmark the <emph>Protected</emph> box and click <emph>OK</emph>."
+msgstr ""
+
+#. Dw5CS
+#: 06060100.xhp
+msgctxt ""
+"06060100.xhp\n"
+"par_id3156384\n"
+"help.text"
+msgid "On the <emph>Tools - Protect Sheet</emph> menu, activate protection for the sheet. Effective immediately, only the cell range you selected in step 1 can be edited."
+msgstr ""
+
+#. JQWv7
+#: 06060100.xhp
+msgctxt ""
+"06060100.xhp\n"
+"par_id3149566\n"
+"help.text"
+msgid "To later change an unprotected area to a protected area:"
+msgstr ""
+
+#. TzTnE
+#: 06060100.xhp
+msgctxt ""
+"06060100.xhp\n"
+"par_id101619439013221\n"
+"help.text"
+msgid "Select the range of cells that will be protected."
+msgstr ""
+
+#. Cc2Tb
+#: 06060100.xhp
+msgctxt ""
+"06060100.xhp\n"
+"par_id601619439028536\n"
+"help.text"
+msgid "On the <menuitem>Format - Cells - Cell Protection</menuitem> tab page, check the <emph>Protected</emph> box."
+msgstr ""
+
+#. EeKFF
+#: 06060100.xhp
+msgctxt ""
+"06060100.xhp\n"
+"par_id641619439061892\n"
+"help.text"
+msgid "Choose the <menuitem>Tools - Protect Sheet</menuitem> menu. The previously editable range is now protected."
+msgstr ""
+
+#. JaC9W
+#: 06060100.xhp
+msgctxt ""
+"06060100.xhp\n"
+"par_id3153964\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 ""
+
+#. yLmHR
+#: 06060100.xhp
+msgctxt ""
+"06060100.xhp\n"
+"par_id3150301\n"
+"help.text"
+msgid "If a sheet is protected, you will not be able to modify or delete any Cell Styles."
+msgstr ""
+
+#. WEsxm
+#: 06060100.xhp
+msgctxt ""
+"06060100.xhp\n"
+"par_id3154656\n"
+"help.text"
+msgid "A protected sheet or cell range can no longer be modified until this protection is disabled, with the exceptions of the settings for columns and row of the <menuitem>Tools - Protect Sheet</menuitem> dialog. To disable the protection, choose the <menuitem>Tools - Protect Sheet</menuitem> command. If no password was set, the sheet protection is immediately disabled. If the sheet was password protected, the <emph>Remove Protection</emph> dialog opens, where you must enter the password."
+msgstr ""
+
+#. scXrG
+#: 06060100.xhp
+msgctxt ""
+"06060100.xhp\n"
+"par_id3149815\n"
+"help.text"
+msgid "Once saved, protected sheets can only be saved again by using the <emph>File - Save As</emph> command."
+msgstr ""
+
+#. Gr24z
+#: 06060100.xhp
+msgctxt ""
+"06060100.xhp\n"
+"par_id3148700\n"
+"help.text"
+msgid "Complete protection of your work can be achieved by combining the options <emph>Tools - Protect Sheet</emph> and <emph>Tools - Protect Spreadsheet Structure</emph>, including password protection. To prohibit opening the document altogether, in the <emph>Save</emph> dialog mark the <emph>Save with password</emph> box before you click the <emph>Save</emph> button."
+msgstr ""
+
+#. gMgFq
+#: 06060200.xhp
+msgctxt ""
+"06060200.xhp\n"
+"tit\n"
+"help.text"
+msgid "Protecting document"
+msgstr ""
+
+#. aMgYB
+#: 06060200.xhp
+msgctxt ""
+"06060200.xhp\n"
+"hd_id3150541\n"
+"help.text"
+msgid "Protecting document"
+msgstr ""
+
+#. KfLo4
+#: 06060200.xhp
+msgctxt ""
+"06060200.xhp\n"
+"par_id3145172\n"
+"help.text"
+msgid "<variable id=\"dokumenttext\"><ahelp hid=\".uno:ToolProtectionDocument\">Protects the sheet structure of your document from modifications. It is impossible to insert, delete, rename, move or copy sheets.</ahelp></variable> Open the <emph>Protect spreadsheet structure</emph> dialog with <emph>Tools - Protect Spreadsheet Structure</emph>. Optionally enter a password and click OK."
+msgstr ""
+
+#. apWXt
+#: 06060200.xhp
+msgctxt ""
+"06060200.xhp\n"
+"par_id3153188\n"
+"help.text"
+msgid "The structure of protected spreadsheet documents can be changed only if the <emph>Protect</emph> option is disabled. On the context menus for the spreadsheet tabs at the lower graphic border, only the menu item <emph>Select All Sheets</emph> can be activated. All other menu items are deactivated. To remove the protection, call up the command <emph>Tools - Protect Spreadsheet Structure</emph> again. If no password is assigned, protection is immediately removed. If you were assigned a password, the <emph>Remove Spreadsheet Protection</emph> dialog appears, in which you must enter the password. Only then can you remove the check mark specifying that protection is active."
+msgstr ""
+
+#. Y5KBL
+#: 06060200.xhp
+msgctxt ""
+"06060200.xhp\n"
+"par_id3145750\n"
+"help.text"
+msgid "A protected document, once saved, can only be saved again with the <emph>File - Save As</emph> menu command."
+msgstr ""
+
+#. HMhys
+#: 06060200.xhp
+msgctxt ""
+"06060200.xhp\n"
+"hd_id3152596\n"
+"help.text"
+msgid "Password (optional)"
+msgstr ""
+
+#. k6oA7
+#: 06060200.xhp
+msgctxt ""
+"06060200.xhp\n"
+"par_id3155412\n"
+"help.text"
+msgid "<ahelp hid=\"SC_HID_PASSWD_DOC\">You can create a password to protect your document against unauthorized or accidental modifications.</ahelp>"
+msgstr ""
+
+#. TwECw
+#: 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 ""
+
+#. kNtVq
+#: 06060200.xhp
+msgctxt ""
+"06060200.xhp\n"
+"par_id3150717\n"
+"help.text"
+msgid "You can completely protect your work by combining the options <emph>Tools - Protect Sheet</emph> and <emph>Tools - Protect Spreadsheet Structure</emph>, including password entry. If you want to prevent the document from being opened by other users, select <emph>Save With Password </emph>and click the <emph>Save</emph> button. The <emph>Enter Password</emph> dialog appears. Consider carefully when choosing a password; if you forget it after you close a document you will be unable to access the document."
+msgstr ""
+
+#. rH4Zz
+#: 06070000.xhp
+msgctxt ""
+"06070000.xhp\n"
+"tit\n"
+"help.text"
+msgid "AutoCalculate"
+msgstr ""
+
+#. 6gBgP
+#: 06070000.xhp
+msgctxt ""
+"06070000.xhp\n"
+"bm_id3145673\n"
+"help.text"
+msgid "<bookmark_value>calculating; auto calculating sheets</bookmark_value><bookmark_value>recalculate;auto calculating sheets</bookmark_value><bookmark_value>recalculating;auto calculating sheets</bookmark_value><bookmark_value>AutoCalculate function in sheets</bookmark_value><bookmark_value>correcting sheets automatically</bookmark_value><bookmark_value>formulas;AutoCalculate function</bookmark_value><bookmark_value>cell contents;AutoCalculate function</bookmark_value>"
+msgstr ""
+
+#. aruTj
+#: 06070000.xhp
+msgctxt ""
+"06070000.xhp\n"
+"hd_id3145673\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/06070000.xhp\" name=\"AutoCalculate\">AutoCalculate</link>"
+msgstr ""
+
+#. Wyyhf
+#: 06070000.xhp
+msgctxt ""
+"06070000.xhp\n"
+"par_id3148798\n"
+"help.text"
+msgid "<ahelp hid=\".uno:AutomaticCalculation\">Automatically recalculates all formulas in the document.</ahelp>"
+msgstr ""
+
+#. UVFWC
+#: 06070000.xhp
+msgctxt ""
+"06070000.xhp\n"
+"par_id3145173\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 ""
+
+#. Wboju
+#: 06080000.xhp
+msgctxt ""
+"06080000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Recalculate"
+msgstr ""
+
+#. QN44M
+#: 06080000.xhp
+msgctxt ""
+"06080000.xhp\n"
+"bm_id3157909\n"
+"help.text"
+msgid "<bookmark_value>recalculating;all formulas in sheets</bookmark_value><bookmark_value>recalculate;all formulas in sheets</bookmark_value><bookmark_value>formulas; recalculating manually</bookmark_value><bookmark_value>cell contents; recalculating</bookmark_value>"
+msgstr ""
+
+#. eVjX4
+#: 06080000.xhp
+msgctxt ""
+"06080000.xhp\n"
+"hd_id3157909\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/06080000.xhp\" name=\"Recalculate\">Recalculate</link>"
+msgstr ""
+
+#. CBCeE
+#: 06080000.xhp
+msgctxt ""
+"06080000.xhp\n"
+"par_id951584669541929\n"
+"help.text"
+msgid "Recalculates formula cells."
+msgstr ""
+
+#. tCCr5
+#: 06080000.xhp
+msgctxt ""
+"06080000.xhp\n"
+"par_id3154758\n"
+"help.text"
+msgid "<ahelp hid=\".uno:Calculate\">If AutoCalculate is disabled, the Recalculate command recalculates all (so-called dirty) formula cells that depend on changed cell content and their dependents, and formula cells containing volatile functions such as RAND() or NOW() and formula cells that depend on them.</ahelp>"
+msgstr ""
+
+#. QcG4R
+#: 06080000.xhp
+msgctxt ""
+"06080000.xhp\n"
+"par_id3154759\n"
+"help.text"
+msgid "<ahelp hid=\".uno:Calculate\">If AutoCalculate is enabled, the Recalculate command applies only to formula cells containing volatile functions like RAND() or NOW() and formula cells that depend on them.</ahelp>"
+msgstr ""
+
+#. CXEtC
+#: 06080000.xhp
+msgctxt ""
+"06080000.xhp\n"
+"par_id3154753\n"
+"help.text"
+msgid "<ahelp hid=\".uno:Calculate\">In either mode, with formula cell(s) selected pressing F9 recalculates the currently selected cells and formula cells that depend on them. This can be useful after reading documents with recalculation disabled and individual cells need recalculation.</ahelp>"
+msgstr ""
+
+#. g7GEo
+#: 06080000.xhp
+msgctxt ""
+"06080000.xhp\n"
+"par_id315475899\n"
+"help.text"
+msgid "Press <keycode>F9</keycode> to recalculate. Press <keycode>Shift</keycode>+<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline>+<keycode>F9</keycode> to recalculate all formulas in the document, including Add-In functions and non-volatile functions."
+msgstr ""
+
+#. qyZ6P
+#: 06080000.xhp
+msgctxt ""
+"06080000.xhp\n"
+"par_id3150799\n"
+"help.text"
+msgid "After the document has been recalculated, the display is refreshed. All charts are also refreshed."
+msgstr ""
+
+#. a9keX
+#: 06080000.xhp
+msgctxt ""
+"06080000.xhp\n"
+"par_id641645233417894\n"
+"help.text"
+msgid "<link href=\"text/shared/optionen/01060900.xhp\" name=\"recalculationoptions\">Recalculation options</link>"
+msgstr ""
+
+#. CWRgk
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"tit\n"
+"help.text"
+msgid "AutoInput"
+msgstr ""
+
+#. SkmZ8
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"bm_id2486037\n"
+"help.text"
+msgid "<bookmark_value>entering entries with AutoInput function</bookmark_value><bookmark_value>capital letters;AutoInput function</bookmark_value>"
+msgstr ""
+
+#. JX3GB
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"hd_id3148492\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/06130000.xhp\" name=\"AutoInput\">AutoInput</link>"
+msgstr ""
+
+#. 8mzpV
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"par_id3150793\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 ""
+
+#. DTiAQ
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"par_id3156422\n"
+"help.text"
+msgid "The completion text is highlighted."
+msgstr ""
+
+#. VzUyV
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"par_idN1065D\n"
+"help.text"
+msgid "To accept the completion, press <item type=\"keycode\">Enter</item> or a cursor key."
+msgstr ""
+
+#. ZDCvA
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"par_idN10665\n"
+"help.text"
+msgid "To append text or to edit the completion, press <item type=\"keycode\">F2</item>."
+msgstr ""
+
+#. iSGKZ
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"par_idN1066D\n"
+"help.text"
+msgid "To view more completions, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"keycode\">Command</item></caseinline><defaultinline><item type=\"keycode\">Ctrl</item></defaultinline></switchinline><item type=\"keycode\">+Tab</item> to scroll forward, or <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"keycode\">Command</item></caseinline><defaultinline><item type=\"keycode\">Ctrl</item></defaultinline></switchinline><item type=\"keycode\">+Shift+Tab</item> to scroll backward."
+msgstr ""
+
+#. oxZUt
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"par_idN10679\n"
+"help.text"
+msgid "To see a list of all available AutoInput text items for the current column, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"keycode\">Option</item></caseinline><defaultinline><item type=\"keycode\">Alt</item></defaultinline></switchinline><item type=\"keycode\">+Down Arrow</item>."
+msgstr ""
+
+#. PEGiD
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"par_id3150439\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 ""
+
+#. ZG6FW
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"par_id3153363\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 ""
+
+#. KPjBn
+#: 07080000.xhp
+msgctxt ""
+"07080000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Split Window"
+msgstr ""
+
+#. 8fBFT
+#: 07080000.xhp
+msgctxt ""
+"07080000.xhp\n"
+"hd_id3163800\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/07080000.xhp\" name=\"Split\">Split Window</link>"
+msgstr ""
+
+#. FoS5h
+#: 07080000.xhp
+msgctxt ""
+"07080000.xhp\n"
+"par_id3150084\n"
+"help.text"
+msgid "<ahelp hid=\".\">Divides the current window at the top left corner of the active cell.</ahelp>"
+msgstr ""
+
+#. bAPiD
+#: 07080000.xhp
+msgctxt ""
+"07080000.xhp\n"
+"par_id3154910\n"
+"help.text"
+msgid "You can also use the mouse to split the window horizontally or vertically. To do this, drag the thick black line located directly above the vertical scrollbar or directly to the right of the horizontal scrollbar into the window. A thick black line will show where the window is split."
+msgstr ""
+
+#. UNF5Z
+#: 07080000.xhp
+msgctxt ""
+"07080000.xhp\n"
+"par_id3149263\n"
+"help.text"
+msgid "A split window has its own scrollbars in each partial section; by contrast, <link href=\"text/scalc/01/07090000.xhp\" name=\"fixed window sections\">fixed window sections</link> are not scrollable."
+msgstr ""
+
+#. Xscoi
+#: 07090000.xhp
+msgctxt ""
+"07090000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Freeze Rows and Columns"
+msgstr ""
+
+#. nwRKF
+#: 07090000.xhp
+msgctxt ""
+"07090000.xhp\n"
+"hd_id3150517\n"
+"help.text"
+msgid "<variable id=\"freezerowcolum\"><link href=\"text/scalc/01/07090000.xhp\" name=\"Freeze\">Freeze Rows and Columns</link></variable>"
+msgstr ""
+
+#. XjvVY
+#: 07090000.xhp
+msgctxt ""
+"07090000.xhp\n"
+"par_id3156289\n"
+"help.text"
+msgid "<ahelp hid=\".\">Divides the sheet at the top left corner of the active cell and the area to the top left is no longer scrollable.</ahelp>"
+msgstr ""
+
+#. mBdCG
+#: 07090100.xhp
+msgctxt ""
+"07090100.xhp\n"
+"tit\n"
+"help.text"
+msgid "Freeze Cells"
+msgstr ""
+
+#. U6FYG
+#: 07090100.xhp
+msgctxt ""
+"07090100.xhp\n"
+"bm_id821612315529410\n"
+"help.text"
+msgid "<bookmark_value>freezing;first row</bookmark_value> <bookmark_value>freezing;first column</bookmark_value> <bookmark_value>freezing;cells</bookmark_value>"
+msgstr ""
+
+#. tTzNC
+#: 07090100.xhp
+msgctxt ""
+"07090100.xhp\n"
+"hd_id961612313262512\n"
+"help.text"
+msgid "<variable id=\"freezecellsh1\"><link href=\"text/scalc/01/07090100.xhp\" name=\"Freeze Cells\">Freeze Cells</link></variable>"
+msgstr ""
+
+#. sWGWB
+#: 07090100.xhp
+msgctxt ""
+"07090100.xhp\n"
+"par_id481612313262514\n"
+"help.text"
+msgid "Freezes the first column or the first row of the current spreadsheet."
+msgstr ""
+
+#. ozNTG
+#: 12010000.xhp
+msgctxt ""
+"12010000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Define Database Range"
+msgstr ""
+
+#. 3F2WA
+#: 12010000.xhp
+msgctxt ""
+"12010000.xhp\n"
+"hd_id3157909\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/12010000.xhp\" name=\"Define Database Range\">Define Range</link>"
+msgstr ""
+
+#. 8zFH5
+#: 12010000.xhp
+msgctxt ""
+"12010000.xhp\n"
+"par_id3155922\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 ""
+
+#. CZ8n7
+#: 12010000.xhp
+msgctxt ""
+"12010000.xhp\n"
+"par_id3149456\n"
+"help.text"
+msgid "You can only select a rectangular cell range."
+msgstr ""
+
+#. s3R3C
+#: 12010000.xhp
+msgctxt ""
+"12010000.xhp\n"
+"hd_id3156422\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. wK72S
+#: 12010000.xhp
+msgctxt ""
+"12010000.xhp\n"
+"par_id3150770\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 ""
+
+#. rKAPw
+#: 12010000.xhp
+msgctxt ""
+"12010000.xhp\n"
+"hd_id3147228\n"
+"help.text"
+msgid "Range"
+msgstr ""
+
+#. DJqdN
+#: 12010000.xhp
+msgctxt ""
+"12010000.xhp\n"
+"par_id3150441\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/definedatabaserangedialog/assign\">Displays the selected cell range.</ahelp>"
+msgstr ""
+
+#. EgEv5
+#: 12010000.xhp
+msgctxt ""
+"12010000.xhp\n"
+"hd_id3153188\n"
+"help.text"
+msgid "Add/Modify"
+msgstr ""
+
+#. VBDQA
+#: 12010000.xhp
+msgctxt ""
+"12010000.xhp\n"
+"par_id3153726\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 ""
+
+#. DqvSG
+#: 12010000.xhp
+msgctxt ""
+"12010000.xhp\n"
+"hd_id3150010\n"
+"help.text"
+msgid "More >>"
+msgstr ""
+
+#. 4C6px
+#: 12010000.xhp
+msgctxt ""
+"12010000.xhp\n"
+"par_id3153144\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 ""
+
+#. DYHAG
+#: 12010100.xhp
+msgctxt ""
+"12010100.xhp\n"
+"tit\n"
+"help.text"
+msgid "Options"
+msgstr ""
+
+#. 5Mcg9
+#: 12010100.xhp
+msgctxt ""
+"12010100.xhp\n"
+"hd_id3154760\n"
+"help.text"
+msgid "Options"
+msgstr ""
+
+#. Hqjo8
+#: 12010100.xhp
+msgctxt ""
+"12010100.xhp\n"
+"hd_id3153379\n"
+"help.text"
+msgid "Contains column labels"
+msgstr ""
+
+#. Fvoqg
+#: 12010100.xhp
+msgctxt ""
+"12010100.xhp\n"
+"par_id3148798\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/definedatabaserangedialog/ContainsColumnLabels\" visibility=\"visible\">Selected cell ranges contains labels.</ahelp>"
+msgstr ""
+
+#. Xowqi
+#: 12010100.xhp
+msgctxt ""
+"12010100.xhp\n"
+"hd_id3153970\n"
+"help.text"
+msgid "Insert or delete cells"
+msgstr ""
+
+#. qqLap
+#: 12010100.xhp
+msgctxt ""
+"12010100.xhp\n"
+"par_id3154684\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 Range</emph>."
+msgstr ""
+
+#. 2oEGE
+#: 12010100.xhp
+msgctxt ""
+"12010100.xhp\n"
+"hd_id3153768\n"
+"help.text"
+msgid "Keep formatting"
+msgstr ""
+
+#. 2XYBN
+#: 12010100.xhp
+msgctxt ""
+"12010100.xhp\n"
+"par_id3147435\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 ""
+
+#. pqAzC
+#: 12010100.xhp
+msgctxt ""
+"12010100.xhp\n"
+"hd_id3155856\n"
+"help.text"
+msgid "Don't save imported data"
+msgstr ""
+
+#. KjiBd
+#: 12010100.xhp
+msgctxt ""
+"12010100.xhp\n"
+"par_id3153363\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 ""
+
+#. xdA5z
+#: 12010100.xhp
+msgctxt ""
+"12010100.xhp\n"
+"hd_id3147428\n"
+"help.text"
+msgid "Source:"
+msgstr ""
+
+#. aW3bi
+#: 12010100.xhp
+msgctxt ""
+"12010100.xhp\n"
+"par_id3148576\n"
+"help.text"
+msgid "Displays information about the current database source and any existing operators."
+msgstr ""
+
+#. EoxB3
+#: 12010100.xhp
+msgctxt ""
+"12010100.xhp\n"
+"hd_id3146976\n"
+"help.text"
+msgid "More <<"
+msgstr ""
+
+#. CBYgc
+#: 12010100.xhp
+msgctxt ""
+"12010100.xhp\n"
+"par_id3149664\n"
+"help.text"
+msgid "Hides the additional options."
+msgstr ""
+
+#. UpzQF
+#: 12020000.xhp
+msgctxt ""
+"12020000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Select Database Range"
+msgstr ""
+
+#. 3as7h
+#: 12020000.xhp
+msgctxt ""
+"12020000.xhp\n"
+"bm_id3145068\n"
+"help.text"
+msgid "<bookmark_value>databases; selecting (Calc)</bookmark_value>"
+msgstr ""
+
+#. LFBZy
+#: 12020000.xhp
+msgctxt ""
+"12020000.xhp\n"
+"hd_id3145068\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/12020000.xhp\" name=\"Select Database Range\">Select Range</link>"
+msgstr ""
+
+#. DjALP
+#: 12020000.xhp
+msgctxt ""
+"12020000.xhp\n"
+"par_id3149655\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 ""
+
+#. qFxiF
+#: 12020000.xhp
+msgctxt ""
+"12020000.xhp\n"
+"hd_id3153192\n"
+"help.text"
+msgid "Ranges"
+msgstr ""
+
+#. apcCM
+#: 12020000.xhp
+msgctxt ""
+"12020000.xhp\n"
+"par_id3154684\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 ""
+
+#. unHSv
+#: 12030000.xhp
+msgctxt ""
+"12030000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Sort"
+msgstr ""
+
+#. 2U5X4
+#: 12030000.xhp
+msgctxt ""
+"12030000.xhp\n"
+"hd_id3150275\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/12030000.xhp\" name=\"\">Sort</link>"
+msgstr ""
+
+#. BHBgn
+#: 12030000.xhp
+msgctxt ""
+"12030000.xhp\n"
+"par_id3155922\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 ""
+
+#. MYK9p
+#: 12030000.xhp
+msgctxt ""
+"12030000.xhp\n"
+"par_id3147428\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 ""
+
+#. yfaxr
+#: 12030100.xhp
+msgctxt ""
+"12030100.xhp\n"
+"tit\n"
+"help.text"
+msgid "Sort Criteria"
+msgstr ""
+
+#. kCiox
+#: 12030100.xhp
+msgctxt ""
+"12030100.xhp\n"
+"bm_id3152350\n"
+"help.text"
+msgid "<bookmark_value>sorting; sort criteria for database ranges</bookmark_value>"
+msgstr ""
+
+#. 8j5BD
+#: 12030100.xhp
+msgctxt ""
+"12030100.xhp\n"
+"hd_id3152350\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/12030100.xhp\" name=\"Sort Criteria\">Sort Criteria</link>"
+msgstr ""
+
+#. ThM7y
+#: 12030100.xhp
+msgctxt ""
+"12030100.xhp\n"
+"par_id3151385\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/sortcriteriapage/SortCriteriaPage\">Specify the sorting options for the selected range.</ahelp>"
+msgstr ""
+
+#. vU3eB
+#: 12030100.xhp
+msgctxt ""
+"12030100.xhp\n"
+"par_id3152462\n"
+"help.text"
+msgid "Ensure that you include any row and column titles in the selection."
+msgstr ""
+
+#. D6mFP
+#: 12030100.xhp
+msgctxt ""
+"12030100.xhp\n"
+"hd_id3147428\n"
+"help.text"
+msgid "Sort by"
+msgstr ""
+
+#. Lt4dN
+#: 12030100.xhp
+msgctxt ""
+"12030100.xhp\n"
+"par_id3155854\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 ""
+
+#. tc9cH
+#: 12030100.xhp
+msgctxt ""
+"12030100.xhp\n"
+"hd_id3146121\n"
+"help.text"
+msgid "Ascending"
+msgstr ""
+
+#. MHKGY
+#: 12030100.xhp
+msgctxt ""
+"12030100.xhp\n"
+"par_id3148645\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 ""
+
+#. hcoG8
+#: 12030100.xhp
+msgctxt ""
+"12030100.xhp\n"
+"hd_id3155411\n"
+"help.text"
+msgid "Descending"
+msgstr ""
+
+#. dPy9g
+#: 12030100.xhp
+msgctxt ""
+"12030100.xhp\n"
+"par_id3151075\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 ""
+
+#. 7N7QL
+#: 12030100.xhp
+msgctxt ""
+"12030100.xhp\n"
+"hd_id3154492\n"
+"help.text"
+msgid "Then by"
+msgstr ""
+
+#. CJ4U6
+#: 12030100.xhp
+msgctxt ""
+"12030100.xhp\n"
+"par_id3156283\n"
+"help.text"
+msgid "Select the column that you want to use as the secondary sort key."
+msgstr ""
+
+#. EcDrM
+#: 12030100.xhp
+msgctxt ""
+"12030100.xhp\n"
+"hd_id3149413\n"
+"help.text"
+msgid "Ascending"
+msgstr ""
+
+#. SHV5X
+#: 12030100.xhp
+msgctxt ""
+"12030100.xhp\n"
+"par_id3154018\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 ""
+
+#. tvLMc
+#: 12030100.xhp
+msgctxt ""
+"12030100.xhp\n"
+"hd_id3146972\n"
+"help.text"
+msgid "Descending"
+msgstr ""
+
+#. M4Ygg
+#: 12030100.xhp
+msgctxt ""
+"12030100.xhp\n"
+"par_id3145640\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 ""
+
+#. i3uEU
+#: 12030100.xhp
+msgctxt ""
+"12030100.xhp\n"
+"hd_id3150300\n"
+"help.text"
+msgid "Sort Ascending/Descending"
+msgstr ""
+
+#. S9fGF
+#: 12030100.xhp
+msgctxt ""
+"12030100.xhp\n"
+"par_id3158212\n"
+"help.text"
+msgid "<ahelp hid=\".\"><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 ""
+
+#. cAFdw
+#: 12030100.xhp
+msgctxt ""
+"12030100.xhp\n"
+"par_id3159236\n"
+"help.text"
+msgid "Icons on the <emph>Standard</emph> toolbar"
+msgstr ""
+
+#. KUCks
+#: 12030200.xhp
+msgctxt ""
+"12030200.xhp\n"
+"tit\n"
+"help.text"
+msgid "Options"
+msgstr ""
+
+#. JZn45
+#: 12030200.xhp
+msgctxt ""
+"12030200.xhp\n"
+"bm_id3147228\n"
+"help.text"
+msgid "<bookmark_value>sorting; options for database ranges</bookmark_value><bookmark_value>sorting;Asian languages</bookmark_value><bookmark_value>Asian languages;sorting</bookmark_value><bookmark_value>phonebook sorting rules</bookmark_value><bookmark_value>natural sort algorithm</bookmark_value>"
+msgstr ""
+
+#. hYGvo
+#: 12030200.xhp
+msgctxt ""
+"12030200.xhp\n"
+"hd_id3147228\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/12030200.xhp\" name=\"Options\"> Options</link>"
+msgstr ""
+
+#. wDVj5
+#: 12030200.xhp
+msgctxt ""
+"12030200.xhp\n"
+"par_id3153770\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/SortOptionsPage\"> Sets additional sorting options.</ahelp>"
+msgstr ""
+
+#. TFqUq
+#: 12030200.xhp
+msgctxt ""
+"12030200.xhp\n"
+"hd_id3146976\n"
+"help.text"
+msgid "Case sensitive"
+msgstr ""
+
+#. CF7yB
+#: 12030200.xhp
+msgctxt ""
+"12030200.xhp\n"
+"par_id3153091\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 ""
+
+#. QbcU3
+#: 12030200.xhp
+msgctxt ""
+"12030200.xhp\n"
+"par_idN10637\n"
+"help.text"
+msgid "For Asian languages: Check <emph>Case Sensitive</emph> to apply multi-level collation. With multi-level collation, entries are first compared in their primitive forms with their cases and diacritics ignored. If they evaluate as the same, their diacritics are taken into account for the second-level comparison. If they still evaluate as the same, their cases, character widths, and Japanese Kana difference are considered for the third-level comparison."
+msgstr ""
+
+#. Z5MKw
+#: 12030200.xhp
+msgctxt ""
+"12030200.xhp\n"
+"hd_id3155856\n"
+"help.text"
+msgid "Range contains row/column labels"
+msgstr ""
+
+#. dHpeV
+#: 12030200.xhp
+msgctxt ""
+"12030200.xhp\n"
+"par_id3154014\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 ""
+
+#. vRfEp
+#: 12030200.xhp
+msgctxt ""
+"12030200.xhp\n"
+"hd_id3147436\n"
+"help.text"
+msgid "Include formats"
+msgstr ""
+
+#. FPnAT
+#: 12030200.xhp
+msgctxt ""
+"12030200.xhp\n"
+"par_id3149377\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/formats\"> Preserves the current cell formatting.</ahelp>"
+msgstr ""
+
+#. 5edMV
+#: 12030200.xhp
+msgctxt ""
+"12030200.xhp\n"
+"hd_id3147438\n"
+"help.text"
+msgid "Enable natural sort"
+msgstr ""
+
+#. tDCyT
+#: 12030200.xhp
+msgctxt ""
+"12030200.xhp\n"
+"par_id3149378\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/naturalsort\">Natural sort is a sort algorithm that sorts string-prefixed numbers based on the value of the numerical element in each sorted number, instead of the traditional way of sorting them as ordinary strings.</ahelp> For instance, let's assume you have a series of values such as, A1, A2, A3, A4, A5, A6, ..., A19, A20, A21. When you put these values into a range of cells and run the sort, it will become A1, A11, A12, A13, ..., A19, A2, A20, A21, A3, A4, A5, ..., A9. While this sorting behavior may make sense to those who understand the underlying sorting mechanism, to the rest of the population it seems completely bizarre, if not outright inconvenient. With the natural sort feature enabled, values such as the ones in the above example get sorted \"properly\", which improves the convenience of sorting operations in general."
+msgstr ""
+
+#. SJjo2
+#: 12030200.xhp
+msgctxt ""
+"12030200.xhp\n"
+"hd_id71610757096466\n"
+"help.text"
+msgid "Include boundary column(s)/row(s) containing only comments"
+msgstr ""
+
+#. AKcgf
+#: 12030200.xhp
+msgctxt ""
+"12030200.xhp\n"
+"par_id431610757186031\n"
+"help.text"
+msgid "Range boundary columns (for sorting rows) or boundary rows (for sorting columns) of a sorting range are not sorted by default if they are empty. Check this option if boundary columns or boundary rows containing comments are also to be sorted."
+msgstr ""
+
+#. zDzUQ
+#: 12030200.xhp
+msgctxt ""
+"12030200.xhp\n"
+"hd_id161610757296697\n"
+"help.text"
+msgid "Include boundary column(s)/row(s) containing only images"
+msgstr ""
+
+#. QCvRo
+#: 12030200.xhp
+msgctxt ""
+"12030200.xhp\n"
+"par_id181610758875786\n"
+"help.text"
+msgid "Border columns (for sorting rows) or border rows (for sorting columns) of a sorting area are not sorted by default if they are empty. Check this option if boundary columns or boundary rows containing images are also to be sorted."
+msgstr ""
+
+#. LBnqi
+#: 12030200.xhp
+msgctxt ""
+"12030200.xhp\n"
+"hd_id3153878\n"
+"help.text"
+msgid "Copy sort results to:"
+msgstr ""
+
+#. VkZKa
+#: 12030200.xhp
+msgctxt ""
+"12030200.xhp\n"
+"par_id3156286\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/copyresult\"> Copies the sorted list to the cell range that you specify.</ahelp>"
+msgstr ""
+
+#. aKPqx
+#: 12030200.xhp
+msgctxt ""
+"12030200.xhp\n"
+"hd_id3153418\n"
+"help.text"
+msgid "Sort results (named ranges list)"
+msgstr ""
+
+#. JGhWC
+#: 12030200.xhp
+msgctxt ""
+"12030200.xhp\n"
+"par_id3155602\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.</ahelp>"
+msgstr ""
+
+#. nxJWR
+#: 12030200.xhp
+msgctxt ""
+"12030200.xhp\n"
+"hd_id3153707\n"
+"help.text"
+msgid "Sort results (input box)"
+msgstr ""
+
+#. BDJEH
+#: 12030200.xhp
+msgctxt ""
+"12030200.xhp\n"
+"par_id3145642\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/outareaed\">Enter the cell range where you want to display the sorted list.</ahelp>"
+msgstr ""
+
+#. ZCoZV
+#: 12030200.xhp
+msgctxt ""
+"12030200.xhp\n"
+"hd_id3155445\n"
+"help.text"
+msgid "Custom sort order"
+msgstr ""
+
+#. FhFCK
+#: 12030200.xhp
+msgctxt ""
+"12030200.xhp\n"
+"par_id3156385\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 ""
+
+#. AB5C5
+#: 12030200.xhp
+msgctxt ""
+"12030200.xhp\n"
+"hd_id3154704\n"
+"help.text"
+msgid "Custom sort order list"
+msgstr ""
+
+#. hQE6m
+#: 12030200.xhp
+msgctxt ""
+"12030200.xhp\n"
+"par_id3155962\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\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline> - <link href=\"text/shared/optionen/01060400.xhp\" name=\"%PRODUCTNAME Calc - Sort Lists\"><menuitem>%PRODUCTNAME Calc - Sort Lists</menuitem></link>.</ahelp>"
+msgstr ""
+
+#. vH2Uh
+#: 12030200.xhp
+msgctxt ""
+"12030200.xhp\n"
+"hd_id3149257\n"
+"help.text"
+msgid "Language"
+msgstr ""
+
+#. 6ToKx
+#: 12030200.xhp
+msgctxt ""
+"12030200.xhp\n"
+"hd_id3147004\n"
+"help.text"
+msgid "Language"
+msgstr ""
+
+#. ztUnC
+#: 12030200.xhp
+msgctxt ""
+"12030200.xhp\n"
+"par_id3150787\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/language\"> Select the language for the sorting rules.</ahelp>"
+msgstr ""
+
+#. 6BFo5
+#: 12030200.xhp
+msgctxt ""
+"12030200.xhp\n"
+"hd_id3150344\n"
+"help.text"
+msgid "Options"
+msgstr ""
+
+#. 55kP2
+#: 12030200.xhp
+msgctxt ""
+"12030200.xhp\n"
+"par_id3155113\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 ""
+
+#. BuCFU
+#: 12030200.xhp
+msgctxt ""
+"12030200.xhp\n"
+"hd_id3152580\n"
+"help.text"
+msgid "Direction"
+msgstr ""
+
+#. nxmEb
+#: 12030200.xhp
+msgctxt ""
+"12030200.xhp\n"
+"hd_id3154201\n"
+"help.text"
+msgid "Top to Bottom (Sort Rows)"
+msgstr ""
+
+#. V6Ewe
+#: 12030200.xhp
+msgctxt ""
+"12030200.xhp\n"
+"par_id3166430\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 ""
+
+#. bCJEb
+#: 12030200.xhp
+msgctxt ""
+"12030200.xhp\n"
+"hd_id3145588\n"
+"help.text"
+msgid "Left to Right (Sort Columns)"
+msgstr ""
+
+#. BmYDU
+#: 12030200.xhp
+msgctxt ""
+"12030200.xhp\n"
+"par_id3154370\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 ""
+
+#. MzEHk
+#: 12040000.xhp
+msgctxt ""
+"12040000.xhp\n"
+"tit\n"
+"help.text"
+msgid "More Filters"
+msgstr ""
+
+#. EtYTd
+#: 12040000.xhp
+msgctxt ""
+"12040000.xhp\n"
+"hd_id3150767\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/12040000.xhp\" name=\"Filter\">More Filters</link>"
+msgstr ""
+
+#. PgpNB
+#: 12040000.xhp
+msgctxt ""
+"12040000.xhp\n"
+"par_id3155131\n"
+"help.text"
+msgid "<ahelp hid=\".\">Shows commands to filter your data.</ahelp>"
+msgstr ""
+
+#. nGCni
+#: 12040000.xhp
+msgctxt ""
+"12040000.xhp\n"
+"par_id911633127394220\n"
+"help.text"
+msgid "%PRODUCTNAME automatically recognizes predefined database ranges."
+msgstr ""
+
+#. 7khnq
+#: 12040000.xhp
+msgctxt ""
+"12040000.xhp\n"
+"par_id3153363\n"
+"help.text"
+msgid "The following filtering options are available:"
+msgstr ""
+
+#. F7hcb
+#: 12040000.xhp
+msgctxt ""
+"12040000.xhp\n"
+"hd_id3153728\n"
+"help.text"
+msgid "<link href=\"text/shared/02/12090000.xhp\" name=\"Standard filter\">Standard filter</link>"
+msgstr ""
+
+#. TaFZ3
+#: 12040000.xhp
+msgctxt ""
+"12040000.xhp\n"
+"hd_id3159153\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/12040300.xhp\" name=\"Advanced filter\">Advanced filter</link>"
+msgstr ""
+
+#. TGSGd
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"tit\n"
+"help.text"
+msgid "AutoFilter"
+msgstr ""
+
+#. pGfbC
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id3153541\n"
+"help.text"
+msgid "<variable id=\"autofilterh1\"><link href=\"text/scalc/01/12040100.xhp\" name=\"AutoFilter\">AutoFilter</link></variable>"
+msgstr ""
+
+#. cTu3x
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id3148550\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 ""
+
+#. c9BGE
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id101621534096986\n"
+"help.text"
+msgid "Sort Ascending"
+msgstr ""
+
+#. u7XHt
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id31621544435954\n"
+"help.text"
+msgid "Displays the rows of the cell range in ascending order, based on the values in the cells of the current column."
+msgstr ""
+
+#. 6Q8nn
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id561621534101425\n"
+"help.text"
+msgid "Sort Descending"
+msgstr ""
+
+#. CbVJm
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id861621544431393\n"
+"help.text"
+msgid "Displays the rows of the cell range in descending order, based on the values in the cells of the current column."
+msgstr ""
+
+#. sHhH3
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id401621534105620\n"
+"help.text"
+msgid "Top 10"
+msgstr ""
+
+#. onMjn
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id341621544426925\n"
+"help.text"
+msgid "Displays the 10 rows of the cell range that contain the largest values in the cells of the current column. If these values are unique then no more than 10 rows will be visible, but if the values are not unique then it is possible for more than 10 rows to be shown."
+msgstr ""
+
+#. 4oiCy
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id541621534109912\n"
+"help.text"
+msgid "Empty"
+msgstr ""
+
+#. i3DFZ
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id941621544422352\n"
+"help.text"
+msgid "Displays only the rows of the cell range that have an empty cell in the current column."
+msgstr ""
+
+#. s26iT
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id821621534116893\n"
+"help.text"
+msgid "Not Empty"
+msgstr ""
+
+#. GCBF5
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id71621544418559\n"
+"help.text"
+msgid "Displays only the rows of the cell range that have a non-empty cell in the current column."
+msgstr ""
+
+#. s5KFC
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id271621534120995\n"
+"help.text"
+msgid "Text color"
+msgstr ""
+
+#. CCGqV
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id691621544414646\n"
+"help.text"
+msgid "Displays only the rows of the cell range for which the text color of the cell in the current column matches the color selected."
+msgstr ""
+
+#. pdme8
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id151621534125831\n"
+"help.text"
+msgid "Background color"
+msgstr ""
+
+#. dzEhB
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id491621544410605\n"
+"help.text"
+msgid "Displays only the rows of the cell range for which the background color of the cell in the current column matches the color selected."
+msgstr ""
+
+#. wCDB5
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id851621534131430\n"
+"help.text"
+msgid "Standard Filter"
+msgstr ""
+
+#. kqqrX
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id171621544405886\n"
+"help.text"
+msgid "Opens the <link href=\"text/shared/02/12090000.xhp\" name=\"standard filter\">Standard Filter</link> dialog."
+msgstr ""
+
+#. bbVTh
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id551621534136181\n"
+"help.text"
+msgid "Search text box"
+msgstr ""
+
+#. XeGD3
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id421621544399700\n"
+"help.text"
+msgid "Search for a specific entry in the list of values found in the current column. As characters are typed in the text box, this list is updated to show only matching entries."
+msgstr ""
+
+#. igezW
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id581621534140892\n"
+"help.text"
+msgid "All"
+msgstr ""
+
+#. F52s3
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id641621544394836\n"
+"help.text"
+msgid "Click once to select to show all rows and click again to select to hide all rows."
+msgstr ""
+
+#. EADGt
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id731621534146408\n"
+"help.text"
+msgid "Show only current"
+msgstr ""
+
+#. FURWe
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id71621544390147\n"
+"help.text"
+msgid "Display only rows containing the value highlighted in the <emph>Value</emph> box."
+msgstr ""
+
+#. ovQAm
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id11621534151081\n"
+"help.text"
+msgid "Hide only current"
+msgstr ""
+
+#. EJgvW
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id491621544384770\n"
+"help.text"
+msgid "Hide all rows containing the value highlighted in the <emph>Value</emph> box and display all other rows."
+msgstr ""
+
+#. kVCCi
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id621621534155662\n"
+"help.text"
+msgid "Values"
+msgstr ""
+
+#. AzWUy
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id331621544378745\n"
+"help.text"
+msgid "List of unique values found in the current column."
+msgstr ""
+
+#. 4DAJx
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id3145171\n"
+"help.text"
+msgid "<link href=\"text/shared/02/12090000.xhp\" name=\"Default filter\">Default filter</link>"
+msgstr ""
+
+#. G245J
+#: 12040201.xhp
+msgctxt ""
+"12040201.xhp\n"
+"tit\n"
+"help.text"
+msgid "Options"
+msgstr ""
+
+#. zkH7t
+#: 12040201.xhp
+msgctxt ""
+"12040201.xhp\n"
+"hd_id3148492\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/12040201.xhp\" name=\"Options\">Options</link>"
+msgstr ""
+
+#. ZaGeb
+#: 12040201.xhp
+msgctxt ""
+"12040201.xhp\n"
+"par_id3159400\n"
+"help.text"
+msgid "<variable id=\"zusaetzetext\"><ahelp hid=\"modules/scalc/ui/advancedfilterdialog/more\">Shows additional filter options.</ahelp></variable>"
+msgstr ""
+
+#. JoKoM
+#: 12040201.xhp
+msgctxt ""
+"12040201.xhp\n"
+"hd_id3150791\n"
+"help.text"
+msgid "Options"
+msgstr ""
+
+#. tx9YS
+#: 12040201.xhp
+msgctxt ""
+"12040201.xhp\n"
+"hd_id3154138\n"
+"help.text"
+msgid "Case sensitive"
+msgstr ""
+
+#. 7ATH4
+#: 12040201.xhp
+msgctxt ""
+"12040201.xhp\n"
+"par_id3147228\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/advancedfilterdialog/case\">Distinguishes between uppercase and lowercase letters when filtering the data.</ahelp>"
+msgstr ""
+
+#. Dn3MY
+#: 12040201.xhp
+msgctxt ""
+"12040201.xhp\n"
+"hd_id3154908\n"
+"help.text"
+msgid "Range contains column labels"
+msgstr ""
+
+#. LNEse
+#: 12040201.xhp
+msgctxt ""
+"12040201.xhp\n"
+"par_id3153768\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 ""
+
+#. F2EPx
+#: 12040201.xhp
+msgctxt ""
+"12040201.xhp\n"
+"hd_id3155306\n"
+"help.text"
+msgid "Copy results to"
+msgstr ""
+
+#. sEek9
+#: 12040201.xhp
+msgctxt ""
+"12040201.xhp\n"
+"par_id3154319\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 ""
+
+#. MVjYW
+#: 12040201.xhp
+msgctxt ""
+"12040201.xhp\n"
+"hd_id3145272\n"
+"help.text"
+msgid "Regular expression"
+msgstr ""
+
+#. Q6GEs
+#: 12040201.xhp
+msgctxt ""
+"12040201.xhp\n"
+"par_id3152576\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 ""
+
+#. khYZz
+#: 12040201.xhp
+msgctxt ""
+"12040201.xhp\n"
+"par_id3149377\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 ""
+
+#. vKGce
+#: 12040201.xhp
+msgctxt ""
+"12040201.xhp\n"
+"hd_id3149958\n"
+"help.text"
+msgid "No duplication"
+msgstr ""
+
+#. 6GK49
+#: 12040201.xhp
+msgctxt ""
+"12040201.xhp\n"
+"par_id3153876\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/advancedfilterdialog/unique\">Excludes duplicate rows in the list of filtered data.</ahelp>"
+msgstr ""
+
+#. okDXF
+#: 12040201.xhp
+msgctxt ""
+"12040201.xhp\n"
+"hd_id3154018\n"
+"help.text"
+msgid "Keep filter criteria"
+msgstr ""
+
+#. GJBPo
+#: 12040201.xhp
+msgctxt ""
+"12040201.xhp\n"
+"par_id3149123\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 ""
+
+#. iFDua
+#: 12040201.xhp
+msgctxt ""
+"12040201.xhp\n"
+"hd_id3149018\n"
+"help.text"
+msgid "Data range"
+msgstr ""
+
+#. CECj5
+#: 12040201.xhp
+msgctxt ""
+"12040201.xhp\n"
+"par_id3150042\n"
+"help.text"
+msgid "Displays the cell range or the name of the cell range that you want to filter."
+msgstr ""
+
+#. GDT9d
+#: 12040300.xhp
+msgctxt ""
+"12040300.xhp\n"
+"tit\n"
+"help.text"
+msgid "Advanced Filter"
+msgstr ""
+
+#. ELjb7
+#: 12040300.xhp
+msgctxt ""
+"12040300.xhp\n"
+"hd_id3158394\n"
+"help.text"
+msgid "Advanced Filter"
+msgstr ""
+
+#. NzrFR
+#: 12040300.xhp
+msgctxt ""
+"12040300.xhp\n"
+"par_id3156281\n"
+"help.text"
+msgid "<variable id=\"spezialfilter\"><ahelp hid=\".uno:DataFilterSpecialFilter\">Defines an advanced filter.</ahelp></variable>"
+msgstr ""
+
+#. xfUGG
+#: 12040300.xhp
+msgctxt ""
+"12040300.xhp\n"
+"hd_id3153771\n"
+"help.text"
+msgid "Read filter criteria from"
+msgstr ""
+
+#. geUU3
+#: 12040300.xhp
+msgctxt ""
+"12040300.xhp\n"
+"par_id3147426\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 ""
+
+#. qhEo5
+#: 12040300.xhp
+msgctxt ""
+"12040300.xhp\n"
+"hd_id331625165680452\n"
+"help.text"
+msgid "Options"
+msgstr ""
+
+#. oYCwG
+#: 12040400.xhp
+msgctxt ""
+"12040400.xhp\n"
+"tit\n"
+"help.text"
+msgid "Reset Filter"
+msgstr ""
+
+#. 4qBjB
+#: 12040400.xhp
+msgctxt ""
+"12040400.xhp\n"
+"hd_id3153087\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/12040400.xhp\" name=\"Remove Filter\">Reset Filter</link>"
+msgstr ""
+
+#. sCGEu
+#: 12040400.xhp
+msgctxt ""
+"12040400.xhp\n"
+"par_id3154760\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 ""
+
+#. 3g2F2
+#: 12040500.xhp
+msgctxt ""
+"12040500.xhp\n"
+"tit\n"
+"help.text"
+msgid "Hide AutoFilter"
+msgstr ""
+
+#. GQ5JD
+#: 12040500.xhp
+msgctxt ""
+"12040500.xhp\n"
+"bm_id3150276\n"
+"help.text"
+msgid "<bookmark_value>database ranges; hiding AutoFilter</bookmark_value>"
+msgstr ""
+
+#. FzTjq
+#: 12040500.xhp
+msgctxt ""
+"12040500.xhp\n"
+"hd_id3150276\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/12040500.xhp\" name=\"Hide AutoFilter\">Hide AutoFilter</link>"
+msgstr ""
+
+#. RWfzy
+#: 12040500.xhp
+msgctxt ""
+"12040500.xhp\n"
+"par_id3156326\n"
+"help.text"
+msgid "<ahelp hid=\".uno:DataFilterHideAutoFilter\" visibility=\"visible\">Hides the AutoFilter buttons in the selected cell range.</ahelp>"
+msgstr ""
+
+#. VCi2J
+#: 12050000.xhp
+msgctxt ""
+"12050000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Subtotals"
+msgstr ""
+
+#. zaCLT
+#: 12050000.xhp
+msgctxt ""
+"12050000.xhp\n"
+"hd_id3153822\n"
+"help.text"
+msgid "<variable id=\"subtotalheaderh1\"><link href=\"text/scalc/01/12050000.xhp\" name=\"subtotals\">Subtotals</link></variable>"
+msgstr ""
+
+#. 2jiYA
+#: 12050000.xhp
+msgctxt ""
+"12050000.xhp\n"
+"par_id3145119\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 ""
+
+#. gjGHV
+#: 12050000.xhp
+msgctxt ""
+"12050000.xhp\n"
+"par_id3153896\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 ""
+
+#. DGGKP
+#: 12050000.xhp
+msgctxt ""
+"12050000.xhp\n"
+"hd_id3163708\n"
+"help.text"
+msgid "Delete"
+msgstr ""
+
+#. f2Bmb
+#: 12050000.xhp
+msgctxt ""
+"12050000.xhp\n"
+"par_id3154125\n"
+"help.text"
+msgid "Deletes the subtotal rows in the selected area."
+msgstr ""
+
+#. nC7du
+#: 12050100.xhp
+msgctxt ""
+"12050100.xhp\n"
+"tit\n"
+"help.text"
+msgid "1st, 2nd, 3rd Group"
+msgstr ""
+
+#. GUdSZ
+#: 12050100.xhp
+msgctxt ""
+"12050100.xhp\n"
+"hd_id3149784\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/12050100.xhp\" name=\"1st, 2nd, 3rd Group\">1st, 2nd, 3rd Group</link>"
+msgstr ""
+
+#. FE9pf
+#: 12050100.xhp
+msgctxt ""
+"12050100.xhp\n"
+"par_id3145068\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 ""
+
+#. a9Dzb
+#: 12050100.xhp
+msgctxt ""
+"12050100.xhp\n"
+"hd_id3156441\n"
+"help.text"
+msgid "Group by"
+msgstr ""
+
+#. fu9Cf
+#: 12050100.xhp
+msgctxt ""
+"12050100.xhp\n"
+"par_id3154013\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 ""
+
+#. 7xLi2
+#: 12050100.xhp
+msgctxt ""
+"12050100.xhp\n"
+"hd_id3154943\n"
+"help.text"
+msgid "Calculate subtotals for"
+msgstr ""
+
+#. fbUBS
+#: 12050100.xhp
+msgctxt ""
+"12050100.xhp\n"
+"par_id3147125\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 ""
+
+#. kPSFF
+#: 12050100.xhp
+msgctxt ""
+"12050100.xhp\n"
+"hd_id3156283\n"
+"help.text"
+msgid "Use function"
+msgstr ""
+
+#. iHk9W
+#: 12050100.xhp
+msgctxt ""
+"12050100.xhp\n"
+"par_id3145647\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 ""
+
+#. 4doSE
+#: 12050200.xhp
+msgctxt ""
+"12050200.xhp\n"
+"tit\n"
+"help.text"
+msgid "Options"
+msgstr ""
+
+#. xVyK2
+#: 12050200.xhp
+msgctxt ""
+"12050200.xhp\n"
+"bm_id3154758\n"
+"help.text"
+msgid "<bookmark_value>subtotals; sorting options</bookmark_value>"
+msgstr ""
+
+#. yxwtj
+#: 12050200.xhp
+msgctxt ""
+"12050200.xhp\n"
+"hd_id3154758\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/12050200.xhp\" name=\"Options\">Options</link>"
+msgstr ""
+
+#. RV6cM
+#: 12050200.xhp
+msgctxt ""
+"12050200.xhp\n"
+"par_id3154124\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specify the settings for calculating and presenting subtotals.</ahelp>"
+msgstr ""
+
+#. wFA2A
+#: 12050200.xhp
+msgctxt ""
+"12050200.xhp\n"
+"hd_id3156422\n"
+"help.text"
+msgid "Page break between groups"
+msgstr ""
+
+#. QbmVy
+#: 12050200.xhp
+msgctxt ""
+"12050200.xhp\n"
+"par_id3147317\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/subtotaloptionspage/pagebreak\">Inserts a new page after each group of subtotaled data.</ahelp>"
+msgstr ""
+
+#. xcM2E
+#: 12050200.xhp
+msgctxt ""
+"12050200.xhp\n"
+"hd_id3146985\n"
+"help.text"
+msgid "Case sensitive"
+msgstr ""
+
+#. iVzqn
+#: 12050200.xhp
+msgctxt ""
+"12050200.xhp\n"
+"par_id3153190\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/subtotaloptionspage/case\">Recalculates subtotals when you change the case of a data label.</ahelp>"
+msgstr ""
+
+#. qDCGN
+#: 12050200.xhp
+msgctxt ""
+"12050200.xhp\n"
+"hd_id3151119\n"
+"help.text"
+msgid "Pre-sort area according to groups"
+msgstr ""
+
+#. vpMJn
+#: 12050200.xhp
+msgctxt ""
+"12050200.xhp\n"
+"par_id3149664\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 ""
+
+#. 6o48R
+#: 12050200.xhp
+msgctxt ""
+"12050200.xhp\n"
+"hd_id3153951\n"
+"help.text"
+msgid "Sort"
+msgstr ""
+
+#. LWEQW
+#: 12050200.xhp
+msgctxt ""
+"12050200.xhp\n"
+"hd_id3145252\n"
+"help.text"
+msgid "Include formats"
+msgstr ""
+
+#. VKEvc
+#: 12050200.xhp
+msgctxt ""
+"12050200.xhp\n"
+"par_id3147125\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/subtotaloptionspage/formats\">Considers formatting attributes when sorting.</ahelp>"
+msgstr ""
+
+#. 7LP4L
+#: 12050200.xhp
+msgctxt ""
+"12050200.xhp\n"
+"hd_id3155418\n"
+"help.text"
+msgid "Custom sort order"
+msgstr ""
+
+#. Ym9vh
+#: 12050200.xhp
+msgctxt ""
+"12050200.xhp\n"
+"par_id3149400\n"
+"help.text"
+msgid "<ahelp hid=\".\">Uses a custom sorting order that you defined in the Options dialog box at <emph>%PRODUCTNAME Calc - Sort Lists</emph>.</ahelp>"
+msgstr ""
+
+#. 5w6FV
+#: 12050200.xhp
+msgctxt ""
+"12050200.xhp\n"
+"hd_id3149121\n"
+"help.text"
+msgid "Ascending"
+msgstr ""
+
+#. BEhw7
+#: 12050200.xhp
+msgctxt ""
+"12050200.xhp\n"
+"par_id3155068\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 <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - Language settings - Languages</menuitem>."
+msgstr ""
+
+#. FFhB3
+#: 12050200.xhp
+msgctxt ""
+"12050200.xhp\n"
+"hd_id3155443\n"
+"help.text"
+msgid "Descending"
+msgstr ""
+
+#. cSLHu
+#: 12050200.xhp
+msgctxt ""
+"12050200.xhp\n"
+"par_id3153766\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 <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - Language settings - Languages</menuitem>."
+msgstr ""
+
+#. qjwrH
+#: 12060000.xhp
+msgctxt ""
+"12060000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Multiple Operations"
+msgstr ""
+
+#. rc8Gi
+#: 12060000.xhp
+msgctxt ""
+"12060000.xhp\n"
+"hd_id3153381\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/12060000.xhp\" name=\"multiple operations\">Multiple Operations</link>"
+msgstr ""
+
+#. WJG7J
+#: 12060000.xhp
+msgctxt ""
+"12060000.xhp\n"
+"par_id3154140\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 ""
+
+#. NFsLR
+#: 12060000.xhp
+msgctxt ""
+"12060000.xhp\n"
+"par_id3152598\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 ""
+
+#. YntaB
+#: 12060000.xhp
+msgctxt ""
+"12060000.xhp\n"
+"par_id3154011\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 ""
+
+#. ttqxi
+#: 12060000.xhp
+msgctxt ""
+"12060000.xhp\n"
+"hd_id3156441\n"
+"help.text"
+msgid "Defaults"
+msgstr ""
+
+#. 8DXhj
+#: 12060000.xhp
+msgctxt ""
+"12060000.xhp\n"
+"hd_id3154492\n"
+"help.text"
+msgid "Formulas"
+msgstr ""
+
+#. Poqcs
+#: 12060000.xhp
+msgctxt ""
+"12060000.xhp\n"
+"par_id3151073\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 ""
+
+#. qCM97
+#: 12060000.xhp
+msgctxt ""
+"12060000.xhp\n"
+"hd_id3154729\n"
+"help.text"
+msgid "Row"
+msgstr ""
+
+#. CxUyP
+#: 12060000.xhp
+msgctxt ""
+"12060000.xhp\n"
+"par_id3148456\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 ""
+
+#. EBLEy
+#: 12060000.xhp
+msgctxt ""
+"12060000.xhp\n"
+"hd_id3150718\n"
+"help.text"
+msgid "Column"
+msgstr ""
+
+#. 3Effu
+#: 12060000.xhp
+msgctxt ""
+"12060000.xhp\n"
+"par_id3150327\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 ""
+
+#. pfxVH
+#: 12070000.xhp
+msgctxt ""
+"12070000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Consolidate"
+msgstr ""
+
+#. 4QnDV
+#: 12070000.xhp
+msgctxt ""
+"12070000.xhp\n"
+"hd_id3148946\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/12070000.xhp\" name=\"Consolidate\">Consolidate</link>"
+msgstr ""
+
+#. LGBKi
+#: 12070000.xhp
+msgctxt ""
+"12070000.xhp\n"
+"par_id3148798\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 ""
+
+#. Fo2yT
+#: 12070000.xhp
+msgctxt ""
+"12070000.xhp\n"
+"hd_id3150010\n"
+"help.text"
+msgid "Function"
+msgstr ""
+
+#. BrbLM
+#: 12070000.xhp
+msgctxt ""
+"12070000.xhp\n"
+"par_id3149377\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 ""
+
+#. AAWE3
+#: 12070000.xhp
+msgctxt ""
+"12070000.xhp\n"
+"hd_id3147127\n"
+"help.text"
+msgid "Consolidation ranges"
+msgstr ""
+
+#. 9YVBH
+#: 12070000.xhp
+msgctxt ""
+"12070000.xhp\n"
+"par_id3151075\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/consareas\">Displays the cell ranges that you want to consolidate.</ahelp>"
+msgstr ""
+
+#. P3ptZ
+#: 12070000.xhp
+msgctxt ""
+"12070000.xhp\n"
+"hd_id3147397\n"
+"help.text"
+msgid "Source data range"
+msgstr ""
+
+#. T3MDe
+#: 12070000.xhp
+msgctxt ""
+"12070000.xhp\n"
+"par_id3153836\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 the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
+msgstr ""
+
+#. HjAGk
+#: 12070000.xhp
+msgctxt ""
+"12070000.xhp\n"
+"hd_id3155768\n"
+"help.text"
+msgid "Copy results to"
+msgstr ""
+
+#. dCxgK
+#: 12070000.xhp
+msgctxt ""
+"12070000.xhp\n"
+"par_id3147341\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 ""
+
+#. ZAkbj
+#: 12070000.xhp
+msgctxt ""
+"12070000.xhp\n"
+"hd_id3147345\n"
+"help.text"
+msgid "Add"
+msgstr ""
+
+#. WGuCv
+#: 12070000.xhp
+msgctxt ""
+"12070000.xhp\n"
+"par_id3155335\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 ""
+
+#. V44Bp
+#: 12070000.xhp
+msgctxt ""
+"12070000.xhp\n"
+"hd_id3148630\n"
+"help.text"
+msgid "Options"
+msgstr ""
+
+#. WGcsG
+#: 12070000.xhp
+msgctxt ""
+"12070000.xhp\n"
+"par_id3159239\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 ""
+
+#. C3jt5
+#: 12070100.xhp
+msgctxt ""
+"12070100.xhp\n"
+"tit\n"
+"help.text"
+msgid "Consolidate by"
+msgstr ""
+
+#. AoUCh
+#: 12070100.xhp
+msgctxt ""
+"12070100.xhp\n"
+"hd_id3151210\n"
+"help.text"
+msgid "Consolidate by"
+msgstr ""
+
+#. wG9CD
+#: 12070100.xhp
+msgctxt ""
+"12070100.xhp\n"
+"hd_id3125864\n"
+"help.text"
+msgid "Consolidate by"
+msgstr ""
+
+#. oEssG
+#: 12070100.xhp
+msgctxt ""
+"12070100.xhp\n"
+"par_id3154909\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 ""
+
+#. BqDRH
+#: 12070100.xhp
+msgctxt ""
+"12070100.xhp\n"
+"hd_id3153968\n"
+"help.text"
+msgid "Row labels"
+msgstr ""
+
+#. A3ANE
+#: 12070100.xhp
+msgctxt ""
+"12070100.xhp\n"
+"par_id3150441\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/byrow\" visibility=\"visible\">Uses the row labels to arrange the consolidated data.</ahelp>"
+msgstr ""
+
+#. wAT6F
+#: 12070100.xhp
+msgctxt ""
+"12070100.xhp\n"
+"hd_id3146976\n"
+"help.text"
+msgid "Column labels"
+msgstr ""
+
+#. u8GeX
+#: 12070100.xhp
+msgctxt ""
+"12070100.xhp\n"
+"par_id3155411\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/bycol\" visibility=\"visible\">Uses the column labels to arrange the consolidated data.</ahelp>"
+msgstr ""
+
+#. EiGJx
+#: 12070100.xhp
+msgctxt ""
+"12070100.xhp\n"
+"hd_id3153191\n"
+"help.text"
+msgid "Options"
+msgstr ""
+
+#. obspZ
+#: 12070100.xhp
+msgctxt ""
+"12070100.xhp\n"
+"hd_id3159154\n"
+"help.text"
+msgid "Link to source data"
+msgstr ""
+
+#. CG7Gn
+#: 12070100.xhp
+msgctxt ""
+"12070100.xhp\n"
+"par_id3146986\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 ""
+
+#. AetFo
+#: 12070100.xhp
+msgctxt ""
+"12070100.xhp\n"
+"hd_id3163708\n"
+"help.text"
+msgid "Options"
+msgstr ""
+
+#. FGT46
+#: 12070100.xhp
+msgctxt ""
+"12070100.xhp\n"
+"par_id3151118\n"
+"help.text"
+msgid "Hides the additional options."
+msgstr ""
+
+#. UcPD8
+#: 12080000.xhp
+msgctxt ""
+"12080000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Group and Outline"
+msgstr ""
+
+#. ZsKdU
+#: 12080000.xhp
+msgctxt ""
+"12080000.xhp\n"
+"bm_id3152350\n"
+"help.text"
+msgid "<bookmark_value>sheets; outlines</bookmark_value><bookmark_value>outlines; sheets</bookmark_value><bookmark_value>hiding; sheet details</bookmark_value><bookmark_value>showing; sheet details</bookmark_value><bookmark_value>grouping;cells</bookmark_value>"
+msgstr ""
+
+#. YUNJC
+#: 12080000.xhp
+msgctxt ""
+"12080000.xhp\n"
+"hd_id3152350\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/12080000.xhp\" name=\"Group and Outline\">Group and Outline</link>"
+msgstr ""
+
+#. QA6dV
+#: 12080000.xhp
+msgctxt ""
+"12080000.xhp\n"
+"par_id3150793\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 ""
+
+#. p8VzC
+#: 12080000.xhp
+msgctxt ""
+"12080000.xhp\n"
+"hd_id3147229\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/12080300.xhp\" name=\"Group\">Group</link>"
+msgstr ""
+
+#. 3AEgr
+#: 12080000.xhp
+msgctxt ""
+"12080000.xhp\n"
+"hd_id3153188\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/12080400.xhp\" name=\"Ungroup\">Ungroup</link>"
+msgstr ""
+
+#. CdWmg
+#: 12080100.xhp
+msgctxt ""
+"12080100.xhp\n"
+"tit\n"
+"help.text"
+msgid "Hide Details"
+msgstr ""
+
+#. oUhBB
+#: 12080100.xhp
+msgctxt ""
+"12080100.xhp\n"
+"bm_id3155628\n"
+"help.text"
+msgid "<bookmark_value>sheets; hiding details</bookmark_value>"
+msgstr ""
+
+#. yL2DX
+#: 12080100.xhp
+msgctxt ""
+"12080100.xhp\n"
+"hd_id3155628\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/12080100.xhp\" name=\"Hide Details\">Hide Details</link>"
+msgstr ""
+
+#. UBn3h
+#: 12080100.xhp
+msgctxt ""
+"12080100.xhp\n"
+"par_id3154515\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 ""
+
+#. fWAPF
+#: 12080100.xhp
+msgctxt ""
+"12080100.xhp\n"
+"par_id3153252\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 ""
+
+#. 2zLCt
+#: 12080200.xhp
+msgctxt ""
+"12080200.xhp\n"
+"tit\n"
+"help.text"
+msgid "Show Details"
+msgstr ""
+
+#. hehMR
+#: 12080200.xhp
+msgctxt ""
+"12080200.xhp\n"
+"bm_id3153561\n"
+"help.text"
+msgid "<bookmark_value>tables; showing details</bookmark_value>"
+msgstr ""
+
+#. 6scdF
+#: 12080200.xhp
+msgctxt ""
+"12080200.xhp\n"
+"hd_id3153561\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/12080200.xhp\" name=\"Show Details\">Show Details</link>"
+msgstr ""
+
+#. Drmv5
+#: 12080200.xhp
+msgctxt ""
+"12080200.xhp\n"
+"par_id3153822\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 ""
+
+#. 3QPc4
+#: 12080200.xhp
+msgctxt ""
+"12080200.xhp\n"
+"par_id3155922\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 ""
+
+#. z8Av9
+#: 12080200.xhp
+msgctxt ""
+"12080200.xhp\n"
+"par_id6036561\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/12080700.xhp\">Show Details command in pivot tables</link>"
+msgstr ""
+
+#. YZAps
+#: 12080300.xhp
+msgctxt ""
+"12080300.xhp\n"
+"tit\n"
+"help.text"
+msgid "Group"
+msgstr ""
+
+#. BLucd
+#: 12080300.xhp
+msgctxt ""
+"12080300.xhp\n"
+"hd_id3153088\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/12080300.xhp\" name=\"Group\">Group</link>"
+msgstr ""
+
+#. cSvFF
+#: 12080300.xhp
+msgctxt ""
+"12080300.xhp\n"
+"par_id3153821\n"
+"help.text"
+msgid "<variable id=\"gruppierung\"><ahelp hid=\".\">Defines the selected cell range as a group of rows or columns.</ahelp></variable>"
+msgstr ""
+
+#. Gx8qW
+#: 12080300.xhp
+msgctxt ""
+"12080300.xhp\n"
+"par_id3145069\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 – Group and Outline -</emph> <link href=\"text/scalc/01/12080400.xhp\" name=\"Ungroup\"><emph>Ungroup</emph></link>."
+msgstr ""
+
+#. PcrAZ
+#: 12080300.xhp
+msgctxt ""
+"12080300.xhp\n"
+"hd_id3125863\n"
+"help.text"
+msgid "Include"
+msgstr ""
+
+#. 3jjJh
+#: 12080300.xhp
+msgctxt ""
+"12080300.xhp\n"
+"hd_id3150448\n"
+"help.text"
+msgid "Rows"
+msgstr ""
+
+#. 5BrbE
+#: 12080300.xhp
+msgctxt ""
+"12080300.xhp\n"
+"par_id3153194\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/groupdialog/rows\">Groups the selected rows.</ahelp>"
+msgstr ""
+
+#. Dza2v
+#: 12080300.xhp
+msgctxt ""
+"12080300.xhp\n"
+"hd_id3145786\n"
+"help.text"
+msgid "Columns"
+msgstr ""
+
+#. EA2d7
+#: 12080300.xhp
+msgctxt ""
+"12080300.xhp\n"
+"par_id3146984\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/groupdialog/cols\">Groups the selected columns.</ahelp>"
+msgstr ""
+
+#. EnEBx
+#: 12080300.xhp
+msgctxt ""
+"12080300.xhp\n"
+"par_id171608652491036\n"
+"help.text"
+msgid "Grouping and ungrouping is not tracked. Group is greyed out when track changes is on."
+msgstr ""
+
+#. V4FGD
+#: 12080400.xhp
+msgctxt ""
+"12080400.xhp\n"
+"tit\n"
+"help.text"
+msgid "Ungroup"
+msgstr ""
+
+#. cy3CT
+#: 12080400.xhp
+msgctxt ""
+"12080400.xhp\n"
+"hd_id3148492\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/12080400.xhp\" name=\"Ungroup\">Ungroup</link>"
+msgstr ""
+
+#. 3EEuk
+#: 12080400.xhp
+msgctxt ""
+"12080400.xhp\n"
+"par_id3151384\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 ""
+
+#. C48BR
+#: 12080400.xhp
+msgctxt ""
+"12080400.xhp\n"
+"hd_id3151210\n"
+"help.text"
+msgid "Deactivate for"
+msgstr ""
+
+#. BR8pu
+#: 12080400.xhp
+msgctxt ""
+"12080400.xhp\n"
+"hd_id3156280\n"
+"help.text"
+msgid "Rows"
+msgstr ""
+
+#. 8vVoE
+#: 12080400.xhp
+msgctxt ""
+"12080400.xhp\n"
+"par_id3125864\n"
+"help.text"
+msgid "Removes selected rows from a group."
+msgstr ""
+
+#. ECxPE
+#: 12080400.xhp
+msgctxt ""
+"12080400.xhp\n"
+"hd_id3147230\n"
+"help.text"
+msgid "Columns"
+msgstr ""
+
+#. G5woA
+#: 12080400.xhp
+msgctxt ""
+"12080400.xhp\n"
+"par_id3154685\n"
+"help.text"
+msgid "Removes selected columns from a group."
+msgstr ""
+
+#. EQ6tC
+#: 12080500.xhp
+msgctxt ""
+"12080500.xhp\n"
+"tit\n"
+"help.text"
+msgid "AutoOutline"
+msgstr ""
+
+#. DEaWY
+#: 12080500.xhp
+msgctxt ""
+"12080500.xhp\n"
+"hd_id3150275\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/12080500.xhp\" name=\"AutoOutline\">AutoOutline</link>"
+msgstr ""
+
+#. X6uK6
+#: 12080500.xhp
+msgctxt ""
+"12080500.xhp\n"
+"par_id3145069\n"
+"help.text"
+msgid "<ahelp hid=\".uno:AutoOutline\">If the selected cell range contains formulas or references, $[officename] automatically outlines the selection.</ahelp>"
+msgstr ""
+
+#. 3DwH9
+#: 12080500.xhp
+msgctxt ""
+"12080500.xhp\n"
+"par_id3148798\n"
+"help.text"
+msgid "For example, consider the following table:"
+msgstr ""
+
+#. c4WvE
+#: 12080500.xhp
+msgctxt ""
+"12080500.xhp\n"
+"par_id3154123\n"
+"help.text"
+msgid "January"
+msgstr ""
+
+#. 7CveD
+#: 12080500.xhp
+msgctxt ""
+"12080500.xhp\n"
+"par_id3154011\n"
+"help.text"
+msgid "February"
+msgstr ""
+
+#. yfwCK
+#: 12080500.xhp
+msgctxt ""
+"12080500.xhp\n"
+"par_id3152460\n"
+"help.text"
+msgid "March"
+msgstr ""
+
+#. 6oUFC
+#: 12080500.xhp
+msgctxt ""
+"12080500.xhp\n"
+"par_id3146119\n"
+"help.text"
+msgid "1st Quarter"
+msgstr ""
+
+#. oxcU2
+#: 12080500.xhp
+msgctxt ""
+"12080500.xhp\n"
+"par_id3155854\n"
+"help.text"
+msgid "April"
+msgstr ""
+
+#. GGfD5
+#: 12080500.xhp
+msgctxt ""
+"12080500.xhp\n"
+"par_id3148575\n"
+"help.text"
+msgid "May"
+msgstr ""
+
+#. 5fEef
+#: 12080500.xhp
+msgctxt ""
+"12080500.xhp\n"
+"par_id3145271\n"
+"help.text"
+msgid "June"
+msgstr ""
+
+#. Pch7E
+#: 12080500.xhp
+msgctxt ""
+"12080500.xhp\n"
+"par_id3145648\n"
+"help.text"
+msgid "2nd Quarter"
+msgstr ""
+
+#. cLeqA
+#: 12080500.xhp
+msgctxt ""
+"12080500.xhp\n"
+"par_id3147363\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 ""
+
+#. BSqPC
+#: 12080500.xhp
+msgctxt ""
+"12080500.xhp\n"
+"par_id3146918\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 ""
+
+#. iePNH
+#: 12080600.xhp
+msgctxt ""
+"12080600.xhp\n"
+"tit\n"
+"help.text"
+msgid "Remove"
+msgstr ""
+
+#. bdqzB
+#: 12080600.xhp
+msgctxt ""
+"12080600.xhp\n"
+"hd_id3148947\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/12080600.xhp\" name=\"Remove\">Remove</link>"
+msgstr ""
+
+#. FjGia
+#: 12080600.xhp
+msgctxt ""
+"12080600.xhp\n"
+"par_id3149656\n"
+"help.text"
+msgid "<ahelp hid=\".uno:ClearOutline\" visibility=\"visible\">Removes the outline from the selected cell range.</ahelp>"
+msgstr ""
+
+#. tcW7H
+#: 12080700.xhp
+msgctxt ""
+"12080700.xhp\n"
+"tit\n"
+"help.text"
+msgid "Show Details (Pivot Table)"
+msgstr ""
+
+#. c8vat
+#: 12080700.xhp
+msgctxt ""
+"12080700.xhp\n"
+"hd_id3344523\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/12080700.xhp\">Show Details (Pivot Table)</link>"
+msgstr ""
+
+#. CimBU
+#: 12080700.xhp
+msgctxt ""
+"12080700.xhp\n"
+"par_id871303\n"
+"help.text"
+msgid "<ahelp hid=\".\">Inserts a new \"drill-down\" sheet with more information about the current pivot table cell. You can also double-click a pivot table cell to insert the \"drill-down\" sheet. The new sheet shows a subset of rows from the original data source that constitutes the result data displayed in the current cell.</ahelp>"
+msgstr ""
+
+#. FvKCt
+#: 12080700.xhp
+msgctxt ""
+"12080700.xhp\n"
+"par_id7132480\n"
+"help.text"
+msgid "Hidden items are not evaluated, the rows for the hidden items are included. Show Details is available only for pivot tables that are based on cell ranges or database data."
+msgstr ""
+
+#. PLw9N
+#: 12090000.xhp
+msgctxt ""
+"12090000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Pivot Table"
+msgstr ""
+
+#. ZXpC3
+#: 12090000.xhp
+msgctxt ""
+"12090000.xhp\n"
+"hd_id3150275\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/12090000.xhp\" name=\"Pivot Table\">Pivot Table</link>"
+msgstr ""
+
+#. P4MKS
+#: 12090000.xhp
+msgctxt ""
+"12090000.xhp\n"
+"par_id3153562\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 ""
+
+#. DS8vh
+#: 12090000.xhp
+msgctxt ""
+"12090000.xhp\n"
+"hd_id3155923\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/12090100.xhp\" name=\"Create\">Create</link>"
+msgstr ""
+
+#. Fz8pn
+#: 12090000.xhp
+msgctxt ""
+"12090000.xhp\n"
+"par_idN105FB\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/12090102.xhp\" name=\"Pivot table dialog\">Pivot table dialog</link>"
+msgstr ""
+
+#. Vpqsf
+#: 12090100.xhp
+msgctxt ""
+"12090100.xhp\n"
+"tit\n"
+"help.text"
+msgid "Select Source"
+msgstr ""
+
+#. tbA55
+#: 12090100.xhp
+msgctxt ""
+"12090100.xhp\n"
+"hd_id3153663\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/12090100.xhp\" name=\"Pivot Table - Select Source\">Pivot Table - Select Source</link>"
+msgstr ""
+
+#. JCesq
+#: 12090100.xhp
+msgctxt ""
+"12090100.xhp\n"
+"par_id3145119\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 ""
+
+#. bkFbJ
+#: 12090100.xhp
+msgctxt ""
+"12090100.xhp\n"
+"hd_id3154760\n"
+"help.text"
+msgid "Selection"
+msgstr ""
+
+#. vGkEh
+#: 12090100.xhp
+msgctxt ""
+"12090100.xhp\n"
+"par_id3150543\n"
+"help.text"
+msgid "Select a data source for the pivot table."
+msgstr ""
+
+#. FA5GG
+#: 12090100.xhp
+msgctxt ""
+"12090100.xhp\n"
+"hd_id3148799\n"
+"help.text"
+msgid "Current Selection"
+msgstr ""
+
+#. dqYZq
+#: 12090100.xhp
+msgctxt ""
+"12090100.xhp\n"
+"par_id3125865\n"
+"help.text"
+msgid "<ahelp hid=\".\">Uses the selected cells as the data source for the pivot table.</ahelp>"
+msgstr ""
+
+#. A48Kd
+#: 12090100.xhp
+msgctxt ""
+"12090100.xhp\n"
+"par_id3150011\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 ""
+
+#. 4utfU
+#: 12090100.xhp
+msgctxt ""
+"12090100.xhp\n"
+"hd_id3147348\n"
+"help.text"
+msgid "Data source registered in $[officename]"
+msgstr ""
+
+#. KzkhK
+#: 12090100.xhp
+msgctxt ""
+"12090100.xhp\n"
+"par_id3145271\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 ""
+
+#. 273iE
+#: 12090100.xhp
+msgctxt ""
+"12090100.xhp\n"
+"hd_id3146119\n"
+"help.text"
+msgid "External source/interface"
+msgstr ""
+
+#. SiBBE
+#: 12090100.xhp
+msgctxt ""
+"12090100.xhp\n"
+"par_id3145647\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 ""
+
+#. DqiMT
+#: 12090100.xhp
+msgctxt ""
+"12090100.xhp\n"
+"par_idN10670\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/12090102.xhp\" name=\"Pivot table dialog\">Pivot table dialog</link>"
+msgstr ""
+
+#. aZf2u
+#: 12090101.xhp
+msgctxt ""
+"12090101.xhp\n"
+"tit\n"
+"help.text"
+msgid "Select Data Source"
+msgstr ""
+
+#. HCBPf
+#: 12090101.xhp
+msgctxt ""
+"12090101.xhp\n"
+"hd_id3143268\n"
+"help.text"
+msgid "Select Data Source"
+msgstr ""
+
+#. C4tfi
+#: 12090101.xhp
+msgctxt ""
+"12090101.xhp\n"
+"par_id3148552\n"
+"help.text"
+msgid "Select the database and the table or query containing the data that you want to use."
+msgstr ""
+
+#. nR7ER
+#: 12090101.xhp
+msgctxt ""
+"12090101.xhp\n"
+"hd_id3154140\n"
+"help.text"
+msgid "Selection"
+msgstr ""
+
+#. XapvE
+#: 12090101.xhp
+msgctxt ""
+"12090101.xhp\n"
+"par_id3125863\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 ""
+
+#. s5hPU
+#: 12090101.xhp
+msgctxt ""
+"12090101.xhp\n"
+"hd_id3151041\n"
+"help.text"
+msgid "Database"
+msgstr ""
+
+#. CDGEk
+#: 12090101.xhp
+msgctxt ""
+"12090101.xhp\n"
+"par_id3156424\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 ""
+
+#. BJtdC
+#: 12090101.xhp
+msgctxt ""
+"12090101.xhp\n"
+"hd_id3145364\n"
+"help.text"
+msgid "Data source"
+msgstr ""
+
+#. jMAYt
+#: 12090101.xhp
+msgctxt ""
+"12090101.xhp\n"
+"par_id3149260\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/selectdatasource/datasource\">Select the data source that you want to use.</ahelp>"
+msgstr ""
+
+#. hS9Dp
+#: 12090101.xhp
+msgctxt ""
+"12090101.xhp\n"
+"hd_id3147428\n"
+"help.text"
+msgid "Type"
+msgstr ""
+
+#. MXt7X
+#: 12090101.xhp
+msgctxt ""
+"12090101.xhp\n"
+"par_id3150010\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 ""
+
+#. 9xEou
+#: 12090101.xhp
+msgctxt ""
+"12090101.xhp\n"
+"par_id3147348\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/12090102.xhp\" name=\"Pivot table dialog\">Pivot table dialog</link>"
+msgstr ""
+
+#. tFAGE
+#: 12090102.xhp
+msgctxt ""
+"12090102.xhp\n"
+"tit\n"
+"help.text"
+msgid "Pivot Table"
+msgstr ""
+
+#. 4BsDe
+#: 12090102.xhp
+msgctxt ""
+"12090102.xhp\n"
+"bm_id2306894\n"
+"help.text"
+msgid "<bookmark_value>pivot table function;show details</bookmark_value><bookmark_value>pivot table function;drill down</bookmark_value>"
+msgstr ""
+
+#. n4NPA
+#: 12090102.xhp
+msgctxt ""
+"12090102.xhp\n"
+"hd_id3149165\n"
+"help.text"
+msgid "Pivot Table"
+msgstr ""
+
+#. eBUzN
+#: 12090102.xhp
+msgctxt ""
+"12090102.xhp\n"
+"par_id3155922\n"
+"help.text"
+msgid "<ahelp hid=\".uno:DataPilotExec\">Specify the layout of the table that is generated by the pivot table.</ahelp>"
+msgstr ""
+
+#. 7YRp4
+#: 12090102.xhp
+msgctxt ""
+"12090102.xhp\n"
+"par_id3148798\n"
+"help.text"
+msgid "The pivot table displays data fields as buttons which you can drag and drop to define the pivot table."
+msgstr ""
+
+#. FCdA2
+#: 12090102.xhp
+msgctxt ""
+"12090102.xhp\n"
+"hd_id3154908\n"
+"help.text"
+msgid "Layout"
+msgstr ""
+
+#. DkMQE
+#: 12090102.xhp
+msgctxt ""
+"12090102.xhp\n"
+"par_id3150768\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>Filters, 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 ""
+
+#. b5Zrk
+#: 12090102.xhp
+msgctxt ""
+"12090102.xhp\n"
+"par_id3147229\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 ""
+
+#. vcULm
+#: 12090102.xhp
+msgctxt ""
+"12090102.xhp\n"
+"par_id3145749\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 ""
+
+#. 9JFKg
+#: 12090102.xhp
+msgctxt ""
+"12090102.xhp\n"
+"hd_id3154944\n"
+"help.text"
+msgid "More"
+msgstr ""
+
+#. ExoJS
+#: 12090102.xhp
+msgctxt ""
+"12090102.xhp\n"
+"par_id3145647\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/pivottablelayoutdialog/more\">Displays or hides additional options for defining the pivot table.</ahelp>"
+msgstr ""
+
+#. BAjQN
+#: 12090102.xhp
+msgctxt ""
+"12090102.xhp\n"
+"hd_id3151073\n"
+"help.text"
+msgid "Result"
+msgstr ""
+
+#. HoAjw
+#: 12090102.xhp
+msgctxt ""
+"12090102.xhp\n"
+"par_id3155417\n"
+"help.text"
+msgid "Specify the settings for displaying the results of the pivot table."
+msgstr ""
+
+#. cYVLQ
+#: 12090102.xhp
+msgctxt ""
+"12090102.xhp\n"
+"hd_id0509200913025625\n"
+"help.text"
+msgid "Selection from"
+msgstr ""
+
+#. hU947
+#: 12090102.xhp
+msgctxt ""
+"12090102.xhp\n"
+"par_id0509200913025615\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select the area that contains the data for the current pivot table.</ahelp>"
+msgstr ""
+
+#. gJbqb
+#: 12090102.xhp
+msgctxt ""
+"12090102.xhp\n"
+"hd_id3155603\n"
+"help.text"
+msgid "Results to"
+msgstr ""
+
+#. cAtQY
+#: 12090102.xhp
+msgctxt ""
+"12090102.xhp\n"
+"par_id3153838\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 ""
+
+#. ahBd9
+#: 12090102.xhp
+msgctxt ""
+"12090102.xhp\n"
+"par_id3155961\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 ""
+
+#. RE6UY
+#: 12090102.xhp
+msgctxt ""
+"12090102.xhp\n"
+"hd_id3147364\n"
+"help.text"
+msgid "Ignore empty rows"
+msgstr ""
+
+#. NqVFr
+#: 12090102.xhp
+msgctxt ""
+"12090102.xhp\n"
+"par_id3154022\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/pivottablelayoutdialog/check-ignore-empty-rows\">Ignores empty fields in the data source.</ahelp>"
+msgstr ""
+
+#. YtUZx
+#: 12090102.xhp
+msgctxt ""
+"12090102.xhp\n"
+"hd_id3155114\n"
+"help.text"
+msgid "Identify categories"
+msgstr ""
+
+#. 9RtuT
+#: 12090102.xhp
+msgctxt ""
+"12090102.xhp\n"
+"par_id3145257\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 ""
+
+#. As9Db
+#: 12090102.xhp
+msgctxt ""
+"12090102.xhp\n"
+"hd_id3149207\n"
+"help.text"
+msgid "Total columns"
+msgstr ""
+
+#. n5fSF
+#: 12090102.xhp
+msgctxt ""
+"12090102.xhp\n"
+"par_id3166426\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 ""
+
+#. KpRF2
+#: 12090102.xhp
+msgctxt ""
+"12090102.xhp\n"
+"hd_id3150364\n"
+"help.text"
+msgid "Total rows"
+msgstr ""
+
+#. QazUm
+#: 12090102.xhp
+msgctxt ""
+"12090102.xhp\n"
+"par_id3152583\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 ""
+
+#. D5zQr
+#: 12090102.xhp
+msgctxt ""
+"12090102.xhp\n"
+"par_idN10897\n"
+"help.text"
+msgid "Add filter"
+msgstr ""
+
+#. isFp2
+#: 12090102.xhp
+msgctxt ""
+"12090102.xhp\n"
+"par_idN1089B\n"
+"help.text"
+msgid "<ahelp hid=\".\">Adds a Filter button to pivot tables that are based on spreadsheet data.</ahelp>"
+msgstr ""
+
+#. nG8PA
+#: 12090102.xhp
+msgctxt ""
+"12090102.xhp\n"
+"par_idN108B2\n"
+"help.text"
+msgid "<ahelp hid=\".\">Opens the Filter dialog.</ahelp>"
+msgstr ""
+
+#. ky7dW
+#: 12090102.xhp
+msgctxt ""
+"12090102.xhp\n"
+"par_idN108C9\n"
+"help.text"
+msgid "Enable drill to details"
+msgstr ""
+
+#. ToMtU
+#: 12090102.xhp
+msgctxt ""
+"12090102.xhp\n"
+"par_idN108CD\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select this check box and double-click an item label in the table to show or hide details for the item. Clear this check box and double-click a cell in the table to edit the contents of the cell.</ahelp>"
+msgstr ""
+
+#. 4apSj
+#: 12090102.xhp
+msgctxt ""
+"12090102.xhp\n"
+"par_idN108DC\n"
+"help.text"
+msgid "To examine details inside a pivot table"
+msgstr ""
+
+#. ErMno
+#: 12090102.xhp
+msgctxt ""
+"12090102.xhp\n"
+"par_idN108E0\n"
+"help.text"
+msgid "Do one of the following:"
+msgstr ""
+
+#. 4BfPW
+#: 12090102.xhp
+msgctxt ""
+"12090102.xhp\n"
+"par_idN108E6\n"
+"help.text"
+msgid "Select a range of cells and choose <emph>Data - Group and Outline - Show Details</emph>."
+msgstr ""
+
+#. mogzB
+#: 12090102.xhp
+msgctxt ""
+"12090102.xhp\n"
+"par_idN108EE\n"
+"help.text"
+msgid "Double-click a field in the table."
+msgstr ""
+
+#. CaxVm
+#: 12090102.xhp
+msgctxt ""
+"12090102.xhp\n"
+"par_idN108F1\n"
+"help.text"
+msgid "If you double-click a field which has adjacent fields at the same level, the <emph>Show Detail</emph> dialog opens:"
+msgstr ""
+
+#. qExkE
+#: 12090102.xhp
+msgctxt ""
+"12090102.xhp\n"
+"par_idN10900\n"
+"help.text"
+msgid "Show Detail"
+msgstr ""
+
+#. AJGDj
+#: 12090102.xhp
+msgctxt ""
+"12090102.xhp\n"
+"par_idN10904\n"
+"help.text"
+msgid "<ahelp hid=\".\">Choose the field that you want to view the details for.</ahelp>"
+msgstr ""
+
+#. Eegc6
+#: 12090102.xhp
+msgctxt ""
+"12090102.xhp\n"
+"par_id3149817\n"
+"help.text"
+msgid "<link href=\"text/scalc/04/01020000.xhp\" name=\"Pivot table shortcut keys\">Pivot table shortcut keys</link>"
+msgstr ""
+
+#. DrrqN
+#: 12090103.xhp
+msgctxt ""
+"12090103.xhp\n"
+"tit\n"
+"help.text"
+msgid "Filter"
+msgstr ""
+
+#. 2PVA2
+#: 12090103.xhp
+msgctxt ""
+"12090103.xhp\n"
+"hd_id3153970\n"
+"help.text"
+msgid "Filter"
+msgstr ""
+
+#. 5xnUF
+#: 12090103.xhp
+msgctxt ""
+"12090103.xhp\n"
+"par_id3150448\n"
+"help.text"
+msgid "Set the filtering options for the data."
+msgstr ""
+
+#. 43t7P
+#: 12090103.xhp
+msgctxt ""
+"12090103.xhp\n"
+"hd_id3151043\n"
+"help.text"
+msgid "Filter Criteria"
+msgstr ""
+
+#. ECYvP
+#: 12090103.xhp
+msgctxt ""
+"12090103.xhp\n"
+"par_id3150440\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 ""
+
+#. WARfE
+#: 12090103.xhp
+msgctxt ""
+"12090103.xhp\n"
+"hd_id3159153\n"
+"help.text"
+msgid "Operator"
+msgstr ""
+
+#. hEcPz
+#: 12090103.xhp
+msgctxt ""
+"12090103.xhp\n"
+"par_id3153093\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select a logical operator for the filter.</ahelp>"
+msgstr ""
+
+#. CLB8B
+#: 12090103.xhp
+msgctxt ""
+"12090103.xhp\n"
+"hd_id3152462\n"
+"help.text"
+msgid "Field name"
+msgstr ""
+
+#. EhMK4
+#: 12090103.xhp
+msgctxt ""
+"12090103.xhp\n"
+"par_id3155306\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select the field that you want to use in the filter. If field names are not available, the column labels are listed.</ahelp>"
+msgstr ""
+
+#. DfMBq
+#: 12090103.xhp
+msgctxt ""
+"12090103.xhp\n"
+"hd_id3148575\n"
+"help.text"
+msgid "Condition"
+msgstr ""
+
+#. iqh9A
+#: 12090103.xhp
+msgctxt ""
+"12090103.xhp\n"
+"par_id3147394\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select an operator to compare the <emph>Field name</emph> and <emph>Value</emph> entries.</ahelp>"
+msgstr ""
+
+#. H3B8E
+#: 12090103.xhp
+msgctxt ""
+"12090103.xhp\n"
+"par_id3144764\n"
+"help.text"
+msgid "The following operators are available:"
+msgstr ""
+
+#. Q2mMG
+#: 12090103.xhp
+msgctxt ""
+"12090103.xhp\n"
+"par_id3153415\n"
+"help.text"
+msgid "<emph>Conditions:</emph>"
+msgstr ""
+
+#. DyfDB
+#: 12090103.xhp
+msgctxt ""
+"12090103.xhp\n"
+"par_id3150324\n"
+"help.text"
+msgid "="
+msgstr ""
+
+#. n65o9
+#: 12090103.xhp
+msgctxt ""
+"12090103.xhp\n"
+"par_id3153714\n"
+"help.text"
+msgid "equal"
+msgstr ""
+
+#. 7T9Bk
+#: 12090103.xhp
+msgctxt ""
+"12090103.xhp\n"
+"par_id3154254\n"
+"help.text"
+msgid "<"
+msgstr ""
+
+#. AojDZ
+#: 12090103.xhp
+msgctxt ""
+"12090103.xhp\n"
+"par_id3154703\n"
+"help.text"
+msgid "less than"
+msgstr ""
+
+#. aeBxG
+#: 12090103.xhp
+msgctxt ""
+"12090103.xhp\n"
+"par_id3155335\n"
+"help.text"
+msgid ">"
+msgstr ""
+
+#. eVt7E
+#: 12090103.xhp
+msgctxt ""
+"12090103.xhp\n"
+"par_id3147003\n"
+"help.text"
+msgid "greater than"
+msgstr ""
+
+#. GSLpq
+#: 12090103.xhp
+msgctxt ""
+"12090103.xhp\n"
+"par_id3153270\n"
+"help.text"
+msgid "<="
+msgstr ""
+
+#. zroED
+#: 12090103.xhp
+msgctxt ""
+"12090103.xhp\n"
+"par_id3145257\n"
+"help.text"
+msgid "less than or equal to"
+msgstr ""
+
+#. yDqwS
+#: 12090103.xhp
+msgctxt ""
+"12090103.xhp\n"
+"par_id3145134\n"
+"help.text"
+msgid ">="
+msgstr ""
+
+#. GKAJo
+#: 12090103.xhp
+msgctxt ""
+"12090103.xhp\n"
+"par_id3151214\n"
+"help.text"
+msgid "greater than or equal to"
+msgstr ""
+
+#. 9Lqcg
+#: 12090103.xhp
+msgctxt ""
+"12090103.xhp\n"
+"par_id3150345\n"
+"help.text"
+msgid "<>"
+msgstr ""
+
+#. YGJBJ
+#: 12090103.xhp
+msgctxt ""
+"12090103.xhp\n"
+"par_id3159101\n"
+"help.text"
+msgid "not equal to"
+msgstr ""
+
+#. KpYhg
+#: 12090103.xhp
+msgctxt ""
+"12090103.xhp\n"
+"hd_id3150886\n"
+"help.text"
+msgid "Value"
+msgstr ""
+
+#. BJGDo
+#: 12090103.xhp
+msgctxt ""
+"12090103.xhp\n"
+"par_id3155506\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select the value that you want to compare to the selected field.</ahelp>"
+msgstr ""
+
+#. vhBAS
+#: 12090103.xhp
+msgctxt ""
+"12090103.xhp\n"
+"hd_id3146980\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/12090104.xhp\" name=\"Options\">Options</link>"
+msgstr ""
+
+#. HwV5Y
+#: 12090104.xhp
+msgctxt ""
+"12090104.xhp\n"
+"tit\n"
+"help.text"
+msgid "Options"
+msgstr ""
+
+#. CZwGy
+#: 12090104.xhp
+msgctxt ""
+"12090104.xhp\n"
+"hd_id3149119\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/12090104.xhp\" name=\"Options\">Options</link>"
+msgstr ""
+
+#. GAiCA
+#: 12090104.xhp
+msgctxt ""
+"12090104.xhp\n"
+"par_id3147102\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 ""
+
+#. huAkj
+#: 12090104.xhp
+msgctxt ""
+"12090104.xhp\n"
+"hd_id3147008\n"
+"help.text"
+msgid "Options"
+msgstr ""
+
+#. WeRpj
+#: 12090104.xhp
+msgctxt ""
+"12090104.xhp\n"
+"hd_id3153662\n"
+"help.text"
+msgid "Case sensitive"
+msgstr ""
+
+#. fiseB
+#: 12090104.xhp
+msgctxt ""
+"12090104.xhp\n"
+"par_id3145673\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"visible\">Distinguishes between uppercase and lowercase letters.</ahelp>"
+msgstr ""
+
+#. zNDCJ
+#: 12090104.xhp
+msgctxt ""
+"12090104.xhp\n"
+"hd_id3156327\n"
+"help.text"
+msgid "Regular Expression"
+msgstr ""
+
+#. tfMqw
+#: 12090104.xhp
+msgctxt ""
+"12090104.xhp\n"
+"par_id3151245\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"visible\">Allows you to use regular expressions in the filter definition.</ahelp>"
+msgstr ""
+
+#. qracJ
+#: 12090104.xhp
+msgctxt ""
+"12090104.xhp\n"
+"par_id3147264\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 ""
+
+#. Mbq5A
+#: 12090104.xhp
+msgctxt ""
+"12090104.xhp\n"
+"hd_id3153379\n"
+"help.text"
+msgid "No duplications"
+msgstr ""
+
+#. bP5nV
+#: 12090104.xhp
+msgctxt ""
+"12090104.xhp\n"
+"par_id3154138\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"visible\">Excludes duplicate rows in the list of filtered data.</ahelp>"
+msgstr ""
+
+#. zfFX5
+#: 12090104.xhp
+msgctxt ""
+"12090104.xhp\n"
+"hd_id3156282\n"
+"help.text"
+msgid "Data range"
+msgstr ""
+
+#. YZcxD
+#: 12090104.xhp
+msgctxt ""
+"12090104.xhp\n"
+"par_id3150768\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"visible\">Displays the name of the filtered data range in the table.</ahelp>"
+msgstr ""
+
+#. dSBGn
+#: 12090104.xhp
+msgctxt ""
+"12090104.xhp\n"
+"par_id3154011\n"
+"help.text"
+msgid "<link href=\"text/shared/01/02100001.xhp\" name=\"List of Regular Expressions\">List of Regular Expressions</link>"
+msgstr ""
+
+#. CSzRe
+#: 12090105.xhp
+msgctxt ""
+"12090105.xhp\n"
+"tit\n"
+"help.text"
+msgid "Data field"
+msgstr ""
+
+#. ddkBW
+#: 12090105.xhp
+msgctxt ""
+"12090105.xhp\n"
+"bm_id7292397\n"
+"help.text"
+msgid "<bookmark_value>calculating;pivot table</bookmark_value>"
+msgstr ""
+
+#. y9ZBT
+#: 12090105.xhp
+msgctxt ""
+"12090105.xhp\n"
+"hd_id3150871\n"
+"help.text"
+msgid "Data field"
+msgstr ""
+
+#. jxCzc
+#: 12090105.xhp
+msgctxt ""
+"12090105.xhp\n"
+"par_id3154124\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 ""
+
+#. cW4qx
+#: 12090105.xhp
+msgctxt ""
+"12090105.xhp\n"
+"hd_id3152596\n"
+"help.text"
+msgid "Subtotals"
+msgstr ""
+
+#. AwY8j
+#: 12090105.xhp
+msgctxt ""
+"12090105.xhp\n"
+"par_id3151113\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/pivotfielddialog/PivotFieldDialog\">Specify the subtotals that you want to calculate.</ahelp>"
+msgstr ""
+
+#. 7qYLt
+#: 12090105.xhp
+msgctxt ""
+"12090105.xhp\n"
+"hd_id3145366\n"
+"help.text"
+msgid "None"
+msgstr ""
+
+#. eqep7
+#: 12090105.xhp
+msgctxt ""
+"12090105.xhp\n"
+"par_id3152576\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/pivotfielddialog/none\">Does not calculate subtotals.</ahelp>"
+msgstr ""
+
+#. 53F6w
+#: 12090105.xhp
+msgctxt ""
+"12090105.xhp\n"
+"hd_id3154012\n"
+"help.text"
+msgid "Automatic"
+msgstr ""
+
+#. 8NbJi
+#: 12090105.xhp
+msgctxt ""
+"12090105.xhp\n"
+"par_id3155856\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/pivotfielddialog/auto\">Automatically calculates subtotals.</ahelp>"
+msgstr ""
+
+#. FLUsK
+#: 12090105.xhp
+msgctxt ""
+"12090105.xhp\n"
+"hd_id3155411\n"
+"help.text"
+msgid "User-defined"
+msgstr ""
+
+#. Bibf2
+#: 12090105.xhp
+msgctxt ""
+"12090105.xhp\n"
+"par_id3149581\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 ""
+
+#. B9zjQ
+#: 12090105.xhp
+msgctxt ""
+"12090105.xhp\n"
+"hd_id3147124\n"
+"help.text"
+msgid "Function"
+msgstr ""
+
+#. 6nJnF
+#: 12090105.xhp
+msgctxt ""
+"12090105.xhp\n"
+"par_id3154490\n"
+"help.text"
+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 ""
+
+#. GyWi8
+#: 12090105.xhp
+msgctxt ""
+"12090105.xhp\n"
+"hd_id3154944\n"
+"help.text"
+msgid "Show items without data"
+msgstr ""
+
+#. 2pAzm
+#: 12090105.xhp
+msgctxt ""
+"12090105.xhp\n"
+"par_id3149403\n"
+"help.text"
+msgid "<ahelp hid=\".\">Includes empty columns and rows in the results table.</ahelp>"
+msgstr ""
+
+#. KYHnw
+#: 12090105.xhp
+msgctxt ""
+"12090105.xhp\n"
+"hd_id3149122\n"
+"help.text"
+msgid "Name:"
+msgstr ""
+
+#. BZkag
+#: 12090105.xhp
+msgctxt ""
+"12090105.xhp\n"
+"par_id3150749\n"
+"help.text"
+msgid "Lists the name of the selected data field."
+msgstr ""
+
+#. FB8Cg
+#: 12090105.xhp
+msgctxt ""
+"12090105.xhp\n"
+"par_idN106EC\n"
+"help.text"
+msgid "More"
+msgstr ""
+
+#. ZU8Ck
+#: 12090105.xhp
+msgctxt ""
+"12090105.xhp\n"
+"par_idN106F0\n"
+"help.text"
+msgid "<ahelp hid=\".\">Expands or reduces the dialog. The <emph>More</emph> button is visible for data fields only.</ahelp>"
+msgstr ""
+
+#. z6EgA
+#: 12090105.xhp
+msgctxt ""
+"12090105.xhp\n"
+"par_idN106F3\n"
+"help.text"
+msgid "Options"
+msgstr ""
+
+#. 9SdDd
+#: 12090105.xhp
+msgctxt ""
+"12090105.xhp\n"
+"par_idN106F7\n"
+"help.text"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/scalc/01/12090106.xhp\">Data Field Options</link> dialog. The <emph>Options</emph> button is visible for filters and column or row fields only.</ahelp>"
+msgstr ""
+
+#. pTDtv
+#: 12090105.xhp
+msgctxt ""
+"12090105.xhp\n"
+"par_idN10708\n"
+"help.text"
+msgid "If the dialog is expanded by the <emph>More</emph> button, the following items are added to the dialog:"
+msgstr ""
+
+#. FQRpT
+#: 12090105.xhp
+msgctxt ""
+"12090105.xhp\n"
+"par_idN1070B\n"
+"help.text"
+msgid "Displayed value"
+msgstr ""
+
+#. gRvzK
+#: 12090105.xhp
+msgctxt ""
+"12090105.xhp\n"
+"par_idN1070F\n"
+"help.text"
+msgid "<ahelp hid=\".\">For each data field, you can select the type of display.</ahelp> For some types you can select additional information for a base field and a base item."
+msgstr ""
+
+#. hbGoA
+#: 12090105.xhp
+msgctxt ""
+"12090105.xhp\n"
+"par_idN10712\n"
+"help.text"
+msgid "Type"
+msgstr ""
+
+#. QbxFg
+#: 12090105.xhp
+msgctxt ""
+"12090105.xhp\n"
+"par_idN10716\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/datafielddialog/type\">Select the type of calculating of the displayed value for the data field.</ahelp>"
+msgstr ""
+
+#. YVmxa
+#: 12090105.xhp
+msgctxt ""
+"12090105.xhp\n"
+"par_idN10724\n"
+"help.text"
+msgid "Type"
+msgstr ""
+
+#. KDdEc
+#: 12090105.xhp
+msgctxt ""
+"12090105.xhp\n"
+"par_idN1072A\n"
+"help.text"
+msgid "Displayed value"
+msgstr ""
+
+#. EEKBN
+#: 12090105.xhp
+msgctxt ""
+"12090105.xhp\n"
+"par_idN10731\n"
+"help.text"
+msgid "Normal"
+msgstr ""
+
+#. EG2GU
+#: 12090105.xhp
+msgctxt ""
+"12090105.xhp\n"
+"par_idN10737\n"
+"help.text"
+msgid "Results are shown unchanged"
+msgstr ""
+
+#. YjZhA
+#: 12090105.xhp
+msgctxt ""
+"12090105.xhp\n"
+"par_idN1073E\n"
+"help.text"
+msgid "Difference from"
+msgstr ""
+
+#. 9aYDp
+#: 12090105.xhp
+msgctxt ""
+"12090105.xhp\n"
+"par_idN10744\n"
+"help.text"
+msgid "From each result, its reference value (see below) is subtracted, and the difference is shown. Totals outside of the base field are shown as empty results."
+msgstr ""
+
+#. UYiPU
+#: 12090105.xhp
+msgctxt ""
+"12090105.xhp\n"
+"par_idN10747\n"
+"help.text"
+msgid "<emph>Named item</emph>"
+msgstr ""
+
+#. RNBV5
+#: 12090105.xhp
+msgctxt ""
+"12090105.xhp\n"
+"par_idN1074C\n"
+"help.text"
+msgid "If a base item name is specified, the reference value for a combination of field items is the result where the item in the base field is replaced by the specified base item."
+msgstr ""
+
+#. KNpxB
+#: 12090105.xhp
+msgctxt ""
+"12090105.xhp\n"
+"par_idN1074F\n"
+"help.text"
+msgid "<emph>Previous item or Next item</emph>"
+msgstr ""
+
+#. btRFU
+#: 12090105.xhp
+msgctxt ""
+"12090105.xhp\n"
+"par_idN10754\n"
+"help.text"
+msgid "If \"previous item\" or \"next item\" is specified as the base item, the reference value is the result for the next visible member of the base field, in the base field's sort order."
+msgstr ""
+
+#. z3mAJ
+#: 12090105.xhp
+msgctxt ""
+"12090105.xhp\n"
+"par_idN1075B\n"
+"help.text"
+msgid "% Of"
+msgstr ""
+
+#. RDSXy
+#: 12090105.xhp
+msgctxt ""
+"12090105.xhp\n"
+"par_idN10761\n"
+"help.text"
+msgid "Each result is divided by its reference value. The reference value is determined in the same way as for \"Difference from\". Totals outside of the base field are shown as empty results."
+msgstr ""
+
+#. XH2hx
+#: 12090105.xhp
+msgctxt ""
+"12090105.xhp\n"
+"par_idN1076A\n"
+"help.text"
+msgid "% Difference from"
+msgstr ""
+
+#. hJ88n
+#: 12090105.xhp
+msgctxt ""
+"12090105.xhp\n"
+"par_idN10770\n"
+"help.text"
+msgid "From each result, its reference value is subtracted, and the difference is divided by the reference value. The reference value is determined in the same way as for \"Difference from\". Totals outside of the base field are shown as empty results."
+msgstr ""
+
+#. nQLwe
+#: 12090105.xhp
+msgctxt ""
+"12090105.xhp\n"
+"par_idN10777\n"
+"help.text"
+msgid "Running total in"
+msgstr ""
+
+#. yVMiZ
+#: 12090105.xhp
+msgctxt ""
+"12090105.xhp\n"
+"par_idN1077D\n"
+"help.text"
+msgid "Each result is added to the sum of the results for preceding items in the base field, in the base field's sort order, and the total sum is shown."
+msgstr ""
+
+#. 6suFA
+#: 12090105.xhp
+msgctxt ""
+"12090105.xhp\n"
+"par_idN10780\n"
+"help.text"
+msgid "Results are always summed, even if a different summary function was used to get each result."
+msgstr ""
+
+#. 8tktw
+#: 12090105.xhp
+msgctxt ""
+"12090105.xhp\n"
+"par_idN10787\n"
+"help.text"
+msgid "% of row"
+msgstr ""
+
+#. ACFRr
+#: 12090105.xhp
+msgctxt ""
+"12090105.xhp\n"
+"par_idN1078D\n"
+"help.text"
+msgid "Each result is divided by the total result for its row in the pivot table. If there are several data fields, the total for the result's data field is used. If there are subtotals with manually selected summary functions, the total with the data field's summary function is still used."
+msgstr ""
+
+#. uu4sy
+#: 12090105.xhp
+msgctxt ""
+"12090105.xhp\n"
+"par_idN10794\n"
+"help.text"
+msgid "% of column"
+msgstr ""
+
+#. Hg6TQ
+#: 12090105.xhp
+msgctxt ""
+"12090105.xhp\n"
+"par_idN1079A\n"
+"help.text"
+msgid "Same as \"% of row\", but the total for the result's column is used."
+msgstr ""
+
+#. oxTAn
+#: 12090105.xhp
+msgctxt ""
+"12090105.xhp\n"
+"par_idN107A1\n"
+"help.text"
+msgid "% of total"
+msgstr ""
+
+#. CZDAT
+#: 12090105.xhp
+msgctxt ""
+"12090105.xhp\n"
+"par_idN107A7\n"
+"help.text"
+msgid "Same as \"% of row\", but the grand total for the result's data field is used."
+msgstr ""
+
+#. CcmCV
+#: 12090105.xhp
+msgctxt ""
+"12090105.xhp\n"
+"par_idN107AE\n"
+"help.text"
+msgid "Index"
+msgstr ""
+
+#. 9xDeY
+#: 12090105.xhp
+msgctxt ""
+"12090105.xhp\n"
+"par_idN107B4\n"
+"help.text"
+msgid "The row and column totals and the grand total, following the same rules as above, are used to calculate the following expression:"
+msgstr ""
+
+#. 4i2FD
+#: 12090105.xhp
+msgctxt ""
+"12090105.xhp\n"
+"par_idN107B7\n"
+"help.text"
+msgid "( original result * grand total ) / ( row total * column total )"
+msgstr ""
+
+#. Kfgj3
+#: 12090105.xhp
+msgctxt ""
+"12090105.xhp\n"
+"par_idN107BA\n"
+"help.text"
+msgid "Base field"
+msgstr ""
+
+#. tk2xE
+#: 12090105.xhp
+msgctxt ""
+"12090105.xhp\n"
+"par_idN107BE\n"
+"help.text"
+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 ""
+
+#. hEziA
+#: 12090105.xhp
+msgctxt ""
+"12090105.xhp\n"
+"par_idN107C1\n"
+"help.text"
+msgid "Base item"
+msgstr ""
+
+#. bUVn6
+#: 12090105.xhp
+msgctxt ""
+"12090105.xhp\n"
+"par_idN107C5\n"
+"help.text"
+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 ""
+
+#. 5w7xX
+#: 12090106.xhp
+msgctxt ""
+"12090106.xhp\n"
+"tit\n"
+"help.text"
+msgid "Data Field Options"
+msgstr ""
+
+#. nfmEB
+#: 12090106.xhp
+msgctxt ""
+"12090106.xhp\n"
+"bm_id711386\n"
+"help.text"
+msgid "<bookmark_value>hiding;data fields, from calculations in pivot table</bookmark_value><bookmark_value>display options in pivot table</bookmark_value><bookmark_value>sorting;options in pivot table</bookmark_value><bookmark_value>data field options for pivot table</bookmark_value>"
+msgstr ""
+
+#. rZueD
+#: 12090106.xhp
+msgctxt ""
+"12090106.xhp\n"
+"par_idN10542\n"
+"help.text"
+msgid "Data Field Options"
+msgstr ""
+
+#. MeeX5
+#: 12090106.xhp
+msgctxt ""
+"12090106.xhp\n"
+"par_idN10546\n"
+"help.text"
+msgid "You can specify additional options for column, row, and page data fields in the <link href=\"text/scalc/01/12090105.xhp\">pivot table</link>."
+msgstr ""
+
+#. ATBoM
+#: 12090106.xhp
+msgctxt ""
+"12090106.xhp\n"
+"par_idN10557\n"
+"help.text"
+msgid "Sort by"
+msgstr ""
+
+#. mHJkA
+#: 12090106.xhp
+msgctxt ""
+"12090106.xhp\n"
+"par_idN1055B\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/sortby\">Select the data field that you want to sort columns or rows by.</ahelp>"
+msgstr ""
+
+#. BXKZ7
+#: 12090106.xhp
+msgctxt ""
+"12090106.xhp\n"
+"par_idN1055E\n"
+"help.text"
+msgid "Ascending"
+msgstr ""
+
+#. jNcNE
+#: 12090106.xhp
+msgctxt ""
+"12090106.xhp\n"
+"par_idN10562\n"
+"help.text"
+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 ""
+
+#. CjwdF
+#: 12090106.xhp
+msgctxt ""
+"12090106.xhp\n"
+"par_idN10565\n"
+"help.text"
+msgid "Descending"
+msgstr ""
+
+#. NFuB8
+#: 12090106.xhp
+msgctxt ""
+"12090106.xhp\n"
+"par_idN10569\n"
+"help.text"
+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 ""
+
+#. 8Q5nS
+#: 12090106.xhp
+msgctxt ""
+"12090106.xhp\n"
+"par_idN1056C\n"
+"help.text"
+msgid "Manual"
+msgstr ""
+
+#. nvxFt
+#: 12090106.xhp
+msgctxt ""
+"12090106.xhp\n"
+"par_idN10570\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/manual\">Sorts values alphabetically.</ahelp>"
+msgstr ""
+
+#. EBKgh
+#: 12090106.xhp
+msgctxt ""
+"12090106.xhp\n"
+"par_idN10585\n"
+"help.text"
+msgid "Display options"
+msgstr ""
+
+#. f4gbc
+#: 12090106.xhp
+msgctxt ""
+"12090106.xhp\n"
+"par_idN10589\n"
+"help.text"
+msgid "You can specify the display options for all row fields except for the last, innermost row field."
+msgstr ""
+
+#. RY5SV
+#: 12090106.xhp
+msgctxt ""
+"12090106.xhp\n"
+"par_idN1058C\n"
+"help.text"
+msgid "Layout"
+msgstr ""
+
+#. 4fZs2
+#: 12090106.xhp
+msgctxt ""
+"12090106.xhp\n"
+"par_idN10590\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/layout\">Select the layout mode for the field in the list box.</ahelp>"
+msgstr ""
+
+#. fCEFC
+#: 12090106.xhp
+msgctxt ""
+"12090106.xhp\n"
+"par_idN10593\n"
+"help.text"
+msgid "Empty line after each item"
+msgstr ""
+
+#. k2Y3R
+#: 12090106.xhp
+msgctxt ""
+"12090106.xhp\n"
+"par_idN10597\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/emptyline\">Adds an empty row after the data for each item in the pivot table.</ahelp>"
+msgstr ""
+
+#. CoAEB
+#: 12090106.xhp
+msgctxt ""
+"12090106.xhp\n"
+"par_idN1059A\n"
+"help.text"
+msgid "Show automatically"
+msgstr ""
+
+#. LRNWN
+#: 12090106.xhp
+msgctxt ""
+"12090106.xhp\n"
+"par_idN1059E\n"
+"help.text"
+msgid "Displays the top or bottom nn items when you sort by a specified field."
+msgstr ""
+
+#. 9BvAe
+#: 12090106.xhp
+msgctxt ""
+"12090106.xhp\n"
+"par_idN105A1\n"
+"help.text"
+msgid "Show"
+msgstr ""
+
+#. fb5NP
+#: 12090106.xhp
+msgctxt ""
+"12090106.xhp\n"
+"par_idN105A5\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/show\">Turns on the automatic show feature.</ahelp>"
+msgstr ""
+
+#. Dtgpx
+#: 12090106.xhp
+msgctxt ""
+"12090106.xhp\n"
+"par_idN105A8\n"
+"help.text"
+msgid "items"
+msgstr ""
+
+#. tRYik
+#: 12090106.xhp
+msgctxt ""
+"12090106.xhp\n"
+"par_idN105AC\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/items\">Enter the maximum number of items that you want to show automatically.</ahelp>"
+msgstr ""
+
+#. XmB6D
+#: 12090106.xhp
+msgctxt ""
+"12090106.xhp\n"
+"par_idN105AF\n"
+"help.text"
+msgid "From"
+msgstr ""
+
+#. hgp3D
+#: 12090106.xhp
+msgctxt ""
+"12090106.xhp\n"
+"par_idN105B3\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/from\">Shows the top or bottom items in the specified sort order.</ahelp>"
+msgstr ""
+
+#. DEqUx
+#: 12090106.xhp
+msgctxt ""
+"12090106.xhp\n"
+"par_idN105B6\n"
+"help.text"
+msgid "Using field"
+msgstr ""
+
+#. ARqoN
+#: 12090106.xhp
+msgctxt ""
+"12090106.xhp\n"
+"par_idN105BA\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/using\">Select the data field that you want to sort the data by.</ahelp>"
+msgstr ""
+
+#. AcXgp
+#: 12090106.xhp
+msgctxt ""
+"12090106.xhp\n"
+"par_idN105BD\n"
+"help.text"
+msgid "Hide items"
+msgstr ""
+
+#. FJyGB
+#: 12090106.xhp
+msgctxt ""
+"12090106.xhp\n"
+"par_idN105C1\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/hideitems\">Select the items that you want to hide from the calculations.</ahelp>"
+msgstr ""
+
+#. ZWfrR
+#: 12090106.xhp
+msgctxt ""
+"12090106.xhp\n"
+"par_idN105C4\n"
+"help.text"
+msgid "Hierarchy"
+msgstr ""
+
+#. MvCbX
+#: 12090106.xhp
+msgctxt ""
+"12090106.xhp\n"
+"par_idN105C8\n"
+"help.text"
+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 ""
+
+#. FMiU9
+#: 12090106.xhp
+msgctxt ""
+"12090106.xhp\n"
+"par_id681598453957935\n"
+"help.text"
+msgid "Calc does not provide multiple hierarchies for a single field and so this option is normally grayed. If you use a pivot table data source extension, that extension could define multiple hierarchies for some fields and then the option could become available. See the documentation supplied with that extension for more details."
+msgstr ""
+
+#. B9FE5
+#: 12090200.xhp
+msgctxt ""
+"12090200.xhp\n"
+"tit\n"
+"help.text"
+msgid "Refresh"
+msgstr ""
+
+#. TDMKo
+#: 12090200.xhp
+msgctxt ""
+"12090200.xhp\n"
+"hd_id3151385\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/12090200.xhp\" name=\"Refresh\">Refresh</link>"
+msgstr ""
+
+#. To7EA
+#: 12090200.xhp
+msgctxt ""
+"12090200.xhp\n"
+"par_id3149456\n"
+"help.text"
+msgid "<ahelp hid=\".uno:RecalcPivotTable\">Updates the pivot table.</ahelp>"
+msgstr ""
+
+#. YCBVE
+#: 12090200.xhp
+msgctxt ""
+"12090200.xhp\n"
+"par_id3150400\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 ""
+
+#. JKAAs
+#: 12090300.xhp
+msgctxt ""
+"12090300.xhp\n"
+"tit\n"
+"help.text"
+msgid "Delete"
+msgstr ""
+
+#. g8zEj
+#: 12090300.xhp
+msgctxt ""
+"12090300.xhp\n"
+"hd_id3150276\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/12090300.xhp\" name=\"Delete\">Delete</link>"
+msgstr ""
+
+#. YuSAB
+#: 12090300.xhp
+msgctxt ""
+"12090300.xhp\n"
+"par_id3159400\n"
+"help.text"
+msgid "<ahelp hid=\".uno:DeletePivotTable\" visibility=\"visible\">Deletes the selected pivot table.</ahelp>"
+msgstr ""
+
+#. z8MGY
+#: 12090400.xhp
+msgctxt ""
+"12090400.xhp\n"
+"tit\n"
+"help.text"
+msgid "Grouping"
+msgstr ""
+
+#. ErD98
+#: 12090400.xhp
+msgctxt ""
+"12090400.xhp\n"
+"par_idN1054D\n"
+"help.text"
+msgid "Grouping"
+msgstr ""
+
+#. mgrFq
+#: 12090400.xhp
+msgctxt ""
+"12090400.xhp\n"
+"par_idN10551\n"
+"help.text"
+msgid "Grouping pivot tables displays the <emph>Grouping</emph> dialog for either values or dates."
+msgstr ""
+
+#. UuxpF
+#: 12090400.xhp
+msgctxt ""
+"12090400.xhp\n"
+"par_idN10568\n"
+"help.text"
+msgid "Start"
+msgstr ""
+
+#. 5UuMB
+#: 12090400.xhp
+msgctxt ""
+"12090400.xhp\n"
+"par_idN1056C\n"
+"help.text"
+msgid "Specifies the start of the grouping."
+msgstr ""
+
+#. WPp2j
+#: 12090400.xhp
+msgctxt ""
+"12090400.xhp\n"
+"par_idN1056F\n"
+"help.text"
+msgid "Automatically"
+msgstr ""
+
+#. pAYD7
+#: 12090400.xhp
+msgctxt ""
+"12090400.xhp\n"
+"par_idN10573\n"
+"help.text"
+msgid "Specifies whether to start grouping at the smallest value."
+msgstr ""
+
+#. VVh9v
+#: 12090400.xhp
+msgctxt ""
+"12090400.xhp\n"
+"par_idN10576\n"
+"help.text"
+msgid "Manually at"
+msgstr ""
+
+#. qVP4Z
+#: 12090400.xhp
+msgctxt ""
+"12090400.xhp\n"
+"par_idN1057A\n"
+"help.text"
+msgid "Specifies whether to enter the start value for grouping yourself."
+msgstr ""
+
+#. BEFPa
+#: 12090400.xhp
+msgctxt ""
+"12090400.xhp\n"
+"par_idN1057D\n"
+"help.text"
+msgid "End"
+msgstr ""
+
+#. LCoAb
+#: 12090400.xhp
+msgctxt ""
+"12090400.xhp\n"
+"par_idN10581\n"
+"help.text"
+msgid "Specifies the end of the grouping."
+msgstr ""
+
+#. Kr9BA
+#: 12090400.xhp
+msgctxt ""
+"12090400.xhp\n"
+"par_idN10584\n"
+"help.text"
+msgid "Automatically"
+msgstr ""
+
+#. BW9PR
+#: 12090400.xhp
+msgctxt ""
+"12090400.xhp\n"
+"par_idN10588\n"
+"help.text"
+msgid "Specifies whether to end grouping at the largest value."
+msgstr ""
+
+#. akDPj
+#: 12090400.xhp
+msgctxt ""
+"12090400.xhp\n"
+"par_idN1058B\n"
+"help.text"
+msgid "Manually at"
+msgstr ""
+
+#. aXMdb
+#: 12090400.xhp
+msgctxt ""
+"12090400.xhp\n"
+"par_idN1058F\n"
+"help.text"
+msgid "Specifies whether to enter the end value for grouping yourself."
+msgstr ""
+
+#. h5kF4
+#: 12090400.xhp
+msgctxt ""
+"12090400.xhp\n"
+"par_idN10592\n"
+"help.text"
+msgid "Group by"
+msgstr ""
+
+#. pW3HW
+#: 12090400.xhp
+msgctxt ""
+"12090400.xhp\n"
+"par_idN10596\n"
+"help.text"
+msgid "Specifies the value range by which every group's limits are calculated."
+msgstr ""
+
+#. zjoAz
+#: 12090400.xhp
+msgctxt ""
+"12090400.xhp\n"
+"par_idN10599\n"
+"help.text"
+msgid "Number of days"
+msgstr ""
+
+#. fB7Xn
+#: 12090400.xhp
+msgctxt ""
+"12090400.xhp\n"
+"par_idN1059D\n"
+"help.text"
+msgid "In the case of grouping date values, specifies the number of days to group by."
+msgstr ""
+
+#. hTrSc
+#: 12090400.xhp
+msgctxt ""
+"12090400.xhp\n"
+"par_idN105A0\n"
+"help.text"
+msgid "Intervals"
+msgstr ""
+
+#. rNuqi
+#: 12090400.xhp
+msgctxt ""
+"12090400.xhp\n"
+"par_idN105A4\n"
+"help.text"
+msgid "In the case of grouping date values, specifies the intervals to group by."
+msgstr ""
+
+#. BHb4N
+#: 12100000.xhp
+msgctxt ""
+"12100000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Refresh Range"
+msgstr ""
+
+#. XEhmj
+#: 12100000.xhp
+msgctxt ""
+"12100000.xhp\n"
+"bm_id3153662\n"
+"help.text"
+msgid "<bookmark_value>database ranges; refreshing</bookmark_value>"
+msgstr ""
+
+#. AVePH
+#: 12100000.xhp
+msgctxt ""
+"12100000.xhp\n"
+"hd_id3153662\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/12100000.xhp\" name=\"Refresh Range\">Refresh Range</link>"
+msgstr ""
+
+#. fYiGb
+#: 12100000.xhp
+msgctxt ""
+"12100000.xhp\n"
+"par_id3153088\n"
+"help.text"
+msgid "<variable id=\"aktualisieren\"><ahelp hid=\".\">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 ""
+
+#. VRAR6
+#: 12120000.xhp
+msgctxt ""
+"12120000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Validity"
+msgstr ""
+
+#. ib9Du
+#: 12120000.xhp
+msgctxt ""
+"12120000.xhp\n"
+"hd_id3156347\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/12120000.xhp\" name=\"validity\">Validity</link>"
+msgstr ""
+
+#. EGFSj
+#: 12120000.xhp
+msgctxt ""
+"12120000.xhp\n"
+"par_id3153252\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 ""
+
+#. Goct2
+#: 12120000.xhp
+msgctxt ""
+"12120000.xhp\n"
+"par_idN105D1\n"
+"help.text"
+msgid "You can also insert a list box from the Controls toolbar and link the list box to a cell. This way you can specify the valid values on the <link href=\"text/shared/02/01170102.xhp\">Data</link> page of the list box properties window."
+msgstr ""
+
+#. 2NFCN
+#: 12120100.xhp
+msgctxt ""
+"12120100.xhp\n"
+"tit\n"
+"help.text"
+msgid "Criteria"
+msgstr ""
+
+#. ahLFq
+#: 12120100.xhp
+msgctxt ""
+"12120100.xhp\n"
+"bm_id1464278\n"
+"help.text"
+msgid "<bookmark_value>selection lists;validity</bookmark_value>"
+msgstr ""
+
+#. njjdG
+#: 12120100.xhp
+msgctxt ""
+"12120100.xhp\n"
+"hd_id3153032\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/12120100.xhp\" name=\"Criteria\">Criteria</link>"
+msgstr ""
+
+#. oJLj6
+#: 12120100.xhp
+msgctxt ""
+"12120100.xhp\n"
+"par_id3156327\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/validationcriteriapage/ValidationCriteriaPage\">Specify the validation rules for the selected cell(s).</ahelp>"
+msgstr ""
+
+#. kWDG3
+#: 12120100.xhp
+msgctxt ""
+"12120100.xhp\n"
+"par_id3155923\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 ""
+
+#. u2RaB
+#: 12120100.xhp
+msgctxt ""
+"12120100.xhp\n"
+"hd_id3153896\n"
+"help.text"
+msgid "Allow"
+msgstr ""
+
+#. zQDLx
+#: 12120100.xhp
+msgctxt ""
+"12120100.xhp\n"
+"par_id3150400\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/validationcriteriapage/allow\">Click a validation option for the selected cell(s).</ahelp>"
+msgstr ""
+
+#. C4cyQ
+#: 12120100.xhp
+msgctxt ""
+"12120100.xhp\n"
+"par_id3148797\n"
+"help.text"
+msgid "The following conditions are available:"
+msgstr ""
+
+#. SHRJH
+#: 12120100.xhp
+msgctxt ""
+"12120100.xhp\n"
+"par_id3150447\n"
+"help.text"
+msgid "Condition"
+msgstr ""
+
+#. jU7Vc
+#: 12120100.xhp
+msgctxt ""
+"12120100.xhp\n"
+"par_id3155854\n"
+"help.text"
+msgid "Effect"
+msgstr ""
+
+#. fb3Gx
+#: 12120100.xhp
+msgctxt ""
+"12120100.xhp\n"
+"par_id3153092\n"
+"help.text"
+msgid "All values"
+msgstr ""
+
+#. iEfjx
+#: 12120100.xhp
+msgctxt ""
+"12120100.xhp\n"
+"par_id3155411\n"
+"help.text"
+msgid "No limitation."
+msgstr ""
+
+#. GWkaF
+#: 12120100.xhp
+msgctxt ""
+"12120100.xhp\n"
+"par_id3147434\n"
+"help.text"
+msgid "Whole numbers"
+msgstr ""
+
+#. dT2EE
+#: 12120100.xhp
+msgctxt ""
+"12120100.xhp\n"
+"par_id3154319\n"
+"help.text"
+msgid "Only whole numbers corresponding to the condition."
+msgstr ""
+
+#. LwTU5
+#: 12120100.xhp
+msgctxt ""
+"12120100.xhp\n"
+"par_id3145802\n"
+"help.text"
+msgid "Decimal"
+msgstr ""
+
+#. EyC9i
+#: 12120100.xhp
+msgctxt ""
+"12120100.xhp\n"
+"par_id3153160\n"
+"help.text"
+msgid "All numbers corresponding to the condition."
+msgstr ""
+
+#. RA8ws
+#: 12120100.xhp
+msgctxt ""
+"12120100.xhp\n"
+"par_id3149377\n"
+"help.text"
+msgid "Date"
+msgstr ""
+
+#. KEYyq
+#: 12120100.xhp
+msgctxt ""
+"12120100.xhp\n"
+"par_id3150718\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 ""
+
+#. satjd
+#: 12120100.xhp
+msgctxt ""
+"12120100.xhp\n"
+"par_id3146969\n"
+"help.text"
+msgid "Time"
+msgstr ""
+
+#. wiBwp
+#: 12120100.xhp
+msgctxt ""
+"12120100.xhp\n"
+"par_id3155066\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 ""
+
+#. ZufmJ
+#: 12120100.xhp
+msgctxt ""
+"12120100.xhp\n"
+"par_idN106A0\n"
+"help.text"
+msgid "Cell range"
+msgstr ""
+
+#. FbXCC
+#: 12120100.xhp
+msgctxt ""
+"12120100.xhp\n"
+"par_idN106A5\n"
+"help.text"
+msgid "Allow only values that are given in a cell range. The cell range can be specified explicitly, or as a named database range, or as a named range. The range may consist of one column or one row of cells. If you specify a range of columns and rows, only the first column is used."
+msgstr ""
+
+#. Sh6bp
+#: 12120100.xhp
+msgctxt ""
+"12120100.xhp\n"
+"par_idN106AB\n"
+"help.text"
+msgid "List"
+msgstr ""
+
+#. AHcsu
+#: 12120100.xhp
+msgctxt ""
+"12120100.xhp\n"
+"par_idN106B0\n"
+"help.text"
+msgid "Allow only values or strings specified in a list. Strings and values can be mixed. Numbers evaluate to their value, so if you enter the number 1 in the list, the entry 100% is also valid."
+msgstr ""
+
+#. zEHGD
+#: 12120100.xhp
+msgctxt ""
+"12120100.xhp\n"
+"par_id221603980244052\n"
+"help.text"
+msgid "Only up to 255 characters are saved, when using Excel format."
+msgstr ""
+
+#. pfATZ
+#: 12120100.xhp
+msgctxt ""
+"12120100.xhp\n"
+"par_id3154756\n"
+"help.text"
+msgid "Text length"
+msgstr ""
+
+#. i5frz
+#: 12120100.xhp
+msgctxt ""
+"12120100.xhp\n"
+"par_id3147339\n"
+"help.text"
+msgid "Entries whose length corresponds to the condition."
+msgstr ""
+
+#. zEYdt
+#: 12120100.xhp
+msgctxt ""
+"12120100.xhp\n"
+"par_id551607384650484\n"
+"help.text"
+msgid "Custom"
+msgstr ""
+
+#. Eejrc
+#: 12120100.xhp
+msgctxt ""
+"12120100.xhp\n"
+"par_id101607384677959\n"
+"help.text"
+msgid "Only allow values that result in the formula entered in the <emph>Formula</emph> box to return <literal>TRUE</literal>, when the formula is calculated with the entered value. The formula can be any expression that evaluates to a boolean value of <literal>TRUE</literal> or <literal>FALSE</literal>, or returns a numerical value, where a nonzero value is interpreted as <literal>TRUE</literal> and <literal>0</literal> is interpreted as <literal>FALSE</literal>."
+msgstr ""
+
+#. LhCDS
+#: 12120100.xhp
+msgctxt ""
+"12120100.xhp\n"
+"par_id461607565255803\n"
+"help.text"
+msgid "Formulas can use relative referencing. For example, if cells <literal>A1:A4</literal> were selected, the cursor is in cell <literal>A1</literal> and <input>ISODD(A1)</input> is entered into the <emph>Formula</emph> box, then only odd numbers could be entered into cells <literal>A1</literal> through <literal>A4</literal>."
+msgstr ""
+
+#. apG3s
+#: 12120100.xhp
+msgctxt ""
+"12120100.xhp\n"
+"hd_id3154704\n"
+"help.text"
+msgid "Allow blank cells"
+msgstr ""
+
+#. kHDGe
+#: 12120100.xhp
+msgctxt ""
+"12120100.xhp\n"
+"par_id3153967\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 ""
+
+#. knPBu
+#: 12120100.xhp
+msgctxt ""
+"12120100.xhp\n"
+"par_idN10709\n"
+"help.text"
+msgid "Show selection list"
+msgstr ""
+
+#. X4mFD
+#: 12120100.xhp
+msgctxt ""
+"12120100.xhp\n"
+"par_idN1070D\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/validationcriteriapage/showlist\">Shows a list of all valid strings or values to select from. The list can also be opened by selecting the cell and pressing <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+D</keycode></caseinline><defaultinline><keycode>Ctrl+D</keycode></defaultinline></switchinline>.</ahelp>"
+msgstr ""
+
+#. AuAaR
+#: 12120100.xhp
+msgctxt ""
+"12120100.xhp\n"
+"par_idN10724\n"
+"help.text"
+msgid "Sort entries ascending"
+msgstr ""
+
+#. FcnYF
+#: 12120100.xhp
+msgctxt ""
+"12120100.xhp\n"
+"par_idN10728\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/validationcriteriapage/sortascend\">Sorts the selection list in ascending order and filters duplicates from the list. If not checked, the order from the data source is taken.</ahelp>"
+msgstr ""
+
+#. RxvGG
+#: 12120100.xhp
+msgctxt ""
+"12120100.xhp\n"
+"par_idN1073F\n"
+"help.text"
+msgid "Source"
+msgstr ""
+
+#. 5We25
+#: 12120100.xhp
+msgctxt ""
+"12120100.xhp\n"
+"par_idN10743\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/validationcriteriapage/min\">Enter the cell range that contains the valid values or text.</ahelp>"
+msgstr ""
+
+#. WDndP
+#: 12120100.xhp
+msgctxt ""
+"12120100.xhp\n"
+"par_idN1075A\n"
+"help.text"
+msgid "Entries"
+msgstr ""
+
+#. NqvV5
+#: 12120100.xhp
+msgctxt ""
+"12120100.xhp\n"
+"par_idN1075E\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/validationcriteriapage/minlist\">Enter the entries that will be valid values or text strings.</ahelp>"
+msgstr ""
+
+#. CBhCq
+#: 12120100.xhp
+msgctxt ""
+"12120100.xhp\n"
+"hd_id3163807\n"
+"help.text"
+msgid "Data"
+msgstr ""
+
+#. MNWEt
+#: 12120100.xhp
+msgctxt ""
+"12120100.xhp\n"
+"par_id3144502\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</emph>, or the <emph>Value</emph> input boxes appear."
+msgstr ""
+
+#. DTzua
+#: 12120100.xhp
+msgctxt ""
+"12120100.xhp\n"
+"hd_id3153782\n"
+"help.text"
+msgid "Value"
+msgstr ""
+
+#. XJbsF
+#: 12120100.xhp
+msgctxt ""
+"12120100.xhp\n"
+"par_id3153266\n"
+"help.text"
+msgid "Enter the value for the data validation option that you selected in the <emph>Allow </emph>box."
+msgstr ""
+
+#. BDMx5
+#: 12120100.xhp
+msgctxt ""
+"12120100.xhp\n"
+"hd_id3149814\n"
+"help.text"
+msgid "Minimum"
+msgstr ""
+
+#. 3DsgJ
+#: 12120100.xhp
+msgctxt ""
+"12120100.xhp\n"
+"par_id3153199\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 ""
+
+#. qjCBG
+#: 12120100.xhp
+msgctxt ""
+"12120100.xhp\n"
+"hd_id3149035\n"
+"help.text"
+msgid "Maximum"
+msgstr ""
+
+#. MxLDy
+#: 12120100.xhp
+msgctxt ""
+"12120100.xhp\n"
+"par_id3150089\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 ""
+
+#. FkrRA
+#: 12120200.xhp
+msgctxt ""
+"12120200.xhp\n"
+"tit\n"
+"help.text"
+msgid "Input Help"
+msgstr ""
+
+#. fqyeD
+#: 12120200.xhp
+msgctxt ""
+"12120200.xhp\n"
+"hd_id3156280\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/12120200.xhp\" name=\"Input Help\">Input Help</link>"
+msgstr ""
+
+#. dxbif
+#: 12120200.xhp
+msgctxt ""
+"12120200.xhp\n"
+"par_id3147229\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 ""
+
+#. sC8Xe
+#: 12120200.xhp
+msgctxt ""
+"12120200.xhp\n"
+"hd_id3146986\n"
+"help.text"
+msgid "Show input help when cell is selected"
+msgstr ""
+
+#. Nn8qs
+#: 12120200.xhp
+msgctxt ""
+"12120200.xhp\n"
+"par_id3153363\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 ""
+
+#. ve5GE
+#: 12120200.xhp
+msgctxt ""
+"12120200.xhp\n"
+"par_id3154730\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 ""
+
+#. MBGZm
+#: 12120200.xhp
+msgctxt ""
+"12120200.xhp\n"
+"hd_id3147394\n"
+"help.text"
+msgid "Contents"
+msgstr ""
+
+#. Mu4Yq
+#: 12120200.xhp
+msgctxt ""
+"12120200.xhp\n"
+"hd_id3149582\n"
+"help.text"
+msgid "Title"
+msgstr ""
+
+#. EsFGS
+#: 12120200.xhp
+msgctxt ""
+"12120200.xhp\n"
+"par_id3149400\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 ""
+
+#. QiL6A
+#: 12120200.xhp
+msgctxt ""
+"12120200.xhp\n"
+"hd_id3149121\n"
+"help.text"
+msgid "Input help"
+msgstr ""
+
+#. C3Tt3
+#: 12120200.xhp
+msgctxt ""
+"12120200.xhp\n"
+"par_id3150752\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 ""
+
+#. w7EtY
+#: 12120300.xhp
+msgctxt ""
+"12120300.xhp\n"
+"tit\n"
+"help.text"
+msgid "Error Alert"
+msgstr ""
+
+#. 3C3Ya
+#: 12120300.xhp
+msgctxt ""
+"12120300.xhp\n"
+"hd_id3153821\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/12120300.xhp\" name=\"Error Alert\">Error Alert</link>"
+msgstr ""
+
+#. Ret79
+#: 12120300.xhp
+msgctxt ""
+"12120300.xhp\n"
+"par_id3153379\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/erroralerttabpage/ErrorAlertTabPage\">Defines the error message that is displayed when invalid data is entered in a cell.</ahelp>"
+msgstr ""
+
+#. CqYXY
+#: 12120300.xhp
+msgctxt ""
+"12120300.xhp\n"
+"par_id3154138\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 ""
+
+#. 3xGLr
+#: 12120300.xhp
+msgctxt ""
+"12120300.xhp\n"
+"hd_id3156280\n"
+"help.text"
+msgid "Show error message when invalid values are entered."
+msgstr ""
+
+#. iEPGj
+#: 12120300.xhp
+msgctxt ""
+"12120300.xhp\n"
+"par_id3150768\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 ""
+
+#. TXcNJ
+#: 12120300.xhp
+msgctxt ""
+"12120300.xhp\n"
+"par_id3146984\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 ""
+
+#. 6FEcf
+#: 12120300.xhp
+msgctxt ""
+"12120300.xhp\n"
+"hd_id3152460\n"
+"help.text"
+msgid "Contents"
+msgstr ""
+
+#. qk32q
+#: 12120300.xhp
+msgctxt ""
+"12120300.xhp\n"
+"hd_id3148646\n"
+"help.text"
+msgid "Action"
+msgstr ""
+
+#. eDPY4
+#: 12120300.xhp
+msgctxt ""
+"12120300.xhp\n"
+"par_id3151115\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 ""
+
+#. tCT5q
+#: 12120300.xhp
+msgctxt ""
+"12120300.xhp\n"
+"hd_id3156441\n"
+"help.text"
+msgid "Browse"
+msgstr ""
+
+#. opYvC
+#: 12120300.xhp
+msgctxt ""
+"12120300.xhp\n"
+"par_id3153160\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 ""
+
+#. WZjAF
+#: 12120300.xhp
+msgctxt ""
+"12120300.xhp\n"
+"hd_id3153876\n"
+"help.text"
+msgid "Title"
+msgstr ""
+
+#. GFCFe
+#: 12120300.xhp
+msgctxt ""
+"12120300.xhp\n"
+"par_id3149410\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 ""
+
+#. 6CdzQ
+#: 12120300.xhp
+msgctxt ""
+"12120300.xhp\n"
+"hd_id3154510\n"
+"help.text"
+msgid "Error message"
+msgstr ""
+
+#. CTvnv
+#: 12120300.xhp
+msgctxt ""
+"12120300.xhp\n"
+"par_id3149122\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 ""
+
+#. c9UDY
+#: 12120300.xhp
+msgctxt ""
+"12120300.xhp\n"
+"hd_id881545240342781\n"
+"help.text"
+msgid "Sample macro:"
+msgstr ""
+
+#. vkaMd
+#: 12120300.xhp
+msgctxt ""
+"12120300.xhp\n"
+"par_id521625929022780\n"
+"help.text"
+msgid "Below is a sample function that can be called when an error occurs. Note that the macro takes in two parameters that are passed on by %PRODUCTNAME when the function is called:"
+msgstr ""
+
+#. F9upo
+#: 12120300.xhp
+msgctxt ""
+"12120300.xhp\n"
+"par_id981625929097216\n"
+"help.text"
+msgid "<emph>CellValue</emph>: The value entered by the user, as a String."
+msgstr ""
+
+#. oSFqW
+#: 12120300.xhp
+msgctxt ""
+"12120300.xhp\n"
+"par_id421625929100152\n"
+"help.text"
+msgid "<emph>CellAddress</emph>: The address of the cell where the value was entered, as a String prefixed with the sheet name (e.g: \"Sheet1.A1\")."
+msgstr ""
+
+#. A52Nm
+#: 12120300.xhp
+msgctxt ""
+"12120300.xhp\n"
+"par_id101625929384030\n"
+"help.text"
+msgid "The function must return a Boolean value. If it returns <literal>True</literal>, the entered value is kept. If the function returns <literal>False</literal>, the entered value is erased and the previous value is restored."
+msgstr ""
+
+#. 4tzCz
+#: 12120300.xhp
+msgctxt ""
+"12120300.xhp\n"
+"par_id531545240216611\n"
+"help.text"
+msgid "msg = \"Invalid value: \" & \"'\" & CellValue & \"'\""
+msgstr ""
+
+#. Zfic8
+#: 12120300.xhp
+msgctxt ""
+"12120300.xhp\n"
+"bas_id971625928577365\n"
+"help.text"
+msgid "msg = msg & \" in cell: \" & \"'\" & CellAddress & \"'\""
+msgstr ""
+
+#. hiNR9
+#: 12120300.xhp
+msgctxt ""
+"12120300.xhp\n"
+"bas_id181625928577640\n"
+"help.text"
+msgid "msg = msg & Chr(10) & \"Accept anyway?\""
+msgstr ""
+
+#. EhFBn
+#: 12120300.xhp
+msgctxt ""
+"12120300.xhp\n"
+"bas_id941625928578118\n"
+"help.text"
+msgid "iAnswer = MsgBox (msg , MB_FLAGS, \"Error message\")"
+msgstr ""
+
+#. 4C6T2
+#: ODFF.xhp
+msgctxt ""
+"ODFF.xhp\n"
+"tit\n"
+"help.text"
+msgid "ODFF"
+msgstr ""
+
+#. RZfPH
+#: ODFF.xhp
+msgctxt ""
+"ODFF.xhp\n"
+"hd_id1000010\n"
+"help.text"
+msgid "This function is part of the Open Document Format for Office Applications (OpenDocument) standard Version 1.2. (ISO/IEC 26300:2-2015)"
+msgstr ""
+
+#. BFcB6
+#: ODFF.xhp
+msgctxt ""
+"ODFF.xhp\n"
+"hd_id1000013\n"
+"help.text"
+msgid "This function is part of the Open Document Format for Office Applications (OpenDocument) standard Version 1.3."
+msgstr ""
+
+#. SGHPh
+#: calculate.xhp
+msgctxt ""
+"calculate.xhp\n"
+"tit\n"
+"help.text"
+msgid "Calculate"
+msgstr ""
+
+#. bgC7w
+#: calculate.xhp
+msgctxt ""
+"calculate.xhp\n"
+"hd_id621584668179317\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/calculate.xhp\" name=\"Calculate\">Calculate</link>"
+msgstr ""
+
+#. 8YGcD
+#: calculate.xhp
+msgctxt ""
+"calculate.xhp\n"
+"par_id241584668179318\n"
+"help.text"
+msgid "Commands to calculate formula cells."
+msgstr ""
+
+#. f2aRJ
+#: calculate.xhp
+msgctxt ""
+"calculate.xhp\n"
+"par_id251645222672072\n"
+"help.text"
+msgid "Choose <menuitem>Data - Calculate</menuitem>"
+msgstr ""
+
+#. 9AbDs
+#: calculation_accuracy.xhp
+msgctxt ""
+"calculation_accuracy.xhp\n"
+"tit\n"
+"help.text"
+msgid "Calculation Accuracy"
+msgstr ""
+
+#. 8Bv3f
+#: calculation_accuracy.xhp
+msgctxt ""
+"calculation_accuracy.xhp\n"
+"bm_id741642020503366\n"
+"help.text"
+msgid "<bookmark_value>calculation;accuracy</bookmark_value> <bookmark_value>precision;calculation</bookmark_value>"
+msgstr ""
+
+#. 4gPte
+#: calculation_accuracy.xhp
+msgctxt ""
+"calculation_accuracy.xhp\n"
+"hd_id961642017927878\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/calculation_accuracy.xhp\" name=\"accuracy\">%PRODUCTNAME Calculation Accuracy</link>"
+msgstr ""
+
+#. sW5fH
+#: calculation_accuracy.xhp
+msgctxt ""
+"calculation_accuracy.xhp\n"
+"hd_id941642017968835\n"
+"help.text"
+msgid "Inherent Accuracy Problem"
+msgstr ""
+
+#. hov7p
+#: calculation_accuracy.xhp
+msgctxt ""
+"calculation_accuracy.xhp\n"
+"par_id541642018071800\n"
+"help.text"
+msgid "%PRODUCTNAME Calc, just like most other spreadsheet software, uses floating-point math capabilities available on hardware. Given that most contemporary hardware uses binary floating-point arithmetic with limited precision defined in <link href=\"https://en.wikipedia.org/wiki/IEEE_754\" name=\"IEEE754\">IEEE 754</link> standard, many decimal numbers - including as simple as 0.1 - cannot be precisely represented in %PRODUCTNAME Calc (which uses 64-bit double-precision numbers internally)."
+msgstr ""
+
+#. YPbto
+#: calculation_accuracy.xhp
+msgctxt ""
+"calculation_accuracy.xhp\n"
+"par_id191642019423811\n"
+"help.text"
+msgid "Calculations with those numbers necessarily <link href=\"https://en.wikipedia.org/wiki/Floating-point_arithmetic#Accuracy_problems\" name=\"wpediaaccuracy\">results in rounding errors</link>, and those accumulate with every calculation."
+msgstr ""
+
+#. dvRFz
+#: calculation_accuracy.xhp
+msgctxt ""
+"calculation_accuracy.xhp\n"
+"par_id221642019437175\n"
+"help.text"
+msgid "This is not a bug, but is expected and currently unavoidable without using complex calculations in software, which would incur inappropriate performance penalties, and thus is out of question. Users need to account for that, and use rounding and comparisons with <link href=\"https://en.wikipedia.org/wiki/Machine_epsilon\" name=\"macnie_epsilon\">machine epsilon (or unit roundoff)</link> as necessary."
+msgstr ""
+
+#. ncGy5
+#: calculation_accuracy.xhp
+msgctxt ""
+"calculation_accuracy.xhp\n"
+"par_id801642019531438\n"
+"help.text"
+msgid "An example with numbers:"
+msgstr ""
+
+#. BpnPy
+#: calculation_accuracy.xhp
+msgctxt ""
+"calculation_accuracy.xhp\n"
+"par_id761642018318896\n"
+"help.text"
+msgid "This will result in -999.129999999997 in A3, instead of expected -999.13 (you might need to increase shown decimal places in cell format to see this)."
+msgstr ""
+
+#. kDcn9
+#: calculation_accuracy.xhp
+msgctxt ""
+"calculation_accuracy.xhp\n"
+"par_id221642020132399\n"
+"help.text"
+msgid "An example with dates and times:"
+msgstr ""
+
+#. aWCYz
+#: calculation_accuracy.xhp
+msgctxt ""
+"calculation_accuracy.xhp\n"
+"par_id801642018326882\n"
+"help.text"
+msgid "Due to the specific of time representation in Calc, this also applies to all calculations involving times. For example, the cells A1 and A2 below show the date and time data as entered (in ISO 8601 format):"
+msgstr ""
+
+#. rcuhc
+#: calculation_accuracy.xhp
+msgctxt ""
+"calculation_accuracy.xhp\n"
+"par_id101643312991679\n"
+"help.text"
+msgid "Cell A3 will show 00:10:00 if the default formatting [HH]:MM:SS is applied to the cell. However, cell A3 will show 00:09:59.999999 instead of expected 00:10:00.000000 if formatted using [HH]:MM:SS.000000 format string. This happens despite only whole numbers of hours and minutes were used, because internally, any time is a fraction of a day, 12:00 (noon) being represented as 0.5."
+msgstr ""
+
+#. EZjhJ
+#: calculation_accuracy.xhp
+msgctxt ""
+"calculation_accuracy.xhp\n"
+"par_id921642020011065\n"
+"help.text"
+msgid "The data in A1 is represented internally as 43934.5125, and in A2 as 43934.5055555555591126903891563 (which is not exact representation of the entered datetime, which would be 43934.505555555555555555...)."
+msgstr ""
+
+#. QY6Ti
+#: calculation_accuracy.xhp
+msgctxt ""
+"calculation_accuracy.xhp\n"
+"par_id801642020017858\n"
+"help.text"
+msgid "Their subtraction results in 0.00694444443287037, a value slightly less than expected 0.00694444444444..., which is 10 minutes."
+msgstr ""
+
+#. J8xZD
+#: cell_styles.xhp
+msgctxt ""
+"cell_styles.xhp\n"
+"tit\n"
+"help.text"
+msgid "Cell Styles"
+msgstr ""
+
+#. 8o4Ez
+#: cell_styles.xhp
+msgctxt ""
+"cell_styles.xhp\n"
+"hd_id811593560413206\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/cell_styles.xhp\" name=\"Cell Style\">Cell Styles</link>"
+msgstr ""
+
+#. AZNrM
+#: common_func.xhp
+msgctxt ""
+"common_func.xhp\n"
+"tit\n"
+"help.text"
+msgid "Common Syntax and example"
+msgstr ""
+
+#. GSbiK
+#: common_func.xhp
+msgctxt ""
+"common_func.xhp\n"
+"hd_id3152015\n"
+"help.text"
+msgid "Syntax"
+msgstr ""
+
+#. MiUAf
+#: common_func.xhp
+msgctxt ""
+"common_func.xhp\n"
+"hd_id281171\n"
+"help.text"
+msgid "Example"
+msgstr ""
+
+#. 54Ga6
+#: common_func.xhp
+msgctxt ""
+"common_func.xhp\n"
+"hd_id281996\n"
+"help.text"
+msgid "Examples"
+msgstr ""
+
+#. XAFa7
+#: common_func.xhp
+msgctxt ""
+"common_func.xhp\n"
+"hd_id301640873452726\n"
+"help.text"
+msgid "Technical information"
+msgstr ""
+
+#. RAbtL
+#: common_func.xhp
+msgctxt ""
+"common_func.xhp\n"
+"hd_id371655560095924\n"
+"help.text"
+msgid "See also"
+msgstr ""
+
+#. 7AVhU
+#: common_func.xhp
+msgctxt ""
+"common_func.xhp\n"
+"par_id251640873774457\n"
+"help.text"
+msgid "This function is not part of the <emph>Open Document Format for Office Applications (OpenDocument) Version 1.3. Part 4: Recalculated Formula (OpenFormula) Format</emph> standard. The name space is"
+msgstr ""
+
+#. STMGF
+#: common_func.xhp
+msgctxt ""
+"common_func.xhp\n"
+"par_id301616845402409\n"
+"help.text"
+msgid "This function ignores any text or empty cell within a data range. If you suspect wrong results from this function, look for text in the data ranges. To highlight text contents in a data range, use the <link href=\"text/scalc/01/03080000.xhp\" name=\"value highlight\">value highlighting</link> feature."
+msgstr ""
+
+#. GAPGX
+#: common_func_workdaysintl.xhp
+msgctxt ""
+"common_func_workdaysintl.xhp\n"
+"tit\n"
+"help.text"
+msgid "common workdays intl"
+msgstr ""
+
+#. BBNbm
+#: common_func_workdaysintl.xhp
+msgctxt ""
+"common_func_workdaysintl.xhp\n"
+"par_id231020162249541102\n"
+"help.text"
+msgid "<emph>Weekend</emph> is an optional parameter – a number or a string used to specify the days of the week that are weekend days and are not considered working days. Weekend is a weekend number or string that specifies when weekends occur. Weekend number values indicate the following weekend days:"
+msgstr ""
+
+#. AakfY
+#: common_func_workdaysintl.xhp
+msgctxt ""
+"common_func_workdaysintl.xhp\n"
+"par_id231020162249545526\n"
+"help.text"
+msgid "Number 1 to 7 for two-day weekends and 11 to 17 for one-day weekends."
+msgstr ""
+
+#. rKxJb
+#: common_func_workdaysintl.xhp
+msgctxt ""
+"common_func_workdaysintl.xhp\n"
+"par_id231020162249542082\n"
+"help.text"
+msgid "Number"
+msgstr ""
+
+#. euMMc
+#: common_func_workdaysintl.xhp
+msgctxt ""
+"common_func_workdaysintl.xhp\n"
+"par_id23102016224954936\n"
+"help.text"
+msgid "Weekend"
+msgstr ""
+
+#. LWeNA
+#: common_func_workdaysintl.xhp
+msgctxt ""
+"common_func_workdaysintl.xhp\n"
+"par_id231020162249548384\n"
+"help.text"
+msgid "1 or omitted"
+msgstr ""
+
+#. 3cRzD
+#: common_func_workdaysintl.xhp
+msgctxt ""
+"common_func_workdaysintl.xhp\n"
+"par_id231020162249544419\n"
+"help.text"
+msgid "Saturday and Sunday"
+msgstr ""
+
+#. BjCLD
+#: common_func_workdaysintl.xhp
+msgctxt ""
+"common_func_workdaysintl.xhp\n"
+"par_id231020162249543229\n"
+"help.text"
+msgid "Sunday and Monday"
+msgstr ""
+
+#. r3QJD
+#: common_func_workdaysintl.xhp
+msgctxt ""
+"common_func_workdaysintl.xhp\n"
+"par_id231020162249541638\n"
+"help.text"
+msgid "Monday and Tuesday"
+msgstr ""
+
+#. U3EVB
+#: common_func_workdaysintl.xhp
+msgctxt ""
+"common_func_workdaysintl.xhp\n"
+"par_id231020162249548854\n"
+"help.text"
+msgid "Tuesday and Wednesday"
+msgstr ""
+
+#. rAcyU
+#: common_func_workdaysintl.xhp
+msgctxt ""
+"common_func_workdaysintl.xhp\n"
+"par_id23102016224954803\n"
+"help.text"
+msgid "Wednesday and Thursday"
+msgstr ""
+
+#. Q2zu4
+#: common_func_workdaysintl.xhp
+msgctxt ""
+"common_func_workdaysintl.xhp\n"
+"par_id231020162249545913\n"
+"help.text"
+msgid "Thursday and Friday"
+msgstr ""
+
+#. X5Gad
+#: common_func_workdaysintl.xhp
+msgctxt ""
+"common_func_workdaysintl.xhp\n"
+"par_id231020162249546426\n"
+"help.text"
+msgid "Friday and Saturday"
+msgstr ""
+
+#. j2EUP
+#: common_func_workdaysintl.xhp
+msgctxt ""
+"common_func_workdaysintl.xhp\n"
+"par_id231020162249548630\n"
+"help.text"
+msgid "Sunday only"
+msgstr ""
+
+#. FDz4C
+#: common_func_workdaysintl.xhp
+msgctxt ""
+"common_func_workdaysintl.xhp\n"
+"par_id231020162249547536\n"
+"help.text"
+msgid "Monday only"
+msgstr ""
+
+#. sB6N2
+#: common_func_workdaysintl.xhp
+msgctxt ""
+"common_func_workdaysintl.xhp\n"
+"par_id231020162249545002\n"
+"help.text"
+msgid "Tuesday only"
+msgstr ""
+
+#. hfLfG
+#: common_func_workdaysintl.xhp
+msgctxt ""
+"common_func_workdaysintl.xhp\n"
+"par_id231020162249554939\n"
+"help.text"
+msgid "Wednesday only"
+msgstr ""
+
+#. rgZWA
+#: common_func_workdaysintl.xhp
+msgctxt ""
+"common_func_workdaysintl.xhp\n"
+"par_id231020162249558942\n"
+"help.text"
+msgid "Thursday only"
+msgstr ""
+
+#. BgBBD
+#: common_func_workdaysintl.xhp
+msgctxt ""
+"common_func_workdaysintl.xhp\n"
+"par_id231020162249558763\n"
+"help.text"
+msgid "Friday only"
+msgstr ""
+
+#. gL7GC
+#: common_func_workdaysintl.xhp
+msgctxt ""
+"common_func_workdaysintl.xhp\n"
+"par_id231020162249552635\n"
+"help.text"
+msgid "Saturday only"
+msgstr ""
+
+#. nKGoe
+#: common_func_workdaysintl.xhp
+msgctxt ""
+"common_func_workdaysintl.xhp\n"
+"par_id231020162249555313\n"
+"help.text"
+msgid "Weekend string provides another way to define the weekly non-working days. It must have seven (7) characters – zeros (0) for working day and ones (1) for non-working day. Each character represents a day of the week, starting with Monday. Only 1 and 0 are valid. “1111111” is an invalid string and should not be used. For example, the weekend string “0000011” defines Saturday and Sunday as non-working days."
+msgstr ""
+
+#. GBVCD
+#: common_func_workdaysintl.xhp
+msgctxt ""
+"common_func_workdaysintl.xhp\n"
+"par_id231020162249559739\n"
+"help.text"
+msgid "<emph>Holidays</emph> is an optional list of dates that must be counted as non-working days. The list can be given in a cell range."
+msgstr ""
+
+#. jp5Xo
+#: data_form.xhp
+msgctxt ""
+"data_form.xhp\n"
+"tit\n"
+"help.text"
+msgid "Data Entry Form for Spreadsheet"
+msgstr ""
+
+#. kP5YY
+#: data_form.xhp
+msgctxt ""
+"data_form.xhp\n"
+"bm_id240920171018528200\n"
+"help.text"
+msgid "<bookmark_value>data entry forms;for spreadsheets</bookmark_value> <bookmark_value>data entry forms;insert data in spreadsheets</bookmark_value> <bookmark_value>insert data;data entry forms for spreadsheets</bookmark_value> <bookmark_value>spreadsheet;form for inserting data</bookmark_value>"
+msgstr ""
+
+#. wTC98
+#: data_form.xhp
+msgctxt ""
+"data_form.xhp\n"
+"hd_id240920171003006302\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/data_form.xhp\">Form</link>"
+msgstr ""
+
+#. wrzkB
+#: data_form.xhp
+msgctxt ""
+"data_form.xhp\n"
+"par_id240920171003293400\n"
+"help.text"
+msgid "<ahelp hid=\".\"><emph>Data Entry Form</emph> is a tool to make table data entry easy in spreadsheets.</ahelp> With the Data Entry Form, you can enter, edit and delete records (or rows) of data and avoid horizontal scrolling when the table has many columns or when some columns are very wide."
+msgstr ""
+
+#. VoVM6
+#: data_form.xhp
+msgctxt ""
+"data_form.xhp\n"
+"par_id240920171007389295\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">Data – Form...</item>"
+msgstr ""
+
+#. yiAjM
+#: data_form.xhp
+msgctxt ""
+"data_form.xhp\n"
+"hd_id291512503277077\n"
+"help.text"
+msgid "Preparing the data entry form"
+msgstr ""
+
+#. BDary
+#: data_form.xhp
+msgctxt ""
+"data_form.xhp\n"
+"par_id221512503284514\n"
+"help.text"
+msgid "To be effective, the Calc data table should have a header row, where each cell contents is the label of the column. The header cells contents become the label of each data field in the form."
+msgstr ""
+
+#. d9TGe
+#: data_form.xhp
+msgctxt ""
+"data_form.xhp\n"
+"hd_id531512503300666\n"
+"help.text"
+msgid "Activating the form"
+msgstr ""
+
+#. DG3DF
+#: data_form.xhp
+msgctxt ""
+"data_form.xhp\n"
+"par_id551512503358101\n"
+"help.text"
+msgid "Place the cursor in the header row of the table."
+msgstr ""
+
+#. F7HNg
+#: data_form.xhp
+msgctxt ""
+"data_form.xhp\n"
+"par_id11512503369875\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">Data - Form...</item>."
+msgstr ""
+
+#. qK3hk
+#: data_form.xhp
+msgctxt ""
+"data_form.xhp\n"
+"hd_id361512503457039\n"
+"help.text"
+msgid "Filling the form with data"
+msgstr ""
+
+#. wE4Jo
+#: data_form.xhp
+msgctxt ""
+"data_form.xhp\n"
+"par_id361512503457039\n"
+"help.text"
+msgid "Enter the data in the text fields. Press Enter or click <item type=\"literal\">New</item> to add it to the table."
+msgstr ""
+
+#. D5pB4
+#: data_form.xhp
+msgctxt ""
+"data_form.xhp\n"
+"hd_id111512507319306\n"
+"help.text"
+msgid "Form dialog buttons"
+msgstr ""
+
+#. ZgLzp
+#: data_form.xhp
+msgctxt ""
+"data_form.xhp\n"
+"par_id981512503964001\n"
+"help.text"
+msgid "<emph>New</emph>: fill the record (table row cells) with the form fields contents and jump to the next record or add a new record in the bottom of the table."
+msgstr ""
+
+#. ZEerU
+#: data_form.xhp
+msgctxt ""
+"data_form.xhp\n"
+"par_id91512503864256\n"
+"help.text"
+msgid "<emph>Delete</emph>: deletes the current record."
+msgstr ""
+
+#. zx2vB
+#: data_form.xhp
+msgctxt ""
+"data_form.xhp\n"
+"par_id11512503887586\n"
+"help.text"
+msgid "<emph>Restore</emph>: when a form field is edited, restore the record contents to its initial state."
+msgstr ""
+
+#. hDmFK
+#: data_form.xhp
+msgctxt ""
+"data_form.xhp\n"
+"par_id301512503881314\n"
+"help.text"
+msgid "<emph>Previous record</emph>: move to the previous record (table row)."
+msgstr ""
+
+#. aMoBm
+#: data_form.xhp
+msgctxt ""
+"data_form.xhp\n"
+"par_id51512503877397\n"
+"help.text"
+msgid "<emph>Next record</emph>: move to the next record."
+msgstr ""
+
+#. PEGis
+#: data_form.xhp
+msgctxt ""
+"data_form.xhp\n"
+"par_id971512503871672\n"
+"help.text"
+msgid "<emph>Close</emph>: close the form."
+msgstr ""
+
+#. LJADq
+#: data_form.xhp
+msgctxt ""
+"data_form.xhp\n"
+"par_id951512509971073\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sc_data_form01.png\" id=\"img_id951512509971073\"> <alt id=\"alt_id951512509971073\">The form dialog box and header row cells as field labels</alt> </image>"
+msgstr ""
+
+#. G3cSB
+#: data_form.xhp
+msgctxt ""
+"data_form.xhp\n"
+"par_id351512558748321\n"
+"help.text"
+msgid "Use the <item type=\"input\">Tab</item> and <item type=\"input\">Shift-Tab</item> keys to jump forth and back between text boxes of the form dialog."
+msgstr ""
+
+#. hgL3P
+#: data_form.xhp
+msgctxt ""
+"data_form.xhp\n"
+"par_id731512558741034\n"
+"help.text"
+msgid "You also can use the form scroll bar to move between text boxes."
+msgstr ""
+
+#. tBjmH
+#: data_form.xhp
+msgctxt ""
+"data_form.xhp\n"
+"hd_id701512558977465\n"
+"help.text"
+msgid "Reopening the form dialog"
+msgstr ""
+
+#. CKgpJ
+#: data_form.xhp
+msgctxt ""
+"data_form.xhp\n"
+"par_id181512558987528\n"
+"help.text"
+msgid "To reopen the form dialog, place the cursor on the header row and open the form. The displayed record in the form dialog is the first data record. Move to the last record before entering new data otherwise the current record will be edited."
+msgstr ""
+
+#. CTy63
+#: data_form.xhp
+msgctxt ""
+"data_form.xhp\n"
+"par_id240920171007419799\n"
+"help.text"
+msgid "<link href=\"text/shared/guide/data_forms.xhp\" name=\"Forms\">Document Forms</link>"
+msgstr ""
+
+#. sATUB
+#: data_provider.xhp
+msgctxt ""
+"data_provider.xhp\n"
+"tit\n"
+"help.text"
+msgid "Data Provider for Spreadsheet"
+msgstr ""
+
+#. pDCUD
+#: data_provider.xhp
+msgctxt ""
+"data_provider.xhp\n"
+"bm_id240920171018528200\n"
+"help.text"
+msgid "<bookmark_value>data provider;for spreadsheets</bookmark_value>"
+msgstr ""
+
+#. LwDBX
+#: data_provider.xhp
+msgctxt ""
+"data_provider.xhp\n"
+"hd_id240920171003006302\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/data_provider.xhp\">Data Provider for Spreadsheets</link>"
+msgstr ""
+
+#. VGbJ5
+#: data_provider.xhp
+msgctxt ""
+"data_provider.xhp\n"
+"par_id240920171003293400\n"
+"help.text"
+msgid "<ahelp hid=\".\">Data Provider for Spreadsheets</ahelp>"
+msgstr ""
+
+#. bGcMX
+#: data_provider.xhp
+msgctxt ""
+"data_provider.xhp\n"
+"par_id240920171007389295\n"
+"help.text"
+msgid "Menu <item type=\"menuitem\">Data – Data Provider...</item>"
+msgstr ""
+
+#. kmBF6
+#: data_provider.xhp
+msgctxt ""
+"data_provider.xhp\n"
+"par_id240920171007419799\n"
+"help.text"
+msgid "Data Provider"
+msgstr ""
+
+#. BGquS
+#: databar_more_options.xhp
+msgctxt ""
+"databar_more_options.xhp\n"
+"Databar-Moreoptions\n"
+"help.text"
+msgid "Databar More Options"
+msgstr ""
+
+#. 6Mf5d
+#: databar_more_options.xhp
+msgctxt ""
+"databar_more_options.xhp\n"
+"bm_id651610566601713\n"
+"help.text"
+msgid "<bookmark_value>conditional formatting;data bar options</bookmark_value><bookmark_value>data bar formatting;data bar options</bookmark_value><bookmark_value>data bar options;conditional formatting</bookmark_value>"
+msgstr ""
+
+#. RYVeJ
+#: databar_more_options.xhp
+msgctxt ""
+"databar_more_options.xhp\n"
+"hd_id631610470827523\n"
+"help.text"
+msgid "<variable id=\"databaroptions\"><link href=\"/text/scalc/01/databar_more_options.xhp\" name=\"More Options for Databar\">Databar More Options</link></variable>"
+msgstr ""
+
+#. PDdJA
+#: databar_more_options.xhp
+msgctxt ""
+"databar_more_options.xhp\n"
+"hd_id531610472930609\n"
+"help.text"
+msgid "Entry Values"
+msgstr ""
+
+#. gUW4X
+#: databar_more_options.xhp
+msgctxt ""
+"databar_more_options.xhp\n"
+"hd_id661610569199542\n"
+"help.text"
+msgid "Minimum:"
+msgstr ""
+
+#. AxvHB
+#: databar_more_options.xhp
+msgctxt ""
+"databar_more_options.xhp\n"
+"par_id861610473146895\n"
+"help.text"
+msgid "Set the minimum value for which the data bar does not start filling."
+msgstr ""
+
+#. FjNLX
+#: databar_more_options.xhp
+msgctxt ""
+"databar_more_options.xhp\n"
+"hd_id501610569361264\n"
+"help.text"
+msgid "Maximum:"
+msgstr ""
+
+#. mCsBS
+#: databar_more_options.xhp
+msgctxt ""
+"databar_more_options.xhp\n"
+"par_id461610473163880\n"
+"help.text"
+msgid "Set the maximum value for which the data bar gets completely filled."
+msgstr ""
+
+#. ePnFB
+#: databar_more_options.xhp
+msgctxt ""
+"databar_more_options.xhp\n"
+"par_id791610556114310\n"
+"help.text"
+msgid "The options for setting the minimum and maximum values are:"
+msgstr ""
+
+#. gBHrw
+#: databar_more_options.xhp
+msgctxt ""
+"databar_more_options.xhp\n"
+"par_id621610556164264\n"
+"help.text"
+msgid "<emph>Automatic:</emph> Automatically sets the minimum and maximum value based on the values in the data set."
+msgstr ""
+
+#. ajaES
+#: databar_more_options.xhp
+msgctxt ""
+"databar_more_options.xhp\n"
+"par_id591610556220990\n"
+"help.text"
+msgid "<emph>Minimum:</emph> Automatically sets the minimum value in the data set as minimum."
+msgstr ""
+
+#. QRiYs
+#: databar_more_options.xhp
+msgctxt ""
+"databar_more_options.xhp\n"
+"par_id951610556245716\n"
+"help.text"
+msgid "<emph>Maximum:</emph> Automatically sets the maximum value in the data set for maximum."
+msgstr ""
+
+#. Rv45U
+#: databar_more_options.xhp
+msgctxt ""
+"databar_more_options.xhp\n"
+"par_id901610556259738\n"
+"help.text"
+msgid "<emph>Percentile:</emph> Set the minimum and maximum as percentile value."
+msgstr ""
+
+#. dPLJt
+#: databar_more_options.xhp
+msgctxt ""
+"databar_more_options.xhp\n"
+"par_id621610556295743\n"
+"help.text"
+msgid "<emph>Value:</emph> Set the minimum and maximum as a specific value."
+msgstr ""
+
+#. Xo6Dm
+#: databar_more_options.xhp
+msgctxt ""
+"databar_more_options.xhp\n"
+"par_id331610556326466\n"
+"help.text"
+msgid "<emph>Formula:</emph> Set the minimum and maximum as a formula."
+msgstr ""
+
+#. dtrcK
+#: databar_more_options.xhp
+msgctxt ""
+"databar_more_options.xhp\n"
+"hd_id551610558198954\n"
+"help.text"
+msgid "Bar Colors"
+msgstr ""
+
+#. brFRN
+#: databar_more_options.xhp
+msgctxt ""
+"databar_more_options.xhp\n"
+"hd_id391610569504555\n"
+"help.text"
+msgid "Positive:"
+msgstr ""
+
+#. AYuC9
+#: databar_more_options.xhp
+msgctxt ""
+"databar_more_options.xhp\n"
+"par_id611610558381528\n"
+"help.text"
+msgid "Set the color for positive values. It is set to blue be default."
+msgstr ""
+
+#. EHFuG
+#: databar_more_options.xhp
+msgctxt ""
+"databar_more_options.xhp\n"
+"hd_id161610569508370\n"
+"help.text"
+msgid "Negative:"
+msgstr ""
+
+#. DqVgR
+#: databar_more_options.xhp
+msgctxt ""
+"databar_more_options.xhp\n"
+"par_id451610558525398\n"
+"help.text"
+msgid "Set the color for negative values. It is set to red by default."
+msgstr ""
+
+#. Eci5i
+#: databar_more_options.xhp
+msgctxt ""
+"databar_more_options.xhp\n"
+"hd_id261610569510818\n"
+"help.text"
+msgid "Fill:"
+msgstr ""
+
+#. GRWdV
+#: databar_more_options.xhp
+msgctxt ""
+"databar_more_options.xhp\n"
+"par_id221610558585001\n"
+"help.text"
+msgid "Choose between color and gradient for the fill."
+msgstr ""
+
+#. oQVLz
+#: databar_more_options.xhp
+msgctxt ""
+"databar_more_options.xhp\n"
+"hd_id711610558701623\n"
+"help.text"
+msgid "Axis"
+msgstr ""
+
+#. F9wz2
+#: databar_more_options.xhp
+msgctxt ""
+"databar_more_options.xhp\n"
+"hd_id731610569777368\n"
+"help.text"
+msgid "Position of vertical axis:"
+msgstr ""
+
+#. jrmur
+#: databar_more_options.xhp
+msgctxt ""
+"databar_more_options.xhp\n"
+"par_id901610558734975\n"
+"help.text"
+msgid "Set the position of vertical axis in the cell."
+msgstr ""
+
+#. GCTov
+#: databar_more_options.xhp
+msgctxt ""
+"databar_more_options.xhp\n"
+"par_id591610558837411\n"
+"help.text"
+msgid "<emph>Automatic:</emph> Set the axis automatically"
+msgstr ""
+
+#. VMCSd
+#: databar_more_options.xhp
+msgctxt ""
+"databar_more_options.xhp\n"
+"par_id991610558892435\n"
+"help.text"
+msgid "<emph>Middle:</emph> Set the vertical position to be in the middle of the cell."
+msgstr ""
+
+#. 6ketG
+#: databar_more_options.xhp
+msgctxt ""
+"databar_more_options.xhp\n"
+"par_id971610558965550\n"
+"help.text"
+msgid "<emph>None:</emph> Set the data bar to have no visible vertical axis"
+msgstr ""
+
+#. Up8nD
+#: databar_more_options.xhp
+msgctxt ""
+"databar_more_options.xhp\n"
+"hd_id591610569865757\n"
+"help.text"
+msgid "Color of vertical axis:"
+msgstr ""
+
+#. 2cZEy
+#: databar_more_options.xhp
+msgctxt ""
+"databar_more_options.xhp\n"
+"par_id601610560622213\n"
+"help.text"
+msgid "Choose the color of the vertical axis."
+msgstr ""
+
+#. CTJaw
+#: databar_more_options.xhp
+msgctxt ""
+"databar_more_options.xhp\n"
+"hd_id631610560675220\n"
+"help.text"
+msgid "Bar Lengths"
+msgstr ""
+
+#. V2bCh
+#: databar_more_options.xhp
+msgctxt ""
+"databar_more_options.xhp\n"
+"hd_id651610569932338\n"
+"help.text"
+msgid "Minimum bar length (%):"
+msgstr ""
+
+#. 9HmjS
+#: databar_more_options.xhp
+msgctxt ""
+"databar_more_options.xhp\n"
+"par_id381610560706116\n"
+"help.text"
+msgid "Set the minimum length of the data bar in percentage with respect to the cell length."
+msgstr ""
+
+#. zvuC5
+#: databar_more_options.xhp
+msgctxt ""
+"databar_more_options.xhp\n"
+"hd_id151610569983195\n"
+"help.text"
+msgid "Maximum bar length (%):"
+msgstr ""
+
+#. ZwUDq
+#: databar_more_options.xhp
+msgctxt ""
+"databar_more_options.xhp\n"
+"par_id511610560783506\n"
+"help.text"
+msgid "Set the maximum length of the data bar in percentage with respect to the cell length."
+msgstr ""
+
+#. 5eqMJ
+#: databar_more_options.xhp
+msgctxt ""
+"databar_more_options.xhp\n"
+"hd_id821610560955981\n"
+"help.text"
+msgid "Display bar only"
+msgstr ""
+
+#. qxGGB
+#: databar_more_options.xhp
+msgctxt ""
+"databar_more_options.xhp\n"
+"par_id501610560981306\n"
+"help.text"
+msgid "Only databar is shown. Value becomes hidden."
+msgstr ""
+
+#. UiW5C
+#: ex_data_stat_func.xhp
+msgctxt ""
+"ex_data_stat_func.xhp\n"
+"tit\n"
+"help.text"
+msgid "Examples Dataset for Statistical Functions"
+msgstr ""
+
+#. 7qsFE
+#: ex_data_stat_func.xhp
+msgctxt ""
+"ex_data_stat_func.xhp\n"
+"hd_id2609201512474295\n"
+"help.text"
+msgid "Consider the following table"
+msgstr ""
+
+#. zqTYx
+#: ex_data_stat_func.xhp
+msgctxt ""
+"ex_data_stat_func.xhp\n"
+"par_id18260631312423\n"
+"help.text"
+msgid "Product Name"
+msgstr ""
+
+#. HZpK7
+#: ex_data_stat_func.xhp
+msgctxt ""
+"ex_data_stat_func.xhp\n"
+"par_id2509201517433075\n"
+"help.text"
+msgid "Sales"
+msgstr ""
+
+#. NEEL8
+#: ex_data_stat_func.xhp
+msgctxt ""
+"ex_data_stat_func.xhp\n"
+"par_id2509201519383294\n"
+"help.text"
+msgid "Revenue"
+msgstr ""
+
+#. ZyGBE
+#: ex_data_stat_func.xhp
+msgctxt ""
+"ex_data_stat_func.xhp\n"
+"par_id2855779586764\n"
+"help.text"
+msgid "pencil"
+msgstr ""
+
+#. rxh8K
+#: ex_data_stat_func.xhp
+msgctxt ""
+"ex_data_stat_func.xhp\n"
+"par_id24967262611733\n"
+"help.text"
+msgid "pen"
+msgstr ""
+
+#. UpTSC
+#: ex_data_stat_func.xhp
+msgctxt ""
+"ex_data_stat_func.xhp\n"
+"par_id252542413030532\n"
+"help.text"
+msgid "notebook"
+msgstr ""
+
+#. eBXBg
+#: ex_data_stat_func.xhp
+msgctxt ""
+"ex_data_stat_func.xhp\n"
+"par_id2509201519374677\n"
+"help.text"
+msgid "book"
+msgstr ""
+
+#. 48CjE
+#: ex_data_stat_func.xhp
+msgctxt ""
+"ex_data_stat_func.xhp\n"
+"par_id19479417931163\n"
+"help.text"
+msgid "pencil-case"
+msgstr ""
+
+#. w8ZSP
+#: ex_data_stat_func.xhp
+msgctxt ""
+"ex_data_stat_func.xhp\n"
+"par_id85353130721737\n"
+"help.text"
+msgid "not"
+msgstr ""
+
+#. EYktc
+#: ex_data_stat_func.xhp
+msgctxt ""
+"ex_data_stat_func.xhp\n"
+"par_id15693941827291\n"
+"help.text"
+msgid "not"
+msgstr ""
+
+#. jpYmN
+#: ex_data_stat_func.xhp
+msgctxt ""
+"ex_data_stat_func.xhp\n"
+"par_id1191767622119\n"
+"help.text"
+msgid "In all examples below, ranges for calculation contain the row #6, which is ignored because it contains text."
+msgstr ""
+
+#. YXQmf
+#: ex_data_stat_func.xhp
+msgctxt ""
+"ex_data_stat_func.xhp\n"
+"par_id961527953004850\n"
+"help.text"
+msgid "<variable id=\"args\">Func_Range; Range1; Criterion[; Range2; Criterion2][; … ; [Range127; Criterion127]]</variable>"
+msgstr ""
+
+#. d8gmy
+#: ex_data_stat_func.xhp
+msgctxt ""
+"ex_data_stat_func.xhp\n"
+"par_id94162948227556\n"
+"help.text"
+msgid "The logical relation between criteria can be defined as logical AND (conjunction). In other words, if and only if all given criteria are met, a value from the corresponding cell of the given <emph>Func_Range</emph> is taken into calculation."
+msgstr ""
+
+#. s3NRA
+#: ex_data_stat_func.xhp
+msgctxt ""
+"ex_data_stat_func.xhp\n"
+"par_id14734320631377\n"
+"help.text"
+msgid "<emph>Func_Range</emph> and <emph>Range1, Range2...</emph> must have the same size, otherwise the function returns err:502 - Invalid argument."
+msgstr ""
+
+#. XB7By
+#: ex_data_stat_func.xhp
+msgctxt ""
+"ex_data_stat_func.xhp\n"
+"par_id101585468691583\n"
+"help.text"
+msgid "<emph>Range1</emph> – required argument. It is a range of cells, a name of a named range, or a label of a column or a row, to which the corresponding criterion is to be applied."
+msgstr ""
+
+#. 45WHz
+#: ex_data_stat_func.xhp
+msgctxt ""
+"ex_data_stat_func.xhp\n"
+"par_id621619279022341\n"
+"help.text"
+msgid "<emph>Criterion</emph>: A criterion is a single cell Reference, Number or Text. It is used in comparisons with cell contents."
+msgstr ""
+
+#. m9EAG
+#: ex_data_stat_func.xhp
+msgctxt ""
+"ex_data_stat_func.xhp\n"
+"par_id731619279029255\n"
+"help.text"
+msgid "A reference to an empty cell is interpreted as the numeric value 0."
+msgstr ""
+
+#. iYNFV
+#: ex_data_stat_func.xhp
+msgctxt ""
+"ex_data_stat_func.xhp\n"
+"par_id31619279035359\n"
+"help.text"
+msgid "A matching expression can be:"
+msgstr ""
+
+#. fSoyL
+#: ex_data_stat_func.xhp
+msgctxt ""
+"ex_data_stat_func.xhp\n"
+"par_id171619279059462\n"
+"help.text"
+msgid "A Number or Logical value. A matching cell content equals the Number or Logical value."
+msgstr ""
+
+#. 7Hfq9
+#: ex_data_stat_func.xhp
+msgctxt ""
+"ex_data_stat_func.xhp\n"
+"par_id511619279076504\n"
+"help.text"
+msgid "A value beginning with a comparator (<, <=, =, >, >=, <>)."
+msgstr ""
+
+#. YEjSD
+#: ex_data_stat_func.xhp
+msgctxt ""
+"ex_data_stat_func.xhp\n"
+"par_id11619279168512\n"
+"help.text"
+msgid "For =, if the value is empty it matches empty cells."
+msgstr ""
+
+#. 39AJR
+#: ex_data_stat_func.xhp
+msgctxt ""
+"ex_data_stat_func.xhp\n"
+"par_id161619279207350\n"
+"help.text"
+msgid "For <>, if the value is empty it matches non-empty cells."
+msgstr ""
+
+#. 9xDer
+#: ex_data_stat_func.xhp
+msgctxt ""
+"ex_data_stat_func.xhp\n"
+"par_id271619279215695\n"
+"help.text"
+msgid "For <>, if the value is not empty it matches any cell content except the value, including empty cells."
+msgstr ""
+
+#. y2EGU
+#: ex_data_stat_func.xhp
+msgctxt ""
+"ex_data_stat_func.xhp\n"
+"par_id861619279223855\n"
+"help.text"
+msgid "<emph>Note:</emph> \"=0\" does not match empty cells."
+msgstr ""
+
+#. 2nrnV
+#: ex_data_stat_func.xhp
+msgctxt ""
+"ex_data_stat_func.xhp\n"
+"par_id51619279363954\n"
+"help.text"
+msgid "For = and <>, if the value is not empty and can not be interpreted as a Number type or one of its subtypes and the property <link href=\"text/shared/optionen/01060500.xhp\" name=\"s\">Search criteria = and <> must apply to whole cells</link> is checked, comparison is against the entire cell contents, if unchecked, comparison is against any subpart of the field that matches the criteria. For = and <>, if the value is not empty and can not be interpreted as a Number type or one of its subtypes applies."
+msgstr ""
+
+#. VG8wZ
+#: ex_data_stat_func.xhp
+msgctxt ""
+"ex_data_stat_func.xhp\n"
+"par_id801619279323556\n"
+"help.text"
+msgid "Other Text value. If the property <link href=\"text/shared/optionen/01060500.xhp\" name=\"s\">Search criteria = and <> must apply to whole cells</link> is true, the comparison is against the entire cell contents, if false, comparison is against any subpart of the field that matches the criteria. The expression can contain text, numbers, regular expressions or wildcards (<link href=\"text/shared/optionen/01060500.xhp#wildcards\" name=\"Wild cards\">if enabled in calculation options</link>)."
+msgstr ""
+
+#. sACAB
+#: ex_data_stat_func.xhp
+msgctxt ""
+"ex_data_stat_func.xhp\n"
+"par_id190621657742\n"
+"help.text"
+msgid "<emph>Range2</emph> – Optional. Range2 and all the following mean the same as Range1."
+msgstr ""
+
+#. FyA7p
+#: ex_data_stat_func.xhp
+msgctxt ""
+"ex_data_stat_func.xhp\n"
+"par_id317001803813193\n"
+"help.text"
+msgid "<emph>Criterion2</emph> – Optional. Criterion2 and all the following mean the same as Criterion."
+msgstr ""
+
+#. tzFDE
+#: ex_data_stat_func.xhp
+msgctxt ""
+"ex_data_stat_func.xhp\n"
+"par_id191527781733238\n"
+"help.text"
+msgid "The function can have up to 255 arguments, meaning that you can specify 127 criteria ranges and criteria for them."
+msgstr ""
+
+#. WG9hb
+#: ex_data_stat_func.xhp
+msgctxt ""
+"ex_data_stat_func.xhp\n"
+"par_id175721789527973\n"
+"help.text"
+msgid "If a cell contains TRUE, it is treated as 1, if a cell contains FALSE – as 0 (zero)."
+msgstr ""
+
+#. BYZni
+#: exponsmooth_embd.xhp
+msgctxt ""
+"exponsmooth_embd.xhp\n"
+"tit\n"
+"help.text"
+msgid "embedded text for exponential smoothing"
+msgstr ""
+
+#. iCbmB
+#: exponsmooth_embd.xhp
+msgctxt ""
+"exponsmooth_embd.xhp\n"
+"par_id0403201618694534\n"
+"help.text"
+msgid "Exponential Smoothing is a method to smooth real values in time series in order to forecast probable future values."
+msgstr ""
+
+#. dVAbW
+#: exponsmooth_embd.xhp
+msgctxt ""
+"exponsmooth_embd.xhp\n"
+"par_id0403201618694535\n"
+"help.text"
+msgid "Exponential Triple Smoothing (ETS) is a set of algorithms in which both trend and periodical (seasonal) influences are processed. Exponential Double Smoothing (EDS) is an algorithm like ETS, but without the periodical influences. EDS produces linear forecasts."
+msgstr ""
+
+#. hFteX
+#: exponsmooth_embd.xhp
+msgctxt ""
+"exponsmooth_embd.xhp\n"
+"par_id0403201618694537\n"
+"help.text"
+msgid "See the <link href=\"https://en.wikipedia.org/wiki/Exponential_smoothing\" name=\"English Wikipedia: Exponential smoothing\">Wikipedia on Exponential smoothing algorithms</link> for more information."
+msgstr ""
+
+#. xkwEK
+#: exponsmooth_embd.xhp
+msgctxt ""
+"exponsmooth_embd.xhp\n"
+"par_id0403201618594534\n"
+"help.text"
+msgid "<emph>target (mandatory):</emph> A date, time or numeric single value or range. The data point/range for which to calculate a forecast."
+msgstr ""
+
+#. WvyAv
+#: exponsmooth_embd.xhp
+msgctxt ""
+"exponsmooth_embd.xhp\n"
+"par_id040320161859459\n"
+"help.text"
+msgid "<emph>values (mandatory):</emph> A numeric array or range. <emph>values</emph> are the historical values, for which you want to forecast the next points."
+msgstr ""
+
+#. S6DPQ
+#: exponsmooth_embd.xhp
+msgctxt ""
+"exponsmooth_embd.xhp\n"
+"par_id0403201618594553\n"
+"help.text"
+msgid "<emph>timeline (mandatory):</emph> A numeric array or range. The timeline (x-value) range for the historical values."
+msgstr ""
+
+#. Re7Cm
+#: exponsmooth_embd.xhp
+msgctxt ""
+"exponsmooth_embd.xhp\n"
+"par_id040320161859450\n"
+"help.text"
+msgid "The timeline does not have to be sorted, the functions will sort it for calculations.<br/>The timeline values must have a consistent step between them.<br/>If a constant step cannot be identified in the sorted timeline, the functions will return the #NUM! error.<br/>If the ranges of both the timeline and the historical values are not the same size, the functions will return the #N/A error.<br/>If the timeline contains fewer than 2 data periods, the functions will return the #VALUE! error."
+msgstr ""
+
+#. AbNWD
+#: exponsmooth_embd.xhp
+msgctxt ""
+"exponsmooth_embd.xhp\n"
+"par_id0403201618594513\n"
+"help.text"
+msgid "<emph>data_completion (optional):</emph> a logical value TRUE or FALSE, a numeric 1 or 0, default is 1 (TRUE). A value of 0 (FALSE) will add missing data points with zero as historical value. A value of 1 (TRUE) will add missing data points by interpolating between the neighboring data points."
+msgstr ""
+
+#. ifpzB
+#: exponsmooth_embd.xhp
+msgctxt ""
+"exponsmooth_embd.xhp\n"
+"par_id0403201618594678\n"
+"help.text"
+msgid "Although the time line requires a constant step between data points, the function support up to 30% missing data points, and will add these data points."
+msgstr ""
+
+#. VGbrP
+#: exponsmooth_embd.xhp
+msgctxt ""
+"exponsmooth_embd.xhp\n"
+"par_id0403201618594650\n"
+"help.text"
+msgid "<emph>aggregation (optional):</emph> A numeric value from 1 to 7, with default 1. The aggregation parameter indicates which method will be used to aggregate identical time values:"
+msgstr ""
+
+#. MBCFC
+#: exponsmooth_embd.xhp
+msgctxt ""
+"exponsmooth_embd.xhp\n"
+"par_id0403201618594696\n"
+"help.text"
+msgid "Aggregation"
+msgstr ""
+
+#. bTUni
+#: exponsmooth_embd.xhp
+msgctxt ""
+"exponsmooth_embd.xhp\n"
+"par_id040320161859464\n"
+"help.text"
+msgid "Function"
+msgstr ""
+
+#. 5iWHQ
+#: exponsmooth_embd.xhp
+msgctxt ""
+"exponsmooth_embd.xhp\n"
+"par_id0403201618594636\n"
+"help.text"
+msgid "AVERAGE"
+msgstr ""
+
+#. hTVKC
+#: exponsmooth_embd.xhp
+msgctxt ""
+"exponsmooth_embd.xhp\n"
+"par_id0403201618594692\n"
+"help.text"
+msgid "COUNT"
+msgstr ""
+
+#. CBvPD
+#: exponsmooth_embd.xhp
+msgctxt ""
+"exponsmooth_embd.xhp\n"
+"par_id0403201618594633\n"
+"help.text"
+msgid "COUNTA"
+msgstr ""
+
+#. MsGZW
+#: exponsmooth_embd.xhp
+msgctxt ""
+"exponsmooth_embd.xhp\n"
+"par_id040320161859460\n"
+"help.text"
+msgid "MAX"
+msgstr ""
+
+#. 5dEe6
+#: exponsmooth_embd.xhp
+msgctxt ""
+"exponsmooth_embd.xhp\n"
+"par_id0403201618594658\n"
+"help.text"
+msgid "MEDIAN"
+msgstr ""
+
+#. RMqh8
+#: exponsmooth_embd.xhp
+msgctxt ""
+"exponsmooth_embd.xhp\n"
+"par_id0403201618594671\n"
+"help.text"
+msgid "MIN"
+msgstr ""
+
+#. uudvS
+#: exponsmooth_embd.xhp
+msgctxt ""
+"exponsmooth_embd.xhp\n"
+"par_id0403201618594639\n"
+"help.text"
+msgid "SUM"
+msgstr ""
+
+#. L94T5
+#: exponsmooth_embd.xhp
+msgctxt ""
+"exponsmooth_embd.xhp\n"
+"par_id0403201618595033\n"
+"help.text"
+msgid "Although the time line requires a constant step between data points, the functions will aggregate multiple points which have the same time stamp."
+msgstr ""
+
+#. YBhSu
+#: exponsmooth_embd.xhp
+msgctxt ""
+"exponsmooth_embd.xhp\n"
+"par_id0503201619582693\n"
+"help.text"
+msgid "<emph>stat_type (mandatory)</emph>: A numerical value from 1 to 9. A value indicating which statistic will be returned for the given values and x-range."
+msgstr ""
+
+#. dEXx6
+#: exponsmooth_embd.xhp
+msgctxt ""
+"exponsmooth_embd.xhp\n"
+"par_id0503201619582620\n"
+"help.text"
+msgid "The following statistics can be returned:"
+msgstr ""
+
+#. veLmQ
+#: exponsmooth_embd.xhp
+msgctxt ""
+"exponsmooth_embd.xhp\n"
+"par_id0503201619582666\n"
+"help.text"
+msgid "stat_type"
+msgstr ""
+
+#. NpXJH
+#: exponsmooth_embd.xhp
+msgctxt ""
+"exponsmooth_embd.xhp\n"
+"par_id050320161958264\n"
+"help.text"
+msgid "Statistics"
+msgstr ""
+
+#. QQqDD
+#: exponsmooth_embd.xhp
+msgctxt ""
+"exponsmooth_embd.xhp\n"
+"par_id0503201619582658\n"
+"help.text"
+msgid "Alpha smoothing parameter of ETS algorithm (base)"
+msgstr ""
+
+#. PNjZX
+#: exponsmooth_embd.xhp
+msgctxt ""
+"exponsmooth_embd.xhp\n"
+"par_id0503201619582673\n"
+"help.text"
+msgid "Gamma smoothing parameter of ETS algorithm (trend)"
+msgstr ""
+
+#. uTDMt
+#: exponsmooth_embd.xhp
+msgctxt ""
+"exponsmooth_embd.xhp\n"
+"par_id0503201619582780\n"
+"help.text"
+msgid "Beta smoothing parameter of ETS algorithm (periodic deviation)"
+msgstr ""
+
+#. 7U8Gk
+#: exponsmooth_embd.xhp
+msgctxt ""
+"exponsmooth_embd.xhp\n"
+"par_id0503201619582795\n"
+"help.text"
+msgid "Mean absolute scaled error (MASE) - a measure of the accuracy of forecasts."
+msgstr ""
+
+#. A3EiB
+#: exponsmooth_embd.xhp
+msgctxt ""
+"exponsmooth_embd.xhp\n"
+"par_id0503201619582749\n"
+"help.text"
+msgid "Symmetric mean absolute percentage error (SMAPE) - an accuracy measure based on percentage errors."
+msgstr ""
+
+#. TkWGG
+#: exponsmooth_embd.xhp
+msgctxt ""
+"exponsmooth_embd.xhp\n"
+"par_id0503201619582725\n"
+"help.text"
+msgid "Mean absolute error (MAE) – a measure of the accuracy of forecasts."
+msgstr ""
+
+#. x76sy
+#: exponsmooth_embd.xhp
+msgctxt ""
+"exponsmooth_embd.xhp\n"
+"par_id0503201619582750\n"
+"help.text"
+msgid "Root mean squared error (RMSE) - a measure of the differences between predicted and observed values."
+msgstr ""
+
+#. ENHdp
+#: exponsmooth_embd.xhp
+msgctxt ""
+"exponsmooth_embd.xhp\n"
+"par_id0503201619582771\n"
+"help.text"
+msgid "Step size detected time line (x-range). When a stepsize in months/quarters/years is detected, the stepsize is in months, otherwise the stepsize is in days in case of date(time) timeline and numeric in other cases."
+msgstr ""
+
+#. EyQAR
+#: exponsmooth_embd.xhp
+msgctxt ""
+"exponsmooth_embd.xhp\n"
+"par_id0503201619582717\n"
+"help.text"
+msgid "Number of samples in period – this is the same as argument <emph>period_length</emph>, or the calculated number in case of argument <emph>period_length</emph> being 1."
+msgstr ""
+
+#. Ahck8
+#: exponsmooth_embd.xhp
+msgctxt ""
+"exponsmooth_embd.xhp\n"
+"par_id0503201619582665\n"
+"help.text"
+msgid "<emph>confidence_level (mandatory)</emph>: A numeric value between 0 and 1 (exclusive), default is 0.95. A value indicating a confidence level for the calculated prediction interval."
+msgstr ""
+
+#. uCzY7
+#: exponsmooth_embd.xhp
+msgctxt ""
+"exponsmooth_embd.xhp\n"
+"par_id0503201619582644\n"
+"help.text"
+msgid "With values <= 0 or >= 1, the functions will return the #NUM! Error."
+msgstr ""
+
+#. FfKPv
+#: exponsmooth_embd.xhp
+msgctxt ""
+"exponsmooth_embd.xhp\n"
+"par_id0603201609412381\n"
+"help.text"
+msgid "<emph>period_length (optional)</emph>: A numeric value >= 0, the default is 1. A positive integer indicating the number of samples in a period."
+msgstr ""
+
+#. SMBbD
+#: exponsmooth_embd.xhp
+msgctxt ""
+"exponsmooth_embd.xhp\n"
+"par_id0603201609412399\n"
+"help.text"
+msgid "A value of 1 indicates that Calc is to determine the number of samples in a period automatically. <br/>A value of 0 indicates no periodic effects, a forecast is calculated with EDS algorithms. <br/>For all other positive values, forecasts are calculated with ETS algorithms.<br/>For values that not being a positive whole number, the functions will return the #NUM! Error."
+msgstr ""
+
+#. eCBMo
+#: exponsmooth_embd.xhp
+msgctxt ""
+"exponsmooth_embd.xhp\n"
+"par_id0603201608440579\n"
+"help.text"
+msgid "forecast = basevalue + trend * ∆x + periodical_aberration."
+msgstr ""
+
+#. gvP3t
+#: exponsmooth_embd.xhp
+msgctxt ""
+"exponsmooth_embd.xhp\n"
+"par_id0603201608440675\n"
+"help.text"
+msgid "forecast = ( basevalue + trend * ∆x ) * periodical_aberration."
+msgstr ""
+
+#. Dbe9v
+#: exponsmooth_embd.xhp
+msgctxt ""
+"exponsmooth_embd.xhp\n"
+"hd_id0603201610005723\n"
+"help.text"
+msgid "The table below contains a timeline and its associated values:"
+msgstr ""
+
+#. qQFvC
+#: exponsmooth_embd.xhp
+msgctxt ""
+"exponsmooth_embd.xhp\n"
+"par_id0903201610312235\n"
+"help.text"
+msgid "Timeline"
+msgstr ""
+
+#. tDYiP
+#: exponsmooth_embd.xhp
+msgctxt ""
+"exponsmooth_embd.xhp\n"
+"par_id0903201610312228\n"
+"help.text"
+msgid "Values"
+msgstr ""
+
+#. q6eaD
+#: format_graphic.xhp
+msgctxt ""
+"format_graphic.xhp\n"
+"tit\n"
+"help.text"
+msgid "Graphic"
+msgstr ""
+
+#. D9GH3
+#: format_graphic.xhp
+msgctxt ""
+"format_graphic.xhp\n"
+"par_idN10548\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/format_graphic.xhp\">Graphic</link>"
+msgstr ""
+
+#. dWAyE
+#: format_graphic.xhp
+msgctxt ""
+"format_graphic.xhp\n"
+"par_idN10558\n"
+"help.text"
+msgid "<ahelp hid=\".\">Opens a submenu to edit the properties of the selected object.</ahelp>"
+msgstr ""
+
+#. REUEW
+#: format_graphic.xhp
+msgctxt ""
+"format_graphic.xhp\n"
+"par_id1650440\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05990000.xhp\">Define Text Attributes</link>"
+msgstr ""
+
+#. TBHAS
+#: format_graphic.xhp
+msgctxt ""
+"format_graphic.xhp\n"
+"par_id363475\n"
+"help.text"
+msgid "Sets the layout and anchoring properties for text in the selected drawing or text object."
+msgstr ""
+
+#. VLNBS
+#: format_graphic.xhp
+msgctxt ""
+"format_graphic.xhp\n"
+"par_id9746696\n"
+"help.text"
+msgid "Points"
+msgstr ""
+
+#. jMEUH
+#: format_graphic.xhp
+msgctxt ""
+"format_graphic.xhp\n"
+"par_id2480544\n"
+"help.text"
+msgid "<ahelp hid=\".\">Switches <emph>Edit Points</emph> mode for an inserted freeform line on and off.</ahelp>"
+msgstr ""
+
+#. 363bk
+#: formula2value.xhp
+msgctxt ""
+"formula2value.xhp\n"
+"tit\n"
+"help.text"
+msgid "Formula to values"
+msgstr ""
+
+#. tthof
+#: formula2value.xhp
+msgctxt ""
+"formula2value.xhp\n"
+"bm_id321645231251889\n"
+"help.text"
+msgid "<bookmark_value>convert;formula to values</bookmark_value><bookmark_value>replace formula with values</bookmark_value><bookmark_value>recalculate;formula to values</bookmark_value><bookmark_value>formula to values;convert</bookmark_value><bookmark_value>formula to values;recalculate</bookmark_value>"
+msgstr ""
+
+#. u3A5z
+#: formula2value.xhp
+msgctxt ""
+"formula2value.xhp\n"
+"hd_id701645222861113\n"
+"help.text"
+msgid "<variable id=\"formula2valueh1\"><link href=\"text/scalc/01/formula2value.xhp\" name=\"formula to values\">Formula to value</link></variable>"
+msgstr ""
+
+#. CATpt
+#: formula2value.xhp
+msgctxt ""
+"formula2value.xhp\n"
+"par_id501645222861116\n"
+"help.text"
+msgid "Replaces the formula cell with value calculated by the formula. The formula is lost."
+msgstr ""
+
+#. AKrcm
+#: formula2value.xhp
+msgctxt ""
+"formula2value.xhp\n"
+"par_id51645230882532\n"
+"help.text"
+msgid "Use this command to convert formula cells into data cells. The converted cells contents becomes static and will not be recalculated."
+msgstr ""
+
+#. ebLBc
+#: ful_func.xhp
+msgctxt ""
+"ful_func.xhp\n"
+"hd_id126511265112651\n"
+"help.text"
+msgid "Syntax"
+msgstr ""
+
+#. GAZG2
+#: ful_func.xhp
+msgctxt ""
+"ful_func.xhp\n"
+"hd_id980889808898088\n"
+"help.text"
+msgid "Examples"
+msgstr ""
+
+#. jug32
+#: ful_func.xhp
+msgctxt ""
+"ful_func.xhp\n"
+"hd_id980889808897165\n"
+"help.text"
+msgid "Returns"
+msgstr ""
+
+#. 5MoDd
+#: ful_func.xhp
+msgctxt ""
+"ful_func.xhp\n"
+"par_id631556228511025\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. qKsBn
+#: ful_func.xhp
+msgctxt ""
+"ful_func.xhp\n"
+"par_id631556228544875\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. RGGDw
+#: ful_func.xhp
+msgctxt ""
+"ful_func.xhp\n"
+"par_id2595283314097\n"
+"help.text"
+msgid "<variable id=\"func_im_comp_numb\">A <emph>complex number</emph> is a string expression resulting in the form \"a+bi\" or \"a+bj\", where a and b are numbers.</variable>"
+msgstr ""
+
+#. JLMgp
+#: ful_func.xhp
+msgctxt ""
+"ful_func.xhp\n"
+"par_id26516178768369\n"
+"help.text"
+msgid "<variable id=\"func_im_real_numb\">If the <emph>complex number</emph> is actually a real number (b=0), then it can be either a string expression or a number value.</variable>"
+msgstr ""
+
+#. 9GGQu
+#: ful_func.xhp
+msgctxt ""
+"ful_func.xhp\n"
+"par_id1566939488738\n"
+"help.text"
+msgid "<variable id=\"func_im_return_text\">The function always returns a string representing a complex number.</variable>"
+msgstr ""
+
+#. dLhqV
+#: ful_func.xhp
+msgctxt ""
+"ful_func.xhp\n"
+"par_id9623767621137\n"
+"help.text"
+msgid "<variable id=\"func_im_ignor_zero\">If the result is a complex number with one of its parts (a or b) equal to zero, that part is not displayed.</variable>"
+msgstr ""
+
+#. EBpZM
+#: ful_func.xhp
+msgctxt ""
+"ful_func.xhp\n"
+"par_id962376732432\n"
+"help.text"
+msgid "<variable id=\"func_imag_zero\">The imaginary part is equal to zero, so it is not displayed in the result.</variable>"
+msgstr ""
+
+#. FdFji
+#: ful_func.xhp
+msgctxt ""
+"ful_func.xhp\n"
+"par_id29750345314640\n"
+"help.text"
+msgid "The result is presented in the string format and has the character \"i\" or \"j\" as an imaginary unit."
+msgstr ""
+
+#. CT9jZ
+#: ful_func.xhp
+msgctxt ""
+"ful_func.xhp\n"
+"par_id71584446760037\n"
+"help.text"
+msgid "<variable id=\"string255_1\">String 1 [; String 2 [; … [; String 255]]]</variable>"
+msgstr ""
+
+#. 2UTGE
+#: ful_func.xhp
+msgctxt ""
+"ful_func.xhp\n"
+"par_id631556228516997\n"
+"help.text"
+msgid "<emph>String 1, String 2, … , String 255</emph> are strings, references to cells or to cell ranges of strings."
+msgstr ""
+
+#. MFitb
+#: ful_func.xhp
+msgctxt ""
+"ful_func.xhp\n"
+"par_id401584447957914\n"
+"help.text"
+msgid "<variable id=\"integer255_1\">Integer 1 [; Integer 2 [; … [; Integer 255]]]</variable>"
+msgstr ""
+
+#. yUDDY
+#: ful_func.xhp
+msgctxt ""
+"ful_func.xhp\n"
+"par_id1001584395844941\n"
+"help.text"
+msgid "<emph>Integer 1, Integer 2, … , Integer 255</emph> are integers, references to cells or to cell ranges of integers."
+msgstr ""
+
+#. B6MF9
+#: ful_func.xhp
+msgctxt ""
+"ful_func.xhp\n"
+"par_id101584447971004\n"
+"help.text"
+msgid "<variable id=\"number254_1\">Number 1 [; Number 2 [; … [; Number 254]]]</variable>"
+msgstr ""
+
+#. b96Za
+#: ful_func.xhp
+msgctxt ""
+"ful_func.xhp\n"
+"par_id931584305947010\n"
+"help.text"
+msgid "<emph>Number 1, Number 2, … , Number 254</emph> are numbers, references to cells or to cell ranges of numbers."
+msgstr ""
+
+#. kEEQr
+#: ful_func.xhp
+msgctxt ""
+"ful_func.xhp\n"
+"par_id101584447970004\n"
+"help.text"
+msgid "<variable id=\"number255_1\">Number 1 [; Number 2 [; … [; Number 255]]]</variable>"
+msgstr ""
+
+#. QKcwi
+#: ful_func.xhp
+msgctxt ""
+"ful_func.xhp\n"
+"par_id931584395947010\n"
+"help.text"
+msgid "<emph>Number 1, Number 2, … , Number 255</emph> are numbers, references to cells or to cell ranges of numbers."
+msgstr ""
+
+#. RLXz8
+#: ful_func.xhp
+msgctxt ""
+"ful_func.xhp\n"
+"par_id291584447988879\n"
+"help.text"
+msgid "<variable id=\"logical255_1\">Logical 1 [; Logical 2 [; … [; Logical 255]]]</variable>"
+msgstr ""
+
+#. JTdAs
+#: ful_func.xhp
+msgctxt ""
+"ful_func.xhp\n"
+"par_id931584395957010\n"
+"help.text"
+msgid "<emph>Logical 1, Logical 2, … , Logical 255</emph> are boolean values, references to cells or to cell ranges of logical values."
+msgstr ""
+
+#. unnEF
+#: ful_func.xhp
+msgctxt ""
+"ful_func.xhp\n"
+"par_id91584448008632\n"
+"help.text"
+msgid "<variable id=\"complex255_1\">Complex 1 [; Complex 2 [; … [; Complex 255]]]</variable>"
+msgstr ""
+
+#. NuCbV
+#: ful_func.xhp
+msgctxt ""
+"ful_func.xhp\n"
+"par_id931584335947010\n"
+"help.text"
+msgid "<emph>Complex 1, Complex 2, … ,Complex 255</emph> are complex numbers, references to cells or to cell ranges of complex numbers. Complex numbers are entered in the form \"x+yi\" or \"x+yj\"."
+msgstr ""
+
+#. jWF7Y
+#: ful_func.xhp
+msgctxt ""
+"ful_func.xhp\n"
+"par_id61584448028298\n"
+"help.text"
+msgid "<variable id=\"reference255_1\">Reference 1 [; Reference 2 [; … [; Reference 255]]]</variable>"
+msgstr ""
+
+#. dxwtx
+#: ful_func.xhp
+msgctxt ""
+"ful_func.xhp\n"
+"par_id431584335947010\n"
+"help.text"
+msgid "<emph>Reference 1, Reference 2, … ,Reference 255</emph> are references to cells."
+msgstr ""
+
+#. 4BGvn
+#: ful_func.xhp
+msgctxt ""
+"ful_func.xhp\n"
+"par_id1001601332672155\n"
+"help.text"
+msgid "This function is always recalculated whenever a recalculation occurs."
+msgstr ""
+
+#. 8DbP2
+#: func_aggregate.xhp
+msgctxt ""
+"func_aggregate.xhp\n"
+"tit\n"
+"help.text"
+msgid "AGGREGATE function"
+msgstr ""
+
+#. X65dG
+#: func_aggregate.xhp
+msgctxt ""
+"func_aggregate.xhp\n"
+"bm_id126123001625791\n"
+"help.text"
+msgid "<bookmark_value>AGGREGATE function</bookmark_value>"
+msgstr ""
+
+#. T2Az9
+#: func_aggregate.xhp
+msgctxt ""
+"func_aggregate.xhp\n"
+"hd_id3154073\n"
+"help.text"
+msgid "<variable id=\"aggregate_head\"><link href=\"text/scalc/01/func_aggregate.xhp\">AGGREGATE</link></variable> function"
+msgstr ""
+
+#. m2Tdo
+#: func_aggregate.xhp
+msgctxt ""
+"func_aggregate.xhp\n"
+"par_id2209201514174373\n"
+"help.text"
+msgid "<ahelp hid=\".\"><variable id=\"aggregate_des\">This function returns an aggregate result of the calculations in the range. You can use different aggregate functions listed below. The Aggregate function enables you to omit hidden rows, errors, SUBTOTAL and other AGGREGATE function results in the calculation.</variable></ahelp>"
+msgstr ""
+
+#. swMHB
+#: func_aggregate.xhp
+msgctxt ""
+"func_aggregate.xhp\n"
+"par_id2209201514174453\n"
+"help.text"
+msgid "AGGREGATE function is applied to vertical ranges of data with activated AutoFilter. If AutoFilter is not activated, automatic recalculation of the function result does not work for newly hidden rows. It is not supposed to work with horizontal ranges, however it can be applied to them as well, but with limitations. In particular, the AGGREGATE function applied to a horizontal data range does not recognize hiding columns, however correctly omits errors and results of SUBTOTAL and other AGGREGATE functions embedded into the row."
+msgstr ""
+
+#. 7VEyN
+#: func_aggregate.xhp
+msgctxt ""
+"func_aggregate.xhp\n"
+"par_id200801176228491\n"
+"help.text"
+msgid "AGGREGATE(Function; Option; Number 1[; Number 2][; ... ;[Number 253]])"
+msgstr ""
+
+#. Xt2VS
+#: func_aggregate.xhp
+msgctxt ""
+"func_aggregate.xhp\n"
+"par_id2309201516102726\n"
+"help.text"
+msgid "or"
+msgstr ""
+
+#. 2nzVY
+#: func_aggregate.xhp
+msgctxt ""
+"func_aggregate.xhp\n"
+"par_id30181907128680\n"
+"help.text"
+msgid "AGGREGATE(Function; Option; Array[; k])"
+msgstr ""
+
+#. WPGsi
+#: func_aggregate.xhp
+msgctxt ""
+"func_aggregate.xhp\n"
+"par_id2209201514174378\n"
+"help.text"
+msgid "<emph>Function</emph> – obligatory argument. A function index or a reference to a cell with value from 1 to 19, in accordance with the following table."
+msgstr ""
+
+#. EKz89
+#: func_aggregate.xhp
+msgctxt ""
+"func_aggregate.xhp\n"
+"par_id2309201511454963\n"
+"help.text"
+msgid "Function index"
+msgstr ""
+
+#. u8cTQ
+#: func_aggregate.xhp
+msgctxt ""
+"func_aggregate.xhp\n"
+"par_id2309201511454945\n"
+"help.text"
+msgid "Function applied"
+msgstr ""
+
+#. yEcCJ
+#: func_aggregate.xhp
+msgctxt ""
+"func_aggregate.xhp\n"
+"par_id2309201511360043\n"
+"help.text"
+msgid "AVERAGE"
+msgstr ""
+
+#. LRogz
+#: func_aggregate.xhp
+msgctxt ""
+"func_aggregate.xhp\n"
+"par_id230920151136007\n"
+"help.text"
+msgid "COUNT"
+msgstr ""
+
+#. EQF7t
+#: func_aggregate.xhp
+msgctxt ""
+"func_aggregate.xhp\n"
+"par_id2309201511360018\n"
+"help.text"
+msgid "COUNTA"
+msgstr ""
+
+#. 8HhQr
+#: func_aggregate.xhp
+msgctxt ""
+"func_aggregate.xhp\n"
+"par_id2309201511360026\n"
+"help.text"
+msgid "MAX"
+msgstr ""
+
+#. VqbLM
+#: func_aggregate.xhp
+msgctxt ""
+"func_aggregate.xhp\n"
+"par_id2309201511360078\n"
+"help.text"
+msgid "MIN"
+msgstr ""
+
+#. GjAYj
+#: func_aggregate.xhp
+msgctxt ""
+"func_aggregate.xhp\n"
+"par_id2309201511360087\n"
+"help.text"
+msgid "PRODUCT"
+msgstr ""
+
+#. vRU5e
+#: func_aggregate.xhp
+msgctxt ""
+"func_aggregate.xhp\n"
+"par_id2309201511360153\n"
+"help.text"
+msgid "STDEV.S"
+msgstr ""
+
+#. VNpFW
+#: func_aggregate.xhp
+msgctxt ""
+"func_aggregate.xhp\n"
+"par_id2309201511360178\n"
+"help.text"
+msgid "STDEV.P"
+msgstr ""
+
+#. DwcTK
+#: func_aggregate.xhp
+msgctxt ""
+"func_aggregate.xhp\n"
+"par_id2309201511360199\n"
+"help.text"
+msgid "SUM"
+msgstr ""
+
+#. BW2Yf
+#: func_aggregate.xhp
+msgctxt ""
+"func_aggregate.xhp\n"
+"par_id2309201511360174\n"
+"help.text"
+msgid "VAR.S"
+msgstr ""
+
+#. DknCD
+#: func_aggregate.xhp
+msgctxt ""
+"func_aggregate.xhp\n"
+"par_id2309201511360120\n"
+"help.text"
+msgid "VAR.P"
+msgstr ""
+
+#. qTcKa
+#: func_aggregate.xhp
+msgctxt ""
+"func_aggregate.xhp\n"
+"par_id2309201511360122\n"
+"help.text"
+msgid "MEDIAN"
+msgstr ""
+
+#. Vm9Es
+#: func_aggregate.xhp
+msgctxt ""
+"func_aggregate.xhp\n"
+"par_id230920151136016\n"
+"help.text"
+msgid "MODE.SNGL"
+msgstr ""
+
+#. jvBDw
+#: func_aggregate.xhp
+msgctxt ""
+"func_aggregate.xhp\n"
+"par_id2309201511360180\n"
+"help.text"
+msgid "LARGE"
+msgstr ""
+
+#. MYUUL
+#: func_aggregate.xhp
+msgctxt ""
+"func_aggregate.xhp\n"
+"par_id2309201511360150\n"
+"help.text"
+msgid "SMALL"
+msgstr ""
+
+#. FK7At
+#: func_aggregate.xhp
+msgctxt ""
+"func_aggregate.xhp\n"
+"par_id2309201511360157\n"
+"help.text"
+msgid "PERCENTILE.INC"
+msgstr ""
+
+#. jRDcG
+#: func_aggregate.xhp
+msgctxt ""
+"func_aggregate.xhp\n"
+"par_id2309201511360151\n"
+"help.text"
+msgid "QUARTILE.INC"
+msgstr ""
+
+#. X8cbt
+#: func_aggregate.xhp
+msgctxt ""
+"func_aggregate.xhp\n"
+"par_id230920151136017\n"
+"help.text"
+msgid "PERCENTILE.EXC"
+msgstr ""
+
+#. x7Qhp
+#: func_aggregate.xhp
+msgctxt ""
+"func_aggregate.xhp\n"
+"par_id2309201511360169\n"
+"help.text"
+msgid "QUARTILE.EXC"
+msgstr ""
+
+#. ZeuFJ
+#: func_aggregate.xhp
+msgctxt ""
+"func_aggregate.xhp\n"
+"par_id2209201514174372\n"
+"help.text"
+msgid "<emph>Option</emph> – obligatory argument. An option index or reference to a cell with value from 0 to 7 determines what to ignore in the range for the function."
+msgstr ""
+
+#. 3cZPH
+#: func_aggregate.xhp
+msgctxt ""
+"func_aggregate.xhp\n"
+"par_id2309201512011557\n"
+"help.text"
+msgid "Option index"
+msgstr ""
+
+#. Lbpgg
+#: func_aggregate.xhp
+msgctxt ""
+"func_aggregate.xhp\n"
+"par_id2309201512011551\n"
+"help.text"
+msgid "Option applied"
+msgstr ""
+
+#. ph2Z6
+#: func_aggregate.xhp
+msgctxt ""
+"func_aggregate.xhp\n"
+"par_id2309201512011567\n"
+"help.text"
+msgid "Ignore only nested SUBTOTAL and AGGREGATE functions"
+msgstr ""
+
+#. AGUis
+#: func_aggregate.xhp
+msgctxt ""
+"func_aggregate.xhp\n"
+"par_id315771547630277\n"
+"help.text"
+msgid "Ignore only hidden rows, nested SUBTOTAL and AGGREGATE functions"
+msgstr ""
+
+#. EAKJn
+#: func_aggregate.xhp
+msgctxt ""
+"func_aggregate.xhp\n"
+"par_id2309201512011514\n"
+"help.text"
+msgid "Ignore only errors, nested SUBTOTAL and AGGREGATE functions"
+msgstr ""
+
+#. ofBiE
+#: func_aggregate.xhp
+msgctxt ""
+"func_aggregate.xhp\n"
+"par_id2309201512011547\n"
+"help.text"
+msgid "Ignore hidden rows, errors, nested SUBTOTAL and AGGREGATE functions"
+msgstr ""
+
+#. oTDkv
+#: func_aggregate.xhp
+msgctxt ""
+"func_aggregate.xhp\n"
+"par_id2309201512011510\n"
+"help.text"
+msgid "Ignore nothing"
+msgstr ""
+
+#. 5SwRv
+#: func_aggregate.xhp
+msgctxt ""
+"func_aggregate.xhp\n"
+"par_id2309201512011592\n"
+"help.text"
+msgid "Ignore only hidden rows"
+msgstr ""
+
+#. eDQoE
+#: func_aggregate.xhp
+msgctxt ""
+"func_aggregate.xhp\n"
+"par_id230920151201150\n"
+"help.text"
+msgid "Ignore only errors"
+msgstr ""
+
+#. AEVKM
+#: func_aggregate.xhp
+msgctxt ""
+"func_aggregate.xhp\n"
+"par_id2309201512011539\n"
+"help.text"
+msgid "Ignore only hidden rows and errors"
+msgstr ""
+
+#. ztEnu
+#: func_aggregate.xhp
+msgctxt ""
+"func_aggregate.xhp\n"
+"par_id220402843321947\n"
+"help.text"
+msgid "<emph>Number1</emph> – required argument. The first numeric argument (if the range is set by a list of values inside the function) or a reference to a cell that contains it."
+msgstr ""
+
+#. wNPAv
+#: func_aggregate.xhp
+msgctxt ""
+"func_aggregate.xhp\n"
+"par_id2309201514193338\n"
+"help.text"
+msgid "<emph>Number2, 3, ...</emph> – optional. A numeric argument or a reference to a cell (up to 253 arguments), for which you need the aggregate value."
+msgstr ""
+
+#. VQD44
+#: func_aggregate.xhp
+msgctxt ""
+"func_aggregate.xhp\n"
+"par_id99381371214702\n"
+"help.text"
+msgid "<emph>Array</emph> – required argument. The array can be specified by the boundaries of the range, the name of the named range or the column label."
+msgstr ""
+
+#. tQG5i
+#: func_aggregate.xhp
+msgctxt ""
+"func_aggregate.xhp\n"
+"par_id2309201515555812\n"
+"help.text"
+msgid "For using column labels “Automatically find columns and rows labels” function needs to be enabled."
+msgstr ""
+
+#. FChoZ
+#: func_aggregate.xhp
+msgctxt ""
+"func_aggregate.xhp\n"
+"par_id2209201514174370\n"
+"help.text"
+msgid "<emph>k</emph> – required argument for the following functions: LARGE, SMALL, PERCENTILE.INC, QUARTILE.INC, PERCENTILE.EXC, QUARTILE.EXC. It is a numeric argument, which must correspond to the second argument of these functions."
+msgstr ""
+
+#. 5M7aG
+#: func_aggregate.xhp
+msgctxt ""
+"func_aggregate.xhp\n"
+"par_id2309201518454314\n"
+"help.text"
+msgid "<emph>ColumnOne</emph>"
+msgstr ""
+
+#. gPqUD
+#: func_aggregate.xhp
+msgctxt ""
+"func_aggregate.xhp\n"
+"par_id2309201518454361\n"
+"help.text"
+msgid "<emph>ColumnTwo</emph>"
+msgstr ""
+
+#. TGf5y
+#: func_aggregate.xhp
+msgctxt ""
+"func_aggregate.xhp\n"
+"par_id2309201518454323\n"
+"help.text"
+msgid "<emph>ColumnThree</emph>"
+msgstr ""
+
+#. cGmqm
+#: func_aggregate.xhp
+msgctxt ""
+"func_aggregate.xhp\n"
+"par_id27530261624700\n"
+"help.text"
+msgid "#DIV/0!"
+msgstr ""
+
+#. R9Bfd
+#: func_aggregate.xhp
+msgctxt ""
+"func_aggregate.xhp\n"
+"par_id2309201517384053\n"
+"help.text"
+msgid "3"
+msgstr ""
+
+#. WMMFj
+#: func_aggregate.xhp
+msgctxt ""
+"func_aggregate.xhp\n"
+"id_par29987248418152\n"
+"help.text"
+msgid "#VALUE!"
+msgstr ""
+
+#. rBEnM
+#: func_aggregate.xhp
+msgctxt ""
+"func_aggregate.xhp\n"
+"par_id230920152006414\n"
+"help.text"
+msgid "<item type=\"input\">=AGGREGATE(4;2;A2:A9)</item><br/>Returns maximum value for the range A2:A9 = 34, whereas <item type=\"input\">=MAX(A2:A9)</item> returns the error Err:511."
+msgstr ""
+
+#. Tx8Vx
+#: func_aggregate.xhp
+msgctxt ""
+"func_aggregate.xhp\n"
+"par_id2309201520064180\n"
+"help.text"
+msgid "<item type=\"input\">=AGGREGATE(9;5;A5:C5)</item><br/>Returns sum for the range A5:C5 = 29, even if some of the columns are hidden."
+msgstr ""
+
+#. GPwbY
+#: func_aggregate.xhp
+msgctxt ""
+"func_aggregate.xhp\n"
+"par_id2309201520064118\n"
+"help.text"
+msgid "<item type=\"input\">=AGGREGATE(9;5;B2:B9)</item><br/>Returns sum of the column B = 115. If any row is hidden, the function omit its value, for example if the 7th row is hidden, the function returns 95."
+msgstr ""
+
+#. eyn5c
+#: func_aggregate.xhp
+msgctxt ""
+"func_aggregate.xhp\n"
+"par_id196152404026557\n"
+"help.text"
+msgid "If you need to apply the function with a 3D range, this example shows how to do it."
+msgstr ""
+
+#. nKQgg
+#: func_aggregate.xhp
+msgctxt ""
+"func_aggregate.xhp\n"
+"par_id2309201520180167\n"
+"help.text"
+msgid "<item type=\"input\">=AGGREGATE(13;3;Sheet1.B2:B9:Sheet3.B2:B9)</item><br/>The function returns mode of the values of second columns through sheets 1:3 (that have the same data) = 8."
+msgstr ""
+
+#. kDEuY
+#: func_aggregate.xhp
+msgctxt ""
+"func_aggregate.xhp\n"
+"par_id2309201520395365\n"
+"help.text"
+msgid "You can use reference to a cell or a range for every argument in the formula. The following example shows how it works. Besides, it shows that you can use column labels to specify an array."
+msgstr ""
+
+#. cFhbt
+#: func_aggregate.xhp
+msgctxt ""
+"func_aggregate.xhp\n"
+"par_id2309201520395380\n"
+"help.text"
+msgid "<item type=\"input\">=AGGREGATE(E3;E5;'ColumnOne')</item><br/>If E3 = 13 and E5 = 5, the function returns mode of the first column = 10."
+msgstr ""
+
+#. cjxCG
+#: func_aggregate.xhp
+msgctxt ""
+"func_aggregate.xhp\n"
+"par_id241712879431120\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060184.xhp#average\">AVERAGE</link>, <link href=\"text/scalc/01/04060181.xhp#count\">COUNT</link>, <link href=\"text/scalc/01/04060181.xhp#counta\">COUNTA</link>, <link href=\"text/scalc/01/04060184.xhp#max\">MAX</link>, <link href=\"text/scalc/01/04060184.xhp#min\">MIN</link>, <link href=\"text/scalc/01/04060106.xhp#Section26\">PRODUCT</link>, <link href=\"text/scalc/01/04060185.xhp#stdevdots\">STDEV.S</link>, <link href=\"text/scalc/01/04060185.xhp#stdevdotp\">STDEV.P</link>, <link href=\"text/scalc/01/04060106.xhp#Section16\">SUM</link>, <link href=\"text/scalc/01/04060185.xhp#vardots\">VAR.S</link>, <link href=\"text/scalc/01/04060185.xhp#vardotp\">VAR.P</link>, <link href=\"text/scalc/01/04060184.xhp#median\">MEDIAN</link>, <link href=\"text/scalc/01/04060184.xhp#modedotsngl\">MODE.SNGL</link>, <link href=\"text/scalc/01/04060183.xhp#large\">LARGE</link>, <link href=\"text/scalc/01/04060183.xhp#small\">SMALL</link>, <link href=\"text/scalc/01/04060184.xhp#percentileinc\">PERCENTILE.INC</link> , <link href=\"text/scalc/01/04060184.xhp#quartileinc\">QUARTILE.INC</link>, <link href=\"text/scalc/01/04060184.xhp#percentileexc\">PERCENTILE.EXC</link>, <link href=\"text/scalc/01/04060184.xhp#quartileexc\">QUARTILE.EXC</link>"
+msgstr ""
+
+#. DCMbQ
+#: func_aggregate.xhp
+msgctxt ""
+"func_aggregate.xhp\n"
+"par_id125062615028497\n"
+"help.text"
+msgid "<link href=\"text/shared/optionen/01060500.xhp#hd_id3156199\">Automatically find column and row labels</link>"
+msgstr ""
+
+#. czFkz
+#: func_arabic.xhp
+msgctxt ""
+"func_arabic.xhp\n"
+"tit\n"
+"help.text"
+msgid "ARABIC Function"
+msgstr ""
+
+#. ze8wK
+#: func_arabic.xhp
+msgctxt ""
+"func_arabic.xhp\n"
+"bm_id831542233029549\n"
+"help.text"
+msgid "<bookmark_value>ARABIC function</bookmark_value> <bookmark_value>text functions;convert roman numbers</bookmark_value>"
+msgstr ""
+
+#. BNUYi
+#: func_arabic.xhp
+msgctxt ""
+"func_arabic.xhp\n"
+"hd_id881628776094597\n"
+"help.text"
+msgid "<variable id=\"Arabic_h1\"><link href=\"text/scalc/01/func_arabic.xhp\" name=\"function ARABIC\">ARABIC</link></variable>"
+msgstr ""
+
+#. xPXrU
+#: func_arabic.xhp
+msgctxt ""
+"func_arabic.xhp\n"
+"par_id541542230672101\n"
+"help.text"
+msgid "<variable id=\"func_arabic_desc\"><ahelp hid=\".\">Returns the numeric value corresponding to a Roman number expressed as text.</ahelp></variable>"
+msgstr ""
+
+#. 2UE9g
+#: func_arabic.xhp
+msgctxt ""
+"func_arabic.xhp\n"
+"par_id151634221012221\n"
+"help.text"
+msgid "The largest Roman number that can be converted is MMMCMXCIX (or one of its simplified versions), which is equivalent to 3999."
+msgstr ""
+
+#. AueXr
+#: func_arabic.xhp
+msgctxt ""
+"func_arabic.xhp\n"
+"par_id701542231253817\n"
+"help.text"
+msgid "<input>ARABIC(Text)</input>"
+msgstr ""
+
+#. sWMEb
+#: func_arabic.xhp
+msgctxt ""
+"func_arabic.xhp\n"
+"par_id621542232197446\n"
+"help.text"
+msgid "<emph>Text</emph>: text representing a Roman number."
+msgstr ""
+
+#. WcE8r
+#: func_arabic.xhp
+msgctxt ""
+"func_arabic.xhp\n"
+"par_id451628776707264\n"
+"help.text"
+msgid "<input>=ARABIC(\"MXIV\")</input> returns the numeric value 1014."
+msgstr ""
+
+#. hDmDF
+#: func_arabic.xhp
+msgctxt ""
+"func_arabic.xhp\n"
+"par_id101628778036375\n"
+"help.text"
+msgid "<input>=ARABIC(\"MMII\")</input> returns the numeric value 2002."
+msgstr ""
+
+#. XAwC8
+#: func_arabic.xhp
+msgctxt ""
+"func_arabic.xhp\n"
+"par_id101628778036134\n"
+"help.text"
+msgid "<input>=ARABIC(\"\")</input> returns 0."
+msgstr ""
+
+#. yugTC
+#: func_asc.xhp
+msgctxt ""
+"func_asc.xhp\n"
+"tit\n"
+"help.text"
+msgid "ASC Function"
+msgstr ""
+
+#. H3kmF
+#: func_asc.xhp
+msgctxt ""
+"func_asc.xhp\n"
+"bm_id831542233029549\n"
+"help.text"
+msgid "<bookmark_value>ASC function</bookmark_value> <bookmark_value>text functions;katakana characters</bookmark_value>"
+msgstr ""
+
+#. 5sWTB
+#: func_asc.xhp
+msgctxt ""
+"func_asc.xhp\n"
+"hd_id881628776094597\n"
+"help.text"
+msgid "<variable id=\"Asc_h1\"><link href=\"text/scalc/01/func_asc.xhp\" name=\"function ASC\">ASC</link></variable>"
+msgstr ""
+
+#. gtGVG
+#: func_asc.xhp
+msgctxt ""
+"func_asc.xhp\n"
+"par_id541542230672101\n"
+"help.text"
+msgid "<variable id=\"func_asc_desc\"><ahelp hid=\".\">Converts double-byte (full-width) characters to single-byte (half-width) ASCII and katakana characters.</ahelp></variable>"
+msgstr ""
+
+#. zwX68
+#: func_asc.xhp
+msgctxt ""
+"func_asc.xhp\n"
+"par_id151634221012221\n"
+"help.text"
+msgid "See <link href=\"https://wiki.documentfoundation.org/Calc/Features/JIS_and_ASC_functions\" name=\"wiki.documentfoundation.org Calc/Features/JIS and ASC functions\">https://wiki.documentfoundation.org/Calc/Features/JIS_and_ASC_functions</link> for a conversion table."
+msgstr ""
+
+#. nWQan
+#: func_asc.xhp
+msgctxt ""
+"func_asc.xhp\n"
+"par_id701542231253817\n"
+"help.text"
+msgid "<input>ASC(Text)</input>"
+msgstr ""
+
+#. npFEH
+#: func_asc.xhp
+msgctxt ""
+"func_asc.xhp\n"
+"par_id621542232197446\n"
+"help.text"
+msgid "<emph>Text</emph>: the text string that contains characters to be converted."
+msgstr ""
+
+#. d9fM4
+#: func_asc.xhp
+msgctxt ""
+"func_asc.xhp\n"
+"par_id481637763523789\n"
+"help.text"
+msgid "Applying the ASC function to a string composed of single-byte characters will return the input string without any modifications."
+msgstr ""
+
+#. QXBHB
+#: func_asc.xhp
+msgctxt ""
+"func_asc.xhp\n"
+"par_id451628776707264\n"
+"help.text"
+msgid "<input>=ASC(\"LibreOffice\")</input> returns the string \"LibreOffice\". No modifications were made because all characters are single-byte characters."
+msgstr ""
+
+#. f8rff
+#: func_asc.xhp
+msgctxt ""
+"func_asc.xhp\n"
+"par_id101628778036375\n"
+"help.text"
+msgid "<input>=ASC(\"ライト\")</input> returns the string \"ライト\", which is composed of single-byte characters."
+msgstr ""
+
+#. y9q7t
+#: func_averageif.xhp
+msgctxt ""
+"func_averageif.xhp\n"
+"tit\n"
+"help.text"
+msgid "AVERAGEIF function"
+msgstr ""
+
+#. Xqih3
+#: func_averageif.xhp
+msgctxt ""
+"func_averageif.xhp\n"
+"bm_id237812197829662\n"
+"help.text"
+msgid "<bookmark_value>AVERAGEIF function</bookmark_value> <bookmark_value>arithmetic mean;satisfying condition</bookmark_value>"
+msgstr ""
+
+#. c5oJz
+#: func_averageif.xhp
+msgctxt ""
+"func_averageif.xhp\n"
+"hd_id16852304621982\n"
+"help.text"
+msgid "<variable id=\"averageif_head\"><link href=\"text/scalc/01/func_averageif.xhp\">AVERAGEIF</link></variable> function"
+msgstr ""
+
+#. DFigD
+#: func_averageif.xhp
+msgctxt ""
+"func_averageif.xhp\n"
+"par_id7281266615152\n"
+"help.text"
+msgid "<ahelp hid=\".\"><variable id=\"averageif_des\">Returns the arithmetic mean of all cells in a range that satisfy a given condition. The AVERAGEIF function sums up all the results that match the logical test and divides this sum by the quantity of selected values.</variable></ahelp>"
+msgstr ""
+
+#. jto8p
+#: func_averageif.xhp
+msgctxt ""
+"func_averageif.xhp\n"
+"par_id200801176228491\n"
+"help.text"
+msgid "AVERAGEIF(Range; Criterion [; Average_Range ])"
+msgstr ""
+
+#. CCW4A
+#: func_averageif.xhp
+msgctxt ""
+"func_averageif.xhp\n"
+"par_id15226321619829\n"
+"help.text"
+msgid "<emph>Range</emph> – required argument. An array, a name of named range or a label of a column or a row containing numbers for averaging or numbers or text for the condition."
+msgstr ""
+
+#. sDeiD
+#: func_averageif.xhp
+msgctxt ""
+"func_averageif.xhp\n"
+"par_id174711913219765\n"
+"help.text"
+msgid "<emph>Average_Range</emph> – optional. It is a range of values for calculating the mean."
+msgstr ""
+
+#. kCbPD
+#: func_averageif.xhp
+msgctxt ""
+"func_averageif.xhp\n"
+"par_id45123108916423\n"
+"help.text"
+msgid "If the <emph>Average_Range</emph> is not specified, <emph>Range</emph> is used for both, the calculation of the mean and the search according to the condition. If <emph>Average_Range</emph> is specified, the <emph>Range</emph> is used only for the condition test, while <emph>Average_Range</emph> is used for the average calculation."
+msgstr ""
+
+#. 8v8Zv
+#: func_averageif.xhp
+msgctxt ""
+"func_averageif.xhp\n"
+"par_id278275053653\n"
+"help.text"
+msgid "If a cell in a range of values for calculating the mean is empty or contains text, function AVERAGEIF ignores this cell.<br/>If the whole range is empty, contains only text or all values of the range do not satisfy the condition (or any combination of those), the function returns the #DIV/0! error."
+msgstr ""
+
+#. u7E4B
+#: func_averageif.xhp
+msgctxt ""
+"func_averageif.xhp\n"
+"hd_id229513120314273\n"
+"help.text"
+msgid "Simple usage"
+msgstr ""
+
+#. CqBc8
+#: func_averageif.xhp
+msgctxt ""
+"func_averageif.xhp\n"
+"par_id2509201519225446\n"
+"help.text"
+msgid "<item type=\"input\">=AVERAGEIF(B2:B6;\"<35\")</item>"
+msgstr ""
+
+#. DFAzM
+#: func_averageif.xhp
+msgctxt ""
+"func_averageif.xhp\n"
+"par_id11322891219251\n"
+"help.text"
+msgid "Calculates the average for values of the range B2:B6 that are less than 35. Returns 19, because the second row does not participate in the calculation."
+msgstr ""
+
+#. qcBmp
+#: func_averageif.xhp
+msgctxt ""
+"func_averageif.xhp\n"
+"par_id250920151922590\n"
+"help.text"
+msgid "<item type=\"input\">=AVERAGEIF(B2:B6;\"<\"&MAX(B2:B6))</item>"
+msgstr ""
+
+#. DqwCP
+#: func_averageif.xhp
+msgctxt ""
+"func_averageif.xhp\n"
+"par_id3813266131474\n"
+"help.text"
+msgid "Calculates the average for values of the same range that are less than the maximum value of this range. Returns 19, because the largest value (the second row) does not participate in the calculation."
+msgstr ""
+
+#. oFhok
+#: func_averageif.xhp
+msgctxt ""
+"func_averageif.xhp\n"
+"par_id2509201519230832\n"
+"help.text"
+msgid "<item type=\"input\">=AVERAGEIF(B2:B6;\">\"&SMALL(B2:B6;1))</item>"
+msgstr ""
+
+#. 6MArD
+#: func_averageif.xhp
+msgctxt ""
+"func_averageif.xhp\n"
+"par_id243522732832394\n"
+"help.text"
+msgid "Calculates the average for values of the same range that are greater than the first smallest value of this range. Returns 25, because the first smallest value (the fourth row) does not participate in the calculation."
+msgstr ""
+
+#. gxAAH
+#: func_averageif.xhp
+msgctxt ""
+"func_averageif.xhp\n"
+"hd_id2101254257133\n"
+"help.text"
+msgid "Using the Average_Range"
+msgstr ""
+
+#. 4oRE4
+#: func_averageif.xhp
+msgctxt ""
+"func_averageif.xhp\n"
+"par_id2509201519315584\n"
+"help.text"
+msgid "<item type=\"input\">=AVERAGEIF(B2:B6;\"<35\";C2:C6)</item>"
+msgstr ""
+
+#. AGDaT
+#: func_averageif.xhp
+msgctxt ""
+"func_averageif.xhp\n"
+"par_id148222637631350\n"
+"help.text"
+msgid "The function searches what values are less than 35 in the B2:B6 range, and calculates the average of corresponding values from the C2:C6 range. Returns 145, because the second row does not participate in the calculation."
+msgstr ""
+
+#. crnMW
+#: func_averageif.xhp
+msgctxt ""
+"func_averageif.xhp\n"
+"par_id2509201519315535\n"
+"help.text"
+msgid "<item type=\"input\">=AVERAGEIF(B2:B6;\">\"&MIN(B2:B6);C2:C6)</item>"
+msgstr ""
+
+#. tiu8M
+#: func_averageif.xhp
+msgctxt ""
+"func_averageif.xhp\n"
+"par_id2412836525208\n"
+"help.text"
+msgid "The function searches what values from the range B2:B6 are greater than the least value in the B2:B6 range, and calculates the average of corresponding values from the C2:C6 range. Returns 113.3, because the fourth row (where there is the least value in the range B2:B6) does not participate in the calculation."
+msgstr ""
+
+#. HAi7e
+#: func_averageif.xhp
+msgctxt ""
+"func_averageif.xhp\n"
+"par_id2509201519315547\n"
+"help.text"
+msgid "<item type=\"input\">=AVERAGEIF(B2:B6;\"<\"&LARGE(B2:B6;2);C2:C6)</item>"
+msgstr ""
+
+#. T6LU3
+#: func_averageif.xhp
+msgctxt ""
+"func_averageif.xhp\n"
+"par_id173931101529497\n"
+"help.text"
+msgid "The function searches what values from the range B2:B6 are less than the second large value in the B2:B6 range, and calculates the average of corresponding values from the C2:C6 range. Returns 180, because only the fourth row participates in the calculation."
+msgstr ""
+
+#. Naigm
+#: func_averageif.xhp
+msgctxt ""
+"func_averageif.xhp\n"
+"hd_id30054471316969\n"
+"help.text"
+msgid "Using regular expressions"
+msgstr ""
+
+#. rJEzm
+#: func_averageif.xhp
+msgctxt ""
+"func_averageif.xhp\n"
+"par_id2509201519360514\n"
+"help.text"
+msgid "<item type=\"input\">=AVERAGEIF(A2:A6;\"pen\";B2:B6)</item>"
+msgstr ""
+
+#. pFhEN
+#: func_averageif.xhp
+msgctxt ""
+"func_averageif.xhp\n"
+"par_id14714860719948\n"
+"help.text"
+msgid "The function searches what cells from the range A2:A6 contain only the word “pen”, and calculates the average of corresponding values from the B2:B6 range. Returns 35, because only the second row participates in the calculation. The search is performed in the A2:A6 range, but the values are returned from the B2:B6 range."
+msgstr ""
+
+#. g76se
+#: func_averageif.xhp
+msgctxt ""
+"func_averageif.xhp\n"
+"par_id250920151936096\n"
+"help.text"
+msgid "<item type=\"input\">=AVERAGEIF(A2:A6;\"pen.*\";B2:B6)</item>"
+msgstr ""
+
+#. QX275
+#: func_averageif.xhp
+msgctxt ""
+"func_averageif.xhp\n"
+"par_id26959239098104\n"
+"help.text"
+msgid "The function searches what cells from the range A2:A6 begin with “pen” ending with any quantity of other characters, and calculates the average of corresponding values from the B2:B6 range. Returns 27.5, because now also “pencil” satisfies the condition, and both, first and second rows participate in the calculation."
+msgstr ""
+
+#. L3vXX
+#: func_averageif.xhp
+msgctxt ""
+"func_averageif.xhp\n"
+"par_id2509201519361352\n"
+"help.text"
+msgid "<item type=\"input\">=AVERAGEIF(A2:A6;\".*book.*\";B2:B6)</item>"
+msgstr ""
+
+#. pSESy
+#: func_averageif.xhp
+msgctxt ""
+"func_averageif.xhp\n"
+"par_id227041304619482\n"
+"help.text"
+msgid "The function searches what cells from the range A2:A6 contain “book” starting and ending with any quantity of other characters, and calculates the average of corresponding values from the B2:B6 range. Returns 18.5, because only third and fourth rows participate in the calculation."
+msgstr ""
+
+#. SGMWy
+#: func_averageif.xhp
+msgctxt ""
+"func_averageif.xhp\n"
+"hd_id251309885188\n"
+"help.text"
+msgid "Reference to a cell as a criterion"
+msgstr ""
+
+#. CnVcF
+#: func_averageif.xhp
+msgctxt ""
+"func_averageif.xhp\n"
+"par_id177972099720424\n"
+"help.text"
+msgid "If you need to change a criterion easily, you may want to specify it in a separate cell and use a reference to this cell in the condition of AVERAGEIF function."
+msgstr ""
+
+#. 3i7KZ
+#: func_averageif.xhp
+msgctxt ""
+"func_averageif.xhp\n"
+"par_id134941261230060\n"
+"help.text"
+msgid "<item type=\"input\">=AVERAGEIF(A2:A6;\".*\"&E2&\".*\";B2:B6)</item>"
+msgstr ""
+
+#. vTFAk
+#: func_averageif.xhp
+msgctxt ""
+"func_averageif.xhp\n"
+"par_id172572288310247\n"
+"help.text"
+msgid "The function searches what cells from the range A2:A6 contain a combination of characters specified in E2 starting and ending with any quantity of other characters, and calculates the average of corresponding values from the B2:B6 range. If E2 = book, the function returns 18.5."
+msgstr ""
+
+#. 2W6Qv
+#: func_averageif.xhp
+msgctxt ""
+"func_averageif.xhp\n"
+"par_id316901523627285\n"
+"help.text"
+msgid "<item type=\"input\">=AVERAGEIF(B2:B6;\"<\"&E2;C2:C6)</item>"
+msgstr ""
+
+#. 5Mfay
+#: func_averageif.xhp
+msgctxt ""
+"func_averageif.xhp\n"
+"par_id302181300528607\n"
+"help.text"
+msgid "The function searches what cells from the range B2:B6 are less than the value specified in E2, and calculates the average of corresponding values from the C2:C6 range. If E2 = 35, the function returns 145."
+msgstr ""
+
+#. TUEKr
+#: func_averageifs.xhp
+msgctxt ""
+"func_averageifs.xhp\n"
+"tit\n"
+"help.text"
+msgid "AVERAGEIFS function"
+msgstr ""
+
+#. DDuFq
+#: func_averageifs.xhp
+msgctxt ""
+"func_averageifs.xhp\n"
+"bm_id536715367153671\n"
+"help.text"
+msgid "<bookmark_value>AVERAGEIFS function</bookmark_value> <bookmark_value>arithmetic mean;satisfying conditions</bookmark_value>"
+msgstr ""
+
+#. uGhsw
+#: func_averageifs.xhp
+msgctxt ""
+"func_averageifs.xhp\n"
+"hd_id537445374453744\n"
+"help.text"
+msgid "<variable id=\"averageifs_head\"><link href=\"text/scalc/01/func_averageifs.xhp\">AVERAGEIFS</link></variable> function"
+msgstr ""
+
+#. CZ8LX
+#: func_averageifs.xhp
+msgctxt ""
+"func_averageifs.xhp\n"
+"par_id538405384053840\n"
+"help.text"
+msgid "<ahelp hid=\".\"><variable id=\"averageifs_des\">Returns the arithmetic mean of all cells in a range that satisfy given multiple criteria. The AVERAGEIFS function sums up all the results that match the logical tests and divides this sum by the quantity of selected values.</variable></ahelp>"
+msgstr ""
+
+#. zNyZv
+#: func_averageifs.xhp
+msgctxt ""
+"func_averageifs.xhp\n"
+"par_id21050267713178\n"
+"help.text"
+msgid "AVERAGEIFS(<embedvar href=\"text/scalc/01/ex_data_stat_func.xhp#args\" markup=\"ignore\"/>)"
+msgstr ""
+
+#. 8gSoS
+#: func_averageifs.xhp
+msgctxt ""
+"func_averageifs.xhp\n"
+"par_id165832700711773\n"
+"help.text"
+msgid "<emph>Func_range</emph> – required argument. It is a range of cells, a name of a named range or a label of a column or a row containing values for calculating the mean."
+msgstr ""
+
+#. y7NZn
+#: func_averageifs.xhp
+msgctxt ""
+"func_averageifs.xhp\n"
+"hd_id20733192524041\n"
+"help.text"
+msgid "Simple usage"
+msgstr ""
+
+#. bcbN9
+#: func_averageifs.xhp
+msgctxt ""
+"func_averageifs.xhp\n"
+"par_id24004653627203\n"
+"help.text"
+msgid "<item type=\"input\">=AVERAGEIFS(B2:B6;B2:B6;\">=20\")</item>"
+msgstr ""
+
+#. NGDGm
+#: func_averageifs.xhp
+msgctxt ""
+"func_averageifs.xhp\n"
+"par_id30201168686268\n"
+"help.text"
+msgid "Calculates the average for values of the range B2:B6 that are greater than or equal to 20. Returns 25, because the fifth row does not meet the criterion."
+msgstr ""
+
+#. zb4se
+#: func_averageifs.xhp
+msgctxt ""
+"func_averageifs.xhp\n"
+"par_id30279247419921\n"
+"help.text"
+msgid "<item type=\"input\">=AVERAGEIFS(C2:C6;B2:B6;\">=20\";C2:C6;\">70\")</item>"
+msgstr ""
+
+#. 7jj4X
+#: func_averageifs.xhp
+msgctxt ""
+"func_averageifs.xhp\n"
+"par_id2930764965983\n"
+"help.text"
+msgid "Calculates the average for values of the range C2:C6 that are greater than 70 and correspond to cells of B2:B6 with values greater than or equal to 20. Returns 137.5, because the second and fifth rows do not meet at least one criterion."
+msgstr ""
+
+#. 2pMbp
+#: func_averageifs.xhp
+msgctxt ""
+"func_averageifs.xhp\n"
+"hd_id317532515726820\n"
+"help.text"
+msgid "Using regular expressions and nested functions"
+msgstr ""
+
+#. qZDFB
+#: func_averageifs.xhp
+msgctxt ""
+"func_averageifs.xhp\n"
+"par_id457966021670\n"
+"help.text"
+msgid "<item type=\"input\">=AVERAGEIFS(C2:C6;B2:B6;\">\"&MIN(B2:B6);B2:B6;\"<\"&MAX(B2:B6))</item>"
+msgstr ""
+
+#. oghLv
+#: func_averageifs.xhp
+msgctxt ""
+"func_averageifs.xhp\n"
+"par_id66091035229950\n"
+"help.text"
+msgid "Calculates the average for values of the range C2:C6 that correspond to all values of the range B2:B6 except its minimum and maximum. Returns 127.5, because the third and fifth rows do not meet at least one criterion."
+msgstr ""
+
+#. C7fCW
+#: func_averageifs.xhp
+msgctxt ""
+"func_averageifs.xhp\n"
+"par_id303162761931870\n"
+"help.text"
+msgid "<item type=\"input\">=AVERAGEIFS(C2:C6;A2:A6;\"pen.*\";B2:B6;\"<\"&MAX(B2:B6))</item>"
+msgstr ""
+
+#. eo7jB
+#: func_averageifs.xhp
+msgctxt ""
+"func_averageifs.xhp\n"
+"par_id40031348913642\n"
+"help.text"
+msgid "Calculates the average for values of the range C2:C6 that correspond to all cells of the A2:A6 range starting with \"pen\" and to all cells of the B2:B6 range except its maximum. Returns 65, because only second row meets all criteria."
+msgstr ""
+
+#. qyrrP
+#: func_averageifs.xhp
+msgctxt ""
+"func_averageifs.xhp\n"
+"hd_id31201205191857\n"
+"help.text"
+msgid "Reference to a cell as a criterion"
+msgstr ""
+
+#. DqjCH
+#: func_averageifs.xhp
+msgctxt ""
+"func_averageifs.xhp\n"
+"par_id316794795433\n"
+"help.text"
+msgid "If you need to change a criterion easily, you may want to specify it in a separate cell and use a reference to this cell in the condition of AVERAGEIFS function. For example, the above function can be rewritten as follows:"
+msgstr ""
+
+#. B8bav
+#: func_averageifs.xhp
+msgctxt ""
+"func_averageifs.xhp\n"
+"par_id67531072426731\n"
+"help.text"
+msgid "<item type=\"input\">=AVERAGEIFS(C2:C6;A2:A6;E2&\".*\";B2:B6;\"<\"&MAX(B2:B6))</item>"
+msgstr ""
+
+#. E3TZv
+#: func_averageifs.xhp
+msgctxt ""
+"func_averageifs.xhp\n"
+"par_id65612244926745\n"
+"help.text"
+msgid "If E2 = pen, the function returns 65, because the link to the cell is substituted with its content."
+msgstr ""
+
+#. s6GFW
+#: func_ceiling.xhp
+msgctxt ""
+"func_ceiling.xhp\n"
+"tit\n"
+"help.text"
+msgid "Ceiling functions"
+msgstr ""
+
+#. EWCte
+#: func_ceiling.xhp
+msgctxt ""
+"func_ceiling.xhp\n"
+"hd_id971586216771519\n"
+"help.text"
+msgid "Ceiling functions"
+msgstr ""
+
+#. M92qb
+#: func_ceiling.xhp
+msgctxt ""
+"func_ceiling.xhp\n"
+"bm_id3152518\n"
+"help.text"
+msgid "<bookmark_value>CEILING function</bookmark_value><bookmark_value>rounding;up to multiples of significance</bookmark_value>"
+msgstr ""
+
+#. XR3RK
+#: func_ceiling.xhp
+msgctxt ""
+"func_ceiling.xhp\n"
+"hd_id3152518\n"
+"help.text"
+msgid "<variable id=\"CEILINGh1\"><link href=\"text/scalc/01/func_ceiling.xhp#ceiling\" name=\"CEILING\">CEILING</link></variable>"
+msgstr ""
+
+#. Co8xT
+#: func_ceiling.xhp
+msgctxt ""
+"func_ceiling.xhp\n"
+"par_id3153422\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_OBERGRENZE\">Rounds a number to the nearest multiple of a significance value.</ahelp>"
+msgstr ""
+
+#. PfT3s
+#: func_ceiling.xhp
+msgctxt ""
+"func_ceiling.xhp\n"
+"par_id601586207136514\n"
+"help.text"
+msgid "For a positive number and a positive significance value, the function rounds up (away from zero). For a negative number and a negative significance value, the direction of rounding is determined by the value of a mode parameter. The function returns an error if the number and significance values have opposite signs."
+msgstr ""
+
+#. 6AFh7
+#: func_ceiling.xhp
+msgctxt ""
+"func_ceiling.xhp\n"
+"par_id3163792\n"
+"help.text"
+msgid "If the spreadsheet is exported to Microsoft Excel, the CEILING function is exported as the equivalent CEILING.MATH function that has existed since Excel 2013. If you plan to use the spreadsheet with earlier Excel versions, use either CEILING.PRECISE that has existed since Excel 2010, or CEILING.XCL that is exported as the CEILING function compatible with all Excel versions."
+msgstr ""
+
+#. 3DwLL
+#: func_ceiling.xhp
+msgctxt ""
+"func_ceiling.xhp\n"
+"par_id3153454\n"
+"help.text"
+msgid "CEILING(Number [; Significance [; Mode]])"
+msgstr ""
+
+#. XHjhc
+#: func_ceiling.xhp
+msgctxt ""
+"func_ceiling.xhp\n"
+"par_id3153467\n"
+"help.text"
+msgid "<emph>Number</emph> is the number that is to be rounded, or a reference to a cell containing the number."
+msgstr ""
+
+#. XEqxw
+#: func_ceiling.xhp
+msgctxt ""
+"func_ceiling.xhp\n"
+"par_id3155000\n"
+"help.text"
+msgid "<emph>Significance</emph> (optional) is the value, or a reference to a cell containing the value, to whose multiple <emph>Number</emph> is to be rounded. It defaults to +1 or -1 depending on the sign of <emph>Number</emph>."
+msgstr ""
+
+#. AosjB
+#: func_ceiling.xhp
+msgctxt ""
+"func_ceiling.xhp\n"
+"par_id3155020\n"
+"help.text"
+msgid "<emph>Mode</emph> (optional) is a number, or a reference to a cell containing a number. The function only uses <emph>Mode</emph> if both <emph>Number</emph> and <emph>Significance</emph> are negative. Then if <emph>Mode</emph> is given and not equal to zero, numbers are rounded down (away from zero); if <emph>Mode</emph> is equal to zero or not given, negative numbers are rounded up (towards zero)."
+msgstr ""
+
+#. Ka9pC
+#: func_ceiling.xhp
+msgctxt ""
+"func_ceiling.xhp\n"
+"par_id281586208138400\n"
+"help.text"
+msgid "<input>=CEILING(3.45)</input> returns 4."
+msgstr ""
+
+#. UTtFZ
+#: func_ceiling.xhp
+msgctxt ""
+"func_ceiling.xhp\n"
+"par_id921586208142416\n"
+"help.text"
+msgid "<input>=CEILING(3.45; 3)</input> returns 6."
+msgstr ""
+
+#. XGfA3
+#: func_ceiling.xhp
+msgctxt ""
+"func_ceiling.xhp\n"
+"par_id921586208146984\n"
+"help.text"
+msgid "<input>=CEILING(-1.234)</input> returns -1."
+msgstr ""
+
+#. ZWjxy
+#: func_ceiling.xhp
+msgctxt ""
+"func_ceiling.xhp\n"
+"par_id491586208152183\n"
+"help.text"
+msgid "<input>=CEILING(-45.67; -2; 0)</input> returns -44."
+msgstr ""
+
+#. Auwyx
+#: func_ceiling.xhp
+msgctxt ""
+"func_ceiling.xhp\n"
+"par_id291586208158119\n"
+"help.text"
+msgid "<input>=CEILING(-45.67; -2; 1)</input> returns -46."
+msgstr ""
+
+#. rZ78k
+#: func_ceiling.xhp
+msgctxt ""
+"func_ceiling.xhp\n"
+"bm_id2952518\n"
+"help.text"
+msgid "<bookmark_value>CEILING.PRECISE function</bookmark_value><bookmark_value>rounding;up to multiples of significance</bookmark_value>"
+msgstr ""
+
+#. 5DWRd
+#: func_ceiling.xhp
+msgctxt ""
+"func_ceiling.xhp\n"
+"hd_id2952518\n"
+"help.text"
+msgid "<variable id=\"CEILING.PRECISEh1\"><link href=\"text/scalc/01/func_ceiling.xhp#ceilingprecise\" name=\"CEILING.PRECISE\">CEILING.PRECISE</link></variable>"
+msgstr ""
+
+#. aTD6P
+#: func_ceiling.xhp
+msgctxt ""
+"func_ceiling.xhp\n"
+"par_id2953422\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_CEIL_MS\">Rounds a number up to the nearest multiple of a significance value.</ahelp>"
+msgstr ""
+
+#. BjuBa
+#: func_ceiling.xhp
+msgctxt ""
+"func_ceiling.xhp\n"
+"par_id151586642494759\n"
+"help.text"
+msgid "For a positive number the function rounds up (away from zero). For a negative number, the function rounds up (towards zero). The sign of the significance value is ignored."
+msgstr ""
+
+#. 8gkPE
+#: func_ceiling.xhp
+msgctxt ""
+"func_ceiling.xhp\n"
+"par_id631586642933797\n"
+"help.text"
+msgid "This function calculates identical results to the <link href=\"text/scalc/01/func_ceiling.xhp#isoceiling\" name=\"iso ceiling\">ISO.CEILING</link> function."
+msgstr ""
+
+#. BASfr
+#: func_ceiling.xhp
+msgctxt ""
+"func_ceiling.xhp\n"
+"par_id2953454\n"
+"help.text"
+msgid "CEILING.PRECISE(Number [; Significance])"
+msgstr ""
+
+#. FaYeD
+#: func_ceiling.xhp
+msgctxt ""
+"func_ceiling.xhp\n"
+"par_id2955000\n"
+"help.text"
+msgid "<emph>Significance</emph> (optional) is the value, or a reference to a cell containing the value, to whose multiple <emph>Number</emph> is to be rounded. It defaults to 1."
+msgstr ""
+
+#. 8WiRx
+#: func_ceiling.xhp
+msgctxt ""
+"func_ceiling.xhp\n"
+"par_id201586213398634\n"
+"help.text"
+msgid "<input>=CEILING.PRECISE(3.45)</input> returns 4."
+msgstr ""
+
+#. KxeUC
+#: func_ceiling.xhp
+msgctxt ""
+"func_ceiling.xhp\n"
+"par_id651586213406243\n"
+"help.text"
+msgid "<input>=CEILING.PRECISE(-45.67; 2)</input> returns -44."
+msgstr ""
+
+#. WV9bx
+#: func_ceiling.xhp
+msgctxt ""
+"func_ceiling.xhp\n"
+"bm_id911516997198644\n"
+"help.text"
+msgid "<bookmark_value>CEILING.MATH function</bookmark_value>"
+msgstr ""
+
+#. 7xeKu
+#: func_ceiling.xhp
+msgctxt ""
+"func_ceiling.xhp\n"
+"hd_id91516997330445\n"
+"help.text"
+msgid "<variable id=\"CEILING.MATHh1\"><link href=\"text/scalc/01/func_ceiling.xhp#ceilingmath\" name=\"CEILING.MATH\">CEILING.MATH</link></variable>"
+msgstr ""
+
+#. AzJvD
+#: func_ceiling.xhp
+msgctxt ""
+"func_ceiling.xhp\n"
+"par_id81516997342088\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_CEIL_MATH\">Rounds a number to the nearest multiple of a significance value.</ahelp>"
+msgstr ""
+
+#. QLGe7
+#: func_ceiling.xhp
+msgctxt ""
+"func_ceiling.xhp\n"
+"par_id911586642319078\n"
+"help.text"
+msgid "For a positive number the function rounds up (away from zero). For a negative number, the direction of rounding is determined by the value of a mode parameter. The sign of the significance value is ignored."
+msgstr ""
+
+#. aYczG
+#: func_ceiling.xhp
+msgctxt ""
+"func_ceiling.xhp\n"
+"par_id291516998575663\n"
+"help.text"
+msgid "This function exists for interoperability with Microsoft Excel 2013 or newer."
+msgstr ""
+
+#. pcXnS
+#: func_ceiling.xhp
+msgctxt ""
+"func_ceiling.xhp\n"
+"par_id841516997669932\n"
+"help.text"
+msgid "CEILING.MATH(Number [; Significance [; Mode]])"
+msgstr ""
+
+#. EAezJ
+#: func_ceiling.xhp
+msgctxt ""
+"func_ceiling.xhp\n"
+"par_id491516997725772\n"
+"help.text"
+msgid "<emph>Significance</emph> (optional) is the value, or a reference to a cell containing the value, to whose multiple <emph>Number</emph> is to be rounded. It defaults to 1."
+msgstr ""
+
+#. EiWLa
+#: func_ceiling.xhp
+msgctxt ""
+"func_ceiling.xhp\n"
+"par_id451516997742909\n"
+"help.text"
+msgid "<emph>Mode</emph> (optional) is a number, or a reference to a cell containing a number. If <emph>Mode</emph> is given and not equal to zero, a negative <emph>Number</emph> is rounded down (away from zero). If <emph>Mode</emph> is equal to zero or is not given, a negative <emph>Number</emph> is rounded up (towards zero)."
+msgstr ""
+
+#. je22s
+#: func_ceiling.xhp
+msgctxt ""
+"func_ceiling.xhp\n"
+"par_id331586208590009\n"
+"help.text"
+msgid "<input>=CEILING.MATH(3.45)</input> returns 4."
+msgstr ""
+
+#. g5xAQ
+#: func_ceiling.xhp
+msgctxt ""
+"func_ceiling.xhp\n"
+"par_id481586208595809\n"
+"help.text"
+msgid "<input>=CEILING.MATH(3.45; -3)</input> returns 6."
+msgstr ""
+
+#. Eby7i
+#: func_ceiling.xhp
+msgctxt ""
+"func_ceiling.xhp\n"
+"par_id641586208600665\n"
+"help.text"
+msgid "<input>=CEILING.MATH(-1.234)</input> returns -1."
+msgstr ""
+
+#. T4orc
+#: func_ceiling.xhp
+msgctxt ""
+"func_ceiling.xhp\n"
+"par_id151586208604536\n"
+"help.text"
+msgid "<input>=CEILING.MATH(-45.67; -2; 0)</input> returns -44."
+msgstr ""
+
+#. opt6B
+#: func_ceiling.xhp
+msgctxt ""
+"func_ceiling.xhp\n"
+"par_id971586208611345\n"
+"help.text"
+msgid "<input>=CEILING.MATH(-45.67; +2; 1)</input> returns -46."
+msgstr ""
+
+#. EzE9t
+#: func_ceiling.xhp
+msgctxt ""
+"func_ceiling.xhp\n"
+"bm_id921516998608939\n"
+"help.text"
+msgid "<bookmark_value>CEILING.XCL function</bookmark_value>"
+msgstr ""
+
+#. CRMmT
+#: func_ceiling.xhp
+msgctxt ""
+"func_ceiling.xhp\n"
+"hd_id411516998838823\n"
+"help.text"
+msgid "<variable id=\"CEILING.XCLh1\"><link href=\"text/scalc/01/func_ceiling.xhp#ceilingxcl\" name=\"CEILING.XCL\">CEILING.XCL</link></variable>"
+msgstr ""
+
+#. 2tuD3
+#: func_ceiling.xhp
+msgctxt ""
+"func_ceiling.xhp\n"
+"par_id811516998845826\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_CEIL_MS\">Rounds a number to the nearest multiple of a significance value.</ahelp>"
+msgstr ""
+
+#. tAyJj
+#: func_ceiling.xhp
+msgctxt ""
+"func_ceiling.xhp\n"
+"par_id361586213828675\n"
+"help.text"
+msgid "For a positive number and a positive significance value, the function rounds up (away from zero). For a negative number and a positive significance value, the function rounds up (towards zero). For a negative number and a negative significance value, the function rounds down (away from zero). The function returns an error if the number is positive and the significance value is negative."
+msgstr ""
+
+#. 2CKjm
+#: func_ceiling.xhp
+msgctxt ""
+"func_ceiling.xhp\n"
+"par_id881586213934118\n"
+"help.text"
+msgid "This function exists for interoperability with Microsoft Excel 2007 or older. If a Calc spreadsheet is exported to Microsoft Excel, references to Calc’s CEILING.XCL function are exported as references to Excel’s CEILING function, which is compatible with all Excel versions. If a Microsoft Excel spreadsheet is imported into Calc, references to Excel’s CEILING function are imported as references to Calc’s CEILING.XCL function."
+msgstr ""
+
+#. GspBr
+#: func_ceiling.xhp
+msgctxt ""
+"func_ceiling.xhp\n"
+"par_id251516998856873\n"
+"help.text"
+msgid "CEILING.XCL(Number; Significance)"
+msgstr ""
+
+#. eTSgx
+#: func_ceiling.xhp
+msgctxt ""
+"func_ceiling.xhp\n"
+"par_id151516998882622\n"
+"help.text"
+msgid "<emph>Significance</emph> is the value, or a reference to a cell containing the value, to whose multiple <emph>Number</emph> is to be rounded."
+msgstr ""
+
+#. 6n7qn
+#: func_ceiling.xhp
+msgctxt ""
+"func_ceiling.xhp\n"
+"par_id421586214128242\n"
+"help.text"
+msgid "<input>=CEILING.XCL(3.45,2)</input> returns 4."
+msgstr ""
+
+#. nU46D
+#: func_ceiling.xhp
+msgctxt ""
+"func_ceiling.xhp\n"
+"par_id651586214132234\n"
+"help.text"
+msgid "<input>=CEILING.XCL(-45.67; 2)</input> returns -44."
+msgstr ""
+
+#. nbB96
+#: func_ceiling.xhp
+msgctxt ""
+"func_ceiling.xhp\n"
+"par_id811586214136666\n"
+"help.text"
+msgid "<input>=CEILING.XCL(-45.67; -2)</input> returns -46."
+msgstr ""
+
+#. GMzhD
+#: func_ceiling.xhp
+msgctxt ""
+"func_ceiling.xhp\n"
+"bm_id8952518\n"
+"help.text"
+msgid "<bookmark_value>ISO.CEILING function</bookmark_value><bookmark_value>rounding;up to multiples of significance</bookmark_value>"
+msgstr ""
+
+#. q22aC
+#: func_ceiling.xhp
+msgctxt ""
+"func_ceiling.xhp\n"
+"hd_id8952518\n"
+"help.text"
+msgid "<variable id=\"ISO.CEILINGh1\"><link href=\"text/scalc/01/func_ceiling.xhp#isoceiling\" name=\"ISO.CEILING\">ISO.CEILING</link></variable>"
+msgstr ""
+
+#. 5beBC
+#: func_ceiling.xhp
+msgctxt ""
+"func_ceiling.xhp\n"
+"par_id8953422\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_CEIL_ISO\">Rounds a number up to the nearest multiple of a significance value.</ahelp>"
+msgstr ""
+
+#. SFZNu
+#: func_ceiling.xhp
+msgctxt ""
+"func_ceiling.xhp\n"
+"par_id101586214229587\n"
+"help.text"
+msgid "For a positive number the function rounds up (away from zero). For a negative number, the function rounds up (towards zero). The sign of the significance value is ignored."
+msgstr ""
+
+#. AAHCL
+#: func_ceiling.xhp
+msgctxt ""
+"func_ceiling.xhp\n"
+"par_id821586214265060\n"
+"help.text"
+msgid "This function calculates identical results to the <link href=\"text/scalc/01/func_ceiling.xhp#ceilingprecise\" name=\"ceiling precise\">CEILING.PRECISE</link> function."
+msgstr ""
+
+#. GRocX
+#: func_ceiling.xhp
+msgctxt ""
+"func_ceiling.xhp\n"
+"par_id8953454\n"
+"help.text"
+msgid "ISO.CEILING(Number [; Significance])"
+msgstr ""
+
+#. hwhCW
+#: func_ceiling.xhp
+msgctxt ""
+"func_ceiling.xhp\n"
+"par_id8955000\n"
+"help.text"
+msgid "<emph>Significance</emph> (optional) is the value, or a reference to a cell containing the value, to whose multiple <emph>Number</emph> is to be rounded. It defaults to 1."
+msgstr ""
+
+#. FSFdP
+#: func_ceiling.xhp
+msgctxt ""
+"func_ceiling.xhp\n"
+"par_id801586214431463\n"
+"help.text"
+msgid "<input>=ISO.CEILING(3.45)</input> returns 4."
+msgstr ""
+
+#. QHpJp
+#: func_ceiling.xhp
+msgctxt ""
+"func_ceiling.xhp\n"
+"par_id181586214438808\n"
+"help.text"
+msgid "<input>=ISO.CEILING(-45.67; 2)</input> returns -44."
+msgstr ""
+
+#. GuEcB
+#: func_color.xhp
+msgctxt ""
+"func_color.xhp\n"
+"tit\n"
+"help.text"
+msgid "COLOR function"
+msgstr ""
+
+#. N8CUu
+#: func_color.xhp
+msgctxt ""
+"func_color.xhp\n"
+"bm_id1102201617201921\n"
+"help.text"
+msgid "<bookmark_value>colors;numerical values</bookmark_value> <bookmark_value>colors;calculating in spreadsheets</bookmark_value> <bookmark_value>COLOR function</bookmark_value>"
+msgstr ""
+
+#. qjPSR
+#: func_color.xhp
+msgctxt ""
+"func_color.xhp\n"
+"hd_id456845684568\n"
+"help.text"
+msgid "<variable id=\"color_head\"><link href=\"text/scalc/01/func_color.xhp\">COLOR</link></variable>"
+msgstr ""
+
+#. HXh5E
+#: func_color.xhp
+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."
+msgstr ""
+
+#. 3ubzF
+#: func_color.xhp
+msgctxt ""
+"func_color.xhp\n"
+"par_id27421466710275\n"
+"help.text"
+msgid "COLOR(Red; Green; Blue [; Alpha])"
+msgstr ""
+
+#. ASLWJ
+#: func_color.xhp
+msgctxt ""
+"func_color.xhp\n"
+"par_id242131304318587\n"
+"help.text"
+msgid "<emph>Red, Green and Blue</emph> – required arguments. The value for the red, green and blue components of the color. The values must be between 0 and 255. Zero means no color component and 255 means full color component."
+msgstr ""
+
+#. GoCn2
+#: func_color.xhp
+msgctxt ""
+"func_color.xhp\n"
+"par_id242131304315587\n"
+"help.text"
+msgid "<emph>Alpha</emph> – optional argument. The value for the alpha channel or alpha composite. Alpha is a integer value between 0 and 255. The value of zero for alpha means the color is fully transparent, whereas a value of 255 in the alpha channel gives a fully opaque color."
+msgstr ""
+
+#. fb2sj
+#: func_color.xhp
+msgctxt ""
+"func_color.xhp\n"
+"par_id1102201617001888\n"
+"help.text"
+msgid "<item type=\"input\">COLOR(255;255;255;1)</item> returns 33554431"
+msgstr ""
+
+#. gxbF2
+#: func_color.xhp
+msgctxt ""
+"func_color.xhp\n"
+"par_id1102201618185378\n"
+"help.text"
+msgid "<item type=\"input\">COLOR(0;0;255;0)</item> returns 255"
+msgstr ""
+
+#. f8bh7
+#: func_color.xhp
+msgctxt ""
+"func_color.xhp\n"
+"par_id1102201618185326\n"
+"help.text"
+msgid "<item type=\"input\">COLOR(0;0;255;255)</item> returns 4278190335"
+msgstr ""
+
+#. JAYa2
+#: func_color.xhp
+msgctxt ""
+"func_color.xhp\n"
+"par_id1102201618188326\n"
+"help.text"
+msgid "<item type=\"input\">COLOR(0;0;400;0)</item> returns Err:502 (Invalid argument) because the blue value is greater than 255."
+msgstr ""
+
+#. cfeEJ
+#: func_concat.xhp
+msgctxt ""
+"func_concat.xhp\n"
+"tit\n"
+"help.text"
+msgid "CONCAT function"
+msgstr ""
+
+#. WEfAD
+#: func_concat.xhp
+msgctxt ""
+"func_concat.xhp\n"
+"bm_id741556228031712\n"
+"help.text"
+msgid "<bookmark_value>CONCAT function</bookmark_value>"
+msgstr ""
+
+#. BCZMB
+#: func_concat.xhp
+msgctxt ""
+"func_concat.xhp\n"
+"hd_id471556226436779\n"
+"help.text"
+msgid "<variable id=\"concatfunct\"><link href=\"text/scalc/01/func_concat.xhp\" name=\"concat\">CONCAT</link></variable>"
+msgstr ""
+
+#. jUBjE
+#: func_concat.xhp
+msgctxt ""
+"func_concat.xhp\n"
+"par_id891556226436781\n"
+"help.text"
+msgid "<variable id=\"concatfunction\"><ahelp hid=\".\">Concatenates one or more strings</ahelp></variable>"
+msgstr ""
+
+#. JPUiF
+#: func_concat.xhp
+msgctxt ""
+"func_concat.xhp\n"
+"par_id701556226865876\n"
+"help.text"
+msgid "CONCAT is an enhancement of CONCATENATE, as CONCAT also accepts ranges as arguments, like B2:E5, K:K or K:M."
+msgstr ""
+
+#. Gjz3x
+#: func_concat.xhp
+msgctxt ""
+"func_concat.xhp\n"
+"par_id461556226873963\n"
+"help.text"
+msgid "When ranges are used, the cells are traversed row by row (from top to bottom) to concatenate."
+msgstr ""
+
+#. fJEF4
+#: func_concat.xhp
+msgctxt ""
+"func_concat.xhp\n"
+"par_id911556226813412\n"
+"help.text"
+msgid "CONCAT( <embedvar href=\"text/scalc/01/ful_func.xhp#string255_1\" markup=\"keep\"/> )"
+msgstr ""
+
+#. aTwgH
+#: func_concat.xhp
+msgctxt ""
+"func_concat.xhp\n"
+"par_id531556227248228\n"
+"help.text"
+msgid "<input>=CONCAT(\"Hello \", A1:C3)</input> concatenates the string \"Hello\" with all strings in range <literal>A1:C3</literal>."
+msgstr ""
+
+#. WTD5N
+#: func_concat.xhp
+msgctxt ""
+"func_concat.xhp\n"
+"par_id781556244709752\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060110.xhp#concatenate\" name=\"concatenate\">CONCATENATE</link>"
+msgstr ""
+
+#. A2RFP
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"tit\n"
+"help.text"
+msgid "CONVERT function"
+msgstr ""
+
+#. wHx2Y
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"bm_id3148446\n"
+"help.text"
+msgid "<bookmark_value>CONVERT function</bookmark_value>"
+msgstr ""
+
+#. XE5M9
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id9522389625800\n"
+"help.text"
+msgid "<variable id=\"convert_head\"> <link href=\"text/scalc/01/func_convert.xhp\">CONVERT</link> </variable> function"
+msgstr ""
+
+#. fmXAR
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id3154902\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_CONVERT\"><variable id=\"convert_desc\">Converts a value from one unit of measurement to the corresponding value in another unit of measurement.</variable></ahelp> Enter the units of measurement directly as text in quotation marks or as a reference. The units of measurement specified through the arguments must match the supported unit symbols, which are case-sensitive. For example, the symbol for the unit \"newton\" is the uppercase \"N\"."
+msgstr ""
+
+#. fUwa3
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id761620414839890\n"
+"help.text"
+msgid "The measurement units recognized by <literal>CONVERT</literal> fall into 13 groups, which are listed <link href=\"text/scalc/01/func_convert.xhp#Unit_Groups\" name=\"Unit_Groups_Section\">below</link>. CONVERT will perform conversions between any two units within one group but reject any request to convert between units in different groups."
+msgstr ""
+
+#. x6USE
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id861620428840333\n"
+"help.text"
+msgid "You can also add binary and decimal prefixes to units of measurement that support them. The list of all prefixes and their corresponding multipliers are shown <link href=\"text/scalc/01/func_convert.xhp#Prefixes\" name=\"Prefixes_Section\">below</link>."
+msgstr ""
+
+#. GvB7m
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id601621101375988\n"
+"help.text"
+msgid "This function may not be compatible with other spreadsheet software."
+msgstr ""
+
+#. wfq9t
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id23219159944266\n"
+"help.text"
+msgid "<input>CONVERT(Number; FromUnit; ToUnit)</input>"
+msgstr ""
+
+#. RiLFj
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id3147522\n"
+"help.text"
+msgid "<emph>Number</emph> is the number to be converted."
+msgstr ""
+
+#. GErYL
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id3154472\n"
+"help.text"
+msgid "<emph>FromUnit</emph> is the unit from which conversion is taking place."
+msgstr ""
+
+#. d2Hrk
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id3153790\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 ""
+
+#. 7D2db
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id541620414925560\n"
+"help.text"
+msgid "If <literal>FromUnit</literal> and <literal>ToUnit</literal> are not valid units from the same group, then <literal>CONVERT</literal> reports an invalid argument error (Err:502)."
+msgstr ""
+
+#. gq5EJ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id3156336\n"
+"help.text"
+msgid "<input>=CONVERT(-10; \"C\"; \"F\")</input>"
+msgstr ""
+
+#. NacDF
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id951620413562988\n"
+"help.text"
+msgid "Here the function converts -10 degrees Celsius to degrees Fahrenheit, returning the value 14. There is not a simple multiplicative relationship between temperature units, as different reference points are used. Hence, as in this case, an input negative number may be converted to a positive value."
+msgstr ""
+
+#. CQPne
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id3154834\n"
+"help.text"
+msgid "<input>=CONVERT(3.5; \"mi\"; \"yd\")</input>"
+msgstr ""
+
+#. xaEX2
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id971620413678102\n"
+"help.text"
+msgid "Here the function converts 3.5 international miles to yards, returning the value 6160. Both units are in the Length and distance group."
+msgstr ""
+
+#. 3GMEy
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id741620413834726\n"
+"help.text"
+msgid "<input>=CONVERT(256; \"Gibit\"; \"Mibyte\")</input>"
+msgstr ""
+
+#. pdEtf
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id261620413900652\n"
+"help.text"
+msgid "Here the function converts 256 gigibits to mebibytes, returning the value 32768. Both units (bit and byte) are in the Information group and support binary prefixes."
+msgstr ""
+
+#. cdqCp
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id761620413966496\n"
+"help.text"
+msgid "<input>=CONVERT(1; \"dyn\"; \"e\")</input>"
+msgstr ""
+
+#. vDR5q
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id531620414005955\n"
+"help.text"
+msgid "Here the function returns an invalid argument error (Err:502) because the two units (dyne and erg) are in different groups (Force and Energy respectively)."
+msgstr ""
+
+#. DGVq5
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id261620415240175\n"
+"help.text"
+msgid "Units of measurement"
+msgstr ""
+
+#. A7feF
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id481620428685029\n"
+"help.text"
+msgid "Below are the unit measurement groups supported by the <literal>CONVERT</literal> function. Be aware that conversions can only happen between units that belong to the same group."
+msgstr ""
+
+#. Rd9Fp
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id461620429183259\n"
+"help.text"
+msgid "The column Prefix indicates whether or not a given unit of measurement supports <link href=\"text/scalc/01/func_convert.xhp#Prefixes\" name=\"Prefixes_Section\">prefixes</link>."
+msgstr ""
+
+#. ELyFm
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id301620415514760\n"
+"help.text"
+msgid "Area"
+msgstr ""
+
+#. JFG6V
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id121620479750266\n"
+"help.text"
+msgid "Some measurement units have more than one accepted symbol. The accepted unit symbols are separated by semicolons in the <emph>Unit symbol</emph> column."
+msgstr ""
+
+#. ngLDk
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id831620415562967\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. HMAmG
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id251620415562967\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. tpUMy
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id151620415562967\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. GfiJV
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id61620415562967\n"
+"help.text"
+msgid "Square angstrom"
+msgstr ""
+
+#. GoABk
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id71620415903987\n"
+"help.text"
+msgid "Are"
+msgstr ""
+
+#. kahhN
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id631620415904448\n"
+"help.text"
+msgid "Square foot"
+msgstr ""
+
+#. MFjkC
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id651620415904891\n"
+"help.text"
+msgid "Hectare"
+msgstr ""
+
+#. EohjY
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id561620415905331\n"
+"help.text"
+msgid "Square inch"
+msgstr ""
+
+#. XZ9X3
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id561620415905004\n"
+"help.text"
+msgid "Square light-year"
+msgstr ""
+
+#. kwEMV
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id781620416024343\n"
+"help.text"
+msgid "Square meter"
+msgstr ""
+
+#. T9BaY
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id731620416024782\n"
+"help.text"
+msgid "Square international mile"
+msgstr ""
+
+#. 4i4iC
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id621620416250948\n"
+"help.text"
+msgid "Morgen"
+msgstr ""
+
+#. HF5iU
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id661620416251507\n"
+"help.text"
+msgid "Square nautical mile"
+msgstr ""
+
+#. hCiCS
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id791620416251948\n"
+"help.text"
+msgid "Square pica point"
+msgstr ""
+
+#. ZfeRr
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id771620416417874\n"
+"help.text"
+msgid "Square pica"
+msgstr ""
+
+#. cHh2s
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id621620416418311\n"
+"help.text"
+msgid "International acre"
+msgstr ""
+
+#. AsFDV
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id71620416418768\n"
+"help.text"
+msgid "US survey acre"
+msgstr ""
+
+#. vFpVJ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id71620416418025\n"
+"help.text"
+msgid "Square yard"
+msgstr ""
+
+#. Y8KWb
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id661620418842010\n"
+"help.text"
+msgid "Energy"
+msgstr ""
+
+#. MVxwP
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id133389281727763\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. 2YCm2
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id215779983443756\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. wERLT
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id986783687128923\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. GLvVT
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id797688281572156\n"
+"help.text"
+msgid "British thermal unit"
+msgstr ""
+
+#. nu34E
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id844417659281393\n"
+"help.text"
+msgid "Thermochemical calorie"
+msgstr ""
+
+#. DBTz9
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id672765982649722\n"
+"help.text"
+msgid "International Steam Table calorie"
+msgstr ""
+
+#. uw6BK
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id798492531882282\n"
+"help.text"
+msgid "erg"
+msgstr ""
+
+#. i9qGV
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id547247548598782\n"
+"help.text"
+msgid "Electron volt"
+msgstr ""
+
+#. sLtDD
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id587393171297892\n"
+"help.text"
+msgid "Foot-pound"
+msgstr ""
+
+#. 2GjCu
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id695171299238861\n"
+"help.text"
+msgid "Horsepower-hour"
+msgstr ""
+
+#. ZPZRc
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id498448587944728\n"
+"help.text"
+msgid "Joule"
+msgstr ""
+
+#. PUrZh
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id324829753758823\n"
+"help.text"
+msgid "Watt-hour"
+msgstr ""
+
+#. kPnGq
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id281620418969165\n"
+"help.text"
+msgid "Flux density"
+msgstr ""
+
+#. 4o3NF
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id474271648545953\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. DCC5e
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id747764511138273\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. dvVVc
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id689379352231556\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. nHMaJ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id114822916257326\n"
+"help.text"
+msgid "Gauss"
+msgstr ""
+
+#. 2he9q
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id626213287964265\n"
+"help.text"
+msgid "Tesla"
+msgstr ""
+
+#. GFyeu
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id511620419033332\n"
+"help.text"
+msgid "Force"
+msgstr ""
+
+#. CcWkm
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id786326578562174\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. MAju2
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id613697367784781\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. 3ZxxK
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id338735929142246\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. uaZZL
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id332679599387353\n"
+"help.text"
+msgid "Dyne"
+msgstr ""
+
+#. qkEeo
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id297688664469184\n"
+"help.text"
+msgid "Newton"
+msgstr ""
+
+#. EEy3q
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id413835658896999\n"
+"help.text"
+msgid "Pound-force"
+msgstr ""
+
+#. UmY6Y
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id472715992174398\n"
+"help.text"
+msgid "Pond"
+msgstr ""
+
+#. Z8snf
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id61620419155285\n"
+"help.text"
+msgid "Information"
+msgstr ""
+
+#. A3brF
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id426724696915849\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. ABpR9
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id612374956817974\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. kNxR2
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id538681812985912\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. uXtLh
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id287396172896473\n"
+"help.text"
+msgid "Bit"
+msgstr ""
+
+#. CQcQ9
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id288619461492324\n"
+"help.text"
+msgid "Byte"
+msgstr ""
+
+#. B3c96
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id21620419214852\n"
+"help.text"
+msgid "Length and distance"
+msgstr ""
+
+#. rfDue
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id939442657661828\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. t8B7a
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id385965635167839\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. qBet6
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id783715738435884\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. ED5CD
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id871414798381246\n"
+"help.text"
+msgid "Angstrom"
+msgstr ""
+
+#. pZ2tZ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id667871614381886\n"
+"help.text"
+msgid "Ell"
+msgstr ""
+
+#. FxCjJ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id116286449743311\n"
+"help.text"
+msgid "Foot"
+msgstr ""
+
+#. VswTE
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id174995614358222\n"
+"help.text"
+msgid "Inch"
+msgstr ""
+
+#. YFTAf
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id597477613742668\n"
+"help.text"
+msgid "Light-year"
+msgstr ""
+
+#. aqqG6
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id414782652978666\n"
+"help.text"
+msgid "Meter"
+msgstr ""
+
+#. kREck
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id246972715165395\n"
+"help.text"
+msgid "International mile"
+msgstr ""
+
+#. 6TCBR
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id664674443288268\n"
+"help.text"
+msgid "Nautical mile"
+msgstr ""
+
+#. rUVPA
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id139127915416429\n"
+"help.text"
+msgid "Parsec"
+msgstr ""
+
+#. E8DiA
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id343241931577938\n"
+"help.text"
+msgid "Pica point"
+msgstr ""
+
+#. J45F6
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id314567699952918\n"
+"help.text"
+msgid "Pica"
+msgstr ""
+
+#. jo6cR
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id579641593251685\n"
+"help.text"
+msgid "US survey mile"
+msgstr ""
+
+#. bHo6X
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id247251727323315\n"
+"help.text"
+msgid "Yard"
+msgstr ""
+
+#. EVKqC
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id101620426269258\n"
+"help.text"
+msgid "Mass and weight"
+msgstr ""
+
+#. sshNo
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id662733781297324\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. 23Fz6
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id314237495552874\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. YXvAc
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id543131496247122\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. yS2GB
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id163896825569756\n"
+"help.text"
+msgid "Short hundredweight"
+msgstr ""
+
+#. AymnT
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id219736221925573\n"
+"help.text"
+msgid "Gram"
+msgstr ""
+
+#. Pcwzj
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id613363919875679\n"
+"help.text"
+msgid "Grain"
+msgstr ""
+
+#. HfoFq
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id961199633533431\n"
+"help.text"
+msgid "Pound"
+msgstr ""
+
+#. TtiGk
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id655456352143671\n"
+"help.text"
+msgid "Ounce"
+msgstr ""
+
+#. pmsEB
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id613492674545171\n"
+"help.text"
+msgid "Pennyweight"
+msgstr ""
+
+#. BE88d
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id566783887997575\n"
+"help.text"
+msgid "Slug"
+msgstr ""
+
+#. VmfEH
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id731498557457276\n"
+"help.text"
+msgid "Stone"
+msgstr ""
+
+#. ZLyGB
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id618416327957968\n"
+"help.text"
+msgid "Short ton"
+msgstr ""
+
+#. 4nGTC
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id556166667325333\n"
+"help.text"
+msgid "Unified atomic mass unit"
+msgstr ""
+
+#. nA8vE
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id161338688697922\n"
+"help.text"
+msgid "Long hundredweight"
+msgstr ""
+
+#. 23HRX
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id616379569614142\n"
+"help.text"
+msgid "Long ton"
+msgstr ""
+
+#. BPqQG
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id1001620426284123\n"
+"help.text"
+msgid "Power"
+msgstr ""
+
+#. HvGBm
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id765457372987543\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. DGPtJ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id222988613874967\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. 6DsPs
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id954629589584711\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. 7PLLh
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id578436173796358\n"
+"help.text"
+msgid "Mechanical horsepower"
+msgstr ""
+
+#. M6req
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id418898833841613\n"
+"help.text"
+msgid "Pferdestärke or metric horsepower"
+msgstr ""
+
+#. qyteT
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id239893771814786\n"
+"help.text"
+msgid "Watt"
+msgstr ""
+
+#. PGKCa
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id541620426359069\n"
+"help.text"
+msgid "Pressure"
+msgstr ""
+
+#. tnByU
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id843387541961981\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. Gsj88
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id385992865555923\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. geMDd
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id513642579177244\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. tZH3f
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id888153229712212\n"
+"help.text"
+msgid "Standard atmosphere"
+msgstr ""
+
+#. EBaTw
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id849582553771429\n"
+"help.text"
+msgid "Millimeter of mercury"
+msgstr ""
+
+#. AsDNh
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id477235647442515\n"
+"help.text"
+msgid "Pascal"
+msgstr ""
+
+#. yyvEQ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id453587511744492\n"
+"help.text"
+msgid "Pound per square inch"
+msgstr ""
+
+#. a9ogt
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id385442861685423\n"
+"help.text"
+msgid "Torr"
+msgstr ""
+
+#. CNDuZ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id911641306487164\n"
+"help.text"
+msgid "1 - The \"at\" unit is deprecated. Use \"atm\" instead."
+msgstr ""
+
+#. vWzBh
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id61620426438099\n"
+"help.text"
+msgid "Speed"
+msgstr ""
+
+#. AXQxd
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id589222947765948\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. HvMee
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id886677898259849\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. PWNGi
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id439227432319741\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. QLETi
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id391572877557741\n"
+"help.text"
+msgid "Admiralty knot"
+msgstr ""
+
+#. X3yym
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id152721538362456\n"
+"help.text"
+msgid "International knot"
+msgstr ""
+
+#. KAWp4
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id117898736774311\n"
+"help.text"
+msgid "Meters per hour"
+msgstr ""
+
+#. pctXg
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id145334267535329\n"
+"help.text"
+msgid "Meters per second"
+msgstr ""
+
+#. 6yYRz
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id233825548718154\n"
+"help.text"
+msgid "Miles per hour"
+msgstr ""
+
+#. FyEd2
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id351620426496272\n"
+"help.text"
+msgid "Temperature"
+msgstr ""
+
+#. C5MHQ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id916682468647914\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. kqAGM
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id828222863857386\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. sGE7h
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id131675777393493\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. do3zs
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id611894272236225\n"
+"help.text"
+msgid "Degree Celsius"
+msgstr ""
+
+#. 3Ng23
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id446899599712639\n"
+"help.text"
+msgid "Degree Fahrenheit"
+msgstr ""
+
+#. JQDwV
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id452842161272274\n"
+"help.text"
+msgid "Kelvin"
+msgstr ""
+
+#. kDHfB
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id946395673872875\n"
+"help.text"
+msgid "Degree Rankine"
+msgstr ""
+
+#. mUNBn
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id718454351326149\n"
+"help.text"
+msgid "Degree Réaumur"
+msgstr ""
+
+#. BfAJv
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id291620426558219\n"
+"help.text"
+msgid "Time"
+msgstr ""
+
+#. kFeSN
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id935221689591996\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. U8RGh
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id664526138752768\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. 8X7qR
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id889226439751962\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. iXcGB
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id246817386878489\n"
+"help.text"
+msgid "Day"
+msgstr ""
+
+#. KCEUt
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id464925665919665\n"
+"help.text"
+msgid "Hour"
+msgstr ""
+
+#. Bf2jf
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id134873473826283\n"
+"help.text"
+msgid "Minute"
+msgstr ""
+
+#. RB2UJ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id424852859961766\n"
+"help.text"
+msgid "Second"
+msgstr ""
+
+#. CKQZz
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id546198897664738\n"
+"help.text"
+msgid "Year"
+msgstr ""
+
+#. CCupk
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id151620426617693\n"
+"help.text"
+msgid "Volume"
+msgstr ""
+
+#. YGVzt
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id245659124219512\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. jvV7i
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id954441838321316\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. QnLHF
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id487448753979859\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. oFBFc
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id254311578719497\n"
+"help.text"
+msgid "Cubic angstrom"
+msgstr ""
+
+#. Ccm2G
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id545825775819166\n"
+"help.text"
+msgid "Oil barrel"
+msgstr ""
+
+#. a3nDk
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id976829653577442\n"
+"help.text"
+msgid "US bushel"
+msgstr ""
+
+#. Fb3dj
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id184258429676826\n"
+"help.text"
+msgid "US cup"
+msgstr ""
+
+#. z98AU
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id278184952564879\n"
+"help.text"
+msgid "Cubic foot"
+msgstr ""
+
+#. Be5Nc
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id466397614396366\n"
+"help.text"
+msgid "US gallon"
+msgstr ""
+
+#. 6dJSb
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id938562498562468\n"
+"help.text"
+msgid "Australian glass (200 milliliters)"
+msgstr ""
+
+#. vFvu4
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id471177863127144\n"
+"help.text"
+msgid "Gross register tonnage"
+msgstr ""
+
+#. tM2GH
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id347175644673122\n"
+"help.text"
+msgid "Humpen (500 milliliters)"
+msgstr ""
+
+#. 3jCKA
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id995576717914988\n"
+"help.text"
+msgid "Cubic inch"
+msgstr ""
+
+#. t8skx
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id842329689485738\n"
+"help.text"
+msgid "Liter"
+msgstr ""
+
+#. ZgERp
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id236636296681258\n"
+"help.text"
+msgid "Cubic light-year"
+msgstr ""
+
+#. xbjLF
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id538319527687728\n"
+"help.text"
+msgid "Cubic meter"
+msgstr ""
+
+#. GG8ep
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id463843338576911\n"
+"help.text"
+msgid "Cubic international mile"
+msgstr ""
+
+#. apJka
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id995778363641811\n"
+"help.text"
+msgid "Australian middy (285 milliliters)"
+msgstr ""
+
+#. 5vKXB
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id894695318848125\n"
+"help.text"
+msgid "Measurement ton"
+msgstr ""
+
+#. gAxRC
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id392284181269245\n"
+"help.text"
+msgid "Cubic nautical mile"
+msgstr ""
+
+#. GLMFQ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id371262895179554\n"
+"help.text"
+msgid "US fluid ounce"
+msgstr ""
+
+#. KdjB5
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id956867693183654\n"
+"help.text"
+msgid "Cubic pica"
+msgstr ""
+
+#. wPWak
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id698697624265559\n"
+"help.text"
+msgid "US pint"
+msgstr ""
+
+#. oaVnc
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id615917164511264\n"
+"help.text"
+msgid "US quart"
+msgstr ""
+
+#. nFgfR
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id653481929342877\n"
+"help.text"
+msgid "Australian schooner (425 milliliters)"
+msgstr ""
+
+#. yumuN
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id912821548196546\n"
+"help.text"
+msgid "Six pack (2 liters)"
+msgstr ""
+
+#. GNQxR
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id248216629889251\n"
+"help.text"
+msgid "US tablespoon"
+msgstr ""
+
+#. Bs5pc
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id745625921159327\n"
+"help.text"
+msgid "US teaspoon"
+msgstr ""
+
+#. oFoZf
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id864223151994899\n"
+"help.text"
+msgid "Metric teaspoon"
+msgstr ""
+
+#. 6eLBT
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id311759289592485\n"
+"help.text"
+msgid "Imperial gallon"
+msgstr ""
+
+#. zJyLT
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id673293916128784\n"
+"help.text"
+msgid "Imperial pint"
+msgstr ""
+
+#. f9zhg
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id213353742979736\n"
+"help.text"
+msgid "Imperial quart"
+msgstr ""
+
+#. TGDmn
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id817884513513347\n"
+"help.text"
+msgid "Cubic yard"
+msgstr ""
+
+#. EsueL
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id671641306535516\n"
+"help.text"
+msgid "2 - These units are not part of the <emph>Open Document Format for Office Applications (OpenDocument) Version 1.3. Part 4: Recalculated Formula (OpenFormula) Format</emph> standard for the CONVERT function. They are preserved for backward compatibility."
+msgstr ""
+
+#. ej2DE
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id21620415408286\n"
+"help.text"
+msgid "Prefixes"
+msgstr ""
+
+#. TSaMK
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id731620426688645\n"
+"help.text"
+msgid "Decimal prefixes"
+msgstr ""
+
+#. cjDA7
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id772395422122114\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. yHdoH
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id448471762246791\n"
+"help.text"
+msgid "Multiplier"
+msgstr ""
+
+#. zByEE
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id91620427193950\n"
+"help.text"
+msgid "Binary prefixes"
+msgstr ""
+
+#. X7TD3
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id422991712375461\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. mAcRr
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id553637738674151\n"
+"help.text"
+msgid "Multiplier"
+msgstr ""
+
+#. gc56z
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id871621424421294\n"
+"help.text"
+msgid "<link href=\"https://wiki.documentfoundation.org/Documentation/Calc_Functions/CONVERT\">CONVERT Wiki page</link>"
+msgstr ""
+
+#. JEUej
+#: func_countifs.xhp
+msgctxt ""
+"func_countifs.xhp\n"
+"tit\n"
+"help.text"
+msgid "COUNTIFS function"
+msgstr ""
+
+#. Kprey
+#: func_countifs.xhp
+msgctxt ""
+"func_countifs.xhp\n"
+"bm_id452245224522\n"
+"help.text"
+msgid "<bookmark_value>COUNTIFS function</bookmark_value> <bookmark_value>counting row;satisfying criteria</bookmark_value> <bookmark_value>counting column;satisfying criteria</bookmark_value>"
+msgstr ""
+
+#. wMH8u
+#: func_countifs.xhp
+msgctxt ""
+"func_countifs.xhp\n"
+"hd_id456845684568\n"
+"help.text"
+msgid "<variable id=\"countifs_head\"><link href=\"text/scalc/01/func_countifs.xhp\">COUNTIFS</link></variable>"
+msgstr ""
+
+#. pGTzr
+#: func_countifs.xhp
+msgctxt ""
+"func_countifs.xhp\n"
+"par_id462646264626\n"
+"help.text"
+msgid "<ahelp hid=\".\"><variable id=\"countifs_des\">Returns the count of cells that meet criteria in multiple ranges.</variable></ahelp>"
+msgstr ""
+
+#. jbwVT
+#: func_countifs.xhp
+msgctxt ""
+"func_countifs.xhp\n"
+"par_id27421466710275\n"
+"help.text"
+msgid "COUNTIFS(Range; Criterion[; Range2; Criterion2][; ... ; [Range127; Criterion127]])"
+msgstr ""
+
+#. KTAXW
+#: func_countifs.xhp
+msgctxt ""
+"func_countifs.xhp\n"
+"par_id14734320631377\n"
+"help.text"
+msgid "<emph>Range, Range2, ...</emph> and <emph>Criterion, Criterion2, ...</emph> must have the same size, otherwise the function returns err:502 - Invalid argument."
+msgstr ""
+
+#. ZuFZj
+#: func_countifs.xhp
+msgctxt ""
+"func_countifs.xhp\n"
+"hd_id3861259759512\n"
+"help.text"
+msgid "Simple usage"
+msgstr ""
+
+#. uDqwg
+#: func_countifs.xhp
+msgctxt ""
+"func_countifs.xhp\n"
+"par_id15856592423333\n"
+"help.text"
+msgid "<item type=\"input\">=COUNTIFS(B2:B6;\">=20\")</item>"
+msgstr ""
+
+#. JCUwJ
+#: func_countifs.xhp
+msgctxt ""
+"func_countifs.xhp\n"
+"par_id323511393121175\n"
+"help.text"
+msgid "Counts the amount of rows of the range B2:B6 with values greater than or equal to 20. Returns 3, because the fifth and the sixth rows do not meet the criterion."
+msgstr ""
+
+#. 4aGmq
+#: func_countifs.xhp
+msgctxt ""
+"func_countifs.xhp\n"
+"par_id74301057922522\n"
+"help.text"
+msgid "<item type=\"input\">=COUNTIFS(B2:B6;\">=20\";C2:C6;\">70\")</item>"
+msgstr ""
+
+#. AyFxS
+#: func_countifs.xhp
+msgctxt ""
+"func_countifs.xhp\n"
+"par_id109622995127628\n"
+"help.text"
+msgid "Counts the amount of rows that contain simultaneously values greater than 70 in the C2:C6 range and values greater than or equal to 20 in the B2:B6 range. Returns 2, because the second, the fifth and the sixth rows do not meet at least one criterion."
+msgstr ""
+
+#. AGcGC
+#: func_countifs.xhp
+msgctxt ""
+"func_countifs.xhp\n"
+"hd_id298462825526166\n"
+"help.text"
+msgid "Using regular expressions and nested functions"
+msgstr ""
+
+#. dgbYx
+#: func_countifs.xhp
+msgctxt ""
+"func_countifs.xhp\n"
+"par_id831605805755075\n"
+"help.text"
+msgid "For these examples to work as described, make sure that <emph>Enable regular expressions in formulas</emph> is selected in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - $[officename] Calc - Calculate</menuitem>."
+msgstr ""
+
+#. iHFsx
+#: func_countifs.xhp
+msgctxt ""
+"func_countifs.xhp\n"
+"par_id22736248573471\n"
+"help.text"
+msgid "<item type=\"input\">=COUNTIFS(B2:B6;\"[:alpha:]*\")</item>"
+msgstr ""
+
+#. yiHkH
+#: func_countifs.xhp
+msgctxt ""
+"func_countifs.xhp\n"
+"par_id22137303324873\n"
+"help.text"
+msgid "Counts the amount of rows of the B2:B6 range that contain only alphabet symbols. Returns 1, because only sixth row meets the criterion."
+msgstr ""
+
+#. pNABF
+#: func_countifs.xhp
+msgctxt ""
+"func_countifs.xhp\n"
+"par_id82271340221411\n"
+"help.text"
+msgid "<item type=\"input\">=COUNTIFS(B2:B6;\">\"&MIN(B2:B6);B2:B6;\"<\"&MAX(B2:B6))</item>"
+msgstr ""
+
+#. 72QET
+#: func_countifs.xhp
+msgctxt ""
+"func_countifs.xhp\n"
+"par_id1105320769334\n"
+"help.text"
+msgid "Counts the amount of rows of the B2:B6 range excluding rows with minimum and maximum values of this range. Returns 2, because the third, the fifth and the sixth rows do not meet at least one criterion."
+msgstr ""
+
+#. jdWB5
+#: func_countifs.xhp
+msgctxt ""
+"func_countifs.xhp\n"
+"par_id267603146513224\n"
+"help.text"
+msgid "<item type=\"input\">=COUNTIFS(A2:A6;\"pen.*\";B2:B6;\"<\"&MAX(B2:B6))</item>"
+msgstr ""
+
+#. L6af2
+#: func_countifs.xhp
+msgctxt ""
+"func_countifs.xhp\n"
+"par_id111252614832220\n"
+"help.text"
+msgid "Counts the amount of rows that correspond to all cells of the A2:A6 range starting with \"pen\" and to all cells of the B2:B6 range with exception of its maximum. Returns 1, because only second row meets all criteria."
+msgstr ""
+
+#. rG36d
+#: func_countifs.xhp
+msgctxt ""
+"func_countifs.xhp\n"
+"hd_id212582362610399\n"
+"help.text"
+msgid "Reference to a cell as a criterion"
+msgstr ""
+
+#. ABwGC
+#: func_countifs.xhp
+msgctxt ""
+"func_countifs.xhp\n"
+"par_id3245551524846\n"
+"help.text"
+msgid "If you need to change a criterion easily, you may want to specify it in a separate cell and use a reference to this cell in the condition of the COUNTIFS function. For example, the above function can be rewritten as follows:"
+msgstr ""
+
+#. 3TTwe
+#: func_countifs.xhp
+msgctxt ""
+"func_countifs.xhp\n"
+"par_id109501907712434\n"
+"help.text"
+msgid "<item type=\"input\">=COUNTIFS(A2:A6;E2&\".*\";B2:B6;\"<\"&MAX(B2:B6))</item>"
+msgstr ""
+
+#. CNQBL
+#: func_countifs.xhp
+msgctxt ""
+"func_countifs.xhp\n"
+"par_id738533068520\n"
+"help.text"
+msgid "If E2 = pen, the function returns 1, because the link to the cell is substituted with its content and it works as a function above."
+msgstr ""
+
+#. GW3GV
+#: func_date.xhp
+msgctxt ""
+"func_date.xhp\n"
+"tit\n"
+"help.text"
+msgid "DATE"
+msgstr ""
+
+#. xCZGR
+#: func_date.xhp
+msgctxt ""
+"func_date.xhp\n"
+"bm_id3155511\n"
+"help.text"
+msgid "<bookmark_value>DATE function</bookmark_value>"
+msgstr ""
+
+#. TioqL
+#: func_date.xhp
+msgctxt ""
+"func_date.xhp\n"
+"hd_id3155511\n"
+"help.text"
+msgid "<variable id=\"date\"><link href=\"text/scalc/01/func_date.xhp\">DATE</link></variable>"
+msgstr ""
+
+#. Wa2yU
+#: func_date.xhp
+msgctxt ""
+"func_date.xhp\n"
+"par_id3153551\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 ""
+
+#. wCGHA
+#: func_date.xhp
+msgctxt ""
+"func_date.xhp\n"
+"par_id3150474\n"
+"help.text"
+msgid "DATE(Year; Month; Day)"
+msgstr ""
+
+#. zExSG
+#: func_date.xhp
+msgctxt ""
+"func_date.xhp\n"
+"par_id3152815\n"
+"help.text"
+msgid "<emph>Year</emph> is an integer between 1583 and 9957 or between 0 and 99."
+msgstr ""
+
+#. WVjaD
+#: func_date.xhp
+msgctxt ""
+"func_date.xhp\n"
+"par_id3153222\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 ""
+
+#. uuZQH
+#: func_date.xhp
+msgctxt ""
+"func_date.xhp\n"
+"par_id3155817\n"
+"help.text"
+msgid "<emph>Month</emph> is an integer indicating the month."
+msgstr ""
+
+#. gKdnj
+#: func_date.xhp
+msgctxt ""
+"func_date.xhp\n"
+"par_id3153183\n"
+"help.text"
+msgid "<emph>Day</emph> is an integer indicating the day of the month."
+msgstr ""
+
+#. qr3Qv
+#: func_date.xhp
+msgctxt ""
+"func_date.xhp\n"
+"par_id3156260\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 ""
+
+#. 8E7EB
+#: func_date.xhp
+msgctxt ""
+"func_date.xhp\n"
+"par_id3152589\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 ""
+
+#. pCLUK
+#: func_datedif.xhp
+msgctxt ""
+"func_datedif.xhp\n"
+"tit\n"
+"help.text"
+msgid "DATEDIF"
+msgstr ""
+
+#. kaPiN
+#: func_datedif.xhp
+msgctxt ""
+"func_datedif.xhp\n"
+"bm_id3155511\n"
+"help.text"
+msgid "<bookmark_value>DATEDIF function</bookmark_value>"
+msgstr ""
+
+#. M9yvp
+#: func_datedif.xhp
+msgctxt ""
+"func_datedif.xhp\n"
+"hd_id3155511\n"
+"help.text"
+msgid "<variable id=\"datedif\"><link href=\"text/scalc/01/func_datedif.xhp\">DATEDIF</link></variable>"
+msgstr ""
+
+#. mf9mw
+#: func_datedif.xhp
+msgctxt ""
+"func_datedif.xhp\n"
+"par_id3153551\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_DATEDIF\">This function returns the number of whole days, months or years between Start date and End date.</ahelp>"
+msgstr ""
+
+#. zRWUX
+#: func_datedif.xhp
+msgctxt ""
+"func_datedif.xhp\n"
+"par_id531642776283977\n"
+"help.text"
+msgid "<input>DATEDIF(Start date; End date; Interval)</input>"
+msgstr ""
+
+#. CMjse
+#: func_datedif.xhp
+msgctxt ""
+"func_datedif.xhp\n"
+"par_id3152815\n"
+"help.text"
+msgid "<emph>Start date</emph> is the date from when the calculation is carried out."
+msgstr ""
+
+#. HbrrC
+#: func_datedif.xhp
+msgctxt ""
+"func_datedif.xhp\n"
+"par_id3155817\n"
+"help.text"
+msgid "<emph>End date</emph> is the date until the calculation is carried out. End date must be later, than Start date."
+msgstr ""
+
+#. PZGXK
+#: func_datedif.xhp
+msgctxt ""
+"func_datedif.xhp\n"
+"par_id3153183\n"
+"help.text"
+msgid "<emph>Interval</emph> is a string that determines how the difference will be calculated. Possible values are \"d\", \"m\", \"y\", \"ym\", \"md\" or \"yd\" regardless of the current language settings."
+msgstr ""
+
+#. Lxgdp
+#: func_datedif.xhp
+msgctxt ""
+"func_datedif.xhp\n"
+"par_id5735953\n"
+"help.text"
+msgid "Value for \"Interval\""
+msgstr ""
+
+#. UBcKr
+#: func_datedif.xhp
+msgctxt ""
+"func_datedif.xhp\n"
+"par_id8360850\n"
+"help.text"
+msgid "Return value"
+msgstr ""
+
+#. iTUCH
+#: func_datedif.xhp
+msgctxt ""
+"func_datedif.xhp\n"
+"par_id908841\n"
+"help.text"
+msgid "Number of whole days between Start date and End date."
+msgstr ""
+
+#. KTzdL
+#: func_datedif.xhp
+msgctxt ""
+"func_datedif.xhp\n"
+"par_id9841608\n"
+"help.text"
+msgid "Number of whole months between Start date and End date."
+msgstr ""
+
+#. jMGKG
+#: func_datedif.xhp
+msgctxt ""
+"func_datedif.xhp\n"
+"par_id2136295\n"
+"help.text"
+msgid "Number of whole years between Start date and End date."
+msgstr ""
+
+#. 8tDzh
+#: func_datedif.xhp
+msgctxt ""
+"func_datedif.xhp\n"
+"par_id4186223\n"
+"help.text"
+msgid "Number of whole months when subtracting years from the difference of Start date and End date."
+msgstr ""
+
+#. jShMp
+#: func_datedif.xhp
+msgctxt ""
+"func_datedif.xhp\n"
+"par_id1491134\n"
+"help.text"
+msgid "Number of whole days when subtracting years and months from the difference of Start date and End date."
+msgstr ""
+
+#. 9uGY2
+#: func_datedif.xhp
+msgctxt ""
+"func_datedif.xhp\n"
+"par_id1591134\n"
+"help.text"
+msgid "Number of whole days when subtracting years from the difference of Start date and End date."
+msgstr ""
+
+#. Pc57T
+#: func_datedif.xhp
+msgctxt ""
+"func_datedif.xhp\n"
+"par_id3152589\n"
+"help.text"
+msgid "Birthday calculation. A man was born on 1974-04-17. Today is 2012-06-13."
+msgstr ""
+
+#. jbcJE
+#: func_datedif.xhp
+msgctxt ""
+"func_datedif.xhp\n"
+"par_id3252589\n"
+"help.text"
+msgid "<item type=\"input\">=DATEDIF(\"1974-04-17\";\"2012-06-13\";\"y\")</item> yields 38."
+msgstr ""
+
+#. k75FH
+#: func_datedif.xhp
+msgctxt ""
+"func_datedif.xhp\n"
+"par_id451535132395328\n"
+"help.text"
+msgid "<item type=\"input\">=DATEDIF(\"1974-04-17\";\"2012-06-13\";\"ym\")</item> yields 1."
+msgstr ""
+
+#. 3dbKg
+#: func_datedif.xhp
+msgctxt ""
+"func_datedif.xhp\n"
+"par_id611535132402642\n"
+"help.text"
+msgid "<item type=\"input\">=DATEDIF(\"1974-04-17\";\"2012-06-13\";\"md\")</item> yields 27."
+msgstr ""
+
+#. LA2Rw
+#: func_datedif.xhp
+msgctxt ""
+"func_datedif.xhp\n"
+"par_id511535132411940\n"
+"help.text"
+msgid "So he is 38 years, 1 month and 27 days old."
+msgstr ""
+
+#. yuWBU
+#: func_datedif.xhp
+msgctxt ""
+"func_datedif.xhp\n"
+"par_id3352589\n"
+"help.text"
+msgid "<item type=\"input\">=DATEDIF(DATE(1974,4,17);\"2012-06-13\";\"m\")</item> yields 457, he has been living for 457 months."
+msgstr ""
+
+#. tFAxV
+#: func_datedif.xhp
+msgctxt ""
+"func_datedif.xhp\n"
+"par_id3452589\n"
+"help.text"
+msgid "<item type=\"input\">=DATEDIF(\"1974-04-17\";\"2012-06-13\";\"d\")</item> yields 13937, he has been living for 13937 days."
+msgstr ""
+
+#. C8DrL
+#: func_datedif.xhp
+msgctxt ""
+"func_datedif.xhp\n"
+"par_id3752589\n"
+"help.text"
+msgid "<item type=\"input\">=DATEDIF(\"1974-04-17\";DATE(2012;06;13);\"yd\")</item> yields 57, his birthday was 57 days ago."
+msgstr ""
+
+#. 7eFQV
+#: func_datevalue.xhp
+msgctxt ""
+"func_datevalue.xhp\n"
+"tit\n"
+"help.text"
+msgid "DATEVALUE"
+msgstr ""
+
+#. s5yZC
+#: func_datevalue.xhp
+msgctxt ""
+"func_datevalue.xhp\n"
+"bm_id3145621\n"
+"help.text"
+msgid "<bookmark_value>DATEVALUE function</bookmark_value>"
+msgstr ""
+
+#. e4YFG
+#: func_datevalue.xhp
+msgctxt ""
+"func_datevalue.xhp\n"
+"hd_id3145621\n"
+"help.text"
+msgid "<variable id=\"datevalue\"><link href=\"text/scalc/01/func_datevalue.xhp\">DATEVALUE</link></variable>"
+msgstr ""
+
+#. kVQP6
+#: func_datevalue.xhp
+msgctxt ""
+"func_datevalue.xhp\n"
+"par_id3145087\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_DATWERT\">Returns the internal date number for text in quotes.</ahelp>"
+msgstr ""
+
+#. z3vTn
+#: func_datevalue.xhp
+msgctxt ""
+"func_datevalue.xhp\n"
+"par_id3149281\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 ""
+
+#. cqHjd
+#: func_datevalue.xhp
+msgctxt ""
+"func_datevalue.xhp\n"
+"par_id0119200903491982\n"
+"help.text"
+msgid "If the text string also includes a time value, DATEVALUE only returns the integer part of the conversion."
+msgstr ""
+
+#. 2FeGy
+#: func_datevalue.xhp
+msgctxt ""
+"func_datevalue.xhp\n"
+"par_id3149268\n"
+"help.text"
+msgid "DATEVALUE(\"Text\")"
+msgstr ""
+
+#. b4msi
+#: func_datevalue.xhp
+msgctxt ""
+"func_datevalue.xhp\n"
+"par_id3154819\n"
+"help.text"
+msgid "<emph>Text</emph> is a valid date expression and must be entered with quotation marks."
+msgstr ""
+
+#. dpZqE
+#: func_datevalue.xhp
+msgctxt ""
+"func_datevalue.xhp\n"
+"par_id3155841\n"
+"help.text"
+msgid "<item type=\"input\">=DATEVALUE(\"1954-07-20\")</item> yields 19925."
+msgstr ""
+
+#. hrZuN
+#: func_day.xhp
+msgctxt ""
+"func_day.xhp\n"
+"tit\n"
+"help.text"
+msgid "DAY"
+msgstr ""
+
+#. wFpn2
+#: func_day.xhp
+msgctxt ""
+"func_day.xhp\n"
+"bm_id3147317\n"
+"help.text"
+msgid "<bookmark_value>DAY function</bookmark_value>"
+msgstr ""
+
+#. VuxYK
+#: func_day.xhp
+msgctxt ""
+"func_day.xhp\n"
+"hd_id3147317\n"
+"help.text"
+msgid "<variable id=\"day\"><link href=\"text/scalc/01/func_day.xhp\">DAY</link></variable>"
+msgstr ""
+
+#. e3R7o
+#: func_day.xhp
+msgctxt ""
+"func_day.xhp\n"
+"par_id3147584\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 ""
+
+#. FLB9L
+#: func_day.xhp
+msgctxt ""
+"func_day.xhp\n"
+"par_id3149430\n"
+"help.text"
+msgid "DAY(Number)"
+msgstr ""
+
+#. yZGAV
+#: func_day.xhp
+msgctxt ""
+"func_day.xhp\n"
+"par_id3149443\n"
+"help.text"
+msgid "<emph>Number</emph> is the internal date number."
+msgstr ""
+
+#. rUQip
+#: func_day.xhp
+msgctxt ""
+"func_day.xhp\n"
+"par_id3151200\n"
+"help.text"
+msgid "<item type=\"input\">=DAY(1)</item> returns 31 (since $[officename] starts counting at zero from December 30, 1899)"
+msgstr ""
+
+#. h7jdH
+#: func_day.xhp
+msgctxt ""
+"func_day.xhp\n"
+"par_id3154130\n"
+"help.text"
+msgid "<item type=\"input\">=DAY(NOW())</item> returns the current day."
+msgstr ""
+
+#. eDsDG
+#: func_day.xhp
+msgctxt ""
+"func_day.xhp\n"
+"par_id3159190\n"
+"help.text"
+msgid "<item type=\"input\">=DAY(C4)</item> returns 5 if you enter 1901-08-05 in cell C4 (the date value might get formatted differently after you press Enter)."
+msgstr ""
+
+#. MsTm6
+#: func_days.xhp
+msgctxt ""
+"func_days.xhp\n"
+"tit\n"
+"help.text"
+msgid "DAYS"
+msgstr ""
+
+#. fzTDF
+#: func_days.xhp
+msgctxt ""
+"func_days.xhp\n"
+"bm_id3151328\n"
+"help.text"
+msgid "<bookmark_value>DAYS function</bookmark_value>"
+msgstr ""
+
+#. AaMFZ
+#: func_days.xhp
+msgctxt ""
+"func_days.xhp\n"
+"hd_id3151328\n"
+"help.text"
+msgid "<variable id=\"days\"><link href=\"text/scalc/01/func_days.xhp\">DAYS</link></variable>"
+msgstr ""
+
+#. 9XbLJ
+#: func_days.xhp
+msgctxt ""
+"func_days.xhp\n"
+"par_id3155139\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 ""
+
+#. dwbGn
+#: func_days.xhp
+msgctxt ""
+"func_days.xhp\n"
+"par_id3149578\n"
+"help.text"
+msgid "DAYS(Date2; Date1)"
+msgstr ""
+
+#. wt5bA
+#: func_days.xhp
+msgctxt ""
+"func_days.xhp\n"
+"par_id3151376\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 ""
+
+#. hjctD
+#: func_days.xhp
+msgctxt ""
+"func_days.xhp\n"
+"par_id3159101\n"
+"help.text"
+msgid "<item type=\"input\">=DAYS(NOW();\"2010-01-01\"))</item> returns the number of days from January 1, 2010 until today."
+msgstr ""
+
+#. GwLS3
+#: func_days.xhp
+msgctxt ""
+"func_days.xhp\n"
+"par_id3163720\n"
+"help.text"
+msgid "<item type=\"input\">=DAYS(\"1990-10-10\";\"1980-10-10\")</item> returns 3652 days."
+msgstr ""
+
+#. 8vNn9
+#: func_days360.xhp
+msgctxt ""
+"func_days360.xhp\n"
+"tit\n"
+"help.text"
+msgid "DAYS360"
+msgstr ""
+
+#. AuFff
+#: func_days360.xhp
+msgctxt ""
+"func_days360.xhp\n"
+"bm_id3148555\n"
+"help.text"
+msgid "<bookmark_value>DAYS360 function</bookmark_value>"
+msgstr ""
+
+#. GnutH
+#: func_days360.xhp
+msgctxt ""
+"func_days360.xhp\n"
+"hd_id3148555\n"
+"help.text"
+msgid "<variable id=\"days360\"><link href=\"text/scalc/01/func_days360.xhp\">DAYS360</link></variable>"
+msgstr ""
+
+#. Qzamg
+#: func_days360.xhp
+msgctxt ""
+"func_days360.xhp\n"
+"par_id3156032\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 ""
+
+#. Vndiw
+#: func_days360.xhp
+msgctxt ""
+"func_days360.xhp\n"
+"par_id3155313\n"
+"help.text"
+msgid "DAYS360(Date1; Date2[; Type])"
+msgstr ""
+
+#. 5qfGz
+#: func_days360.xhp
+msgctxt ""
+"func_days360.xhp\n"
+"par_id3145263\n"
+"help.text"
+msgid "If <emph>Date2</emph> is earlier than <emph>Date1</emph>, the function will return a negative number."
+msgstr ""
+
+#. GD4Dc
+#: func_days360.xhp
+msgctxt ""
+"func_days360.xhp\n"
+"par_id3151064\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 ""
+
+#. qN5ZS
+#: func_days360.xhp
+msgctxt ""
+"func_days360.xhp\n"
+"par_id3156348\n"
+"help.text"
+msgid "<item type=\"input\">=DAYS360(\"2000-01-01\";NOW())</item> returns the number of interest days from January 1, 2000 until today."
+msgstr ""
+
+#. RpPVW
+#: func_eastersunday.xhp
+msgctxt ""
+"func_eastersunday.xhp\n"
+"tit\n"
+"help.text"
+msgid "EASTERSUNDAY"
+msgstr ""
+
+#. xLmeE
+#: func_eastersunday.xhp
+msgctxt ""
+"func_eastersunday.xhp\n"
+"bm_id3152960\n"
+"help.text"
+msgid "<bookmark_value>EASTERSUNDAY function</bookmark_value>"
+msgstr ""
+
+#. Y9MZF
+#: func_eastersunday.xhp
+msgctxt ""
+"func_eastersunday.xhp\n"
+"hd_id3152960\n"
+"help.text"
+msgid "<variable id=\"eastersunday\"><link href=\"text/scalc/01/func_eastersunday.xhp\">EASTERSUNDAY</link></variable>"
+msgstr ""
+
+#. 3tYGn
+#: func_eastersunday.xhp
+msgctxt ""
+"func_eastersunday.xhp\n"
+"par_id3154570\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_OSTERSONNTAG\">Returns the date of Easter Sunday for the entered year.</ahelp>"
+msgstr ""
+
+#. 3RpKr
+#: func_eastersunday.xhp
+msgctxt ""
+"func_eastersunday.xhp\n"
+"par_id2113711\n"
+"help.text"
+msgid "EASTERSUNDAY(Year)"
+msgstr ""
+
+#. DqDwB
+#: func_eastersunday.xhp
+msgctxt ""
+"func_eastersunday.xhp\n"
+"par_id3938413\n"
+"help.text"
+msgid "<emph>Year</emph> is an integer between 1583 and 9956 or 0 and 99. You can also calculate other holidays by simple addition with this date."
+msgstr ""
+
+#. mABBt
+#: func_eastersunday.xhp
+msgctxt ""
+"func_eastersunday.xhp\n"
+"par_id3156156\n"
+"help.text"
+msgid "Easter Monday = EASTERSUNDAY(Year) + 1"
+msgstr ""
+
+#. zGhAa
+#: func_eastersunday.xhp
+msgctxt ""
+"func_eastersunday.xhp\n"
+"par_id3147521\n"
+"help.text"
+msgid "Good Friday = EASTERSUNDAY(Year) - 2"
+msgstr ""
+
+#. JWWVT
+#: func_eastersunday.xhp
+msgctxt ""
+"func_eastersunday.xhp\n"
+"par_id3146072\n"
+"help.text"
+msgid "Pentecost Sunday = EASTERSUNDAY(Year) + 49"
+msgstr ""
+
+#. RwEdh
+#: func_eastersunday.xhp
+msgctxt ""
+"func_eastersunday.xhp\n"
+"par_id3149553\n"
+"help.text"
+msgid "Pentecost Monday = EASTERSUNDAY(Year) + 50"
+msgstr ""
+
+#. DGkrF
+#: func_eastersunday.xhp
+msgctxt ""
+"func_eastersunday.xhp\n"
+"par_id3154472\n"
+"help.text"
+msgid "<item type=\"input\">=EASTERSUNDAY(2000)</item> returns 2000-04-23."
+msgstr ""
+
+#. 8dGJE
+#: func_eastersunday.xhp
+msgctxt ""
+"func_eastersunday.xhp\n"
+"par_id3150940\n"
+"help.text"
+msgid "<item type=\"input\">=EASTERSUNDAY(2000)+49</item> 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 ""
+
+#. ZjahK
+#: func_edate.xhp
+msgctxt ""
+"func_edate.xhp\n"
+"tit\n"
+"help.text"
+msgid "EDATE"
+msgstr ""
+
+#. JCNpj
+#: func_edate.xhp
+msgctxt ""
+"func_edate.xhp\n"
+"bm_id3151184\n"
+"help.text"
+msgid "<bookmark_value>EDATE function</bookmark_value>"
+msgstr ""
+
+#. HdAN4
+#: func_edate.xhp
+msgctxt ""
+"func_edate.xhp\n"
+"hd_id3151184\n"
+"help.text"
+msgid "<variable id=\"edate\"><link href=\"text/scalc/01/func_edate.xhp\">EDATE</link></variable>"
+msgstr ""
+
+#. RiHAG
+#: func_edate.xhp
+msgctxt ""
+"func_edate.xhp\n"
+"par_id3150880\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 ""
+
+#. pLxiB
+#: func_edate.xhp
+msgctxt ""
+"func_edate.xhp\n"
+"par_id3153212\n"
+"help.text"
+msgid "EDATE(StartDate; Months)"
+msgstr ""
+
+#. qtwFa
+#: func_edate.xhp
+msgctxt ""
+"func_edate.xhp\n"
+"par_id3146860\n"
+"help.text"
+msgid "<emph>StartDate</emph> is a date."
+msgstr ""
+
+#. Zo2QF
+#: func_edate.xhp
+msgctxt ""
+"func_edate.xhp\n"
+"par_id3152929\n"
+"help.text"
+msgid "<emph>Months</emph> is the number of months before (negative) or after (positive) the start date."
+msgstr ""
+
+#. 9GCR8
+#: func_edate.xhp
+msgctxt ""
+"func_edate.xhp\n"
+"par_id3155845\n"
+"help.text"
+msgid "What date is one month prior to 2001-03-31?"
+msgstr ""
+
+#. BPn5C
+#: func_edate.xhp
+msgctxt ""
+"func_edate.xhp\n"
+"par_id3155999\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 ""
+
+#. 4kAEM
+#: func_eomonth.xhp
+msgctxt ""
+"func_eomonth.xhp\n"
+"tit\n"
+"help.text"
+msgid "EOMONTH"
+msgstr ""
+
+#. quyjG
+#: func_eomonth.xhp
+msgctxt ""
+"func_eomonth.xhp\n"
+"bm_id3150991\n"
+"help.text"
+msgid "<bookmark_value>EOMONTH function</bookmark_value>"
+msgstr ""
+
+#. 3pfQp
+#: func_eomonth.xhp
+msgctxt ""
+"func_eomonth.xhp\n"
+"hd_id3150991\n"
+"help.text"
+msgid "<variable id=\"eomonth\"><link href=\"text/scalc/01/func_eomonth.xhp\">EOMONTH</link></variable>"
+msgstr ""
+
+#. 7BRLZ
+#: func_eomonth.xhp
+msgctxt ""
+"func_eomonth.xhp\n"
+"par_id3152766\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 ""
+
+#. CVrxb
+#: func_eomonth.xhp
+msgctxt ""
+"func_eomonth.xhp\n"
+"par_id3150351\n"
+"help.text"
+msgid "EOMONTH(StartDate; Months)"
+msgstr ""
+
+#. duM2o
+#: func_eomonth.xhp
+msgctxt ""
+"func_eomonth.xhp\n"
+"par_id3146787\n"
+"help.text"
+msgid "<emph>StartDate</emph> is a date (the starting point of the calculation)."
+msgstr ""
+
+#. NocFV
+#: func_eomonth.xhp
+msgctxt ""
+"func_eomonth.xhp\n"
+"par_id3155615\n"
+"help.text"
+msgid "<emph>Months</emph> is the number of months before (negative) or after (positive) the start date."
+msgstr ""
+
+#. AgbKk
+#: func_eomonth.xhp
+msgctxt ""
+"func_eomonth.xhp\n"
+"par_id3154829\n"
+"help.text"
+msgid "What is the last day of the month that falls 6 months after September 14 2001?"
+msgstr ""
+
+#. cq6AW
+#: func_eomonth.xhp
+msgctxt ""
+"func_eomonth.xhp\n"
+"par_id3156143\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 ""
+
+#. 7eUrP
+#: func_eomonth.xhp
+msgctxt ""
+"func_eomonth.xhp\n"
+"par_id3156144\n"
+"help.text"
+msgid "<item type=\"input\">=EOMONTH(\"2001-09-14\";6)</item> works as well. If you specify the date directly, we recommend using the standard ISO 8601 format because this should be independent of your selected locale settings."
+msgstr ""
+
+#. Lu8Ng
+#: func_eomonth.xhp
+msgctxt ""
+"func_eomonth.xhp\n"
+"par_id681621540307527\n"
+"help.text"
+msgid "<link href=\"https://wiki.documentfoundation.org/Documentation/Calc_Functions/EOMONTH\">EOMONTH wiki page</link>"
+msgstr ""
+
+#. BNTm6
+#: func_error_type.xhp
+msgctxt ""
+"func_error_type.xhp\n"
+"tit\n"
+"help.text"
+msgid "ERROR.TYPE function"
+msgstr ""
+
+#. Wvwf3
+#: func_error_type.xhp
+msgctxt ""
+"func_error_type.xhp\n"
+"bm_id346793467934679\n"
+"help.text"
+msgid "<bookmark_value>ERROR.TYPE function</bookmark_value> <bookmark_value>index of the Error type</bookmark_value>"
+msgstr ""
+
+#. ksPuq
+#: func_error_type.xhp
+msgctxt ""
+"func_error_type.xhp\n"
+"hd_id348223482234822\n"
+"help.text"
+msgid "<variable id=\"error_type_head\"><link href=\"text/scalc/01/func_error_type.xhp\">ERROR.TYPE</link></variable> function"
+msgstr ""
+
+#. UMFCu
+#: func_error_type.xhp
+msgctxt ""
+"func_error_type.xhp\n"
+"par_id350283502835028\n"
+"help.text"
+msgid "<ahelp hid=\".\"><variable id=\"error_type_des\">Returns a number representing a specific Error type, or the error value #N/A, if there is no error. </variable></ahelp>"
+msgstr ""
+
+#. YFzz5
+#: func_error_type.xhp
+msgctxt ""
+"func_error_type.xhp\n"
+"par_id1861223540440\n"
+"help.text"
+msgid "ERROR.TYPE(Error_value)"
+msgstr ""
+
+#. jxm2V
+#: func_error_type.xhp
+msgctxt ""
+"func_error_type.xhp\n"
+"par_id217737315\n"
+"help.text"
+msgid "<emph>Error_value</emph> – required argument. The error value or a reference to a cell, whose value needs to be processed."
+msgstr ""
+
+#. 9FhFw
+#: func_error_type.xhp
+msgctxt ""
+"func_error_type.xhp\n"
+"par_id15254419018421\n"
+"help.text"
+msgid "Error value"
+msgstr ""
+
+#. Y9mAa
+#: func_error_type.xhp
+msgctxt ""
+"func_error_type.xhp\n"
+"par_id134093102310948\n"
+"help.text"
+msgid "Returns"
+msgstr ""
+
+#. fUKES
+#: func_error_type.xhp
+msgctxt ""
+"func_error_type.xhp\n"
+"par_id121020152053105891\n"
+"help.text"
+msgid "Err:511"
+msgstr ""
+
+#. B2EPc
+#: func_error_type.xhp
+msgctxt ""
+"func_error_type.xhp\n"
+"par_id121020152053148760\n"
+"help.text"
+msgid "#DIV/0!"
+msgstr ""
+
+#. wqbPF
+#: func_error_type.xhp
+msgctxt ""
+"func_error_type.xhp\n"
+"par_id121020152053296785\n"
+"help.text"
+msgid "#VALUE!"
+msgstr ""
+
+#. TdjEG
+#: func_error_type.xhp
+msgctxt ""
+"func_error_type.xhp\n"
+"par_id121020152053329868\n"
+"help.text"
+msgid "#REF!"
+msgstr ""
+
+#. hEjUy
+#: func_error_type.xhp
+msgctxt ""
+"func_error_type.xhp\n"
+"par_id121020152053353976\n"
+"help.text"
+msgid "#NAME?"
+msgstr ""
+
+#. xv66i
+#: func_error_type.xhp
+msgctxt ""
+"func_error_type.xhp\n"
+"par_id121020152053408216\n"
+"help.text"
+msgid "#NUM!"
+msgstr ""
+
+#. L2qE7
+#: func_error_type.xhp
+msgctxt ""
+"func_error_type.xhp\n"
+"par_id121020152054007072\n"
+"help.text"
+msgid "#N/A"
+msgstr ""
+
+#. ZB8XE
+#: func_error_type.xhp
+msgctxt ""
+"func_error_type.xhp\n"
+"par_id121020152054075191\n"
+"help.text"
+msgid "Anything else"
+msgstr ""
+
+#. FySH9
+#: func_error_type.xhp
+msgctxt ""
+"func_error_type.xhp\n"
+"par_id121020152054075192\n"
+"help.text"
+msgid "#N/A"
+msgstr ""
+
+#. mCLBE
+#: func_error_type.xhp
+msgctxt ""
+"func_error_type.xhp\n"
+"hd_id182972884627444\n"
+"help.text"
+msgid "Simple usage"
+msgstr ""
+
+#. oogBc
+#: func_error_type.xhp
+msgctxt ""
+"func_error_type.xhp\n"
+"par_id15812966716957\n"
+"help.text"
+msgid "<item type=\"input\">=ERROR.TYPE(#N/A)</item>"
+msgstr ""
+
+#. XYAAM
+#: func_error_type.xhp
+msgctxt ""
+"func_error_type.xhp\n"
+"par_id280533214928308\n"
+"help.text"
+msgid "Returns 7, because 7 is the index number of the error value #N/A."
+msgstr ""
+
+#. MxaAn
+#: func_error_type.xhp
+msgctxt ""
+"func_error_type.xhp\n"
+"par_id1047088636291\n"
+"help.text"
+msgid "<item type=\"input\">=ERROR.TYPE(A3)</item>"
+msgstr ""
+
+#. 8UJpP
+#: func_error_type.xhp
+msgctxt ""
+"func_error_type.xhp\n"
+"par_id24308515918391\n"
+"help.text"
+msgid "If A3 contains an expression equivalent to the division by zero, the function returns 2, because 2 is the index number of the error value #DIV/0!"
+msgstr ""
+
+#. NEmkr
+#: func_error_type.xhp
+msgctxt ""
+"func_error_type.xhp\n"
+"hd_id9842206115046\n"
+"help.text"
+msgid "More advanced way"
+msgstr ""
+
+#. PP59Q
+#: func_error_type.xhp
+msgctxt ""
+"func_error_type.xhp\n"
+"par_id90121141327448\n"
+"help.text"
+msgid "If in division A1 by A2, A2 can turn to zero, you can handle the situation as follows:"
+msgstr ""
+
+#. uvFET
+#: func_error_type.xhp
+msgctxt ""
+"func_error_type.xhp\n"
+"par_id16083887218317\n"
+"help.text"
+msgid "<item type=\"input\">=IF(ISERROR(A1/A2);IF(ERROR.TYPE(A1/A2)=2;\"the denominator can't be equal to zero\");A1/A2)</item>"
+msgstr ""
+
+#. SZAbc
+#: func_error_type.xhp
+msgctxt ""
+"func_error_type.xhp\n"
+"par_id12475201719494\n"
+"help.text"
+msgid "The ISERROR function returns TRUE or FALSE depending on whether there is an error or not. If the error takes place, the function IF addresses to the second argument, if there is no error, it returns the result of the division. The second argument checks the index number representing the specific Error type, and if it is equal to 2, it returns the specified text \"the denominator can't be zero\" or 0 otherwise. Thus, clear text would signify the division by zero, the result of the division would appear when the division is successful, or if there is, for example, an error of another type, zero would be returned."
+msgstr ""
+
+#. 8XdGp
+#: func_error_type.xhp
+msgctxt ""
+"func_error_type.xhp\n"
+"par_id26251175451270\n"
+"help.text"
+msgid "If the ERROR.TYPE function is used as condition of the IF function and the ERROR.TYPE returns #N/A, the IF function returns #N/A as well. Use ISERROR to avoid it as shown in the example above."
+msgstr ""
+
+#. jKnF4
+#: func_error_type.xhp
+msgctxt ""
+"func_error_type.xhp\n"
+"par_id352953529535295\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060104.xhp#iserror\">ISERROR</link>, <link href=\"text/scalc/01/04060104.xhp#na\">NA</link>, <link href=\"text/scalc/01/04060104.xhp#Section4\">IF</link>"
+msgstr ""
+
+#. EWJHG
+#: func_error_type.xhp
+msgctxt ""
+"func_error_type.xhp\n"
+"par_id312932390024933\n"
+"help.text"
+msgid "<link href=\"text/scalc/05/02140000.xhp\" name=\"Error codes\">Error codes</link>"
+msgstr ""
+
+#. sUgSM
+#: func_findb.xhp
+msgctxt ""
+"func_findb.xhp\n"
+"tit\n"
+"help.text"
+msgid "FINDB Function"
+msgstr ""
+
+#. EkUr2
+#: func_findb.xhp
+msgctxt ""
+"func_findb.xhp\n"
+"bm_id141573508995071\n"
+"help.text"
+msgid "<bookmark_value>FINDB Function</bookmark_value> <bookmark_value>find text;FINDB Function</bookmark_value>"
+msgstr ""
+
+#. WmZAa
+#: func_findb.xhp
+msgctxt ""
+"func_findb.xhp\n"
+"hd_id771573508637966\n"
+"help.text"
+msgid "<variable id=\"findb\"><link href=\"text/scalc/01/func_findb.xhp\" name=\"findb\">FINDB</link></variable>"
+msgstr ""
+
+#. iW2EE
+#: func_findb.xhp
+msgctxt ""
+"func_findb.xhp\n"
+"par_id831573508637970\n"
+"help.text"
+msgid "<variable id=\"variable name\"><ahelp hid=\".\">Returns the starting position of a given text, using byte positions. FINDB is case sensitive.</ahelp></variable>"
+msgstr ""
+
+#. 4ztby
+#: func_findb.xhp
+msgctxt ""
+"func_findb.xhp\n"
+"par_id221573517641172\n"
+"help.text"
+msgid "FINDB(Find Text ; Text [; Position])"
+msgstr ""
+
+#. puQAw
+#: func_findb.xhp
+msgctxt ""
+"func_findb.xhp\n"
+"par_id241573517292388\n"
+"help.text"
+msgid "<emph>Find Text</emph>: The text or text expression to be found."
+msgstr ""
+
+#. YgyTW
+#: func_findb.xhp
+msgctxt ""
+"func_findb.xhp\n"
+"par_id991573517299918\n"
+"help.text"
+msgid "<emph>Text</emph>: the text in which the search is to be made."
+msgstr ""
+
+#. pfYPq
+#: func_findb.xhp
+msgctxt ""
+"func_findb.xhp\n"
+"par_id521573517305077\n"
+"help.text"
+msgid "<emph>Position</emph>: The position in the text where the search starts."
+msgstr ""
+
+#. okEBS
+#: func_findb.xhp
+msgctxt ""
+"func_findb.xhp\n"
+"par_id481573517830373\n"
+"help.text"
+msgid "<input>=FINDB(\"a\"; \"LibreOffice Calc\")</input> returns 15. The <emph>Find Text</emph> argument is a text string that comprises a full-width, double-byte \"a\" character, while the <emph>Text</emph> argument comprises 12 single-byte characters followed by four full-width, double-byte characters."
+msgstr ""
+
+#. aACGP
+#: func_floor.xhp
+msgctxt ""
+"func_floor.xhp\n"
+"tit\n"
+"help.text"
+msgid "FLOOR Functions"
+msgstr ""
+
+#. RuCRw
+#: func_floor.xhp
+msgctxt ""
+"func_floor.xhp\n"
+"hd_id391586285373874\n"
+"help.text"
+msgid "FLOOR Functions"
+msgstr ""
+
+#. hkrkw
+#: func_floor.xhp
+msgctxt ""
+"func_floor.xhp\n"
+"bm_id3157404\n"
+"help.text"
+msgid "<bookmark_value>FLOOR function</bookmark_value><bookmark_value>rounding;down to nearest multiple of significance</bookmark_value>"
+msgstr ""
+
+#. KoqGL
+#: func_floor.xhp
+msgctxt ""
+"func_floor.xhp\n"
+"hd_id3157404\n"
+"help.text"
+msgid "<variable id=\"FLOORh1\"><link href=\"text/scalc/01/func_floor.xhp#floor\" name=\"FLOOR\">FLOOR</link></variable>"
+msgstr ""
+
+#. VSV8H
+#: func_floor.xhp
+msgctxt ""
+"func_floor.xhp\n"
+"par_id3157432\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_UNTERGRENZE\">Rounds a number to the nearest multiple of a significance value.</ahelp>"
+msgstr ""
+
+#. 345Fr
+#: func_floor.xhp
+msgctxt ""
+"func_floor.xhp\n"
+"par_id661586285977707\n"
+"help.text"
+msgid "For a positive number and a positive significance value, the function rounds down (towards zero). For a negative number and a negative significance value, the direction of rounding is determined by the value of a mode parameter. The function returns an error if the number and significance values have opposite signs."
+msgstr ""
+
+#. 5kHtR
+#: func_floor.xhp
+msgctxt ""
+"func_floor.xhp\n"
+"par_id3163894\n"
+"help.text"
+msgid "If the spreadsheet is exported to Microsoft Excel, the FLOOR function is exported as the equivalent FLOOR.MATH function that has existed since Excel 2013. If you plan to use the spreadsheet with earlier Excel versions, use either FLOOR.PRECISE that has existed since Excel 2010, or FLOOR.XCL that is exported as the FLOOR function compatible with all Excel versions."
+msgstr ""
+
+#. 2haGU
+#: func_floor.xhp
+msgctxt ""
+"func_floor.xhp\n"
+"par_id3157464\n"
+"help.text"
+msgid "FLOOR(Number[; Significance[; Mode]])"
+msgstr ""
+
+#. ERf3D
+#: func_floor.xhp
+msgctxt ""
+"func_floor.xhp\n"
+"par_id3153467\n"
+"help.text"
+msgid "<emph>Number</emph> is the number that is to be rounded, or a reference to a cell containing the number."
+msgstr ""
+
+#. 8w8tL
+#: func_floor.xhp
+msgctxt ""
+"func_floor.xhp\n"
+"par_id3157497\n"
+"help.text"
+msgid "<emph>Significance</emph> (optional) is the value, or a reference to a cell containing the value, to whose multiple <emph>Number</emph> is to be rounded. It defaults to +1 or -1 depending on the sign of <emph>Number</emph>."
+msgstr ""
+
+#. qCpHR
+#: func_floor.xhp
+msgctxt ""
+"func_floor.xhp\n"
+"par_id3157517\n"
+"help.text"
+msgid "<emph>Mode</emph> (optional) is a number, or a reference to a cell containing a number. The function only uses <emph>Mode</emph> if both <emph>Number</emph> and <emph>Significance</emph> are negative. Then if <emph>Mode</emph> is given and not equal to zero, numbers are rounded up (towards zero); if <emph>Mode</emph> is equal to zero or not given, negative numbers are rounded down (away from zero)."
+msgstr ""
+
+#. EU85r
+#: func_floor.xhp
+msgctxt ""
+"func_floor.xhp\n"
+"par_id761586287595376\n"
+"help.text"
+msgid "<input>=FLOOR(3.45)</input> returns 3."
+msgstr ""
+
+#. vuJc5
+#: func_floor.xhp
+msgctxt ""
+"func_floor.xhp\n"
+"par_id311586287600048\n"
+"help.text"
+msgid "<input>=FLOOR(3.45, 3)</input> returns 3."
+msgstr ""
+
+#. uTWTb
+#: func_floor.xhp
+msgctxt ""
+"func_floor.xhp\n"
+"par_id661586287604519\n"
+"help.text"
+msgid "<input>=FLOOR(-1.234)</input> returns -2."
+msgstr ""
+
+#. 8ZGDc
+#: func_floor.xhp
+msgctxt ""
+"func_floor.xhp\n"
+"par_id741586287608968\n"
+"help.text"
+msgid "<input>=FLOOR(-45.67, -2, 0)</input> returns -46."
+msgstr ""
+
+#. gXsTm
+#: func_floor.xhp
+msgctxt ""
+"func_floor.xhp\n"
+"par_id431586287616089\n"
+"help.text"
+msgid "<input>=FLOOR(-45.67, -2, 1)</input> returns -44."
+msgstr ""
+
+#. zzTLr
+#: func_floor.xhp
+msgctxt ""
+"func_floor.xhp\n"
+"bm_id811586290952465\n"
+"help.text"
+msgid "<bookmark_value>FLOOR.MATH function</bookmark_value>"
+msgstr ""
+
+#. rEELD
+#: func_floor.xhp
+msgctxt ""
+"func_floor.xhp\n"
+"hd_id1001586287279297\n"
+"help.text"
+msgid "<variable id=\"FLOOR.MATHh1\"><link href=\"text/scalc/01/func_floor.xhp#floormath\" name=\"FLOOR.MATH\">FLOOR.MATH</link></variable>"
+msgstr ""
+
+#. BBjwd
+#: func_floor.xhp
+msgctxt ""
+"func_floor.xhp\n"
+"par_id721586287302689\n"
+"help.text"
+msgid "Rounds a number to the nearest multiple of a significance value."
+msgstr ""
+
+#. UJLZc
+#: func_floor.xhp
+msgctxt ""
+"func_floor.xhp\n"
+"par_id311586287323417\n"
+"help.text"
+msgid "For a positive number the function rounds down (towards zero). For a negative number, the direction of rounding is determined by the value of a mode parameter. The sign of the significance value is ignored."
+msgstr ""
+
+#. 4weAd
+#: func_floor.xhp
+msgctxt ""
+"func_floor.xhp\n"
+"par_id851586287535879\n"
+"help.text"
+msgid "This function exists for interoperability with Microsoft Excel 2013 or newer."
+msgstr ""
+
+#. 4DFyG
+#: func_floor.xhp
+msgctxt ""
+"func_floor.xhp\n"
+"par_id161586287421523\n"
+"help.text"
+msgid "FLOOR.MATH(Number[; Significance[; Mode]])"
+msgstr ""
+
+#. Un6FB
+#: func_floor.xhp
+msgctxt ""
+"func_floor.xhp\n"
+"par_id231586287448716\n"
+"help.text"
+msgid "<emph>Significance</emph> (optional) is the value, or a reference to a cell containing the value, to whose multiple <emph>Number</emph> is to be rounded. It defaults to 1."
+msgstr ""
+
+#. L9MKT
+#: func_floor.xhp
+msgctxt ""
+"func_floor.xhp\n"
+"par_id261586287494401\n"
+"help.text"
+msgid "<emph>Mode</emph> (optional) is a number, or a reference to a cell containing a number. If <emph>Mode</emph> is given and not equal to zero, a negative <emph>Number</emph> is rounded up (towards zero). If <emph>Mode</emph> is equal to zero or is not given, a negative <emph>Number</emph> is rounded down (away from zero)."
+msgstr ""
+
+#. wCd8C
+#: func_floor.xhp
+msgctxt ""
+"func_floor.xhp\n"
+"par_id101586287621816\n"
+"help.text"
+msgid "<input>=FLOOR.MATH(3.45)</input> returns 3."
+msgstr ""
+
+#. p27MD
+#: func_floor.xhp
+msgctxt ""
+"func_floor.xhp\n"
+"par_id771586287627784\n"
+"help.text"
+msgid "<input>=FLOOR.MATH(3.45,-3)</input> returns 3."
+msgstr ""
+
+#. Fehfx
+#: func_floor.xhp
+msgctxt ""
+"func_floor.xhp\n"
+"par_id981586287632392\n"
+"help.text"
+msgid "<input>=FLOOR.MATH(-1.234)</input> returns -2."
+msgstr ""
+
+#. eQfea
+#: func_floor.xhp
+msgctxt ""
+"func_floor.xhp\n"
+"par_id631586287637256\n"
+"help.text"
+msgid "<input>=FLOOR.MATH(-45.67,-2, 0)</input> returns -46."
+msgstr ""
+
+#. XXqpS
+#: func_floor.xhp
+msgctxt ""
+"func_floor.xhp\n"
+"par_id371586287641888\n"
+"help.text"
+msgid "<input>=FLOOR.MATH(-45.67,+2, 1)</input> returns -44."
+msgstr ""
+
+#. 9MJem
+#: func_floor.xhp
+msgctxt ""
+"func_floor.xhp\n"
+"bm_id2957404\n"
+"help.text"
+msgid "<bookmark_value>FLOOR.PRECISE function</bookmark_value><bookmark_value>rounding;down to nearest multiple of significance</bookmark_value>"
+msgstr ""
+
+#. niyQj
+#: func_floor.xhp
+msgctxt ""
+"func_floor.xhp\n"
+"hd_id2957404\n"
+"help.text"
+msgid "<variable id=\"FLOOR.PRECISEh1\"><link href=\"text/scalc/01/func_floor.xhp#floorprecise\" name=\"FLOOR.PRECISE\">FLOOR.PRECISE</link></variable>"
+msgstr ""
+
+#. DgQBx
+#: func_floor.xhp
+msgctxt ""
+"func_floor.xhp\n"
+"par_id2957432\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_FLOOR_MS\">Rounds a number down to the nearest multiple of a significance value.</ahelp>"
+msgstr ""
+
+#. NHMnz
+#: func_floor.xhp
+msgctxt ""
+"func_floor.xhp\n"
+"par_id261586641501175\n"
+"help.text"
+msgid "For a positive number the function rounds down (towards zero). For a negative number, the function rounds down (away form zero). The sign of the significance value is ignored."
+msgstr ""
+
+#. ni9y2
+#: func_floor.xhp
+msgctxt ""
+"func_floor.xhp\n"
+"par_id2957464\n"
+"help.text"
+msgid "FLOOR.PRECISE(Number[; Significance])"
+msgstr ""
+
+#. pirHp
+#: func_floor.xhp
+msgctxt ""
+"func_floor.xhp\n"
+"par_id2957497\n"
+"help.text"
+msgid "<emph>Significance</emph> (optional) is the value, or a reference to a cell containing the value, to whose multiple <emph>Number</emph> is to be rounded. It defaults to 1."
+msgstr ""
+
+#. smFCw
+#: func_floor.xhp
+msgctxt ""
+"func_floor.xhp\n"
+"par_id981586291388900\n"
+"help.text"
+msgid "<input>=FLOOR.PRECISE(3.45)</input> returns 3."
+msgstr ""
+
+#. Q9vnd
+#: func_floor.xhp
+msgctxt ""
+"func_floor.xhp\n"
+"par_id831586291395477\n"
+"help.text"
+msgid "<input>=FLOOR.PRECISE(-45.67,2)</input> returns -46."
+msgstr ""
+
+#. HnS5F
+#: func_floor.xhp
+msgctxt ""
+"func_floor.xhp\n"
+"bm_id171586291849333\n"
+"help.text"
+msgid "<bookmark_value>FLOOR.XCL function</bookmark_value>"
+msgstr ""
+
+#. LMEET
+#: func_floor.xhp
+msgctxt ""
+"func_floor.xhp\n"
+"hd_id791586291468176\n"
+"help.text"
+msgid "<variable id=\"FLOOR.XCLh1\"><link href=\"text/scalc/01/func_floor.xhp#floorxcl\" name=\"FLOOR.XCL\">FLOOR.XCL</link></variable>"
+msgstr ""
+
+#. WMsAT
+#: func_floor.xhp
+msgctxt ""
+"func_floor.xhp\n"
+"par_id521586291476023\n"
+"help.text"
+msgid "Rounds a number to the nearest multiple of a significance value."
+msgstr ""
+
+#. jrymG
+#: func_floor.xhp
+msgctxt ""
+"func_floor.xhp\n"
+"par_id401586291488768\n"
+"help.text"
+msgid "For a positive number and a positive significance value, the function rounds down (towards zero). For a negative number and a positive significance value, the function rounds down (away from zero). For a negative number and a negative significance value, the function rounds up (towards zero). The function returns an error if the number is positive and the significance value is negative."
+msgstr ""
+
+#. BFXRR
+#: func_floor.xhp
+msgctxt ""
+"func_floor.xhp\n"
+"par_id231586291503319\n"
+"help.text"
+msgid "This function exists for interoperability with Microsoft Excel 2007 or older. If a Calc spreadsheet is exported to Microsoft Excel, references to Calc’s FLOOR.XCL function are exported as references to Excel’s FLOOR function, which is compatible with all Excel versions. If a Microsoft Excel spreadsheet is imported into Calc, references to Excel’s FLOOR function are imported as references to Calc’s FLOOR.XCL function."
+msgstr ""
+
+#. WA7uC
+#: func_floor.xhp
+msgctxt ""
+"func_floor.xhp\n"
+"par_id491586291532177\n"
+"help.text"
+msgid "FLOOR.XCL(Number; Significance)"
+msgstr ""
+
+#. aRww7
+#: func_floor.xhp
+msgctxt ""
+"func_floor.xhp\n"
+"par_id761586291578755\n"
+"help.text"
+msgid "<emph>Significance</emph> is the value, or a reference to a cell containing the value, to whose multiple <emph>Number</emph> is to be rounded."
+msgstr ""
+
+#. HXuMo
+#: func_floor.xhp
+msgctxt ""
+"func_floor.xhp\n"
+"par_id531586291622306\n"
+"help.text"
+msgid "<input>=FLOOR.XCL(3.45,2)</input> returns 2."
+msgstr ""
+
+#. gFyGC
+#: func_floor.xhp
+msgctxt ""
+"func_floor.xhp\n"
+"par_id361586291628003\n"
+"help.text"
+msgid "<input>=FLOOR.XCL(-45.67,2)</input> returns -46."
+msgstr ""
+
+#. EU7xy
+#: func_floor.xhp
+msgctxt ""
+"func_floor.xhp\n"
+"par_id801586291641099\n"
+"help.text"
+msgid "<input>=FLOOR.XCL(-45.67,-2)</input> returns -44."
+msgstr ""
+
+#. 2YcR7
+#: func_forecastetsadd.xhp
+msgctxt ""
+"func_forecastetsadd.xhp\n"
+"tit\n"
+"help.text"
+msgid "FORECAST.ETS.ADD"
+msgstr ""
+
+#. SDUKF
+#: func_forecastetsadd.xhp
+msgctxt ""
+"func_forecastetsadd.xhp\n"
+"bm_id976559765597655\n"
+"help.text"
+msgid "<bookmark_value>FORECAST.ETS.ADD function</bookmark_value>"
+msgstr ""
+
+#. Ai5EN
+#: func_forecastetsadd.xhp
+msgctxt ""
+"func_forecastetsadd.xhp\n"
+"hd_id0603201610022291\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/func_forecastetsadd.xhp\">FORECAST.ETS.ADD function</link>"
+msgstr ""
+
+#. gBZ7v
+#: func_forecastetsadd.xhp
+msgctxt ""
+"func_forecastetsadd.xhp\n"
+"par_id0603201610023949\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_FORECAST_ETS_ADD\">Calculates the additive forecast(s) (future values) based on the historical data using ETS or EDS algorithms</ahelp>. EDS is used when argument <emph>period_length</emph> is 0, otherwise ETS is used."
+msgstr ""
+
+#. Cy68d
+#: func_forecastetsadd.xhp
+msgctxt ""
+"func_forecastetsadd.xhp\n"
+"par_id0603201608440530\n"
+"help.text"
+msgid "FORECAST.ETS.ADD calculates with the model"
+msgstr ""
+
+#. sRaGq
+#: func_forecastetsadd.xhp
+msgctxt ""
+"func_forecastetsadd.xhp\n"
+"par_id0403201618594544\n"
+"help.text"
+msgid "FORECAST.ETS.ADD(targets, values, timeline, [period_length], [data_completion], [aggregation])"
+msgstr ""
+
+#. cCDgz
+#: func_forecastetsadd.xhp
+msgctxt ""
+"func_forecastetsadd.xhp\n"
+"hd_id04032016185123\n"
+"help.text"
+msgid "=FORECAST.ETS.ADD(DATE(2014;1;1);Values;Timeline;1;TRUE();1)"
+msgstr ""
+
+#. BZHYV
+#: func_forecastetsadd.xhp
+msgctxt ""
+"func_forecastetsadd.xhp\n"
+"hd_id04032016112394554\n"
+"help.text"
+msgid "Returns 157.166666666667, the additive forecast for January 2014 based on <emph>Values</emph> and <emph>Timeline</emph> named ranges above, with one sample per period, no missing data, and AVERAGE as aggregation."
+msgstr ""
+
+#. q2vBP
+#: func_forecastetsadd.xhp
+msgctxt ""
+"func_forecastetsadd.xhp\n"
+"hd_id04032123185123\n"
+"help.text"
+msgid "=FORECAST.ETS.ADD(DATE(2014;1;1);Values;Timeline;4;TRUE();7)"
+msgstr ""
+
+#. ERJXc
+#: func_forecastetsadd.xhp
+msgctxt ""
+"func_forecastetsadd.xhp\n"
+"hd_id040312316112394554\n"
+"help.text"
+msgid "Returns 113.251442038722, the additive forecast for January 2014 based on <emph>Values</emph> and <emph>Timeline</emph> named ranges above, with period length of 4, no missing data, and SUM as aggregation."
+msgstr ""
+
+#. 2CDcv
+#: func_forecastetsadd.xhp
+msgctxt ""
+"func_forecastetsadd.xhp\n"
+"par_id0603201619261276\n"
+"help.text"
+msgid "See also: <link href=\"text/scalc/01/func_forecastetsmult.xhp\">FORECAST.ETS.MULT</link>, <link href=\"text/scalc/01/func_forecastetsstatadd.xhp\">FORECAST.ETS.STAT.ADD</link>, <link href=\"text/scalc/01/func_forecastetsstatmult.xhp\">FORECAST.ETS.STAT.MULT</link>, <link href=\"text/scalc/01/func_forecastetspiadd.xhp\">FORECAST.ETS.PI.ADD</link>, <link href=\"text/scalc/01/func_forecastetspimult.xhp\">FORECAST.ETS.PI.MULT</link>, <link href=\"text/scalc/01/func_forecastetsseason.xhp\">FORECAST.ETS.SEASONALITY</link>, <link href=\"text/scalc/01/04060185.xhp#forecast\">FORECAST</link>, <link href=\"text/scalc/01/04060185.xhp#forecastlinear\">FORECAST.LINEAR</link>"
+msgstr ""
+
+#. 6PMtc
+#: func_forecastetsmult.xhp
+msgctxt ""
+"func_forecastetsmult.xhp\n"
+"tit\n"
+"help.text"
+msgid "FORECAST.ETS.MULT"
+msgstr ""
+
+#. PcfYS
+#: func_forecastetsmult.xhp
+msgctxt ""
+"func_forecastetsmult.xhp\n"
+"bm_id976559765597655\n"
+"help.text"
+msgid "<bookmark_value>FORECAST.ETS.MULT function</bookmark_value>"
+msgstr ""
+
+#. LnXao
+#: func_forecastetsmult.xhp
+msgctxt ""
+"func_forecastetsmult.xhp\n"
+"hd_id0603201610022291\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/func_forecastetsmult.xhp\">FORECAST.ETS.MULT Function</link>"
+msgstr ""
+
+#. tYAjY
+#: func_forecastetsmult.xhp
+msgctxt ""
+"func_forecastetsmult.xhp\n"
+"par_id0603201610023949\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_FORECAST_ETS_MULT\">Calculates the multiplicative forecast(s) (future values) based on the historical data using ETS or EDS algorithms</ahelp>. EDS is used when argument <emph>period_length</emph> is 0, otherwise ETS is used."
+msgstr ""
+
+#. enUbu
+#: func_forecastetsmult.xhp
+msgctxt ""
+"func_forecastetsmult.xhp\n"
+"par_id0603201608440530\n"
+"help.text"
+msgid "FORECAST.ETS.MULT calculates with the model"
+msgstr ""
+
+#. joiBF
+#: func_forecastetsmult.xhp
+msgctxt ""
+"func_forecastetsmult.xhp\n"
+"par_id0403201618594544\n"
+"help.text"
+msgid "FORECAST.ETS.MULT(targets, values, timeline, [period_length], [data_completion], [aggregation])"
+msgstr ""
+
+#. bu5pP
+#: func_forecastetsmult.xhp
+msgctxt ""
+"func_forecastetsmult.xhp\n"
+"hd_id04032016185123\n"
+"help.text"
+msgid "=FORECAST.ETS.MULT(DATE(2014;1;1);Values;Timeline;1;TRUE();1)"
+msgstr ""
+
+#. r823v
+#: func_forecastetsmult.xhp
+msgctxt ""
+"func_forecastetsmult.xhp\n"
+"hd_id04032016112394554\n"
+"help.text"
+msgid "Returns 131.71437427439, the multiplicative forecast for January 2014 based on <emph>Values</emph> and <emph>Timeline</emph> named ranges above, with one sample per period, no missing data, and AVERAGE as aggregation."
+msgstr ""
+
+#. UWXU6
+#: func_forecastetsmult.xhp
+msgctxt ""
+"func_forecastetsmult.xhp\n"
+"hd_id04032123185123\n"
+"help.text"
+msgid "=FORECAST.ETS.MULT(DATE(2014;1;1);Values;Timeline;4;TRUE();7)"
+msgstr ""
+
+#. PiBJn
+#: func_forecastetsmult.xhp
+msgctxt ""
+"func_forecastetsmult.xhp\n"
+"hd_id040312316112394554\n"
+"help.text"
+msgid "Returns 120.747806144882, the multiplicative forecast for January 2014 based on <emph>Values</emph> and <emph>Timeline</emph> named ranges above, with period length of 4, no missing data, and SUM as aggregation."
+msgstr ""
+
+#. CMedw
+#: func_forecastetsmult.xhp
+msgctxt ""
+"func_forecastetsmult.xhp\n"
+"par_id0603201619261276\n"
+"help.text"
+msgid "See also: <link href=\"text/scalc/01/func_forecastetsadd.xhp\">FORECAST.ETS.ADD</link>, <link href=\"text/scalc/01/func_forecastetsstatadd.xhp\">FORECAST.ETS.STAT.ADD</link>, <link href=\"text/scalc/01/func_forecastetsstatmult.xhp\">FORECAST.ETS.STAT.MULT</link>, <link href=\"text/scalc/01/func_forecastetspiadd.xhp\">FORECAST.ETS.PI.ADD</link>, <link href=\"text/scalc/01/func_forecastetspimult.xhp\">FORECAST.ETS.PI.MULT</link>, <link href=\"text/scalc/01/func_forecastetsseason.xhp\">FORECAST.ETS.SEASONALITY</link>, <link href=\"text/scalc/01/04060185.xhp#forecast\">FORECAST</link>, <link href=\"text/scalc/01/04060185.xhp#forecastlinear\">FORECAST.LINEAR</link>"
+msgstr ""
+
+#. jra8V
+#: func_forecastetspiadd.xhp
+msgctxt ""
+"func_forecastetspiadd.xhp\n"
+"tit\n"
+"help.text"
+msgid "FORECAST.ETS.PI.ADD"
+msgstr ""
+
+#. iY4EE
+#: func_forecastetspiadd.xhp
+msgctxt ""
+"func_forecastetspiadd.xhp\n"
+"bm_id976559765597655\n"
+"help.text"
+msgid "<bookmark_value>FORECAST.ETS.PI.ADD function</bookmark_value>"
+msgstr ""
+
+#. Ftk9s
+#: func_forecastetspiadd.xhp
+msgctxt ""
+"func_forecastetspiadd.xhp\n"
+"hd_id0603201617134175\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/func_forecastetspiadd.xhp\">FORECAST.ETS.PI.ADD function</link>"
+msgstr ""
+
+#. MNort
+#: func_forecastetspiadd.xhp
+msgctxt ""
+"func_forecastetspiadd.xhp\n"
+"par_id0603201617141750\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_FORECAST_ETS_PIA\">Calculates the prediction interval(s) for additive forecast based on the historical data using ETS or EDS algorithms.</ahelp> EDS is used when argument <emph>period_length</emph> is 0, otherwise ETS is used."
+msgstr ""
+
+#. ZnBVX
+#: func_forecastetspiadd.xhp
+msgctxt ""
+"func_forecastetspiadd.xhp\n"
+"par_id0603201610005998\n"
+"help.text"
+msgid "FORECAST.ETS.PI.ADD calculates with the model"
+msgstr ""
+
+#. SBnyv
+#: func_forecastetspiadd.xhp
+msgctxt ""
+"func_forecastetspiadd.xhp\n"
+"par_id0603201610010044\n"
+"help.text"
+msgid "FORECAST.ETS.PI.ADD(target, values, timeline, [confidence_level], [period_length], [data_completion], [aggregation])"
+msgstr ""
+
+#. LAKXv
+#: func_forecastetspiadd.xhp
+msgctxt ""
+"func_forecastetspiadd.xhp\n"
+"par_id0403201618595126\n"
+"help.text"
+msgid "For example, with a 90% Confidence level, a 90% prediction interval will be computed (90% of future points are to fall within this radius from forecast)."
+msgstr ""
+
+#. m37hk
+#: func_forecastetspiadd.xhp
+msgctxt ""
+"func_forecastetspiadd.xhp\n"
+"par_id0403201618595143\n"
+"help.text"
+msgid "Note on prediction intervals: there is no exact mathematical way to calculate this for forecasts, there are various approximations. Prediction intervals tend to be increasingly 'over-optimistic' when increasing distance of the forecast-X from the observation data set."
+msgstr ""
+
+#. FowFS
+#: func_forecastetspiadd.xhp
+msgctxt ""
+"func_forecastetspiadd.xhp\n"
+"par_id0403201618595150\n"
+"help.text"
+msgid "For ETS, Calc uses an approximation based on 1000 calculations with random variations within the standard deviation of the observation data set (the historical values)."
+msgstr ""
+
+#. KTjG5
+#: func_forecastetspiadd.xhp
+msgctxt ""
+"func_forecastetspiadd.xhp\n"
+"hd_id04032016185123\n"
+"help.text"
+msgid "=FORECAST.ETS.PI.ADD(DATE(2014;1;1);Values;Timeline;0.9;1;TRUE();1)"
+msgstr ""
+
+#. WAdwr
+#: func_forecastetspiadd.xhp
+msgctxt ""
+"func_forecastetspiadd.xhp\n"
+"hd_id04032016112394554\n"
+"help.text"
+msgid "Returns 18.8061295551355, the prediction interval for additive forecast for January 2014 based on <emph>Values</emph> and <emph>Timeline</emph> named ranges above, 90% (=0.9) confidence level, with one sample per period, no missing data, and AVERAGE as aggregation."
+msgstr ""
+
+#. fZJa4
+#: func_forecastetspiadd.xhp
+msgctxt ""
+"func_forecastetspiadd.xhp\n"
+"hd_id04032123185123\n"
+"help.text"
+msgid "=FORECAST.ETS.PI.ADD(DATE(2014;1;1);Values;Timeline;0.8;4;TRUE();7)"
+msgstr ""
+
+#. U3bPF
+#: func_forecastetspiadd.xhp
+msgctxt ""
+"func_forecastetspiadd.xhp\n"
+"hd_id040312316112394554\n"
+"help.text"
+msgid "Returns 23.4416821953741, the prediction interval for additive forecast for January 2014 based on <emph>Values</emph> and <emph>Timeline</emph> named ranges above, with confidence level of 0.8, period length of 4, no missing data, and SUM as aggregation."
+msgstr ""
+
+#. J3FRt
+#: func_forecastetspiadd.xhp
+msgctxt ""
+"func_forecastetspiadd.xhp\n"
+"par_id0603201619261276\n"
+"help.text"
+msgid "See also: <link href=\"text/scalc/01/func_forecastetsadd.xhp\">FORECAST.ETS.ADD</link>, <link href=\"text/scalc/01/func_forecastetsmult.xhp\">FORECAST.ETS.MULT</link>, <link href=\"text/scalc/01/func_forecastetsstatadd.xhp\">FORECAST.ETS.STAT.ADD</link>, <link href=\"text/scalc/01/func_forecastetsstatmult.xhp\">FORECAST.ETS.STAT.MULT</link>, <link href=\"text/scalc/01/func_forecastetspimult.xhp\">FORECAST.ETS.PI.MULT</link> <link href=\"text/scalc/01/func_forecastetsseason.xhp\">FORECAST.ETS.SEASONALITY</link>, <link href=\"text/scalc/01/04060185.xhp#forecast\">FORECAST</link>, <link href=\"text/scalc/01/04060185.xhp#forecastlinear\">FORECAST.LINEAR</link>"
+msgstr ""
+
+#. BAjwY
+#: func_forecastetspimult.xhp
+msgctxt ""
+"func_forecastetspimult.xhp\n"
+"tit\n"
+"help.text"
+msgid "FORECAST.ETS.PI.MULT"
+msgstr ""
+
+#. fs4JG
+#: func_forecastetspimult.xhp
+msgctxt ""
+"func_forecastetspimult.xhp\n"
+"bm_id976559765597655\n"
+"help.text"
+msgid "<bookmark_value>FORECAST.ETS.PI.MULT function</bookmark_value>"
+msgstr ""
+
+#. o32J6
+#: func_forecastetspimult.xhp
+msgctxt ""
+"func_forecastetspimult.xhp\n"
+"hd_id0603201617134175\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/func_forecastetspimult.xhp\">FORECAST.ETS.PI.MULT function</link>"
+msgstr ""
+
+#. dBj8S
+#: func_forecastetspimult.xhp
+msgctxt ""
+"func_forecastetspimult.xhp\n"
+"par_id0603201617141750\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_FORECAST_ETS_PIM\">Calculates the prediction interval(s) for multiplicative forecast based on the historical data using ETS or EDS algorithms.</ahelp>. EDS is used when argument <emph>period_length</emph> is 0, otherwise ETS is used."
+msgstr ""
+
+#. zH7yz
+#: func_forecastetspimult.xhp
+msgctxt ""
+"func_forecastetspimult.xhp\n"
+"par_id0603201610005998\n"
+"help.text"
+msgid "FORECAST.ETS.PI.MULT calculates with the model"
+msgstr ""
+
+#. FHdCq
+#: func_forecastetspimult.xhp
+msgctxt ""
+"func_forecastetspimult.xhp\n"
+"par_id0603201610010044\n"
+"help.text"
+msgid "FORECAST.ETS.PI.MULT(target, values, timeline, [confidence_level], [period_length], [data_completion], [aggregation])"
+msgstr ""
+
+#. fM2ng
+#: func_forecastetspimult.xhp
+msgctxt ""
+"func_forecastetspimult.xhp\n"
+"par_id0403201618595126\n"
+"help.text"
+msgid "For example, with a 90% Confidence level, a 90% prediction interval will be computed (90% of future points are to fall within this radius from forecast)."
+msgstr ""
+
+#. Ysnbj
+#: func_forecastetspimult.xhp
+msgctxt ""
+"func_forecastetspimult.xhp\n"
+"par_id0403201618595143\n"
+"help.text"
+msgid "Note on prediction intervals: there is no exact mathematical way to calculate this for forecasts, there are various approximations. Prediction intervals tend to be increasingly 'over-optimistic' when increasing distance of the forecast-X from the observation data set."
+msgstr ""
+
+#. MWixi
+#: func_forecastetspimult.xhp
+msgctxt ""
+"func_forecastetspimult.xhp\n"
+"par_id0403201618595150\n"
+"help.text"
+msgid "For ETS, Calc uses an approximation based on 1000 calculations with random variations within the standard deviation of the observation data set (the historical values)."
+msgstr ""
+
+#. wtJsd
+#: func_forecastetspimult.xhp
+msgctxt ""
+"func_forecastetspimult.xhp\n"
+"hd_id04032016185123\n"
+"help.text"
+msgid "=FORECAST.ETS.PI.MULT(DATE(2014;1;1);Values;Timeline;0.9;1;TRUE();1)"
+msgstr ""
+
+#. FFE5M
+#: func_forecastetspimult.xhp
+msgctxt ""
+"func_forecastetspimult.xhp\n"
+"hd_id04032016112394554\n"
+"help.text"
+msgid "Returns 20.1040952101013, the prediction interval for multiplicative forecast for January 2014 based on <emph>Values</emph> and <emph>Timeline</emph> named ranges above, confidence level of 90% (=0.9) with one sample per period, no missing data, and AVERAGE as aggregation."
+msgstr ""
+
+#. 5GAFZ
+#: func_forecastetspimult.xhp
+msgctxt ""
+"func_forecastetspimult.xhp\n"
+"hd_id04032123185123\n"
+"help.text"
+msgid "=FORECAST.ETS.PI.MULT(DATE(2014;1;1);Values;Timeline;0.8;4;TRUE();7)"
+msgstr ""
+
+#. R7GdT
+#: func_forecastetspimult.xhp
+msgctxt ""
+"func_forecastetspimult.xhp\n"
+"hd_id040312316112394554\n"
+"help.text"
+msgid "Returns 27.5285874381574, the prediction interval for multiplicative forecast for January 2014 based on <emph>Values</emph> and <emph>Timeline</emph> named ranges above, with confidence level of 0.8, period length of 4, no missing data, and SUM as aggregation."
+msgstr ""
+
+#. LDRam
+#: func_forecastetspimult.xhp
+msgctxt ""
+"func_forecastetspimult.xhp\n"
+"par_id0603201619261276\n"
+"help.text"
+msgid "See also: <link href=\"text/scalc/01/func_forecastetsadd.xhp\">FORECAST.ETS.ADD</link>, <link href=\"text/scalc/01/func_forecastetsmult.xhp\">FORECAST.ETS.MULT</link>, <link href=\"text/scalc/01/func_forecastetsstatadd.xhp\">FORECAST.ETS.STAT.ADD</link>, <link href=\"text/scalc/01/func_forecastetsstatmult.xhp\">FORECAST.ETS.STAT.MULT</link>, <link href=\"text/scalc/01/func_forecastetspiadd.xhp\">FORECAST.ETS.PI.ADD</link>, <link href=\"text/scalc/01/func_forecastetsseason.xhp\">FORECAST.ETS.SEASONALITY</link>, <link href=\"text/scalc/01/04060185.xhp#forecast\">FORECAST</link>, <link href=\"text/scalc/01/04060185.xhp#forecastlinear\">FORECAST.LINEAR</link>"
+msgstr ""
+
+#. LfsHV
+#: func_forecastetsseason.xhp
+msgctxt ""
+"func_forecastetsseason.xhp\n"
+"tit\n"
+"help.text"
+msgid "FORECAST.ETS.SEASONALITY"
+msgstr ""
+
+#. 6fQYM
+#: func_forecastetsseason.xhp
+msgctxt ""
+"func_forecastetsseason.xhp\n"
+"bm_id976559765597655\n"
+"help.text"
+msgid "<bookmark_value>FORECAST.ETS.SEASONALITY function</bookmark_value>"
+msgstr ""
+
+#. ozk5A
+#: func_forecastetsseason.xhp
+msgctxt ""
+"func_forecastetsseason.xhp\n"
+"hd_id0603201617435371\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/func_forecastetsseason.xhp\">FORECAST.ETS.SEASONALITY Function</link>"
+msgstr ""
+
+#. hmYGz
+#: func_forecastetsseason.xhp
+msgctxt ""
+"func_forecastetsseason.xhp\n"
+"par_id0603201617510446\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_FORECAST_ETS_SEA\">Returns the number of samples in period as calculated by Calc in case of FORECAST.ETS functions when argument <emph>period_length</emph> equals 1. </ahelp>"
+msgstr ""
+
+#. n4Tra
+#: func_forecastetsseason.xhp
+msgctxt ""
+"func_forecastetsseason.xhp\n"
+"par_id0403201618595132\n"
+"help.text"
+msgid "The same result is returned with FORECAST.ETS.STAT functions when argument <emph>stat_type</emph> equals 9 (and <emph>period_length</emph> equals 1)."
+msgstr ""
+
+#. kuaJ8
+#: func_forecastetsseason.xhp
+msgctxt ""
+"func_forecastetsseason.xhp\n"
+"par_id0603201618013796\n"
+"help.text"
+msgid "FORECAST.ETS.SEASONALITY (values, timeline, [data_completion], [aggregation])"
+msgstr ""
+
+#. QFDLA
+#: func_forecastetsseason.xhp
+msgctxt ""
+"func_forecastetsseason.xhp\n"
+"hd_id04032016185123\n"
+"help.text"
+msgid "=FORECAST.ETS.SEASONALITY(Values;Timeline;TRUE();1)"
+msgstr ""
+
+#. RKf4B
+#: func_forecastetsseason.xhp
+msgctxt ""
+"func_forecastetsseason.xhp\n"
+"hd_id04032016112394554\n"
+"help.text"
+msgid "Returns 6, the number of samples in period based on <emph>Values</emph> and <emph>Timeline</emph> named ranges above, no missing data, and AVERAGE as aggregation."
+msgstr ""
+
+#. EUN8o
+#: func_forecastetsseason.xhp
+msgctxt ""
+"func_forecastetsseason.xhp\n"
+"par_id0603201619261276\n"
+"help.text"
+msgid "See also: <link href=\"text/scalc/01/func_forecastetsadd.xhp\">FORECAST.ETS.ADD</link>, <link href=\"text/scalc/01/func_forecastetsmult.xhp\">FORECAST.ETS.MULT</link>, <link href=\"text/scalc/01/func_forecastetsstatadd.xhp\">FORECAST.ETS.STAT.ADD</link>, <link href=\"text/scalc/01/func_forecastetsstatmult.xhp\">FORECAST.ETS.STAT.MULT</link>, <link href=\"text/scalc/01/func_forecastetspiadd.xhp\">FORECAST.ETS.PI.ADD</link>, <link href=\"text/scalc/01/func_forecastetspimult.xhp\">FORECAST.ETS.PI.MULT</link>, <link href=\"text/scalc/01/04060185.xhp#forecast\">FORECAST</link>, <link href=\"text/scalc/01/04060185.xhp#forecastlinear\">FORECAST.LINEAR</link>"
+msgstr ""
+
+#. eNmGC
+#: func_forecastetsstatadd.xhp
+msgctxt ""
+"func_forecastetsstatadd.xhp\n"
+"tit\n"
+"help.text"
+msgid "FORECAST.ETS.STAT.ADD"
+msgstr ""
+
+#. Pa5BF
+#: func_forecastetsstatadd.xhp
+msgctxt ""
+"func_forecastetsstatadd.xhp\n"
+"bm_id976559765597655\n"
+"help.text"
+msgid "<bookmark_value>FORECAST.ETS.STAT.ADD function</bookmark_value>"
+msgstr ""
+
+#. edDaD
+#: func_forecastetsstatadd.xhp
+msgctxt ""
+"func_forecastetsstatadd.xhp\n"
+"hd_id0603201615483251\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/func_forecastetsstatadd.xhp\">FORECAST.ETS.STAT.ADD Function</link>"
+msgstr ""
+
+#. 7y8yW
+#: func_forecastetsstatadd.xhp
+msgctxt ""
+"func_forecastetsstatadd.xhp\n"
+"par_id0603201615485387\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_FORECAST_ETS_STA\">Returns statistical value(s) that are results of the ETS/EDS algorithms.</ahelp>"
+msgstr ""
+
+#. kXBEC
+#: func_forecastetsstatadd.xhp
+msgctxt ""
+"func_forecastetsstatadd.xhp\n"
+"par_id0603201608440530\n"
+"help.text"
+msgid "FORECAST.ETS.STAT.ADD calculates with the model"
+msgstr ""
+
+#. fXsdE
+#: func_forecastetsstatadd.xhp
+msgctxt ""
+"func_forecastetsstatadd.xhp\n"
+"par_id0603201610005728\n"
+"help.text"
+msgid "FORECAST.ETS.STAT.ADD (values, timeline, stat_type, [period_length], [data_completion], [aggregation])"
+msgstr ""
+
+#. vwTur
+#: func_forecastetsstatadd.xhp
+msgctxt ""
+"func_forecastetsstatadd.xhp\n"
+"hd_id04032016185123\n"
+"help.text"
+msgid "=FORECAST.ETS.STAT.ADD(Values;Timeline;3;1;TRUE();1)"
+msgstr ""
+
+#. NG7Kp
+#: func_forecastetsstatadd.xhp
+msgctxt ""
+"func_forecastetsstatadd.xhp\n"
+"hd_id04032016112394554\n"
+"help.text"
+msgid "Returns 0.9990234375, the additive statistics based on <emph>Values</emph> and <emph>Timeline</emph> named ranges above, with beta smoothing, one sample per period, no missing data, and AVERAGE as aggregation."
+msgstr ""
+
+#. cCrti
+#: func_forecastetsstatadd.xhp
+msgctxt ""
+"func_forecastetsstatadd.xhp\n"
+"hd_id04032123185123\n"
+"help.text"
+msgid "=FORECAST.ETS.STAT.ADD(Values;Timeline;2;1;TRUE();7)"
+msgstr ""
+
+#. 23xnG
+#: func_forecastetsstatadd.xhp
+msgctxt ""
+"func_forecastetsstatadd.xhp\n"
+"hd_id040312316112394554\n"
+"help.text"
+msgid "Returns 0.0615234375, the additive statistics based on <emph>Values</emph> and <emph>Timeline</emph> named ranges above, with gamma smoothing, no missing data, and SUM as aggregation."
+msgstr ""
+
+#. dnDvk
+#: func_forecastetsstatadd.xhp
+msgctxt ""
+"func_forecastetsstatadd.xhp\n"
+"par_id0603201619261276\n"
+"help.text"
+msgid "See also: <link href=\"text/scalc/01/func_forecastetsadd.xhp\">FORECAST.ETS.ADD </link>, <link href=\"text/scalc/01/func_forecastetsmult.xhp\">FORECAST.ETS.MULT </link>, <link href=\"text/scalc/01/func_forecastetsstatmult.xhp\">FORECAST.ETS.STAT.MULT </link>, <link href=\"text/scalc/01/func_forecastetspiadd.xhp\">FORECAST.ETS.PI.ADD </link>, <link href=\"text/scalc/01/func_forecastetspimult.xhp\">FORECAST.ETS.PI.MULT</link>, <link href=\"text/scalc/01/func_forecastetsseason.xhp\">FORECAST.ETS.SEASONALITY</link>, <link href=\"text/scalc/01/04060185.xhp#forecast\">FORECAST</link>, <link href=\"text/scalc/01/04060185.xhp#forecastlinear\">FORECAST.LINEAR</link>"
+msgstr ""
+
+#. J4X87
+#: func_forecastetsstatmult.xhp
+msgctxt ""
+"func_forecastetsstatmult.xhp\n"
+"tit\n"
+"help.text"
+msgid "FORECAST.ETS.STAT.MULT"
+msgstr ""
+
+#. KB6T7
+#: func_forecastetsstatmult.xhp
+msgctxt ""
+"func_forecastetsstatmult.xhp\n"
+"bm_id976559765597655\n"
+"help.text"
+msgid "<bookmark_value>FORECAST.ETS.STAT.MULT function</bookmark_value>"
+msgstr ""
+
+#. DoedA
+#: func_forecastetsstatmult.xhp
+msgctxt ""
+"func_forecastetsstatmult.xhp\n"
+"hd_id0603201615483251\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/func_forecastetsstatmult.xhp\">FORECAST.ETS.STAT.MULT Function</link>"
+msgstr ""
+
+#. Ahv2p
+#: func_forecastetsstatmult.xhp
+msgctxt ""
+"func_forecastetsstatmult.xhp\n"
+"par_id0603201615485387\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_FORECAST_ETS_STM\">Returns statistical value(s) that are results of the ETS/EDS algorithms.</ahelp>"
+msgstr ""
+
+#. FJthz
+#: func_forecastetsstatmult.xhp
+msgctxt ""
+"func_forecastetsstatmult.xhp\n"
+"par_id0603201608440530\n"
+"help.text"
+msgid "FORECAST.ETS.STAT.MULT calculates with the model"
+msgstr ""
+
+#. 9CuKw
+#: func_forecastetsstatmult.xhp
+msgctxt ""
+"func_forecastetsstatmult.xhp\n"
+"par_id0603201610005728\n"
+"help.text"
+msgid "FORECAST.ETS.STAT.MULT (values, timeline, stat_type, [period_length], [data_completion], [aggregation])"
+msgstr ""
+
+#. nGVCt
+#: func_forecastetsstatmult.xhp
+msgctxt ""
+"func_forecastetsstatmult.xhp\n"
+"hd_id04032016185123\n"
+"help.text"
+msgid "=FORECAST.ETS.STAT.MULT(Values;Timeline;5;1;TRUE();1)"
+msgstr ""
+
+#. aCTmK
+#: func_forecastetsstatmult.xhp
+msgctxt ""
+"func_forecastetsstatmult.xhp\n"
+"hd_id04032016112394554\n"
+"help.text"
+msgid "Returns 0.084073452803966, the multiplicative statistics based on <emph>Values</emph> and <emph>Timeline</emph> named ranges above, with symmetric mean absolute percentage error (SMAPE), one sample per period, no missing data, and AVERAGE as aggregation."
+msgstr ""
+
+#. h9FRT
+#: func_forecastetsstatmult.xhp
+msgctxt ""
+"func_forecastetsstatmult.xhp\n"
+"hd_id04032123185123\n"
+"help.text"
+msgid "=FORECAST.ETS.STAT.MULT(Values;Timeline;7;1;TRUE();7)"
+msgstr ""
+
+#. fEf7M
+#: func_forecastetsstatmult.xhp
+msgctxt ""
+"func_forecastetsstatmult.xhp\n"
+"hd_id040312316112394554\n"
+"help.text"
+msgid "Returns 15.8372533480997, the multiplicative statistics based on <emph>Values</emph> and <emph>Timeline</emph> named ranges above, with root mean squared error, no missing data, and SUM as aggregation."
+msgstr ""
+
+#. LBeXF
+#: func_forecastetsstatmult.xhp
+msgctxt ""
+"func_forecastetsstatmult.xhp\n"
+"par_id0603201619261276\n"
+"help.text"
+msgid "See also: <link href=\"text/scalc/01/func_forecastetsadd.xhp\">FORECAST.ETS.ADD</link>, <link href=\"text/scalc/01/func_forecastetsmult.xhp\">FORECAST.ETS.MULT</link>, <link href=\"text/scalc/01/func_forecastetsstatadd.xhp\">FORECAST.ETS.STAT.ADD</link>, <link href=\"text/scalc/01/func_forecastetspiadd.xhp\">FORECAST.ETS.PI.ADD</link>, <link href=\"text/scalc/01/func_forecastetspimult.xhp\">FORECAST.ETS.PI.MULT</link>, <link href=\"text/scalc/01/func_forecastetsseason.xhp\">FORECAST.ETS.SEASONALITY</link>, <link href=\"text/scalc/01/04060185.xhp#forecast\">FORECAST</link>, <link href=\"text/scalc/01/04060185.xhp#forecastlinear\">FORECAST.LINEAR</link>"
+msgstr ""
+
+#. K3oBV
+#: func_fourier.xhp
+msgctxt ""
+"func_fourier.xhp\n"
+"tit\n"
+"help.text"
+msgid "FOURIER function"
+msgstr ""
+
+#. FmjN8
+#: func_fourier.xhp
+msgctxt ""
+"func_fourier.xhp\n"
+"bm_id581556228060864\n"
+"help.text"
+msgid "<bookmark_value>FOURIER function</bookmark_value>"
+msgstr ""
+
+#. VQ5ra
+#: func_fourier.xhp
+msgctxt ""
+"func_fourier.xhp\n"
+"hd_id551556227727946\n"
+"help.text"
+msgid "<variable id=\"fourierfunct\"><link href=\"text/scalc/01/func_fourier.xhp\" name=\"fourierfunction\">FOURIER</link></variable>"
+msgstr ""
+
+#. TNat4
+#: func_fourier.xhp
+msgctxt ""
+"func_fourier.xhp\n"
+"par_id121556227727948\n"
+"help.text"
+msgid "<variable id=\"textjoinfunction\"><ahelp hid=\".\">Computes the Discrete Fourier Transform [DFT] of an input array of complex numbers using a couple of Fast Fourier Transform (FFT) algorithms.</ahelp></variable> The function is an <link href=\"text/scalc/01/04060107.xhp\" name=\"array formula\">array formula</link>."
+msgstr ""
+
+#. xGHaG
+#: func_fourier.xhp
+msgctxt ""
+"func_fourier.xhp\n"
+"par_id541556228253979\n"
+"help.text"
+msgid "FOURIER(Array; GroupedByColumns [; Inverse [; Polar [; MinimumMagnitude]]])"
+msgstr ""
+
+#. ELSK7
+#: func_fourier.xhp
+msgctxt ""
+"func_fourier.xhp\n"
+"par_id741556228390897\n"
+"help.text"
+msgid "<emph>Array</emph> is a 2 x N or N x 2 range representing an array of complex number to be transformed, where N is the length of the array. The array represents the real and imaginary parts of the data."
+msgstr ""
+
+#. xTPa5
+#: func_fourier.xhp
+msgctxt ""
+"func_fourier.xhp\n"
+"par_id621556228397269\n"
+"help.text"
+msgid "<emph>GroupedByColumns</emph> is a logical (TRUE or FALSE, 1 or 0) argument. When TRUE the array is grouped by columns where the first column contains the real part of the complex number and the second columns contains the imaginary part of the complex number. When FALSE, the first row contains the real part of the complex number and the second row contains the imaginary part of the complex number. If there is only 1 column (row), the input sequence is treated as purely real."
+msgstr ""
+
+#. tbzAA
+#: func_fourier.xhp
+msgctxt ""
+"func_fourier.xhp\n"
+"par_id631556228516997\n"
+"help.text"
+msgid "<emph>Inverse</emph> is an optional logical (TRUE or FALSE, 1 or 0) argument. When TRUE, calculates the inverse Discrete Fourier Transform. The default value is FALSE."
+msgstr ""
+
+#. N6enC
+#: func_fourier.xhp
+msgctxt ""
+"func_fourier.xhp\n"
+"par_id811561732287508\n"
+"help.text"
+msgid "<emph>Polar</emph>: is an optional logical (TRUE or FALSE, 1 or 0) argument. Indicates whether the final output is in polar coordinates (magnitude, phase). This argument is optional and the default value is FALSE."
+msgstr ""
+
+#. qBBZd
+#: func_fourier.xhp
+msgctxt ""
+"func_fourier.xhp\n"
+"par_id661561732521977\n"
+"help.text"
+msgid "<emph>MinimumMagnitude</emph>: used only if Polar=TRUE. All frequency components with magnitude less than <emph>MinimumMagnitude</emph> will be suppressed with a zero magnitude-phase entry. This is very useful when looking at the magnitude-phase spectrum of a signal because there is always some very tiny amount of rounding error when doing FFT algorithms and results in incorrect non-zero phase for non-existent frequencies. By providing a suitable value to this parameter, these non-existent frequency components can be suppressed. By default the value of <emph>MinimumMagnitude</emph> is 0.0, and no suppression is done by default."
+msgstr ""
+
+#. P2z9v
+#: func_hour.xhp
+msgctxt ""
+"func_hour.xhp\n"
+"tit\n"
+"help.text"
+msgid "HOUR"
+msgstr ""
+
+#. tjZp2
+#: func_hour.xhp
+msgctxt ""
+"func_hour.xhp\n"
+"bm_id3154725\n"
+"help.text"
+msgid "<bookmark_value>HOUR function</bookmark_value>"
+msgstr ""
+
+#. T4GyT
+#: func_hour.xhp
+msgctxt ""
+"func_hour.xhp\n"
+"hd_id3154725\n"
+"help.text"
+msgid "<variable id=\"hour\"><link href=\"text/scalc/01/func_hour.xhp\">HOUR</link></variable>"
+msgstr ""
+
+#. nYeAv
+#: func_hour.xhp
+msgctxt ""
+"func_hour.xhp\n"
+"par_id3149747\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 ""
+
+#. DBcpt
+#: func_hour.xhp
+msgctxt ""
+"func_hour.xhp\n"
+"par_id3150637\n"
+"help.text"
+msgid "HOUR(Number)"
+msgstr ""
+
+#. FXcMa
+#: func_hour.xhp
+msgctxt ""
+"func_hour.xhp\n"
+"par_id3147547\n"
+"help.text"
+msgid "<emph>Number</emph>, as a time value, is a decimal, for which the hour is to be returned."
+msgstr ""
+
+#. dhLTM
+#: func_hour.xhp
+msgctxt ""
+"func_hour.xhp\n"
+"par_id3159215\n"
+"help.text"
+msgid "<item type=\"input\">=HOUR(NOW())</item> returns the current hour"
+msgstr ""
+
+#. ezUKF
+#: func_hour.xhp
+msgctxt ""
+"func_hour.xhp\n"
+"par_id3145152\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 ""
+
+#. DiCWs
+#: func_ifs.xhp
+msgctxt ""
+"func_ifs.xhp\n"
+"tit\n"
+"help.text"
+msgid "IFS function"
+msgstr ""
+
+#. XMPcD
+#: func_ifs.xhp
+msgctxt ""
+"func_ifs.xhp\n"
+"bm_id901556242230198\n"
+"help.text"
+msgid "<bookmark_value>IFS function</bookmark_value>"
+msgstr ""
+
+#. u33ve
+#: func_ifs.xhp
+msgctxt ""
+"func_ifs.xhp\n"
+"hd_id271556234923654\n"
+"help.text"
+msgid "<variable id=\"ifsfunct\"><link href=\"text/scalc/01/func_ifs.xhp\" name=\"function ifs\">IFS</link></variable>"
+msgstr ""
+
+#. iANFF
+#: func_ifs.xhp
+msgctxt ""
+"func_ifs.xhp\n"
+"par_id171556234923655\n"
+"help.text"
+msgid "<variable id=\"variable name\"><ahelp hid=\".\">IFS is a multiple IF-function.</ahelp></variable>"
+msgstr ""
+
+#. WxB3F
+#: func_ifs.xhp
+msgctxt ""
+"func_ifs.xhp\n"
+"par_id271556235333493\n"
+"help.text"
+msgid "IFS(expression1; result1[; expression2; result2][; ... ; [expression127; result127]])"
+msgstr ""
+
+#. 3KbKX
+#: func_ifs.xhp
+msgctxt ""
+"func_ifs.xhp\n"
+"par_id31556235655212\n"
+"help.text"
+msgid "<emph>expression1, expression2, ...</emph> are any boolean values or expressions that can be TRUE or FALSE"
+msgstr ""
+
+#. 8qEKq
+#: func_ifs.xhp
+msgctxt ""
+"func_ifs.xhp\n"
+"par_id441556235649549\n"
+"help.text"
+msgid "<emph>result1, result2, ... </emph> are the values that are returned if the logical test is TRUE"
+msgstr ""
+
+#. qgtwA
+#: func_ifs.xhp
+msgctxt ""
+"func_ifs.xhp\n"
+"par_id641556235704257\n"
+"help.text"
+msgid "IFS( expression1, result1, expression2, result2, expression3, result3 ) is executed as"
+msgstr ""
+
+#. NriAd
+#: func_ifs.xhp
+msgctxt ""
+"func_ifs.xhp\n"
+"par_id551556235712759\n"
+"help.text"
+msgid "IF expression1 is TRUE"
+msgstr ""
+
+#. tRdjB
+#: func_ifs.xhp
+msgctxt ""
+"func_ifs.xhp\n"
+"par_id1001556235718948\n"
+"help.text"
+msgid "THEN result1"
+msgstr ""
+
+#. 2DYMn
+#: func_ifs.xhp
+msgctxt ""
+"func_ifs.xhp\n"
+"par_id571556235725969\n"
+"help.text"
+msgid "ELSE IF expression2 is TRUE"
+msgstr ""
+
+#. QZSge
+#: func_ifs.xhp
+msgctxt ""
+"func_ifs.xhp\n"
+"par_id581556235731982\n"
+"help.text"
+msgid "THEN result2"
+msgstr ""
+
+#. H5BJe
+#: func_ifs.xhp
+msgctxt ""
+"func_ifs.xhp\n"
+"par_id961556235738258\n"
+"help.text"
+msgid "ELSE IF expression3 is TRUE"
+msgstr ""
+
+#. LpUGo
+#: func_ifs.xhp
+msgctxt ""
+"func_ifs.xhp\n"
+"par_id951556235743954\n"
+"help.text"
+msgid "THEN result3"
+msgstr ""
+
+#. QCFfF
+#: func_ifs.xhp
+msgctxt ""
+"func_ifs.xhp\n"
+"par_id671556235758504\n"
+"help.text"
+msgid "To get a default result should no expression be TRUE, add a last expression that is always TRUE, like TRUE or 1=1 followed by the default result."
+msgstr ""
+
+#. mkt7F
+#: func_ifs.xhp
+msgctxt ""
+"func_ifs.xhp\n"
+"par_id541556235771022\n"
+"help.text"
+msgid "If there is a result missing for an expression or is no expression is TRUE, a #N/A error is returned."
+msgstr ""
+
+#. 8sMKs
+#: func_ifs.xhp
+msgctxt ""
+"func_ifs.xhp\n"
+"par_id181556235788473\n"
+"help.text"
+msgid "If expression is neither TRUE or FALSE, a #VALUE error is returned."
+msgstr ""
+
+#. smDfE
+#: func_ifs.xhp
+msgctxt ""
+"func_ifs.xhp\n"
+"par_id781556244709752\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060105.xhp#Section4\" name=\"if\">IF</link>"
+msgstr ""
+
+#. vaiXE
+#: func_imcos.xhp
+msgctxt ""
+"func_imcos.xhp\n"
+"tit\n"
+"help.text"
+msgid "IMCOS function"
+msgstr ""
+
+#. DNkfT
+#: func_imcos.xhp
+msgctxt ""
+"func_imcos.xhp\n"
+"bm_id262410558824\n"
+"help.text"
+msgid "<bookmark_value>IMCOS function</bookmark_value><bookmark_value>cosine;complex number</bookmark_value>"
+msgstr ""
+
+#. GmCB8
+#: func_imcos.xhp
+msgctxt ""
+"func_imcos.xhp\n"
+"hd_id90361032228870\n"
+"help.text"
+msgid "<variable id=\"imcos_head\"><link href=\"text/scalc/01/func_imcos.xhp\">IMCOS</link></variable> function"
+msgstr ""
+
+#. F6Dy7
+#: func_imcos.xhp
+msgctxt ""
+"func_imcos.xhp\n"
+"par_id1066273182723\n"
+"help.text"
+msgid "<ahelp hid=\".\"><variable id=\"imcos_des\">Returns the cosine of a complex number.</variable> The cosine of a complex number can be expressed by:</ahelp>"
+msgstr ""
+
+#. Tn68g
+#: func_imcos.xhp
+msgctxt ""
+"func_imcos.xhp\n"
+"par_id164021484116762\n"
+"help.text"
+msgid "IMCOS(Complex_number)"
+msgstr ""
+
+#. ZeGkF
+#: func_imcos.xhp
+msgctxt ""
+"func_imcos.xhp\n"
+"par_id2890729435632\n"
+"help.text"
+msgid "Complex_number is a complex number whose cosine is to be calculated."
+msgstr ""
+
+#. ab4Te
+#: func_imcos.xhp
+msgctxt ""
+"func_imcos.xhp\n"
+"par_id4581301219753\n"
+"help.text"
+msgid "<item type=\"input\">=IMCOS(\"4-3i\")</item><br/> returns -6.58066304055116-7.58155274274654i."
+msgstr ""
+
+#. 5EWnx
+#: func_imcos.xhp
+msgctxt ""
+"func_imcos.xhp\n"
+"par_id25412646522614\n"
+"help.text"
+msgid "<item type=\"input\">=IMCOS(2)</item><br/>returns -0.416146836547142 as a string. <embedvar href=\"text/scalc/01/ful_func.xhp#func_imag_zero\"/>"
+msgstr ""
+
+#. C3EAr
+#: func_imcosh.xhp
+msgctxt ""
+"func_imcosh.xhp\n"
+"tit\n"
+"help.text"
+msgid "IMCOSH function"
+msgstr ""
+
+#. pmWJk
+#: func_imcosh.xhp
+msgctxt ""
+"func_imcosh.xhp\n"
+"bm_id123771237712377\n"
+"help.text"
+msgid "<bookmark_value>IMCOSH function</bookmark_value><bookmark_value>hyperbolic cosine;complex number</bookmark_value>"
+msgstr ""
+
+#. LhGyK
+#: func_imcosh.xhp
+msgctxt ""
+"func_imcosh.xhp\n"
+"hd_id124691246912469\n"
+"help.text"
+msgid "<variable id=\"imcosh_head\"><link href=\"text/scalc/01/func_imcosh.xhp\">IMCOSH</link></variable> function"
+msgstr ""
+
+#. jewEE
+#: func_imcosh.xhp
+msgctxt ""
+"func_imcosh.xhp\n"
+"par_id125881258812588\n"
+"help.text"
+msgid "<ahelp hid=\".\"><variable id=\"imcosh_des\">Returns the hyperbolic cosine of a complex number.</variable> The hyperbolic cosine of a complex number can be expressed by:</ahelp>"
+msgstr ""
+
+#. cawEM
+#: func_imcosh.xhp
+msgctxt ""
+"func_imcosh.xhp\n"
+"par_id24939266285933\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sc_func_imcosh.svg\" id=\"img_id211575078735993\" width=\"464.56109px\" height=\"31.5px\"><alt id=\"alt_id401575078735994\">IMCOSH equation</alt></image>"
+msgstr ""
+
+#. neXB8
+#: func_imcosh.xhp
+msgctxt ""
+"func_imcosh.xhp\n"
+"par_id16051131322110\n"
+"help.text"
+msgid "IMCOSH(Complex_number)"
+msgstr ""
+
+#. LU38P
+#: func_imcosh.xhp
+msgctxt ""
+"func_imcosh.xhp\n"
+"par_id766137661376613\n"
+"help.text"
+msgid "Complex_number is a complex number whose hyperbolic cosine is to be calculated."
+msgstr ""
+
+#. VmhxS
+#: func_imcosh.xhp
+msgctxt ""
+"func_imcosh.xhp\n"
+"par_id55891471962\n"
+"help.text"
+msgid "<item type=\"input\">=IMCOSH(\"4-3i\")</item><br/>returns -27.0349456030742-3.85115333481178i."
+msgstr ""
+
+#. GCKE9
+#: func_imcosh.xhp
+msgctxt ""
+"func_imcosh.xhp\n"
+"par_id152561887112896\n"
+"help.text"
+msgid "<item type=\"input\">=IMCOSH(2)</item><br/>returns 3.76219569108363 as a string. <embedvar href=\"text/scalc/01/ful_func.xhp#func_imag_zero\"/>"
+msgstr ""
+
+#. 4bYUH
+#: func_imcot.xhp
+msgctxt ""
+"func_imcot.xhp\n"
+"tit\n"
+"help.text"
+msgid "IMCOT function"
+msgstr ""
+
+#. ZimkG
+#: func_imcot.xhp
+msgctxt ""
+"func_imcot.xhp\n"
+"bm_id762757627576275\n"
+"help.text"
+msgid "<bookmark_value>IMCOT function</bookmark_value><bookmark_value>cotangent;complex number</bookmark_value>"
+msgstr ""
+
+#. gawaP
+#: func_imcot.xhp
+msgctxt ""
+"func_imcot.xhp\n"
+"hd_id763567635676356\n"
+"help.text"
+msgid "<variable id=\"imcot_head\"><link href=\"text/scalc/01/func_imcot.xhp\">IMCOT</link></variable> function"
+msgstr ""
+
+#. sFono
+#: func_imcot.xhp
+msgctxt ""
+"func_imcot.xhp\n"
+"par_id764617646176461\n"
+"help.text"
+msgid "<ahelp hid=\".\"><variable id=\"imcot_des\">Returns the cotangent of a complex number.</variable> The cotangent of a complex number can be expressed by:</ahelp>"
+msgstr ""
+
+#. fCe4Y
+#: func_imcot.xhp
+msgctxt ""
+"func_imcot.xhp\n"
+"par_id311713256011430\n"
+"help.text"
+msgid "<image src=\"media/helpimg/scalc/IMCOT_equation.svg\" id=\"img_id211575078735993\" width=\"341.869px\" height=\"59.5625px\"><alt id=\"alt_id401575078735994\">IMCOT equation</alt></image>"
+msgstr ""
+
+#. z7EtV
+#: func_imcot.xhp
+msgctxt ""
+"func_imcot.xhp\n"
+"par_id16051131322110\n"
+"help.text"
+msgid "IMCOT(Complex_number)"
+msgstr ""
+
+#. rdePQ
+#: func_imcot.xhp
+msgctxt ""
+"func_imcot.xhp\n"
+"par_id766137661376613\n"
+"help.text"
+msgid "Complex_number is a complex number whose cotangent is to be calculated."
+msgstr ""
+
+#. B2yM9
+#: func_imcot.xhp
+msgctxt ""
+"func_imcot.xhp\n"
+"par_id21183436423819\n"
+"help.text"
+msgid "<item type=\"input\">=IMCOT(\"4-3i\")</item><br/>returns 0.00490118239430447+0.999266927805902i."
+msgstr ""
+
+#. mMYen
+#: func_imcot.xhp
+msgctxt ""
+"func_imcot.xhp\n"
+"par_id18472284929530\n"
+"help.text"
+msgid "<item type=\"input\">=IMCOT(2)</item><br/>returns -0.457657554360286 as a string. <embedvar href=\"text/scalc/01/ful_func.xhp#func_imag_zero\"/>"
+msgstr ""
+
+#. tzbDs
+#: func_imcsc.xhp
+msgctxt ""
+"func_imcsc.xhp\n"
+"tit\n"
+"help.text"
+msgid "IMCSC function"
+msgstr ""
+
+#. voV3U
+#: func_imcsc.xhp
+msgctxt ""
+"func_imcsc.xhp\n"
+"bm_id931179311793117\n"
+"help.text"
+msgid "<bookmark_value>IMCSC function</bookmark_value><bookmark_value>cosecant;complex number</bookmark_value>"
+msgstr ""
+
+#. XF62w
+#: func_imcsc.xhp
+msgctxt ""
+"func_imcsc.xhp\n"
+"hd_id931679316793167\n"
+"help.text"
+msgid "<variable id=\"imcsc_head\"><link href=\"text/scalc/01/func_imcsc.xhp\">IMCSC</link></variable> function"
+msgstr ""
+
+#. ySZ6p
+#: func_imcsc.xhp
+msgctxt ""
+"func_imcsc.xhp\n"
+"par_id932329323293232\n"
+"help.text"
+msgid "<ahelp hid=\".\"><variable id=\"imcsc_des\">Returns the cosecant of a complex number. </variable> The cosecant of a complex number can be expressed by:</ahelp>"
+msgstr ""
+
+#. FV9Gz
+#: func_imcsc.xhp
+msgctxt ""
+"func_imcsc.xhp\n"
+"par_id13510198901485\n"
+"help.text"
+msgid "<image src=\"media/helpimg/scalc/IMCSC_equation.svg\" id=\"img_id211575078735993\" width=\"491.844px\" height=\"59.5625px\"><alt id=\"alt_id401575078735994\">IMCSC equation</alt></image>"
+msgstr ""
+
+#. jBzZA
+#: func_imcsc.xhp
+msgctxt ""
+"func_imcsc.xhp\n"
+"par_id30461169611909\n"
+"help.text"
+msgid "IMCSC(Complex_number)"
+msgstr ""
+
+#. QjHYk
+#: func_imcsc.xhp
+msgctxt ""
+"func_imcsc.xhp\n"
+"par_id1899971619670\n"
+"help.text"
+msgid "Complex_number is a complex number whose cosecant needs to be calculated."
+msgstr ""
+
+#. H4aYf
+#: func_imcsc.xhp
+msgctxt ""
+"func_imcsc.xhp\n"
+"par_id25692477525537\n"
+"help.text"
+msgid "<item type=\"input\">=IMCSC(\"4-3i\")</item><br/>returns -0.0754898329158637-0.0648774713706355i."
+msgstr ""
+
+#. BouPt
+#: func_imcsc.xhp
+msgctxt ""
+"func_imcsc.xhp\n"
+"par_id32572967420710\n"
+"help.text"
+msgid "<item type=\"input\">=IMCSC(2)</item><br/>returns 1.09975017029462 as a string. <embedvar href=\"text/scalc/01/ful_func.xhp#func_imag_zero\"/>"
+msgstr ""
+
+#. uQfzu
+#: func_imcsch.xhp
+msgctxt ""
+"func_imcsch.xhp\n"
+"tit\n"
+"help.text"
+msgid "IMCSCH function"
+msgstr ""
+
+#. Fa5LN
+#: func_imcsch.xhp
+msgctxt ""
+"func_imcsch.xhp\n"
+"bm_id976559765597655\n"
+"help.text"
+msgid "<bookmark_value>IMCSCH function</bookmark_value><bookmark_value>hyperbolic cosecant;complex number</bookmark_value>"
+msgstr ""
+
+#. UfC7D
+#: func_imcsch.xhp
+msgctxt ""
+"func_imcsch.xhp\n"
+"hd_id977779777797777\n"
+"help.text"
+msgid "<variable id=\"imcsch_head\"><link href=\"text/scalc/01/func_imcsch.xhp\">IMCSCH</link></variable> function"
+msgstr ""
+
+#. esr9F
+#: func_imcsch.xhp
+msgctxt ""
+"func_imcsch.xhp\n"
+"par_id979369793697936\n"
+"help.text"
+msgid "<ahelp hid=\".\"><variable id=\"imcsch_des\">Returns the hyperbolic cosecant of a complex number.</variable> The hyperbolic cosecant of a complex number can be expressed by:</ahelp>"
+msgstr ""
+
+#. FFqZK
+#: func_imcsch.xhp
+msgctxt ""
+"func_imcsch.xhp\n"
+"par_id195151657917534\n"
+"help.text"
+msgid "<image src=\"media/helpimg/scalc/IMCSCH_equation.svg\" id=\"img_id211575078735993\" width=\"504.344px\" height=\"59.5625px\"><alt id=\"alt_id401575078735994\">IMCSCH equation</alt></image>"
+msgstr ""
+
+#. ndjhY
+#: func_imcsch.xhp
+msgctxt ""
+"func_imcsch.xhp\n"
+"par_id30461169611909\n"
+"help.text"
+msgid "IMCSCH(Complex_number)"
+msgstr ""
+
+#. jWbdS
+#: func_imcsch.xhp
+msgctxt ""
+"func_imcsch.xhp\n"
+"par_id1899971619670\n"
+"help.text"
+msgid "Complex_number is a complex number whose hyperbolic cosecant needs to be calculated."
+msgstr ""
+
+#. nLLd3
+#: func_imcsch.xhp
+msgctxt ""
+"func_imcsch.xhp\n"
+"par_id16814232201137\n"
+"help.text"
+msgid "<item type=\"input\">=IMCSCH(\"4-3i\")</item><br/>returns -0.036275889628626+0.0051744731840194i."
+msgstr ""
+
+#. sgm9V
+#: func_imcsch.xhp
+msgctxt ""
+"func_imcsch.xhp\n"
+"par_id2395211576789\n"
+"help.text"
+msgid "<item type=\"input\">=IMCSCH(2)</item><br/>returns 0.275720564771783 as a string. <embedvar href=\"text/scalc/01/ful_func.xhp#func_imag_zero\"/>"
+msgstr ""
+
+#. eiF7c
+#: func_imsec.xhp
+msgctxt ""
+"func_imsec.xhp\n"
+"tit\n"
+"help.text"
+msgid "IMSEC function"
+msgstr ""
+
+#. f8owi
+#: func_imsec.xhp
+msgctxt ""
+"func_imsec.xhp\n"
+"bm_id101862404332680\n"
+"help.text"
+msgid "<bookmark_value>IMSEC function</bookmark_value><bookmark_value>secant;complex number</bookmark_value>"
+msgstr ""
+
+#. 4RBGx
+#: func_imsec.xhp
+msgctxt ""
+"func_imsec.xhp\n"
+"hd_id29384186273495\n"
+"help.text"
+msgid "<variable id=\"imsec_head\"><link href=\"text/scalc/01/func_imsec.xhp\">IMSEC</link></variable> function"
+msgstr ""
+
+#. rUMBF
+#: func_imsec.xhp
+msgctxt ""
+"func_imsec.xhp\n"
+"par_id23292284928998\n"
+"help.text"
+msgid "<ahelp hid=\".\"><variable id=\"imsec_des\">Returns the secant of a complex number. </variable> The secant of a complex number can be expressed by:</ahelp>"
+msgstr ""
+
+#. y62eA
+#: func_imsec.xhp
+msgctxt ""
+"func_imsec.xhp\n"
+"par_id17543461310594\n"
+"help.text"
+msgid "<image src=\"media/helpimg/scalc/IMSEC_equation.svg\" id=\"img_id211575078735993\" width=\"491.194px\" height=\"59.5625px\"><alt id=\"alt_id401575078735994\">IMSEC equation</alt></image>"
+msgstr ""
+
+#. CEucF
+#: func_imsec.xhp
+msgctxt ""
+"func_imsec.xhp\n"
+"par_id66061624115094\n"
+"help.text"
+msgid "IMSEC(Complex_number)"
+msgstr ""
+
+#. mAr3g
+#: func_imsec.xhp
+msgctxt ""
+"func_imsec.xhp\n"
+"par_id3186739645701\n"
+"help.text"
+msgid "Complex_number is a complex number whose secant needs to be calculated."
+msgstr ""
+
+#. DxDNG
+#: func_imsec.xhp
+msgctxt ""
+"func_imsec.xhp\n"
+"par_id16814232201137\n"
+"help.text"
+msgid "<item type=\"input\">=IMSEC(\"4-3i\")</item><br/>returns -0.0652940278579471+0.0752249603027732i."
+msgstr ""
+
+#. tCStV
+#: func_imsec.xhp
+msgctxt ""
+"func_imsec.xhp\n"
+"par_id2395211576789\n"
+"help.text"
+msgid "<item type=\"input\">=IMSEC(2)</item><br/>returns -2.40299796172238 as a string. <embedvar href=\"text/scalc/01/ful_func.xhp#func_imag_zero\"/>"
+msgstr ""
+
+#. 44osd
+#: func_imsech.xhp
+msgctxt ""
+"func_imsech.xhp\n"
+"tit\n"
+"help.text"
+msgid "IMSECH function"
+msgstr ""
+
+#. JATyW
+#: func_imsech.xhp
+msgctxt ""
+"func_imsech.xhp\n"
+"bm_id220201324724579\n"
+"help.text"
+msgid "<bookmark_value>IMSECH function</bookmark_value><bookmark_value>hyperbolic secant;complex number</bookmark_value>"
+msgstr ""
+
+#. Gi6db
+#: func_imsech.xhp
+msgctxt ""
+"func_imsech.xhp\n"
+"hd_id258933143113817\n"
+"help.text"
+msgid "<variable id=\"imsech_head\"><link href=\"text/scalc/01/func_imsech.xhp\">IMSECH</link></variable> function"
+msgstr ""
+
+#. FzWHS
+#: func_imsech.xhp
+msgctxt ""
+"func_imsech.xhp\n"
+"par_id116441182314950\n"
+"help.text"
+msgid "<ahelp hid=\".\"><variable id=\"imsech_des\">Returns the hyperbolic secant of a complex number. </variable> The hyperbolic secant of a complex number can be expressed by:</ahelp>"
+msgstr ""
+
+#. CVDgc
+#: func_imsech.xhp
+msgctxt ""
+"func_imsech.xhp\n"
+"par_id74572850718840\n"
+"help.text"
+msgid "<image src=\"media/helpimg/scalc/IMSECH_equation.svg\" id=\"img_id211575078735993\" width=\"503.694px\" height=\"59.5625px\"><alt id=\"alt_id401575078735994\">IMSECH equation</alt></image>"
+msgstr ""
+
+#. Rqker
+#: func_imsech.xhp
+msgctxt ""
+"func_imsech.xhp\n"
+"par_id17253876723855\n"
+"help.text"
+msgid "IMSECH(Complex_number)"
+msgstr ""
+
+#. ghL3e
+#: func_imsech.xhp
+msgctxt ""
+"func_imsech.xhp\n"
+"par_id31259109804356\n"
+"help.text"
+msgid "Complex_number is a complex number whose hyperbolic secant needs to be calculated."
+msgstr ""
+
+#. idFUe
+#: func_imsech.xhp
+msgctxt ""
+"func_imsech.xhp\n"
+"par_id1906826088444\n"
+"help.text"
+msgid "<item type=\"input\">=IMSECH(\"4-3i\")</item><br/>returns -0.0362534969158689+0.00516434460775318i."
+msgstr ""
+
+#. ogXFD
+#: func_imsech.xhp
+msgctxt ""
+"func_imsech.xhp\n"
+"par_id247492030016627\n"
+"help.text"
+msgid "<item type=\"input\">=IMSECH(2)</item><br/>returns 0.26580222883408 as a string. <embedvar href=\"text/scalc/01/ful_func.xhp#func_imag_zero\"/>"
+msgstr ""
+
+#. TFFZg
+#: func_imsin.xhp
+msgctxt ""
+"func_imsin.xhp\n"
+"tit\n"
+"help.text"
+msgid "IMSIN function"
+msgstr ""
+
+#. AneK8
+#: func_imsin.xhp
+msgctxt ""
+"func_imsin.xhp\n"
+"bm_id79322063230162\n"
+"help.text"
+msgid "<bookmark_value>IMSIN function</bookmark_value><bookmark_value>sine;complex number</bookmark_value>"
+msgstr ""
+
+#. KYCxa
+#: func_imsin.xhp
+msgctxt ""
+"func_imsin.xhp\n"
+"hd_id3192388765304\n"
+"help.text"
+msgid "<variable id=\"imsin_head\"><link href=\"text/scalc/01/func_imsin.xhp\">IMSIN</link></variable> function"
+msgstr ""
+
+#. zpVj8
+#: func_imsin.xhp
+msgctxt ""
+"func_imsin.xhp\n"
+"par_id1955633330277\n"
+"help.text"
+msgid "<ahelp hid=\".\"><variable id=\"imsin_des\">Returns the sine of a complex number. </variable> The sine of a complex number can be expressed by:</ahelp>"
+msgstr ""
+
+#. 5FyPJ
+#: func_imsin.xhp
+msgctxt ""
+"func_imsin.xhp\n"
+"par_id3189460120934\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sc_func_imsin.svg\" id=\"img_id211575078735993\" width=\"447.2611px\" height=\"31.5px\"><alt id=\"alt_id401575078735994\">IMSIN equation</alt></image>"
+msgstr ""
+
+#. tcmGA
+#: func_imsin.xhp
+msgctxt ""
+"func_imsin.xhp\n"
+"par_id284611113926520\n"
+"help.text"
+msgid "IMSIN(Complex_number)"
+msgstr ""
+
+#. KDCaW
+#: func_imsin.xhp
+msgctxt ""
+"func_imsin.xhp\n"
+"par_id31206835928272\n"
+"help.text"
+msgid "Complex_number is a complex number whose sine needs to be calculated."
+msgstr ""
+
+#. y4NFP
+#: func_imsin.xhp
+msgctxt ""
+"func_imsin.xhp\n"
+"par_id5063188419467\n"
+"help.text"
+msgid "<item type=\"input\">=IMSIN(\"4-3i\")</item><br/>returns -7.61923172032141+6.548120040911i."
+msgstr ""
+
+#. DKh3t
+#: func_imsin.xhp
+msgctxt ""
+"func_imsin.xhp\n"
+"par_id1527387141125\n"
+"help.text"
+msgid "<item type=\"input\">=IMSIN(2)</item><br/>returns 0.909297426825682 as a string. <embedvar href=\"text/scalc/01/ful_func.xhp#func_imag_zero\"/>"
+msgstr ""
+
+#. Ht2Tp
+#: func_imsinh.xhp
+msgctxt ""
+"func_imsinh.xhp\n"
+"tit\n"
+"help.text"
+msgid "IMSINH function"
+msgstr ""
+
+#. SpvXc
+#: func_imsinh.xhp
+msgctxt ""
+"func_imsinh.xhp\n"
+"bm_id79322063230162\n"
+"help.text"
+msgid "<bookmark_value>IMSINH function</bookmark_value><bookmark_value>hyperbolic sine;complex number</bookmark_value>"
+msgstr ""
+
+#. BUj3B
+#: func_imsinh.xhp
+msgctxt ""
+"func_imsinh.xhp\n"
+"hd_id3192388765304\n"
+"help.text"
+msgid "<variable id=\"imsinh_head\"><link href=\"text/scalc/01/func_imsinh.xhp\">IMSINH</link></variable> function"
+msgstr ""
+
+#. GK4WM
+#: func_imsinh.xhp
+msgctxt ""
+"func_imsinh.xhp\n"
+"par_id1955633330277\n"
+"help.text"
+msgid "<ahelp hid=\".\"><variable id=\"imsinh_des\">Returns the hyperbolic sine of a complex number.</variable> The hyperbolic sine of a complex number can be expressed by:</ahelp>"
+msgstr ""
+
+#. ZDbJS
+#: func_imsinh.xhp
+msgctxt ""
+"func_imsinh.xhp\n"
+"par_id3189460120934\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sc_func_imsinh.svg\" id=\"img_id211575078735993\" width=\"459.7611px\" height=\"31.5px\"><alt id=\"alt_id401575078735994\">IMSINH equation</alt></image>"
+msgstr ""
+
+#. CM4Gy
+#: func_imsinh.xhp
+msgctxt ""
+"func_imsinh.xhp\n"
+"par_id284611113926520\n"
+"help.text"
+msgid "IMSINH(Complex_number)"
+msgstr ""
+
+#. FM2Uc
+#: func_imsinh.xhp
+msgctxt ""
+"func_imsinh.xhp\n"
+"par_id31206835928272\n"
+"help.text"
+msgid "Complex_number is a complex number whose hyperbolic sine needs to be calculated."
+msgstr ""
+
+#. ZGYZ3
+#: func_imsinh.xhp
+msgctxt ""
+"func_imsinh.xhp\n"
+"par_id5063188419467\n"
+"help.text"
+msgid "<item type=\"input\">=IMSINH(\"4-3i\")</item><br/>returns -27.0168132580039-3.85373803791938i."
+msgstr ""
+
+#. WAgPF
+#: func_imsinh.xhp
+msgctxt ""
+"func_imsinh.xhp\n"
+"par_id1527387141125\n"
+"help.text"
+msgid "<item type=\"input\">=IMSINH(2)</item><br/>returns 3.62686040784702 as a string. <embedvar href=\"text/scalc/01/ful_func.xhp#func_imag_zero\"/>"
+msgstr ""
+
+#. C2DmY
+#: func_imtan.xhp
+msgctxt ""
+"func_imtan.xhp\n"
+"tit\n"
+"help.text"
+msgid "IMTAN function"
+msgstr ""
+
+#. fMSEq
+#: func_imtan.xhp
+msgctxt ""
+"func_imtan.xhp\n"
+"bm_id4210250889873\n"
+"help.text"
+msgid "<bookmark_value>IMTAN function</bookmark_value><bookmark_value>tangent;complex number</bookmark_value>"
+msgstr ""
+
+#. PmaMD
+#: func_imtan.xhp
+msgctxt ""
+"func_imtan.xhp\n"
+"hd_id9522389621160\n"
+"help.text"
+msgid "<variable id=\"imtan_head\"><link href=\"text/scalc/01/func_imtan.xhp\">IMTAN</link></variable> function"
+msgstr ""
+
+#. FynW6
+#: func_imtan.xhp
+msgctxt ""
+"func_imtan.xhp\n"
+"par_id5700137827273\n"
+"help.text"
+msgid "<ahelp hid=\".\"><variable id=\"imtan_des\">Returns the tangent of a complex number.</variable> The tangent of a complex number can be expressed by:</ahelp>"
+msgstr ""
+
+#. ujidB
+#: func_imtan.xhp
+msgctxt ""
+"func_imtan.xhp\n"
+"par_id25021317131239\n"
+"help.text"
+msgid "<image src=\"media/helpimg/scalc/IMTAN_equation.svg\" id=\"img_id211575078735993\" width=\"353.294px\" height=\"59.5625px\"><alt id=\"alt_id401575078735994\">IMTAN equation</alt></image>"
+msgstr ""
+
+#. 7QtEG
+#: func_imtan.xhp
+msgctxt ""
+"func_imtan.xhp\n"
+"par_id23219159944377\n"
+"help.text"
+msgid "IMTAN(Complex_number)"
+msgstr ""
+
+#. 4XwP7
+#: func_imtan.xhp
+msgctxt ""
+"func_imtan.xhp\n"
+"par_id10242899132094\n"
+"help.text"
+msgid "Complex_number is a complex number whose tangent is to be calculated."
+msgstr ""
+
+#. bEY6r
+#: func_imtan.xhp
+msgctxt ""
+"func_imtan.xhp\n"
+"par_id5063188419467\n"
+"help.text"
+msgid "<item type=\"input\">=IMTAN(\"4-3i\")</item><br/>returns 0.00490825806749606-1.00070953606723i."
+msgstr ""
+
+#. q7Zeh
+#: func_imtan.xhp
+msgctxt ""
+"func_imtan.xhp\n"
+"par_id1527387141125\n"
+"help.text"
+msgid "<item type=\"input\">=IMTAN(2)</item><br/>returns -2.18503986326152 as a string. <embedvar href=\"text/scalc/01/ful_func.xhp#func_imag_zero\"/>"
+msgstr ""
+
+#. 8YaMz
+#: func_isoweeknum.xhp
+msgctxt ""
+"func_isoweeknum.xhp\n"
+"tit\n"
+"help.text"
+msgid "ISOWEEKNUM"
+msgstr ""
+
+#. ByTrc
+#: func_isoweeknum.xhp
+msgctxt ""
+"func_isoweeknum.xhp\n"
+"bm_id3159161\n"
+"help.text"
+msgid "<bookmark_value>ISOWEEKNUM function</bookmark_value>"
+msgstr ""
+
+#. PPej5
+#: func_isoweeknum.xhp
+msgctxt ""
+"func_isoweeknum.xhp\n"
+"hd_id3159161\n"
+"help.text"
+msgid "<variable id=\"isoweeknum\"><link href=\"text/scalc/01/func_isoweeknum.xhp\">ISOWEEKNUM</link></variable>"
+msgstr ""
+
+#. GcDHP
+#: func_isoweeknum.xhp
+msgctxt ""
+"func_isoweeknum.xhp\n"
+"par_id3149770\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_ISOWEEKNUM\">ISOWEEKNUM calculates the week number of the year for the internal date value.</ahelp>"
+msgstr ""
+
+#. oeF4y
+#: func_isoweeknum.xhp
+msgctxt ""
+"func_isoweeknum.xhp\n"
+"par_idN105E4\n"
+"help.text"
+msgid "The International Standard ISO 8601 has decreed that Monday shall be the first day of the week. A week that lies partly in one year and partly in another is assigned a number in the year in which most of its days lie. That means that week number 1 of any year is the week that contains the January 4th."
+msgstr ""
+
+#. 2mDM2
+#: func_isoweeknum.xhp
+msgctxt ""
+"func_isoweeknum.xhp\n"
+"par_id3147236\n"
+"help.text"
+msgid "ISOWEEKNUM(Number)"
+msgstr ""
+
+#. SneoF
+#: func_isoweeknum.xhp
+msgctxt ""
+"func_isoweeknum.xhp\n"
+"par_id3147511\n"
+"help.text"
+msgid "<emph>Number</emph> is the internal date number."
+msgstr ""
+
+#. 4f8kJ
+#: func_isoweeknum.xhp
+msgctxt ""
+"func_isoweeknum.xhp\n"
+"par_id3149792\n"
+"help.text"
+msgid "<item type=\"input\">=ISOWEEKNUM(DATE(1995;1;1))</item> returns 52. Week 1 starts on Monday, 1995-01-02."
+msgstr ""
+
+#. AMrEN
+#: func_isoweeknum.xhp
+msgctxt ""
+"func_isoweeknum.xhp\n"
+"par_id3149794\n"
+"help.text"
+msgid "<item type=\"input\">=ISOWEEKNUM(DATE(1999;1;1))</item> returns 53. Week 1 starts on Monday, 1999-01-04."
+msgstr ""
+
+#. CB8Vn
+#: func_jis.xhp
+msgctxt ""
+"func_jis.xhp\n"
+"tit\n"
+"help.text"
+msgid "JIS Function"
+msgstr ""
+
+#. 5Qavf
+#: func_jis.xhp
+msgctxt ""
+"func_jis.xhp\n"
+"bm_id831542233029549\n"
+"help.text"
+msgid "<bookmark_value>JIS function</bookmark_value>"
+msgstr ""
+
+#. MEYJo
+#: func_jis.xhp
+msgctxt ""
+"func_jis.xhp\n"
+"hd_id881628776094597\n"
+"help.text"
+msgid "<variable id=\"Jis_h1\"><link href=\"text/scalc/01/func_jis.xhp\" name=\"function JIS\">JIS</link></variable>"
+msgstr ""
+
+#. 3XKQ3
+#: func_jis.xhp
+msgctxt ""
+"func_jis.xhp\n"
+"par_id541542230672101\n"
+"help.text"
+msgid "<variable id=\"func_jis_desc\"><ahelp hid=\".\">Converts single-byte (half-width) ASCII or katakana characters to double-byte (full-width) characters.</ahelp></variable>"
+msgstr ""
+
+#. UdHVW
+#: func_jis.xhp
+msgctxt ""
+"func_jis.xhp\n"
+"par_id151634221012221\n"
+"help.text"
+msgid "See <link href=\"https://wiki.documentfoundation.org/Calc/Features/JIS_and_ASC_functions\" name=\"wiki.documentfoundation.org Calc/Features/JIS and ASC functions\">https://wiki.documentfoundation.org/Calc/Features/JIS_and_ASC_functions</link> for a conversion table."
+msgstr ""
+
+#. AjjnX
+#: func_jis.xhp
+msgctxt ""
+"func_jis.xhp\n"
+"par_id701542231253817\n"
+"help.text"
+msgid "<input>JIS(Text)</input>"
+msgstr ""
+
+#. f9YAh
+#: func_jis.xhp
+msgctxt ""
+"func_jis.xhp\n"
+"par_id621542232197446\n"
+"help.text"
+msgid "<emph>Text</emph>: the text string that contains characters to be converted."
+msgstr ""
+
+#. b289j
+#: func_jis.xhp
+msgctxt ""
+"func_jis.xhp\n"
+"par_id481637763523789\n"
+"help.text"
+msgid "Applying the JIS function to a string composed of double-byte characters will return the input string without any modifications."
+msgstr ""
+
+#. BBEVj
+#: func_jis.xhp
+msgctxt ""
+"func_jis.xhp\n"
+"par_id451628776707264\n"
+"help.text"
+msgid "<input>=JIS(\"LibreOffice\")</input> returns the string \"LibreOffice\". Note that the returned string uses double-byte characters."
+msgstr ""
+
+#. fEFNT
+#: func_jis.xhp
+msgctxt ""
+"func_jis.xhp\n"
+"par_id101628778036375\n"
+"help.text"
+msgid "<input>=JIS(\"ライト\")</input> returns the string \"ライト\", which is composed of double-byte characters."
+msgstr ""
+
+#. Cauxq
+#: func_maxifs.xhp
+msgctxt ""
+"func_maxifs.xhp\n"
+"tit\n"
+"help.text"
+msgid "MAXIFS function"
+msgstr ""
+
+#. 8HdEW
+#: func_maxifs.xhp
+msgctxt ""
+"func_maxifs.xhp\n"
+"bm_id658066580665806\n"
+"help.text"
+msgid "<bookmark_value>MAXIFS function</bookmark_value> <bookmark_value>maximum;satisfying conditions</bookmark_value>"
+msgstr ""
+
+#. kKHTn
+#: func_maxifs.xhp
+msgctxt ""
+"func_maxifs.xhp\n"
+"hd_id658866588665886\n"
+"help.text"
+msgid "<variable id=\"maxifs_head\"><link href=\"text/scalc/01/func_maxifs.xhp\">MAXIFS</link></variable> function"
+msgstr ""
+
+#. DXshy
+#: func_maxifs.xhp
+msgctxt ""
+"func_maxifs.xhp\n"
+"par_id659756597565975\n"
+"help.text"
+msgid "<ahelp hid=\".\"><variable id=\"maxifs_des\">Returns the maximum of the values of cells in a range that meets multiple criteria in multiple ranges.</variable></ahelp>"
+msgstr ""
+
+#. PKmRh
+#: func_maxifs.xhp
+msgctxt ""
+"func_maxifs.xhp\n"
+"par_id11655988824213\n"
+"help.text"
+msgid "MAXIFS(<embedvar href=\"text/scalc/01/ex_data_stat_func.xhp#args\" markup=\"ignore\"/>)"
+msgstr ""
+
+#. UrwgE
+#: func_maxifs.xhp
+msgctxt ""
+"func_maxifs.xhp\n"
+"par_id59901690530236\n"
+"help.text"
+msgid "<emph>Func_Range</emph> – required argument. A range of cells, a name of a named range or a label of a column or a row containing values for calculating the maximum."
+msgstr ""
+
+#. BUavo
+#: func_maxifs.xhp
+msgctxt ""
+"func_maxifs.xhp\n"
+"hd_id193452436229521\n"
+"help.text"
+msgid "Simple usage"
+msgstr ""
+
+#. 8CyiM
+#: func_maxifs.xhp
+msgctxt ""
+"func_maxifs.xhp\n"
+"par_id94321051525036\n"
+"help.text"
+msgid "<item type=\"input\">=MAXIFS(B2:B6;B2:B6;\"<35\")</item>"
+msgstr ""
+
+#. j2PKY
+#: func_maxifs.xhp
+msgctxt ""
+"func_maxifs.xhp\n"
+"par_id28647227259438\n"
+"help.text"
+msgid "Calculates the maximum of values of the range B2:B6 that are greater than or equal to 20. Returns 35. The fifth row does not meet the criterion."
+msgstr ""
+
+#. c6yAQ
+#: func_maxifs.xhp
+msgctxt ""
+"func_maxifs.xhp\n"
+"par_id36952767622741\n"
+"help.text"
+msgid "<item type=\"input\">=MAXIFS(C2:C6;B2:B6;\">=20\";C2:C6;\"<90\")</item>"
+msgstr ""
+
+#. nGj4o
+#: func_maxifs.xhp
+msgctxt ""
+"func_maxifs.xhp\n"
+"par_id189772445525114\n"
+"help.text"
+msgid "Calculates the maximum of values of the range C2:C6 that are lower than 90 and correspond to cells of the B2:B6 range with values greater than or equal to 20. Returns 85, because the fourth and fifth rows do not meet at least one criterion."
+msgstr ""
+
+#. 9Ayop
+#: func_maxifs.xhp
+msgctxt ""
+"func_maxifs.xhp\n"
+"hd_id30455222431067\n"
+"help.text"
+msgid "Using regular expressions and nested functions"
+msgstr ""
+
+#. LNubZ
+#: func_maxifs.xhp
+msgctxt ""
+"func_maxifs.xhp\n"
+"par_id307691022525348\n"
+"help.text"
+msgid "<item type=\"input\">=MAXIFS(C2:C6;B2:B6;\">\"&MIN(B2:B6);B2:B6;\"<\"&MAX(B2:B6))</item>"
+msgstr ""
+
+#. CR2To
+#: func_maxifs.xhp
+msgctxt ""
+"func_maxifs.xhp\n"
+"par_id27619246864839\n"
+"help.text"
+msgid "Calculates the maximum of values of the range C2:C6 that correspond to all values of the range B2:B6 except its minimum and maximum. Returns 190, because only the fourth row meet the criteria."
+msgstr ""
+
+#. xriFt
+#: func_maxifs.xhp
+msgctxt ""
+"func_maxifs.xhp\n"
+"par_id220502883332563\n"
+"help.text"
+msgid "<item type=\"input\">=MAXIFS(C2:C6;A2:A6;\"pen.*\";B2:B6;\"<=\"&MAX(B2:B6))</item>"
+msgstr ""
+
+#. FQicN
+#: func_maxifs.xhp
+msgctxt ""
+"func_maxifs.xhp\n"
+"par_id15342189586295\n"
+"help.text"
+msgid "Calculates the maximum of values of the range C2:C6 that correspond to all cells of the A2:A6 range starting with \"pen\" and to all cells of the B2:B6 range except its maximum. Returns 85, because only the third row meets all criteria."
+msgstr ""
+
+#. DwLDF
+#: func_maxifs.xhp
+msgctxt ""
+"func_maxifs.xhp\n"
+"hd_id8168283329426\n"
+"help.text"
+msgid "Reference to a cell as a criterion"
+msgstr ""
+
+#. 9BMGq
+#: func_maxifs.xhp
+msgctxt ""
+"func_maxifs.xhp\n"
+"par_id50762995519951\n"
+"help.text"
+msgid "If you need to change a criterion easily, you may want to specify it in a separate cell and use a reference to this cell in the condition of the MAXIFS function. For example, the above function can be rewritten as follows:"
+msgstr ""
+
+#. gcYDr
+#: func_maxifs.xhp
+msgctxt ""
+"func_maxifs.xhp\n"
+"par_id135761606425300\n"
+"help.text"
+msgid "<item type=\"input\">=MAXIFS(C2:C6;A2:A6;E2&\".*\";B2:B6;\"<\"&MAX(B2:B6))</item>"
+msgstr ""
+
+#. wHPFq
+#: func_maxifs.xhp
+msgctxt ""
+"func_maxifs.xhp\n"
+"par_id30574750215839\n"
+"help.text"
+msgid "If E2 = \"pen\", the function returns 65, because the reference to the cell is substituted with its content."
+msgstr ""
+
+#. zGQnQ
+#: func_minifs.xhp
+msgctxt ""
+"func_minifs.xhp\n"
+"tit\n"
+"help.text"
+msgid "MINIFS function"
+msgstr ""
+
+#. V8Fu7
+#: func_minifs.xhp
+msgctxt ""
+"func_minifs.xhp\n"
+"bm_id658066580665806\n"
+"help.text"
+msgid "<bookmark_value>MINIFS function</bookmark_value> <bookmark_value>minimum;satisfying conditions</bookmark_value>"
+msgstr ""
+
+#. vnegG
+#: func_minifs.xhp
+msgctxt ""
+"func_minifs.xhp\n"
+"hd_id658866588665886\n"
+"help.text"
+msgid "<variable id=\"minifs_head\"><link href=\"text/scalc/01/func_minifs.xhp\">MINIFS</link></variable> function"
+msgstr ""
+
+#. PmaDA
+#: func_minifs.xhp
+msgctxt ""
+"func_minifs.xhp\n"
+"par_id659756597565975\n"
+"help.text"
+msgid "<ahelp hid=\".\"><variable id=\"minifs_des\">Returns the minimum of the values of cells in a range that meets multiple criteria in multiple ranges.</variable></ahelp>"
+msgstr ""
+
+#. yekSJ
+#: func_minifs.xhp
+msgctxt ""
+"func_minifs.xhp\n"
+"par_id11655988824213\n"
+"help.text"
+msgid "MINIFS(<embedvar href=\"text/scalc/01/ex_data_stat_func.xhp#args\" markup=\"ignore\"/>)"
+msgstr ""
+
+#. Gf5P2
+#: func_minifs.xhp
+msgctxt ""
+"func_minifs.xhp\n"
+"par_id59901690530236\n"
+"help.text"
+msgid "<emph>Func_Range</emph> – required argument. A range of cells, a name of a named range or a label of a column or a row containing values for calculating the minimum."
+msgstr ""
+
+#. KkDwL
+#: func_minifs.xhp
+msgctxt ""
+"func_minifs.xhp\n"
+"hd_id193452436229521\n"
+"help.text"
+msgid "Simple usage"
+msgstr ""
+
+#. TGRCF
+#: func_minifs.xhp
+msgctxt ""
+"func_minifs.xhp\n"
+"par_id94321051525036\n"
+"help.text"
+msgid "<item type=\"input\">=MINIFS(B2:B6;B2:B6;\"<35\")</item>"
+msgstr ""
+
+#. eRNbh
+#: func_minifs.xhp
+msgctxt ""
+"func_minifs.xhp\n"
+"par_id28647227259438\n"
+"help.text"
+msgid "Calculates the minimum of values of the range B2:B6 that are lower than or equal to 20. Returns 17."
+msgstr ""
+
+#. zufoC
+#: func_minifs.xhp
+msgctxt ""
+"func_minifs.xhp\n"
+"par_id36952767622741\n"
+"help.text"
+msgid "<item type=\"input\">=MINIFS(C2:C6;B2:B6;\">=20\";C2:C6;\">90\")</item>"
+msgstr ""
+
+#. iCk4M
+#: func_minifs.xhp
+msgctxt ""
+"func_minifs.xhp\n"
+"par_id189772445525114\n"
+"help.text"
+msgid "Calculates the minimum of values of the range C2:C6 that are lower than 90 and correspond to cells of the B2:B6 range with values greater than or equal to 20. Returns 190."
+msgstr ""
+
+#. iqFXq
+#: func_minifs.xhp
+msgctxt ""
+"func_minifs.xhp\n"
+"hd_id30455222431067\n"
+"help.text"
+msgid "Using regular expressions and nested functions"
+msgstr ""
+
+#. CBaMz
+#: func_minifs.xhp
+msgctxt ""
+"func_minifs.xhp\n"
+"par_id307691022525348\n"
+"help.text"
+msgid "<item type=\"input\">=MINIFS(C2:C6;B2:B6;\">\"&MIN(B2:B6);B2:B6;\"<\"&MAX(B2:B6))</item>"
+msgstr ""
+
+#. Dp4Sx
+#: func_minifs.xhp
+msgctxt ""
+"func_minifs.xhp\n"
+"par_id27619246864839\n"
+"help.text"
+msgid "Calculates the minimum of values of the range C2:C6 that correspond to all values of the range B2:B6 except its minimum and maximum. Returns 65."
+msgstr ""
+
+#. 7S443
+#: func_minifs.xhp
+msgctxt ""
+"func_minifs.xhp\n"
+"par_id220502883332563\n"
+"help.text"
+msgid "<item type=\"input\">=MINIFS(C2:C6;A2:A6;\".*book\";B2:B6;\">\"&MIN(B2:B6))</item>"
+msgstr ""
+
+#. gNhzJ
+#: func_minifs.xhp
+msgctxt ""
+"func_minifs.xhp\n"
+"par_id15342189586295\n"
+"help.text"
+msgid "Calculates the minimum of values of the range C2:C6 that correspond to all cells of the A2:A6 range ending with \"book\" and to all cells of the B2:B6 range except its minimum. Returns 190."
+msgstr ""
+
+#. uz4wr
+#: func_minifs.xhp
+msgctxt ""
+"func_minifs.xhp\n"
+"hd_id8168283329426\n"
+"help.text"
+msgid "Reference to a cell as a criterion"
+msgstr ""
+
+#. 27hDw
+#: func_minifs.xhp
+msgctxt ""
+"func_minifs.xhp\n"
+"par_id50762995519951\n"
+"help.text"
+msgid "If you need to change a criterion easily, you may want to specify it in a separate cell and use a reference to this cell in the condition of the MINIFS function. For example, the above function can be rewritten as follows:"
+msgstr ""
+
+#. EcoDf
+#: func_minifs.xhp
+msgctxt ""
+"func_minifs.xhp\n"
+"par_id135761606425300\n"
+"help.text"
+msgid "<item type=\"input\">=MINIFS(C2:C6;A2:A6;\".*\"&E2;B2:B6;\"<\"&MAX(B2:B6))</item>"
+msgstr ""
+
+#. cxmqK
+#: func_minifs.xhp
+msgctxt ""
+"func_minifs.xhp\n"
+"par_id30574750215839\n"
+"help.text"
+msgid "If E2 = \"book\", the function returns 180, because the reference to the cell is substituted with its content."
+msgstr ""
+
+#. SAxB8
+#: func_minute.xhp
+msgctxt ""
+"func_minute.xhp\n"
+"tit\n"
+"help.text"
+msgid "MINUTE"
+msgstr ""
+
+#. 7cQwC
+#: func_minute.xhp
+msgctxt ""
+"func_minute.xhp\n"
+"bm_id3149803\n"
+"help.text"
+msgid "<bookmark_value>MINUTE function</bookmark_value>"
+msgstr ""
+
+#. aFbYG
+#: func_minute.xhp
+msgctxt ""
+"func_minute.xhp\n"
+"hd_id3149803\n"
+"help.text"
+msgid "<variable id=\"minute\"><link href=\"text/scalc/01/func_minute.xhp\">MINUTE</link></variable>"
+msgstr ""
+
+#. kGsA6
+#: func_minute.xhp
+msgctxt ""
+"func_minute.xhp\n"
+"par_id3148988\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 ""
+
+#. LeQE8
+#: func_minute.xhp
+msgctxt ""
+"func_minute.xhp\n"
+"par_id3148660\n"
+"help.text"
+msgid "MINUTE(Number)"
+msgstr ""
+
+#. 8eGft
+#: func_minute.xhp
+msgctxt ""
+"func_minute.xhp\n"
+"par_id3154611\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 ""
+
+#. L77op
+#: func_minute.xhp
+msgctxt ""
+"func_minute.xhp\n"
+"par_id3148463\n"
+"help.text"
+msgid "<item type=\"input\">=MINUTE(8.999)</item> returns 58"
+msgstr ""
+
+#. Q9MMh
+#: func_minute.xhp
+msgctxt ""
+"func_minute.xhp\n"
+"par_id3149419\n"
+"help.text"
+msgid "<item type=\"input\">=MINUTE(8.9999)</item> returns 59"
+msgstr ""
+
+#. A3T6A
+#: func_minute.xhp
+msgctxt ""
+"func_minute.xhp\n"
+"par_id3144755\n"
+"help.text"
+msgid "<item type=\"input\">=MINUTE(NOW())</item> returns the current minute value."
+msgstr ""
+
+#. FmPSf
+#: func_month.xhp
+msgctxt ""
+"func_month.xhp\n"
+"tit\n"
+"help.text"
+msgid "MONTH"
+msgstr ""
+
+#. WdxqW
+#: func_month.xhp
+msgctxt ""
+"func_month.xhp\n"
+"bm_id3149936\n"
+"help.text"
+msgid "<bookmark_value>MONTH function</bookmark_value>"
+msgstr ""
+
+#. oMx2Y
+#: func_month.xhp
+msgctxt ""
+"func_month.xhp\n"
+"hd_id3149936\n"
+"help.text"
+msgid "<variable id=\"month\"><link href=\"text/scalc/01/func_month.xhp\">MONTH</link></variable>"
+msgstr ""
+
+#. on6C8
+#: func_month.xhp
+msgctxt ""
+"func_month.xhp\n"
+"par_id3153538\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 ""
+
+#. DFzsG
+#: func_month.xhp
+msgctxt ""
+"func_month.xhp\n"
+"par_id3145602\n"
+"help.text"
+msgid "MONTH(Number)"
+msgstr ""
+
+#. G77xy
+#: func_month.xhp
+msgctxt ""
+"func_month.xhp\n"
+"par_id3149485\n"
+"help.text"
+msgid "<emph>Number</emph> is the internal date number."
+msgstr ""
+
+#. LuUhY
+#: func_month.xhp
+msgctxt ""
+"func_month.xhp\n"
+"par_id3149244\n"
+"help.text"
+msgid "<item type=\"input\">=MONTH(NOW())</item> returns the current month."
+msgstr ""
+
+#. BD2Ww
+#: func_month.xhp
+msgctxt ""
+"func_month.xhp\n"
+"par_id3154790\n"
+"help.text"
+msgid "<item type=\"input\">=MONTH(C4)</item> returns 7 if you enter 2000-07-07 to cell C4 (that date value might get formatted differently after you press Enter)."
+msgstr ""
+
+#. kbyFK
+#: func_networkdays.intl.xhp
+msgctxt ""
+"func_networkdays.intl.xhp\n"
+"tit\n"
+"help.text"
+msgid "NETWORKDAYS.INTL"
+msgstr ""
+
+#. H92rh
+#: func_networkdays.intl.xhp
+msgctxt ""
+"func_networkdays.intl.xhp\n"
+"bm_id231020162321219565\n"
+"help.text"
+msgid "<bookmark_value>NETWORKDAYS.INTL function</bookmark_value>"
+msgstr ""
+
+#. 54nta
+#: func_networkdays.intl.xhp
+msgctxt ""
+"func_networkdays.intl.xhp\n"
+"hd_id231020162211573602\n"
+"help.text"
+msgid "<variable id=\"networkdaysintl\"><link href=\"text/scalc/01/func_networkdays.intl.xhp\">NETWORKDAYS.INTL</link></variable>"
+msgstr ""
+
+#. kDcRW
+#: func_networkdays.intl.xhp
+msgctxt ""
+"func_networkdays.intl.xhp\n"
+"par_id231020162213393086\n"
+"help.text"
+msgid "<ahelp hid=\".\">Returns the number of workdays between a start date and an end date. 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 ""
+
+#. 53kNC
+#: func_networkdays.intl.xhp
+msgctxt ""
+"func_networkdays.intl.xhp\n"
+"par_id231020162249539143\n"
+"help.text"
+msgid "NETWORKDAYS.INTL(StartDate; EndDate [; [ Weekend ] [; Holidays ] ])"
+msgstr ""
+
+#. D8jig
+#: func_networkdays.intl.xhp
+msgctxt ""
+"func_networkdays.intl.xhp\n"
+"par_id231020162249533010\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 ""
+
+#. DU9WK
+#: func_networkdays.intl.xhp
+msgctxt ""
+"func_networkdays.intl.xhp\n"
+"par_id231020162249536398\n"
+"help.text"
+msgid "<emph>EndDate</emph> is the date up until when the calculation is carried out. If the end date is a workday, the day is included in the calculation."
+msgstr ""
+
+#. Yhepz
+#: func_networkdays.intl.xhp
+msgctxt ""
+"func_networkdays.intl.xhp\n"
+"par_id231020162249554032\n"
+"help.text"
+msgid "How many workdays fall between December 15, 2016 and January 14, 2017? Let the start date be located in C3 and the end date in D3. 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 ""
+
+#. YtSPd
+#: func_networkdays.intl.xhp
+msgctxt ""
+"func_networkdays.intl.xhp\n"
+"par_id231020162249551234\n"
+"help.text"
+msgid "<item type=\"input\">=NETWORKDAYS.INTL(C3;D3;;F3:J3)</item> returns 21 workdays with default for weekend days."
+msgstr ""
+
+#. Q4DCf
+#: func_networkdays.intl.xhp
+msgctxt ""
+"func_networkdays.intl.xhp\n"
+"par_id231020162249553109\n"
+"help.text"
+msgid "<item type=\"input\">=NETWORKDAYS.INTL(C3;D3;11;F3:J3)</item> returns 24 workdays with Sunday only weekends."
+msgstr ""
+
+#. 3AN56
+#: func_networkdays.intl.xhp
+msgctxt ""
+"func_networkdays.intl.xhp\n"
+"par_id231020162249557786\n"
+"help.text"
+msgid "Alternatively, use the weekend string “0000001” to define Sunday as the non-working day of every week."
+msgstr ""
+
+#. 2E4Jz
+#: func_networkdays.intl.xhp
+msgctxt ""
+"func_networkdays.intl.xhp\n"
+"par_id231020162249553409\n"
+"help.text"
+msgid "<item type=\"input\">=NETWORKDAYS.INTL(C3;D3;“0000001”;F3:J3)</item> returns 24 workdays with Sunday only weekend."
+msgstr ""
+
+#. spLva
+#: func_networkdays.intl.xhp
+msgctxt ""
+"func_networkdays.intl.xhp\n"
+"par_id231020162249556946\n"
+"help.text"
+msgid "The function can be used without the two optional parameters – weekday and holidays – by leaving them out:"
+msgstr ""
+
+#. 7pyBD
+#: func_networkdays.intl.xhp
+msgctxt ""
+"func_networkdays.intl.xhp\n"
+"par_id23102016224955931\n"
+"help.text"
+msgid "<item type=\"input\">=NETWORKDAYS.INTL(C3;D3)</item> gives 22 working days."
+msgstr ""
+
+#. winzV
+#: func_networkdays.xhp
+msgctxt ""
+"func_networkdays.xhp\n"
+"tit\n"
+"help.text"
+msgid "NETWORKDAYS"
+msgstr ""
+
+#. v4yGQ
+#: func_networkdays.xhp
+msgctxt ""
+"func_networkdays.xhp\n"
+"bm_id3151254\n"
+"help.text"
+msgid "<bookmark_value>NETWORKDAYS function</bookmark_value> <bookmark_value>NETWORKDAYS_EXCEL2003 function</bookmark_value>"
+msgstr ""
+
+#. HzF8v
+#: func_networkdays.xhp
+msgctxt ""
+"func_networkdays.xhp\n"
+"hd_id3151254\n"
+"help.text"
+msgid "<variable id=\"networkdays\"><link href=\"text/scalc/01/func_networkdays.xhp\">NETWORKDAYS</link></variable>"
+msgstr ""
+
+#. 8M3zv
+#: func_networkdays.xhp
+msgctxt ""
+"func_networkdays.xhp\n"
+"par_id3153788\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_NETWORKDAYS\">Returns the number of workdays between a <emph>start date</emph> and an <emph>end date</emph>. Holidays can be deducted.</ahelp>"
+msgstr ""
+
+#. AME9S
+#: func_networkdays.xhp
+msgctxt ""
+"func_networkdays.xhp\n"
+"par_id3145775\n"
+"help.text"
+msgid "NETWORKDAYS(StartDate; EndDate [; [ Holidays ] [; Workdays ] ])"
+msgstr ""
+
+#. BEtbU
+#: func_networkdays.xhp
+msgctxt ""
+"func_networkdays.xhp\n"
+"par_id3153885\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 ""
+
+#. N9CAv
+#: func_networkdays.xhp
+msgctxt ""
+"func_networkdays.xhp\n"
+"par_id3151110\n"
+"help.text"
+msgid "<emph>EndDate</emph> is the date up until when the calculation is carried out. If the end date is a workday, the day is included in the calculation."
+msgstr ""
+
+#. Zxfr2
+#: func_networkdays.xhp
+msgctxt ""
+"func_networkdays.xhp\n"
+"par_id3154115\n"
+"help.text"
+msgid "<emph>Holidays</emph> is an optional list of holidays. These are non-working days. Enter a cell range in which the holidays are listed individually."
+msgstr ""
+
+#. UTwRH
+#: func_networkdays.xhp
+msgctxt ""
+"func_networkdays.xhp\n"
+"par_id160920161749585013\n"
+"help.text"
+msgid "<emph>Workdays</emph> is an optional list of number values defining standard work week. This list starts by Sunday, workdays are indicated by zero and non-working days by non-zero value."
+msgstr ""
+
+#. yTEUA
+#: func_networkdays.xhp
+msgctxt ""
+"func_networkdays.xhp\n"
+"par_id3154661\n"
+"help.text"
+msgid "How many workdays fall between 2001-12-15 and 2002-01-15? The start date is located in C3 and the end date in D3. Cells F3 to J3 contain the following Christmas and New Year holidays: \"2001-12-24\", \"2001-12-25\", \"2001-12-26\", \"2001-12-31\", \"2002-01-01\"."
+msgstr ""
+
+#. FWMFn
+#: func_networkdays.xhp
+msgctxt ""
+"func_networkdays.xhp\n"
+"par_id3147328\n"
+"help.text"
+msgid "<item type=\"input\">=NETWORKDAYS(C3;D3;F3:J3)</item> returns 17 workdays."
+msgstr ""
+
+#. DxQVm
+#: func_networkdays.xhp
+msgctxt ""
+"func_networkdays.xhp\n"
+"par_id160920161751233621\n"
+"help.text"
+msgid "How many workdays fall between September 12nd and 25th in 2016 if only Mondays, Tuesdays and Wednesdays are considered as workdays?"
+msgstr ""
+
+#. fELgW
+#: func_networkdays.xhp
+msgctxt ""
+"func_networkdays.xhp\n"
+"par_id160920161751235483\n"
+"help.text"
+msgid "<item type=\"input\">=NETWORKDAYS(DATE(2016;9;12); DATE(2016;9;25); ; {1;0;0;0;1;1;1})</item> returns 6 workdays."
+msgstr ""
+
+#. HCN8H
+#: func_now.xhp
+msgctxt ""
+"func_now.xhp\n"
+"tit\n"
+"help.text"
+msgid "NOW"
+msgstr ""
+
+#. bUAGA
+#: func_now.xhp
+msgctxt ""
+"func_now.xhp\n"
+"bm_id3150521\n"
+"help.text"
+msgid "<bookmark_value>NOW function</bookmark_value>"
+msgstr ""
+
+#. n4jYR
+#: func_now.xhp
+msgctxt ""
+"func_now.xhp\n"
+"hd_id3150521\n"
+"help.text"
+msgid "<variable id=\"now\"><link href=\"text/scalc/01/func_now.xhp\">NOW</link></variable>"
+msgstr ""
+
+#. o7Wxp
+#: func_now.xhp
+msgctxt ""
+"func_now.xhp\n"
+"par_id3148829\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 ""
+
+#. 4wCVv
+#: func_now.xhp
+msgctxt ""
+"func_now.xhp\n"
+"par_id3154897\n"
+"help.text"
+msgid "NOW()"
+msgstr ""
+
+#. j8sKU
+#: func_now.xhp
+msgctxt ""
+"func_now.xhp\n"
+"par_id4598529\n"
+"help.text"
+msgid "NOW is a function without arguments."
+msgstr ""
+
+#. DXy7U
+#: func_now.xhp
+msgctxt ""
+"func_now.xhp\n"
+"par_id3150774\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 ""
+
+#. G3PMG
+#: func_numbervalue.xhp
+msgctxt ""
+"func_numbervalue.xhp\n"
+"tit\n"
+"help.text"
+msgid "NUMBERVALUE"
+msgstr ""
+
+#. ExLmD
+#: func_numbervalue.xhp
+msgctxt ""
+"func_numbervalue.xhp\n"
+"bm_id3145621\n"
+"help.text"
+msgid "<bookmark_value>NUMBERVALUE function</bookmark_value>"
+msgstr ""
+
+#. GomzJ
+#: func_numbervalue.xhp
+msgctxt ""
+"func_numbervalue.xhp\n"
+"hd_id3145621\n"
+"help.text"
+msgid "<variable id=\"numbervalue_h1\"><link href=\"text/scalc/01/func_numbervalue.xhp\">NUMBERVALUE</link></variable>"
+msgstr ""
+
+#. Ywca6
+#: func_numbervalue.xhp
+msgctxt ""
+"func_numbervalue.xhp\n"
+"par_id3145087\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_NUMBERVALUE\">Converts the string representation of a number into a locale-independent numeric value.</ahelp>"
+msgstr ""
+
+#. xfP9G
+#: func_numbervalue.xhp
+msgctxt ""
+"func_numbervalue.xhp\n"
+"par_id3149281\n"
+"help.text"
+msgid "The input text may be in a locale-dependent or other bespoke format."
+msgstr ""
+
+#. vVK9p
+#: func_numbervalue.xhp
+msgctxt ""
+"func_numbervalue.xhp\n"
+"par_id381625600941159\n"
+"help.text"
+msgid "The output number is formatted as a valid floating point value and shown using the current cell's number format."
+msgstr ""
+
+#. CdgXz
+#: func_numbervalue.xhp
+msgctxt ""
+"func_numbervalue.xhp\n"
+"par_id351625601754290\n"
+"help.text"
+msgid "Refer to the <link href=\"text/shared/01/05020300.xhp\" name=\"num_format_link\">Numbers / Format</link> help page to learn how to change the format of numbers in a cell."
+msgstr ""
+
+#. vEdwF
+#: func_numbervalue.xhp
+msgctxt ""
+"func_numbervalue.xhp\n"
+"par_id721625602228575\n"
+"help.text"
+msgid "NUMBERVALUE(Text[; Decimal Separator[; Group Separator]])"
+msgstr ""
+
+#. Y3A9n
+#: func_numbervalue.xhp
+msgctxt ""
+"func_numbervalue.xhp\n"
+"par_id3154819\n"
+"help.text"
+msgid "<emph>Text</emph> is a string that contains the number to be converted."
+msgstr ""
+
+#. gwZ7A
+#: func_numbervalue.xhp
+msgctxt ""
+"func_numbervalue.xhp\n"
+"par_id3154820\n"
+"help.text"
+msgid "<emph>Decimal Separator</emph> is a single character that specifies the decimal separator in <emph>Text</emph>. It can be omitted if <emph>Text</emph> does not include any decimal or group separators."
+msgstr ""
+
+#. KJ6WA
+#: func_numbervalue.xhp
+msgctxt ""
+"func_numbervalue.xhp\n"
+"par_id3154821\n"
+"help.text"
+msgid "<emph>Group Separator</emph> is a string that specifies the character(s) used as the group separator in <emph>Text</emph>. It can be omitted if <emph>Text</emph> does not include any group separators. The <emph>Decimal Separator</emph> character should not be used in <emph>Group Separator</emph>."
+msgstr ""
+
+#. yptHN
+#: func_numbervalue.xhp
+msgctxt ""
+"func_numbervalue.xhp\n"
+"par_id3155841\n"
+"help.text"
+msgid "<input>=NUMBERVALUE(\"1.234.567,89\"; \",\"; \".\")</input> returns 1234567.89 (considering en-US locale). The function removes the two group separators and changes the decimal separator from a comma to a full stop."
+msgstr ""
+
+#. UNiLM
+#: func_numbervalue.xhp
+msgctxt ""
+"func_numbervalue.xhp\n"
+"par_id721625603302860\n"
+"help.text"
+msgid "<input>=NUMBERVALUE(\"123·4\"; \"·\")</input> returns 123.4 (considering en-US locale). The function changes the decimal separator from a \"·\" to a full stop. No group separator is used in the supplied number and so the <emph>Group Separator</emph> argument is omitted."
+msgstr ""
+
+#. iGGwj
+#: func_numbervalue.xhp
+msgctxt ""
+"func_numbervalue.xhp\n"
+"par_id491625603415715\n"
+"help.text"
+msgid "<input>=NUMBERVALUE(\"123e12\")</input> returns 1.23E+14 (considering en-US locale). No decimal or group separators are used in the supplied number and so the <emph>Decimal Separator</emph> and <emph>Group Separator</emph> arguments are omitted."
+msgstr ""
+
+#. vTYDd
+#: func_numbervalue.xhp
+msgctxt ""
+"func_numbervalue.xhp\n"
+"par_id801625603497421\n"
+"help.text"
+msgid "<input>=NUMBERVALUE(\"1#!234#!567\"; \".\"; \"#!\")</input> returns 1234567 (considering en-US locale). Note that in this case the group separator is specified as a two-character string."
+msgstr ""
+
+#. 4sMd6
+#: func_numbervalue.xhp
+msgctxt ""
+"func_numbervalue.xhp\n"
+"par_id451626100385699\n"
+"help.text"
+msgid "Refer to the <link href=\"https://wiki.documentfoundation.org/Documentation/Calc_Functions/NUMBERVALUE\" name=\"NUMBERVALUE_Wiki\">NUMBERVALUE</link> wiki page for more details about this function."
+msgstr ""
+
+#. EJhfD
+#: func_opt_barrier.xhp
+msgctxt ""
+"func_opt_barrier.xhp\n"
+"tit\n"
+"help.text"
+msgid "Function OPT_BARRIER"
+msgstr ""
+
+#. 4HRGX
+#: func_opt_barrier.xhp
+msgctxt ""
+"func_opt_barrier.xhp\n"
+"bm_id511575065323638\n"
+"help.text"
+msgid "<bookmark_value>OPT_BARRIER function</bookmark_value>"
+msgstr ""
+
+#. KrCYn
+#: func_opt_barrier.xhp
+msgctxt ""
+"func_opt_barrier.xhp\n"
+"hd_id241575063871994\n"
+"help.text"
+msgid "<variable id=\"optbrarrierh1\"><link href=\"text/scalc/01/func_opt_barrier.xhp\" name=\"OPT_BARRIER\">OPT_BARRIER</link></variable>"
+msgstr ""
+
+#. uFKBs
+#: func_opt_barrier.xhp
+msgctxt ""
+"func_opt_barrier.xhp\n"
+"par_id121575063871995\n"
+"help.text"
+msgid "<variable id=\"variable name\"><ahelp hid=\".\">Returns the pricing for a barrier option, calculated using the Black-Scholes option pricing model.</ahelp></variable>"
+msgstr ""
+
+#. 3ky3t
+#: func_opt_barrier.xhp
+msgctxt ""
+"func_opt_barrier.xhp\n"
+"par_id371575067051846\n"
+"help.text"
+msgid "OPT_BARRIER(Spot; Volatility; Rate; Foreign Rate; Maturity; Strike; LowerBarrier; UpperBarrier; Rebate; PutCall; InOut; BarrierMonitoring [; Greek])"
+msgstr ""
+
+#. XEMff
+#: func_opt_barrier.xhp
+msgctxt ""
+"func_opt_barrier.xhp\n"
+"par_id681575073426941\n"
+"help.text"
+msgid "<emph>Strike</emph> is the strike price of the option and should be non-negative."
+msgstr ""
+
+#. 8tgWG
+#: func_opt_barrier.xhp
+msgctxt ""
+"func_opt_barrier.xhp\n"
+"par_id671575073495724\n"
+"help.text"
+msgid "<emph>Rebate</emph> is the amount of money to be paid at maturity if the barrier is hit."
+msgstr ""
+
+#. uAzky
+#: func_opt_barrier.xhp
+msgctxt ""
+"func_opt_barrier.xhp\n"
+"par_id691575073511191\n"
+"help.text"
+msgid "<variable id=\"optputcall\"><emph>Put or Call</emph> is a string that defines whether the option is a put (“p”) or a call (“c”).</variable>"
+msgstr ""
+
+#. PdCJb
+#: func_opt_barrier.xhp
+msgctxt ""
+"func_opt_barrier.xhp\n"
+"par_id651575073773761\n"
+"help.text"
+msgid "<input>=OPT_BARRIER(30;0.2;0.06;0;1;40;25;0;0;\"c\";\"o\";\"c\")</input> returns the value 0.4243."
+msgstr ""
+
+#. ABVQH
+#: func_opt_barrier.xhp
+msgctxt ""
+"func_opt_barrier.xhp\n"
+"par_id401575073777593\n"
+"help.text"
+msgid "<input>=OPT_BARRIER(50;0.4;0.05;0;0.5;65;0;80;0;\"p\";\"o\";\"c\";\"e\")</input> returns the value 10.1585."
+msgstr ""
+
+#. HWhRY
+#: func_opt_prob_hit.xhp
+msgctxt ""
+"func_opt_prob_hit.xhp\n"
+"tit\n"
+"help.text"
+msgid "Function OPT_PROB_HIT"
+msgstr ""
+
+#. 5Naq2
+#: func_opt_prob_hit.xhp
+msgctxt ""
+"func_opt_prob_hit.xhp\n"
+"bm_id961575074485125\n"
+"help.text"
+msgid "<bookmark_value>OPT_PROB_HIT function</bookmark_value>"
+msgstr ""
+
+#. jn8fF
+#: func_opt_prob_hit.xhp
+msgctxt ""
+"func_opt_prob_hit.xhp\n"
+"hd_id71575063908363\n"
+"help.text"
+msgid "<variable id=\"optprobhith1\"><link href=\"text/scalc/01/func_opt_prob_hit.xhp\" name=\"OPT_PROB_HIT\">OPT_PROB_HIT</link></variable>"
+msgstr ""
+
+#. fWecm
+#: func_opt_prob_hit.xhp
+msgctxt ""
+"func_opt_prob_hit.xhp\n"
+"par_id591575063908364\n"
+"help.text"
+msgid "<variable id=\"variable name\"><ahelp hid=\".\">Returns the probability that an asset hits a predetermined barrier price, assuming that the stock price can be modeled as a process S that follows the stochastic differential equation</ahelp></variable>, as follows."
+msgstr ""
+
+#. ZJBj2
+#: func_opt_prob_hit.xhp
+msgctxt ""
+"func_opt_prob_hit.xhp\n"
+"par_id21575078735992\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sc_func_opt01.svg\" id=\"img_id211575078735993\" width=\"197.38334px\" height=\"51.2125px\"><alt id=\"alt_id401575078735994\">OPT_PROB_HIT equation</alt></image>"
+msgstr ""
+
+#. FnaCP
+#: func_opt_prob_hit.xhp
+msgctxt ""
+"func_opt_prob_hit.xhp\n"
+"par_id821575074114118\n"
+"help.text"
+msgid "<literal>µ</literal> is the asset’s percentage drift, <literal>vol</literal> is the percentage volatility of the stock, and <literal>dW</literal> is a random sample drawn from a normal distribution with a zero mean. <literal>W</literal> is a Wiener process or Brownian motion."
+msgstr ""
+
+#. 9NRxu
+#: func_opt_prob_hit.xhp
+msgctxt ""
+"func_opt_prob_hit.xhp\n"
+"par_id211575074192954\n"
+"help.text"
+msgid "OPT_PROB_HIT(Spot; Volatility; Drift; Maturity; LowerBarrier; UpperBarrier)"
+msgstr ""
+
+#. XaA8K
+#: func_opt_prob_hit.xhp
+msgctxt ""
+"func_opt_prob_hit.xhp\n"
+"par_id901575074339820\n"
+"help.text"
+msgid "<variable id=\"optdrift\"><emph>Drift</emph> is the annual stock price percentage drift rate (µ in the above formula). The value is expressed as a decimal (for example, enter 15% as 0.15).</variable>"
+msgstr ""
+
+#. 6yrWk
+#: func_opt_prob_hit.xhp
+msgctxt ""
+"func_opt_prob_hit.xhp\n"
+"par_id681575073426941\n"
+"help.text"
+msgid "<variable id=\"optstrike\"><emph>Strike</emph> is the strike price of the option and should be non-negative.</variable>"
+msgstr ""
+
+#. mHW3F
+#: func_opt_prob_hit.xhp
+msgctxt ""
+"func_opt_prob_hit.xhp\n"
+"par_id971575074431070\n"
+"help.text"
+msgid "<input>=OPT_PROB_HIT(30;0.2;0.3;1;0;40)</input> returns the value 0.6119."
+msgstr ""
+
+#. 3EshE
+#: func_opt_prob_hit.xhp
+msgctxt ""
+"func_opt_prob_hit.xhp\n"
+"par_id171575074434932\n"
+"help.text"
+msgid "<input>=OPT_PROB_HIT(70;0.3;0.1;0.5;60;0)</input> returns the value 0.4239."
+msgstr ""
+
+#. RFprF
+#: func_opt_prob_inmoney.xhp
+msgctxt ""
+"func_opt_prob_inmoney.xhp\n"
+"tit\n"
+"help.text"
+msgid "Function OPT_PROB_INMONEY"
+msgstr ""
+
+#. QQBrZ
+#: func_opt_prob_inmoney.xhp
+msgctxt ""
+"func_opt_prob_inmoney.xhp\n"
+"bm_id961575065633373\n"
+"help.text"
+msgid "<bookmark_value>OPT_PROB_INMONEY function</bookmark_value>"
+msgstr ""
+
+#. kMBbw
+#: func_opt_prob_inmoney.xhp
+msgctxt ""
+"func_opt_prob_inmoney.xhp\n"
+"hd_id941575063929082\n"
+"help.text"
+msgid "<variable id=\"optprobinmoneyh1\"><link href=\"text/scalc/01/func_opt_prob_inmoney.xhp\" name=\"OPT_PROB_INMONEY\">OPT_PROB_INMONEY</link></variable>"
+msgstr ""
+
+#. QDryb
+#: func_opt_prob_inmoney.xhp
+msgctxt ""
+"func_opt_prob_inmoney.xhp\n"
+"par_id941575063929083\n"
+"help.text"
+msgid "<variable id=\"variable name\"><ahelp hid=\".\">Returns the probability that an asset will end up between two barrier levels at maturity, assuming that the stock price can be modeled as a process S that follows the stochastic differential equation</ahelp></variable>, as follows."
+msgstr ""
+
+#. 2GJsA
+#: func_opt_prob_inmoney.xhp
+msgctxt ""
+"func_opt_prob_inmoney.xhp\n"
+"par_id21575078735992\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sc_func_opt01.svg\" id=\"img_id211575078735993\" width=\"197.38334px\" height=\"51.2125px\"><alt id=\"alt_id401575078735994\">OPT_PROB_INMONEY equation</alt></image>"
+msgstr ""
+
+#. 7ja6D
+#: func_opt_prob_inmoney.xhp
+msgctxt ""
+"func_opt_prob_inmoney.xhp\n"
+"par_id941575074893788\n"
+"help.text"
+msgid "<literal>µ</literal> is the asset’s percentage drift, <literal>vol</literal> is the percentage volatility of the stock, and <literal>dW</literal> is a random sample drawn from a normal distribution with a zero mean. <literal>W</literal> is a Wiener process or Brownian motion."
+msgstr ""
+
+#. pMCin
+#: func_opt_prob_inmoney.xhp
+msgctxt ""
+"func_opt_prob_inmoney.xhp\n"
+"par_id241575075282150\n"
+"help.text"
+msgid "If the optional <emph>Strike</emph> and <emph>PutCall</emph> arguments are included, then"
+msgstr ""
+
+#. vxxYT
+#: func_opt_prob_inmoney.xhp
+msgctxt ""
+"func_opt_prob_inmoney.xhp\n"
+"par_id931575075314553\n"
+"help.text"
+msgid "For a call option, the function returns the probability that the asset will end up between <emph>Strike</emph> and <emph>UpperBarrier</emph>."
+msgstr ""
+
+#. UrAPw
+#: func_opt_prob_inmoney.xhp
+msgctxt ""
+"func_opt_prob_inmoney.xhp\n"
+"par_id531575075321659\n"
+"help.text"
+msgid "For a put option, the function returns the probability that the asset will end up between <emph>LowerBarrier</emph> and <emph>Strike</emph>."
+msgstr ""
+
+#. 9VazP
+#: func_opt_prob_inmoney.xhp
+msgctxt ""
+"func_opt_prob_inmoney.xhp\n"
+"par_id191575075304900\n"
+"help.text"
+msgid "The function ignores the possibility of knock-out before maturity."
+msgstr ""
+
+#. DHFtE
+#: func_opt_prob_inmoney.xhp
+msgctxt ""
+"func_opt_prob_inmoney.xhp\n"
+"par_id761575075027094\n"
+"help.text"
+msgid "OPT_PROB_INMONEY(Spot; Volatility; Drift; Maturity; LowerBarrier; UpperBarrier [; Strike [; PutCall]])"
+msgstr ""
+
+#. mE6CG
+#: func_opt_prob_inmoney.xhp
+msgctxt ""
+"func_opt_prob_inmoney.xhp\n"
+"par_id601575074993334\n"
+"help.text"
+msgid "<input>=OPT_PROB_INMONEY(30;0.2;0.1;1;0;50)</input> returns the value 0.9844."
+msgstr ""
+
+#. K7AED
+#: func_opt_prob_inmoney.xhp
+msgctxt ""
+"func_opt_prob_inmoney.xhp\n"
+"par_id261575074997216\n"
+"help.text"
+msgid "<input>=OPT_PROB_INMONEY(70;0.3;0.15;1;60;0;80;\"p\")</input> returns the value 0.3440."
+msgstr ""
+
+#. muQEH
+#: func_opt_touch.xhp
+msgctxt ""
+"func_opt_touch.xhp\n"
+"tit\n"
+"help.text"
+msgid "OPT_TOUCH"
+msgstr ""
+
+#. r3Awi
+#: func_opt_touch.xhp
+msgctxt ""
+"func_opt_touch.xhp\n"
+"bm_id951575065400504\n"
+"help.text"
+msgid "<bookmark_value>OPT_TOUCH function</bookmark_value>"
+msgstr ""
+
+#. DBPBG
+#: func_opt_touch.xhp
+msgctxt ""
+"func_opt_touch.xhp\n"
+"hd_id41575062825964\n"
+"help.text"
+msgid "<variable id=\"opttouchh1\"><link href=\"text/scalc/01/func_opt_touch.xhp\" name=\"function_opt_touch\">OPT_TOUCH</link></variable>"
+msgstr ""
+
+#. HwW6c
+#: func_opt_touch.xhp
+msgctxt ""
+"func_opt_touch.xhp\n"
+"par_id531575062825965\n"
+"help.text"
+msgid "<ahelp hid=\".\">Returns the pricing of a touch / no-touch option, calculated using the Black-Scholes option pricing model.</ahelp>"
+msgstr ""
+
+#. DE8qf
+#: func_opt_touch.xhp
+msgctxt ""
+"func_opt_touch.xhp\n"
+"par_id371575066515276\n"
+"help.text"
+msgid "For relevant background information, visit the <link href=\"https://en.wikipedia.org/wiki/Option_(finance)\" name=\"optionfinance\">Options (finance)</link> and <link href=\"https://en.wikipedia.org/wiki/Black–Scholes_model\" name=\"blackscholes\">Black-Scholes</link> model Wikipedia pages."
+msgstr ""
+
+#. 29Wsy
+#: func_opt_touch.xhp
+msgctxt ""
+"func_opt_touch.xhp\n"
+"par_id571575080642652\n"
+"help.text"
+msgid "Further information about touch / no-touch options may be found on many financial websites."
+msgstr ""
+
+#. V3nnz
+#: func_opt_touch.xhp
+msgctxt ""
+"func_opt_touch.xhp\n"
+"par_id151575063296819\n"
+"help.text"
+msgid "OPT_TOUCH(Spot; Volatility; Rate; ForeignRate; Maturity; LowerBarrier; UpperBarrier; ForeignDomestic; InOut; BarrierMonitoring [; Greek])"
+msgstr ""
+
+#. 6rD5u
+#: func_opt_touch.xhp
+msgctxt ""
+"func_opt_touch.xhp\n"
+"par_id321575066304659\n"
+"help.text"
+msgid "<variable id=\"optspot\"><emph>Spot</emph> is the price / value of the underlying asset and should be greater than 0.0.</variable>"
+msgstr ""
+
+#. CoALG
+#: func_opt_touch.xhp
+msgctxt ""
+"func_opt_touch.xhp\n"
+"par_id31575066315078\n"
+"help.text"
+msgid "<variable id=\"optvolat\"><emph>Volatility</emph> is the annual percentage volatility of the underlying asset expressed as a decimal (for example, enter 30% as 0.3). The value should be greater than 0.0.</variable>"
+msgstr ""
+
+#. iCEkw
+#: func_opt_touch.xhp
+msgctxt ""
+"func_opt_touch.xhp\n"
+"par_id681575066324254\n"
+"help.text"
+msgid "<variable id=\"optrate\"><emph>Rate</emph> is the continuously compounded interest rate. This is a percentage expressed as a decimal (for example, enter 40% as 0.4).</variable>"
+msgstr ""
+
+#. eoG8E
+#: func_opt_touch.xhp
+msgctxt ""
+"func_opt_touch.xhp\n"
+"par_id71575066333773\n"
+"help.text"
+msgid "<variable id=\"optfrate\"><emph>ForeignRate</emph> is the continuously compounded foreign interest rate. This is a percentage expressed as a decimal (for example, enter 50% as 0.5).</variable>"
+msgstr ""
+
+#. hzfJp
+#: func_opt_touch.xhp
+msgctxt ""
+"func_opt_touch.xhp\n"
+"par_id21575066338734\n"
+"help.text"
+msgid "<variable id=\"optmaturity\"><emph>Maturity</emph> is the time to maturity of the option, in years, and should be non-negative.</variable>"
+msgstr ""
+
+#. Gksbz
+#: func_opt_touch.xhp
+msgctxt ""
+"func_opt_touch.xhp\n"
+"par_id671575066343182\n"
+"help.text"
+msgid "<variable id=\"optlowbar\"><emph>LowerBarrier</emph> is the predetermined lower barrier price; set to zero for no lower barrier.</variable>"
+msgstr ""
+
+#. KDTDW
+#: func_opt_touch.xhp
+msgctxt ""
+"func_opt_touch.xhp\n"
+"par_id301575066347357\n"
+"help.text"
+msgid "<variable id=\"optupbar\"><emph>UpperBarrier</emph> is the predetermined upper barrier price; set to zero for no upper barrier.</variable>"
+msgstr ""
+
+#. oVmg7
+#: func_opt_touch.xhp
+msgctxt ""
+"func_opt_touch.xhp\n"
+"par_id561575066355924\n"
+"help.text"
+msgid "<variable id=\"optdomestic\"><emph>ForeignDomestic</emph> is a string that defines whether the option pays domestic (“d”) or foreign (“f”) currency.</variable>"
+msgstr ""
+
+#. zTRA2
+#: func_opt_touch.xhp
+msgctxt ""
+"func_opt_touch.xhp\n"
+"par_id251575066360596\n"
+"help.text"
+msgid "<variable id=\"optinout\"><emph>InOut</emph> is a string that defines whether the option is knock-in (“i”) or knock-out (“o”).</variable>"
+msgstr ""
+
+#. AsXAj
+#: func_opt_touch.xhp
+msgctxt ""
+"func_opt_touch.xhp\n"
+"par_id861575066366861\n"
+"help.text"
+msgid "<variable id=\"optbarmon\"><emph>BarrierMonitoring</emph> is a string that defines whether the barrier is monitored continuously (“c”) or only at the end / maturity (“e”).</variable>"
+msgstr ""
+
+#. xyF8R
+#: func_opt_touch.xhp
+msgctxt ""
+"func_opt_touch.xhp\n"
+"par_id721575066374340\n"
+"help.text"
+msgid "<emph>Greek</emph> (optional) is a string argument. If omitted or set to “value”, “v”, “price”, or “p”, then the function simply returns the option price. If another valid string is entered, the function returns price sensitivities (Greeks) to one of the input parameters. The valid options in this case are as follows."
+msgstr ""
+
+#. NhW28
+#: func_opt_touch.xhp
+msgctxt ""
+"func_opt_touch.xhp\n"
+"par_id951575063536153\n"
+"help.text"
+msgid "“delta” or “d”."
+msgstr ""
+
+#. DVKPe
+#: func_opt_touch.xhp
+msgctxt ""
+"func_opt_touch.xhp\n"
+"par_id361575063554232\n"
+"help.text"
+msgid "“gamma” or “g”."
+msgstr ""
+
+#. mY7eD
+#: func_opt_touch.xhp
+msgctxt ""
+"func_opt_touch.xhp\n"
+"par_id961575063563017\n"
+"help.text"
+msgid "“theta” or “t”."
+msgstr ""
+
+#. 7BNpN
+#: func_opt_touch.xhp
+msgctxt ""
+"func_opt_touch.xhp\n"
+"par_id971575063570632\n"
+"help.text"
+msgid "“vega” or “e”."
+msgstr ""
+
+#. F4AQk
+#: func_opt_touch.xhp
+msgctxt ""
+"func_opt_touch.xhp\n"
+"par_id631575063580705\n"
+"help.text"
+msgid "“volga” or “o”."
+msgstr ""
+
+#. DcBfK
+#: func_opt_touch.xhp
+msgctxt ""
+"func_opt_touch.xhp\n"
+"par_id981575063594505\n"
+"help.text"
+msgid "“vanna” or “a”."
+msgstr ""
+
+#. vjCq4
+#: func_opt_touch.xhp
+msgctxt ""
+"func_opt_touch.xhp\n"
+"par_id191575063598656\n"
+"help.text"
+msgid "“rho” or “r”."
+msgstr ""
+
+#. NGCqj
+#: func_opt_touch.xhp
+msgctxt ""
+"func_opt_touch.xhp\n"
+"par_id751575063602288\n"
+"help.text"
+msgid "“rhof” or “f”."
+msgstr ""
+
+#. U7QqM
+#: func_opt_touch.xhp
+msgctxt ""
+"func_opt_touch.xhp\n"
+"par_id181575063666675\n"
+"help.text"
+msgid "<input>=OPT_TOUCH(50;0.25;0.05;0;1;0;55;\"d\";\"i\";\"c\")</input> returns the value 0.6876."
+msgstr ""
+
+#. 8JFD4
+#: func_opt_touch.xhp
+msgctxt ""
+"func_opt_touch.xhp\n"
+"par_id811575063677250\n"
+"help.text"
+msgid "<input>=OPT_TOUCH(80;0.2;0.05;0;0.5;60;0;\"f\";\"o\";\"c\";\"r\")</input> returns the value 15.5516."
+msgstr ""
+
+#. ychjG
+#: func_opt_touch.xhp
+msgctxt ""
+"func_opt_touch.xhp\n"
+"par_id121575125779535\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp\">Financial Functions Part One</link>"
+msgstr ""
+
+#. aX7LC
+#: func_opt_touch.xhp
+msgctxt ""
+"func_opt_touch.xhp\n"
+"par_id251575125873714\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060119.xhp\">Financial Functions Part Two</link>"
+msgstr ""
+
+#. Q7SFh
+#: func_opt_touch.xhp
+msgctxt ""
+"func_opt_touch.xhp\n"
+"par_id191575125878595\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp\">Financial Functions Part Three</link>"
+msgstr ""
+
+#. zr5G3
+#: func_rawsubtract.xhp
+msgctxt ""
+"func_rawsubtract.xhp\n"
+"tit\n"
+"help.text"
+msgid "RAWSUBTRACT function"
+msgstr ""
+
+#. JTmpK
+#: 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 ""
+
+#. e3VEx
+#: func_rawsubtract.xhp
+msgctxt ""
+"func_rawsubtract.xhp\n"
+"hd_2016112109231\n"
+"help.text"
+msgid "<variable id=\"rawsubtracth1\"><link href=\"text/scalc/01/func_rawsubtract.xhp\">RAWSUBTRACT</link></variable>"
+msgstr ""
+
+#. CoCx7
+#: 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 ""
+
+#. DZTdg
+#: func_rawsubtract.xhp
+msgctxt ""
+"func_rawsubtract.xhp\n"
+"par_2016112109233\n"
+"help.text"
+msgid "RAWSUBTRACT(Minuend; Subtrahend 1[; Subtrahend 2][; … ;[ Subtrahend 254]])"
+msgstr ""
+
+#. 7mBFv
+#: func_rawsubtract.xhp
+msgctxt ""
+"func_rawsubtract.xhp\n"
+"par_2016112109234\n"
+"help.text"
+msgid "<emph>Minuend</emph> is a number or a reference to a cell containing a number."
+msgstr ""
+
+#. nFADC
+#: func_rawsubtract.xhp
+msgctxt ""
+"func_rawsubtract.xhp\n"
+"par_id241585352178687\n"
+"help.text"
+msgid "<emph>Subtrahend 1[; Subtrahend 2][; ... ;[ Subtrahend 254]]</emph> are numbers or references to cells containing numbers."
+msgstr ""
+
+#. 7ciz5
+#: func_rawsubtract.xhp
+msgctxt ""
+"func_rawsubtract.xhp\n"
+"par_2016112109235\n"
+"help.text"
+msgid "The function should be called with at least two parameters."
+msgstr ""
+
+#. CA68H
+#: func_rawsubtract.xhp
+msgctxt ""
+"func_rawsubtract.xhp\n"
+"par_id271624030692893\n"
+"help.text"
+msgid "RAWSUBTRACT() processes arguments from left to right. For example, RAWSUBTRACT(1;2;3;4) calculates 1-2-3-4 or ((1-2)-3)-4 in \"natural\" order."
+msgstr ""
+
+#. hANRQ
+#: func_rawsubtract.xhp
+msgctxt ""
+"func_rawsubtract.xhp\n"
+"par_2016112109236\n"
+"help.text"
+msgid "<input>=RAWSUBTRACT(0.987654321098765, 0.9876543210987)</input> returns 6.53921361504217E-14"
+msgstr ""
+
+#. bgohX
+#: func_rawsubtract.xhp
+msgctxt ""
+"func_rawsubtract.xhp\n"
+"par_2016112109237\n"
+"help.text"
+msgid "<input>=RAWSUBTRACT(0.987654321098765)</input> returns Err:511 (Missing variable) because RAWSUBTRACT requires a minimum of two numbers."
+msgstr ""
+
+#. d9DP3
+#: func_regex.xhp
+msgctxt ""
+"func_regex.xhp\n"
+"tit\n"
+"help.text"
+msgid "REGEX Function"
+msgstr ""
+
+#. yZJB8
+#: func_regex.xhp
+msgctxt ""
+"func_regex.xhp\n"
+"bm_id831542233029549\n"
+"help.text"
+msgid "<bookmark_value>REGEX function</bookmark_value> <bookmark_value>regular expressions;extracting in spreadsheets</bookmark_value> <bookmark_value>regular expressions;REGEX function</bookmark_value>"
+msgstr ""
+
+#. SUWdW
+#: func_regex.xhp
+msgctxt ""
+"func_regex.xhp\n"
+"hd_id961542230672100\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/func_regex.xhp\" name=\"function REGEX\">REGEX</link>"
+msgstr ""
+
+#. uTy7w
+#: func_regex.xhp
+msgctxt ""
+"func_regex.xhp\n"
+"par_id541542230672101\n"
+"help.text"
+msgid "<variable id=\"func_regex_desc\"><ahelp hid=\".\">Matches and extracts or optionally replaces text using regular expressions.</ahelp></variable>"
+msgstr ""
+
+#. k7Cxh
+#: func_regex.xhp
+msgctxt ""
+"func_regex.xhp\n"
+"par_id701542231253817\n"
+"help.text"
+msgid "REGEX( Text ; Expression [ ; [ Replacement ] [ ; Flags|Occurrence ] ] )"
+msgstr ""
+
+#. VbMmQ
+#: func_regex.xhp
+msgctxt ""
+"func_regex.xhp\n"
+"par_id621542232197446\n"
+"help.text"
+msgid "<emph>Text</emph>: A text or reference to a cell where the regular expression is to be applied."
+msgstr ""
+
+#. me5DX
+#: func_regex.xhp
+msgctxt ""
+"func_regex.xhp\n"
+"par_id211542232209275\n"
+"help.text"
+msgid "<emph>Expression</emph>: A text representing the regular expression, using <link href=\"https://unicode-org.github.io/icu/userguide/strings/regexp.html#regular-expression-metacharacters\" name=\"ICU REGEXP\">ICU regular expressions</link>. If there is no match and <emph>Replacement</emph> is not given, #N/A is returned."
+msgstr ""
+
+#. ZBTYi
+#: func_regex.xhp
+msgctxt ""
+"func_regex.xhp\n"
+"par_id581542232755604\n"
+"help.text"
+msgid "<emph>Replacement</emph>: Optional. The replacement text and references to capture groups. If there is no match, <emph>Text</emph> is returned unmodified."
+msgstr ""
+
+#. V55JH
+#: func_regex.xhp
+msgctxt ""
+"func_regex.xhp\n"
+"par_id421542232246840\n"
+"help.text"
+msgid "<emph>Flags</emph>: Optional. \"g\" replaces all matches of <emph>Expression</emph> in <emph>Text</emph>, not extracted. If there is no match, <emph>Text</emph> is returned unmodified."
+msgstr ""
+
+#. GPGFT
+#: func_regex.xhp
+msgctxt ""
+"func_regex.xhp\n"
+"par_id421542232246841\n"
+"help.text"
+msgid "<emph>Occurrence</emph>: Optional. Number to indicate which match of <emph>Expression</emph> in <emph>Text</emph> is to be extracted or replaced. If there is no match and <emph>Replacement</emph> is not given, #N/A is returned. If there is no match and <emph>Replacement</emph> is given, <emph>Text</emph> is returned unmodified. If <emph>Occurrence</emph> is 0, <emph>Text</emph> is returned unmodified."
+msgstr ""
+
+#. AFjHj
+#: func_regex.xhp
+msgctxt ""
+"func_regex.xhp\n"
+"par_id371542291684176\n"
+"help.text"
+msgid "<item type=\"input\">=REGEX(\"123456ABCDEF\";\"[:digit:]\";\"Z\")</item> returns \"Z23456ABCDEF\", where the first match of a digit is replaced by \"Z\"."
+msgstr ""
+
+#. aDqow
+#: func_regex.xhp
+msgctxt ""
+"func_regex.xhp\n"
+"par_id891542291697194\n"
+"help.text"
+msgid "<item type=\"input\">=REGEX(\"123456ABCDEF\";\"[:digit:]\";\"Z\";\"g\")</item> returns \"ZZZZZZABCDEF\", where all digits were replaced by \"Z\"."
+msgstr ""
+
+#. gP9wd
+#: func_regex.xhp
+msgctxt ""
+"func_regex.xhp\n"
+"par_id21542291705695\n"
+"help.text"
+msgid "<item type=\"input\">=REGEX(\"123456ABCDEF\";\"[126]\";\"\";\"g\")</item> returns \"345ABCDEF\", where any occurrence of \"1\", \"2\" or \"6\" is replaced by the empty string, thus deleted."
+msgstr ""
+
+#. ZjpCF
+#: func_regex.xhp
+msgctxt ""
+"func_regex.xhp\n"
+"par_id371542291684177\n"
+"help.text"
+msgid "<item type=\"input\">=REGEX(\"axbxcxd\";\".x\";;2)</item> returns \"bx\", the second match of \".x\"."
+msgstr ""
+
+#. UBU7G
+#: func_regex.xhp
+msgctxt ""
+"func_regex.xhp\n"
+"par_id371542291684178\n"
+"help.text"
+msgid "<item type=\"input\">=REGEX(\"axbxcxd\";\"(.)x\";\"$1y\";2)</item> returns \"axbycxd\", the second match of \"(.)x\" (i.e. \"bx\") replaced with the captured group of one character (i.e. \"b\") followed by \"y\"."
+msgstr ""
+
+#. ucfgh
+#: func_regex.xhp
+msgctxt ""
+"func_regex.xhp\n"
+"par_id711542233602553\n"
+"help.text"
+msgid "<link href=\"text/shared/01/02100001.xhp\" name=\"regex lists\">List of regular expressions</link>"
+msgstr ""
+
+#. 2AHRN
+#: func_regex.xhp
+msgctxt ""
+"func_regex.xhp\n"
+"par_id431542233650614\n"
+"help.text"
+msgid "<link href=\"https://unicode-org.github.io/icu/userguide/strings/regexp.html\" name=\"ICU REGEXP\">ICU regular expressions</link>"
+msgstr ""
+
+#. B64FM
+#: func_replaceb.xhp
+msgctxt ""
+"func_replaceb.xhp\n"
+"tit\n"
+"help.text"
+msgid "REPLACEB Function"
+msgstr ""
+
+#. GfVed
+#: func_replaceb.xhp
+msgctxt ""
+"func_replaceb.xhp\n"
+"bm_id141573508995071\n"
+"help.text"
+msgid "<bookmark_value>REPLACEB Function</bookmark_value> <bookmark_value>replace text;REPLACEB Function</bookmark_value>"
+msgstr ""
+
+#. 5MutE
+#: func_replaceb.xhp
+msgctxt ""
+"func_replaceb.xhp\n"
+"hd_id771573508637966\n"
+"help.text"
+msgid "<variable id=\"replaceb\"><link href=\"text/scalc/01/func_replaceb.xhp\" name=\"replaceb\">REPLACEB</link></variable>"
+msgstr ""
+
+#. djAL7
+#: func_replaceb.xhp
+msgctxt ""
+"func_replaceb.xhp\n"
+"par_id831573508637970\n"
+"help.text"
+msgid "<variable id=\"variable name\"><ahelp hid=\".\">Returns text where an old text is replaced with a new text, using byte positions.</ahelp></variable>"
+msgstr ""
+
+#. Fd4SC
+#: func_replaceb.xhp
+msgctxt ""
+"func_replaceb.xhp\n"
+"par_id701542231253817\n"
+"help.text"
+msgid "REPLACEB( Text ; Position ; Length ; NewText )"
+msgstr ""
+
+#. uBLSC
+#: func_replaceb.xhp
+msgctxt ""
+"func_replaceb.xhp\n"
+"par_id331573510857418\n"
+"help.text"
+msgid "<emph>Text</emph>: A text expression or reference to a cell containing a text expression in which the bytes are to be replaced."
+msgstr ""
+
+#. 9a6mz
+#: func_replaceb.xhp
+msgctxt ""
+"func_replaceb.xhp\n"
+"par_id431573510862075\n"
+"help.text"
+msgid "<emph>Position</emph>: the byte position from which text is to be replaced."
+msgstr ""
+
+#. AsHs8
+#: func_replaceb.xhp
+msgctxt ""
+"func_replaceb.xhp\n"
+"par_id481573510866260\n"
+"help.text"
+msgid "<emph>Length</emph>: the number of bytes to be replaced."
+msgstr ""
+
+#. UuACG
+#: func_replaceb.xhp
+msgctxt ""
+"func_replaceb.xhp\n"
+"par_id911573510871412\n"
+"help.text"
+msgid "<emph>NewText</emph>: the text to be inserted."
+msgstr ""
+
+#. QH3SH
+#: func_replaceb.xhp
+msgctxt ""
+"func_replaceb.xhp\n"
+"par_id431573515742206\n"
+"help.text"
+msgid "<input>=REPLACEB(\"ᄩᄔᄕᄜᄝᄞᄠᄢᄣᄫᄬᄭᄮᄯᄲᄶ\";4;1;\"ab\")</input> returns \"ᄩ abᄕᄜᄝᄞᄠᄢᄣᄫᄬᄭᄮᄯᄲᄶ\" ."
+msgstr ""
+
+#. zzieb
+#: func_replaceb.xhp
+msgctxt ""
+"func_replaceb.xhp\n"
+"par_id721626381053212\n"
+"help.text"
+msgid "Refer to the <link href=\"https://wiki.documentfoundation.org/Documentation/Calc_Functions/REPLACEB\" name=\"REPLACEB_Wiki\">REPLACEB</link> wiki page for more details about this function."
+msgstr ""
+
+#. FuCCt
+#: func_roman.xhp
+msgctxt ""
+"func_roman.xhp\n"
+"tit\n"
+"help.text"
+msgid "ROMAN Function"
+msgstr ""
+
+#. JqcvP
+#: func_roman.xhp
+msgctxt ""
+"func_roman.xhp\n"
+"bm_id831542233029549\n"
+"help.text"
+msgid "<bookmark_value>ROMAN function</bookmark_value> <bookmark_value>text functions;convert to roman numbers</bookmark_value>"
+msgstr ""
+
+#. uXEPr
+#: func_roman.xhp
+msgctxt ""
+"func_roman.xhp\n"
+"hd_id881628776094597\n"
+"help.text"
+msgid "<variable id=\"Roman_h1\"><link href=\"text/scalc/01/func_roman.xhp\" name=\"function ROMAN\">ROMAN</link></variable>"
+msgstr ""
+
+#. pdMgk
+#: func_roman.xhp
+msgctxt ""
+"func_roman.xhp\n"
+"par_id541542230672101\n"
+"help.text"
+msgid "<variable id=\"func_roman_desc\"><ahelp hid=\".\">Converts a number into a Roman numeral. The value range must be between 0 and 3999. A simplification mode can be specified in the range from 0 to 4.</ahelp></variable>"
+msgstr ""
+
+#. tRsoC
+#: func_roman.xhp
+msgctxt ""
+"func_roman.xhp\n"
+"par_id701542231253817\n"
+"help.text"
+msgid "<input>ROMAN(Number [; Mode])</input>"
+msgstr ""
+
+#. rz4bH
+#: func_roman.xhp
+msgctxt ""
+"func_roman.xhp\n"
+"par_id621542232197446\n"
+"help.text"
+msgid "<emph>Number</emph>: the number that is to be converted into a Roman numeral."
+msgstr ""
+
+#. bfvWL
+#: func_roman.xhp
+msgctxt ""
+"func_roman.xhp\n"
+"par_id621542232197337\n"
+"help.text"
+msgid "<emph>Mode</emph>: optional value ranging between 0 to 4 that indicates the degree of simplification to be used in the conversion. The higher the value, the greater is the simplification of the Roman number."
+msgstr ""
+
+#. BBUCq
+#: func_roman.xhp
+msgctxt ""
+"func_roman.xhp\n"
+"par_id451628776707264\n"
+"help.text"
+msgid "<input>=ROMAN(999)</input> returns \"CMXCIX\" (uses simplification mode equal to zero, which is the default)."
+msgstr ""
+
+#. mBktA
+#: func_roman.xhp
+msgctxt ""
+"func_roman.xhp\n"
+"par_id101628778036375\n"
+"help.text"
+msgid "<input>=ROMAN(999;0)</input> returns \"CMXCIX\"."
+msgstr ""
+
+#. fGqPj
+#: func_roman.xhp
+msgctxt ""
+"func_roman.xhp\n"
+"par_id101628778036134\n"
+"help.text"
+msgid "<input>=ROMAN(999;1)</input> returns \"LMVLIV\"."
+msgstr ""
+
+#. qBbFo
+#: func_roman.xhp
+msgctxt ""
+"func_roman.xhp\n"
+"par_id101628778036278\n"
+"help.text"
+msgid "<input>=ROMAN(999;2)</input> returns \"XMIX\"."
+msgstr ""
+
+#. AY5jP
+#: func_roman.xhp
+msgctxt ""
+"func_roman.xhp\n"
+"par_id101628778036364\n"
+"help.text"
+msgid "<input>=ROMAN(999;3)</input> returns \"VMIV\"."
+msgstr ""
+
+#. B2aqT
+#: func_roman.xhp
+msgctxt ""
+"func_roman.xhp\n"
+"par_id101628778036008\n"
+"help.text"
+msgid "<input>=ROMAN(999;4)</input> returns \"IM\"."
+msgstr ""
+
+#. CBuwx
+#: func_roman.xhp
+msgctxt ""
+"func_roman.xhp\n"
+"par_id101628778036019\n"
+"help.text"
+msgid "<input>=ROMAN(0)</input> returns \"\" (empty text)."
+msgstr ""
+
+#. aU68a
+#: func_rounddown.xhp
+msgctxt ""
+"func_rounddown.xhp\n"
+"tit\n"
+"help.text"
+msgid "ROUNDDOWN function"
+msgstr ""
+
+#. riRPe
+#: func_rounddown.xhp
+msgctxt ""
+"func_rounddown.xhp\n"
+"bm_id3156384\n"
+"help.text"
+msgid "<bookmark_value>ROUNDDOWN function</bookmark_value> <bookmark_value>numbers;rounding down</bookmark_value>"
+msgstr ""
+
+#. sroq5
+#: func_rounddown.xhp
+msgctxt ""
+"func_rounddown.xhp\n"
+"hd_id601641846107898\n"
+"help.text"
+msgid "<variable id=\"rounddown_h1\"><link href=\"text/scalc/01/func_rounddown.xhp\" name=\"rounddown_link\">ROUNDDOWN function</link></variable>"
+msgstr ""
+
+#. dFaB6
+#: func_rounddown.xhp
+msgctxt ""
+"func_rounddown.xhp\n"
+"par_id841641927277474\n"
+"help.text"
+msgid "Rounds down a number while keeping a specified number of decimal digits."
+msgstr ""
+
+#. gchGZ
+#: func_rounddown.xhp
+msgctxt ""
+"func_rounddown.xhp\n"
+"par_id701642530512560\n"
+"help.text"
+msgid "This function is equivalent to the <link href=\"text/scalc/01/func_trunc.xhp\" name=\"TRUNC_link\">TRUNC function</link>."
+msgstr ""
+
+#. soLKp
+#: func_rounddown.xhp
+msgctxt ""
+"func_rounddown.xhp\n"
+"par_id341641927560587\n"
+"help.text"
+msgid "<input>ROUNDDOWN(Number [; Count])</input>"
+msgstr ""
+
+#. zMhAG
+#: func_rounddown.xhp
+msgctxt ""
+"func_rounddown.xhp\n"
+"par_id11641927688319\n"
+"help.text"
+msgid "<emph>Number:</emph> The number to be rounded down."
+msgstr ""
+
+#. CkVAE
+#: func_rounddown.xhp
+msgctxt ""
+"func_rounddown.xhp\n"
+"par_id861641927715672\n"
+"help.text"
+msgid "<emph>Count:</emph> Optional parameter that defines the number of decimal places to be kept. The default value is 0 (zero)."
+msgstr ""
+
+#. rJEFs
+#: func_rounddown.xhp
+msgctxt ""
+"func_rounddown.xhp\n"
+"par_id911641928545976\n"
+"help.text"
+msgid "Use negative values for <emph>Count</emph> to round the integer part of the original <emph>Number</emph>. For example, -1 will round down the first integer number before the decimal separator, -2 will round down the two integer numbers before the decimal separator, and so forth."
+msgstr ""
+
+#. GFCDG
+#: func_rounddown.xhp
+msgctxt ""
+"func_rounddown.xhp\n"
+"par_id181641929609906\n"
+"help.text"
+msgid "In %PRODUCTNAME, the <emph>Count</emph> parameter is optional, whereas in Microsoft Excel this parameter is mandatory. When an ODS file contains a call to ROUNDDOWN without the <emph>Count</emph> parameter and the file is exported to XLS or XLSX formats, the missing argument will automatically be added with value zero to maintain compatibility."
+msgstr ""
+
+#. BCmT8
+#: func_rounddown.xhp
+msgctxt ""
+"func_rounddown.xhp\n"
+"par_id901641928192870\n"
+"help.text"
+msgid "<input>=ROUNDDOWN(21.89)</input> returns 21. Note that this example uses the default value for <emph>Count</emph> which is 0."
+msgstr ""
+
+#. aGJYK
+#: func_rounddown.xhp
+msgctxt ""
+"func_rounddown.xhp\n"
+"par_id901641928192110\n"
+"help.text"
+msgid "<input>=ROUNDDOWN(103.37,1)</input> returns 103.3."
+msgstr ""
+
+#. bzN7A
+#: func_rounddown.xhp
+msgctxt ""
+"func_rounddown.xhp\n"
+"par_id171641928456743\n"
+"help.text"
+msgid "<input>=ROUNDDOWN(0.664,2)</input> returns 0.66."
+msgstr ""
+
+#. e4fx9
+#: func_rounddown.xhp
+msgctxt ""
+"func_rounddown.xhp\n"
+"par_id641641928712287\n"
+"help.text"
+msgid "<input>=ROUNDDOWN(214.2,-1)</input> returns 210. Note the negative value for <emph>Count</emph>, which causes the first integer value before the decimal separator to be rounded towards zero."
+msgstr ""
+
+#. E7heY
+#: func_roundsig.xhp
+msgctxt ""
+"func_roundsig.xhp\n"
+"tit\n"
+"help.text"
+msgid "ROUNDSIG Function"
+msgstr ""
+
+#. XV5Md
+#: func_roundsig.xhp
+msgctxt ""
+"func_roundsig.xhp\n"
+"bm_id151519154954070\n"
+"help.text"
+msgid "<bookmark_value>ROUNDSIG Function</bookmark_value>"
+msgstr ""
+
+#. UCpWh
+#: func_roundsig.xhp
+msgctxt ""
+"func_roundsig.xhp\n"
+"hd_id351519154702177\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/func_roundsig.xhp\" name=\"function roundsig\">ROUNDSIG</link>"
+msgstr ""
+
+#. jJKBA
+#: func_roundsig.xhp
+msgctxt ""
+"func_roundsig.xhp\n"
+"par_id921519154702177\n"
+"help.text"
+msgid "<variable id=\"roundsig\"><ahelp hid=\"HID_FUNC_ROUNDSIG\">Returns a number rounded to a specified number of significant decimal digits of its normalized floating point notation.</ahelp></variable>"
+msgstr ""
+
+#. 3EaJu
+#: func_roundsig.xhp
+msgctxt ""
+"func_roundsig.xhp\n"
+"par_id291519155534115\n"
+"help.text"
+msgid "ROUNDSIG( Value; Digits )"
+msgstr ""
+
+#. BBtjx
+#: func_roundsig.xhp
+msgctxt ""
+"func_roundsig.xhp\n"
+"par_id51519155217204\n"
+"help.text"
+msgid "<emph>Value</emph>: the number to be rounded."
+msgstr ""
+
+#. cKLrn
+#: func_roundsig.xhp
+msgctxt ""
+"func_roundsig.xhp\n"
+"par_id321519155209912\n"
+"help.text"
+msgid "<emph>Digits</emph>: the number of decimal places to round."
+msgstr ""
+
+#. ZuCEG
+#: func_roundsig.xhp
+msgctxt ""
+"func_roundsig.xhp\n"
+"par_id371519155264297\n"
+"help.text"
+msgid "<emph>Digits</emph> must be an integer greater than 0."
+msgstr ""
+
+#. FRBcJ
+#: func_roundsig.xhp
+msgctxt ""
+"func_roundsig.xhp\n"
+"par_id691519155470333\n"
+"help.text"
+msgid "<item type=\"input\">=ROUNDSIG(123.456789; 5)</item> returns 123.46."
+msgstr ""
+
+#. 23DRM
+#: func_roundsig.xhp
+msgctxt ""
+"func_roundsig.xhp\n"
+"par_id821519155475673\n"
+"help.text"
+msgid "<item type=\"input\">=ROUNDSIG(0.000123456789; 5)</item> returns 0.00012346"
+msgstr ""
+
+#. Gmu9z
+#: func_roundsig.xhp
+msgctxt ""
+"func_roundsig.xhp\n"
+"par_id381519155481234\n"
+"help.text"
+msgid "<item type=\"input\">=ROUNDSIG(123456789012345; 2)</item> returns 1.2E14"
+msgstr ""
+
+#. CDGCR
+#: func_roundsig.xhp
+msgctxt ""
+"func_roundsig.xhp\n"
+"par_id231519155486155\n"
+"help.text"
+msgid "<item type=\"input\">=ROUNDSIG(123456789; 4)</item> returns 123500000 or 123.5E6"
+msgstr ""
+
+#. h4NB2
+#: func_roundsig.xhp
+msgctxt ""
+"func_roundsig.xhp\n"
+"par_id51519156941987\n"
+"help.text"
+msgid "See also <link href=\"text/scalc/01/04060106.xhp#Section21\" name=\"ROUND function\">ROUND</link>, <link href=\"text/scalc/01/04060106.xhp#Section7\" name=\"MROUND function\">MROUND</link>, <link href=\"text/scalc/01/04060106.xhp#Section19\" name=\"ROUNDUP function\">ROUNDUP</link>, <link href=\"text/scalc/01/04060106.xhp#Section20\" name=\"ROUNDDOWN function\">ROUNDDOWN</link>."
+msgstr ""
+
+#. hkbrZ
+#: func_searchb.xhp
+msgctxt ""
+"func_searchb.xhp\n"
+"tit\n"
+"help.text"
+msgid "SEARCHB Function"
+msgstr ""
+
+#. ennrh
+#: func_searchb.xhp
+msgctxt ""
+"func_searchb.xhp\n"
+"bm_id141573508995071\n"
+"help.text"
+msgid "<bookmark_value>SEARCHB Function</bookmark_value> <bookmark_value>search text;SEARCHB Function</bookmark_value>"
+msgstr ""
+
+#. AXnND
+#: func_searchb.xhp
+msgctxt ""
+"func_searchb.xhp\n"
+"hd_id771573508637966\n"
+"help.text"
+msgid "<variable id=\"searchb\"><link href=\"text/scalc/01/func_searchb.xhp\" name=\"searchb\">SEARCHB</link></variable>"
+msgstr ""
+
+#. TySAy
+#: func_searchb.xhp
+msgctxt ""
+"func_searchb.xhp\n"
+"par_id831573508637970\n"
+"help.text"
+msgid "<variable id=\"variable name\"><ahelp hid=\".\">Returns the starting position of a given text, using byte positions (not case sensitive).</ahelp></variable>"
+msgstr ""
+
+#. zQHHs
+#: func_searchb.xhp
+msgctxt ""
+"func_searchb.xhp\n"
+"par_id531573516878780\n"
+"help.text"
+msgid "SEARCHB(Find Text; Text [; Position])"
+msgstr ""
+
+#. 6Pmbf
+#: func_searchb.xhp
+msgctxt ""
+"func_searchb.xhp\n"
+"par_id241573517292388\n"
+"help.text"
+msgid "<emph>Find Text</emph>: The text or text expression to be found."
+msgstr ""
+
+#. ovdFE
+#: func_searchb.xhp
+msgctxt ""
+"func_searchb.xhp\n"
+"par_id991573517299918\n"
+"help.text"
+msgid "<emph>Text</emph>: the text in which the search is to be made."
+msgstr ""
+
+#. oDk8C
+#: func_searchb.xhp
+msgctxt ""
+"func_searchb.xhp\n"
+"par_id521573517305077\n"
+"help.text"
+msgid "<emph>Position</emph>: The position in the text where the search starts."
+msgstr ""
+
+#. 2E7js
+#: func_searchb.xhp
+msgctxt ""
+"func_searchb.xhp\n"
+"par_id561573517310749\n"
+"help.text"
+msgid "<input>=SEARCHB(\"ᄫᄬ\";\"ᄩᄔᄕᄜᄝᄞᄠgᄢᄣᄫᄬᄭᄮᄯᄲᄶ\";17)</input> returns 20."
+msgstr ""
+
+#. Mv5R9
+#: func_second.xhp
+msgctxt ""
+"func_second.xhp\n"
+"tit\n"
+"help.text"
+msgid "SECOND"
+msgstr ""
+
+#. peiVF
+#: func_second.xhp
+msgctxt ""
+"func_second.xhp\n"
+"bm_id3159390\n"
+"help.text"
+msgid "<bookmark_value>SECOND function</bookmark_value>"
+msgstr ""
+
+#. YBYRJ
+#: func_second.xhp
+msgctxt ""
+"func_second.xhp\n"
+"hd_id3159390\n"
+"help.text"
+msgid "<variable id=\"second\"><link href=\"text/scalc/01/func_second.xhp\">SECOND</link></variable>"
+msgstr ""
+
+#. cKTfS
+#: func_second.xhp
+msgctxt ""
+"func_second.xhp\n"
+"par_id3148974\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 ""
+
+#. etVBc
+#: func_second.xhp
+msgctxt ""
+"func_second.xhp\n"
+"par_id3148407\n"
+"help.text"
+msgid "SECOND(Number)"
+msgstr ""
+
+#. 7DRDr
+#: func_second.xhp
+msgctxt ""
+"func_second.xhp\n"
+"par_id3155904\n"
+"help.text"
+msgid "<emph>Number</emph>, as a time value, is a decimal, for which the second is to be returned."
+msgstr ""
+
+#. fwYTM
+#: func_second.xhp
+msgctxt ""
+"func_second.xhp\n"
+"par_id3153350\n"
+"help.text"
+msgid "<item type=\"input\">=SECOND(NOW())</item> returns the current second"
+msgstr ""
+
+#. CWx25
+#: func_second.xhp
+msgctxt ""
+"func_second.xhp\n"
+"par_id3150831\n"
+"help.text"
+msgid "<item type=\"input\">=SECOND(C4)</item> returns 17 if contents of C4 = <item type=\"input\">12:20:17</item>."
+msgstr ""
+
+#. JBtM4
+#: func_skewp.xhp
+msgctxt ""
+"func_skewp.xhp\n"
+"tit\n"
+"help.text"
+msgid "SKEWP function"
+msgstr ""
+
+#. fFaLh
+#: func_skewp.xhp
+msgctxt ""
+"func_skewp.xhp\n"
+"bm_id1102201617201921\n"
+"help.text"
+msgid "<bookmark_value>skewness;population</bookmark_value> <bookmark_value>SKEWP function</bookmark_value>"
+msgstr ""
+
+#. Xv6GF
+#: func_skewp.xhp
+msgctxt ""
+"func_skewp.xhp\n"
+"hd_id456845684568\n"
+"help.text"
+msgid "<variable id=\"skewp_head\"><link href=\"text/scalc/01/func_skewp.xhp\">SKEWP</link></variable>"
+msgstr ""
+
+#. cuNXs
+#: func_skewp.xhp
+msgctxt ""
+"func_skewp.xhp\n"
+"par_id1102201617001848\n"
+"help.text"
+msgid "<ahelp hid=\".\">Calculates the skewness of a distribution using the population of a random variable.</ahelp>"
+msgstr ""
+
+#. FCmqL
+#: func_skewp.xhp
+msgctxt ""
+"func_skewp.xhp\n"
+"par_id27421466710275\n"
+"help.text"
+msgid "SKEWP(<embedvar href=\"text/scalc/01/ful_func.xhp#number255_1\" markup=\"keep\"/>)"
+msgstr ""
+
+#. Af6Mq
+#: func_skewp.xhp
+msgctxt ""
+"func_skewp.xhp\n"
+"par_id242131304315587\n"
+"help.text"
+msgid "The parameters should specify at least three values."
+msgstr ""
+
+#. Q2i35
+#: func_skewp.xhp
+msgctxt ""
+"func_skewp.xhp\n"
+"par_id1102201617001888\n"
+"help.text"
+msgid "<input>SKEWP(2;3;1;6;8;5)</input> returns 0.2329985562"
+msgstr ""
+
+#. TAGzC
+#: func_skewp.xhp
+msgctxt ""
+"func_skewp.xhp\n"
+"par_id1102201618185378\n"
+"help.text"
+msgid "<input>SKEWP(A1:A6)</input> returns 0.2329985562, when the range A1:A6 contains {2;3;1;6;8;5}"
+msgstr ""
+
+#. 5iYyJ
+#: func_skewp.xhp
+msgctxt ""
+"func_skewp.xhp\n"
+"par_id14337286612130\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060185.xhp#skew\">SKEW</link>"
+msgstr ""
+
+#. mEZBk
+#: func_sum.xhp
+msgctxt ""
+"func_sum.xhp\n"
+"tit\n"
+"help.text"
+msgid "SUM Function"
+msgstr ""
+
+#. fLyVA
+#: func_sum.xhp
+msgctxt ""
+"func_sum.xhp\n"
+"id431636401649762\n"
+"help.text"
+msgid "<bookmark_value>SUM function</bookmark_value> <bookmark_value>adding;numbers in cell ranges</bookmark_value>"
+msgstr ""
+
+#. AE4pM
+#: func_sum.xhp
+msgctxt ""
+"func_sum.xhp\n"
+"hd_id121636398275790\n"
+"help.text"
+msgid "<variable id=\"sum_head\"><link href=\"text/scalc/01/func_sum.xhp\" name=\"function SUM\">SUM</link></variable>"
+msgstr ""
+
+#. c32xJ
+#: func_sum.xhp
+msgctxt ""
+"func_sum.xhp\n"
+"par_id491636401806866\n"
+"help.text"
+msgid "<variable id=\"func_sum_desc\"><ahelp hid=\".\">Adds a set of numbers.</ahelp></variable>"
+msgstr ""
+
+#. vfwu7
+#: func_sum.xhp
+msgctxt ""
+"func_sum.xhp\n"
+"par_id3163656\n"
+"help.text"
+msgid "SUM(<embedvar href=\"text/scalc/01/ful_func.xhp#number255_1\" markup=\"keep\"/>)"
+msgstr ""
+
+#. h8z3Q
+#: func_sum.xhp
+msgctxt ""
+"func_sum.xhp\n"
+"par_id3163704\n"
+"help.text"
+msgid "<input>=SUM(2;3;4)</input> returns 9."
+msgstr ""
+
+#. 6ohPR
+#: func_sum.xhp
+msgctxt ""
+"func_sum.xhp\n"
+"par_id3151740\n"
+"help.text"
+msgid "<item type=\"input\">=SUM(A1;A3;B5)</item> calculates the sum of the three cells."
+msgstr ""
+
+#. FbQ6a
+#: func_sum.xhp
+msgctxt ""
+"func_sum.xhp\n"
+"par_id931636109030406\n"
+"help.text"
+msgid "<item type=\"input\">=SUM(A1:E10)</item> calculates the sum of all cells in the A1 to E10 cell range."
+msgstr ""
+
+#. y22jE
+#: func_sum.xhp
+msgctxt ""
+"func_sum.xhp\n"
+"par_id3151756\n"
+"help.text"
+msgid "A formula such as <input>=SUM((A1:A40>=C1)*(A1:A40<C2)*B1:B40)</input> may be entered as an <link href=\"text/scalc/01/04060107.html#hd_id3148474\" name=\"ARRAY_FORMULA\">array formula</link> by pressing the Shift<switchinline select=\"sys\"><caseinline select=\"MAC\">+Command</caseinline><defaultinline>+Ctrl</defaultinline></switchinline>+Enter keys instead of simply pressing the Enter key to finish entering the formula. The formula will then be shown in the Formula bar enclosed in braces and operates by multiplying corresponding elements of the arrays together and returning their sum."
+msgstr ""
+
+#. FWxB2
+#: func_sum.xhp
+msgctxt ""
+"func_sum.xhp\n"
+"par_id661636108218550\n"
+"help.text"
+msgid "Refer to the <link href=\"https://wiki.documentfoundation.org/Documentation/Calc_Functions/SUM\" name=\"SUM_Wiki\">SUM</link> wiki page for more details about this function."
+msgstr ""
+
+#. DfceH
+#: func_sumifs.xhp
+msgctxt ""
+"func_sumifs.xhp\n"
+"tit\n"
+"help.text"
+msgid "SUMIFS function"
+msgstr ""
+
+#. jDeBL
+#: func_sumifs.xhp
+msgctxt ""
+"func_sumifs.xhp\n"
+"bm_id658066580665806\n"
+"help.text"
+msgid "<bookmark_value>SUMIFS function</bookmark_value> <bookmark_value>sum;satisfying conditions</bookmark_value>"
+msgstr ""
+
+#. MpUwQ
+#: func_sumifs.xhp
+msgctxt ""
+"func_sumifs.xhp\n"
+"hd_id658866588665886\n"
+"help.text"
+msgid "<variable id=\"sumifs_head\"><link href=\"text/scalc/01/func_sumifs.xhp\">SUMIFS</link></variable>"
+msgstr ""
+
+#. ZEdvF
+#: func_sumifs.xhp
+msgctxt ""
+"func_sumifs.xhp\n"
+"par_id659756597565975\n"
+"help.text"
+msgid "<ahelp hid=\".\"><variable id=\"sumifs_des\">Returns the sum of the values of cells in a range that meets multiple criteria in multiple ranges.</variable></ahelp>"
+msgstr ""
+
+#. xhKwv
+#: func_sumifs.xhp
+msgctxt ""
+"func_sumifs.xhp\n"
+"par_id11655988824213\n"
+"help.text"
+msgid "SUMIFS(<embedvar href=\"text/scalc/01/ex_data_stat_func.xhp#args\" markup=\"ignore\"/>)"
+msgstr ""
+
+#. mP5Et
+#: func_sumifs.xhp
+msgctxt ""
+"func_sumifs.xhp\n"
+"par_id59901690530236\n"
+"help.text"
+msgid "<emph>Func_Range</emph> – required argument. It is a range of cells, a name of a named range or a label of a column or a row containing values for calculating the sum."
+msgstr ""
+
+#. zahGz
+#: func_sumifs.xhp
+msgctxt ""
+"func_sumifs.xhp\n"
+"hd_id193452436229521\n"
+"help.text"
+msgid "Simple usage"
+msgstr ""
+
+#. tqgKL
+#: func_sumifs.xhp
+msgctxt ""
+"func_sumifs.xhp\n"
+"par_id94321051525036\n"
+"help.text"
+msgid "<item type=\"input\">=SUMIFS(B2:B6;B2:B6;\">=20\")</item>"
+msgstr ""
+
+#. NK7QS
+#: func_sumifs.xhp
+msgctxt ""
+"func_sumifs.xhp\n"
+"par_id28647227259438\n"
+"help.text"
+msgid "Calculates the sum of values of the range B2:B6 that are greater than or equal to 20. Returns 75, because the fifth row does not meet the criterion."
+msgstr ""
+
+#. TzCFB
+#: func_sumifs.xhp
+msgctxt ""
+"func_sumifs.xhp\n"
+"par_id36952767622741\n"
+"help.text"
+msgid "<item type=\"input\">=SUMIFS(C2:C6;B2:B6;\">=20\";C2:C6;\">70\")</item>"
+msgstr ""
+
+#. or3BG
+#: func_sumifs.xhp
+msgctxt ""
+"func_sumifs.xhp\n"
+"par_id189772445525114\n"
+"help.text"
+msgid "Calculates the sum of values of the range C2:C6 that are greater than 70 and correspond to cells of the B2:B6 range with values greater than or equal to 20. Returns 275, because the second and the fifth rows do not meet at least one criterion."
+msgstr ""
+
+#. YHh9T
+#: func_sumifs.xhp
+msgctxt ""
+"func_sumifs.xhp\n"
+"hd_id30455222431067\n"
+"help.text"
+msgid "Using regular expressions and nested functions"
+msgstr ""
+
+#. Ust3n
+#: func_sumifs.xhp
+msgctxt ""
+"func_sumifs.xhp\n"
+"par_id307691022525348\n"
+"help.text"
+msgid "<item type=\"input\">=SUMIFS(C2:C6;B2:B6;\">\"&MIN(B2:B6);B2:B6;\"<\"&MAX(B2:B6))</item>"
+msgstr ""
+
+#. wCeGS
+#: func_sumifs.xhp
+msgctxt ""
+"func_sumifs.xhp\n"
+"par_id27619246864839\n"
+"help.text"
+msgid "Calculates the sum of values of the range C2:C6 that correspond to all values of the range B2:B6 except its minimum and maximum. Returns 255, because the third and the fifth rows do not meet at least one criterion."
+msgstr ""
+
+#. tETJF
+#: func_sumifs.xhp
+msgctxt ""
+"func_sumifs.xhp\n"
+"par_id220502883332563\n"
+"help.text"
+msgid "<item type=\"input\">=SUMIFS(C2:C6;A2:A6;\"pen.*\";B2:B6;\"<\"&MAX(B2:B6))</item>"
+msgstr ""
+
+#. u7CDd
+#: func_sumifs.xhp
+msgctxt ""
+"func_sumifs.xhp\n"
+"par_id15342189586295\n"
+"help.text"
+msgid "Calculates the sum of values of the range C2:C6 that correspond to all cells of the A2:A6 range starting with \"pen\" and to all cells of the B2:B6 range except its maximum. Returns 65, because only second row meets all criteria."
+msgstr ""
+
+#. dKeLC
+#: func_sumifs.xhp
+msgctxt ""
+"func_sumifs.xhp\n"
+"hd_id8168283329426\n"
+"help.text"
+msgid "Reference to a cell as a criterion"
+msgstr ""
+
+#. NzNhA
+#: func_sumifs.xhp
+msgctxt ""
+"func_sumifs.xhp\n"
+"par_id50762995519951\n"
+"help.text"
+msgid "If you need to change a criterion easily, you may want to specify it in a separate cell and use a reference to this cell in the condition of the SUMIFS function. For example, the above function can be rewritten as follows:"
+msgstr ""
+
+#. U2wwM
+#: func_sumifs.xhp
+msgctxt ""
+"func_sumifs.xhp\n"
+"par_id135761606425300\n"
+"help.text"
+msgid "<item type=\"input\">=SUMIFS(C2:C6;A2:A6;E2&\".*\";B2:B6;\"<\"&MAX(B2:B6))</item>"
+msgstr ""
+
+#. wGhZA
+#: func_sumifs.xhp
+msgctxt ""
+"func_sumifs.xhp\n"
+"par_id30574750215839\n"
+"help.text"
+msgid "If E2 = pen, the function returns 65, because the link to the cell is substituted with its content."
+msgstr ""
+
+#. UUeQC
+#: func_switch.xhp
+msgctxt ""
+"func_switch.xhp\n"
+"tit\n"
+"help.text"
+msgid "SWITCH function"
+msgstr ""
+
+#. 5ALMt
+#: func_switch.xhp
+msgctxt ""
+"func_switch.xhp\n"
+"bm_id571556244875552\n"
+"help.text"
+msgid "<bookmark_value>SWITCH function</bookmark_value>"
+msgstr ""
+
+#. DBGaN
+#: func_switch.xhp
+msgctxt ""
+"func_switch.xhp\n"
+"hd_id21556242313791\n"
+"help.text"
+msgid "<variable id=\"switchfunct\"><link href=\"text/scalc/01/func_switch.xhp\" name=\"switch\">SWITCH</link></variable>"
+msgstr ""
+
+#. vaCEi
+#: func_switch.xhp
+msgctxt ""
+"func_switch.xhp\n"
+"par_id361556242313793\n"
+"help.text"
+msgid "<variable id=\"functionswitch\"><ahelp hid=\".\">SWITCH compares <emph>expression</emph> with <emph>value1</emph> to <emph>valuen</emph> and returns the result belonging to the first value that equals expression. If there is no match and default_result is given, that will be returned.</ahelp></variable>"
+msgstr ""
+
+#. tFvZx
+#: func_switch.xhp
+msgctxt ""
+"func_switch.xhp\n"
+"par_id521556242803283\n"
+"help.text"
+msgid "SWITCH(expression; value1; result1[; value2; result2][; ... ; [value127; result127][; default_result]])"
+msgstr ""
+
+#. p8fL8
+#: func_switch.xhp
+msgctxt ""
+"func_switch.xhp\n"
+"par_id111585520651521\n"
+"help.text"
+msgid "If you choose not to specify a default result, 127 value / result pairs may be entered as parameters. If you choose to include a default result at the end of the list of parameters, then only 126 value / result pairs may be entered."
+msgstr ""
+
+#. nnW4D
+#: func_switch.xhp
+msgctxt ""
+"func_switch.xhp\n"
+"par_id341556242996378\n"
+"help.text"
+msgid "<emph>expression</emph> is a text, numeric, logical or date input or reference to a cell."
+msgstr ""
+
+#. Z7xiA
+#: func_switch.xhp
+msgctxt ""
+"func_switch.xhp\n"
+"par_id321556243790332\n"
+"help.text"
+msgid "<emph>value1, value2, ...</emph> is any value or reference to a cell. Each value must have a result given."
+msgstr ""
+
+#. ADDqw
+#: func_switch.xhp
+msgctxt ""
+"func_switch.xhp\n"
+"par_id171556243796068\n"
+"help.text"
+msgid "<emph>result1, result2, ...</emph> is any value or reference to a cell."
+msgstr ""
+
+#. 9SKCB
+#: func_switch.xhp
+msgctxt ""
+"func_switch.xhp\n"
+"par_id331556245422283\n"
+"help.text"
+msgid "<emph>default_result</emph>: any value or reference to a cell that is returned when there is no match."
+msgstr ""
+
+#. mLsyo
+#: func_switch.xhp
+msgctxt ""
+"func_switch.xhp\n"
+"par_id871556243022881\n"
+"help.text"
+msgid "If no <emph>value</emph> equals <emph>expression</emph> and no default result is given, a #N/A error is returned."
+msgstr ""
+
+#. YQYUn
+#: func_switch.xhp
+msgctxt ""
+"func_switch.xhp\n"
+"par_id851556243961783\n"
+"help.text"
+msgid "<input>=SWITCH(MONTH(A3),1,\"January\",2,\"February\",3,\"March\",\"No match\")</input> returns \"January\" when A3 contains a date in January, \"February\" when A3 contains a date in February , etc..."
+msgstr ""
+
+#. vDLfw
+#: func_switch.xhp
+msgctxt ""
+"func_switch.xhp\n"
+"par_id781556244709752\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060105.xhp#Section4\" name=\"if\">IF</link>"
+msgstr ""
+
+#. BCAZr
+#: func_textjoin.xhp
+msgctxt ""
+"func_textjoin.xhp\n"
+"tit\n"
+"help.text"
+msgid "TEXTJOIN function"
+msgstr ""
+
+#. EFTkc
+#: func_textjoin.xhp
+msgctxt ""
+"func_textjoin.xhp\n"
+"bm_id581556228060864\n"
+"help.text"
+msgid "<bookmark_value>TEXTJOIN function</bookmark_value>"
+msgstr ""
+
+#. KWzCr
+#: func_textjoin.xhp
+msgctxt ""
+"func_textjoin.xhp\n"
+"hd_id551556227727946\n"
+"help.text"
+msgid "<variable id=\"textjoinfunct\"><link href=\"text/scalc/01/func_textjoin.xhp\" name=\"textjoinfunction\">TEXTJOIN</link></variable>"
+msgstr ""
+
+#. oLfX2
+#: func_textjoin.xhp
+msgctxt ""
+"func_textjoin.xhp\n"
+"par_id121556227727948\n"
+"help.text"
+msgid "<variable id=\"textjoinfunction\"><ahelp hid=\".\">Concatenates one or more strings, and uses delimiters between them.</ahelp></variable>"
+msgstr ""
+
+#. q72j4
+#: func_textjoin.xhp
+msgctxt ""
+"func_textjoin.xhp\n"
+"par_id541556228253979\n"
+"help.text"
+msgid "TEXTJOIN( delimiter, skip_empty, String 1[; String 2][; … ;[String 253]] )"
+msgstr ""
+
+#. WaME6
+#: func_textjoin.xhp
+msgctxt ""
+"func_textjoin.xhp\n"
+"par_id741556228390897\n"
+"help.text"
+msgid "<emph>delimiter</emph> is a text string and can be a range."
+msgstr ""
+
+#. 6vMaP
+#: func_textjoin.xhp
+msgctxt ""
+"func_textjoin.xhp\n"
+"par_id621556228397269\n"
+"help.text"
+msgid "<emph>skip_empty</emph> is a logical argument. When set to FALSE or 0, empty strings will be taken into account and this may lead to adjacent delimiters in the returned string. When set to any other value (e.g. TRUE or 1), empty strings will be ignored."
+msgstr ""
+
+#. JoYks
+#: func_textjoin.xhp
+msgctxt ""
+"func_textjoin.xhp\n"
+"par_id631556228516997\n"
+"help.text"
+msgid "<emph>String 1[; String 2][; … ;[String 253]]</emph> are strings, references to cells or to cell ranges of strings."
+msgstr ""
+
+#. PDbCp
+#: func_textjoin.xhp
+msgctxt ""
+"func_textjoin.xhp\n"
+"par_id1001556228523394\n"
+"help.text"
+msgid "Ranges are traversed row by row (from top to bottom)."
+msgstr ""
+
+#. PEkb2
+#: func_textjoin.xhp
+msgctxt ""
+"func_textjoin.xhp\n"
+"par_id81556228530082\n"
+"help.text"
+msgid "If <emph>delimiter</emph> is a range, the range need not be of the same size as the number of strings to be joined."
+msgstr ""
+
+#. VcQjG
+#: func_textjoin.xhp
+msgctxt ""
+"func_textjoin.xhp\n"
+"par_id831556228543099\n"
+"help.text"
+msgid "If there are more delimiters than strings to be joined, not all delimiters will be used."
+msgstr ""
+
+#. ByVAF
+#: func_textjoin.xhp
+msgctxt ""
+"func_textjoin.xhp\n"
+"par_id321556228557611\n"
+"help.text"
+msgid "If there are less delimiters than strings to be joined, the delimiters will be used again from the start."
+msgstr ""
+
+#. QaJCw
+#: func_textjoin.xhp
+msgctxt ""
+"func_textjoin.xhp\n"
+"par_id441556229012536\n"
+"help.text"
+msgid "<input>=TEXTJOIN(\" \"; 1; \"Here\"; \"comes\"; \"the\"; \"sun\")</input> returns \"Here comes the sun\" with space character as delimiter and empty strings are ignored."
+msgstr ""
+
+#. 39FPP
+#: func_textjoin.xhp
+msgctxt ""
+"func_textjoin.xhp\n"
+"par_id441556239012536\n"
+"help.text"
+msgid "if A1:B2 contains \"Here\", \"comes\", \"the\", \"sun\" respectively, <input>=TEXTJOIN(\"-\";1;A1:B2)</input> returns \"Here-comes-the-sun\" with dash character as delimiter and empty strings are ignored."
+msgstr ""
+
+#. AXCJg
+#: func_textjoin.xhp
+msgctxt ""
+"func_textjoin.xhp\n"
+"par_id781556244709752\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060110.xhp#concatenate\" name=\"concatenate\">CONCATENATE</link>"
+msgstr ""
+
+#. pLSAn
+#: func_time.xhp
+msgctxt ""
+"func_time.xhp\n"
+"tit\n"
+"help.text"
+msgid "TIME"
+msgstr ""
+
+#. Y7P2x
+#: func_time.xhp
+msgctxt ""
+"func_time.xhp\n"
+"bm_id3154073\n"
+"help.text"
+msgid "<bookmark_value>TIME function</bookmark_value>"
+msgstr ""
+
+#. ivxiA
+#: func_time.xhp
+msgctxt ""
+"func_time.xhp\n"
+"hd_id3154073\n"
+"help.text"
+msgid "<variable id=\"time\"><link href=\"text/scalc/01/func_time.xhp\">TIME</link></variable>"
+msgstr ""
+
+#. VozL8
+#: func_time.xhp
+msgctxt ""
+"func_time.xhp\n"
+"par_id3145762\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 ""
+
+#. fzPmm
+#: func_time.xhp
+msgctxt ""
+"func_time.xhp\n"
+"par_id3154584\n"
+"help.text"
+msgid "TIME(Hour; Minute; Second)"
+msgstr ""
+
+#. 3DWFB
+#: func_time.xhp
+msgctxt ""
+"func_time.xhp\n"
+"par_id3152904\n"
+"help.text"
+msgid "Use an integer to set the <emph>Hour</emph>."
+msgstr ""
+
+#. QKjXC
+#: func_time.xhp
+msgctxt ""
+"func_time.xhp\n"
+"par_id3151346\n"
+"help.text"
+msgid "Use an integer to set the <emph>Minute</emph>."
+msgstr ""
+
+#. ALcZt
+#: func_time.xhp
+msgctxt ""
+"func_time.xhp\n"
+"par_id3151366\n"
+"help.text"
+msgid "Use an integer to set the <emph>Second</emph>."
+msgstr ""
+
+#. qGpQS
+#: func_time.xhp
+msgctxt ""
+"func_time.xhp\n"
+"par_id3156076\n"
+"help.text"
+msgid "<item type=\"input\">=TIME(0;0;0)</item> returns 00:00:00"
+msgstr ""
+
+#. DKovu
+#: func_time.xhp
+msgctxt ""
+"func_time.xhp\n"
+"par_id3156090\n"
+"help.text"
+msgid "<item type=\"input\">=TIME(4;20;4)</item> returns 04:20:04"
+msgstr ""
+
+#. eUYTq
+#: func_timevalue.xhp
+msgctxt ""
+"func_timevalue.xhp\n"
+"tit\n"
+"help.text"
+msgid "TIMEVALUE"
+msgstr ""
+
+#. jt9C2
+#: func_timevalue.xhp
+msgctxt ""
+"func_timevalue.xhp\n"
+"bm_id3146755\n"
+"help.text"
+msgid "<bookmark_value>TIMEVALUE function</bookmark_value>"
+msgstr ""
+
+#. KvCZT
+#: func_timevalue.xhp
+msgctxt ""
+"func_timevalue.xhp\n"
+"hd_id3146755\n"
+"help.text"
+msgid "<variable id=\"timevalue\"><link href=\"text/scalc/01/func_timevalue.xhp\">TIMEVALUE</link></variable>"
+msgstr ""
+
+#. BKBh2
+#: func_timevalue.xhp
+msgctxt ""
+"func_timevalue.xhp\n"
+"par_id3148502\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_ZEITWERT\">TIMEVALUE returns the internal time number from a text enclosed by quotes and which may show a possible time entry format.</ahelp>"
+msgstr ""
+
+#. Awj4V
+#: func_timevalue.xhp
+msgctxt ""
+"func_timevalue.xhp\n"
+"par_id3150794\n"
+"help.text"
+msgid "The internal number indicated as a decimal is the result of the date system used under $[officename] to calculate date entries."
+msgstr ""
+
+#. nGfAL
+#: func_timevalue.xhp
+msgctxt ""
+"func_timevalue.xhp\n"
+"par_id011920090347118\n"
+"help.text"
+msgid "If the text string also includes a year, month, or day, TIMEVALUE only returns the fractional part of the conversion."
+msgstr ""
+
+#. FQKX4
+#: func_timevalue.xhp
+msgctxt ""
+"func_timevalue.xhp\n"
+"par_id3150823\n"
+"help.text"
+msgid "TIMEVALUE(\"Text\")"
+msgstr ""
+
+#. wHKdJ
+#: func_timevalue.xhp
+msgctxt ""
+"func_timevalue.xhp\n"
+"par_id3152556\n"
+"help.text"
+msgid "<emph>Text</emph> is a valid time expression and must be entered in quotation marks."
+msgstr ""
+
+#. icbCa
+#: func_timevalue.xhp
+msgctxt ""
+"func_timevalue.xhp\n"
+"par_id3146829\n"
+"help.text"
+msgid "<item type=\"input\">=TIMEVALUE(\"4PM\")</item> returns 0.67. When formatting in time format HH:MM:SS, you then get 16:00:00."
+msgstr ""
+
+#. DhADF
+#: func_timevalue.xhp
+msgctxt ""
+"func_timevalue.xhp\n"
+"par_id3153632\n"
+"help.text"
+msgid "<item type=\"input\">=TIMEVALUE(\"24:00\")</item> returns 0. If you use the HH:MM:SS time format, the value is 00:00:00."
+msgstr ""
+
+#. 8LaX7
+#: func_today.xhp
+msgctxt ""
+"func_today.xhp\n"
+"tit\n"
+"help.text"
+msgid "TODAY"
+msgstr ""
+
+#. XdC2Q
+#: func_today.xhp
+msgctxt ""
+"func_today.xhp\n"
+"bm_id3145659\n"
+"help.text"
+msgid "<bookmark_value>TODAY function</bookmark_value>"
+msgstr ""
+
+#. akBrZ
+#: func_today.xhp
+msgctxt ""
+"func_today.xhp\n"
+"hd_id3145659\n"
+"help.text"
+msgid "<variable id=\"today\"><link href=\"text/scalc/01/func_today.xhp\">TODAY</link></variable>"
+msgstr ""
+
+#. dzt93
+#: func_today.xhp
+msgctxt ""
+"func_today.xhp\n"
+"par_id3153759\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 ""
+
+#. ABDRC
+#: func_today.xhp
+msgctxt ""
+"func_today.xhp\n"
+"par_id3153154\n"
+"help.text"
+msgid "TODAY()"
+msgstr ""
+
+#. kPQtF
+#: func_today.xhp
+msgctxt ""
+"func_today.xhp\n"
+"par_id3154741\n"
+"help.text"
+msgid "TODAY is a function without arguments."
+msgstr ""
+
+#. 7ivyD
+#: func_today.xhp
+msgctxt ""
+"func_today.xhp\n"
+"par_id3156106\n"
+"help.text"
+msgid "<item type=\"input\">TODAY()</item> returns the current computer system date."
+msgstr ""
+
+#. Y2uYG
+#: func_trunc.xhp
+msgctxt ""
+"func_trunc.xhp\n"
+"tit\n"
+"help.text"
+msgid "TRUNC function"
+msgstr ""
+
+#. UkBEB
+#: func_trunc.xhp
+msgctxt ""
+"func_trunc.xhp\n"
+"bm_id3156384\n"
+"help.text"
+msgid "<bookmark_value>TRUNC function</bookmark_value> <bookmark_value>decimal places;cutting off</bookmark_value> <bookmark_value>numbers;truncate</bookmark_value>"
+msgstr ""
+
+#. CQ5Zg
+#: func_trunc.xhp
+msgctxt ""
+"func_trunc.xhp\n"
+"hd_id601641846107898\n"
+"help.text"
+msgid "<variable id=\"trunc_h1\"><link href=\"text/scalc/01/func_trunc.xhp\" name=\"trunc_link\">TRUNC function</link></variable>"
+msgstr ""
+
+#. dkTrh
+#: func_trunc.xhp
+msgctxt ""
+"func_trunc.xhp\n"
+"par_id841641927277474\n"
+"help.text"
+msgid "Truncates a number while keeping a specified number of decimal digits."
+msgstr ""
+
+#. Hxed7
+#: func_trunc.xhp
+msgctxt ""
+"func_trunc.xhp\n"
+"par_id701642530512560\n"
+"help.text"
+msgid "This function is equivalent to the <link href=\"text/scalc/01/func_rounddown.xhp\" name=\"ROUNDDOWN_link\">ROUNDDOWN function</link>."
+msgstr ""
+
+#. oZAWU
+#: func_trunc.xhp
+msgctxt ""
+"func_trunc.xhp\n"
+"par_id321641927458888\n"
+"help.text"
+msgid "The rounding method used by this function is known as <emph>rounding towards zero</emph>. The resulting number will always be smaller than or equal to the original number."
+msgstr ""
+
+#. SqCQv
+#: func_trunc.xhp
+msgctxt ""
+"func_trunc.xhp\n"
+"par_id341641927560587\n"
+"help.text"
+msgid "<input>TRUNC(Number [; Count])</input>"
+msgstr ""
+
+#. RryDW
+#: func_trunc.xhp
+msgctxt ""
+"func_trunc.xhp\n"
+"par_id11641927688319\n"
+"help.text"
+msgid "<emph>Number:</emph> The number to be truncated."
+msgstr ""
+
+#. Hg6mt
+#: func_trunc.xhp
+msgctxt ""
+"func_trunc.xhp\n"
+"par_id861641927715672\n"
+"help.text"
+msgid "<emph>Count:</emph> Optional parameter that defines the number of decimal places to be kept. The default value is 0 (zero)."
+msgstr ""
+
+#. HKrSh
+#: func_trunc.xhp
+msgctxt ""
+"func_trunc.xhp\n"
+"par_id911641928545976\n"
+"help.text"
+msgid "Use negative values for <emph>Count</emph> to round the integer part of the original <emph>Number</emph>. For example, -1 will round down the first integer number before the decimal separator, -2 will round down the two integer numbers before the decimal separator, and so forth."
+msgstr ""
+
+#. EJFZd
+#: func_trunc.xhp
+msgctxt ""
+"func_trunc.xhp\n"
+"par_id901641928192870\n"
+"help.text"
+msgid "<input>=TRUNC(21.89)</input> returns 21. Note that this example uses the default value for <emph>Count</emph> which is 0."
+msgstr ""
+
+#. ccEGa
+#: func_trunc.xhp
+msgctxt ""
+"func_trunc.xhp\n"
+"par_id901641928192110\n"
+"help.text"
+msgid "<input>=TRUNC(103.37,1)</input> returns 103.3."
+msgstr ""
+
+#. jJvgo
+#: func_trunc.xhp
+msgctxt ""
+"func_trunc.xhp\n"
+"par_id171641928456743\n"
+"help.text"
+msgid "<input>=TRUNC(0.664,2)</input> returns 0.66."
+msgstr ""
+
+#. Qf3R9
+#: func_trunc.xhp
+msgctxt ""
+"func_trunc.xhp\n"
+"par_id641641928712287\n"
+"help.text"
+msgid "<input>=TRUNC(214.2,-1)</input> returns 210. Note the negative value for <emph>Count</emph>, which causes the first integer value before the decimal separator to be rounded towards zero."
+msgstr ""
+
+#. w86Dm
+#: func_value.xhp
+msgctxt ""
+"func_value.xhp\n"
+"tit\n"
+"help.text"
+msgid "VALUE Function"
+msgstr ""
+
+#. D5EDU
+#: func_value.xhp
+msgctxt ""
+"func_value.xhp\n"
+"bm_id831542233029549\n"
+"help.text"
+msgid "<bookmark_value>VALUE function</bookmark_value> <bookmark_value>text functions;convert text to numeric value</bookmark_value>"
+msgstr ""
+
+#. pkYxF
+#: func_value.xhp
+msgctxt ""
+"func_value.xhp\n"
+"hd_id881628776094597\n"
+"help.text"
+msgid "<variable id=\"Value_h1\"><link href=\"text/scalc/01/func_value.xhp\" name=\"function VALUE\">VALUE</link></variable>"
+msgstr ""
+
+#. BZ7SU
+#: func_value.xhp
+msgctxt ""
+"func_value.xhp\n"
+"par_id541542230672101\n"
+"help.text"
+msgid "<variable id=\"func_value_desc\"><ahelp hid=\".\">Converts the string representation of a number to numeric form. If the supplied string is a valid date, time, or date-time, the corresponding date-time serial number is returned.</ahelp></variable>"
+msgstr ""
+
+#. KAY8o
+#: func_value.xhp
+msgctxt ""
+"func_value.xhp\n"
+"par_id701542231253817\n"
+"help.text"
+msgid "<input>VALUE(Text)</input>"
+msgstr ""
+
+#. QVErw
+#: func_value.xhp
+msgctxt ""
+"func_value.xhp\n"
+"par_id621542232197446\n"
+"help.text"
+msgid "<emph>Text</emph>: A string (in quotation marks), a number, or a reference to a cell containing one of those types, that contains the value to be converted."
+msgstr ""
+
+#. hMLPV
+#: func_value.xhp
+msgctxt ""
+"func_value.xhp\n"
+"par_id731628787003937\n"
+"help.text"
+msgid "If the <emph>Text</emph> argument is a string representing a date, time, currency or a numeric value with decimal and thousands separators, the string must comply with current locale settings."
+msgstr ""
+
+#. 3BCEU
+#: func_value.xhp
+msgctxt ""
+"func_value.xhp\n"
+"par_id451628776707264\n"
+"help.text"
+msgid "<input>=VALUE(\"1234\")</input> returns the numeric value 1234."
+msgstr ""
+
+#. zEuFg
+#: func_value.xhp
+msgctxt ""
+"func_value.xhp\n"
+"par_id101628778036375\n"
+"help.text"
+msgid "<input>=VALUE(\"+1,234.567\")</input> returns 1234.567 (considering en-US locale). Note that the \"+\" sign could have been omitted."
+msgstr ""
+
+#. Hhrax
+#: func_value.xhp
+msgctxt ""
+"func_value.xhp\n"
+"par_id991628779914913\n"
+"help.text"
+msgid "<input>=VALUE(\"$100\")</input> returns 100 (considering en-US locale). Note that the currency prefix must match the current locale settings."
+msgstr ""
+
+#. syxTJ
+#: func_value.xhp
+msgctxt ""
+"func_value.xhp\n"
+"par_id101628780114427\n"
+"help.text"
+msgid "<input>=VALUE(\"50%\")</input> returns 0.5. Note that the character \"%\" causes the numeric part to be divided by 100."
+msgstr ""
+
+#. xDJeH
+#: func_value.xhp
+msgctxt ""
+"func_value.xhp\n"
+"par_id731628780240876\n"
+"help.text"
+msgid "<input>=VALUE(\"07/30/2021\")</input> returns 44407 (considering en-US locale) which is the date-time sequence number corresponding to the specified date."
+msgstr ""
+
+#. Kkcm7
+#: func_value.xhp
+msgctxt ""
+"func_value.xhp\n"
+"par_id501628780340635\n"
+"help.text"
+msgid "<input>=VALUE(\"09:20:25\")</input> returns 0.389178240740741 which is the date-time sequence number corresponding to the specified time value."
+msgstr ""
+
+#. qxHgs
+#: func_value.xhp
+msgctxt ""
+"func_value.xhp\n"
+"par_id801628779804928\n"
+"help.text"
+msgid "Refer to the <link href=\"https://wiki.documentfoundation.org/Documentation/Calc_Functions/VALUE\" name=\"VALUE Wiki\">VALUE</link> wiki page for more details about this function."
+msgstr ""
+
+#. dQeP6
+#: func_webservice.xhp
+msgctxt ""
+"func_webservice.xhp\n"
+"tit\n"
+"help.text"
+msgid "URI Functions"
+msgstr ""
+
+#. 8sQry
+#: func_webservice.xhp
+msgctxt ""
+"func_webservice.xhp\n"
+"bm_id3149012\n"
+"help.text"
+msgid "<bookmark_value>WEBSERVICE function</bookmark_value>"
+msgstr ""
+
+#. BEKjH
+#: func_webservice.xhp
+msgctxt ""
+"func_webservice.xhp\n"
+"hd_id3149012\n"
+"help.text"
+msgid "<variable id=\"webservicefuncname\"><link href=\"text/scalc/01/func_webservice.xhp#webservice\" name=\"webservice\">WEBSERVICE</link></variable>"
+msgstr ""
+
+#. NXAzC
+#: func_webservice.xhp
+msgctxt ""
+"func_webservice.xhp\n"
+"par_id3149893\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_WEBSERVICE\">Get some web content from a URI.</ahelp>"
+msgstr ""
+
+#. FjkNG
+#: func_webservice.xhp
+msgctxt ""
+"func_webservice.xhp\n"
+"par_id3154844\n"
+"help.text"
+msgid "WEBSERVICE(URI)"
+msgstr ""
+
+#. mkhox
+#: func_webservice.xhp
+msgctxt ""
+"func_webservice.xhp\n"
+"par_id3147469\n"
+"help.text"
+msgid "<emph>URI: </emph> URI text of the web service."
+msgstr ""
+
+#. onWpd
+#: func_webservice.xhp
+msgctxt ""
+"func_webservice.xhp\n"
+"par_id3146142\n"
+"help.text"
+msgid "<item type=\"input\">=WEBSERVICE(\"wiki.documentfoundation.org/api.php?hidebots=1&days=7&limit=50&action=feedrecentchanges&feedformat=rss\")</item>"
+msgstr ""
+
+#. yaDfK
+#: func_webservice.xhp
+msgctxt ""
+"func_webservice.xhp\n"
+"par_id3146143\n"
+"help.text"
+msgid "Returns the web page content of \"https://wiki.documentfoundation.org/api.php?hidebots=1&days=7&limit=50&action=feedrecentchanges&feedformat=rss\"."
+msgstr ""
+
+#. Sh332
+#: func_webservice.xhp
+msgctxt ""
+"func_webservice.xhp\n"
+"bm_id2949012\n"
+"help.text"
+msgid "<bookmark_value>FILTERXML function</bookmark_value>"
+msgstr ""
+
+#. bGGCk
+#: func_webservice.xhp
+msgctxt ""
+"func_webservice.xhp\n"
+"hd_id2949012\n"
+"help.text"
+msgid "<variable id=\"filterxmlfuncname\"><link href=\"text/scalc/01/func_webservice.xhp#filterxml\" name=\"filterxml\">FILTERXML</link></variable>"
+msgstr ""
+
+#. 2zvQv
+#: func_webservice.xhp
+msgctxt ""
+"func_webservice.xhp\n"
+"par_id2949893\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_FILTERXML\">Apply a XPath expression to a XML document.</ahelp>"
+msgstr ""
+
+#. p9GGE
+#: func_webservice.xhp
+msgctxt ""
+"func_webservice.xhp\n"
+"par_id2954844\n"
+"help.text"
+msgid "FILTERXML(XML Document; XPath expression)"
+msgstr ""
+
+#. GJnfh
+#: func_webservice.xhp
+msgctxt ""
+"func_webservice.xhp\n"
+"par_id2947469\n"
+"help.text"
+msgid "<emph>XML Document (required):</emph> String containing a valid XML stream."
+msgstr ""
+
+#. ywKvC
+#: func_webservice.xhp
+msgctxt ""
+"func_webservice.xhp\n"
+"par_id2847469\n"
+"help.text"
+msgid "<emph>XPath expression (required):</emph> String containing a valid XPath expression."
+msgstr ""
+
+#. x8Fej
+#: func_webservice.xhp
+msgctxt ""
+"func_webservice.xhp\n"
+"par_id2946142\n"
+"help.text"
+msgid "<item type=\"input\">=FILTERXML(WEBSERVICE(\"wiki.documentfoundation.org/api.php?hidebots=1&days=7&limit=50&action=feedrecentchanges&feedformat=rss\");\"//lastBuildDate\")</item>"
+msgstr ""
+
+#. BCHBF
+#: func_webservice.xhp
+msgctxt ""
+"func_webservice.xhp\n"
+"par_id2946143\n"
+"help.text"
+msgid "Returns information on the last build date of the wiki."
+msgstr ""
+
+#. f4fBh
+#: func_webservice.xhp
+msgctxt ""
+"func_webservice.xhp\n"
+"bm_id811517136840444\n"
+"help.text"
+msgid "<bookmark_value>ENCODEURL function</bookmark_value>"
+msgstr ""
+
+#. MA6Mq
+#: func_webservice.xhp
+msgctxt ""
+"func_webservice.xhp\n"
+"hd_id671517132649769\n"
+"help.text"
+msgid "<variable id=\"encodeurlname\"><link href=\"text/scalc/01/func_webservice.xhp#encodeurl\" name=\"linkname\">ENCODEURL</link></variable>"
+msgstr ""
+
+#. K5FwD
+#: func_webservice.xhp
+msgctxt ""
+"func_webservice.xhp\n"
+"par_id51517132649769\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_ENCODEURL\">Returns a URL-encoded string.</ahelp>"
+msgstr ""
+
+#. UFq7T
+#: func_webservice.xhp
+msgctxt ""
+"func_webservice.xhp\n"
+"par_id721517134647880\n"
+"help.text"
+msgid "Use this function to transform text with symbols of national alphabets (for example accented characters, non-ASCII alphabets or Asian words) to a string of URL-standard symbols."
+msgstr ""
+
+#. 9fgSx
+#: func_webservice.xhp
+msgctxt ""
+"func_webservice.xhp\n"
+"par_id351517132879400\n"
+"help.text"
+msgid "ENCODEURL(Text)"
+msgstr ""
+
+#. GjshQ
+#: func_webservice.xhp
+msgctxt ""
+"func_webservice.xhp\n"
+"par_id921517132924079\n"
+"help.text"
+msgid "<emph>Text</emph>: String to encode to a sequence of URL-standard symbols."
+msgstr ""
+
+#. XBjTR
+#: func_webservice.xhp
+msgctxt ""
+"func_webservice.xhp\n"
+"par_id651517132994921\n"
+"help.text"
+msgid "If cell A1 contains the Cyrillic text \"автомобиль\", <item type=\"input\">=ENCODEURL(A1)</item> returns %D0%B0%D0%B2%D1%82%D0%BE%D0%BC%D0%BE%D0%B1%D0%B8%D0%BB%D1%8C (the word \"автомобиль\" means car in Russian)."
+msgstr ""
+
+#. MRAnM
+#: func_webservice.xhp
+msgctxt ""
+"func_webservice.xhp\n"
+"par_id991517133057478\n"
+"help.text"
+msgid "If cell B1 contains the text \"車\", <item type=\"input\">=ENCODEURL(B1)</item> returns %E8%BB%8A (\"車\" means car in Japanese)."
+msgstr ""
+
+#. VBELn
+#: func_weekday.xhp
+msgctxt ""
+"func_weekday.xhp\n"
+"tit\n"
+"help.text"
+msgid "WEEKDAY"
+msgstr ""
+
+#. ZNhAN
+#: func_weekday.xhp
+msgctxt ""
+"func_weekday.xhp\n"
+"bm_id3154925\n"
+"help.text"
+msgid "<bookmark_value>WEEKDAY function</bookmark_value>"
+msgstr ""
+
+#. 9jDCy
+#: func_weekday.xhp
+msgctxt ""
+"func_weekday.xhp\n"
+"hd_id3154925\n"
+"help.text"
+msgid "<variable id=\"weekday\"><link href=\"text/scalc/01/func_weekday.xhp\">WEEKDAY</link> </variable>"
+msgstr ""
+
+#. mcyKX
+#: func_weekday.xhp
+msgctxt ""
+"func_weekday.xhp\n"
+"par_id3154228\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. For other types, see the table below."
+msgstr ""
+
+#. SaqiJ
+#: func_weekday.xhp
+msgctxt ""
+"func_weekday.xhp\n"
+"par_id3149033\n"
+"help.text"
+msgid "WEEKDAY(Number [; Type])"
+msgstr ""
+
+#. mcF52
+#: func_weekday.xhp
+msgctxt ""
+"func_weekday.xhp\n"
+"par_id3149046\n"
+"help.text"
+msgid "<emph>Number</emph>, as a date value, is a decimal for which the weekday is to be returned."
+msgstr ""
+
+#. fLTFN
+#: func_weekday.xhp
+msgctxt ""
+"func_weekday.xhp\n"
+"par_id3154394\n"
+"help.text"
+msgid "<emph>Type</emph> is optional and determines the type of calculation."
+msgstr ""
+
+#. E7Ad6
+#: func_weekday.xhp
+msgctxt ""
+"func_weekday.xhp\n"
+"par_id050220170615596613\n"
+"help.text"
+msgid "Type"
+msgstr ""
+
+#. CUDRi
+#: func_weekday.xhp
+msgctxt ""
+"func_weekday.xhp\n"
+"par_id05022017061559141\n"
+"help.text"
+msgid "Weekday number returned"
+msgstr ""
+
+#. JZdWn
+#: func_weekday.xhp
+msgctxt ""
+"func_weekday.xhp\n"
+"par_id050220170615599995\n"
+"help.text"
+msgid "1 or omitted"
+msgstr ""
+
+#. HaFSu
+#: 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 ""
+
+#. wHMXY
+#: func_weekday.xhp
+msgctxt ""
+"func_weekday.xhp\n"
+"par_id050220170615596260\n"
+"help.text"
+msgid "1 (Monday) through 7 (Sunday)."
+msgstr ""
+
+#. Fhihd
+#: func_weekday.xhp
+msgctxt ""
+"func_weekday.xhp\n"
+"par_id050220170615597630\n"
+"help.text"
+msgid "0 (Monday) through 6 (Sunday)"
+msgstr ""
+
+#. ZKiEn
+#: func_weekday.xhp
+msgctxt ""
+"func_weekday.xhp\n"
+"par_id050220170615592023\n"
+"help.text"
+msgid "1 (Monday) through 7 (Sunday)."
+msgstr ""
+
+#. BGmPr
+#: func_weekday.xhp
+msgctxt ""
+"func_weekday.xhp\n"
+"par_id050220170615591349\n"
+"help.text"
+msgid "1 (Tuesday) through 7 (Monday)."
+msgstr ""
+
+#. QAN6k
+#: func_weekday.xhp
+msgctxt ""
+"func_weekday.xhp\n"
+"par_id050220170615593664\n"
+"help.text"
+msgid "1 (Wednesday) through 7 (Tuesday)."
+msgstr ""
+
+#. jrbXZ
+#: func_weekday.xhp
+msgctxt ""
+"func_weekday.xhp\n"
+"par_id050220170615599110\n"
+"help.text"
+msgid "1 (Thursday) through 7 (Wednesday)."
+msgstr ""
+
+#. 6RzFd
+#: func_weekday.xhp
+msgctxt ""
+"func_weekday.xhp\n"
+"par_id05022017061600535\n"
+"help.text"
+msgid "1 (Friday) through 7 (Thursday)."
+msgstr ""
+
+#. gMLHQ
+#: func_weekday.xhp
+msgctxt ""
+"func_weekday.xhp\n"
+"par_id050220170616003219\n"
+"help.text"
+msgid "1 (Saturday) through 7 (Friday)."
+msgstr ""
+
+#. ypPnV
+#: func_weekday.xhp
+msgctxt ""
+"func_weekday.xhp\n"
+"par_id050220170616002095\n"
+"help.text"
+msgid "1 (Sunday) through 7 (Saturday)."
+msgstr ""
+
+#. ETGT2
+#: func_weekday.xhp
+msgctxt ""
+"func_weekday.xhp\n"
+"par_id3156188\n"
+"help.text"
+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><item type=\"menuitem\">- %PRODUCTNAME Calc - Calculate</item>."
+msgstr ""
+
+#. A9eLB
+#: func_weekday.xhp
+msgctxt ""
+"func_weekday.xhp\n"
+"par_id3150317\n"
+"help.text"
+msgid "<item type=\"input\">=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 ""
+
+#. yaCAz
+#: func_weekday.xhp
+msgctxt ""
+"func_weekday.xhp\n"
+"par_id3153174\n"
+"help.text"
+msgid "<item type=\"input\">=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 ""
+
+#. h9QAe
+#: func_weekday.xhp
+msgctxt ""
+"func_weekday.xhp\n"
+"par_id3153525\n"
+"help.text"
+msgid "<item type=\"input\">=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 ""
+
+#. QFoH9
+#: func_weekday.xhp
+msgctxt ""
+"func_weekday.xhp\n"
+"par_id050220170616006699\n"
+"help.text"
+msgid "<item type=\"input\">=WEEKDAY(\"2017-05-02\";14)</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 ""
+
+#. wVWSR
+#: func_weekday.xhp
+msgctxt ""
+"func_weekday.xhp\n"
+"par_id3150575\n"
+"help.text"
+msgid "<item type=\"input\">=WEEKDAY(NOW())</item> returns the number of the current day."
+msgstr ""
+
+#. NfoSb
+#: func_weekday.xhp
+msgctxt ""
+"func_weekday.xhp\n"
+"par_id3150588\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/><item type=\"input\">IF(WEEKDAY(A1;2)<6;\"Business day\";\"Weekend\")</item>"
+msgstr ""
+
+#. 3iMGJ
+#: func_weeknum.xhp
+msgctxt ""
+"func_weeknum.xhp\n"
+"tit\n"
+"help.text"
+msgid "WEEKNUM"
+msgstr ""
+
+#. BaYVW
+#: func_weeknum.xhp
+msgctxt ""
+"func_weeknum.xhp\n"
+"bm_id3159161\n"
+"help.text"
+msgid "<bookmark_value>WEEKNUM function</bookmark_value>"
+msgstr ""
+
+#. E8jrM
+#: func_weeknum.xhp
+msgctxt ""
+"func_weeknum.xhp\n"
+"hd_id3159161\n"
+"help.text"
+msgid "<variable id=\"weeknum\"><link href=\"text/scalc/01/func_weeknum.xhp\">WEEKNUM</link></variable>"
+msgstr ""
+
+#. GAuAj
+#: func_weeknum.xhp
+msgctxt ""
+"func_weeknum.xhp\n"
+"par_id3149770\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 ""
+
+#. QWFJB
+#: func_weeknum.xhp
+msgctxt ""
+"func_weeknum.xhp\n"
+"par_id3147220\n"
+"help.text"
+msgid "Supported are two week numbering systems:"
+msgstr ""
+
+#. NzGtR
+#: func_weeknum.xhp
+msgctxt ""
+"func_weeknum.xhp\n"
+"par_id851535122363435\n"
+"help.text"
+msgid "System"
+msgstr ""
+
+#. V79BD
+#: func_weeknum.xhp
+msgctxt ""
+"func_weeknum.xhp\n"
+"par_id691535122363437\n"
+"help.text"
+msgid "System 1"
+msgstr ""
+
+#. MKNUg
+#: func_weeknum.xhp
+msgctxt ""
+"func_weeknum.xhp\n"
+"par_id3147221\n"
+"help.text"
+msgid "The week containing January 1 is the first week of the year, and is numbered week 1."
+msgstr ""
+
+#. PmdpG
+#: func_weeknum.xhp
+msgctxt ""
+"func_weeknum.xhp\n"
+"par_id741535122455285\n"
+"help.text"
+msgid "System 2"
+msgstr ""
+
+#. yDkz6
+#: func_weeknum.xhp
+msgctxt ""
+"func_weeknum.xhp\n"
+"par_id3147222\n"
+"help.text"
+msgid "The week containing the first Thursday of the year is the first week of the year, and is numbered week 1. That means that week number 1 of any year is the week that contains January 4th. ISO 8601 defines this system and that the week starts on Monday."
+msgstr ""
+
+#. ECkdz
+#: func_weeknum.xhp
+msgctxt ""
+"func_weeknum.xhp\n"
+"par_id3147236\n"
+"help.text"
+msgid "WEEKNUM(Number [; Mode])"
+msgstr ""
+
+#. wCJF5
+#: func_weeknum.xhp
+msgctxt ""
+"func_weeknum.xhp\n"
+"par_id3147511\n"
+"help.text"
+msgid "<emph>Number</emph> is the internal date number."
+msgstr ""
+
+#. HpFef
+#: func_weeknum.xhp
+msgctxt ""
+"func_weeknum.xhp\n"
+"par_id3154269\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 ""
+
+#. KuXQp
+#: func_weeknum.xhp
+msgctxt ""
+"func_weeknum.xhp\n"
+"par_id961535122993923\n"
+"help.text"
+msgid "System"
+msgstr ""
+
+#. uEJNW
+#: func_weeknum.xhp
+msgctxt ""
+"func_weeknum.xhp\n"
+"par_id151535122633826\n"
+"help.text"
+msgid "Mode"
+msgstr ""
+
+#. 25gDy
+#: func_weeknum.xhp
+msgctxt ""
+"func_weeknum.xhp\n"
+"par_id231535122633827\n"
+"help.text"
+msgid "Day of the week"
+msgstr ""
+
+#. Z3tg5
+#: func_weeknum.xhp
+msgctxt ""
+"func_weeknum.xhp\n"
+"par_id531535124180000\n"
+"help.text"
+msgid "System 1"
+msgstr ""
+
+#. vLECS
+#: func_weeknum.xhp
+msgctxt ""
+"func_weeknum.xhp\n"
+"par_id351535122633828\n"
+"help.text"
+msgid "Sunday"
+msgstr ""
+
+#. BVTzb
+#: func_weeknum.xhp
+msgctxt ""
+"func_weeknum.xhp\n"
+"par_id591535122756686\n"
+"help.text"
+msgid "Monday"
+msgstr ""
+
+#. 6CECw
+#: func_weeknum.xhp
+msgctxt ""
+"func_weeknum.xhp\n"
+"par_id881535122835126\n"
+"help.text"
+msgid "Monday"
+msgstr ""
+
+#. VDBxg
+#: func_weeknum.xhp
+msgctxt ""
+"func_weeknum.xhp\n"
+"par_id241535122903569\n"
+"help.text"
+msgid "Tuesday"
+msgstr ""
+
+#. YXkUY
+#: func_weeknum.xhp
+msgctxt ""
+"func_weeknum.xhp\n"
+"par_id31535124277973\n"
+"help.text"
+msgid "Wednesday"
+msgstr ""
+
+#. cHLNk
+#: func_weeknum.xhp
+msgctxt ""
+"func_weeknum.xhp\n"
+"par_id21535124310462\n"
+"help.text"
+msgid "Thursday"
+msgstr ""
+
+#. AASNE
+#: func_weeknum.xhp
+msgctxt ""
+"func_weeknum.xhp\n"
+"par_id921535124365435\n"
+"help.text"
+msgid "Friday"
+msgstr ""
+
+#. DbdFV
+#: func_weeknum.xhp
+msgctxt ""
+"func_weeknum.xhp\n"
+"par_id211535124416253\n"
+"help.text"
+msgid "Saturday"
+msgstr ""
+
+#. mMFwp
+#: func_weeknum.xhp
+msgctxt ""
+"func_weeknum.xhp\n"
+"par_id461535124473824\n"
+"help.text"
+msgid "Sunday"
+msgstr ""
+
+#. DHhy6
+#: func_weeknum.xhp
+msgctxt ""
+"func_weeknum.xhp\n"
+"par_id471535124489997\n"
+"help.text"
+msgid "System 2"
+msgstr ""
+
+#. AETJQ
+#: func_weeknum.xhp
+msgctxt ""
+"func_weeknum.xhp\n"
+"par_id391535124564520\n"
+"help.text"
+msgid "Monday (ISO 8601)"
+msgstr ""
+
+#. GZVfa
+#: func_weeknum.xhp
+msgctxt ""
+"func_weeknum.xhp\n"
+"par_id661535124640643\n"
+"help.text"
+msgid "(ISO 8601, for interoperability with Gnumeric)"
+msgstr ""
+
+#. ypiiG
+#: func_weeknum.xhp
+msgctxt ""
+"func_weeknum.xhp\n"
+"par_id3150704\n"
+"help.text"
+msgid "<item type=\"input\">=WEEKNUM(DATE(1995;1;1);1)</item> returns 1"
+msgstr ""
+
+#. ADL9J
+#: func_weeknum.xhp
+msgctxt ""
+"func_weeknum.xhp\n"
+"par_id3149792\n"
+"help.text"
+msgid "<item type=\"input\">=WEEKNUM(DATE(1995;1;1);2)</item> returns 1. Using System 1, the week containing January 1 is the first week of the year."
+msgstr ""
+
+#. yBDGQ
+#: func_weeknum.xhp
+msgctxt ""
+"func_weeknum.xhp\n"
+"par_id3149793\n"
+"help.text"
+msgid "<item type=\"input\">=WEEKNUM(DATE(1995;1;1);21)</item> returns 52. Week 1 starts on Monday, 1995-01-02."
+msgstr ""
+
+#. BMbyY
+#: func_weeknum.xhp
+msgctxt ""
+"func_weeknum.xhp\n"
+"par_id3149794\n"
+"help.text"
+msgid "<item type=\"input\">=WEEKNUM(DATE(1999;1;1);21)</item> returns 53. Week 1 starts on Monday, 1999-01-04."
+msgstr ""
+
+#. ZoCGw
+#: func_weeknum_ooo.xhp
+msgctxt ""
+"func_weeknum_ooo.xhp\n"
+"tit\n"
+"help.text"
+msgid "WEEKNUM_OOO"
+msgstr ""
+
+#. KFFXx
+#: func_weeknum_ooo.xhp
+msgctxt ""
+"func_weeknum_ooo.xhp\n"
+"bm_id3159161\n"
+"help.text"
+msgid "<bookmark_value>WEEKNUM_OOO function</bookmark_value>"
+msgstr ""
+
+#. BFsEh
+#: func_weeknum_ooo.xhp
+msgctxt ""
+"func_weeknum_ooo.xhp\n"
+"hd_id3159161\n"
+"help.text"
+msgid "<variable id=\"weeknum_ooo\"><link href=\"text/scalc/01/func_weeknum_ooo.xhp\">WEEKNUM_OOO</link></variable>"
+msgstr ""
+
+#. 7iF3F
+#: func_weeknum_ooo.xhp
+msgctxt ""
+"func_weeknum_ooo.xhp\n"
+"par_id3149770\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 ""
+
+#. B9He5
+#: func_weeknum_ooo.xhp
+msgctxt ""
+"func_weeknum_ooo.xhp\n"
+"par_idN105E4\n"
+"help.text"
+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 ""
+
+#. rTYE7
+#: func_weeknum_ooo.xhp
+msgctxt ""
+"func_weeknum_ooo.xhp\n"
+"par_id3147236\n"
+"help.text"
+msgid "WEEKNUM_OOO(Number; Mode)"
+msgstr ""
+
+#. AABCv
+#: func_weeknum_ooo.xhp
+msgctxt ""
+"func_weeknum_ooo.xhp\n"
+"par_id3147511\n"
+"help.text"
+msgid "<emph>Number</emph> is the internal date number."
+msgstr ""
+
+#. t6K5q
+#: func_weeknum_ooo.xhp
+msgctxt ""
+"func_weeknum_ooo.xhp\n"
+"par_id3154269\n"
+"help.text"
+msgid "<emph>Mode</emph> sets the start of the week and the calculation type."
+msgstr ""
+
+#. Fhoer
+#: func_weeknum_ooo.xhp
+msgctxt ""
+"func_weeknum_ooo.xhp\n"
+"par_id3148930\n"
+"help.text"
+msgid "1 = Sunday"
+msgstr ""
+
+#. 6VBHS
+#: func_weeknum_ooo.xhp
+msgctxt ""
+"func_weeknum_ooo.xhp\n"
+"par_id3154280\n"
+"help.text"
+msgid "2 = Monday (ISO 8601)"
+msgstr ""
+
+#. Fw3wN
+#: func_weeknum_ooo.xhp
+msgctxt ""
+"func_weeknum_ooo.xhp\n"
+"par_id3154281\n"
+"help.text"
+msgid "any other value = Monday (ISO 8601)"
+msgstr ""
+
+#. 9DDAr
+#: func_weeknum_ooo.xhp
+msgctxt ""
+"func_weeknum_ooo.xhp\n"
+"par_id3150704\n"
+"help.text"
+msgid "<item type=\"input\">=WEEKNUM_OOO(DATE(1995;1;1);1)</item> returns 1"
+msgstr ""
+
+#. ZNtES
+#: func_weeknum_ooo.xhp
+msgctxt ""
+"func_weeknum_ooo.xhp\n"
+"par_id3149792\n"
+"help.text"
+msgid "<item type=\"input\">=WEEKNUM_OOO(DATE(1995;1;1);2)</item> returns 52. Week 1 starts on Monday, 1995-01-02."
+msgstr ""
+
+#. 9CdUK
+#: func_weeknumadd.xhp
+msgctxt ""
+"func_weeknumadd.xhp\n"
+"tit\n"
+"help.text"
+msgid "WEEKNUM_EXCEL2003"
+msgstr ""
+
+#. gXkPE
+#: func_weeknumadd.xhp
+msgctxt ""
+"func_weeknumadd.xhp\n"
+"bm_id3166443\n"
+"help.text"
+msgid "<bookmark_value>WEEKNUM_EXCEL2003 function</bookmark_value>"
+msgstr ""
+
+#. VFR8E
+#: func_weeknumadd.xhp
+msgctxt ""
+"func_weeknumadd.xhp\n"
+"hd_id3166443\n"
+"help.text"
+msgid "<variable id=\"weeknumadd\"><link href=\"text/scalc/01/func_weeknumadd.xhp\">WEEKNUM_EXCEL2003</link></variable>"
+msgstr ""
+
+#. f4BaS
+#: func_weeknumadd.xhp
+msgctxt ""
+"func_weeknumadd.xhp\n"
+"par_id3152945\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_WEEKNUM\">The result indicates the number of the calendar week for a date.</ahelp>"
+msgstr ""
+
+#. qxipg
+#: func_weeknumadd.xhp
+msgctxt ""
+"func_weeknumadd.xhp\n"
+"par_idN105DD\n"
+"help.text"
+msgid "The WEEKNUM_EXCEL2003 function is designed to calculate week numbers exactly as Microsoft Excel 2003 did. Use the <link href=\"text/scalc/01/func_weeknum.xhp\">WEEKNUM</link> function for ODF OpenFormula and Excel 2010 compatibility, or <link href=\"text/scalc/01/func_isoweeknum.xhp\">ISOWEEKNUM</link> function when you just need ISO 8601 week numbers. In releases prior to $[officename] 5.1 WEEKNUM_EXCEL2003 was named WEEKNUM_ADD."
+msgstr ""
+
+#. JEG4n
+#: func_weeknumadd.xhp
+msgctxt ""
+"func_weeknumadd.xhp\n"
+"par_id3153685\n"
+"help.text"
+msgid "WEEKNUM_EXCEL2003(Date; ReturnType)"
+msgstr ""
+
+#. z7Axj
+#: func_weeknumadd.xhp
+msgctxt ""
+"func_weeknumadd.xhp\n"
+"par_id3159277\n"
+"help.text"
+msgid "<emph>Date</emph> is the date within the calendar week."
+msgstr ""
+
+#. GLSoR
+#: func_weeknumadd.xhp
+msgctxt ""
+"func_weeknumadd.xhp\n"
+"par_id3154098\n"
+"help.text"
+msgid "<emph>ReturnType</emph> is 1 for week beginning on a Sunday, 2 for week beginning on a Monday."
+msgstr ""
+
+#. wEqPH
+#: func_weeknumadd.xhp
+msgctxt ""
+"func_weeknumadd.xhp\n"
+"par_id3149973\n"
+"help.text"
+msgid "In which week number does 2001-12-24 fall?"
+msgstr ""
+
+#. CUc3E
+#: func_weeknumadd.xhp
+msgctxt ""
+"func_weeknumadd.xhp\n"
+"par_id3149914\n"
+"help.text"
+msgid "<item type=\"input\">=WEEKNUM_EXCEL2003(DATE(2001;12;24);1)</item> returns 52."
+msgstr ""
+
+#. ibEk3
+#: func_workday.intl.xhp
+msgctxt ""
+"func_workday.intl.xhp\n"
+"tit\n"
+"help.text"
+msgid "WORKDAY.INTL"
+msgstr ""
+
+#. GToZR
+#: func_workday.intl.xhp
+msgctxt ""
+"func_workday.intl.xhp\n"
+"bm_id231020162341219565\n"
+"help.text"
+msgid "<bookmark_value>WORKDAY.INTL function</bookmark_value>"
+msgstr ""
+
+#. nVE73
+#: func_workday.intl.xhp
+msgctxt ""
+"func_workday.intl.xhp\n"
+"hd_id231020162348002143\n"
+"help.text"
+msgid "<variable id=\"workdaysintl\"><link href=\"text/scalc/01/func_workday.intl.xhp\">WORKDAY.INTL</link></variable>"
+msgstr ""
+
+#. m53Cb
+#: func_workday.intl.xhp
+msgctxt ""
+"func_workday.intl.xhp\n"
+"par_id23102016234837285\n"
+"help.text"
+msgid "<ahelp hid=\".\">Returns the date calculated from a start date with a specific number of work days, before or after the start date. The calculation can include week-ends and holidays as non-working days.</ahelp>"
+msgstr ""
+
+#. 9r2Ns
+#: func_workday.intl.xhp
+msgctxt ""
+"func_workday.intl.xhp\n"
+"par_id241020160008306838\n"
+"help.text"
+msgid "WORKDAY.INTL(StartDate; Days [; Weekend [; Holidays]])"
+msgstr ""
+
+#. gJg5G
+#: func_workday.intl.xhp
+msgctxt ""
+"func_workday.intl.xhp\n"
+"par_id241020160008308885\n"
+"help.text"
+msgid "<emph>StartDate</emph>: is the date from when the calculation is carried out."
+msgstr ""
+
+#. CVBCb
+#: func_workday.intl.xhp
+msgctxt ""
+"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 ""
+
+#. 89PEa
+#: func_workday.intl.xhp
+msgctxt ""
+"func_workday.intl.xhp\n"
+"par_id241020160012177196\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 ""
+
+#. HnXyC
+#: func_workday.intl.xhp
+msgctxt ""
+"func_workday.intl.xhp\n"
+"par_id241020160012178429\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 ""
+
+#. PRAcf
+#: func_workday.intl.xhp
+msgctxt ""
+"func_workday.intl.xhp\n"
+"par_id241020160012172125\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 ""
+
+#. NrXSh
+#: func_workday.intl.xhp
+msgctxt ""
+"func_workday.intl.xhp\n"
+"par_id241020160012177923\n"
+"help.text"
+msgid "<item type=\"input\">=WORKDAY.INTL(C3;D3;;F3:J3)</item> returns January 11, 2017 in the result cell, say D6 (use date format for the cell)."
+msgstr ""
+
+#. LGcmi
+#: func_workday.intl.xhp
+msgctxt ""
+"func_workday.intl.xhp\n"
+"par_id24102016001217206\n"
+"help.text"
+msgid "To define Friday and Saturday as weekend days, use the weekend parameter 7."
+msgstr ""
+
+#. MCkSA
+#: func_workday.intl.xhp
+msgctxt ""
+"func_workday.intl.xhp\n"
+"par_id241020160012178562\n"
+"help.text"
+msgid "<item type=\"input\">=WORKDAY.INTL(C3;D3;7;F3:J3)</item> returns January 15, 2017 with weekend parameter 7."
+msgstr ""
+
+#. gdAdN
+#: func_workday.intl.xhp
+msgctxt ""
+"func_workday.intl.xhp\n"
+"par_id241020160012176149\n"
+"help.text"
+msgid "To define Sunday only the weekend day, use the weekend parameter 11."
+msgstr ""
+
+#. QuBHp
+#: func_workday.intl.xhp
+msgctxt ""
+"func_workday.intl.xhp\n"
+"par_id241020160012181455\n"
+"help.text"
+msgid "<item type=\"input\">=WORKDAY.INTL(C3;D3;11;F3:J3)</item> returns January 9, 2017."
+msgstr ""
+
+#. ySGjs
+#: func_workday.intl.xhp
+msgctxt ""
+"func_workday.intl.xhp\n"
+"par_id24102016001218469\n"
+"help.text"
+msgid "Alternatively, use the weekend string \"0000001\" for Sunday only weekend."
+msgstr ""
+
+#. rCTTJ
+#: func_workday.intl.xhp
+msgctxt ""
+"func_workday.intl.xhp\n"
+"par_id241020160012183680\n"
+"help.text"
+msgid "<item type=\"input\">=WORKDAY.INTL(C3;D3;\"0000001\";F3:J3)</item> returns January 9, 2017."
+msgstr ""
+
+#. 3Xzsr
+#: func_workday.intl.xhp
+msgctxt ""
+"func_workday.intl.xhp\n"
+"par_id241020160012181870\n"
+"help.text"
+msgid "The function can be used without the two optional parameters – Weekday and Holidays – by leaving them out:"
+msgstr ""
+
+#. NvAre
+#: func_workday.intl.xhp
+msgctxt ""
+"func_workday.intl.xhp\n"
+"par_id241020160012182048\n"
+"help.text"
+msgid "<item type=\"input\">=WORKDAY.INTL(C3;D3)</item> gives the result: January 10, 2017."
+msgstr ""
+
+#. 5dvmu
+#: func_workday.xhp
+msgctxt ""
+"func_workday.xhp\n"
+"tit\n"
+"help.text"
+msgid "WORKDAY"
+msgstr ""
+
+#. GnRRw
+#: func_workday.xhp
+msgctxt ""
+"func_workday.xhp\n"
+"bm_id3149012\n"
+"help.text"
+msgid "<bookmark_value>WORKDAY function</bookmark_value>"
+msgstr ""
+
+#. 9vsBW
+#: func_workday.xhp
+msgctxt ""
+"func_workday.xhp\n"
+"hd_id3149012\n"
+"help.text"
+msgid "<variable id=\"workday\"><link href=\"text/scalc/01/func_workday.xhp\">WORKDAY</link></variable>"
+msgstr ""
+
+#. HC2v5
+#: func_workday.xhp
+msgctxt ""
+"func_workday.xhp\n"
+"par_id3149893\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 ""
+
+#. NDtoU
+#: func_workday.xhp
+msgctxt ""
+"func_workday.xhp\n"
+"par_id3154844\n"
+"help.text"
+msgid "WORKDAY(StartDate; Days [; Holidays])"
+msgstr ""
+
+#. 35EG5
+#: func_workday.xhp
+msgctxt ""
+"func_workday.xhp\n"
+"par_id3147469\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 ""
+
+#. rQ2hM
+#: func_workday.xhp
+msgctxt ""
+"func_workday.xhp\n"
+"par_id3153038\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 ""
+
+#. HNeMW
+#: func_workday.xhp
+msgctxt ""
+"func_workday.xhp\n"
+"par_id3150693\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 ""
+
+#. 25DRr
+#: func_workday.xhp
+msgctxt ""
+"func_workday.xhp\n"
+"par_id3152782\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 ""
+
+#. FowYw
+#: func_workday.xhp
+msgctxt ""
+"func_workday.xhp\n"
+"par_id3146142\n"
+"help.text"
+msgid "<item type=\"input\">=WORKDAY(C3;D3;F3:J3)</item> returns 2001-12-28. Format the serial date number as a date, for example in the format YYYY-MM-DD."
+msgstr ""
+
+#. tHNNK
+#: func_workday.xhp
+msgctxt ""
+"func_workday.xhp\n"
+"par_id23102016225717242\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060102.xhp\">Date functions</link>"
+msgstr ""
+
+#. dABAX
+#: func_year.xhp
+msgctxt ""
+"func_year.xhp\n"
+"tit\n"
+"help.text"
+msgid "YEAR"
+msgstr ""
+
+#. HAB7u
+#: func_year.xhp
+msgctxt ""
+"func_year.xhp\n"
+"bm_id3153982\n"
+"help.text"
+msgid "<bookmark_value>YEAR function</bookmark_value>"
+msgstr ""
+
+#. 3RaCk
+#: func_year.xhp
+msgctxt ""
+"func_year.xhp\n"
+"hd_id3153982\n"
+"help.text"
+msgid "<variable id=\"year\"><link href=\"text/scalc/01/func_year.xhp\">YEAR</link></variable>"
+msgstr ""
+
+#. jfsgr
+#: func_year.xhp
+msgctxt ""
+"func_year.xhp\n"
+"par_id3147496\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_JAHR\">Returns the year as a number according to the <link href=\"text/scalc/01/04060102.xhp#datebase\" name=\"date calculation rules\">internal calculation rules</link>.</ahelp>"
+msgstr ""
+
+#. 3SfLe
+#: func_year.xhp
+msgctxt ""
+"func_year.xhp\n"
+"par_id3154304\n"
+"help.text"
+msgid "YEAR(Number)"
+msgstr ""
+
+#. dX9B6
+#: func_year.xhp
+msgctxt ""
+"func_year.xhp\n"
+"par_id3156013\n"
+"help.text"
+msgid "<emph>Number</emph> shows the internal date value for which the year is to be returned."
+msgstr ""
+
+#. 3RPng
+#: func_year.xhp
+msgctxt ""
+"func_year.xhp\n"
+"par_id3145668\n"
+"help.text"
+msgid "<item type=\"input\">=YEAR(1)</item> returns 1899"
+msgstr ""
+
+#. EVA6h
+#: func_year.xhp
+msgctxt ""
+"func_year.xhp\n"
+"par_id3151168\n"
+"help.text"
+msgid "<item type=\"input\">=YEAR(2)</item> returns 1900"
+msgstr ""
+
+#. umB3f
+#: func_year.xhp
+msgctxt ""
+"func_year.xhp\n"
+"par_id3150115\n"
+"help.text"
+msgid "<item type=\"input\">=YEAR(33333.33)</item> returns 1991"
+msgstr ""
+
+#. YXa5g
+#: func_year.xhp
+msgctxt ""
+"func_year.xhp\n"
+"par_id141577548861101\n"
+"help.text"
+msgid "<input>=YEAR(DATEVALUE('2010-09-28'))</input> returns 2010."
+msgstr ""
+
+#. kAjPe
+#: func_yearfrac.xhp
+msgctxt ""
+"func_yearfrac.xhp\n"
+"tit\n"
+"help.text"
+msgid "YEARFRAC"
+msgstr ""
+
+#. mm7eU
+#: func_yearfrac.xhp
+msgctxt ""
+"func_yearfrac.xhp\n"
+"bm_id3148735\n"
+"help.text"
+msgid "<bookmark_value>YEARFRAC function</bookmark_value>"
+msgstr ""
+
+#. iWGEg
+#: func_yearfrac.xhp
+msgctxt ""
+"func_yearfrac.xhp\n"
+"hd_id3148735\n"
+"help.text"
+msgid "<variable id=\"yearfrac\"><link href=\"text/scalc/01/func_yearfrac.xhp\">YEARFRAC</link></variable>"
+msgstr ""
+
+#. BFAtV
+#: func_yearfrac.xhp
+msgctxt ""
+"func_yearfrac.xhp\n"
+"par_id3150899\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 ""
+
+#. DBBsL
+#: func_yearfrac.xhp
+msgctxt ""
+"func_yearfrac.xhp\n"
+"par_id3155823\n"
+"help.text"
+msgid "YEARFRAC(StartDate; EndDate [; Basis])"
+msgstr ""
+
+#. JAA8u
+#: func_yearfrac.xhp
+msgctxt ""
+"func_yearfrac.xhp\n"
+"par_id3145144\n"
+"help.text"
+msgid "<emph>StartDate</emph> and <emph>EndDate</emph> are two date values."
+msgstr ""
+
+#. 3QzPn
+#: func_yearfrac.xhp
+msgctxt ""
+"func_yearfrac.xhp\n"
+"par_id3149954\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 ""
+
+#. HgwU8
+#: func_yearfrac.xhp
+msgctxt ""
+"func_yearfrac.xhp\n"
+"par_id3146847\n"
+"help.text"
+msgid "Basis"
+msgstr ""
+
+#. HrUPv
+#: func_yearfrac.xhp
+msgctxt ""
+"func_yearfrac.xhp\n"
+"par_id3155956\n"
+"help.text"
+msgid "Calculation"
+msgstr ""
+
+#. Q8ewH
+#: func_yearfrac.xhp
+msgctxt ""
+"func_yearfrac.xhp\n"
+"par_id3154502\n"
+"help.text"
+msgid "0 or missing"
+msgstr ""
+
+#. CkPny
+#: func_yearfrac.xhp
+msgctxt ""
+"func_yearfrac.xhp\n"
+"par_id3149877\n"
+"help.text"
+msgid "US method (NASD), 12 months of 30 days each"
+msgstr ""
+
+#. EKpyM
+#: func_yearfrac.xhp
+msgctxt ""
+"func_yearfrac.xhp\n"
+"par_id3154326\n"
+"help.text"
+msgid "Exact number of days in months, exact number of days in year"
+msgstr ""
+
+#. iCCDX
+#: func_yearfrac.xhp
+msgctxt ""
+"func_yearfrac.xhp\n"
+"par_id3155620\n"
+"help.text"
+msgid "Exact number of days in month, year has 360 days"
+msgstr ""
+
+#. CBDJh
+#: func_yearfrac.xhp
+msgctxt ""
+"func_yearfrac.xhp\n"
+"par_id3148394\n"
+"help.text"
+msgid "Exact number of days in month, year has 365 days"
+msgstr ""
+
+#. 32hC2
+#: func_yearfrac.xhp
+msgctxt ""
+"func_yearfrac.xhp\n"
+"par_id3150931\n"
+"help.text"
+msgid "European method, 12 months of 30 days each"
+msgstr ""
+
+#. E8bDB
+#: func_yearfrac.xhp
+msgctxt ""
+"func_yearfrac.xhp\n"
+"par_id3149007\n"
+"help.text"
+msgid "What fraction of the year 2008 lies between 2008-01-01 and 2008-07-01?"
+msgstr ""
+
+#. cAAsz
+#: func_yearfrac.xhp
+msgctxt ""
+"func_yearfrac.xhp\n"
+"par_id3154632\n"
+"help.text"
+msgid "<item type=\"input\">=YEARFRAC(\"2008-01-01\"; \"2008-07-01\";0)</item> returns 0.50."
+msgstr ""
+
+#. keAF3
+#: live_data_stream.xhp
+msgctxt ""
+"live_data_stream.xhp\n"
+"tit\n"
+"help.text"
+msgid "Live Data Stream"
+msgstr ""
+
+#. GvEyi
+#: live_data_stream.xhp
+msgctxt ""
+"live_data_stream.xhp\n"
+"bm_id240920171018528200\n"
+"help.text"
+msgid "<bookmark_value>Data Stream;Live data stream</bookmark_value> <bookmark_value>Data Stream;Streams</bookmark_value>"
+msgstr ""
+
+#. bn3r4
+#: live_data_stream.xhp
+msgctxt ""
+"live_data_stream.xhp\n"
+"hd_id240920171003006302\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/live_data_stream.xhp\">Live Data Stream</link>"
+msgstr ""
+
+#. mB9BH
+#: live_data_stream.xhp
+msgctxt ""
+"live_data_stream.xhp\n"
+"par_id240920171003293400\n"
+"help.text"
+msgid "<ahelp hid=\".\"><variable id=\"streams_desc\">Create live data streams for spreadsheets.</variable></ahelp>"
+msgstr ""
+
+#. GmNXG
+#: live_data_stream.xhp
+msgctxt ""
+"live_data_stream.xhp\n"
+"par_id240920171007389295\n"
+"help.text"
+msgid "Choose <menuitem>Data – Streams</menuitem>"
+msgstr ""
+
+#. aV8Lc
+#: live_data_stream.xhp
+msgctxt ""
+"live_data_stream.xhp\n"
+"par_id221641995264796\n"
+"help.text"
+msgid "Data streaming is the continuous flow of data generated by various sources. In %PRODUCTNAME Calc, data streams can be processed, stored, analyzed, and acted upon as it's generated in real-time."
+msgstr ""
+
+#. KANFG
+#: live_data_stream.xhp
+msgctxt ""
+"live_data_stream.xhp\n"
+"par_id831641996045238\n"
+"help.text"
+msgid "Some real-life examples of streaming data include use cases in every industry, including real-time stock trades, up-to-the-minute retail inventory management, social media feeds, multiplayer game interactions, and ride-sharing apps."
+msgstr ""
+
+#. sWHpE
+#: live_data_stream.xhp
+msgctxt ""
+"live_data_stream.xhp\n"
+"hd_id791641995257145\n"
+"help.text"
+msgid "Source stream"
+msgstr ""
+
+#. dyVdA
+#: live_data_stream.xhp
+msgctxt ""
+"live_data_stream.xhp\n"
+"hd_id931641998122172\n"
+"help.text"
+msgid "URL"
+msgstr ""
+
+#. oYvgF
+#: live_data_stream.xhp
+msgctxt ""
+"live_data_stream.xhp\n"
+"par_id31641995269740\n"
+"help.text"
+msgid "URL of the source document in the local file system or internet."
+msgstr ""
+
+#. 3Bdbh
+#: live_data_stream.xhp
+msgctxt ""
+"live_data_stream.xhp\n"
+"hd_id811641996480534\n"
+"help.text"
+msgid "Interpret stream data as"
+msgstr ""
+
+#. QpvTc
+#: live_data_stream.xhp
+msgctxt ""
+"live_data_stream.xhp\n"
+"par_id591641996318461\n"
+"help.text"
+msgid "<emph>value1,value2,...,valueN, and fill into range</emph>:"
+msgstr ""
+
+#. iB5Fv
+#: live_data_stream.xhp
+msgctxt ""
+"live_data_stream.xhp\n"
+"par_id441641996322078\n"
+"help.text"
+msgid "<emph>address,value</emph>:"
+msgstr ""
+
+#. JYyrF
+#: live_data_stream.xhp
+msgctxt ""
+"live_data_stream.xhp\n"
+"hd_id241641998151807\n"
+"help.text"
+msgid "Empty lines trigger UI refresh"
+msgstr ""
+
+#. CEui4
+#: live_data_stream.xhp
+msgctxt ""
+"live_data_stream.xhp\n"
+"hd_id341641995330350\n"
+"help.text"
+msgid "When new data arrives"
+msgstr ""
+
+#. snU6R
+#: live_data_stream.xhp
+msgctxt ""
+"live_data_stream.xhp\n"
+"par_id731641995339462\n"
+"help.text"
+msgid "There are three features of this option:"
+msgstr ""
+
+#. GLs5t
+#: live_data_stream.xhp
+msgctxt ""
+"live_data_stream.xhp\n"
+"par_id471641995370002\n"
+"help.text"
+msgid "<emph>Move existing data down</emph>: the existing data is moved down in index and the empty space is filled by arriving data. In short, we deal in fix range of indexes."
+msgstr ""
+
+#. nfgHU
+#: live_data_stream.xhp
+msgctxt ""
+"live_data_stream.xhp\n"
+"par_id841641995386510\n"
+"help.text"
+msgid "<emph>Move the range down</emph>: the arriving data is appended at the end of existing data and range of indexes to be processed is shifted."
+msgstr ""
+
+#. 4zg6F
+#: live_data_stream.xhp
+msgctxt ""
+"live_data_stream.xhp\n"
+"par_id1001641996559358\n"
+"help.text"
+msgid "<emph>Overwrite existing data</emph>: the arriving data overrides the existing data."
+msgstr ""
+
+#. ZHiEZ
+#: live_data_stream.xhp
+msgctxt ""
+"live_data_stream.xhp\n"
+"hd_id121641995404922\n"
+"help.text"
+msgid "Maximal Amount of Rows"
+msgstr ""
+
+#. GTkWu
+#: live_data_stream.xhp
+msgctxt ""
+"live_data_stream.xhp\n"
+"par_id961641995414472\n"
+"help.text"
+msgid "Limit the maximum numbers of rows to a specified value or leave undefined, but limited to the %PRODUCTNAME Calc row limit."
+msgstr ""
+
+#. AWPkL
+#: recalculate_hard.xhp
+msgctxt ""
+"recalculate_hard.xhp\n"
+"tit\n"
+"help.text"
+msgid "Recalculate hard"
+msgstr ""
+
+#. EB6vW
+#: recalculate_hard.xhp
+msgctxt ""
+"recalculate_hard.xhp\n"
+"bm_id351645231629404\n"
+"help.text"
+msgid "<bookmark_value>calculate;recalculate hard</bookmark_value> <bookmark_value>formulas;recalculate hard</bookmark_value> <bookmark_value>calculate;force recalculation</bookmark_value> <bookmark_value>formulas;force recalculation</bookmark_value> <bookmark_value>non volatile functions;force recalculation</bookmark_value> <bookmark_value>cell contents;force recalculation</bookmark_value>"
+msgstr ""
+
+#. WXR6C
+#: recalculate_hard.xhp
+msgctxt ""
+"recalculate_hard.xhp\n"
+"hd_id611645217532285\n"
+"help.text"
+msgid "<variable id=\"recalculatehardh1\"><link href=\"text/scalc/01/recalculate_hard.xhp\" name=\"recalculate hard\">Recalculate Hard</link></variable>"
+msgstr ""
+
+#. gCAFM
+#: recalculate_hard.xhp
+msgctxt ""
+"recalculate_hard.xhp\n"
+"par_id631645217532291\n"
+"help.text"
+msgid "Recalculates all formulas in the document, including Add-In functions and non-volatile functions."
+msgstr ""
+
+#. uDfgm
+#: recalculate_hard.xhp
+msgctxt ""
+"recalculate_hard.xhp\n"
+"par_id361645227084327\n"
+"help.text"
+msgid "The <menuitem>Recalculate Hard</menuitem> command forces recalculation of all formula cells of the spreadsheet document, including explicit non-volatile functions, even if no new input event exist. Examples of explicit non-volatile functions are <link href=\"text/scalc/01/04060106.xhp#rand_nv\" name=\"RAND.NV\">RAND.NV</link> and <link href=\"text/scalc/01/04060106.xhp#randbetween_nv\" name=\"RANDBETWEEN.NV\">RANDBETWEEN.NV</link>."
+msgstr ""
+
+#. t5LiZ
+#: shared_spreadsheet.xhp
+msgctxt ""
+"shared_spreadsheet.xhp\n"
+"tit\n"
+"help.text"
+msgid "Sharing Spreadsheets"
+msgstr ""
+
+#. nGSyy
+#: shared_spreadsheet.xhp
+msgctxt ""
+"shared_spreadsheet.xhp\n"
+"bm_id671647274159909\n"
+"help.text"
+msgid "<bookmark_value>share spreadsheet</bookmark_value> <bookmark_value>spreadsheet;collaboration</bookmark_value> <bookmark_value>spreadsheet;share</bookmark_value>"
+msgstr ""
+
+#. 3vzpA
+#: shared_spreadsheet.xhp
+msgctxt ""
+"shared_spreadsheet.xhp\n"
+"hd_id461647272004705\n"
+"help.text"
+msgid "<variable id=\"h1\"><link href=\"text/scalc/01/shared_spreadsheet.xhp\" name=\"Share spreadsheet\">Share Spreadsheet</link></variable>"
+msgstr ""
+
+#. KZGLG
+#: shared_spreadsheet.xhp
+msgctxt ""
+"shared_spreadsheet.xhp\n"
+"par_id551647272004709\n"
+"help.text"
+msgid "Sharing a spreadsheet allows several users to open the same file for editing at the same time."
+msgstr ""
+
+#. 9BuYS
+#: shared_spreadsheet.xhp
+msgctxt ""
+"shared_spreadsheet.xhp\n"
+"par_id211647275285230\n"
+"help.text"
+msgid "The spreadsheet needs to be on a shared drive, server, website, or similar. Some conditions must be met on operating systems with user permission management:"
+msgstr ""
+
+#. 7Cbn3
+#: shared_spreadsheet.xhp
+msgctxt ""
+"shared_spreadsheet.xhp\n"
+"par_id621647275321672\n"
+"help.text"
+msgid "The shared file needs to reside in a location which is accessible by all collaborators."
+msgstr ""
+
+#. 6hGDF
+#: shared_spreadsheet.xhp
+msgctxt ""
+"shared_spreadsheet.xhp\n"
+"par_id731647275360618\n"
+"help.text"
+msgid "The file permissions for both the document and the corresponding lock file need to be set so that all collaborators can create, delete, and change the files."
+msgstr ""
+
+#. UhRSD
+#: shared_spreadsheet.xhp
+msgctxt ""
+"shared_spreadsheet.xhp\n"
+"par_id631647275500217\n"
+"help.text"
+msgid "In order to correctly identify the changes, each collaborator should enter their name in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - %PRODUCTNAME - User Data</menuitem> on the Menu bar."
+msgstr ""
+
+#. k7H5Y
+#: solver.xhp
+msgctxt ""
+"solver.xhp\n"
+"tit\n"
+"help.text"
+msgid "Solver"
+msgstr ""
+
+#. pDGKS
+#: solver.xhp
+msgctxt ""
+"solver.xhp\n"
+"bm_id7654652\n"
+"help.text"
+msgid "<bookmark_value>goal seeking;solver</bookmark_value> <bookmark_value>what if operations;solver</bookmark_value> <bookmark_value>back-solving</bookmark_value> <bookmark_value>solver</bookmark_value> <bookmark_value>mathematical programming;solver for Calc</bookmark_value> <bookmark_value>mathematical optimization;solver for Calc</bookmark_value> <bookmark_value>operations research;solver for Calc</bookmark_value>"
+msgstr ""
+
+#. cBvDd
+#: solver.xhp
+msgctxt ""
+"solver.xhp\n"
+"hd_id9216284\n"
+"help.text"
+msgid "<variable id=\"solver\"><link href=\"text/scalc/01/solver.xhp\">Solver</link></variable>"
+msgstr ""
+
+#. JGk9s
+#: solver.xhp
+msgctxt ""
+"solver.xhp\n"
+"par_id9210486\n"
+"help.text"
+msgid "<ahelp hid=\".\">Opens the Solver dialog. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods.</ahelp>"
+msgstr ""
+
+#. wszcE
+#: solver.xhp
+msgctxt ""
+"solver.xhp\n"
+"hd_id21589912365601\n"
+"help.text"
+msgid "Solver settings"
+msgstr ""
+
+#. gMCQC
+#: solver.xhp
+msgctxt ""
+"solver.xhp\n"
+"par_id501589912905479\n"
+"help.text"
+msgid "Solver settings are not saved to the file by %PRODUCTNAME Calc. Closing and reopening the file will reset the solver dialog to default settings."
+msgstr ""
+
+#. GgVk7
+#: solver.xhp
+msgctxt ""
+"solver.xhp\n"
+"hd_id121589913023217\n"
+"help.text"
+msgid "Target Cell"
+msgstr ""
+
+#. EsgHG
+#: solver.xhp
+msgctxt ""
+"solver.xhp\n"
+"par_id8538773\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized.</ahelp>"
+msgstr ""
+
+#. 9j2m7
+#: solver.xhp
+msgctxt ""
+"solver.xhp\n"
+"hd_id441589913036601\n"
+"help.text"
+msgid "Optimize results to"
+msgstr ""
+
+#. U8Ttv
+#: solver.xhp
+msgctxt ""
+"solver.xhp\n"
+"par_id7564012\n"
+"help.text"
+msgid "<ahelp hid=\".\"><emph>Maximum:</emph> Try to solve the equation for a maximum value of the target cell.</ahelp>"
+msgstr ""
+
+#. N5C2U
+#: solver.xhp
+msgctxt ""
+"solver.xhp\n"
+"par_id1186254\n"
+"help.text"
+msgid "<ahelp hid=\".\"><emph>Minimum:</emph> Try to solve the equation for a minimum value of the target cell.</ahelp>"
+msgstr ""
+
+#. JAo82
+#: solver.xhp
+msgctxt ""
+"solver.xhp\n"
+"par_id7432477\n"
+"help.text"
+msgid "<ahelp hid=\".\"><emph>Value of:</emph> Try to solve the equation to approach a given value of the target cell.</ahelp>"
+msgstr ""
+
+#. 5BC94
+#: solver.xhp
+msgctxt ""
+"solver.xhp\n"
+"par_id7141026\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter the value or a cell reference in the text field.</ahelp>"
+msgstr ""
+
+#. KMA6B
+#: solver.xhp
+msgctxt ""
+"solver.xhp\n"
+"hd_id761589914010085\n"
+"help.text"
+msgid "By Changing Cells"
+msgstr ""
+
+#. VvrzV
+#: solver.xhp
+msgctxt ""
+"solver.xhp\n"
+"par_id8531449\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter the cell range that can be changed.</ahelp> These are the variables of the equations."
+msgstr ""
+
+#. if7S9
+#: solver.xhp
+msgctxt ""
+"solver.xhp\n"
+"hd_id671589914927836\n"
+"help.text"
+msgid "Limiting Conditions"
+msgstr ""
+
+#. QQCWC
+#: solver.xhp
+msgctxt ""
+"solver.xhp\n"
+"par_id421589915278885\n"
+"help.text"
+msgid "Add the set of constraints for the mathematical problem. Each constraint is represented by a cell reference (a variable), an operator, and a value."
+msgstr ""
+
+#. YApta
+#: solver.xhp
+msgctxt ""
+"solver.xhp\n"
+"par_id9183935\n"
+"help.text"
+msgid "<ahelp hid=\".\"><emph>Cell reference:</emph> Enter a cell reference of the variable.</ahelp>"
+msgstr ""
+
+#. eyxy9
+#: solver.xhp
+msgctxt ""
+"solver.xhp\n"
+"par_id1939451\n"
+"help.text"
+msgid "<ahelp hid=\".\">Click the Shrink button to shrink or restore the dialog. You can click or select cells in the sheet. You can enter a cell reference manually in the input box.</ahelp>"
+msgstr ""
+
+#. CWWbZ
+#: solver.xhp
+msgctxt ""
+"solver.xhp\n"
+"par_id946684\n"
+"help.text"
+msgid "<ahelp hid=\".\"><emph>Operator:</emph> Select an operator from the list.</ahelp> Use Binary operator to restrict your variable to 0 or 1. Use the Integer operator to restrict your variable to take only integer values (no decimal part)."
+msgstr ""
+
+#. CtpNG
+#: solver.xhp
+msgctxt ""
+"solver.xhp\n"
+"par_id9607226\n"
+"help.text"
+msgid "<ahelp hid=\".\"><emph>Value:</emph> Enter a value or a cell reference.</ahelp> This field is ignored when the operator is Binary or Integer."
+msgstr ""
+
+#. GzohM
+#: solver.xhp
+msgctxt ""
+"solver.xhp\n"
+"par_id9038972\n"
+"help.text"
+msgid "<ahelp hid=\".\"><emph>Remove button:</emph> Click to remove the row from the list. Any rows from below this row move up.</ahelp>"
+msgstr ""
+
+#. H3FEH
+#: solver.xhp
+msgctxt ""
+"solver.xhp\n"
+"par_id511589916338595\n"
+"help.text"
+msgid "You can set multiple conditions for a variable. For example, a variable in cell A1 that must be an integer less than 10. In that case, set two limiting conditions for A1."
+msgstr ""
+
+#. B4DtG
+#: solver.xhp
+msgctxt ""
+"solver.xhp\n"
+"hd_id441589917031236\n"
+"help.text"
+msgid "Options"
+msgstr ""
+
+#. AheHK
+#: solver.xhp
+msgctxt ""
+"solver.xhp\n"
+"par_id2423780\n"
+"help.text"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/scalc/01/solver_options.xhp#solveroptionsh1\" name=\"solveroptions\">Solver Options</link> dialog.</ahelp>"
+msgstr ""
+
+#. jDGPG
+#: solver.xhp
+msgctxt ""
+"solver.xhp\n"
+"par_id221589917833431\n"
+"help.text"
+msgid "The <emph>Solver Options</emph> dialog let you select the different solver algorithms for either linear and non-linear problems and set their solving parameters."
+msgstr ""
+
+#. 8YGDA
+#: solver.xhp
+msgctxt ""
+"solver.xhp\n"
+"hd_id771589917064147\n"
+"help.text"
+msgid "Solve"
+msgstr ""
+
+#. jFwTt
+#: solver.xhp
+msgctxt ""
+"solver.xhp\n"
+"par_id2569658\n"
+"help.text"
+msgid "<ahelp hid=\".\">Click to solve the problem with the current settings. The dialog settings are retained until you close the current document.</ahelp>"
+msgstr ""
+
+#. VFnjv
+#: solver.xhp
+msgctxt ""
+"solver.xhp\n"
+"par_id5474410\n"
+"help.text"
+msgid "To solve equations with the solver"
+msgstr ""
+
+#. HMiDW
+#: solver.xhp
+msgctxt ""
+"solver.xhp\n"
+"par_id2216559\n"
+"help.text"
+msgid "The goal of the solver process is to find those variable values of an equation that result in an optimized value in the <emph>target cell</emph>, also named the \"objective\". You can choose whether the value in the target cell should be a maximum, a minimum, or approaching a given value."
+msgstr ""
+
+#. tPUFj
+#: solver.xhp
+msgctxt ""
+"solver.xhp\n"
+"par_id7869502\n"
+"help.text"
+msgid "The initial variable values are inserted in a rectangular cell range that you enter in the <emph>By changing cells</emph> box."
+msgstr ""
+
+#. HtNbG
+#: solver.xhp
+msgctxt ""
+"solver.xhp\n"
+"par_id9852900\n"
+"help.text"
+msgid "You can define a series of limiting conditions that set constraints for some cells. For example, you can set the constraint that one of the variables or cells must not be bigger than another variable, or not bigger than a given value. You can also define the constraint that one or more variables must be integers (values without decimals), or binary values (where only 0 and 1 are allowed)."
+msgstr ""
+
+#. irGoh
+#: solver.xhp
+msgctxt ""
+"solver.xhp\n"
+"hd_id0603200910430882\n"
+"help.text"
+msgid "Using Non-Linear solvers"
+msgstr ""
+
+#. UTzzV
+#: solver.xhp
+msgctxt ""
+"solver.xhp\n"
+"par_id0603200910430845\n"
+"help.text"
+msgid "Regardless whether you use DEPS or SCO, you start by going to <menuitem>Tools - Solver</menuitem> and set the Cell to be optimized, the direction to go (minimization, maximization) and the cells to be modified to reach the goal. Then you go to the Options and specify the solver to be used and if necessary adjust the according <link href=\"text/scalc/01/solver_options.xhp\">parameters</link>."
+msgstr ""
+
+#. gJGz2
+#: solver.xhp
+msgctxt ""
+"solver.xhp\n"
+"par_id0603200910430821\n"
+"help.text"
+msgid "There is also a list of constraints you can use to restrict the possible range of solutions or to penalize certain conditions. However, in case of the evolutionary solvers DEPS and SCO, these constraints are also used to specify bounds on the variables of the problem. Due to the random nature of the algorithms, it is <emph>highly recommended</emph> to do so and give upper (and in case \"Assume Non-Negative Variables\" is turned off also lower) bounds for all variables. They don't have to be near the actual solution (which is probably unknown) but should give a rough indication of the expected size (0 ≤ var ≤ 1 or maybe -1000000 ≤ var ≤ 1000000)."
+msgstr ""
+
+#. GFZqJ
+#: solver.xhp
+msgctxt ""
+"solver.xhp\n"
+"par_id0603200910430873\n"
+"help.text"
+msgid "Bounds are specified by selecting one or more variables (as range) on the left side and entering a numerical value (not a cell or a formula) on the right side. That way you can also choose one or more variables to be <emph>Integer</emph> or <emph>Binary</emph> only."
+msgstr ""
+
+#. RDcmq
+#: solver.xhp
+msgctxt ""
+"solver.xhp\n"
+"par_id271589981559367\n"
+"help.text"
+msgid "<link href=\"https://wiki.documentfoundation.org/NLPSolver\" name=\"wikipage\">Wiki page on solvers and their algorithms</link>"
+msgstr ""
+
+#. akxrP
+#: solver_options.xhp
+msgctxt ""
+"solver_options.xhp\n"
+"tit\n"
+"help.text"
+msgid "Solver Options"
+msgstr ""
+
+#. UBnZK
+#: solver_options.xhp
+msgctxt ""
+"solver_options.xhp\n"
+"bm_id291590166034871\n"
+"help.text"
+msgid "<bookmark_value>solver for Calc;options</bookmark_value>"
+msgstr ""
+
+#. vZkr3
+#: solver_options.xhp
+msgctxt ""
+"solver_options.xhp\n"
+"hd_id2794274\n"
+"help.text"
+msgid "<variable id=\"solveroptionsh1\"><link href=\"text/scalc/01/solver_options.xhp\" name=\"Solver Options\">Solver Options</link></variable>"
+msgstr ""
+
+#. LHgS8
+#: solver_options.xhp
+msgctxt ""
+"solver_options.xhp\n"
+"par_id3163853\n"
+"help.text"
+msgid "Use the Options dialog to configure the solver engine."
+msgstr ""
+
+#. mFtPo
+#: solver_options.xhp
+msgctxt ""
+"solver_options.xhp\n"
+"par_id9999694\n"
+"help.text"
+msgid "Click OK to accept the changes and to go back to the <link href=\"text/scalc/01/solver.xhp\">Solver</link> dialog."
+msgstr ""
+
+#. gE7WZ
+#: solver_options.xhp
+msgctxt ""
+"solver_options.xhp\n"
+"hd_id581589922716672\n"
+"help.text"
+msgid "Solver engine"
+msgstr ""
+
+#. A7MrG
+#: solver_options.xhp
+msgctxt ""
+"solver_options.xhp\n"
+"par_id393993\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select a solver engine. The listbox is disabled if only one solver engine is installed.</ahelp>"
+msgstr ""
+
+#. NMHJR
+#: solver_options.xhp
+msgctxt ""
+"solver_options.xhp\n"
+"par_id221589959855748\n"
+"help.text"
+msgid "You can install more solver engines as extensions, if available. Open <menuitem>Tools - Extension Manager</menuitem> and browse to the Extensions web site to search for extensions."
+msgstr ""
+
+#. QtDyE
+#: solver_options.xhp
+msgctxt ""
+"solver_options.xhp\n"
+"hd_id711589922750833\n"
+"help.text"
+msgid "Settings"
+msgstr ""
+
+#. ncgjf
+#: solver_options.xhp
+msgctxt ""
+"solver_options.xhp\n"
+"par_id130619\n"
+"help.text"
+msgid "Configure the current solver. In the Settings box, check all settings that you want to use for the current goal seeking operation. If the current option offers different values, the Edit button is enabled. Click <emph>Edit</emph> to open a dialog where you can change the value."
+msgstr ""
+
+#. DPYew
+#: solver_options.xhp
+msgctxt ""
+"solver_options.xhp\n"
+"hd_id481589922813764\n"
+"help.text"
+msgid "Edit"
+msgstr ""
+
+#. XZbDB
+#: solver_options.xhp
+msgctxt ""
+"solver_options.xhp\n"
+"par_id6531266\n"
+"help.text"
+msgid "<ahelp hid=\".\">If the current entry in the Settings listbox allows you to edit a value, you can click the Edit button. A dialog opens where you can change the value.</ahelp>"
+msgstr ""
+
+#. JzS8w
+#: solver_options.xhp
+msgctxt ""
+"solver_options.xhp\n"
+"hd_id331589923158248\n"
+"help.text"
+msgid "Edit settings spin box"
+msgstr ""
+
+#. B4WMx
+#: solver_options.xhp
+msgctxt ""
+"solver_options.xhp\n"
+"par_id3912778\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter or change the value of the selected setting.</ahelp>"
+msgstr ""
+
+#. FGS6a
+#: solver_options.xhp
+msgctxt ""
+"solver_options.xhp\n"
+"par_id271589981559367\n"
+"help.text"
+msgid "<link href=\"https://wiki.documentfoundation.org/NLPSolver\" name=\"wikipage\">Wiki page on non-linear solvers and their algorithms</link>"
+msgstr ""
+
+#. A843R
+#: solver_options_algo.xhp
+msgctxt ""
+"solver_options_algo.xhp\n"
+"tit\n"
+"help.text"
+msgid "Options"
+msgstr ""
+
+#. U9kTW
+#: solver_options_algo.xhp
+msgctxt ""
+"solver_options_algo.xhp\n"
+"bm_id0503200917110375_scalc\n"
+"help.text"
+msgid "<bookmark_value>Solver for Nonlinear Problems;Options</bookmark_value> <bookmark_value>solver for Calc; DEPS evolutionary algorithm</bookmark_value> <bookmark_value>solver for Calc; SCO evolutionary algorithm</bookmark_value> <bookmark_value>solver for Calc; linear solver</bookmark_value> <bookmark_value>solver for Calc; CoinMP linear solver</bookmark_value> <bookmark_value>solver for Calc; swarm non-linear solver</bookmark_value>"
+msgstr ""
+
+#. atkqE
+#: solver_options_algo.xhp
+msgctxt ""
+"solver_options_algo.xhp\n"
+"hd_id0503200917103593\n"
+"help.text"
+msgid "<variable id=\"SolverAlgorithmsOptionsh1\"><link href=\"text/scalc/01/solver_options_algo.xhp#SolverAlgorithmsOptionsh1\" name=\"Solver Algorithms Options\">Solver Algorithms Options</link></variable>"
+msgstr ""
+
+#. RjM8p
+#: solver_options_algo.xhp
+msgctxt ""
+"solver_options_algo.xhp\n"
+"par_id651589925044267\n"
+"help.text"
+msgid "<variable id=\"DEPSEvolutionaryalgorithmh2\"><link href=\"text/scalc/01/solver_options_algo.xhp#DEPSEvolutionaryalgorithmh2\" name=\"DEPS Evolutionary algorithm\">DEPS Evolutionary Algorithm</link></variable>"
+msgstr ""
+
+#. xBZfN
+#: solver_options_algo.xhp
+msgctxt ""
+"solver_options_algo.xhp\n"
+"par_id931590164412542\n"
+"help.text"
+msgid "DEPS consists of two independent algorithms: Differential Evolution and Particle Swarm Optimization. Both are especially suited for numerical problems, such as nonlinear optimization, and are complementary to each other in that they even out their others shortcomings."
+msgstr ""
+
+#. EFbzc
+#: solver_options_algo.xhp
+msgctxt ""
+"solver_options_algo.xhp\n"
+"par_id0603200910394232\n"
+"help.text"
+msgid "Agent Switch Rate"
+msgstr ""
+
+#. E3ZoK
+#: solver_options_algo.xhp
+msgctxt ""
+"solver_options_algo.xhp\n"
+"par_id0603200910394248\n"
+"help.text"
+msgid "Specifies the probability for an individual to choose the Differential Evolution strategy."
+msgstr ""
+
+#. DbnUB
+#: solver_options_algo.xhp
+msgctxt ""
+"solver_options_algo.xhp\n"
+"par_id0603200910394277\n"
+"help.text"
+msgid "DE: Crossover Probability"
+msgstr ""
+
+#. phaC2
+#: solver_options_algo.xhp
+msgctxt ""
+"solver_options_algo.xhp\n"
+"par_id0603200910394280\n"
+"help.text"
+msgid "Defines the probability of the individual being combined with the globally best point. If crossover is not used, the point is assembled from the own memory of the individual."
+msgstr ""
+
+#. G4GC9
+#: solver_options_algo.xhp
+msgctxt ""
+"solver_options_algo.xhp\n"
+"par_id0643200910394216\n"
+"help.text"
+msgid "DE: Scaling Factor"
+msgstr ""
+
+#. qKt78
+#: solver_options_algo.xhp
+msgctxt ""
+"solver_options_algo.xhp\n"
+"par_id360320091039424\n"
+"help.text"
+msgid "During crossover, the scaling factor decides about the “speed” of movement."
+msgstr ""
+
+#. HPPHg
+#: solver_options_algo.xhp
+msgctxt ""
+"solver_options_algo.xhp\n"
+"par_id0507200917103771\n"
+"help.text"
+msgid "Learning Cycles"
+msgstr ""
+
+#. ED86j
+#: solver_options_algo.xhp
+msgctxt ""
+"solver_options_algo.xhp\n"
+"par_id0503210917103720\n"
+"help.text"
+msgid "Defines the number of iterations, the algorithm should take. In each iteration, all individuals make a guess on the best solution and share their knowledge."
+msgstr ""
+
+#. M5Ka8
+#: solver_options_algo.xhp
+msgctxt ""
+"solver_options_algo.xhp\n"
+"par_id3603200910394222\n"
+"help.text"
+msgid "PS: Cognitive Constant"
+msgstr ""
+
+#. bVENc
+#: solver_options_algo.xhp
+msgctxt ""
+"solver_options_algo.xhp\n"
+"par_id3603200915394212\n"
+"help.text"
+msgid "Sets the importance of the own memory (in particular the best reached point so far)."
+msgstr ""
+
+#. ujBHP
+#: solver_options_algo.xhp
+msgctxt ""
+"solver_options_algo.xhp\n"
+"par_id060324091037421\n"
+"help.text"
+msgid "PS: Constriction Coefficient"
+msgstr ""
+
+#. Z86BZ
+#: solver_options_algo.xhp
+msgctxt ""
+"solver_options_algo.xhp\n"
+"par_id0608200910394225\n"
+"help.text"
+msgid "Defines the speed at which the particles/individuals move towards each other."
+msgstr ""
+
+#. nFnAu
+#: solver_options_algo.xhp
+msgctxt ""
+"solver_options_algo.xhp\n"
+"par_id060320091039425\n"
+"help.text"
+msgid "PS: Mutation Probability"
+msgstr ""
+
+#. fGiKi
+#: solver_options_algo.xhp
+msgctxt ""
+"solver_options_algo.xhp\n"
+"par_id0603200910394272\n"
+"help.text"
+msgid "Defines the probability, that instead of moving a component of the particle towards the best point, it randomly chooses a new value from the valid range for that variable."
+msgstr ""
+
+#. nn4Ms
+#: solver_options_algo.xhp
+msgctxt ""
+"solver_options_algo.xhp\n"
+"par_id0603200910394292\n"
+"help.text"
+msgid "PS: Social Constant"
+msgstr ""
+
+#. nAD2Z
+#: solver_options_algo.xhp
+msgctxt ""
+"solver_options_algo.xhp\n"
+"par_id0603200910394284\n"
+"help.text"
+msgid "Sets the importance of the global best point between all particles/individuals."
+msgstr ""
+
+#. GAGDE
+#: solver_options_algo.xhp
+msgctxt ""
+"solver_options_algo.xhp\n"
+"par_id0503200217103891\n"
+"help.text"
+msgid "<variable id=\"enhstatusheader\">Show Enhanced Solver Status</variable>"
+msgstr ""
+
+#. na8Ee
+#: solver_options_algo.xhp
+msgctxt ""
+"solver_options_algo.xhp\n"
+"par_id0523200917103832\n"
+"help.text"
+msgid "<variable id=\"enhstatusdesc\">If <emph>enabled</emph>, an additional dialog is shown during the solving process which gives information about the current progress, the level of stagnation, the currently best known solution as well as the possibility, to stop or resume the solver.</variable>"
+msgstr ""
+
+#. 3LaZ7
+#: solver_options_algo.xhp
+msgctxt ""
+"solver_options_algo.xhp\n"
+"par_id0503200417103780\n"
+"help.text"
+msgid "<variable id=\"swarmheader\">Size of Swarm</variable>"
+msgstr ""
+
+#. UhBid
+#: solver_options_algo.xhp
+msgctxt ""
+"solver_options_algo.xhp\n"
+"par_id0503100917103723\n"
+"help.text"
+msgid "<variable id=\"swarmdesc\">Defines the number of individuals to participate in the learning process. Each individual finds its own solutions and contributes to the overall knowledge.</variable>"
+msgstr ""
+
+#. r62GH
+#: solver_options_algo.xhp
+msgctxt ""
+"solver_options_algo.xhp\n"
+"par_id0504200917103794\n"
+"help.text"
+msgid "<variable id=\"stagnationheader\">Stagnation Limit</variable>"
+msgstr ""
+
+#. LDNEL
+#: solver_options_algo.xhp
+msgctxt ""
+"solver_options_algo.xhp\n"
+"par_id050320091710377\n"
+"help.text"
+msgid "<variable id=\"stagnationdesc\">If this number of individuals found solutions within a close range, the iteration is stopped and the best of these values is chosen as optimal.</variable>"
+msgstr ""
+
+#. vGYwe
+#: solver_options_algo.xhp
+msgctxt ""
+"solver_options_algo.xhp\n"
+"par_id0503200917103762\n"
+"help.text"
+msgid "<variable id=\"stagtolheader\">Stagnation Tolerance</variable>"
+msgstr ""
+
+#. wqeXY
+#: solver_options_algo.xhp
+msgctxt ""
+"solver_options_algo.xhp\n"
+"par_id0503200917103834\n"
+"help.text"
+msgid "<variable id=\"stagtoldesc\">Defines in what range solutions are considered “similar”.</variable>"
+msgstr ""
+
+#. jKuiG
+#: solver_options_algo.xhp
+msgctxt ""
+"solver_options_algo.xhp\n"
+"par_id0503200917103740\n"
+"help.text"
+msgid "<variable id=\"acrheader\">Use ACR Comparator</variable>"
+msgstr ""
+
+#. D8e8D
+#: solver_options_algo.xhp
+msgctxt ""
+"solver_options_algo.xhp\n"
+"par_id0503200917103766\n"
+"help.text"
+msgid "If <emph>disabled</emph> (default), the BCH Comparator is used. It compares two individuals by first looking at their constraint violations and only if those are equal, it measures their current solution."
+msgstr ""
+
+#. 7LWoa
+#: solver_options_algo.xhp
+msgctxt ""
+"solver_options_algo.xhp\n"
+"par_id0503200917103744\n"
+"help.text"
+msgid "If <emph>enabled</emph>, the ACR Comparator is used. It compares two individuals dependent on the current iteration and measures their goodness with knowledge about the libraries worst known solutions (in regard to their constraint violations)."
+msgstr ""
+
+#. GZ7C2
+#: solver_options_algo.xhp
+msgctxt ""
+"solver_options_algo.xhp\n"
+"par_id0503200917103792\n"
+"help.text"
+msgid "Use Random Starting Point"
+msgstr ""
+
+#. EdJoF
+#: solver_options_algo.xhp
+msgctxt ""
+"solver_options_algo.xhp\n"
+"par_id0503200917103790\n"
+"help.text"
+msgid "If <emph>enabled</emph>, the library is simply filled up with randomly chosen points."
+msgstr ""
+
+#. oCPc4
+#: solver_options_algo.xhp
+msgctxt ""
+"solver_options_algo.xhp\n"
+"par_id0503200917103765\n"
+"help.text"
+msgid "If <emph>disabled</emph>, the currently present values (as given by the user) are inserted in the library as reference point."
+msgstr ""
+
+#. ctLqK
+#: solver_options_algo.xhp
+msgctxt ""
+"solver_options_algo.xhp\n"
+"par_id0503200917103732\n"
+"help.text"
+msgid "<variable id=\"variableguessheader\">Variable Bounds Guessing</variable>"
+msgstr ""
+
+#. rc95a
+#: solver_options_algo.xhp
+msgctxt ""
+"solver_options_algo.xhp\n"
+"par_id050320091710378\n"
+"help.text"
+msgid "<variable id=\"variableguessdesc\">If enabled (default), the algorithm tries to find variable bounds by looking at the starting values.</variable>"
+msgstr ""
+
+#. JctSA
+#: solver_options_algo.xhp
+msgctxt ""
+"solver_options_algo.xhp\n"
+"par_id0503200917103794\n"
+"help.text"
+msgid "<variable id=\"variablethresheader\">Variable Bounds Threshold</variable>"
+msgstr ""
+
+#. NNyfL
+#: solver_options_algo.xhp
+msgctxt ""
+"solver_options_algo.xhp\n"
+"par_id0503200917103710\n"
+"help.text"
+msgid "<variable id=\"variablethresdesc\">When guessing variable bounds, this threshold specifies, how the initial values are shifted to build the bounds. For an example how these values are calculated, please refer to the Manual in the Wiki.</variable>"
+msgstr ""
+
+#. UDXDh
+#: solver_options_algo.xhp
+msgctxt ""
+"solver_options_algo.xhp\n"
+"par_id391589925078747\n"
+"help.text"
+msgid "<variable id=\"SCOEvolutionaryAlgorithmh2\"><link href=\"text/scalc/01/solver_options_algo.xhp#SCOEvolutionaryAlgorithmh2\" name=\"SCO Evolutionary Algorithm\">SCO Evolutionary Algorithm</link></variable>"
+msgstr ""
+
+#. tqkJh
+#: solver_options_algo.xhp
+msgctxt ""
+"solver_options_algo.xhp\n"
+"par_id681590165847694\n"
+"help.text"
+msgid "Social Cognitive Optimization takes into account the human behavior of learning and sharing information. Each individual has access to a common library with knowledge shared between all individuals."
+msgstr ""
+
+#. wovoy
+#: solver_options_algo.xhp
+msgctxt ""
+"solver_options_algo.xhp\n"
+"par_id0503200917103771\n"
+"help.text"
+msgid "Learning Cycles"
+msgstr ""
+
+#. wgKE5
+#: solver_options_algo.xhp
+msgctxt ""
+"solver_options_algo.xhp\n"
+"par_id0503200917103720\n"
+"help.text"
+msgid "Defines the number of iterations, the algorithm should take. In each iteration, all individuals make a guess on the best solution and share their knowledge."
+msgstr ""
+
+#. wrasx
+#: solver_options_algo.xhp
+msgctxt ""
+"solver_options_algo.xhp\n"
+"par_id0603200910401382\n"
+"help.text"
+msgid "Size of Library"
+msgstr ""
+
+#. 4PmLg
+#: solver_options_algo.xhp
+msgctxt ""
+"solver_options_algo.xhp\n"
+"par_id060320091040136\n"
+"help.text"
+msgid "Defines the amount of information to store in the public library. Each individual stores knowledge there and asks for information."
+msgstr ""
+
+#. EPiZn
+#: solver_options_algo.xhp
+msgctxt ""
+"solver_options_algo.xhp\n"
+"par_id741589980722689\n"
+"help.text"
+msgid "<embedvar href=\"text/scalc/01/solver_options_algo.xhp#variablethresheader\"/>"
+msgstr ""
+
+#. Ltucz
+#: solver_options_algo.xhp
+msgctxt ""
+"solver_options_algo.xhp\n"
+"par_id901589980722691\n"
+"help.text"
+msgid "<embedvar href=\"text/scalc/01/solver_options_algo.xhp#variablethresdesc\"/>"
+msgstr ""
+
+#. 46h4u
+#: solver_options_algo.xhp
+msgctxt ""
+"solver_options_algo.xhp\n"
+"par_id671589925148891\n"
+"help.text"
+msgid "<variable id=\"LinearSolverh2\"><link href=\"text/scalc/01/solver_options_algo.xhp#LinearSolverh2\" name=\"%PRODUCTNAME Linear Solver\">%PRODUCTNAME Linear Solver and CoinMP Linear solver</link></variable>"
+msgstr ""
+
+#. PNEaC
+#: solver_options_algo.xhp
+msgctxt ""
+"solver_options_algo.xhp\n"
+"par_id731589925837981\n"
+"help.text"
+msgid "<variable id=\"settingshead\">Setting</variable>"
+msgstr ""
+
+#. DhVRA
+#: solver_options_algo.xhp
+msgctxt ""
+"solver_options_algo.xhp\n"
+"par_id611589925837982\n"
+"help.text"
+msgid "<variable id=\"descriptionhead\">Description</variable>"
+msgstr ""
+
+#. MqHfE
+#: solver_options_algo.xhp
+msgctxt ""
+"solver_options_algo.xhp\n"
+"par_id511589925837984\n"
+"help.text"
+msgid "<variable id=\"integerhead\">Assume variables as integers</variable>"
+msgstr ""
+
+#. Javmc
+#: solver_options_algo.xhp
+msgctxt ""
+"solver_options_algo.xhp\n"
+"par_id11589925837985\n"
+"help.text"
+msgid "<variable id=\"integerdesc\">Mark to force variables to be integers only.</variable>"
+msgstr ""
+
+#. yie3u
+#: solver_options_algo.xhp
+msgctxt ""
+"solver_options_algo.xhp\n"
+"par_id221589961756407\n"
+"help.text"
+msgid "<variable id=\"noneghead\">Assume variables as non negative</variable>"
+msgstr ""
+
+#. ij2he
+#: solver_options_algo.xhp
+msgctxt ""
+"solver_options_algo.xhp\n"
+"par_id861589961756408\n"
+"help.text"
+msgid "<variable id=\"nonegdesc\">Mark to force variables to be positive only.</variable>"
+msgstr ""
+
+#. uEDEh
+#: solver_options_algo.xhp
+msgctxt ""
+"solver_options_algo.xhp\n"
+"par_id971589961907787\n"
+"help.text"
+msgid "Epsilon level"
+msgstr ""
+
+#. JSVtE
+#: solver_options_algo.xhp
+msgctxt ""
+"solver_options_algo.xhp\n"
+"par_id421589961907788\n"
+"help.text"
+msgid "Epsilon level. Valid values are in range 0 (very tight) to 3 (very loose). Epsilon is the tolerance for rounding values to zero."
+msgstr ""
+
+#. rtCLo
+#: solver_options_algo.xhp
+msgctxt ""
+"solver_options_algo.xhp\n"
+"par_id71589961998523\n"
+"help.text"
+msgid "Limit branch-and-bound depth"
+msgstr ""
+
+#. yeTw2
+#: solver_options_algo.xhp
+msgctxt ""
+"solver_options_algo.xhp\n"
+"par_id331589961998525\n"
+"help.text"
+msgid "Specifies the maximum branch-and-bound depth. A positive value means that the depth is absolute. A negative value means a relative branch-and-bound depth limit."
+msgstr ""
+
+#. pnUYs
+#: solver_options_algo.xhp
+msgctxt ""
+"solver_options_algo.xhp\n"
+"par_id91589962070327\n"
+"help.text"
+msgid "<variable id=\"timelimithead\">Solver time limit</variable>"
+msgstr ""
+
+#. PPtR8
+#: solver_options_algo.xhp
+msgctxt ""
+"solver_options_algo.xhp\n"
+"par_id331589962070329\n"
+"help.text"
+msgid "<variable id=\"timelimitdesc\">Sets the maximum time for the algorithm to converge to a solution.</variable>"
+msgstr ""
+
+#. 9WDm6
+#: solver_options_algo.xhp
+msgctxt ""
+"solver_options_algo.xhp\n"
+"par_id711589925192067\n"
+"help.text"
+msgid "<variable id=\"SwarmNonLinearSolverh2\"><link href=\"text/scalc/01/solver_options_algo.xhp#SwarmNonLinearSolverh2\" name=\"%PRODUCTNAME Swarm Non-Linear Solver (Experimental)\">%PRODUCTNAME Swarm Non-Linear Solver (Experimental)</link></variable>"
+msgstr ""
+
+#. TFadK
+#: solver_options_algo.xhp
+msgctxt ""
+"solver_options_algo.xhp\n"
+"par_id971589963431459\n"
+"help.text"
+msgid "Swarm algorithm"
+msgstr ""
+
+#. cgpYF
+#: solver_options_algo.xhp
+msgctxt ""
+"solver_options_algo.xhp\n"
+"par_id71589963431460\n"
+"help.text"
+msgid "Set the swarm algorithm. 0 for differential evolution and 1 for particle swarm optimization. Default is 0."
+msgstr ""
+
+#. wBxK6
+#: solver_options_algo.xhp
+msgctxt ""
+"solver_options_algo.xhp\n"
+"par_id271589981559367\n"
+"help.text"
+msgid "<link href=\"https://wiki.documentfoundation.org/NLPSolver\" name=\"wikipage\">Wiki page on non-linear solvers and their algorithms</link>"
+msgstr ""
+
+#. D2nCR
+#: solver_options_algo.xhp
+msgctxt ""
+"solver_options_algo.xhp\n"
+"par_id211590163660314\n"
+"help.text"
+msgid "<link href=\"http://lpsolve.sourceforge.net/\">lp_solve reference guide in sourceforge.net</link>"
+msgstr ""
+
+#. pbKdu
+#: sparklines.xhp
+msgctxt ""
+"sparklines.xhp\n"
+"tit\n"
+"help.text"
+msgid "Sparklines"
+msgstr ""
+
+#. 82qW9
+#: sparklines.xhp
+msgctxt ""
+"sparklines.xhp\n"
+"bm_id901654173679276\n"
+"help.text"
+msgid "<bookmark_value>sparklines</bookmark_value>"
+msgstr ""
+
+#. KVEHr
+#: sparklines.xhp
+msgctxt ""
+"sparklines.xhp\n"
+"hd_id721654173263812\n"
+"help.text"
+msgid "<variable id=\"sparklines\"><link href=\"text/scalc/01/sparklines.xhp\" name=\"Sparklines\">Sparklines</link></variable>"
+msgstr ""
+
+#. wUPfH
+#: sparklines.xhp
+msgctxt ""
+"sparklines.xhp\n"
+"par_id981654173263817\n"
+"help.text"
+msgid "Sparklines are small data charts displayed inside a cell."
+msgstr ""
+
+#. Hwfhj
+#: sparklines.xhp
+msgctxt ""
+"sparklines.xhp\n"
+"par_id341654174064080\n"
+"help.text"
+msgid "Sparklines are defined for one cell, but multiple sparklines can be joined together into a group. The group shares the same properties for rendering the sparkline. The unique data that is defined only for one sparkline is the data range, that a sparkline will use for rendering."
+msgstr ""
+
+#. 5FwvG
+#: sparklines.xhp
+msgctxt ""
+"sparklines.xhp\n"
+"par_id761654173486733\n"
+"help.text"
+msgid "Choose <menuitem>Insert – Sparklines</menuitem>"
+msgstr ""
+
+#. 6ivXp
+#: sparklines.xhp
+msgctxt ""
+"sparklines.xhp\n"
+"hd_id391654173530650\n"
+"help.text"
+msgid "Data"
+msgstr ""
+
+#. y498T
+#: sparklines.xhp
+msgctxt ""
+"sparklines.xhp\n"
+"par_id751654174462868\n"
+"help.text"
+msgid "<emph>Input range</emph>: enter the cell range of the data. Use the <emph>shrink</emph> button to select the data range with the mouse."
+msgstr ""
+
+#. uKmTQ
+#: sparklines.xhp
+msgctxt ""
+"sparklines.xhp\n"
+"par_id701654174578218\n"
+"help.text"
+msgid "<emph>Output range</emph>: select the cell range to receive the sparkline. Use the <emph>shrink</emph> button to select the cell range with the mouse."
+msgstr ""
+
+#. GhzeC
+#: sparklines.xhp
+msgctxt ""
+"sparklines.xhp\n"
+"hd_id651654174597644\n"
+"help.text"
+msgid "Properties"
+msgstr ""
+
+#. mRxgt
+#: sparklines.xhp
+msgctxt ""
+"sparklines.xhp\n"
+"par_id961654174732293\n"
+"help.text"
+msgid "<emph>Type</emph>: select the sparkline type in the drop-down list. Choices are:"
+msgstr ""
+
+#. wPWdA
+#: sparklines.xhp
+msgctxt ""
+"sparklines.xhp\n"
+"par_id481654191793887\n"
+"help.text"
+msgid "<emph>Line</emph>: draws a line between data values."
+msgstr ""
+
+#. eA77b
+#: sparklines.xhp
+msgctxt ""
+"sparklines.xhp\n"
+"par_id391654191798913\n"
+"help.text"
+msgid "<emph>Column</emph>: draws a bar for each data value."
+msgstr ""
+
+#. dUFBB
+#: sparklines.xhp
+msgctxt ""
+"sparklines.xhp\n"
+"par_id481654191804474\n"
+"help.text"
+msgid "<emph>Stacked</emph>: also known as win/loss. Displays equally sized bars indicating positive and negative values."
+msgstr ""
+
+#. bsCDU
+#: sparklines.xhp
+msgctxt ""
+"sparklines.xhp\n"
+"par_id701654174850309\n"
+"help.text"
+msgid "<emph>Line width</emph>: enter the line width number manually or use the spin button."
+msgstr ""
+
+#. CAGGB
+#: sparklines.xhp
+msgctxt ""
+"sparklines.xhp\n"
+"par_id761654176569576\n"
+"help.text"
+msgid "<emph>Display empty cells as</emph>: choices are available in the drop-down list:"
+msgstr ""
+
+#. cnwYt
+#: sparklines.xhp
+msgctxt ""
+"sparklines.xhp\n"
+"par_id171654176533173\n"
+"help.text"
+msgid "<emph>Gap</emph>: the missing data is not displayed. The line type discontinues in the gap and the column is not displayed."
+msgstr ""
+
+#. PrmF8
+#: sparklines.xhp
+msgctxt ""
+"sparklines.xhp\n"
+"par_id81654176538165\n"
+"help.text"
+msgid "<emph>Zero</emph>: the missing data is displayed as value zero."
+msgstr ""
+
+#. G9ZDs
+#: sparklines.xhp
+msgctxt ""
+"sparklines.xhp\n"
+"par_id801654176544375\n"
+"help.text"
+msgid "<emph>Span</emph>: for line type only, draws a continuous line connecting the previous value to the next value."
+msgstr ""
+
+#. BNnGT
+#: sparklines.xhp
+msgctxt ""
+"sparklines.xhp\n"
+"par_id431654176711837\n"
+"help.text"
+msgid "<emph>Display hidden</emph>: check to show all columns or stacks in the range even when the data is in hidden cells. If unchecked, the hidden data is ignored."
+msgstr ""
+
+#. Y6kWv
+#: sparklines.xhp
+msgctxt ""
+"sparklines.xhp\n"
+"par_id21654177035348\n"
+"help.text"
+msgid "<emph>Right-to-left</emph>: check to display the sparklines reverse order of the data."
+msgstr ""
+
+#. FhUrj
+#: sparklines.xhp
+msgctxt ""
+"sparklines.xhp\n"
+"hd_id911654177186844\n"
+"help.text"
+msgid "Colors"
+msgstr ""
+
+#. sq3di
+#: sparklines.xhp
+msgctxt ""
+"sparklines.xhp\n"
+"par_id11654177765370\n"
+"help.text"
+msgid "<emph>Series</emph>: select the main color for the sparklines."
+msgstr ""
+
+#. ZAZbq
+#: sparklines.xhp
+msgctxt ""
+"sparklines.xhp\n"
+"par_id421654177770032\n"
+"help.text"
+msgid "<emph>Negative points</emph>: check and select the color for negative points."
+msgstr ""
+
+#. vJjrw
+#: sparklines.xhp
+msgctxt ""
+"sparklines.xhp\n"
+"par_id231654177773798\n"
+"help.text"
+msgid "<emph>High points</emph>: check and select the color for high points."
+msgstr ""
+
+#. XGDyn
+#: sparklines.xhp
+msgctxt ""
+"sparklines.xhp\n"
+"par_id371654177777479\n"
+"help.text"
+msgid "<emph>Low points</emph>: check and select the color for low points."
+msgstr ""
+
+#. wkzjv
+#: sparklines.xhp
+msgctxt ""
+"sparklines.xhp\n"
+"par_id521654177784536\n"
+"help.text"
+msgid "<emph>Marker</emph>: check and select the color for data points (line type only)."
+msgstr ""
+
+#. xJA6Q
+#: sparklines.xhp
+msgctxt ""
+"sparklines.xhp\n"
+"par_id181654177788533\n"
+"help.text"
+msgid "<emph>First point</emph>: check and select the color for first point."
+msgstr ""
+
+#. 2BLQa
+#: sparklines.xhp
+msgctxt ""
+"sparklines.xhp\n"
+"par_id241654177793144\n"
+"help.text"
+msgid "<emph>Last point</emph>: check and select the color for last point."
+msgstr ""
+
+#. KxQEE
+#: sparklines.xhp
+msgctxt ""
+"sparklines.xhp\n"
+"hd_id251654180880861\n"
+"help.text"
+msgid "Axes"
+msgstr ""
+
+#. mRJUH
+#: sparklines.xhp
+msgctxt ""
+"sparklines.xhp\n"
+"par_id871654181525722\n"
+"help.text"
+msgid "<emph>Display X axis</emph>: check to show the X axis for sparklines."
+msgstr ""
+
+#. qmn7h
+#: sparklines.xhp
+msgctxt ""
+"sparklines.xhp\n"
+"par_id891654181533521\n"
+"help.text"
+msgid "<emph>Vertical minimum, Vertical maximum:</emph> check to set the minimum (maximum) value for the Y axis. Select one of following:"
+msgstr ""
+
+#. KnHCA
+#: sparklines.xhp
+msgctxt ""
+"sparklines.xhp\n"
+"par_id521654181404234\n"
+"help.text"
+msgid "<emph>Individual</emph>: sets automatically the minimum (maximum) value for each sparkline based on the sparkline data range values."
+msgstr ""
+
+#. mHjnu
+#: sparklines.xhp
+msgctxt ""
+"sparklines.xhp\n"
+"par_id821654181425448\n"
+"help.text"
+msgid "<emph>Group</emph>: sets the minimum (maximum) value based on the lower and higher values found in the group of sparklines."
+msgstr ""
+
+#. NNez9
+#: sparklines.xhp
+msgctxt ""
+"sparklines.xhp\n"
+"par_id51654181442414\n"
+"help.text"
+msgid "<emph>Custom</emph>: enter the minimum (maximum) value for the sparkline group. Enter the minimum (maximum) values or use the spin buttons."
+msgstr ""
+
+#. CNBDD
+#: sparklines.xhp
+msgctxt ""
+"sparklines.xhp\n"
+"par_id801654192214865\n"
+"help.text"
+msgid "<link href=\"https://tomazvajngerl.blogspot.com/2022/03/sparklines-in-calc.html\" name=\"developer info\">Developer blog post on sparklines</link>"
+msgstr ""
+
+#. Q6isn
+#: stat_data.xhp
+msgctxt ""
+"stat_data.xhp\n"
+"tit\n"
+"help.text"
+msgid "Data"
+msgstr ""
+
+#. Emvqi
+#: stat_data.xhp
+msgctxt ""
+"stat_data.xhp\n"
+"hd_id1000010\n"
+"help.text"
+msgid "Data"
+msgstr ""
+
+#. NEiJ8
+#: stat_data.xhp
+msgctxt ""
+"stat_data.xhp\n"
+"par_id1000010\n"
+"help.text"
+msgid "<emph>Input Range</emph>: The reference of the range of the data to analyze."
+msgstr ""
+
+#. tVWXF
+#: stat_data.xhp
+msgctxt ""
+"stat_data.xhp\n"
+"par_id1000020\n"
+"help.text"
+msgid "<emph>Results to</emph>: The reference of the top left cell of the range where the results will be displayed."
+msgstr ""
+
+#. CxAAD
+#: stat_data.xhp
+msgctxt ""
+"stat_data.xhp\n"
+"hd_id1000020\n"
+"help.text"
+msgid "Grouped By"
+msgstr ""
+
+#. AppmZ
+#: stat_data.xhp
+msgctxt ""
+"stat_data.xhp\n"
+"par_id1000030\n"
+"help.text"
+msgid "Select whether the input data has <emph>columns</emph> or <emph>rows</emph> layout."
+msgstr ""
+
+#. ft7Qy
+#: stat_data.xhp
+msgctxt ""
+"stat_data.xhp\n"
+"par_id1000040\n"
+"help.text"
+msgid "The following data will be used as example"
+msgstr ""
+
+#. U37rK
+#: stat_data.xhp
+msgctxt ""
+"stat_data.xhp\n"
+"par_id1000090\n"
+"help.text"
+msgid "Maths"
+msgstr ""
+
+#. EQ45W
+#: stat_data.xhp
+msgctxt ""
+"stat_data.xhp\n"
+"par_id1000100\n"
+"help.text"
+msgid "Physics"
+msgstr ""
+
+#. AEvwX
+#: stat_data.xhp
+msgctxt ""
+"stat_data.xhp\n"
+"par_id1000110\n"
+"help.text"
+msgid "Biology"
+msgstr ""
+
+#. i4WNL
+#: stat_data.xhp
+msgctxt ""
+"stat_data.xhp\n"
+"par_id1000550\n"
+"help.text"
+msgid "The following table has two time series, one representing an impulse function at time t=0 and the other an impulse function at time t=2."
+msgstr ""
+
+#. uZ5BP
+#: stat_data.xhp
+msgctxt ""
+"stat_data.xhp\n"
+"par_id1000970\n"
+"help.text"
+msgid "The following table has two data sets."
+msgstr ""
+
+#. 3Ehtm
+#: stat_data.xhp
+msgctxt ""
+"stat_data.xhp\n"
+"par_id1701201619425624\n"
+"help.text"
+msgid "The following table has samples of a physical phenomenon taken in 1 second interval."
+msgstr ""
+
+#. NoTX4
+#: stat_data.xhp
+msgctxt ""
+"stat_data.xhp\n"
+"par_id11561818344892\n"
+"help.text"
+msgid "<emph>Group By Columns</emph>"
+msgstr ""
+
+#. Ei5b9
+#: stat_data.xhp
+msgctxt ""
+"stat_data.xhp\n"
+"par_id151561818353339\n"
+"help.text"
+msgid "TRUE"
+msgstr ""
+
+#. BSNLd
+#: stat_data.xhp
+msgctxt ""
+"stat_data.xhp\n"
+"par_id141561818361892\n"
+"help.text"
+msgid "<emph>Polar</emph>"
+msgstr ""
+
+#. 9DG5B
+#: stat_data.xhp
+msgctxt ""
+"stat_data.xhp\n"
+"par_id361561818366868\n"
+"help.text"
+msgid "FALSE"
+msgstr ""
+
+#. eztCR
+#: stat_data.xhp
+msgctxt ""
+"stat_data.xhp\n"
+"par_id181561818387534\n"
+"help.text"
+msgid "<emph>Inverse</emph>"
+msgstr ""
+
+#. dMpg5
+#: stat_data.xhp
+msgctxt ""
+"stat_data.xhp\n"
+"par_id681561818391189\n"
+"help.text"
+msgid "FALSE"
+msgstr ""
+
+#. 5mvKB
+#: stat_data.xhp
+msgctxt ""
+"stat_data.xhp\n"
+"par_id201561827895671\n"
+"help.text"
+msgid "<emph>Formula</emph>"
+msgstr ""
+
+#. W8iXh
+#: stat_data.xhp
+msgctxt ""
+"stat_data.xhp\n"
+"par_id361561818379679\n"
+"help.text"
+msgid "{=FOURIER(B6:C40,B1,B2,B3,0)}"
+msgstr ""
+
+#. VDD3g
+#: stat_data.xhp
+msgctxt ""
+"stat_data.xhp\n"
+"par_id711561818399814\n"
+"help.text"
+msgid "<emph>Source Array</emph>"
+msgstr ""
+
+#. BjvDD
+#: stat_data.xhp
+msgctxt ""
+"stat_data.xhp\n"
+"par_id551561818405550\n"
+"help.text"
+msgid "<emph>Transformed Array</emph>"
+msgstr ""
+
+#. 6qfvf
+#: stat_data.xhp
+msgctxt ""
+"stat_data.xhp\n"
+"par_id581561818425613\n"
+"help.text"
+msgid "<emph>Real</emph>"
+msgstr ""
+
+#. mr7CX
+#: stat_data.xhp
+msgctxt ""
+"stat_data.xhp\n"
+"par_id251561818431620\n"
+"help.text"
+msgid "<emph>Imaginary</emph>"
+msgstr ""
+
+#. AEKDc
+#: stat_data.xhp
+msgctxt ""
+"stat_data.xhp\n"
+"par_id161561818436495\n"
+"help.text"
+msgid "<emph>Real</emph>"
+msgstr ""
+
+#. fTDsR
+#: stat_data.xhp
+msgctxt ""
+"stat_data.xhp\n"
+"par_id471561818441429\n"
+"help.text"
+msgid "<emph>Imaginary</emph>"
+msgstr ""
+
+#. rTRpz
+#: statistics.xhp
+msgctxt ""
+"statistics.xhp\n"
+"tit\n"
+"help.text"
+msgid "Data Statistics in Calc"
+msgstr ""
+
+#. VK8em
+#: statistics.xhp
+msgctxt ""
+"statistics.xhp\n"
+"hd_id1000010\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/statistics.xhp\" name=\"Data Statistics in Calc\">Statistics</link>"
+msgstr ""
+
+#. iXfGE
+#: statistics.xhp
+msgctxt ""
+"statistics.xhp\n"
+"par_id1000010\n"
+"help.text"
+msgid "Use the data statistics in Calc to perform complex data analysis"
+msgstr ""
+
+#. PGkib
+#: statistics.xhp
+msgctxt ""
+"statistics.xhp\n"
+"par_id1000020\n"
+"help.text"
+msgid "To work on a complex statistical or engineering analysis, you can save steps and time by using Calc Data Statistics. You provide the data and parameters for each analysis, and the set of tools uses the appropriate statistical or engineering functions to calculate and display the results in an output table."
+msgstr ""
+
+#. CGf5i
+#: statistics_anova.xhp
+msgctxt ""
+"statistics_anova.xhp\n"
+"tit\n"
+"help.text"
+msgid "ANOVA"
+msgstr ""
+
+#. UAf2Q
+#: statistics_anova.xhp
+msgctxt ""
+"statistics_anova.xhp\n"
+"bm_id02001\n"
+"help.text"
+msgid "<bookmark_value>Analysis toolpack;analysis of variance</bookmark_value><bookmark_value>Analysis toolpack;ANOVA</bookmark_value><bookmark_value>analysis of variance;Analysis toolpack</bookmark_value><bookmark_value>ANOVA;Analysis toolpack</bookmark_value><bookmark_value>Data statistics;analysis of variance</bookmark_value><bookmark_value>Data statistics;ANOVA</bookmark_value>"
+msgstr ""
+
+#. DLedq
+#: statistics_anova.xhp
+msgctxt ""
+"statistics_anova.xhp\n"
+"hd_id1000060\n"
+"help.text"
+msgid "<variable id=\"anovah1\"><link href=\"text/scalc/01/statistics_anova.xhp\" name=\"Analysis of Variance (ANOVA)\">Analysis of Variance (ANOVA)</link></variable>"
+msgstr ""
+
+#. oSUDa
+#: statistics_anova.xhp
+msgctxt ""
+"statistics_anova.xhp\n"
+"par_id1001240\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/analysisofvariancedialog/AnalysisOfVarianceDialog\">Produces the analysis of variance (ANOVA) of a given data set</ahelp>"
+msgstr ""
+
+#. w5pw6
+#: statistics_anova.xhp
+msgctxt ""
+"statistics_anova.xhp\n"
+"par_id1001250\n"
+"help.text"
+msgid "<variable id=\"sam01\">Choose <menuitem>Data - Statistics - Analysis of Variance (ANOVA)</menuitem></variable>"
+msgstr ""
+
+#. r9GGt
+#: statistics_anova.xhp
+msgctxt ""
+"statistics_anova.xhp\n"
+"par_id1001260\n"
+"help.text"
+msgid "ANOVA is the acronym for <emph>AN</emph>alysis <emph>O</emph>f <emph>VA</emph>riance. This tool produces the analysis of variance of a given data set"
+msgstr ""
+
+#. fRyBD
+#: statistics_anova.xhp
+msgctxt ""
+"statistics_anova.xhp\n"
+"par_id1001270\n"
+"help.text"
+msgid "For more information on ANOVA, refer to the <link href=\"https://en.wikipedia.org/wiki/ANOVA\" name=\"English Wikipedia: ANOVA\">corresponding Wikipedia article</link>."
+msgstr ""
+
+#. Lw9W4
+#: statistics_anova.xhp
+msgctxt ""
+"statistics_anova.xhp\n"
+"hd_id1000070\n"
+"help.text"
+msgid "Type"
+msgstr ""
+
+#. t2j8D
+#: statistics_anova.xhp
+msgctxt ""
+"statistics_anova.xhp\n"
+"par_id1001280\n"
+"help.text"
+msgid "Select if the analysis is for a <emph>single factor</emph> or for <emph>two factor</emph> ANOVA."
+msgstr ""
+
+#. msAwu
+#: statistics_anova.xhp
+msgctxt ""
+"statistics_anova.xhp\n"
+"hd_id1000080\n"
+"help.text"
+msgid "Parameters"
+msgstr ""
+
+#. ARzmU
+#: statistics_anova.xhp
+msgctxt ""
+"statistics_anova.xhp\n"
+"par_id1001290\n"
+"help.text"
+msgid "<emph>Alpha</emph>: the level of significance of the test."
+msgstr ""
+
+#. PyK5A
+#: statistics_anova.xhp
+msgctxt ""
+"statistics_anova.xhp\n"
+"par_id1001300\n"
+"help.text"
+msgid "<emph>Rows per sample</emph>: Define how many rows a sample has."
+msgstr ""
+
+#. 5yBo2
+#: statistics_anova.xhp
+msgctxt ""
+"statistics_anova.xhp\n"
+"par_id1001310\n"
+"help.text"
+msgid "The following table displays the results of the <emph>analysis of variance (ANOVA)</emph> of the sample data above."
+msgstr ""
+
+#. 5uDqB
+#: statistics_anova.xhp
+msgctxt ""
+"statistics_anova.xhp\n"
+"par_id1001320\n"
+"help.text"
+msgid "ANOVA - Single Factor"
+msgstr ""
+
+#. AzFd3
+#: statistics_anova.xhp
+msgctxt ""
+"statistics_anova.xhp\n"
+"par_id1001330\n"
+"help.text"
+msgid "Alpha"
+msgstr ""
+
+#. Dvbo3
+#: statistics_anova.xhp
+msgctxt ""
+"statistics_anova.xhp\n"
+"par_id1001350\n"
+"help.text"
+msgid "Groups"
+msgstr ""
+
+#. L6VAY
+#: statistics_anova.xhp
+msgctxt ""
+"statistics_anova.xhp\n"
+"par_id1001360\n"
+"help.text"
+msgid "Count"
+msgstr ""
+
+#. G9fqK
+#: statistics_anova.xhp
+msgctxt ""
+"statistics_anova.xhp\n"
+"par_id1001370\n"
+"help.text"
+msgid "Sum"
+msgstr ""
+
+#. n2Ayi
+#: statistics_anova.xhp
+msgctxt ""
+"statistics_anova.xhp\n"
+"par_id1001380\n"
+"help.text"
+msgid "Mean"
+msgstr ""
+
+#. CnFDW
+#: statistics_anova.xhp
+msgctxt ""
+"statistics_anova.xhp\n"
+"par_id1001390\n"
+"help.text"
+msgid "Variance"
+msgstr ""
+
+#. 2LDkn
+#: statistics_anova.xhp
+msgctxt ""
+"statistics_anova.xhp\n"
+"par_id1001400\n"
+"help.text"
+msgid "Column 1"
+msgstr ""
+
+#. p6hJA
+#: statistics_anova.xhp
+msgctxt ""
+"statistics_anova.xhp\n"
+"par_id1001450\n"
+"help.text"
+msgid "Column 2"
+msgstr ""
+
+#. 6jqh4
+#: statistics_anova.xhp
+msgctxt ""
+"statistics_anova.xhp\n"
+"par_id1001500\n"
+"help.text"
+msgid "Column 3"
+msgstr ""
+
+#. d3ASg
+#: statistics_anova.xhp
+msgctxt ""
+"statistics_anova.xhp\n"
+"par_id1001550\n"
+"help.text"
+msgid "Source of Variation"
+msgstr ""
+
+#. CrpJv
+#: statistics_anova.xhp
+msgctxt ""
+"statistics_anova.xhp\n"
+"par_id1001560\n"
+"help.text"
+msgid "SS"
+msgstr ""
+
+#. 3BARp
+#: statistics_anova.xhp
+msgctxt ""
+"statistics_anova.xhp\n"
+"par_id1001570\n"
+"help.text"
+msgid "df"
+msgstr ""
+
+#. YhWBw
+#: statistics_anova.xhp
+msgctxt ""
+"statistics_anova.xhp\n"
+"par_id1001580\n"
+"help.text"
+msgid "MS"
+msgstr ""
+
+#. KV6Cy
+#: statistics_anova.xhp
+msgctxt ""
+"statistics_anova.xhp\n"
+"par_id1001590\n"
+"help.text"
+msgid "F"
+msgstr ""
+
+#. QRdrB
+#: statistics_anova.xhp
+msgctxt ""
+"statistics_anova.xhp\n"
+"par_id1001600\n"
+"help.text"
+msgid "P-value"
+msgstr ""
+
+#. Vabri
+#: statistics_anova.xhp
+msgctxt ""
+"statistics_anova.xhp\n"
+"par_id841554943563747\n"
+"help.text"
+msgid "F-critical"
+msgstr ""
+
+#. RR2va
+#: statistics_anova.xhp
+msgctxt ""
+"statistics_anova.xhp\n"
+"par_id1001610\n"
+"help.text"
+msgid "Between Groups"
+msgstr ""
+
+#. tpzCU
+#: statistics_anova.xhp
+msgctxt ""
+"statistics_anova.xhp\n"
+"par_id1001670\n"
+"help.text"
+msgid "Within Groups"
+msgstr ""
+
+#. Lcu3C
+#: statistics_anova.xhp
+msgctxt ""
+"statistics_anova.xhp\n"
+"par_id1001710\n"
+"help.text"
+msgid "Total"
+msgstr ""
+
+#. NaUDo
+#: statistics_correlation.xhp
+msgctxt ""
+"statistics_correlation.xhp\n"
+"tit\n"
+"help.text"
+msgid "Data Correlation in Calc"
+msgstr ""
+
+#. agTA6
+#: statistics_correlation.xhp
+msgctxt ""
+"statistics_correlation.xhp\n"
+"bm_id1464278\n"
+"help.text"
+msgid "<bookmark_value>Analysis toolpack;correlation</bookmark_value><bookmark_value>correlation;Analysis toolpack</bookmark_value><bookmark_value>Data statistics;correlation</bookmark_value>"
+msgstr ""
+
+#. GDsXj
+#: statistics_correlation.xhp
+msgctxt ""
+"statistics_correlation.xhp\n"
+"hd_id1000090\n"
+"help.text"
+msgid "<variable id=\"correlationh1\"><link href=\"text/scalc/01/statistics_correlation.xhp\" name=\"Correlation\">Correlation</link></variable>"
+msgstr ""
+
+#. zJrnQ
+#: statistics_correlation.xhp
+msgctxt ""
+"statistics_correlation.xhp\n"
+"par_id1001740\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/correlationdialog/CorrelationDialog\">Calculates the correlation of two sets of numeric data.</ahelp>"
+msgstr ""
+
+#. WK8ke
+#: statistics_correlation.xhp
+msgctxt ""
+"statistics_correlation.xhp\n"
+"par_id1001750\n"
+"help.text"
+msgid "<variable id=\"corr01\">Choose <menuitem>Data - Statistics - Correlation</menuitem></variable>"
+msgstr ""
+
+#. 85aLv
+#: statistics_correlation.xhp
+msgctxt ""
+"statistics_correlation.xhp\n"
+"par_id1001760\n"
+"help.text"
+msgid "The correlation coefficient (a value between -1 and +1) means how strongly two variables are related to each other. You can use the CORREL function or the Data Statistics to find the correlation coefficient between two variables."
+msgstr ""
+
+#. Az6pZ
+#: statistics_correlation.xhp
+msgctxt ""
+"statistics_correlation.xhp\n"
+"par_id1001770\n"
+"help.text"
+msgid "A correlation coefficient of +1 indicates a perfect positive correlation."
+msgstr ""
+
+#. FtKmy
+#: statistics_correlation.xhp
+msgctxt ""
+"statistics_correlation.xhp\n"
+"par_id1001780\n"
+"help.text"
+msgid "A correlation coefficient of -1 indicates a perfect negative correlation"
+msgstr ""
+
+#. rzVxG
+#: statistics_correlation.xhp
+msgctxt ""
+"statistics_correlation.xhp\n"
+"par_id1001790\n"
+"help.text"
+msgid "For more information on statistical correlation, refer to the <link href=\"https://en.wikipedia.org/wiki/Correlation\" name=\"English Wikipedia: Correlation\">corresponding Wikipedia article</link>."
+msgstr ""
+
+#. 9LxBc
+#: statistics_correlation.xhp
+msgctxt ""
+"statistics_correlation.xhp\n"
+"par_id1001800\n"
+"help.text"
+msgid "The following table displays the results of the correlation of the sample data above."
+msgstr ""
+
+#. GZnGj
+#: statistics_correlation.xhp
+msgctxt ""
+"statistics_correlation.xhp\n"
+"par_id1001810\n"
+"help.text"
+msgid "Correlations"
+msgstr ""
+
+#. JMJ4R
+#: statistics_correlation.xhp
+msgctxt ""
+"statistics_correlation.xhp\n"
+"par_id1001820\n"
+"help.text"
+msgid "Column 1"
+msgstr ""
+
+#. EJm3M
+#: statistics_correlation.xhp
+msgctxt ""
+"statistics_correlation.xhp\n"
+"par_id1001830\n"
+"help.text"
+msgid "Column 2"
+msgstr ""
+
+#. UjLAb
+#: statistics_correlation.xhp
+msgctxt ""
+"statistics_correlation.xhp\n"
+"par_id1001840\n"
+"help.text"
+msgid "Column 3"
+msgstr ""
+
+#. JiUAt
+#: statistics_correlation.xhp
+msgctxt ""
+"statistics_correlation.xhp\n"
+"par_id1001850\n"
+"help.text"
+msgid "Column 1"
+msgstr ""
+
+#. h5ubU
+#: statistics_correlation.xhp
+msgctxt ""
+"statistics_correlation.xhp\n"
+"par_id1001870\n"
+"help.text"
+msgid "Column 2"
+msgstr ""
+
+#. j3GXA
+#: statistics_correlation.xhp
+msgctxt ""
+"statistics_correlation.xhp\n"
+"par_id1001900\n"
+"help.text"
+msgid "Column 3"
+msgstr ""
+
+#. SpEzh
+#: statistics_covariance.xhp
+msgctxt ""
+"statistics_covariance.xhp\n"
+"tit\n"
+"help.text"
+msgid "Data Covariance in Calc"
+msgstr ""
+
+#. FsgEU
+#: statistics_covariance.xhp
+msgctxt ""
+"statistics_covariance.xhp\n"
+"bm_id2964278\n"
+"help.text"
+msgid "<bookmark_value>Analysis toolpack;covariance</bookmark_value><bookmark_value>covariance;Analysis toolpack</bookmark_value><bookmark_value>Data statistics;covariance</bookmark_value>"
+msgstr ""
+
+#. mELGD
+#: statistics_covariance.xhp
+msgctxt ""
+"statistics_covariance.xhp\n"
+"hd_id1000100\n"
+"help.text"
+msgid "<variable id=\"covarianceh1\"><link href=\"text/scalc/01/statistics_covariance.xhp\" name=\"Covariance\">Covariance</link></variable>"
+msgstr ""
+
+#. xZ7MH
+#: statistics_covariance.xhp
+msgctxt ""
+"statistics_covariance.xhp\n"
+"par_id1001940\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/covariancedialog/CovarianceDialog\">Calculates the covariance of two sets of numeric data.</ahelp>"
+msgstr ""
+
+#. WgiEU
+#: statistics_covariance.xhp
+msgctxt ""
+"statistics_covariance.xhp\n"
+"par_id1001950\n"
+"help.text"
+msgid "<variable id=\"cov01\">Choose <menuitem>Data - Statistics - Covariance</menuitem></variable>"
+msgstr ""
+
+#. PrEaV
+#: statistics_covariance.xhp
+msgctxt ""
+"statistics_covariance.xhp\n"
+"par_id1001960\n"
+"help.text"
+msgid "The covariance is a measure of how much two random variables change together."
+msgstr ""
+
+#. mnNLA
+#: statistics_covariance.xhp
+msgctxt ""
+"statistics_covariance.xhp\n"
+"par_id1001970\n"
+"help.text"
+msgid "For more information on statistical covariance, refer to the <link href=\"https://en.wikipedia.org/wiki/Covariance\" name=\"English Wikipedia: Covariance\">corresponding Wikipedia article</link>."
+msgstr ""
+
+#. FNxfQ
+#: statistics_covariance.xhp
+msgctxt ""
+"statistics_covariance.xhp\n"
+"par_id1001980\n"
+"help.text"
+msgid "The following table displays the results of the covariance of the sample data above."
+msgstr ""
+
+#. NEWzK
+#: statistics_covariance.xhp
+msgctxt ""
+"statistics_covariance.xhp\n"
+"par_id1001990\n"
+"help.text"
+msgid "Covariances"
+msgstr ""
+
+#. onYs5
+#: statistics_covariance.xhp
+msgctxt ""
+"statistics_covariance.xhp\n"
+"par_id1002000\n"
+"help.text"
+msgid "Column 1"
+msgstr ""
+
+#. sqErz
+#: statistics_covariance.xhp
+msgctxt ""
+"statistics_covariance.xhp\n"
+"par_id1002010\n"
+"help.text"
+msgid "Column 2"
+msgstr ""
+
+#. n3e2C
+#: statistics_covariance.xhp
+msgctxt ""
+"statistics_covariance.xhp\n"
+"par_id1002020\n"
+"help.text"
+msgid "Column 3"
+msgstr ""
+
+#. F4E2J
+#: statistics_covariance.xhp
+msgctxt ""
+"statistics_covariance.xhp\n"
+"par_id1002030\n"
+"help.text"
+msgid "Column 1"
+msgstr ""
+
+#. 3d6Ds
+#: statistics_covariance.xhp
+msgctxt ""
+"statistics_covariance.xhp\n"
+"par_id1002050\n"
+"help.text"
+msgid "Column 2"
+msgstr ""
+
+#. GajDs
+#: statistics_covariance.xhp
+msgctxt ""
+"statistics_covariance.xhp\n"
+"par_id1002080\n"
+"help.text"
+msgid "Column 3"
+msgstr ""
+
+#. mc3YQ
+#: statistics_descriptive.xhp
+msgctxt ""
+"statistics_descriptive.xhp\n"
+"tit\n"
+"help.text"
+msgid "Descriptive Statistics in Calc"
+msgstr ""
+
+#. H4Cik
+#: statistics_descriptive.xhp
+msgctxt ""
+"statistics_descriptive.xhp\n"
+"bm_id01001\n"
+"help.text"
+msgid "<bookmark_value>Analysis toolpack;descriptive statistics</bookmark_value><bookmark_value>descriptive statistics;Analysis toolpack</bookmark_value><bookmark_value>Data statistics;descriptive statistics</bookmark_value>"
+msgstr ""
+
+#. CWfuc
+#: statistics_descriptive.xhp
+msgctxt ""
+"statistics_descriptive.xhp\n"
+"hd_id1000050\n"
+"help.text"
+msgid "<variable id=\"descriptivestatisticsh1\"><link href=\"text/scalc/01/statistics_descriptive.xhp\" name=\"Descriptive Statistics\">Descriptive Statistics</link></variable>"
+msgstr ""
+
+#. 7XkEb
+#: statistics_descriptive.xhp
+msgctxt ""
+"statistics_descriptive.xhp\n"
+"par_id1000640\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/descriptivestatisticsdialog/DescriptiveStatisticsDialog\">Fill a table in the spreadsheet with the main statistical properties of the data set.</ahelp>"
+msgstr ""
+
+#. EAywA
+#: statistics_descriptive.xhp
+msgctxt ""
+"statistics_descriptive.xhp\n"
+"par_id1000650\n"
+"help.text"
+msgid "<variable id=\"sam01\">Choose <menuitem>Data - Statistics - Descriptive Statistics</menuitem></variable>"
+msgstr ""
+
+#. cuUnJ
+#: statistics_descriptive.xhp
+msgctxt ""
+"statistics_descriptive.xhp\n"
+"par_id1000660\n"
+"help.text"
+msgid "The Descriptive Statistics analysis tool generates a report of univariate statistics for data in the input range, providing information about the central tendency and variability of your data."
+msgstr ""
+
+#. 2bsE3
+#: statistics_descriptive.xhp
+msgctxt ""
+"statistics_descriptive.xhp\n"
+"par_id1000670\n"
+"help.text"
+msgid "For more information on descriptive statistics, refer to the <link href=\"https://en.wikipedia.org/wiki/Descriptive_statistics\" name=\"English Wikipedia: Descriptive statistics\">corresponding Wikipedia article</link>."
+msgstr ""
+
+#. VccwM
+#: statistics_descriptive.xhp
+msgctxt ""
+"statistics_descriptive.xhp\n"
+"par_id1000680\n"
+"help.text"
+msgid "The following table displays the results of the descriptive statistics of the sample data above."
+msgstr ""
+
+#. BmGdK
+#: statistics_descriptive.xhp
+msgctxt ""
+"statistics_descriptive.xhp\n"
+"par_id1000690\n"
+"help.text"
+msgid "Maths"
+msgstr ""
+
+#. BYWoQ
+#: statistics_descriptive.xhp
+msgctxt ""
+"statistics_descriptive.xhp\n"
+"par_id1000700\n"
+"help.text"
+msgid "Physics"
+msgstr ""
+
+#. FeMDR
+#: statistics_descriptive.xhp
+msgctxt ""
+"statistics_descriptive.xhp\n"
+"par_id1000710\n"
+"help.text"
+msgid "Biology"
+msgstr ""
+
+#. AjAbs
+#: statistics_descriptive.xhp
+msgctxt ""
+"statistics_descriptive.xhp\n"
+"par_id1000720\n"
+"help.text"
+msgid "Mean"
+msgstr ""
+
+#. CuH3F
+#: statistics_descriptive.xhp
+msgctxt ""
+"statistics_descriptive.xhp\n"
+"par_id1000760\n"
+"help.text"
+msgid "Standard Error"
+msgstr ""
+
+#. bU9Yb
+#: statistics_descriptive.xhp
+msgctxt ""
+"statistics_descriptive.xhp\n"
+"par_id1000800\n"
+"help.text"
+msgid "Mode"
+msgstr ""
+
+#. PH44f
+#: statistics_descriptive.xhp
+msgctxt ""
+"statistics_descriptive.xhp\n"
+"par_id1000840\n"
+"help.text"
+msgid "Median"
+msgstr ""
+
+#. GKGy8
+#: statistics_descriptive.xhp
+msgctxt ""
+"statistics_descriptive.xhp\n"
+"par_id1000880\n"
+"help.text"
+msgid "Variance"
+msgstr ""
+
+#. XBfaP
+#: statistics_descriptive.xhp
+msgctxt ""
+"statistics_descriptive.xhp\n"
+"par_id1000920\n"
+"help.text"
+msgid "Standard Deviation"
+msgstr ""
+
+#. JqtpV
+#: statistics_descriptive.xhp
+msgctxt ""
+"statistics_descriptive.xhp\n"
+"par_id1000960\n"
+"help.text"
+msgid "Kurtosis"
+msgstr ""
+
+#. CNLwk
+#: statistics_descriptive.xhp
+msgctxt ""
+"statistics_descriptive.xhp\n"
+"par_id1001000\n"
+"help.text"
+msgid "Skewness"
+msgstr ""
+
+#. 4dWHz
+#: statistics_descriptive.xhp
+msgctxt ""
+"statistics_descriptive.xhp\n"
+"par_id1001040\n"
+"help.text"
+msgid "Range"
+msgstr ""
+
+#. XX2DK
+#: statistics_descriptive.xhp
+msgctxt ""
+"statistics_descriptive.xhp\n"
+"par_id1001080\n"
+"help.text"
+msgid "Minimum"
+msgstr ""
+
+#. LKHuw
+#: statistics_descriptive.xhp
+msgctxt ""
+"statistics_descriptive.xhp\n"
+"par_id1001120\n"
+"help.text"
+msgid "Maximum"
+msgstr ""
+
+#. FM2fN
+#: statistics_descriptive.xhp
+msgctxt ""
+"statistics_descriptive.xhp\n"
+"par_id1001160\n"
+"help.text"
+msgid "Sum"
+msgstr ""
+
+#. FZdrB
+#: statistics_descriptive.xhp
+msgctxt ""
+"statistics_descriptive.xhp\n"
+"par_id1001200\n"
+"help.text"
+msgid "Count"
+msgstr ""
+
+#. gAEBc
+#: statistics_exposmooth.xhp
+msgctxt ""
+"statistics_exposmooth.xhp\n"
+"tit\n"
+"help.text"
+msgid "Exponential Smoothing in Calc"
+msgstr ""
+
+#. cNRQD
+#: statistics_exposmooth.xhp
+msgctxt ""
+"statistics_exposmooth.xhp\n"
+"bm_id03001\n"
+"help.text"
+msgid "<bookmark_value>Analysis toolpack;exponential smoothing</bookmark_value><bookmark_value>exponential smoothing;Analysis toolpack</bookmark_value><bookmark_value>Data statistics;exponential smoothing</bookmark_value>"
+msgstr ""
+
+#. CF4hG
+#: statistics_exposmooth.xhp
+msgctxt ""
+"statistics_exposmooth.xhp\n"
+"hd_id1000110\n"
+"help.text"
+msgid "<variable id=\"exponentialsmoothingh1\"><link href=\"text/scalc/01/statistics_exposmooth.xhp\" name=\"Exponential Smoothing\">Exponential Smoothing</link></variable>"
+msgstr ""
+
+#. ESHYa
+#: statistics_exposmooth.xhp
+msgctxt ""
+"statistics_exposmooth.xhp\n"
+"par_id1002120\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/exponentialsmoothingdialog/ExponentialSmoothingDialog\">Results in a smoothed data series</ahelp>"
+msgstr ""
+
+#. CA94C
+#: statistics_exposmooth.xhp
+msgctxt ""
+"statistics_exposmooth.xhp\n"
+"par_id1002130\n"
+"help.text"
+msgid "<variable id=\"sam01\">Choose <menuitem>Data - Statistics - Exponential Smoothing</menuitem></variable>"
+msgstr ""
+
+#. M4GPm
+#: statistics_exposmooth.xhp
+msgctxt ""
+"statistics_exposmooth.xhp\n"
+"par_id1002140\n"
+"help.text"
+msgid "Exponential smoothing is a filtering technique that when applied to a data set, produces smoothed results. It is employed in many domains such as stock market, economics and in sampled measurements."
+msgstr ""
+
+#. BX9Ci
+#: statistics_exposmooth.xhp
+msgctxt ""
+"statistics_exposmooth.xhp\n"
+"par_id1002150\n"
+"help.text"
+msgid "For more information on exponential smoothing, refer to the <link href=\"https://en.wikipedia.org/wiki/Exponential_smoothing\" name=\"English Wikipedia: Exponential smoothing\">corresponding Wikipedia article</link>."
+msgstr ""
+
+#. 2PBvq
+#: statistics_exposmooth.xhp
+msgctxt ""
+"statistics_exposmooth.xhp\n"
+"hd_id1000120\n"
+"help.text"
+msgid "Parameters"
+msgstr ""
+
+#. 5FYLV
+#: statistics_exposmooth.xhp
+msgctxt ""
+"statistics_exposmooth.xhp\n"
+"par_id1002160\n"
+"help.text"
+msgid "<emph>Smoothing Factor</emph>: A parameter between 0 and 1 that represents the damping factor Alpha in the smoothing equation."
+msgstr ""
+
+#. b4y8A
+#: statistics_exposmooth.xhp
+msgctxt ""
+"statistics_exposmooth.xhp\n"
+"par_id1002170\n"
+"help.text"
+msgid "The resulting smoothing is below with smoothing factor as 0.5:"
+msgstr ""
+
+#. GnSwW
+#: statistics_exposmooth.xhp
+msgctxt ""
+"statistics_exposmooth.xhp\n"
+"par_id1002180\n"
+"help.text"
+msgid "Alpha"
+msgstr ""
+
+#. ZJzEM
+#: statistics_exposmooth.xhp
+msgctxt ""
+"statistics_exposmooth.xhp\n"
+"par_id1002200\n"
+"help.text"
+msgid "Column 1"
+msgstr ""
+
+#. dMdDR
+#: statistics_exposmooth.xhp
+msgctxt ""
+"statistics_exposmooth.xhp\n"
+"par_id1002210\n"
+"help.text"
+msgid "Column 2"
+msgstr ""
+
+#. AXaMM
+#: statistics_fourier.xhp
+msgctxt ""
+"statistics_fourier.xhp\n"
+"tit\n"
+"help.text"
+msgid "Fourier Analysis"
+msgstr ""
+
+#. F2ncB
+#: statistics_fourier.xhp
+msgctxt ""
+"statistics_fourier.xhp\n"
+"bm_id2764278\n"
+"help.text"
+msgid "<bookmark_value>Analysis toolpack;Fourier analysis</bookmark_value><bookmark_value>Fourier analysis;Analysis toolpack</bookmark_value><bookmark_value>Data statistics;Fourier analysis</bookmark_value>"
+msgstr ""
+
+#. EV56D
+#: statistics_fourier.xhp
+msgctxt ""
+"statistics_fourier.xhp\n"
+"hd_id431561808831965\n"
+"help.text"
+msgid "<variable id=\"fourieranalysysh1\"><link href=\"text/scalc/01/statistics_fourier.xhp\" name=\"Fourier analysis\">Fourier Analysis</link></variable>"
+msgstr ""
+
+#. EEBRe
+#: statistics_fourier.xhp
+msgctxt ""
+"statistics_fourier.xhp\n"
+"par_id1001240\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/regressiondialog/RegressionDialog\">Produces the Fourier analysis of a data set by computing the Discrete Fourier Transform (DFT) of an input array of complex numbers using a couple of Fast Fourier Transform (FFT) algorithms.</ahelp>"
+msgstr ""
+
+#. sG8zA
+#: statistics_fourier.xhp
+msgctxt ""
+"statistics_fourier.xhp\n"
+"par_id1000040\n"
+"help.text"
+msgid "<variable id=\"sam01\">Choose <menuitem>Data - Statistics - Fourier Analysis</menuitem></variable>"
+msgstr ""
+
+#. HpuG9
+#: statistics_fourier.xhp
+msgctxt ""
+"statistics_fourier.xhp\n"
+"par_id1001270\n"
+"help.text"
+msgid "For more information on Fourier analysis, refer to the <link href=\"https://en.wikipedia.org/wiki/Fourier_analysis\" name=\"English Wikipedia: Fourier analysis\">corresponding Wikipedia article</link>."
+msgstr ""
+
+#. VArYS
+#: statistics_fourier.xhp
+msgctxt ""
+"statistics_fourier.xhp\n"
+"par_id301561811172762\n"
+"help.text"
+msgid "<emph>Input range has label</emph>: Mark when the first row or column of the input array is actually a label and not part of the data analysis."
+msgstr ""
+
+#. Gi5kk
+#: statistics_fourier.xhp
+msgctxt ""
+"statistics_fourier.xhp\n"
+"par_id741556228390897\n"
+"help.text"
+msgid "Input Range is a 2 x N or N x 2 range representing an array of complex number to be transformed, where N is the length of the array. The array represents the real and imaginary parts of the data."
+msgstr ""
+
+#. GqXZr
+#: statistics_fourier.xhp
+msgctxt ""
+"statistics_fourier.xhp\n"
+"hd_id211561811324208\n"
+"help.text"
+msgid "Options:"
+msgstr ""
+
+#. 68RRB
+#: statistics_fourier.xhp
+msgctxt ""
+"statistics_fourier.xhp\n"
+"par_id631556228516997\n"
+"help.text"
+msgid "<emph>Inverse</emph>: When checked, calculates the inverse Discrete Fourier Transform."
+msgstr ""
+
+#. MH9kg
+#: statistics_fourier.xhp
+msgctxt ""
+"statistics_fourier.xhp\n"
+"par_id811561732287508\n"
+"help.text"
+msgid "<emph>Polar</emph>: When checked, the results are in polar coordinates (magnitude, phase)."
+msgstr ""
+
+#. peNbe
+#: statistics_fourier.xhp
+msgctxt ""
+"statistics_fourier.xhp\n"
+"par_id661561732521977\n"
+"help.text"
+msgid "<emph>Minimum magnitude for polar form output (in dB)</emph>: used only when output is in polar form. All frequency components with magnitude less than this value in decibels will be suppressed with a zero magnitude-phase entry. This is very useful when looking at the magnitude-phase spectrum of a signal because there is always some very tiny amount of rounding error when doing FFT algorithms and results in incorrect non-zero phase for non-existent frequencies. By providing a suitable value to this parameter, these non-existent frequency components can be suppressed."
+msgstr ""
+
+#. 8pLcW
+#: statistics_fourier.xhp
+msgctxt ""
+"statistics_fourier.xhp\n"
+"par_id731561827207828\n"
+"help.text"
+msgid "The source data for this example is the same of the <link href=\"text/scalc/01/func_fourier.xhp\" name=\"Fourier function\">FOURIER function page</link>."
+msgstr ""
+
+#. 4XJPB
+#: statistics_fourier.xhp
+msgctxt ""
+"statistics_fourier.xhp\n"
+"par_id290620191257279817\n"
+"help.text"
+msgid "Fourier Transform"
+msgstr ""
+
+#. nfhVE
+#: statistics_fourier.xhp
+msgctxt ""
+"statistics_fourier.xhp\n"
+"par_id29062019125727379\n"
+"help.text"
+msgid "Fourier Transform"
+msgstr ""
+
+#. G6aEG
+#: statistics_fourier.xhp
+msgctxt ""
+"statistics_fourier.xhp\n"
+"par_id290620191257276510\n"
+"help.text"
+msgid "<emph>Input data range : $B$6:$C$40</emph>"
+msgstr ""
+
+#. 5L22z
+#: statistics_fourier.xhp
+msgctxt ""
+"statistics_fourier.xhp\n"
+"par_id290620191257273433\n"
+"help.text"
+msgid "<emph>Input data range : $B$6:$C$40</emph>"
+msgstr ""
+
+#. Vyu9a
+#: statistics_fourier.xhp
+msgctxt ""
+"statistics_fourier.xhp\n"
+"par_id290620191257273688\n"
+"help.text"
+msgid "<emph>Real</emph>"
+msgstr ""
+
+#. qEshW
+#: statistics_fourier.xhp
+msgctxt ""
+"statistics_fourier.xhp\n"
+"par_id290620191257276202\n"
+"help.text"
+msgid "<emph>Imaginary</emph>"
+msgstr ""
+
+#. fJ6BG
+#: statistics_fourier.xhp
+msgctxt ""
+"statistics_fourier.xhp\n"
+"par_id481561825547527\n"
+"help.text"
+msgid "<emph>Magnitude</emph>"
+msgstr ""
+
+#. XcXJz
+#: statistics_fourier.xhp
+msgctxt ""
+"statistics_fourier.xhp\n"
+"par_id751561825556834\n"
+"help.text"
+msgid "<emph>Phase</emph>"
+msgstr ""
+
+#. Yo4ob
+#: statistics_movingavg.xhp
+msgctxt ""
+"statistics_movingavg.xhp\n"
+"tit\n"
+"help.text"
+msgid "Moving Average in Calc"
+msgstr ""
+
+#. pgLeC
+#: statistics_movingavg.xhp
+msgctxt ""
+"statistics_movingavg.xhp\n"
+"bm_id04001\n"
+"help.text"
+msgid "<bookmark_value>Analysis toolpack;moving average</bookmark_value><bookmark_value>moving average;Analysis toolpack</bookmark_value><bookmark_value>Data statistics;moving average</bookmark_value>"
+msgstr ""
+
+#. XUnST
+#: statistics_movingavg.xhp
+msgctxt ""
+"statistics_movingavg.xhp\n"
+"hd_id1000130\n"
+"help.text"
+msgid "<variable id=\"movingaverageh1\"><link href=\"text/scalc/01/statistics_movingavg.xhp\" name=\"Moving Average\">Moving Average</link></variable>"
+msgstr ""
+
+#. ghTMS
+#: statistics_movingavg.xhp
+msgctxt ""
+"statistics_movingavg.xhp\n"
+"par_id1002500\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/movingaveragedialog/MovingAverageDialog\">Calculates the moving average of a time series</ahelp>"
+msgstr ""
+
+#. yW3BR
+#: statistics_movingavg.xhp
+msgctxt ""
+"statistics_movingavg.xhp\n"
+"par_id1002510\n"
+"help.text"
+msgid "<variable id=\"sam01\">Choose <menuitem>Data - Statistics - Moving Average</menuitem></variable>"
+msgstr ""
+
+#. kn7s5
+#: statistics_movingavg.xhp
+msgctxt ""
+"statistics_movingavg.xhp\n"
+"par_id1002520\n"
+"help.text"
+msgid "For more information on the moving average, refer to the <link href=\"https://en.wikipedia.org/wiki/Moving_average\" name=\"English Wikipedia: Moving average\">corresponding Wikipedia article</link>."
+msgstr ""
+
+#. eoQu3
+#: statistics_movingavg.xhp
+msgctxt ""
+"statistics_movingavg.xhp\n"
+"hd_id1000140\n"
+"help.text"
+msgid "Parameters"
+msgstr ""
+
+#. z4Wmd
+#: statistics_movingavg.xhp
+msgctxt ""
+"statistics_movingavg.xhp\n"
+"par_id1002530\n"
+"help.text"
+msgid "<emph>Interval</emph>: The number of samples used in the moving average calculation."
+msgstr ""
+
+#. ZTYni
+#: statistics_movingavg.xhp
+msgctxt ""
+"statistics_movingavg.xhp\n"
+"hd_id1000171\n"
+"help.text"
+msgid "Results of the moving average:"
+msgstr ""
+
+#. GGAtW
+#: statistics_movingavg.xhp
+msgctxt ""
+"statistics_movingavg.xhp\n"
+"par_id1002540\n"
+"help.text"
+msgid "Column 1"
+msgstr ""
+
+#. LDUuS
+#: statistics_movingavg.xhp
+msgctxt ""
+"statistics_movingavg.xhp\n"
+"par_id1002550\n"
+"help.text"
+msgid "Column 2"
+msgstr ""
+
+#. bJZmR
+#: statistics_movingavg.xhp
+msgctxt ""
+"statistics_movingavg.xhp\n"
+"par_id1002560\n"
+"help.text"
+msgid "#N/A"
+msgstr ""
+
+#. qn2Vi
+#: statistics_movingavg.xhp
+msgctxt ""
+"statistics_movingavg.xhp\n"
+"par_id1002570\n"
+"help.text"
+msgid "#N/A"
+msgstr ""
+
+#. bE5BK
+#: statistics_movingavg.xhp
+msgctxt ""
+"statistics_movingavg.xhp\n"
+"par_id1002800\n"
+"help.text"
+msgid "#N/A"
+msgstr ""
+
+#. qTU2p
+#: statistics_movingavg.xhp
+msgctxt ""
+"statistics_movingavg.xhp\n"
+"par_id1002810\n"
+"help.text"
+msgid "#N/A"
+msgstr ""
+
+#. 7EZAg
+#: statistics_regression.xhp
+msgctxt ""
+"statistics_regression.xhp\n"
+"tit\n"
+"help.text"
+msgid "Regression Analysis"
+msgstr ""
+
+#. vJQLe
+#: statistics_regression.xhp
+msgctxt ""
+"statistics_regression.xhp\n"
+"bm_id2764278\n"
+"help.text"
+msgid "<bookmark_value>Analysis toolpack;regression analysis</bookmark_value><bookmark_value>regression analysis;Analysis toolpack</bookmark_value><bookmark_value>Data statistics;regression analysis</bookmark_value><bookmark_value>Confidence level;regression analysis</bookmark_value><bookmark_value>regression analysis;linear</bookmark_value><bookmark_value>regression analysis;power</bookmark_value><bookmark_value>regression analysis;logarithmic</bookmark_value>"
+msgstr ""
+
+#. UPKr7
+#: statistics_regression.xhp
+msgctxt ""
+"statistics_regression.xhp\n"
+"hd_id1701201615033510\n"
+"help.text"
+msgid "<variable id=\"regressionanalysish1\"><link href=\"text/scalc/01/statistics_regression.xhp\" name=\"regression analysis\">Regression Analysis</link></variable>"
+msgstr ""
+
+#. A8gk9
+#: statistics_regression.xhp
+msgctxt ""
+"statistics_regression.xhp\n"
+"par_id1001240\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/regressiondialog/RegressionDialog\">Performs linear, logarithmic, or power regression analysis of a data set comprising one dependent variable and multiple independent variables.</ahelp>"
+msgstr ""
+
+#. PDDGb
+#: statistics_regression.xhp
+msgctxt ""
+"statistics_regression.xhp\n"
+"par_id431629832333206\n"
+"help.text"
+msgid "For example, a crop yield (dependent variable) may be related to rainfall, temperature conditions, sunshine, humidity, soil quality and more, all of them independent variables."
+msgstr ""
+
+#. ENJtD
+#: statistics_regression.xhp
+msgctxt ""
+"statistics_regression.xhp\n"
+"par_id1000040\n"
+"help.text"
+msgid "<variable id=\"sam01\">Choose <menuitem>Data - Statistics - Regression</menuitem></variable>"
+msgstr ""
+
+#. zADGk
+#: statistics_regression.xhp
+msgctxt ""
+"statistics_regression.xhp\n"
+"par_id1001270\n"
+"help.text"
+msgid "For more information on regression analysis, refer to the <link href=\"https://en.wikipedia.org/wiki/Regression_analysis\" name=\"English Wikipedia: Regression analysis\">corresponding Wikipedia article</link>."
+msgstr ""
+
+#. G5y4R
+#: statistics_regression.xhp
+msgctxt ""
+"statistics_regression.xhp\n"
+"hd_id891629830986496\n"
+"help.text"
+msgid "Data"
+msgstr ""
+
+#. 9uRGh
+#: statistics_regression.xhp
+msgctxt ""
+"statistics_regression.xhp\n"
+"hd_id101629830993962\n"
+"help.text"
+msgid "Independent variable(s) (X) range:"
+msgstr ""
+
+#. XGD77
+#: statistics_regression.xhp
+msgctxt ""
+"statistics_regression.xhp\n"
+"par_id961629834099308\n"
+"help.text"
+msgid "Enter a single range that contains multiple independent variable observations (along columns or rows). All X variable observations need to be entered adjacent to each other in the same table."
+msgstr ""
+
+#. yCogF
+#: statistics_regression.xhp
+msgctxt ""
+"statistics_regression.xhp\n"
+"hd_id871629830998653\n"
+"help.text"
+msgid "Dependent variable (Y) range:"
+msgstr ""
+
+#. NiB9B
+#: statistics_regression.xhp
+msgctxt ""
+"statistics_regression.xhp\n"
+"par_id391629834089370\n"
+"help.text"
+msgid "Enter the range that contains the dependent variable whose regression is to be calculated."
+msgstr ""
+
+#. A8dZ8
+#: statistics_regression.xhp
+msgctxt ""
+"statistics_regression.xhp\n"
+"hd_id931629831003368\n"
+"help.text"
+msgid "Both X and Y ranges have labels"
+msgstr ""
+
+#. mSnba
+#: statistics_regression.xhp
+msgctxt ""
+"statistics_regression.xhp\n"
+"par_id261629834071776\n"
+"help.text"
+msgid "Check to use the first line (or column) of the data sets as variable names in the output range."
+msgstr ""
+
+#. 7TDwz
+#: statistics_regression.xhp
+msgctxt ""
+"statistics_regression.xhp\n"
+"hd_id11629831014811\n"
+"help.text"
+msgid "Results to:"
+msgstr ""
+
+#. CAKdU
+#: statistics_regression.xhp
+msgctxt ""
+"statistics_regression.xhp\n"
+"par_id441629834000533\n"
+"help.text"
+msgid "The reference of the top left cell of the range where the results will be displayed."
+msgstr ""
+
+#. ZMxv6
+#: statistics_regression.xhp
+msgctxt ""
+"statistics_regression.xhp\n"
+"hd_id1000070\n"
+"help.text"
+msgid "Output Regression Types"
+msgstr ""
+
+#. QMDBG
+#: statistics_regression.xhp
+msgctxt ""
+"statistics_regression.xhp\n"
+"par_id1001280\n"
+"help.text"
+msgid "Set the regression type. Three types are available:"
+msgstr ""
+
+#. vauNm
+#: statistics_regression.xhp
+msgctxt ""
+"statistics_regression.xhp\n"
+"par_id1701201620334364\n"
+"help.text"
+msgid "<emph>Linear Regression</emph>: finds a linear function in the form of y = b + a<sub>1</sub>.[x<sub>1</sub>] + a<sub>2</sub>.[x<sub>2</sub>] + a<sub>3</sub>.[x<sub>3</sub>] ..., where a<sub>i</sub> is the i-th slope, [x<sub>i</sub>] is the i-th independent variable, and b is the intercept that best fits the data."
+msgstr ""
+
+#. cR7FM
+#: statistics_regression.xhp
+msgctxt ""
+"statistics_regression.xhp\n"
+"par_id1701201620340168\n"
+"help.text"
+msgid "<emph>Logarithmic regression</emph>: finds a logarithmic curve in the form of y = b + a<sub>1</sub>.ln[x<sub>1</sub>] + a<sub>2</sub>.ln[x<sub>2</sub>] + a<sub>3</sub>.ln[x<sub>3</sub>] ..., where a<sub>i</sub> is the i-th coefficient, b is the intercept and ln[x<sub>i</sub>] is the natural logarithm of the i-th independent variable, that best fits the data."
+msgstr ""
+
+#. YfNEL
+#: statistics_regression.xhp
+msgctxt ""
+"statistics_regression.xhp\n"
+"par_id1701201620340139\n"
+"help.text"
+msgid "<emph>Power regression</emph>: finds a power curve in the form of y = exp( b + a<sub>1</sub>.ln[x<sub>1</sub>] + a<sub>2</sub>.ln[x<sub>2</sub>] + a<sub>3</sub>.ln[x<sub>3</sub>] ...), where a<sub>i</sub> is the i-th power, [x<sub>i</sub>] is the i-th independent variable, and b is intercept that best fits the data."
+msgstr ""
+
+#. 3KkxA
+#: statistics_regression.xhp
+msgctxt ""
+"statistics_regression.xhp\n"
+"hd_id331629834218606\n"
+"help.text"
+msgid "Options"
+msgstr ""
+
+#. uBCr7
+#: statistics_regression.xhp
+msgctxt ""
+"statistics_regression.xhp\n"
+"hd_id481629834269509\n"
+"help.text"
+msgid "Confidence level"
+msgstr ""
+
+#. YjBMV
+#: statistics_regression.xhp
+msgctxt ""
+"statistics_regression.xhp\n"
+"par_id971629835636129\n"
+"help.text"
+msgid "A numeric value between 0 and 1 (exclusive), default is 0.95. Calc uses this percentage to compute the corresponding confidence intervals for each of the estimates (namely the slopes and intercept)."
+msgstr ""
+
+#. f2CEs
+#: statistics_regression.xhp
+msgctxt ""
+"statistics_regression.xhp\n"
+"hd_id751629834274709\n"
+"help.text"
+msgid "Calculate residuals"
+msgstr ""
+
+#. b4unQ
+#: statistics_regression.xhp
+msgctxt ""
+"statistics_regression.xhp\n"
+"par_id401629835408653\n"
+"help.text"
+msgid "Select whether to opt in or out of computing the residuals, which may be beneficial in cases where you are interested only in the slopes and intercept estimates and their statistics. The residuals give information on how far the actual data points deviate from the predicted data points, based on the regression model."
+msgstr ""
+
+#. F99az
+#: statistics_regression.xhp
+msgctxt ""
+"statistics_regression.xhp\n"
+"hd_id861629834279039\n"
+"help.text"
+msgid "Force intercept to be zero"
+msgstr ""
+
+#. UYdQb
+#: statistics_regression.xhp
+msgctxt ""
+"statistics_regression.xhp\n"
+"par_id121629837424848\n"
+"help.text"
+msgid "Calculates the regression model using zero as the intercept, thus forcing the model to pass through the origin."
+msgstr ""
+
+#. u47eB
+#: statistics_sampling.xhp
+msgctxt ""
+"statistics_sampling.xhp\n"
+"tit\n"
+"help.text"
+msgid "Data Sampling in Calc"
+msgstr ""
+
+#. LSf66
+#: statistics_sampling.xhp
+msgctxt ""
+"statistics_sampling.xhp\n"
+"bm_id2764278\n"
+"help.text"
+msgid "<bookmark_value>Analysis toolpack;sampling</bookmark_value><bookmark_value>sampling;Analysis toolpack</bookmark_value><bookmark_value>Data statistics;sampling</bookmark_value>"
+msgstr ""
+
+#. 4SPkL
+#: statistics_sampling.xhp
+msgctxt ""
+"statistics_sampling.xhp\n"
+"hd_id1000020\n"
+"help.text"
+msgid "<variable id=\"datasamplingh1\"><link href=\"text/scalc/01/statistics_sampling.xhp\" name=\"Sampling\">Sampling</link></variable>"
+msgstr ""
+
+#. 9XjLD
+#: statistics_sampling.xhp
+msgctxt ""
+"statistics_sampling.xhp\n"
+"par_id1000030\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/samplingdialog/SamplingDialog\">Create a table with data sampled from another table.</ahelp>"
+msgstr ""
+
+#. vM6cz
+#: statistics_sampling.xhp
+msgctxt ""
+"statistics_sampling.xhp\n"
+"par_id1000040\n"
+"help.text"
+msgid "<variable id=\"sam01\">Choose <menuitem>Data - Statistics - Sampling</menuitem></variable>"
+msgstr ""
+
+#. bdELn
+#: statistics_sampling.xhp
+msgctxt ""
+"statistics_sampling.xhp\n"
+"par_id1000050\n"
+"help.text"
+msgid "Sampling allows you to pick data from a <emph>source</emph> table (population) to fill a <emph>target</emph> table. The sampling can be random or in a periodic basis, as well as with or without sample replacement in the source table."
+msgstr ""
+
+#. GRbRi
+#: statistics_sampling.xhp
+msgctxt ""
+"statistics_sampling.xhp\n"
+"par_id1000060\n"
+"help.text"
+msgid "Sampling is done row-wise. That means, the sampled data will pick the whole line of the source table and copy into a line of the target table."
+msgstr ""
+
+#. DmJMr
+#: statistics_sampling.xhp
+msgctxt ""
+"statistics_sampling.xhp\n"
+"hd_id1000030\n"
+"help.text"
+msgid "Sampling Method"
+msgstr ""
+
+#. XsLMx
+#: statistics_sampling.xhp
+msgctxt ""
+"statistics_sampling.xhp\n"
+"hd_id611623249550632\n"
+"help.text"
+msgid "Random"
+msgstr ""
+
+#. fnhdR
+#: statistics_sampling.xhp
+msgctxt ""
+"statistics_sampling.xhp\n"
+"par_id711623249563655\n"
+"help.text"
+msgid "Picks exactly <emph>Sample Size</emph> lines of the source table in a random way."
+msgstr ""
+
+#. ePB4n
+#: statistics_sampling.xhp
+msgctxt ""
+"statistics_sampling.xhp\n"
+"hd_id431623249579089\n"
+"help.text"
+msgid "Sample size"
+msgstr ""
+
+#. LtFAr
+#: statistics_sampling.xhp
+msgctxt ""
+"statistics_sampling.xhp\n"
+"par_id461623249594879\n"
+"help.text"
+msgid "Number of lines sampled from the source table. The Sample size is limited to the population size for all sampling methods without replacement."
+msgstr ""
+
+#. S4cc4
+#: statistics_sampling.xhp
+msgctxt ""
+"statistics_sampling.xhp\n"
+"hd_id931623249610097\n"
+"help.text"
+msgid "With replacement"
+msgstr ""
+
+#. ArJPP
+#: statistics_sampling.xhp
+msgctxt ""
+"statistics_sampling.xhp\n"
+"par_id191623249619384\n"
+"help.text"
+msgid "When checked, put back samples in population (source table) after draw. A sample can be drawn more than once and therefore a larger sample size than population is possible. This option is mutually exclusive with <emph>Keep order</emph>. When unchecked, a sample drawn is not put back to the population and sample size is limited to population size."
+msgstr ""
+
+#. QG5Yo
+#: statistics_sampling.xhp
+msgctxt ""
+"statistics_sampling.xhp\n"
+"hd_id791623249632175\n"
+"help.text"
+msgid "Keep order"
+msgstr ""
+
+#. KBoyr
+#: statistics_sampling.xhp
+msgctxt ""
+"statistics_sampling.xhp\n"
+"par_id741623249641180\n"
+"help.text"
+msgid "When checked, samples are drawn in order of population data. Samples are not put back to the population (exclusive with <emph>With replacement</emph>). This option is automatically checked for <emph>Periodic</emph> sampling. When unchecked, samples are drawn in random order."
+msgstr ""
+
+#. 73nDr
+#: statistics_sampling.xhp
+msgctxt ""
+"statistics_sampling.xhp\n"
+"hd_id461623249656476\n"
+"help.text"
+msgid "Periodic"
+msgstr ""
+
+#. MFSpi
+#: statistics_sampling.xhp
+msgctxt ""
+"statistics_sampling.xhp\n"
+"par_id481623249667345\n"
+"help.text"
+msgid "Picks lines in a pace defined by <emph>Period</emph>."
+msgstr ""
+
+#. jM46a
+#: statistics_sampling.xhp
+msgctxt ""
+"statistics_sampling.xhp\n"
+"hd_id101623249682605\n"
+"help.text"
+msgid "Period"
+msgstr ""
+
+#. NVGau
+#: statistics_sampling.xhp
+msgctxt ""
+"statistics_sampling.xhp\n"
+"par_id621623249692296\n"
+"help.text"
+msgid "The number of lines to skip periodically when sampling. The <emph>Period</emph> is limited to the population size."
+msgstr ""
+
+#. NjytZ
+#: statistics_sampling.xhp
+msgctxt ""
+"statistics_sampling.xhp\n"
+"par_id1000110\n"
+"help.text"
+msgid "The following data will be used as example of source data table for sampling:"
+msgstr ""
+
+#. VR7DD
+#: statistics_sampling.xhp
+msgctxt ""
+"statistics_sampling.xhp\n"
+"par_id1000510\n"
+"help.text"
+msgid "Sampling with a period of 2 will result in the following table:"
+msgstr ""
+
+#. 7UA8A
+#: statistics_test_chisqr.xhp
+msgctxt ""
+"statistics_test_chisqr.xhp\n"
+"tit\n"
+"help.text"
+msgid "Chi Square Statistics in Calc"
+msgstr ""
+
+#. hAnmA
+#: statistics_test_chisqr.xhp
+msgctxt ""
+"statistics_test_chisqr.xhp\n"
+"bm_id05004\n"
+"help.text"
+msgid "<bookmark_value>Analysis toolpack;Chi-square test</bookmark_value><bookmark_value>Chi-square test;Analysis toolpack</bookmark_value><bookmark_value>Data statistics;Chi-square test</bookmark_value>"
+msgstr ""
+
+#. ECMEg
+#: statistics_test_chisqr.xhp
+msgctxt ""
+"statistics_test_chisqr.xhp\n"
+"hd_id1000240\n"
+"help.text"
+msgid "<variable id=\"chisqtesth1\"><link href=\"text/scalc/01/statistics_test_chisqr.xhp\" name=\"Chi-square test\">Chi-square test</link></variable>"
+msgstr ""
+
+#. u5MGV
+#: statistics_test_chisqr.xhp
+msgctxt ""
+"statistics_test_chisqr.xhp\n"
+"par_id1003641\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/chisquaretestdialog/ChiSquareTestDialog\">Calculates the Chi-square test of a data sample.</ahelp>"
+msgstr ""
+
+#. pdD2p
+#: statistics_test_chisqr.xhp
+msgctxt ""
+"statistics_test_chisqr.xhp\n"
+"par_id1003990\n"
+"help.text"
+msgid "<variable id=\"sam02\">Choose <menuitem>Data - Statistics - Chi-square Test</menuitem></variable>"
+msgstr ""
+
+#. V4PzH
+#: statistics_test_chisqr.xhp
+msgctxt ""
+"statistics_test_chisqr.xhp\n"
+"par_id1004000\n"
+"help.text"
+msgid "For more information on chi-square tests, refer to the <link href=\"https://en.wikipedia.org/wiki/Chi-square_test\" name=\"English Wikipedia: Chi-square_test\">corresponding Wikipedia article</link>."
+msgstr ""
+
+#. 46RmG
+#: statistics_test_chisqr.xhp
+msgctxt ""
+"statistics_test_chisqr.xhp\n"
+"hd_id1000231\n"
+"help.text"
+msgid "Results for Chi-square Test:"
+msgstr ""
+
+#. QHuAe
+#: statistics_test_chisqr.xhp
+msgctxt ""
+"statistics_test_chisqr.xhp\n"
+"par_id1004030\n"
+"help.text"
+msgid "Test of Independence (Chi-Square)"
+msgstr ""
+
+#. BzGNg
+#: statistics_test_chisqr.xhp
+msgctxt ""
+"statistics_test_chisqr.xhp\n"
+"par_id1004040\n"
+"help.text"
+msgid "Alpha"
+msgstr ""
+
+#. CRP8j
+#: statistics_test_chisqr.xhp
+msgctxt ""
+"statistics_test_chisqr.xhp\n"
+"par_id1004060\n"
+"help.text"
+msgid "df"
+msgstr ""
+
+#. rcX5Y
+#: statistics_test_chisqr.xhp
+msgctxt ""
+"statistics_test_chisqr.xhp\n"
+"par_id1004080\n"
+"help.text"
+msgid "P-value"
+msgstr ""
+
+#. oF79y
+#: statistics_test_chisqr.xhp
+msgctxt ""
+"statistics_test_chisqr.xhp\n"
+"par_id1004100\n"
+"help.text"
+msgid "Test Statistic"
+msgstr ""
+
+#. ykGTD
+#: statistics_test_chisqr.xhp
+msgctxt ""
+"statistics_test_chisqr.xhp\n"
+"par_id1004120\n"
+"help.text"
+msgid "Critical Value"
+msgstr ""
+
+#. SeEHX
+#: statistics_test_f.xhp
+msgctxt ""
+"statistics_test_f.xhp\n"
+"tit\n"
+"help.text"
+msgid "F Test Statistics in Calc"
+msgstr ""
+
+#. bWFPL
+#: statistics_test_f.xhp
+msgctxt ""
+"statistics_test_f.xhp\n"
+"bm_id05002\n"
+"help.text"
+msgid "<bookmark_value>Analysis toolpack;F-test</bookmark_value><bookmark_value>F-test;Analysis toolpack</bookmark_value><bookmark_value>Data statistics;F-test</bookmark_value>"
+msgstr ""
+
+#. gZWPc
+#: statistics_test_f.xhp
+msgctxt ""
+"statistics_test_f.xhp\n"
+"hd_id1000180\n"
+"help.text"
+msgid "<variable id=\"ftesth1\"><link href=\"text/scalc/01/statistics_test_f.xhp\" name=\"F-test\">F-test</link></variable>"
+msgstr ""
+
+#. qHRjW
+#: statistics_test_f.xhp
+msgctxt ""
+"statistics_test_f.xhp\n"
+"par_id1003240\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/ttestdialog/TTestDialog\">Calculates the F-Test of two data samples.</ahelp>"
+msgstr ""
+
+#. ARt6p
+#: statistics_test_f.xhp
+msgctxt ""
+"statistics_test_f.xhp\n"
+"par_id1003250\n"
+"help.text"
+msgid "<variable id=\"sam02\">Choose <menuitem>Data - Statistics - F-test</menuitem></variable>"
+msgstr ""
+
+#. FxKGF
+#: statistics_test_f.xhp
+msgctxt ""
+"statistics_test_f.xhp\n"
+"par_id1003260\n"
+"help.text"
+msgid "A <emph>F-test</emph> is any statistical test based on the F-distribution under the null hypothesis."
+msgstr ""
+
+#. EGFSG
+#: statistics_test_f.xhp
+msgctxt ""
+"statistics_test_f.xhp\n"
+"par_id1003270\n"
+"help.text"
+msgid "For more information on F-tests, refer to the <link href=\"https://en.wikipedia.org/wiki/F-test\" name=\"English Wikipedia: F-test\">corresponding Wikipedia article</link>."
+msgstr ""
+
+#. GxHaD
+#: statistics_test_f.xhp
+msgctxt ""
+"statistics_test_f.xhp\n"
+"hd_id1000190\n"
+"help.text"
+msgid "Data"
+msgstr ""
+
+#. jtjaQ
+#: statistics_test_f.xhp
+msgctxt ""
+"statistics_test_f.xhp\n"
+"par_id1003280\n"
+"help.text"
+msgid "<emph>Variable 1 range</emph>: The reference of the range of the first data series to analyze."
+msgstr ""
+
+#. qzYBv
+#: statistics_test_f.xhp
+msgctxt ""
+"statistics_test_f.xhp\n"
+"par_id1003290\n"
+"help.text"
+msgid "<emph>Variable 2 range</emph>: The reference of the range of the second data series to analyze."
+msgstr ""
+
+#. MvvMT
+#: statistics_test_f.xhp
+msgctxt ""
+"statistics_test_f.xhp\n"
+"par_id1003300\n"
+"help.text"
+msgid "<emph>Results to</emph>: The reference of the top left cell of the range where the test will be displayed."
+msgstr ""
+
+#. Greqo
+#: statistics_test_f.xhp
+msgctxt ""
+"statistics_test_f.xhp\n"
+"hd_id1000200\n"
+"help.text"
+msgid "Results for F-Test:"
+msgstr ""
+
+#. XqyMa
+#: statistics_test_f.xhp
+msgctxt ""
+"statistics_test_f.xhp\n"
+"par_id1003310\n"
+"help.text"
+msgid "The following table shows the <emph>F-Test</emph> for the data series above:"
+msgstr ""
+
+#. git3T
+#: statistics_test_f.xhp
+msgctxt ""
+"statistics_test_f.xhp\n"
+"par_id1003320\n"
+"help.text"
+msgid "Ftest"
+msgstr ""
+
+#. WsA4s
+#: statistics_test_f.xhp
+msgctxt ""
+"statistics_test_f.xhp\n"
+"par_id1003330\n"
+"help.text"
+msgid "Alpha"
+msgstr ""
+
+#. xj9Se
+#: statistics_test_f.xhp
+msgctxt ""
+"statistics_test_f.xhp\n"
+"par_id1003350\n"
+"help.text"
+msgid "Variable 1"
+msgstr ""
+
+#. p5piv
+#: statistics_test_f.xhp
+msgctxt ""
+"statistics_test_f.xhp\n"
+"par_id1003360\n"
+"help.text"
+msgid "Variable 2"
+msgstr ""
+
+#. YA2dy
+#: statistics_test_f.xhp
+msgctxt ""
+"statistics_test_f.xhp\n"
+"par_id1003370\n"
+"help.text"
+msgid "Mean"
+msgstr ""
+
+#. 8MXro
+#: statistics_test_f.xhp
+msgctxt ""
+"statistics_test_f.xhp\n"
+"par_id1003400\n"
+"help.text"
+msgid "Variance"
+msgstr ""
+
+#. W2J6x
+#: statistics_test_f.xhp
+msgctxt ""
+"statistics_test_f.xhp\n"
+"par_id1003430\n"
+"help.text"
+msgid "Observations"
+msgstr ""
+
+#. DqgMQ
+#: statistics_test_f.xhp
+msgctxt ""
+"statistics_test_f.xhp\n"
+"par_id1003460\n"
+"help.text"
+msgid "df"
+msgstr ""
+
+#. BJ3Vi
+#: statistics_test_f.xhp
+msgctxt ""
+"statistics_test_f.xhp\n"
+"par_id1003490\n"
+"help.text"
+msgid "F"
+msgstr ""
+
+#. AasLh
+#: statistics_test_f.xhp
+msgctxt ""
+"statistics_test_f.xhp\n"
+"par_id1003510\n"
+"help.text"
+msgid "P (F<=f) right-tail"
+msgstr ""
+
+#. FVAJa
+#: statistics_test_f.xhp
+msgctxt ""
+"statistics_test_f.xhp\n"
+"par_id1003530\n"
+"help.text"
+msgid "F Critical right-tail"
+msgstr ""
+
+#. zBzCY
+#: statistics_test_f.xhp
+msgctxt ""
+"statistics_test_f.xhp\n"
+"par_id1003550\n"
+"help.text"
+msgid "P (F<=f) left-tail"
+msgstr ""
+
+#. LA56M
+#: statistics_test_f.xhp
+msgctxt ""
+"statistics_test_f.xhp\n"
+"par_id1003570\n"
+"help.text"
+msgid "F Critical left-tail"
+msgstr ""
+
+#. 9ZNSy
+#: statistics_test_f.xhp
+msgctxt ""
+"statistics_test_f.xhp\n"
+"par_id1003590\n"
+"help.text"
+msgid "P two-tail"
+msgstr ""
+
+#. dQ4WA
+#: statistics_test_f.xhp
+msgctxt ""
+"statistics_test_f.xhp\n"
+"par_id1003610\n"
+"help.text"
+msgid "F Critical two-tail"
+msgstr ""
+
+#. jMBzo
+#: statistics_test_t.xhp
+msgctxt ""
+"statistics_test_t.xhp\n"
+"tit\n"
+"help.text"
+msgid "T Test Statistics in Calc"
+msgstr ""
+
+#. cKb9k
+#: statistics_test_t.xhp
+msgctxt ""
+"statistics_test_t.xhp\n"
+"bm_id05001\n"
+"help.text"
+msgid "<bookmark_value>Analysis toolpack;t-test</bookmark_value><bookmark_value>Analysis toolpack;paired t-test</bookmark_value><bookmark_value>t-test;Analysis toolpack</bookmark_value><bookmark_value>paired t-test;Analysis toolpack</bookmark_value><bookmark_value>Data statistics;paired t-test</bookmark_value>"
+msgstr ""
+
+#. QWgi3
+#: statistics_test_t.xhp
+msgctxt ""
+"statistics_test_t.xhp\n"
+"hd_id1000150\n"
+"help.text"
+msgid "<variable id=\"ttesth1\"><link href=\"text/scalc/01/statistics_test_t.xhp\" name=\"Paired t-test\">Paired t-test</link></variable>"
+msgstr ""
+
+#. TXtGV
+#: statistics_test_t.xhp
+msgctxt ""
+"statistics_test_t.xhp\n"
+"par_id1002820\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/ttestdialog/TTestDialog\">Calculates the paired t-Test of two data samples.</ahelp>"
+msgstr ""
+
+#. EVZDy
+#: statistics_test_t.xhp
+msgctxt ""
+"statistics_test_t.xhp\n"
+"par_id1002830\n"
+"help.text"
+msgid "<variable id=\"sam01\">Choose <menuitem>Data - Statistics - Paired t-test</menuitem></variable>"
+msgstr ""
+
+#. 3ngCe
+#: statistics_test_t.xhp
+msgctxt ""
+"statistics_test_t.xhp\n"
+"par_id1002840\n"
+"help.text"
+msgid "A <emph>paired t-test</emph> is any statistical hypothesis test that follows a Student's t distribution."
+msgstr ""
+
+#. NE5Ro
+#: statistics_test_t.xhp
+msgctxt ""
+"statistics_test_t.xhp\n"
+"par_id1002850\n"
+"help.text"
+msgid "For more information on paired t-tests, refer to the <link href=\"https://en.wikipedia.org/wiki/T-test\" name=\"English Wikipedia: T-test\">corresponding Wikipedia article</link>."
+msgstr ""
+
+#. BEkGF
+#: statistics_test_t.xhp
+msgctxt ""
+"statistics_test_t.xhp\n"
+"hd_id1000160\n"
+"help.text"
+msgid "Data"
+msgstr ""
+
+#. aU9k6
+#: statistics_test_t.xhp
+msgctxt ""
+"statistics_test_t.xhp\n"
+"par_id1002860\n"
+"help.text"
+msgid "<emph>Variable 1 range</emph>: The reference of the range of the first data series to analyze."
+msgstr ""
+
+#. 27zQ4
+#: statistics_test_t.xhp
+msgctxt ""
+"statistics_test_t.xhp\n"
+"par_id1002870\n"
+"help.text"
+msgid "<emph>Variable 2 range</emph>: The reference of the range of the second data series to analyze."
+msgstr ""
+
+#. 8D2Gp
+#: statistics_test_t.xhp
+msgctxt ""
+"statistics_test_t.xhp\n"
+"par_id1002880\n"
+"help.text"
+msgid "<emph>Results to</emph>: The reference of the top left cell of the range where the test will be displayed."
+msgstr ""
+
+#. KcmaB
+#: statistics_test_t.xhp
+msgctxt ""
+"statistics_test_t.xhp\n"
+"hd_id1000170\n"
+"help.text"
+msgid "Results for paired t-test:"
+msgstr ""
+
+#. egFAr
+#: statistics_test_t.xhp
+msgctxt ""
+"statistics_test_t.xhp\n"
+"par_id1002890\n"
+"help.text"
+msgid "The following table shows the <emph>paired t-test</emph> for the data series above:"
+msgstr ""
+
+#. rDVBE
+#: statistics_test_t.xhp
+msgctxt ""
+"statistics_test_t.xhp\n"
+"par_id1002900\n"
+"help.text"
+msgid "paired t-test"
+msgstr ""
+
+#. pFrdF
+#: statistics_test_t.xhp
+msgctxt ""
+"statistics_test_t.xhp\n"
+"par_id1002910\n"
+"help.text"
+msgid "Alpha"
+msgstr ""
+
+#. da77D
+#: statistics_test_t.xhp
+msgctxt ""
+"statistics_test_t.xhp\n"
+"par_id1002930\n"
+"help.text"
+msgid "Hypothesized Mean Difference"
+msgstr ""
+
+#. tJarn
+#: statistics_test_t.xhp
+msgctxt ""
+"statistics_test_t.xhp\n"
+"par_id1002950\n"
+"help.text"
+msgid "Variable 1"
+msgstr ""
+
+#. kfGaW
+#: statistics_test_t.xhp
+msgctxt ""
+"statistics_test_t.xhp\n"
+"par_id1002960\n"
+"help.text"
+msgid "Variable 2"
+msgstr ""
+
+#. ttThs
+#: statistics_test_t.xhp
+msgctxt ""
+"statistics_test_t.xhp\n"
+"par_id1002970\n"
+"help.text"
+msgid "Mean"
+msgstr ""
+
+#. G7NDq
+#: statistics_test_t.xhp
+msgctxt ""
+"statistics_test_t.xhp\n"
+"par_id1003000\n"
+"help.text"
+msgid "Variance"
+msgstr ""
+
+#. AsmDu
+#: statistics_test_t.xhp
+msgctxt ""
+"statistics_test_t.xhp\n"
+"par_id1003030\n"
+"help.text"
+msgid "Observations"
+msgstr ""
+
+#. MmDD2
+#: statistics_test_t.xhp
+msgctxt ""
+"statistics_test_t.xhp\n"
+"par_id1003060\n"
+"help.text"
+msgid "Pearson Correlation"
+msgstr ""
+
+#. Nqq8i
+#: statistics_test_t.xhp
+msgctxt ""
+"statistics_test_t.xhp\n"
+"par_id1003080\n"
+"help.text"
+msgid "Observed Mean Difference"
+msgstr ""
+
+#. vDgsc
+#: statistics_test_t.xhp
+msgctxt ""
+"statistics_test_t.xhp\n"
+"par_id1003100\n"
+"help.text"
+msgid "Variance of the Differences"
+msgstr ""
+
+#. CFBrp
+#: statistics_test_t.xhp
+msgctxt ""
+"statistics_test_t.xhp\n"
+"par_id1003120\n"
+"help.text"
+msgid "df"
+msgstr ""
+
+#. mAixM
+#: statistics_test_t.xhp
+msgctxt ""
+"statistics_test_t.xhp\n"
+"par_id1003140\n"
+"help.text"
+msgid "t Stat"
+msgstr ""
+
+#. utcA9
+#: statistics_test_t.xhp
+msgctxt ""
+"statistics_test_t.xhp\n"
+"par_id1003160\n"
+"help.text"
+msgid "P (T<=t) one-tail"
+msgstr ""
+
+#. 7mezL
+#: statistics_test_t.xhp
+msgctxt ""
+"statistics_test_t.xhp\n"
+"par_id1003180\n"
+"help.text"
+msgid "t Critical one-tail"
+msgstr ""
+
+#. GdcRG
+#: statistics_test_t.xhp
+msgctxt ""
+"statistics_test_t.xhp\n"
+"par_id1003200\n"
+"help.text"
+msgid "P (T<=t) two-tail"
+msgstr ""
+
+#. kh5E7
+#: statistics_test_t.xhp
+msgctxt ""
+"statistics_test_t.xhp\n"
+"par_id1003220\n"
+"help.text"
+msgid "t Critical two-tail"
+msgstr ""
+
+#. QA9fL
+#: statistics_test_z.xhp
+msgctxt ""
+"statistics_test_z.xhp\n"
+"tit\n"
+"help.text"
+msgid "Z Test Statistics in Calc"
+msgstr ""
+
+#. EQw7L
+#: statistics_test_z.xhp
+msgctxt ""
+"statistics_test_z.xhp\n"
+"bm_id05003\n"
+"help.text"
+msgid "<bookmark_value>Analysis toolpack;Z-test</bookmark_value><bookmark_value>Z-test;Analysis toolpack</bookmark_value><bookmark_value>Data statistics;Z-test</bookmark_value>"
+msgstr ""
+
+#. XEQkC
+#: statistics_test_z.xhp
+msgctxt ""
+"statistics_test_z.xhp\n"
+"hd_id1000210\n"
+"help.text"
+msgid "<variable id=\"ztesth1\"><link href=\"text/scalc/01/statistics_test_z.xhp\" name=\"Z-test\">Z-test</link></variable>"
+msgstr ""
+
+#. vjPXp
+#: statistics_test_z.xhp
+msgctxt ""
+"statistics_test_z.xhp\n"
+"par_id1003640\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/ztestdialog/ZTestDialog\">Calculates the z-Test of two data samples.</ahelp>"
+msgstr ""
+
+#. FeUKV
+#: statistics_test_z.xhp
+msgctxt ""
+"statistics_test_z.xhp\n"
+"par_id1003650\n"
+"help.text"
+msgid "<variable id=\"sam02\">Choose <menuitem>Data - Statistics - Z-test</menuitem></variable>"
+msgstr ""
+
+#. DrfAa
+#: statistics_test_z.xhp
+msgctxt ""
+"statistics_test_z.xhp\n"
+"par_id1003660\n"
+"help.text"
+msgid "For more information on Z-tests, refer to the <link href=\"https://en.wikipedia.org/wiki/Z-test\" name=\"English Wikipedia: Z-test\">corresponding Wikipedia article</link>."
+msgstr ""
+
+#. uj2zU
+#: statistics_test_z.xhp
+msgctxt ""
+"statistics_test_z.xhp\n"
+"hd_id1000220\n"
+"help.text"
+msgid "Data"
+msgstr ""
+
+#. G5qUC
+#: statistics_test_z.xhp
+msgctxt ""
+"statistics_test_z.xhp\n"
+"par_id1003670\n"
+"help.text"
+msgid "<emph>Variable 1 range</emph>: The reference of the range of the first data series to analyze."
+msgstr ""
+
+#. 6sDZb
+#: statistics_test_z.xhp
+msgctxt ""
+"statistics_test_z.xhp\n"
+"par_id1003680\n"
+"help.text"
+msgid "<emph>Variable 2 range</emph>: The reference of the range of the second data series to analyze."
+msgstr ""
+
+#. SRfn5
+#: statistics_test_z.xhp
+msgctxt ""
+"statistics_test_z.xhp\n"
+"par_id1003690\n"
+"help.text"
+msgid "<emph>Results to</emph>: The reference of the top left cell of the range where the test will be displayed."
+msgstr ""
+
+#. WLqsj
+#: statistics_test_z.xhp
+msgctxt ""
+"statistics_test_z.xhp\n"
+"hd_id1000230\n"
+"help.text"
+msgid "Results for z-Test:"
+msgstr ""
+
+#. bS4Zx
+#: statistics_test_z.xhp
+msgctxt ""
+"statistics_test_z.xhp\n"
+"par_id1003700\n"
+"help.text"
+msgid "The following table shows the <emph>z-Test</emph> for the data series above:"
+msgstr ""
+
+#. cyNij
+#: statistics_test_z.xhp
+msgctxt ""
+"statistics_test_z.xhp\n"
+"par_id1003710\n"
+"help.text"
+msgid "z-test"
+msgstr ""
+
+#. 2jGDY
+#: statistics_test_z.xhp
+msgctxt ""
+"statistics_test_z.xhp\n"
+"par_id1003720\n"
+"help.text"
+msgid "Alpha"
+msgstr ""
+
+#. S4FZC
+#: statistics_test_z.xhp
+msgctxt ""
+"statistics_test_z.xhp\n"
+"par_id1003740\n"
+"help.text"
+msgid "Hypothesized Mean Difference"
+msgstr ""
+
+#. EyFTK
+#: statistics_test_z.xhp
+msgctxt ""
+"statistics_test_z.xhp\n"
+"par_id1003760\n"
+"help.text"
+msgid "Variable 1"
+msgstr ""
+
+#. yybKF
+#: statistics_test_z.xhp
+msgctxt ""
+"statistics_test_z.xhp\n"
+"par_id1003770\n"
+"help.text"
+msgid "Variable 2"
+msgstr ""
+
+#. zi3v9
+#: statistics_test_z.xhp
+msgctxt ""
+"statistics_test_z.xhp\n"
+"par_id1003780\n"
+"help.text"
+msgid "Known Variance"
+msgstr ""
+
+#. RozyW
+#: statistics_test_z.xhp
+msgctxt ""
+"statistics_test_z.xhp\n"
+"par_id1003810\n"
+"help.text"
+msgid "Mean"
+msgstr ""
+
+#. fV5Cq
+#: statistics_test_z.xhp
+msgctxt ""
+"statistics_test_z.xhp\n"
+"par_id1003840\n"
+"help.text"
+msgid "Observations"
+msgstr ""
+
+#. Nfz8K
+#: statistics_test_z.xhp
+msgctxt ""
+"statistics_test_z.xhp\n"
+"par_id1003870\n"
+"help.text"
+msgid "Observed Mean Difference"
+msgstr ""
+
+#. MDCGb
+#: statistics_test_z.xhp
+msgctxt ""
+"statistics_test_z.xhp\n"
+"par_id1003890\n"
+"help.text"
+msgid "z"
+msgstr ""
+
+#. N35cE
+#: statistics_test_z.xhp
+msgctxt ""
+"statistics_test_z.xhp\n"
+"par_id1003900\n"
+"help.text"
+msgid "#DIV/0!"
+msgstr ""
+
+#. BiBJi
+#: statistics_test_z.xhp
+msgctxt ""
+"statistics_test_z.xhp\n"
+"par_id1003910\n"
+"help.text"
+msgid "P (Z<=z) one-tail"
+msgstr ""
+
+#. HqGPf
+#: statistics_test_z.xhp
+msgctxt ""
+"statistics_test_z.xhp\n"
+"par_id1003920\n"
+"help.text"
+msgid "#DIV/0!"
+msgstr ""
+
+#. 2NUBk
+#: statistics_test_z.xhp
+msgctxt ""
+"statistics_test_z.xhp\n"
+"par_id1003930\n"
+"help.text"
+msgid "z Critical one-tail"
+msgstr ""
+
+#. WBGeU
+#: statistics_test_z.xhp
+msgctxt ""
+"statistics_test_z.xhp\n"
+"par_id1003950\n"
+"help.text"
+msgid "P (Z<=z) two-tail"
+msgstr ""
+
+#. TPsmf
+#: statistics_test_z.xhp
+msgctxt ""
+"statistics_test_z.xhp\n"
+"par_id1003960\n"
+"help.text"
+msgid "#DIV/0!"
+msgstr ""
+
+#. NCMYu
+#: statistics_test_z.xhp
+msgctxt ""
+"statistics_test_z.xhp\n"
+"par_id1003970\n"
+"help.text"
+msgid "z Critical two-tail"
+msgstr ""
+
+#. bdLFh
+#: text2columns.xhp
+msgctxt ""
+"text2columns.xhp\n"
+"tit\n"
+"help.text"
+msgid "Text to Columns"
+msgstr ""
+
+#. 9VbAX
+#: text2columns.xhp
+msgctxt ""
+"text2columns.xhp\n"
+"bm_id8004394\n"
+"help.text"
+msgid "<bookmark_value>text to columns</bookmark_value>"
+msgstr ""
+
+#. z37Qj
+#: text2columns.xhp
+msgctxt ""
+"text2columns.xhp\n"
+"hd_id2300180\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/text2columns.xhp\">Text to Columns</link>"
+msgstr ""
+
+#. pvPPw
+#: text2columns.xhp
+msgctxt ""
+"text2columns.xhp\n"
+"par_id655232\n"
+"help.text"
+msgid "<variable id=\"text2columns\">Opens the Text to Columns dialog, where you enter settings to expand the contents of selected cells to multiple cells.</variable>"
+msgstr ""
+
+#. YwdL2
+#: text2columns.xhp
+msgctxt ""
+"text2columns.xhp\n"
+"hd_id9599597\n"
+"help.text"
+msgid "To expand cell contents to multiple cells"
+msgstr ""
+
+#. z5ESo
+#: text2columns.xhp
+msgctxt ""
+"text2columns.xhp\n"
+"par_id2021546\n"
+"help.text"
+msgid "You can expand cells that contain comma separated values (CSV) into multiple cells in the same row."
+msgstr ""
+
+#. RG9PG
+#: text2columns.xhp
+msgctxt ""
+"text2columns.xhp\n"
+"par_id2623981\n"
+"help.text"
+msgid "For example, cell A1 contains the comma separated values <item type=\"literal\">1,2,3,4</item>, and cell A2 contains the text <item type=\"literal\">A,B,C,D</item>."
+msgstr ""
+
+#. WeJnJ
+#: text2columns.xhp
+msgctxt ""
+"text2columns.xhp\n"
+"par_id7242042\n"
+"help.text"
+msgid "Select the cell or cells that you want to expand."
+msgstr ""
+
+#. UgNFd
+#: text2columns.xhp
+msgctxt ""
+"text2columns.xhp\n"
+"par_id6999420\n"
+"help.text"
+msgid "Choose <emph>Data - Text to Columns</emph>."
+msgstr ""
+
+#. RLZ5H
+#: text2columns.xhp
+msgctxt ""
+"text2columns.xhp\n"
+"par_id6334116\n"
+"help.text"
+msgid "You see the Text to Columns dialog."
+msgstr ""
+
+#. BpH4f
+#: text2columns.xhp
+msgctxt ""
+"text2columns.xhp\n"
+"par_id9276406\n"
+"help.text"
+msgid "Select the separator options. The preview shows how the current cell contents will be transformed into multiple cells."
+msgstr ""
+
+#. V77jv
+#: text2columns.xhp
+msgctxt ""
+"text2columns.xhp\n"
+"par_id8523819\n"
+"help.text"
+msgid "You can select a fixed width and then click the ruler on the preview to set cell breakup positions."
+msgstr ""
+
+#. DjifN
+#: text2columns.xhp
+msgctxt ""
+"text2columns.xhp\n"
+"par_id1517380\n"
+"help.text"
+msgid "You can select or enter separator characters to define the positions of breaking points. The separator characters are removed from the resulting cell contents."
+msgstr ""
+
+#. Gm2Jy
+#: text2columns.xhp
+msgctxt ""
+"text2columns.xhp\n"
+"par_id7110812\n"
+"help.text"
+msgid "In the example, you select the comma as a delimiter character. Cells A1 and A2 will be expanded to four columns each. A1 contains 1, B1 contains 2, and so on."
+msgstr ""
+
+#. ABXho
+#: xml_source.xhp
+msgctxt ""
+"xml_source.xhp\n"
+"tit\n"
+"help.text"
+msgid "XML Data"
+msgstr ""
+
+#. mRd9B
+#: xml_source.xhp
+msgctxt ""
+"xml_source.xhp\n"
+"bm_id240920171018528200\n"
+"help.text"
+msgid "<bookmark_value>XML Source;load XML data in spreadsheets</bookmark_value>"
+msgstr ""
+
+#. iaidA
+#: xml_source.xhp
+msgctxt ""
+"xml_source.xhp\n"
+"hd_id240920171003006302\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/xml_source.xhp\">XML Source</link>"
+msgstr ""
+
+#. N4w3P
+#: xml_source.xhp
+msgctxt ""
+"xml_source.xhp\n"
+"par_id240920171003293400\n"
+"help.text"
+msgid "<ahelp hid=\".\">Import XML data in a spreadsheet.</ahelp>"
+msgstr ""
+
+#. 8CuiN
+#: xml_source.xhp
+msgctxt ""
+"xml_source.xhp\n"
+"par_id861521496523519\n"
+"help.text"
+msgid "The XML Source feature allows to import data from arbitrarily structured XML content into cells in an existing spreadsheet document. It allows XML content to be imported either partially or in full, depending on the structure of the XML content and the map definitions that the user defines. The user can specify multiple non-overlapping sub-structures to be mapped to different cell positions within the same document. The user can import either element contents, attribute values or both."
+msgstr ""
+
+#. SBwHr
+#: xml_source.xhp
+msgctxt ""
+"xml_source.xhp\n"
+"par_id240920171007389295\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">Data - XML Source</item>."
+msgstr ""
+
+#. m8sWR
+#: xml_source.xhp
+msgctxt ""
+"xml_source.xhp\n"
+"hd_id801521494731764\n"
+"help.text"
+msgid "XML Source Dialog"
+msgstr ""
+
+#. MZB9H
+#: xml_source.xhp
+msgctxt ""
+"xml_source.xhp\n"
+"par_id291521494762812\n"
+"help.text"
+msgid "The dialog consists of four parts."
+msgstr ""
+
+#. w7NoA
+#: xml_source.xhp
+msgctxt ""
+"xml_source.xhp\n"
+"hd_id601521494755603\n"
+"help.text"
+msgid "Source file"
+msgstr ""
+
+#. dSeBP
+#: xml_source.xhp
+msgctxt ""
+"xml_source.xhp\n"
+"par_id161521494769832\n"
+"help.text"
+msgid "This lets you specify the path to the XML file that you wish to import into your document."
+msgstr ""
+
+#. hcfNL
+#: xml_source.xhp
+msgctxt ""
+"xml_source.xhp\n"
+"hd_id491521494788029\n"
+"help.text"
+msgid "Map to Document"
+msgstr ""
+
+#. RpAuk
+#: xml_source.xhp
+msgctxt ""
+"xml_source.xhp\n"
+"par_id211521494776007\n"
+"help.text"
+msgid "This pane shows the structure of the source XML content as a tree. This is initially empty, and gets populated when you specify the source file."
+msgstr ""
+
+#. dBEwr
+#: xml_source.xhp
+msgctxt ""
+"xml_source.xhp\n"
+"par_id161521494796604\n"
+"help.text"
+msgid "Each element in the tree can be one of three types:"
+msgstr ""
+
+#. T65DV
+#: xml_source.xhp
+msgctxt ""
+"xml_source.xhp\n"
+"par_id931521494810426\n"
+"help.text"
+msgid "attribute, represented by the symbol <emph>@</emph>"
+msgstr ""
+
+#. xkror
+#: xml_source.xhp
+msgctxt ""
+"xml_source.xhp\n"
+"par_id521521494825665\n"
+"help.text"
+msgid "single non-recurring element, represented by the symbol <emph></></emph>, and"
+msgstr ""
+
+#. ReEmy
+#: xml_source.xhp
+msgctxt ""
+"xml_source.xhp\n"
+"par_id691521494844848\n"
+"help.text"
+msgid "recurring element, represented by the symbol <emph><//></emph>."
+msgstr ""
+
+#. WcNfX
+#: xml_source.xhp
+msgctxt ""
+"xml_source.xhp\n"
+"par_id451521494864514\n"
+"help.text"
+msgid "A non-recurring element is an element that can only occur once under the same parent. It is mapped to a single cell in the document."
+msgstr ""
+
+#. WVC7K
+#: xml_source.xhp
+msgctxt ""
+"xml_source.xhp\n"
+"par_id361521494872103\n"
+"help.text"
+msgid "A recurring element is an element that can appear multiple times under the same parent. It serves as an enclosing parent of a single record entry of multiple record entries. These entries are imported into a range those height equals the number of entries plus one additional header row."
+msgstr ""
+
+#. 3BFmD
+#: xml_source.xhp
+msgctxt ""
+"xml_source.xhp\n"
+"hd_id581521494885433\n"
+"help.text"
+msgid "Mapped cell"
+msgstr ""
+
+#. hPodi
+#: xml_source.xhp
+msgctxt ""
+"xml_source.xhp\n"
+"par_id661521494897796\n"
+"help.text"
+msgid "This field specifies the position of a cell in the document that an element or an attribute is linked to. If it is a non-recurring element or an attribute, it simply points to the cell where the value of the linked element/attribute will get imported. If it is a recurring element, it points to the top-left cell of the range where the whole record entries plus header will get imported."
+msgstr ""
+
+#. ipMuD
+#: xml_source.xhp
+msgctxt ""
+"xml_source.xhp\n"
+"hd_id151521553082338\n"
+"help.text"
+msgid "Import"
+msgstr ""
+
+#. LrH8y
+#: xml_source.xhp
+msgctxt ""
+"xml_source.xhp\n"
+"par_id131521553077261\n"
+"help.text"
+msgid "Pressing the Import button starts the import process based on the link definitions that the user has provided. Once the import finishes, the dialog will close."
+msgstr ""
+
+#. SqFAe
+#: xml_source.xhp
+msgctxt ""
+"xml_source.xhp\n"
+"par_id240920171007419799\n"
+"help.text"
+msgid "<link href=\"https://wiki.documentfoundation.org/Development/Calc/XMLSource\" target=\"_blank\" name=\"Wiki page on XML Source\">Wiki page on XML Source</link>"
+msgstr ""
diff --git a/source/hsb/helpcontent2/source/text/scalc/02.po b/source/hsb/helpcontent2/source/text/scalc/02.po
new file mode 100644
index 00000000000..595f8ce9248
--- /dev/null
+++ b/source/hsb/helpcontent2/source/text/scalc/02.po
@@ -0,0 +1,1195 @@
+#. extracted from helpcontent2/source/text/scalc/02
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2020-06-29 13:08+0200\n"
+"PO-Revision-Date: 2022-09-09 14:36+0000\n"
+"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
+"Language-Team: Upper Sorbian <https://translations.documentfoundation.org/projects/libo_help-master/textscalc02/hsb/>\n"
+"Language: hsb\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: Weblate 4.12.2\n"
+
+#. aSE5T
+#: 02130000.xhp
+msgctxt ""
+"02130000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Number format: Currency"
+msgstr "Ličbny format: Měna"
+
+#. qnxQS
+#: 02130000.xhp
+msgctxt ""
+"02130000.xhp\n"
+"hd_id3152892\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=\"Ličbny format: měna\">Ličbny format: měna</link>"
+
+#. mDBPb
+#: 02130000.xhp
+msgctxt ""
+"02130000.xhp\n"
+"par_id3148837\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\">Nałožuje aktualny měnowy format na wubrane cele.</ahelp>"
+
+#. 2nsBF
+#: 02130000.xhp
+msgctxt ""
+"02130000.xhp\n"
+"par_id3155267\n"
+"help.text"
+msgid "<image src=\"cmd/sc_currencyfield.svg\" id=\"img_id3159096\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3159096\">Currency Number Format Icon</alt></image>"
+msgstr "<image src=\"cmd/sc_currencyfield.svg\" id=\"img_id3159096\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3159096\">Symbol za ličbny format měna</alt></image>"
+
+#. KBVhJ
+#: 02130000.xhp
+msgctxt ""
+"02130000.xhp\n"
+"par_id3150214\n"
+"help.text"
+msgid "Number Format: Currency"
+msgstr "Ličbny format: Měna"
+
+#. CDopB
+#: 02130000.xhp
+msgctxt ""
+"02130000.xhp\n"
+"par_id3146776\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 - Cells - Numbers\">Format – Cele… – Ličby</link>."
+
+#. fjGg6
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Number format: Percent"
+msgstr "Ličbny format: Procent"
+
+#. vpFDA
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"hd_id3156329\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/02130000.xhp\" name=\"Ličbny format: Procent\">Ličbny format: Procent</link>"
+
+#. fzGGF
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id3155629\n"
+"help.text"
+msgid "<ahelp hid=\".uno:NumberFormatPercent\">Applies the percentage format to the selected cells.</ahelp>"
+msgstr "<ahelp hid=\".uno:NumberFormatPercent\">Nałožuje procentowy format na wubrane cele.</ahelp>"
+
+#. AFCdX
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id3153968\n"
+"help.text"
+msgid "<image id=\"img_id3150869\" src=\"cmd/sc_numberformatpercent.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150869\">Icon</alt></image>"
+msgstr "<image id=\"img_id3150869\" src=\"cmd/sc_numberformatpercent.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150869\">Symbol za procentowy format</alt></image>"
+
+#. CAFBw
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id3151114\n"
+"help.text"
+msgid "Number Format: Percent"
+msgstr "Ličbny format: Procent"
+
+#. xrLA9
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"bm_id3149260\n"
+"help.text"
+msgid "<bookmark_value>percentage calculations</bookmark_value>"
+msgstr "<bookmark_value>procentowe wobličenja</bookmark_value>"
+
+#. Rwuzn
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id3149260\n"
+"help.text"
+msgid "You can also enter a percentage sign (%) after a number in a cell:"
+msgstr "Móžeće w celi tež procentowe znamješko (%) za ličbu stajić:"
+
+#. LKtGp
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id3155411\n"
+"help.text"
+msgid "1% corresponds to 0.01"
+msgstr "1 % 0,01 wotpowěduje"
+
+#. CwAEt
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id3145749\n"
+"help.text"
+msgid "1 + 16% corresponds to 116% or 1.16"
+msgstr "1 + 16 % 116 % abo 1,16 wotpowěduje"
+
+#. j7BsM
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id3148575\n"
+"help.text"
+msgid "1%% corresponds to 0.0001"
+msgstr "1 %% 0,0001 wotpowěduje"
+
+#. DA27s
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id3159153\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 - Cells - Numbers\">Format – Cele… – Rajtark: Ličby</link>"
+
+#. bX9GB
+#: 02150000.xhp
+msgctxt ""
+"02150000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Number format: Default"
+msgstr "Ličbny format: Standard"
+
+#. di5Pr
+#: 02150000.xhp
+msgctxt ""
+"02150000.xhp\n"
+"hd_id3149182\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=\"Ličbny format: Standard\">Ličbny format: Standard</link>"
+
+#. CkVDA
+#: 02150000.xhp
+msgctxt ""
+"02150000.xhp\n"
+"par_id3163802\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\">Nałožuje standardny ličbny format na wubrane cele.</ahelp>"
+
+#. MpiW2
+#: 02150000.xhp
+msgctxt ""
+"02150000.xhp\n"
+"par_id3155922\n"
+"help.text"
+msgid "<image src=\"cmd/sc_numberformatstandard.svg\" id=\"img_id3156024\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3156024\">Icon Standard Format </alt></image>"
+msgstr "<image src=\"cmd/sc_numberformatstandard.svg\" id=\"img_id3156024\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3156024\">Symbol za ličbny format Standard </alt></image>"
+
+#. 7xorF
+#: 02150000.xhp
+msgctxt ""
+"02150000.xhp\n"
+"par_id3153361\n"
+"help.text"
+msgid "Number Format: Standard"
+msgstr "Ličbny format: Standard"
+
+#. JDEfG
+#: 02150000.xhp
+msgctxt ""
+"02150000.xhp\n"
+"par_id3154908\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 - Cells - Numbers\">Format – Cele… – Ličby</link>."
+
+#. BhR4Z
+#: 02160000.xhp
+msgctxt ""
+"02160000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Number Format: Add Decimal Place"
+msgstr "Ličbny format: decimalne městno přidać"
+
+#. VsEUD
+#: 02160000.xhp
+msgctxt ""
+"02160000.xhp\n"
+"hd_id3150275\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=\"Ličbny format: decimalne městno přidać\">Ličbny format: decimalne městno přidać</link>"
+
+#. jhPg6
+#: 02160000.xhp
+msgctxt ""
+"02160000.xhp\n"
+"par_id3150792\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\">Přidawa we wubranych celach ličbam decimalne městno.</ahelp>"
+
+#. BuLUg
+#: 02160000.xhp
+msgctxt ""
+"02160000.xhp\n"
+"par_id3145787\n"
+"help.text"
+msgid "<image id=\"img_id3145271\" src=\"cmd/sc_numberformatincdecimals.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145271\">Icon Add Decimal Place</alt></image>"
+msgstr "<image id=\"img_id3145271\" src=\"cmd/sc_numberformatincdecimals.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145271\">Symbol za ličbny format Decimalne městno přidać</alt></image>"
+
+#. NDn3G
+#: 02160000.xhp
+msgctxt ""
+"02160000.xhp\n"
+"par_id3149262\n"
+"help.text"
+msgid "Number Format: Add Decimal Place"
+msgstr "Ličbny format: decimalne městno přidać"
+
+#. JGSHw
+#: 02170000.xhp
+msgctxt ""
+"02170000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Number Format: Delete Decimal Place"
+msgstr "Ličbny format: decimalne městno zhašeć"
+
+#. ENVTM
+#: 02170000.xhp
+msgctxt ""
+"02170000.xhp\n"
+"hd_id3149164\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=\"Ličbny format: decimalne městno zhašeć\">Ličbny format: Decimalne městno zhašeć</link>"
+
+#. Eip8y
+#: 02170000.xhp
+msgctxt ""
+"02170000.xhp\n"
+"par_id3147264\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\">Wotstronja jedne decimalne městno z ličbow we wubranych celach.</ahelp>"
+
+#. FCfMZ
+#: 02170000.xhp
+msgctxt ""
+"02170000.xhp\n"
+"par_id3145173\n"
+"help.text"
+msgid "<image id=\"img_id3153192\" src=\"cmd/sc_numberformatdecdecimals.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153192\">Icon Delete Decimal Place</alt></image>"
+msgstr "<image id=\"img_id3153192\" src=\"cmd/sc_numberformatdecdecimals.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153192\">Symbol za ličbny format Decimalne městno zhašeć</alt></image>"
+
+#. xCuwp
+#: 02170000.xhp
+msgctxt ""
+"02170000.xhp\n"
+"par_id3154686\n"
+"help.text"
+msgid "Number Format: Delete Decimal Place"
+msgstr "Ličbny format: decimalne městno zhašeć"
+
+#. 89BHV
+#: 06010000.xhp
+msgctxt ""
+"06010000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Name Box"
+msgstr "Mjenowe polo"
+
+#. JJA9o
+#: 06010000.xhp
+msgctxt ""
+"06010000.xhp\n"
+"bm_id3156326\n"
+"help.text"
+msgid "<bookmark_value>formula bar; sheet area names</bookmark_value><bookmark_value>sheet area names</bookmark_value><bookmark_value>showing; cell references</bookmark_value><bookmark_value>cell references; showing</bookmark_value>"
+msgstr "<bookmark_value>formlowa lajsta; mjena tabelowych wobłukow</bookmark_value><bookmark_value>mjena tabelowych wobłukow</bookmark_value><bookmark_value>pokazać; celowe poćahi</bookmark_value><bookmark_value>celowe poćahi; pokazać</bookmark_value>"
+
+#. zo9WM
+#: 06010000.xhp
+msgctxt ""
+"06010000.xhp\n"
+"hd_id3156326\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=\"Mjenowe polo\">Mjenowe polo</link>"
+
+#. bJypW
+#: 06010000.xhp
+msgctxt ""
+"06010000.xhp\n"
+"par_id3149656\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\">Pokazuje poćah za aktualnu celu, wobłuk wubranych celow abo mjeno wobłuka. Móžeće tež wobłuk celow wubrać, a potom mjeno za tutón wobłuk do <emph>mjenoweho pola</emph> zapodać.</ahelp>"
+
+#. W3Br6
+#: 06010000.xhp
+msgctxt ""
+"06010000.xhp\n"
+"par_id3163710\n"
+"help.text"
+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\">Kombinaciske polo celowy wobłuk</alt></image>"
+
+#. wFE7T
+#: 06010000.xhp
+msgctxt ""
+"06010000.xhp\n"
+"par_id3151118\n"
+"help.text"
+msgid "Name Box"
+msgstr "Mjenowe polo"
+
+#. yH3c4
+#: 06010000.xhp
+msgctxt ""
+"06010000.xhp\n"
+"par_id3152596\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. You can also enter full name of a sheet; the tooltip then changes to \"Go To Sheet\", and pressing Enter switches to that sheet."
+msgstr "Zo byšće k jednotliwej celi skočił abo celowy wobłuk wubrał, zapodajće celowy poćah abo poćah celoweho wobłuka do tutoho pola, na přikład F1 abo A1:C4. Móžeće tež dospołne mjeno tabele zapodać; pomocny tekst so potom do „Dźi k tabeli“ měnja a tłóčenje tasty Enter k tabeli přeńdźe."
+
+#. VFke2
+#: 06030000.xhp
+msgctxt ""
+"06030000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Sum"
+msgstr "Suma"
+
+#. oK8fx
+#: 06030000.xhp
+msgctxt ""
+"06030000.xhp\n"
+"bm_id3157909\n"
+"help.text"
+msgid "<bookmark_value>functions;sum function icon</bookmark_value> <bookmark_value>formula bar;sum function</bookmark_value> <bookmark_value>sum icon</bookmark_value> <bookmark_value>AutoSum button, see sum icon</bookmark_value>"
+msgstr "<bookmark_value>funkcije;sumowy symbol</bookmark_value><bookmark_value>formlowa lajsta;sumowa funkcija</bookmark_value><bookmark_value>sumowy symbol</bookmark_value><bookmark_value>Awtomatiska suma, hlejće sumowy symbol</bookmark_value>"
+
+#. vYDYK
+#: 06030000.xhp
+msgctxt ""
+"06030000.xhp\n"
+"hd_id3157909\n"
+"help.text"
+msgid "<link href=\"text/scalc/02/06030000.xhp\" name=\"Sum\">Select Function</link>"
+msgstr "<link href=\"text/scalc/02/06030000.xhp\" name=\"Sum\">Funkciju wubrać</link>"
+
+#. KEkiG
+#: 06030000.xhp
+msgctxt ""
+"06030000.xhp\n"
+"par_id3150543\n"
+"help.text"
+msgid "<ahelp hid=\"HID_INSWIN_SUMME\">Insert a function of a cell range into the current cell. The function can be Sum, Average, Minimum, Maximum and Count. Click in a cell, click this icon, select the function in the drop down list and optionally adjust the cell range. Or select some cells into which the function value will be inserted, then click the icon. The function result is added at the bottom of the range.</ahelp>"
+msgstr "<ahelp hid=\"HID_INSWIN_SUMME\">Zasadźće funkciju celoweho wobłuka do aktualneje cele. Funkcija móže Suma, Přerězk, Min, Maks a Ličba być. Klikńće do cele, potom na tutón symbol, wubjerće funkcije we wuběranskej lisćinje a přiměrće na přeće celowy wobłuk. Abo wubjerće někotre cele, do kotrychž so ma funkciska hódnota zasadźić a klikńće potom na symbol. Wuslědk funkcije so deleka we wobłuku přidawa.</ahelp>"
+
+#. KDxsW
+#: 06030000.xhp
+msgctxt ""
+"06030000.xhp\n"
+"par_id3153770\n"
+"help.text"
+msgid "<image id=\"img_id3147434\" src=\"cmd/sc_autosum.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3147434\">Icon Select Function</alt></image>"
+msgstr "<image id=\"img_id3147434\" src=\"cmd/sc_autosum.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3147434\">Symbol za funkciju wubrać</alt></image>"
+
+#. DaEgA
+#: 06030000.xhp
+msgctxt ""
+"06030000.xhp\n"
+"par_id3152577\n"
+"help.text"
+msgid "Select Function"
+msgstr "Funkciju wubrać"
+
+#. SpBhw
+#: 06030000.xhp
+msgctxt ""
+"06030000.xhp\n"
+"hd_id161592658402954\n"
+"help.text"
+msgid "Select Function applied with no selected range"
+msgstr "Wubjerće funkciju, kotraž so bjez wubraneho wobłuka nałožuje"
+
+#. 59eGX
+#: 06030000.xhp
+msgctxt ""
+"06030000.xhp\n"
+"par_id3156444\n"
+"help.text"
+msgid "$[officename] automatically suggests a cell range, provided that the spreadsheet contains data. If the cell range already contains a function, you can combine it with the new one to yield the function applied to the range data. If the range contains filters, the Subtotal function is inserted instead of the selected function."
+msgstr "$[officename] awtomatisce celowy wobłuk namjetuje, jeli tabelowy dokument daty wobsahuje. Jeli celowy wobłuk hižo funkciju wobsahuje, móžeće ju z nowej kombinować, zo byšće funkciju dóstał, kotraž so na daty wobłuka nałožuje. Jeli wobłuk filtry wobsahuje, so mjezysumowa funkcija město wubraneje funkcije zasadźuje."
+
+#. vpnqf
+#: 06030000.xhp
+msgctxt ""
+"06030000.xhp\n"
+"par_id3153189\n"
+"help.text"
+msgid "Click the <emph>Accept</emph> icon to use the formula displayed in the input line or <emph>Cancel</emph>."
+msgstr "Klikńće na symbol <emph>Přiwzać</emph>, zo byšće formlu wužiwał, kotraž so w zapodawanskej lince pokazuje abo na <emph>Přetorhnyć</emph>."
+
+#. TVD6h
+#: 06030000.xhp
+msgctxt ""
+"06030000.xhp\n"
+"par_id231592663499228\n"
+"help.text"
+msgid "<image src=\"cmd/sc_ok.svg\" id=\"img_id521592663499228\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id171592663499228\">Accept Icon</alt></image>"
+msgstr "<image src=\"cmd/sc_ok.svg\" id=\"img_id521592663499228\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id171592663499228\">Symbol za Přiwzać</alt></image>"
+
+#. iHTEW
+#: 06030000.xhp
+msgctxt ""
+"06030000.xhp\n"
+"par_id481592663499228\n"
+"help.text"
+msgid "Accept"
+msgstr "Přiwzać"
+
+#. VFj6u
+#: 06030000.xhp
+msgctxt ""
+"06030000.xhp\n"
+"par_id311592663828848\n"
+"help.text"
+msgid "<image src=\"cmd/sc_cancel.svg\" id=\"img_id641592663828848\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id111592663828848\">Icon Cancel</alt></image>"
+msgstr "<image src=\"cmd/sc_cancel.svg\" id=\"img_id641592663828848\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id111592663828848\">Symbol za Přetorhnyć</alt></image>"
+
+#. 7xGcL
+#: 06030000.xhp
+msgctxt ""
+"06030000.xhp\n"
+"par_id431592663828848\n"
+"help.text"
+msgid "Cancel"
+msgstr "Přetorhnyć"
+
+#. GPtKR
+#: 06030000.xhp
+msgctxt ""
+"06030000.xhp\n"
+"hd_id261592658395518\n"
+"help.text"
+msgid "Select Function applied on a selected range"
+msgstr "Wubjerće funkciju, kotraž so ma na wubrany wobłuk nałožić"
+
+#. JPrPQ
+#: 06030000.xhp
+msgctxt ""
+"06030000.xhp\n"
+"par_id911592658130888\n"
+"help.text"
+msgid "When the selected range has two or more rows, the function is calculated for each column. The results are placed in empty cells on the first available row below the range, one result per column."
+msgstr "Jeli wubrany wobłuk dwě lince abo wjace linkow ma, so funkcija za kóždu špaltu wobličuje. Wuslědki so w prózdnych celach w prěnjej k dispoziciji stejacej lince pod wobłukom placěruja, jedyn na špaltu."
+
+#. iHksB
+#: 06030000.xhp
+msgctxt ""
+"06030000.xhp\n"
+"par_id991592658144387\n"
+"help.text"
+msgid "When the selected range has one row, the function result is placed in the first available cell on the right of the selected range."
+msgstr "Jeli wubrany wobłuk ma jednu linku, so wuslědk funkcije w prěnjej k dispoziciji stejacej celi naprawo pódla wubraneho wobłuka placěruje."
+
+#. NYGR7
+#: 06040000.xhp
+msgctxt ""
+"06040000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Function"
+msgstr "Funkcija"
+
+#. 9JFi8
+#: 06040000.xhp
+msgctxt ""
+"06040000.xhp\n"
+"bm_id3150084\n"
+"help.text"
+msgid "<bookmark_value>formula bar; functions</bookmark_value><bookmark_value>functions; formula bar icon</bookmark_value>"
+msgstr "<bookmark_value>formlowa lajsta; funkcije</bookmark_value><bookmark_value>funkcije; symbol formloweje lajsty</bookmark_value>"
+
+#. tnkP3
+#: 06040000.xhp
+msgctxt ""
+"06040000.xhp\n"
+"hd_id3150084\n"
+"help.text"
+msgid "<link href=\"text/scalc/02/06040000.xhp\" name=\"Function\">Function</link>"
+msgstr "<link href=\"text/scalc/02/06040000.xhp\" name=\"Funkcija\">Funkcija</link>"
+
+#. TnbLt
+#: 06040000.xhp
+msgctxt ""
+"06040000.xhp\n"
+"par_id3151245\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\">Zasadźuje formlu do aktualneje cele. Klikńće na tutón symbol, a zapodajće potom formlu do <emph>zapodawanskeje linki</emph>.</ahelp>"
+
+#. WH6iw
+#: 06040000.xhp
+msgctxt ""
+"06040000.xhp\n"
+"par_id3153360\n"
+"help.text"
+msgid "This icon is only available when the <emph>Input line</emph> box is not active."
+msgstr "Tutón symbol je jenož k dispoziciji, hdyž <emph>zapodawanska linka</emph> aktiwna njeje."
+
+#. yAAo7
+#: 06040000.xhp
+msgctxt ""
+"06040000.xhp\n"
+"par_id3153770\n"
+"help.text"
+msgid "<image id=\"img_id3145785\" src=\"sc/res/sc26049.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3145785\">Icon</alt></image>"
+msgstr "<image id=\"img_id3145785\" src=\"sc/res/sc26049.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3145785\">Symbol za funkciju</alt></image>"
+
+#. ZjzSD
+#: 06040000.xhp
+msgctxt ""
+"06040000.xhp\n"
+"par_id3153951\n"
+"help.text"
+msgid "Function"
+msgstr "Funkcija"
+
+#. kC5QL
+#: 06050000.xhp
+msgctxt ""
+"06050000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Input line"
+msgstr "Zapodawanska linka"
+
+#. CXdQo
+#: 06050000.xhp
+msgctxt ""
+"06050000.xhp\n"
+"hd_id3153821\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=\"Zapodawanska linka\">Zapodawanska linka</link>"
+
+#. 4R8nP
+#: 06050000.xhp
+msgctxt ""
+"06050000.xhp\n"
+"par_id3155922\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\">Zapodajće formlu, kotruž chceće do aktualneje cele zasadźić. Móžeće tež na symbol <link href=\"text/scalc/01/04060000.xhp\" name=\"funkciski asistent\">funkciskeho asistenta</link> kliknyć, zo byšće předdefinowanu funkciju do formle zasadźił.</ahelp>"
+
+#. pBxxB
+#: 06060000.xhp
+msgctxt ""
+"06060000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Cancel"
+msgstr "Přetorhnyć"
+
+#. FRSZz
+#: 06060000.xhp
+msgctxt ""
+"06060000.xhp\n"
+"bm_id3154514\n"
+"help.text"
+msgid "<bookmark_value>formula bar; canceling inputs</bookmark_value><bookmark_value>functions; canceling input icon</bookmark_value>"
+msgstr "<bookmark_value>formlowa lajsta; zapodaća přetorhnyć</bookmark_value><bookmark_value>funkcije; symbol za zapodaća přetorhnyć</bookmark_value>"
+
+#. nYGqw
+#: 06060000.xhp
+msgctxt ""
+"06060000.xhp\n"
+"hd_id3154514\n"
+"help.text"
+msgid "<link href=\"text/scalc/02/06060000.xhp\" name=\"Cancel\">Cancel</link>"
+msgstr "<link href=\"text/scalc/02/06060000.xhp\" name=\"Přetorhnyć\">Přetorhnyć</link>"
+
+#. uafDY
+#: 06060000.xhp
+msgctxt ""
+"06060000.xhp\n"
+"par_id3153823\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\">Zhaša wobsah ze <emph>zapodawanskeje linki</emph> abo anuluje změny, kotrež sće na eksistowacej formli přewjedł.</ahelp>"
+
+#. DjEeK
+#: 06060000.xhp
+msgctxt ""
+"06060000.xhp\n"
+"par_id3156281\n"
+"help.text"
+msgid "<image id=\"img_id3156422\" src=\"svx/res/nu02.png\" width=\"0.2228inch\" height=\"0.2228inch\"><alt id=\"alt_id3156422\">Icon</alt></image>"
+msgstr "<image id=\"img_id3156422\" src=\"svx/res/nu02.png\" width=\"0.2228inch\" height=\"0.2228inch\"><alt id=\"alt_id3156422\">Symbol za Přetorhnyć</alt></image>"
+
+#. QZHAo
+#: 06060000.xhp
+msgctxt ""
+"06060000.xhp\n"
+"par_id3153970\n"
+"help.text"
+msgid "Cancel"
+msgstr "Přetorhnyć"
+
+#. i4LsJ
+#: 06070000.xhp
+msgctxt ""
+"06070000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Accept"
+msgstr "Přiwzać"
+
+#. EG7Fb
+#: 06070000.xhp
+msgctxt ""
+"06070000.xhp\n"
+"bm_id3143267\n"
+"help.text"
+msgid "<bookmark_value>formula bar; accepting inputs</bookmark_value><bookmark_value>functions; accepting input icon</bookmark_value>"
+msgstr "<bookmark_value>formlowa lajsta; zapodaća přiwzać</bookmark_value><bookmark_value>funkcije; symbol za zapodaća přiwzać</bookmark_value>"
+
+#. SK35g
+#: 06070000.xhp
+msgctxt ""
+"06070000.xhp\n"
+"hd_id3143267\n"
+"help.text"
+msgid "<link href=\"text/scalc/02/06070000.xhp\" name=\"Accept\">Accept</link>"
+msgstr "<link href=\"text/scalc/02/06070000.xhp\" name=\"Přiwzać\">Přiwzać</link>"
+
+#. BBvqG
+#: 06070000.xhp
+msgctxt ""
+"06070000.xhp\n"
+"par_id3151245\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\">Přiwozmje wobsah <emph>zapodawanskeje linki</emph> a zasadźuje potom wobsah do aktualneje cele.</ahelp>"
+
+#. D8cSd
+#: 06070000.xhp
+msgctxt ""
+"06070000.xhp\n"
+"par_id3150769\n"
+"help.text"
+msgid "<image id=\"img_id3156422\" src=\"svx/res/nu01.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3156422\">Icon</alt></image>"
+msgstr "<image id=\"img_id3156422\" src=\"svx/res/nu01.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3156422\">Symbol za Přiwzać</alt></image>"
+
+#. puh2n
+#: 06070000.xhp
+msgctxt ""
+"06070000.xhp\n"
+"par_id3125864\n"
+"help.text"
+msgid "Accept"
+msgstr "Přiwzać"
+
+#. c7dbD
+#: 06080000.xhp
+msgctxt ""
+"06080000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Theme Selection"
+msgstr "Wuběr drastow"
+
+#. 7zx5b
+#: 06080000.xhp
+msgctxt ""
+"06080000.xhp\n"
+"hd_id3153087\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=\"Wuběr drastow\">Wuběr drastow</link>"
+
+#. rVKiP
+#: 06080000.xhp
+msgctxt ""
+"06080000.xhp\n"
+"par_id3154515\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\">Nałožuje formatowu předłohu na wubrane cele.</ahelp></variable> Formatowe stile informacije wo pismje, ramiku a pozadkowej barbje wobsahuja."
+
+#. SEmnU
+#: 06080000.xhp
+msgctxt ""
+"06080000.xhp\n"
+"par_id3155132\n"
+"help.text"
+msgid "<image id=\"img_id3145785\" src=\"cmd/sc_choosedesign.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145785\">Icon</alt></image>"
+msgstr "<image id=\"img_id3145785\" src=\"cmd/sc_choosedesign.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145785\">Symbol za wuběr drastow</alt></image>"
+
+#. cgZs2
+#: 06080000.xhp
+msgctxt ""
+"06080000.xhp\n"
+"par_id3153953\n"
+"help.text"
+msgid "Choose Themes"
+msgstr "Drastu wubrać"
+
+#. xWp4x
+#: 06080000.xhp
+msgctxt ""
+"06080000.xhp\n"
+"par_id3147127\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\">Klikńće na formatowansku drastu, kotruž chceće nałožić a klikńće potom na <emph>W porjadku</emph>.</ahelp>"
+
+#. QCyEd
+#: 08010000.xhp
+msgctxt ""
+"08010000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Position in document"
+msgstr "Pozicija w dokumenće"
+
+#. RiLaz
+#: 08010000.xhp
+msgctxt ""
+"08010000.xhp\n"
+"hd_id3145119\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\">Pozicija w dokumenće</link>"
+
+#. L7Xk5
+#: 08010000.xhp
+msgctxt ""
+"08010000.xhp\n"
+"par_id3147265\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\">Pokazuje čisło aktualneje tabele a cyłkowna ličba tabelow w tabelowym dokumenće.</ahelp>"
+
+#. X2Dv6
+#: 08080000.xhp
+msgctxt ""
+"08080000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Standard Formula, Date/Time, Error Warning"
+msgstr "Standardna formla, datum/čas, zmylkowa zdźělenka"
+
+#. fFadm
+#: 08080000.xhp
+msgctxt ""
+"08080000.xhp\n"
+"bm_id3147335\n"
+"help.text"
+msgid "<bookmark_value>formulas;status bar</bookmark_value>"
+msgstr "<bookmark_value>formle;statusowa lajsta</bookmark_value>"
+
+#. MFGFm
+#: 08080000.xhp
+msgctxt ""
+"08080000.xhp\n"
+"hd_id3147335\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=\"Standardna formla, datum/čas, zmylkowa zdźělenka\">Standardna formla, datum/čas, zmylkowa zdźělenka</link>"
+
+#. gvyvx
+#: 08080000.xhp
+msgctxt ""
+"08080000.xhp\n"
+"par_id3150791\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\">Pokazuje informacije wo aktualnym dokumenće. Po standardźe so suma wobsaha wubranych celow pokazuje.</ahelp>"
+
+#. eCfVn
+#: 08080000.xhp
+msgctxt ""
+"08080000.xhp\n"
+"par_id3155061\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 "Zo byšće standardnu formlu změnił, kotraž so pokazuje, klikńće z prawej tastu na polo a wubjerće potom formlu, kotruž chceće. Slědowace formle su k dispoziciji: Přerězk, ličba hódnotow (LičbaA), ličba ličbow (Ličba), Maks, Min, Suma abo žane."
+
+#. hAizh
+#: 08080000.xhp
+msgctxt ""
+"08080000.xhp\n"
+"par_id3153969\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=\"Zmylkowe kody\">Zmylkowe kody</link>"
+
+#. 2fX5w
+#: 10050000.xhp
+msgctxt ""
+"10050000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Zoom In"
+msgstr "Powjetšić"
+
+#. kNqRX
+#: 10050000.xhp
+msgctxt ""
+"10050000.xhp\n"
+"bm_id3148491\n"
+"help.text"
+msgid "<bookmark_value>page views; increasing scales</bookmark_value><bookmark_value>increasing scales in page view</bookmark_value><bookmark_value>zooming;enlarging page views</bookmark_value>"
+msgstr "<bookmark_value>napohlady strony; měritka powjetšić</bookmark_value><bookmark_value>měritka w napohledźe strony powjetšić</bookmark_value><bookmark_value>skalowanje;napohlady strony powjetšić</bookmark_value>"
+
+#. XBiGZ
+#: 10050000.xhp
+msgctxt ""
+"10050000.xhp\n"
+"hd_id3148491\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\">Powjetšić</link>"
+
+#. Uq4Tv
+#: 10050000.xhp
+msgctxt ""
+"10050000.xhp\n"
+"par_id3145069\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\">Powjetšuje pokazku na wobrazowce aktualneho dokumenta. Aktualne měritko so w <emph>statusowej lajsće</emph> pokazuje.</ahelp>"
+
+#. GBXen
+#: 10050000.xhp
+msgctxt ""
+"10050000.xhp\n"
+"par_id3145171\n"
+"help.text"
+msgid "The maximum zoom factor is 400%."
+msgstr "Maksimalne měritko je 400 %."
+
+#. dD3H5
+#: 10050000.xhp
+msgctxt ""
+"10050000.xhp\n"
+"par_id3155854\n"
+"help.text"
+msgid "<image id=\"img_id3151116\" src=\"cmd/sc_zoomin.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3151116\">Icon</alt></image>"
+msgstr "<image id=\"img_id3151116\" src=\"cmd/sc_zoomin.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3151116\">Symbol za měritko powjetšić</alt></image>"
+
+#. GcJsA
+#: 10050000.xhp
+msgctxt ""
+"10050000.xhp\n"
+"par_id3145273\n"
+"help.text"
+msgid "Zoom In"
+msgstr "Powjetšić"
+
+#. XTPaZ
+#: 10060000.xhp
+msgctxt ""
+"10060000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Zoom Out"
+msgstr "Pomjeńšić"
+
+#. P4mw7
+#: 10060000.xhp
+msgctxt ""
+"10060000.xhp\n"
+"bm_id3153561\n"
+"help.text"
+msgid "<bookmark_value>page views;reducing scales</bookmark_value><bookmark_value>zooming;reducing page views</bookmark_value>"
+msgstr "<bookmark_value>napohlady strony;měritka pomjeńšić</bookmark_value><bookmark_value>skalowanje;napohlady strony pomjeńšić</bookmark_value>"
+
+#. fwoCG
+#: 10060000.xhp
+msgctxt ""
+"10060000.xhp\n"
+"hd_id3153561\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=\"Pomjeńšić\">Pomjeńšić</link>"
+
+#. BgFbq
+#: 10060000.xhp
+msgctxt ""
+"10060000.xhp\n"
+"par_id3151246\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\">Pomjeńšuje pokazku na wobrazowce aktualneho dokumenta. Aktualne měritko so w <emph>statusowej lajsće</emph> pokazuje.</ahelp>"
+
+#. Czu2U
+#: 10060000.xhp
+msgctxt ""
+"10060000.xhp\n"
+"par_id3150398\n"
+"help.text"
+msgid "The minimum zoom factor is 20%."
+msgstr "Minimalne měritko je 20 %."
+
+#. DN9qj
+#: 10060000.xhp
+msgctxt ""
+"10060000.xhp\n"
+"par_id3153770\n"
+"help.text"
+msgid "<image id=\"img_id3155131\" src=\"cmd/sc_zoomout.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155131\">Icon</alt></image>"
+msgstr "<image id=\"img_id3155131\" src=\"cmd/sc_zoomout.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155131\">Symbol za pomjeńšić</alt></image>"
+
+#. rfG8A
+#: 10060000.xhp
+msgctxt ""
+"10060000.xhp\n"
+"par_id3150440\n"
+"help.text"
+msgid "Zooming Out"
+msgstr "Pomjeńšić"
+
+#. BwqAM
+#: 18010000.xhp
+msgctxt ""
+"18010000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Insert"
+msgstr "Zasadźić"
+
+#. GADDh
+#: 18010000.xhp
+msgctxt ""
+"18010000.xhp\n"
+"bm_id3156329\n"
+"help.text"
+msgid "<bookmark_value>inserting; objects, toolbar icon</bookmark_value>"
+msgstr "<bookmark_value>zasadźić; objekty, symbol symboloweje lajsty</bookmark_value>"
+
+#. nuhSb
+#: 18010000.xhp
+msgctxt ""
+"18010000.xhp\n"
+"hd_id3156329\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\">Zasadźić</link>"
+
+#. UfEHG
+#: 18010000.xhp
+msgctxt ""
+"18010000.xhp\n"
+"par_id3147336\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\">Klikńće na šipk pódla symbola, zo byšće symbolowu lajstu <emph>Zasadźić</emph> wočinił, hdźež móžeće grafiki a wosebite znamješka do aktualneje tabele zasadźić.</ahelp>"
+
+#. DnSkt
+#: 18010000.xhp
+msgctxt ""
+"18010000.xhp\n"
+"par_id3148664\n"
+"help.text"
+msgid "Tools bar icon:"
+msgstr "Symbol w lajsće Nastroje:"
+
+#. Eaf8D
+#: 18010000.xhp
+msgctxt ""
+"18010000.xhp\n"
+"par_id3150767\n"
+"help.text"
+msgid "<image id=\"img_id3156423\" src=\"cmd/sc_insertgraphic.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156423\">Icon</alt></image>"
+msgstr "<image id=\"img_id3156423\" src=\"cmd/sc_insertgraphic.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156423\">Symbol za zasadźić</alt></image>"
+
+#. sQ6Tc
+#: 18010000.xhp
+msgctxt ""
+"18010000.xhp\n"
+"par_id3146120\n"
+"help.text"
+msgid "Insert"
+msgstr "Zasadźić"
+
+#. ZVCSS
+#: 18010000.xhp
+msgctxt ""
+"18010000.xhp\n"
+"par_id3153188\n"
+"help.text"
+msgid "You can select the following icons:"
+msgstr "Móžeće slědowace symbole wubrać:"
+
+#. mimKi
+#: 18010000.xhp
+msgctxt ""
+"18010000.xhp\n"
+"hd_id4283883\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=\"Znošowacy so wobłuk\">Znošowacy so wobłuk</link>"
+
+#. hJCq8
+#: 18010000.xhp
+msgctxt ""
+"18010000.xhp\n"
+"hd_id3149410\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=\"Wosebite znamješko\">Wosebite znamješko</link>"
+
+#. 9YdEG
+#: 18010000.xhp
+msgctxt ""
+"18010000.xhp\n"
+"hd_id3151117\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=\"Z dataje\">Z dataje</link>"
+
+#. kBXFP
+#: 18010000.xhp
+msgctxt ""
+"18010000.xhp\n"
+"hd_id3633533\n"
+"help.text"
+msgid "<link href=\"text/shared/01/04160300.xhp\" name=\"Formula\">Formula</link>"
+msgstr "<link href=\"text/shared/01/04160300.xhp\" name=\"Formla\">Formla</link>"
+
+#. MABzX
+#: 18010000.xhp
+msgctxt ""
+"18010000.xhp\n"
+"par_idN10769\n"
+"help.text"
+msgid "<link href=\"text/schart/01/wiz_chart_type.xhp\" name=\"Insert Chart\">Chart</link>"
+msgstr "<link href=\"text/schart/01/wiz_chart_type.xhp\" name=\"Diagram\">Diagram</link>"
+
+#. 98CKi
+#: 18010000.xhp
+msgctxt ""
+"18010000.xhp\n"
+"hd_id7581408\n"
+"help.text"
+msgid "<link href=\"text/shared/01/04150100.xhp\" name=\"OLE Object\">OLE Object</link>"
+msgstr "<link href=\"text/shared/01/04150100.xhp\" name=\"OLE-Objekt\">OLE-Objekt</link>"
+
+#. QMjWB
+#: 18020000.xhp
+msgctxt ""
+"18020000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Insert Cells"
+msgstr "Cele zasadźić"
+
+#. h3979
+#: 18020000.xhp
+msgctxt ""
+"18020000.xhp\n"
+"bm_id3150275\n"
+"help.text"
+msgid "<bookmark_value>inserting; cells, toolbar icon</bookmark_value>"
+msgstr "<bookmark_value>zasadźić; cele, symbol symboloweje lajsty</bookmark_value>"
+
+#. CMJXh
+#: 18020000.xhp
+msgctxt ""
+"18020000.xhp\n"
+"hd_id3150275\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=\"Cele zasadźić\">Cele zasadźić</link>"
+
+#. iTWkf
+#: 18020000.xhp
+msgctxt ""
+"18020000.xhp\n"
+"par_id3156024\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\">Klikńće na šipk pódla symbola, zo byšće symbolowu lajstu <emph>Cele zasadźić</emph> wočinił, hdźež móžeće cele, linki a špalty do aktualneje tabele zasadźić.</ahelp>"
+
+#. o7wEe
+#: 18020000.xhp
+msgctxt ""
+"18020000.xhp\n"
+"par_id3150398\n"
+"help.text"
+msgid "Tools bar icon:"
+msgstr "Symbol w lajsće Nastroje:"
+
+#. eqHih
+#: 18020000.xhp
+msgctxt ""
+"18020000.xhp\n"
+"par_id3150767\n"
+"help.text"
+msgid "You can select the following icons:"
+msgstr "Móžeće slědowace symbole wubrać:"
+
+#. m2qTa
+#: 18020000.xhp
+msgctxt ""
+"18020000.xhp\n"
+"hd_id3150439\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=\"Cele zasadźić, dele\">Cele zasadźić, dele</link>"
+
+#. CLMtB
+#: 18020000.xhp
+msgctxt ""
+"18020000.xhp\n"
+"hd_id3146119\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=\"Cele naprawo zasadźić\">Cele naprawo zasadźić</link>"
+
+#. nv4or
+#: 18020000.xhp
+msgctxt ""
+"18020000.xhp\n"
+"hd_id3153190\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04020000.xhp\" name=\"Rows\">Rows</link>"
+msgstr "<link href=\"text/scalc/01/04020000.xhp\" name=\"Linki\">Linki</link>"
+
+#. ojZTY
+#: 18020000.xhp
+msgctxt ""
+"18020000.xhp\n"
+"hd_id3153726\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04020000.xhp\" name=\"Columns\">Columns</link>"
+msgstr "<link href=\"text/scalc/01/04020000.xhp\" name=\"Špalty\">Špalty</link>"
diff --git a/source/hsb/helpcontent2/source/text/scalc/04.po b/source/hsb/helpcontent2/source/text/scalc/04.po
new file mode 100644
index 00000000000..451aeccf862
--- /dev/null
+++ b/source/hsb/helpcontent2/source/text/scalc/04.po
@@ -0,0 +1,1906 @@
+#. extracted from helpcontent2/source/text/scalc/04
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2021-11-24 12:02+0100\n"
+"PO-Revision-Date: 2022-09-09 14:36+0000\n"
+"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
+"Language-Team: Upper Sorbian <https://translations.documentfoundation.org/projects/libo_help-master/textscalc04/hsb/>\n"
+"Language: hsb\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: Weblate 4.12.2\n"
+
+#. NQkD7
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Shortcut Keys for Spreadsheets"
+msgstr "Tastowe skrótšenki za tabelowe dokumenty"
+
+#. DdGD4
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"bm_id3145801\n"
+"help.text"
+msgid "<bookmark_value>spreadsheets; shortcut keys in</bookmark_value> <bookmark_value>shortcut keys; spreadsheets</bookmark_value> <bookmark_value>sheet ranges; filling</bookmark_value>"
+msgstr "<bookmark_value>Tabelowe dokumenty; Tastowe skrótšenki</bookmark_value><bookmark_value>Tastowe skrótšenki; Tabelowe dokumenty</bookmark_value><bookmark_value>Tabelowe wobłuki; pjelnić</bookmark_value>"
+
+#. CkSXA
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3145801\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=\"Tastowe skrótšenki za tabelowe dokumenty\">Tastowe skrótšenki za tabelowe dokumenty</link></variable>"
+
+#. nwThC
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3155067\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."
+msgstr "Zo byšće wubrany celowy wobłuk z formlu wupjelnił, kotruž sće w <emph>zapodawanskej lince</emph> zapodał, tłóčće <switchinline select=\"sys\"><caseinline select=\"MAC\">&#x2325; option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Enter."
+
+#. RYfUJ
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3153967\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 "Zo byšće matriks wutworił, w kotrejž wšě cele samsne informacije wobsahuja, kotrež sće do <emph>zapodawanskeje linki</emph> zapodał, tłóčće Umsch+<switchinline select=\"sys\"><caseinline select=\"MAC\">cmd &#x2318;</caseinline><defaultinline>Strg</defaultinline></switchinline>+Enter. Njemóžeće komponenty matriksy wobdźěłować."
+
+#. GFbcA
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3166426\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 "Zo byšće wjacore cele w rozdźělnych wobłukach tabele wubrał, dźeržće tastu <switchinline select=\"sys\"><caseinline select=\"MAC\">cmd &#x2318;</caseinline><defaultinline>Strg</defaultinline></switchinline> stłóčenu a ćehńće w rozdźělnych wobłukach."
+
+#. 3eEtd
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3150207\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 "Zo byšće wjacore tabele w tabelowej dokumenće wubrał, dźeržće tastu <switchinline select=\"sys\"><caseinline select=\"MAC\">cmd &#x2318;</caseinline><defaultinline>Strg</defaultinline></switchinline> stłóčenu a klikńće potom na mjenowe rajtarki na delnjej kromje dźěłoweho wobwoda. Zo byšće jenož jednu tabelu we wuběrje wubrał, dźeržće tastu Umsch stłóčenu a klikńće potom na mjenowy rajtark tabele."
+
+#. DgYxH
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3166432\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 "Zo byšće manuelne łamanje linki do cele zasadźił, klikńće do cele a tłóčće potom tastu <switchinline select=\"sys\"><caseinline select=\"MAC\">cmd &#x2318;</caseinline><defaultinline>Strg</defaultinline></switchinline>+Enter."
+
+#. GDa5C
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3146978\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 "Zo byšće wobsah wubranych celow zhašał, tłóčće wróćotastu. To dialog <link href=\"text/scalc/01/02150000.xhp\" name=\"Delete Contents\">Wobsah zhašeć</link> wočinja, hdźež móžeće wobsah wubrać, kotryž so ma zhašeć. Zo byšće wobsah wubranych celow bjez dialoga zhašał, tłóčće tastu Entf."
+
+#. U7wer
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3145386\n"
+"help.text"
+msgid "Navigating in Spreadsheets"
+msgstr "W tabelowych dokumentach nawigować"
+
+#. 9zdut
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3149407\n"
+"help.text"
+msgid "Shortcut Keys"
+msgstr "Tastowe skrótšenki"
+
+#. 4j5yV
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3153815\n"
+"help.text"
+msgid "<emph>Effect</emph>"
+msgstr "<emph>Efekt</emph>"
+
+#. t9kZy
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3146871\n"
+"help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Home"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">cmd &#x2318;</caseinline><defaultinline>Strg</defaultinline></switchinline>+Pos1"
+
+#. 2DjmA
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3159093\n"
+"help.text"
+msgid "Moves the cursor to the first cell in the sheet (A1)."
+msgstr "Pohibuje kursor k prěnjej celi w tabeli (A1)."
+
+#. eP4Fr
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3145073\n"
+"help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+End"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">cmd &#x2318;</caseinline><defaultinline>Strg</defaultinline></switchinline>+Ende"
+
+#. GE2Wd
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3153283\n"
+"help.text"
+msgid "Moves the cursor to the last cell on the sheet that contains data."
+msgstr "Pohibuje kursor k poslednjej celi w tabeli, kotraž daty wobsahuje."
+
+#. 4aZBF
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3149127\n"
+"help.text"
+msgid "Home"
+msgstr "Pos1"
+
+#. YUmpj
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3159205\n"
+"help.text"
+msgid "Moves the cursor to the first cell of the current row."
+msgstr "Pohibuje kursor k prěnjej celi aktualneje linki."
+
+#. BsKYJ
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3149897\n"
+"help.text"
+msgid "End"
+msgstr "Ende"
+
+#. THrNt
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3155095\n"
+"help.text"
+msgid "Moves the cursor to the last cell that contains values in the current row."
+msgstr "Pohibuje kursor k poslednjej celi, kotraž hódnoty w aktualnej lince wobsahuje."
+
+#. FhvWD
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id4149127\n"
+"help.text"
+msgid "Shift+Home"
+msgstr "Umsch+Pos1"
+
+#. jKpFU
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id4159205\n"
+"help.text"
+msgid "Selects cells from the current cell to the first cell of the current row."
+msgstr "Wuběra cele wot aktualneje cele do prěnjeje cele aktualneje linki."
+
+#. dvr5t
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id4149897\n"
+"help.text"
+msgid "Shift+End"
+msgstr "Umsch+Ende"
+
+#. CsAmu
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id4155095\n"
+"help.text"
+msgid "Selects all cells from the current cell to the last cell that contains values in the current row."
+msgstr "Wuběra wšě cele wot aktualneje cele do poslednjeje cele, kotraž hódnoty w aktualnej lince wobsahuje."
+
+#. 8bBCM
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id5149127\n"
+"help.text"
+msgid "Shift+Page Up"
+msgstr "Umsch+Bild↑"
+
+#. cekU3
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id5159205\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 "Wuběra cele wot aktualneje cele do wo jednu stronu w aktualnej špalće horje abo rozšěrja eksistowacy wuběr wo jednu stronu horje."
+
+#. zAiRd
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id5149897\n"
+"help.text"
+msgid "Shift+Page Down"
+msgstr "Umsch+Bild↓"
+
+#. Zc5oJ
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id5155095\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 "Wuběra cele wot aktualneje cele do wo jednu stronu w aktualnej špalće dele abo rozšěrja eksistowacy wuběr wo jednu stronu dele."
+
+#. CGrdr
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id451550311052582\n"
+"help.text"
+msgid "Shift+Space"
+msgstr "Umsch+mjezota"
+
+#. RCDeC
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id971550311052582\n"
+"help.text"
+msgid "Selects the current row or extends the existing selection to all respective rows."
+msgstr "Wuběra aktualnu linku abo rozšěrja eksistowacy wuběr do wšěch wotpowědnych linkow."
+
+#. FRMgL
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id281550311052582\n"
+"help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Space"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">cmd &#x2318;</caseinline><defaultinline>Strg</defaultinline></switchinline>+mjezota"
+
+#. zSmcn
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id261550311052582\n"
+"help.text"
+msgid "Selects the current column or extends the existing selection to all respective columns."
+msgstr "Wuběra aktualnu špaltu abo rozšěrja eksistowacy wuběr do wšěch wotpowědnych špaltow."
+
+#. AErV8
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id311550311052582\n"
+"help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Space"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">cmd &#x2318;</caseinline><defaultinline>Strg</defaultinline></switchinline>+Umsch+mjezota"
+
+#. BUNZP
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id851550311052582\n"
+"help.text"
+msgid "Selects all cells in the sheet."
+msgstr "Wuběra wšě cele w tabeli."
+
+#. dXFKv
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3143220\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\">cmd &#x2318;</caseinline><defaultinline>Strg</defaultinline></switchinline>+&#x2190;"
+
+#. ziZQj
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3154766\n"
+"help.text"
+msgid "Moves the cursor leftward to the start and end of cell blocks with data. If the cell to the left of the cursor is empty or the cell with the cursor is empty, the cursor moves leftward in the current row until it reaches the next cell with contents. If all cells in the same row to the left of the cursor are empty, the cursor moves to the first cell in the row."
+msgstr "Pohibuje kursor nalěwo k spočatkej a kóncej celowych blokow z datami. Jeli cela nalěwo pódla kursora je prózdna abo cela z kursorom je prózdna, so kursor nalěwo w aktualnej lince pohibuje, doniž přichodnu celu z wobsahom njedocpěwa. Jeli wšě cele w samsnej lince nalěwo pódla kursora su prózdne, so kursor k prěnjej celi w lince pohibuje."
+
+#. PgM3v
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3153554\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\">cmd &#x2318;</caseinline><defaultinline>Strg</defaultinline></switchinline>+&#x2192;"
+
+#. WxdVv
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3155593\n"
+"help.text"
+msgid "Moves the cursor rightward to the start and end of cell blocks with data. If the cell to the right of the cursor is empty or the cell with the cursor is empty, the cursor moves rightward in the current row until it reaches the next cell with contents. If all cells in the same row to the right of the cursor are empty, the cursor moves to the last cell in the row."
+msgstr "Přesunje kursor naprawo k spočatkej a kóncej celowych blokow z datami. Jeli cela naprawo pódla kursora je prózdna abo cela z kursorom je prózdna, so kursor naprawo w aktualnej lince přesunje, doniž přichodnu celu z wobsahom njedocpěwa. Jeli wšě cele w samsnej lince naprawo pódla kursora su prózdne, so kursor k poslednjej celi w lince přesunje."
+
+#. R9tmv
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3149317\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\">cmd &#x2318;</caseinline><defaultinline>Strg</defaultinline></switchinline>+&#x2191;"
+
+#. UV76n
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3153076\n"
+"help.text"
+msgid "Moves the cursor upward to the start and end of cell blocks with data. If the cell above the cursor is empty or the cell with the cursor is empty, the cursor moves upward in the current column until it reaches the next cell with contents. If all cells in the same column above the cursor are empty, the cursor moves to the first cell in the column."
+msgstr "Pohibuje kursor horje k spočatkej a kóncej celowych blokow z datami. Jeli cela nad kursorom je prózdna abo cela z kursorom je prózdna, so kursor w aktualnej špalće horje pohibuje, doniž přichodnu celu z wobsahom njedocpěwa. Jeli wšě cele w samsnej špalće nad kursorom su prózdne, so kursor k prěnjej celi w špalće pohibuje."
+
+#. EamtM
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3147250\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\">cmd &#x2318;</caseinline><defaultinline>Strg</defaultinline></switchinline>+&#x2193;"
+
+#. x95TY
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3149054\n"
+"help.text"
+msgid "Moves the cursor downward to the start and end of cell blocks with data. If the cell below the cursor is empty or the cell with the cursor is empty, the cursor moves downward in the current column until it reaches the next cell with contents. If all cells in the same column below the cursor are empty, the cursor moves to the last cell in the column."
+msgstr "Pohibuje kursor dele k spočatkej a kóncej celowych blokow z datami. Jeli cela pod kursorom je prózdna abo cela z kursorom je prózdna, so kursor w aktualnej špalće dele pohibuje, doniž přichodnu celu z wobsahom njedocpěwa. Jeli wšě cele w samsnej špalće nad kursorom su prózdne, so kursor k poslednjej celi w špalće pohibuje."
+
+#. UQi4B
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3148744\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\">cmd &#x2318;</caseinline><defaultinline>Strg</defaultinline></switchinline>+Umsch+Šipk"
+
+#. FwaRy
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3159258\n"
+"help.text"
+msgid "Selects all cells of the range created by the cursor movements using the <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Arrows</keycode> key combinations. If used to select rows and columns together, a rectangular cell range is selected. If the cursor is in an empty cell, the selection will stretch from the current cell up to the first cell with value in the direction of the arrow pressed."
+msgstr "Wuběra wšě cele wobłuka, kotryž je so přez pohiby kursora z pomocu tastowych skrótšenkow <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>cmd &#x2318;</keycode></caseinline><defaultinline><keycode>Strg</keycode></defaultinline></switchinline><keycode>+Šipki</keycode> wutworił. Hdyž so to wužiwa, zo by linki a špalty hromadźe wubrało, so praworóžkaty celowy wobłuk wuběra. Jeli kursor je w prózdnej celi, so wuběr wot aktualneje cele do prěnjeje cele z hódnotu k směrej stłóčeneje šipkoweje tasty rozpřestrěwa."
+
+#. F95ji
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3156399\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\">cmd &#x2318;</caseinline><defaultinline>Strg</defaultinline></switchinline>+Bild &#x2191;"
+
+#. S5nRM
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3145236\n"
+"help.text"
+msgid "Moves one sheet to the left."
+msgstr "Skaka wo jednu tabelu nalěwo."
+
+#. 6cFXE
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3149725\n"
+"help.text"
+msgid "In the print preview: Moves to the previous print page."
+msgstr "W ćišćerskim přehledźe: Skaka k předchadnej ćišćerskej stronje."
+
+#. gEiyB
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3147411\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\">cmd &#x2318;</caseinline><defaultinline>Strg</defaultinline></switchinline>+Bild &#x2193;"
+
+#. DYMYx
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3150372\n"
+"help.text"
+msgid "Moves one sheet to the right."
+msgstr "Skaka wo jednu tabelu naprawo."
+
+#. o2xPG
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3159120\n"
+"help.text"
+msgid "In the print preview: Moves to the next print page."
+msgstr "W ćišćerskim přehledźe: Skaka k přichodnej ćišćerskej stronje."
+
+#. RBATr
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3146885\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\">&#x2325; option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Bild &#x2191;"
+
+#. GYoY6
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3152976\n"
+"help.text"
+msgid "Moves one screen to the left."
+msgstr "Skaka wo jednu stronu wobrazowki nalěwo."
+
+#. izdDB
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3149013\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\">&#x2325; option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Bild &#x2193;"
+
+#. G9qzM
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3150477\n"
+"help.text"
+msgid "Moves one screen page to the right."
+msgstr "Skaka wo jednu stronu wobrazowki naprawo."
+
+#. oVtdB
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_idN10AFC\n"
+"help.text"
+msgid "Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Up"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">cmd &#x2318;</caseinline><defaultinline>Strg</defaultinline></switchinline>+Bild &#x2191;"
+
+#. RBou4
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_idN10B00\n"
+"help.text"
+msgid "Adds the previous sheet to the current selection of sheets. If all the sheets in a spreadsheet are selected, this shortcut key combination only selects the previous sheet. Makes the previous sheet the current sheet."
+msgstr "Přidawa aktualnemu wuběrej tabelow předchadnu tabelu. Jeli wšě tabele w tabelowym dokumenće su wubrane, tuta tastowa skrótšenka jenož předchadnu tabelu wuběra. To předchadnu tabelu k aktualnej tabeli čini."
+
+#. c6GDa
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_idN10B03\n"
+"help.text"
+msgid "Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Down"
+msgstr "Umsch+<switchinline select=\"sys\"><caseinline select=\"MAC\">cmd &#x2318;</caseinline><defaultinline>Strg</defaultinline></switchinline>+Bild &#x2193;"
+
+#. ZwywJ
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_idN10B07\n"
+"help.text"
+msgid "Adds the next sheet to the current selection of sheets. If all the sheets in a spreadsheet are selected, this shortcut key combination only selects the next sheet. Makes the next sheet the current sheet."
+msgstr "Přidawa aktualnemu wuběrej tabelow přichodnu tabelu. Jeli wšě tabele w tabelowym dokumenće su wubrane, tuta tastowa skrótšenka jenož přichodnu tabelu wuběra. To přichodnu tabelu k aktualnej tabeli čini."
+
+#. aErRL
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3145826\n"
+"help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+ *"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">cmd &#x2318;</caseinline><defaultinline>Strg</defaultinline></switchinline>+ *"
+
+#. d5f9B
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3148882\n"
+"help.text"
+msgid "where (*) is the multiplication sign on the numeric key pad"
+msgstr "při čimž (*) je multiplikaciske znamješko na numeriskej tastaturje"
+
+#. iaUDA
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3154847\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 "Wuběra datowy wobłuk, kotryž kursor wobsahuje. Wobłuk je zwisowacy celowy wobłuk, kotryž daty wobsahuje a so přez prózdne linki a špalty wobmjezuje."
+
+#. 9Ae2w
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3151233\n"
+"help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+ /"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">cmd &#x2318;</caseinline><defaultinline>Strg</defaultinline></switchinline>+ /"
+
+#. Kyj8C
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3149949\n"
+"help.text"
+msgid "where (/) is the division sign on the numeric key pad"
+msgstr "při čimž (/) je diwizijne znamješko na numeriskej tastaturje"
+
+#. WmCoM
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3150144\n"
+"help.text"
+msgid "Selects the matrix formula range that contains the cursor."
+msgstr "Wuběra wobłuk matriksoweje formle, kotryž kursor wobsahuje."
+
+#. MFam3
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id8163396\n"
+"help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Plus key"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">cmd &#x2318;</caseinline><defaultinline>Strg</defaultinline></switchinline>+Plusowa tasta"
+
+#. 6WSJE
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id9901425\n"
+"help.text"
+msgid "Insert cells (as in menu Insert - Cells)"
+msgstr "Cele zasadźić (kaž w meniju Zasadźić – Cele zasadźić…)"
+
+#. LSCN9
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3389080\n"
+"help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Minus key"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">cmd &#x2318;</caseinline><defaultinline>Strg</defaultinline></switchinline>+Minusowa tasta"
+
+#. 8NHAr
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id5104220\n"
+"help.text"
+msgid "Delete cells (as in menu Edit - Delete Cells)"
+msgstr "Cele zhašeć (kaž w meniju Tabela – Cele zhašeć…)"
+
+#. ghA2J
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3155825\n"
+"help.text"
+msgid "Enter (in a selected range)"
+msgstr "Enter (we wubranym wobłuku)"
+
+#. aFEgB
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3153935\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> and change the option in <emph>Press Enter to move selection</emph>."
+msgstr "Pohibuje kursor wo jednu celu dele we wubranym wobłuku. Zo byšće směr podał, ke kotremuž so kursor pohibuje, wubjerće <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME – Nastajenja</emph></caseinline><defaultinline><emph>Nastroje – Nastajenja</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc – Powšitkowne</emph> a změńće nastajenje we <emph>Tłóčće Enter, zo byšće wuběr přesunył</emph>."
+
+#. DbRBy
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id351630625364216\n"
+"help.text"
+msgid "Enter (after copying cell contents)"
+msgstr "Enter (po kopěrowanju celoweho wobsaha)"
+
+#. 5PZQn
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id681630625395135\n"
+"help.text"
+msgid "If cell contents have just been copied to the clipboard and no additional editing has been done in the current file, then pressing <keycode>Enter</keycode> will paste clipboard contents to the current cursor position."
+msgstr "Jeli celowy wobsah je so runje do mjezyskłada kopěrował a přidatne wobdźěłowanje njeje so w aktualnej dataji přewjedło, tłóčće <keycode>Enter</keycode>, zo by so wobsah z mjezyskłada na aktualnej kursorowej poziciji zasadźi."
+
+#. 2MKS8
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id521630625780621\n"
+"help.text"
+msgid "Shift+Enter"
+msgstr "Umsch+Enter"
+
+#. dAv3b
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id541630625783264\n"
+"help.text"
+msgid "If the clipboard contains cell contents and no editing has been done in the file, then <keycode>Shift+Enter</keycode> has the same behavior as <keycode>Enter</keycode> and pastes clipboard contents to the current cursor position."
+msgstr "Jeli mjezyskład celowy wobsah wobsahuje a wobdźěłowanje njeje so w dataji přewjedło, ma <keycode>Umsch+Enter</keycode> samsne zadźerženje kaž <keycode>Enter</keycode> a wobsah so z mjezyskłada na aktualnej kursorowej poziciji zasadźi."
+
+#. so8sW
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id921630625968749\n"
+"help.text"
+msgid "If no cells are selected, <keycode>Shift+Enter</keycode> moves the cursor to the opposite direction defined in the option <emph>Press Enter to move selection</emph> found in <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - General</emph>."
+msgstr "Jeli cele wubrane njejsu, <keycode>Umsch+Enter</keycode> kursor k nawopačnemu směrej pohibuje, kotryž je w nastajenju <emph>Tłóčće Enter, zo byšće wuběr přesunył</emph>, kotrež je w <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME – Nastajenja</emph></caseinline><defaultinline><emph>Nastroje – Nastajenja</emph></defaultinline></switchinline><emph>– %PRODUCTNAME Calc – Powšitkowne</emph>."
+
+#. f4gCc
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id951630626229215\n"
+"help.text"
+msgid "If a range of cells is selected, <keycode>Shift+Enter</keycode> moves the cursor inside the current selection to the opposite direction defined in the option <emph>Press Enter to move selection</emph>."
+msgstr "Jeli celowy wobłuk je wubrany, <keycode>Umsch+Enter</keycode> kursor znutřka aktualneho wuběra k nawopačnemu směrej pohibuje, kotryž je w nastajenju<emph>Tłóčće Enter, zo byšće wuběr přesunył</emph> definowany."
+
+#. ESQwM
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id5961180\n"
+"help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+ ` (see note below this table)"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">cmd &#x2318;</caseinline><defaultinline>Strg</defaultinline></switchinline>+ ` (hlejće nóžku pod tutej tabelu)"
+
+#. ZParU
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id6407055\n"
+"help.text"
+msgid "Displays or hides the formulas instead of the values in all cells."
+msgstr "Pokazuje abo chowa formle město hódnotow we wšěch celach."
+
+#. WBh3X
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id8070314\n"
+"help.text"
+msgid "The ` key is located next to the \"1\" key on most English keyboards. If your keyboard does not show this key, you can assign another key: Choose Tools - Customize, click the Keyboard tab. Select the \"View\" category and the \"Toggle Formula\" function."
+msgstr "Tasta ` je pódla „ß“ na najwjace němskich tastaturach. Dyrbiće wšak tastu <keycode>Umsch</keycode> stłóčenu dźeržeć, zo byšće znamješko `pokazał. Jeli waša tastatura tastu `nima, móžeće druhu tastu připokazać: Wubjerće „Nastroje – Přiměrić…“ a klikńće na rajtark „Tastatura“. Wubjerće kategoriju „Napohlad“ a funkciju „Formlu přepinać“."
+
+#. De3Yx
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"bm_id3143661\n"
+"help.text"
+msgid "<bookmark_value>spreadsheets; duplicate</bookmark_value> <bookmark_value>spreadsheets; quick rename</bookmark_value>"
+msgstr "<bookmark_value>tabelowe dokument; podwojić</bookmark_value><bookmark_value>tabelowe dokumenty; spěšnje přemjenować</bookmark_value>"
+
+#. AxVu3
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id271637246984980\n"
+"help.text"
+msgid "Copying and Renaming Sheets"
+msgstr "Tabele kopěrować a přemjenować"
+
+#. dNyPQ
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id781637247029711\n"
+"help.text"
+msgid "The sheet tabs used to navigate between sheets can be clicked in combination with keyboard keys to perform the following operations:"
+msgstr "Na tabelowe rajtarki, kotrež so za nawigowanje mjez tabelemi wužiwaja, dadźa so hromadźe z tastowymi skrótšenkami kliknyć, zo bychu slědowace funkcije přewjedli:"
+
+#. DDZy3
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id741637247123788\n"
+"help.text"
+msgid "Shortcut Keys"
+msgstr "Tastowe skrótšenki"
+
+#. ZB9vf
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id731637247123788\n"
+"help.text"
+msgid "Effect"
+msgstr "Efekt"
+
+#. 9SNqY
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id211637247123788\n"
+"help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> + Drag sheet tab"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">cmd &#x2318;</caseinline><defaultinline>Strg</defaultinline></switchinline> + Tabelowy rajtark ćahnyć"
+
+#. F7Wju
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id981637247123788\n"
+"help.text"
+msgid "Creates a copy of the sheet whose tab was clicked. The copied sheet is placed at the position where the mouse button was released."
+msgstr "Wutwori kopiju tabele, na kotrejež rajtark je so kliknyło. Kopěrowana tabela so na poziciji placěruje, hdźež tłóčatko myški je so pušćiło."
+
+#. 4BauE
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id211637247123024\n"
+"help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> + Click sheet tab"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">&#x2325; option</caseinline><defaultinline>Alt</defaultinline></switchinline> + na tabelowy rajtark kliknyć"
+
+#. DqgFn
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id981637247123114\n"
+"help.text"
+msgid "Makes the sheet name editable. Edit the sheet name and press <keycode>Enter</keycode> when finished."
+msgstr "Zrychtuje tabelu wobdźěłujomnu. Wobdźěłajće tabelowe mjeno a tłóčće <keycode>Enter</keycode>, hdyž sće hotowy."
+
+#. TDGrd
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3148756\n"
+"help.text"
+msgid "Function Keys Used in Spreadsheets"
+msgstr "Funkciske tasty, kotrež so w tabelowych dokumentach wužiwaja"
+
+#. iZc4Z
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3148581\n"
+"help.text"
+msgid "Shortcut Keys"
+msgstr "Tastowe skrótšenki"
+
+#. q6YD5
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3152790\n"
+"help.text"
+msgid "<emph>Effect</emph>"
+msgstr "<emph>Efekt</emph>"
+
+#. 7B8Uu
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3154809\n"
+"help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F1"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">cmd &#x2318;</caseinline><defaultinline>Strg</defaultinline></switchinline>+F1"
+
+#. PMz3i
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3145140\n"
+"help.text"
+msgid "Displays the comment that is attached to the current cell"
+msgstr "Pokazuje komentar, kotryž k aktualnej celi słuša."
+
+#. NRB2f
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3146142\n"
+"help.text"
+msgid "F2"
+msgstr "F2"
+
+#. BUfoX
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3148568\n"
+"help.text"
+msgid "With a cell selected, press F2 to open cell contents for editing. If the cell contains a formula, use arrow keys to navigate the sheet to easily enter range addresses into the formula."
+msgstr "Tłóčće z wubranej celu F2, zo byšće celowy wobsah wočinił a jón wobdźěłował. Jeli cela formlu wobsahuje, nawigujće z pomocu šipkowych tastow po tabeli, zo byšće wobłukowe adresy lochko do formle zapodał."
+
+#. KPNsf
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id381629750112725\n"
+"help.text"
+msgid "Press F2 again to enable the use of arrow keys to move the cursor in the formula text."
+msgstr "Tłóčće F2 znowa, zo byšće wužiwanje šipkowych tastow zmóžnił, z kotrymiž móžeće kursor w formlowym teksće pohibować."
+
+#. YE2ga
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id481629750230372\n"
+"help.text"
+msgid "Each additional use of the F2 shortcut switches between the two states previously described."
+msgstr "Kóžde přidatne wužiwanje tasty F2 mjez dwěmaj do toho wopisanymaj stawomaj přepina."
+
+#. Dzhco
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id461629750358215\n"
+"help.text"
+msgid "Some dialog boxes have input fields with a <emph>Shrink</emph> button. Pressing F2 with the cursor inside such field causes the <emph>Shrink</emph> command to be executed."
+msgstr "Někotre dialogi maja zapodawanske pola z tłóčatkom <emph>Pomjeńšić</emph>. Hdyž F2 tłóčiće, a kursor je w tajkim polu, so přikaz <emph>Pomjeńšić</emph> wuwjedźe."
+
+#. seNCx
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3146850\n"
+"help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F2"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">cmd &#x2318;</caseinline><defaultinline>Strg</defaultinline></switchinline>+F2"
+
+#. hdqjK
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3145162\n"
+"help.text"
+msgid "Opens the Function Wizard."
+msgstr "Wočinja funkciski asistent."
+
+#. ppW28
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3147366\n"
+"help.text"
+msgid "Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F2"
+msgstr "Umsch+<switchinline select=\"sys\"><caseinline select=\"MAC\">cmd &#x2318;</caseinline><defaultinline>Strg</defaultinline></switchinline>+F2"
+
+#. uPqcZ
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3155929\n"
+"help.text"
+msgid "Moves the cursor to the <emph>Input line</emph> where you can enter a formula for the current cell."
+msgstr "Pohibuje kursor do <emph>zapodawanskeje linki</emph>, hdźež móžeće formlu za aktualnu celu zapodać."
+
+#. hBwvr
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3153730\n"
+"help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F3"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">cmd &#x2318;</caseinline><defaultinline>Strg</defaultinline></switchinline>+F3"
+
+#. FiJzq
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3145245\n"
+"help.text"
+msgid "Opens the <emph>Define Names</emph> dialog."
+msgstr "Wočinja dialog <emph>Mjeno definować</emph>."
+
+#. DF5mE
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3148768\n"
+"help.text"
+msgid "Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F4"
+msgstr "Umsch+<switchinline select=\"sys\"><caseinline select=\"MAC\">cmd &#x2318;</caseinline><defaultinline>Strg</defaultinline></switchinline>+F4"
+
+#. AiMqF
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3153047\n"
+"help.text"
+msgid "Shows or Hides the Database explorer."
+msgstr "Pokazuje abo chowa eksplorer datoweje banki."
+
+#. YA3xd
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3145353\n"
+"help.text"
+msgid "F4"
+msgstr "F4"
+
+#. 7GNxN
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3155620\n"
+"help.text"
+msgid "Rearranges the relative or absolute references (for example, A1, $A$1, $A1, A$1) in the input field."
+msgstr "Přerjaduje relatiwne abo absolutne poćahi (na přikład A1, $A$1, $A1, A$1) w zapodawanskim polu."
+
+#. oE5B2
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3156063\n"
+"help.text"
+msgid "F5"
+msgstr "F5"
+
+#. AB9fs
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3149540\n"
+"help.text"
+msgid "Shows or hides the <emph>Navigator</emph>."
+msgstr "Pokazuje abo chowa <emph>Nawigator</emph>."
+
+#. Qb9y9
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3148392\n"
+"help.text"
+msgid "Shift+F5"
+msgstr "Umsch+F5"
+
+#. EdNGE
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3150268\n"
+"help.text"
+msgid "Traces dependents."
+msgstr "Slěduje naslědnikam."
+
+#. ytBaa
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3148430\n"
+"help.text"
+msgid "Shift+F9"
+msgstr "Umsch+F9"
+
+#. FWpeb
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3153179\n"
+"help.text"
+msgid "Traces precedents."
+msgstr "Slěduje předchadnikam."
+
+#. uAxBV
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3150568\n"
+"help.text"
+msgid "Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F5"
+msgstr "Umsch+<switchinline select=\"sys\"><caseinline select=\"MAC\">cmd &#x2318;</caseinline><defaultinline>Strg</defaultinline></switchinline>+F5"
+
+#. oTBgR
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3153551\n"
+"help.text"
+msgid "Moves the cursor from the <emph>Input line</emph> to the <emph>Sheet area</emph> box. You can also use Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+T."
+msgstr "Pohibuje kursor wot <emph>zapodawanskeje linki</emph> do <emph>tabeloweho wobłuka</emph>. Móžeće tež Umsch+<switchinline select=\"sys\"><caseinline select=\"MAC\">cmd &#x2318;</caseinline><defaultinline>Strg</defaultinline></switchinline>+T wužiwać."
+
+#. 6NRwR
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3155368\n"
+"help.text"
+msgid "F7"
+msgstr "F7"
+
+#. wEzCo
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3154871\n"
+"help.text"
+msgid "Checks spelling in the current sheet."
+msgstr "Přewjedźe prawopisnu kontrolu w aktualnej tabeli."
+
+#. Fobqn
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3150688\n"
+"help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F7"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">cmd &#x2318;</caseinline><defaultinline>Strg</defaultinline></switchinline>+F7"
+
+#. bJfnW
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3149781\n"
+"help.text"
+msgid "Opens the Thesaurus if the current cell contains text."
+msgstr "Wočinja tezawrus, jeli aktualna cela tekst wobsahuje."
+
+#. xdDid
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3156257\n"
+"help.text"
+msgid "F8"
+msgstr "F8"
+
+#. 7TksC
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3147482\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 "Zmóžnja abo znjemóžnja přidatny wuběranski modus. W tutym modusu móžeće šipkowe tasty wužiwać, zo byšće wuběr rozšěrjeja. Móžeće tež do druheje cele kliknyć, zo byšće wuběr rozšěrił."
+
+#. 7GjGR
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3154313\n"
+"help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F8"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">cmd &#x2318;</caseinline><defaultinline>Strg</defaultinline></switchinline>+F8"
+
+#. uQ2pe
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3150385\n"
+"help.text"
+msgid "Highlights cells containing values."
+msgstr "Wuzběhuje cele, kotrež hódnoty wobsahuja."
+
+#. rQLdE
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3152479\n"
+"help.text"
+msgid "F9"
+msgstr "F9"
+
+#. gHTre
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3163827\n"
+"help.text"
+msgid "Recalculates changed formulas in the current sheet."
+msgstr "Wobličuje změnjene formle w aktualnej tabeli."
+
+#. mrLpF
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id9027069\n"
+"help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+F9"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">cmd &#x2318;</caseinline><defaultinline>Strg</defaultinline></switchinline>+Umsch+F9"
+
+#. iEeQr
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id1729178\n"
+"help.text"
+msgid "Recalculates all formulas in all sheets."
+msgstr "Wobličuje wšě formle we wšěch tabelach."
+
+#. 8sbVu
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3156300\n"
+"help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">cmd &#x2318;</caseinline><defaultinline>Strg</defaultinline></switchinline>+F9"
+
+#. bKMjk
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3154817\n"
+"help.text"
+msgid "Updates the selected chart."
+msgstr "Aktualizuje wubrany diagram."
+
+#. VLV2J
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3149279\n"
+"help.text"
+msgid "<switchinline select=\"sys\"> <caseinline select=\"MAC\">Command+T</caseinline> <defaultinline>F11</defaultinline> </switchinline>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">cmd &#2318;+T</caseinline><defaultinline>F11</defaultinline></switchinline>"
+
+#. edNSJ
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3150967\n"
+"help.text"
+msgid "Opens the <emph>Styles</emph> window where you can apply a formatting style to the contents of the cell or to the current sheet."
+msgstr "Wočinja wokno <emph>Formatowe předłohi</emph>, hdźež móžeće celowemu wobsahej abo aktualnej tabeli formatowu předłohu připokazać."
+
+#. jr8HD
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3156308\n"
+"help.text"
+msgid "Shift+F11"
+msgstr "Umsch+F11"
+
+#. ZEAFn
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3145209\n"
+"help.text"
+msgid "Creates a document template."
+msgstr "Wutwori dokumentowu předłohu."
+
+#. imZDB
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3147622\n"
+"help.text"
+msgid "Shift<switchinline select=\"sys\"><caseinline select=\"MAC\">+Command</caseinline><defaultinline>+Ctrl</defaultinline></switchinline>+F11"
+msgstr "Umsch+<switchinline select=\"sys\"><caseinline select=\"MAC\">cmd &#x2318;</caseinline><defaultinline>Strg</defaultinline></switchinline>+F11"
+
+#. pBFoe
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3153215\n"
+"help.text"
+msgid "Updates the templates."
+msgstr "Aktualizuje předłohi."
+
+#. YCqt2
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3150760\n"
+"help.text"
+msgid "F12"
+msgstr "F12"
+
+#. 4e6VH
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3156321\n"
+"help.text"
+msgid "Groups the selected data range."
+msgstr "Zeskupja wubrany datowy wobłuk."
+
+#. Si4Tz
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3146859\n"
+"help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F12"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">cmd &#x2318;</caseinline><defaultinline>Strg</defaultinline></switchinline>+F12"
+
+#. Zva97
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3156128\n"
+"help.text"
+msgid "Ungroups the selected data range."
+msgstr "Zběhnje zeskupjenje wubraneho datoweho wobłuka."
+
+#. DPRGM
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3151264\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\">&#x2325; option</caseinline><defaultinline>Alt</defaultinline></switchinline>+&#x2193;"
+
+#. 3KnNK
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3153155\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 "Powjetša wysokosć aktualneje linki (jenož w <link href=\"text/shared/optionen/01060800.xhp\" name=\"Kompatibelnosć\">modusu kompatibelnosće za zestarjene dokumenty OpenOffice.org)</link>."
+
+#. v7V4h
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3151297\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\">&#x2325; option</caseinline><defaultinline>Alt</defaultinline></switchinline>+&#x2191;"
+
+#. K487L
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3155849\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 "Pomjeńša wysokosć aktualneje linki (jenož w <link href=\"text/shared/optionen/01060800.xhp\" name=\"Kompatibelnosć\">modusu kompatibelnosće za zestarjene dokumenty OpenOffice.org)</link>."
+
+#. CMCuV
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3155997\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\">&#x2325; option</caseinline><defaultinline>Alt</defaultinline></switchinline>+&#x2192;"
+
+#. wPsAN
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3150256\n"
+"help.text"
+msgid "Increases the width of the current column."
+msgstr "Powjetša šěrokosć aktualneje špalty."
+
+#. 49fV4
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3154046\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\">&#x2325; option</caseinline><defaultinline>Alt</defaultinline></switchinline>+&#x2190;"
+
+#. BvqE3
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3150155\n"
+"help.text"
+msgid "Decreases the width of the current column."
+msgstr "Pomjeńša šěrokosć aktualneje špalty."
+
+#. YKEBG
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3149293\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\">&#x2325; option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Umsch+šipkowa tasta"
+
+#. rBzCH
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3159180\n"
+"help.text"
+msgid "Optimizes the column width or row height based on the current cell."
+msgstr "Optimuje špaltowu šěroskosć abo linkowu wysokosć na zakładźe aktualneje cele."
+
+#. sVJdH
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3156013\n"
+"help.text"
+msgid "Formatting Cells Using Shortcut Keys"
+msgstr "Cele z pomocu tastowych skrótšenkow formatować"
+
+#. tpkFF
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3153979\n"
+"help.text"
+msgid "The following cell formats can be applied with the keyboard:"
+msgstr "Slědowace celowe formaty dadźa so z tastaturu nałožić:"
+
+#. 3357D
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3147492\n"
+"help.text"
+msgid "Shortcut Keys"
+msgstr "Tastowe skrótšenki"
+
+#. GB6qD
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3154305\n"
+"help.text"
+msgid "<emph>Effect</emph>"
+msgstr "<emph>Efekt</emph>"
+
+#. nKrcB
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3145669\n"
+"help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+1 (not on the number pad)"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">cmd &#x2318;</caseinline><defaultinline>Strg</defaultinline></switchinline>+1 (nic na numeriskej tastaturje)"
+
+#. NoxhF
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3149197\n"
+"help.text"
+msgid "Open Format Cells dialog"
+msgstr "Dialog Cele formatować wočinić"
+
+#. XxnqH
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3145668\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\">cmd &#x2318;</caseinline><defaultinline>Strg</defaultinline></switchinline>+Umsch+1 (nic na numeriskej tastaturje)"
+
+#. xqALX
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3149196\n"
+"help.text"
+msgid "Two decimal places, thousands separator"
+msgstr "Dwě decimalnej městnje, dźělatko tysačnakow"
+
+#. 8ta7J
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3155331\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\">cmd &#x2318;</caseinline><defaultinline>Strg</defaultinline></switchinline>+Umsch+2 (nic na numeriskej tastaturje)"
+
+#. NFJyj
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3150120\n"
+"help.text"
+msgid "Standard exponential format"
+msgstr "Standardny eksponencialny format"
+
+#. oFm4G
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3154932\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\">cmd &#x2318;</caseinline><defaultinline>Strg</defaultinline></switchinline>+Umsch+3 (nic na numeriskej tastaturje)"
+
+#. YHrPb
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3148822\n"
+"help.text"
+msgid "Standard date format"
+msgstr "Standardny datumowy format"
+
+#. 8BFmW
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3148829\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\">cmd &#x2318;</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Umsch+4 (nic na numeriskej tastaturje)"
+
+#. FEzGK
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3159152\n"
+"help.text"
+msgid "Standard currency format"
+msgstr "Standardny měnowy format"
+
+#. EiJ83
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3150776\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\">cmd &#x2318;</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Umsch+5 (nic na numeriskej tastaturje)"
+
+#. uTbpv
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3148800\n"
+"help.text"
+msgid "Standard percentage format (two decimal places)"
+msgstr "Standardny procentowy format (dwě decimalnej městnje)"
+
+#. e4pHb
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3158407\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\">cmd &#x2318;</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Umsch+6 (nic na numeriskej tastaturje)"
+
+#. t9jfU
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3148444\n"
+"help.text"
+msgid "Standard format"
+msgstr "Standardny format"
+
+#. QFNee
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3154205\n"
+"help.text"
+msgid "Using the pivot table"
+msgstr "Wužiwanje pivotowych tabelow"
+
+#. iDg7S
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id631581375238556\n"
+"help.text"
+msgid "The shortcut keys below are for the <emph>Pivot Table Layout</emph> dialog."
+msgstr "Slědowace tastowe skrótšenki su za dialog <emph>Wuhotowanje pivotowych tabelow</emph>."
+
+#. dRGGD
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_idN11326\n"
+"help.text"
+msgid "Keys"
+msgstr "Tasty"
+
+#. xKHGN
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_idN1132C\n"
+"help.text"
+msgid "Effect"
+msgstr "Efekt"
+
+#. CYiCE
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3153577\n"
+"help.text"
+msgid "<keycode>Tab</keycode>"
+msgstr "<keycode>Tabulator</keycode>"
+
+#. EyvCk
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3147511\n"
+"help.text"
+msgid "Changes the focus by moving forwards through the areas and buttons of the dialog."
+msgstr "Běži po wobłukach a tłóčatkach dialoga wotprědka dozady, zo by so fokus změnił."
+
+#. nEd6M
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3154266\n"
+"help.text"
+msgid "<keycode>Shift+Tab</keycode>"
+msgstr "<keycode>Umsch+Tabulator</keycode>"
+
+#. ESR2E
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3155362\n"
+"help.text"
+msgid "Changes the focus by moving backwards through the areas and buttons of the dialog."
+msgstr "Běži po wobłukach a tłóčatkach dialoga wotzady doprědka, zo by so fokus změnił."
+
+#. FoedZ
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3148484\n"
+"help.text"
+msgid "<keycode>Up Arrow</keycode>"
+msgstr "<keycode>&#x2191;</keycode>"
+
+#. jWNGS
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3149152\n"
+"help.text"
+msgid "Moves the focus up one item in the current dialog area."
+msgstr "Přesuwa fokus wo jedyn zapisk w aktualnym dialogowym wobłuku horje."
+
+#. GYukz
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3154273\n"
+"help.text"
+msgid "<keycode>Down Arrow</keycode>"
+msgstr "<keycode>&#x2193;</keycode>"
+
+#. g3pGx
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3158424\n"
+"help.text"
+msgid "Moves the focus down one item in the current dialog area."
+msgstr "Přesuwa fokus wo jedyn zapisk w aktualnym dialogowym wobłuku dele."
+
+#. uNDr8
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3148912\n"
+"help.text"
+msgid "<keycode>Left Arrow</keycode>"
+msgstr "<keycode>&#x2190;</keycode>"
+
+#. dEqdi
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3153238\n"
+"help.text"
+msgid "Moves the focus one item to the left in the current dialog area."
+msgstr "Přesuwa fokus wo jedyn zapisk w aktualnym dialogowym wobłuku dolěwa."
+
+#. jqgGw
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3150712\n"
+"help.text"
+msgid "<keycode>Right Arrow</keycode>"
+msgstr "<keycode>&#x2192;</keycode>"
+
+#. DKiGb
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3166458\n"
+"help.text"
+msgid "Moves the focus one item to the right in the current dialog area."
+msgstr "Přesuwa fokus wo jedyn zapisk w aktualnym dialogowym wobłuku doprawa."
+
+#. B6CEw
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3146947\n"
+"help.text"
+msgid "<keycode>Home</keycode>"
+msgstr "<keycode>Pos1</keycode>"
+
+#. 2myZF
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3153742\n"
+"help.text"
+msgid "Selects the first item in the current dialog area."
+msgstr "Wuběra prěni zapisk w aktualnym dialogowym wobłuku."
+
+#. PVgpY
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3153387\n"
+"help.text"
+msgid "<keycode>End</keycode>"
+msgstr "<keycode>Ende</keycode>"
+
+#. RhFGF
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3153684\n"
+"help.text"
+msgid "Selects the last item in the current dialog area."
+msgstr "Wuběra posledni zapisk w aktualnym dialogowym wobłuku."
+
+#. VLEGM
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3155584\n"
+"help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Option</keycode></caseinline><defaultinline><keycode>Alt</keycode></defaultinline></switchinline> and the underlined character in the label \"Row Fields\""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>&#x2325; option</keycode></caseinline><defaultinline><keycode>Alt</keycode></defaultinline></switchinline> a podšmórnjene znamješko w popisu „Linkowe pola“"
+
+#. cSthX
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3152949\n"
+"help.text"
+msgid "Copies or moves the current field into the \"Row Fields\" area."
+msgstr "Kopěruje abo přesuwa aktualne polo do wobłuka „Linkowe pola“."
+
+#. qFSYZ
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3159269\n"
+"help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline><keycode>Alt</keycode></defaultinline></switchinline> and the underlined character in the label \"Column Fields\""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">&#x2325; option</caseinline><defaultinline><keycode>Alt</keycode></defaultinline></switchinline> a podšmórnjene znamješko w popisu „Špaltowe pola“"
+
+#. 5PHQg
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3149968\n"
+"help.text"
+msgid "Copies or moves the current field into the \"Column Fields\" area."
+msgstr "Kopěruje abo přesuwa aktualne polo do wobłuka „Špaltowe pola“."
+
+#. wGVoz
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3149923\n"
+"help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Option</keycode></caseinline><defaultinline><keycode>Alt</keycode></defaultinline></switchinline> and the underlined character in the label \"Data Fields\""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>&#x2325; option</keycode></caseinline><defaultinline><keycode>Alt</keycode></defaultinline></switchinline> a podšmórnjene znamješko w popisu „Datowe pola“"
+
+#. LpaiM
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3148649\n"
+"help.text"
+msgid "Copies or moves the current field into the \"Data Fields\" area."
+msgstr "Kopěruje abo přesuwa aktualne polo do wobłuka „Datowe pola“."
+
+#. raCg3
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3149423\n"
+"help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Option</keycode></caseinline><defaultinline><keycode>Alt</keycode></defaultinline></switchinline> and the underlined character in the label \"Filters\""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>&#x2325; option</keycode></caseinline><defaultinline><keycode>Alt</keycode></defaultinline></switchinline> a podšmórnjene znamješko w popisu „Filtry“"
+
+#. Dnys7
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3144649\n"
+"help.text"
+msgid "Copies or moves the current field into the \"Filters\" area."
+msgstr "Kopěruje abo přesuwa aktualne polo do wobłuka „Filtry“."
+
+#. RBfHn
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3149418\n"
+"help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Up Arrow</keycode>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>cmd &#x2318;</keycode></caseinline><defaultinline><keycode>Strg</keycode></defaultinline></switchinline><keycode>+&#x2191;</keycode>"
+
+#. 5sk3h
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3154335\n"
+"help.text"
+msgid "Moves the current field up one place."
+msgstr "Přesuwa aktualne polo wo jednu poziciju horje."
+
+#. awZUE
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3148462\n"
+"help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Down Arrow</keycode>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>cmd &#x2318;</keycode></caseinline><defaultinline><keycode>Strg</keycode></defaultinline></switchinline><keycode>+&#x2193;</keycode>"
+
+#. eMbdi
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3154603\n"
+"help.text"
+msgid "Moves the current field down one place."
+msgstr "Přesuwa aktualne polo wo jednu poziciju dele."
+
+#. aCgXn
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3145373\n"
+"help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Left Arrow</keycode>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>cmd &#x2318;</keycode></caseinline><defaultinline><keycode>Strg</keycode></defaultinline></switchinline><keycode>+&#x2190;</keycode>"
+
+#. ZhhRj
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3151125\n"
+"help.text"
+msgid "Moves the current field one place to the left."
+msgstr "Přesuwa aktualne polo wo jednu poziciju dolěwa."
+
+#. wkTdy
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3150423\n"
+"help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Right Arrow</keycode>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>cmd &#x2318;</keycode></caseinline><defaultinline><keycode>Strg</keycode></defaultinline></switchinline><keycode>+&#x2192;</keycode>"
+
+#. hDqUA
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3153316\n"
+"help.text"
+msgid "Moves the current field one place to the right."
+msgstr "Přesuwa aktualne polo wo jednu poziciju doprawa."
+
+#. CjoEb
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3149519\n"
+"help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Home</keycode>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>cmd &#x2318;</keycode></caseinline><defaultinline><keycode>Strg</keycode></defaultinline></switchinline><keycode>+Pos1</keycode>"
+
+#. SFdar
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3149237\n"
+"help.text"
+msgid "Moves the current field to the first place."
+msgstr "Přesuwa aktualne polo do prěnjeje pozicije."
+
+#. 5QbLt
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3145310\n"
+"help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+End</keycode>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>cmd &#x2318;</keycode></caseinline><defaultinline><keycode>Strg</keycode></defaultinline></switchinline><keycode>+Ende</keycode>"
+
+#. ZeXEZ
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3153942\n"
+"help.text"
+msgid "Moves the current field to the last place."
+msgstr "Přesuwa aktualne polo do poslednjeje pozicije."
+
+#. GdEkF
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3148418\n"
+"help.text"
+msgid "<keycode>Delete</keycode>"
+msgstr "<keycode>Entf</keycode>"
+
+#. sGFF8
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3159251\n"
+"help.text"
+msgid "Removes the current field from the area."
+msgstr "Wotstronja aktualne polo z wobłuka."
diff --git a/source/hsb/helpcontent2/source/text/scalc/05.po b/source/hsb/helpcontent2/source/text/scalc/05.po
new file mode 100644
index 00000000000..c839e1945a3
--- /dev/null
+++ b/source/hsb/helpcontent2/source/text/scalc/05.po
@@ -0,0 +1,1204 @@
+#. extracted from helpcontent2/source/text/scalc/05
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2022-01-31 18:19+0100\n"
+"PO-Revision-Date: 2022-09-09 14:36+0000\n"
+"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
+"Language-Team: Upper Sorbian <https://translations.documentfoundation.org/projects/libo_help-master/textscalc05/hsb/>\n"
+"Language: hsb\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: Weblate 4.12.2\n"
+
+#. Cxzki
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Error Codes in %PRODUCTNAME Calc"
+msgstr "Zmylkowe kody w %PRODUCTNAME Calc"
+
+#. DTQVB
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"bm_id3146797\n"
+"help.text"
+msgid "<bookmark_value>error codes;list of</bookmark_value>"
+msgstr "<bookmark_value>zmylkowe kody;lisćina</bookmark_value>"
+
+#. tQSnG
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"hd_id3146797\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=\"Zmylkowe kody w %PRODUCTNAME Calc\">Zmylkowe kody w <item type=\"productname\">%PRODUCTNAME</item> Calc</link>"
+
+#. B8xxG
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id3150275\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 "Slědowaca tabela je přehlad zmylkowych zdźělenkow za <item type=\"productname\">%PRODUCTNAME</item> Calc. Jeli zmylk w celi nastawa, kotraž kursor wobsahuje, so zmylkowa zdźělenka w <emph>statusowej lajsće</emph> pokazuje."
+
+#. if8BJ
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"bm_id0202201010205429\n"
+"help.text"
+msgid "<bookmark_value>### error message</bookmark_value>"
+msgstr "<bookmark_value>### zmylkowa zdźělenka</bookmark_value>"
+
+#. Po6SQ
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"bm_id3154634\n"
+"help.text"
+msgid "<bookmark_value>invalid references; error messages</bookmark_value> <bookmark_value>error messages;invalid references</bookmark_value> <bookmark_value>#REF error message</bookmark_value>"
+msgstr "<bookmark_value>njepłaćiwe poćahi; zmylkowe zdźělenki</bookmark_value><bookmark_value>zmylkowe zdźělenki;njepłaćiwe poćahi</bookmark_value> <bookmark_value>#REF (zmylkowa zdźělenka)</bookmark_value>"
+
+#. k8cUm
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"bm_id3148428\n"
+"help.text"
+msgid "<bookmark_value>invalid names; error messages</bookmark_value> <bookmark_value>#NAME error message</bookmark_value>"
+msgstr "<bookmark_value>njepłaćiwe mjena; zmylkowe zdźělenki</bookmark_value><bookmark_value>#NAME (zmylkowa zdźělenka)</bookmark_value>"
+
+#. xVUPK
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id3153968\n"
+"help.text"
+msgid "Error Code"
+msgstr "Zmylkowy kod"
+
+#. g3Daf
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id3125863\n"
+"help.text"
+msgid "Message"
+msgstr "Zdźělenka"
+
+#. VMubU
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id3151112\n"
+"help.text"
+msgid "Explanation"
+msgstr "Rozjasnjenje"
+
+#. yWDxR
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id3165766\n"
+"help.text"
+msgid "none"
+msgstr "žadyn"
+
+#. MEFVX
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id3169266\n"
+"help.text"
+msgid "The cell is not wide enough to display the contents."
+msgstr "Cela šěroka dosć njeje, zo by wobsah pokazała."
+
+#. vF3za
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id3165767\n"
+"help.text"
+msgid "none"
+msgstr "žadyn"
+
+#. 6s9C6
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id3169267\n"
+"help.text"
+msgid "This value is outside of limits valid for this format"
+msgstr "Tuta hódnota je zwonka mjezow, kotrež su płaćiwe za tutón format"
+
+#. ApVjg
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id3148645\n"
+"help.text"
+msgid "Invalid character"
+msgstr "Njepłaćiwe znamješko"
+
+#. Eiafx
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id3155854\n"
+"help.text"
+msgid "Character in a formula is not valid."
+msgstr "Znamješko w formli płaćiwe njeje."
+
+#. prgrW
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id3147397\n"
+"help.text"
+msgid "Invalid argument"
+msgstr "Njepłaćiwy argument"
+
+#. Ynv5c
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id3153160\n"
+"help.text"
+msgid "Function argument is not valid. For example, a negative number for the SQRT() function, for this please use IMSQRT()."
+msgstr "Funkciski argument płaćiwy njeje. Wužiwajće na přikład prošu IMKORJEŃ() za negatiwnu ličbu město funkcije KORJEŃ()."
+
+#. XtB4F
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id3154015\n"
+"help.text"
+msgid "503<br/>#NUM!"
+msgstr "503<br/>#NUM!"
+
+#. JWvJX
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id3155766\n"
+"help.text"
+msgid "Invalid floating point operation"
+msgstr "Njepłaćiwa operacija běžaceje komy"
+
+#. UFyAw
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id3159266\n"
+"help.text"
+msgid "A calculation results in an overflow of the defined value range."
+msgstr "Wobličenje k přeběžkej definowaneho hódnotneho wobłuka wjedźe."
+
+#. EnQy4
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id3147344\n"
+"help.text"
+msgid "Parameter list error"
+msgstr "Zmylk w parametrowej lisćinje"
+
+#. HE3Sh
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id3147003\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 "Funkciski parameter płaćiwy njeje; na přikład tekst město ličby abo domenowy poćah město celoweho poćaha."
+
+#. tazac
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id3150107\n"
+"help.text"
+msgid "Error: Pair missing"
+msgstr "Zmylk w spinkach"
+
+#. CvpDc
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id3149129\n"
+"help.text"
+msgid "Missing bracket, for example, closing brackets, but no opening brackets"
+msgstr "Spinka faluje, na přikład začinjaca spinka eksistuje, ale wočinjaca spinka nic"
+
+#. iTRKB
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id3155097\n"
+"help.text"
+msgid "Missing operator"
+msgstr "Falowacy operator"
+
+#. BzU6T
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id3154649\n"
+"help.text"
+msgid "Operator is missing, for example, \"=2(3+4) * \", where the operator between \"2\" and \"(\" is missing."
+msgstr "Operator faluje, na přikład \"=2(3+4) * \", hdźež operator mjez \"2\" a \"(\" faluje."
+
+#. Wh5hy
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id3153483\n"
+"help.text"
+msgid "Missing variable"
+msgstr "Falowaca wariabla"
+
+#. NCtXf
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id3154710\n"
+"help.text"
+msgid "Variable is missing, for example when two operators are together \"=1+*2\"."
+msgstr "Wariabla faluje, na přikład \"=1+*2\", hdyž dwaj operatoraj stej jedyn pódla druheho."
+
+#. VFzXS
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id3145112\n"
+"help.text"
+msgid "Missing variable"
+msgstr "Falowaca wariabla"
+
+#. oEvWy
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id3145319\n"
+"help.text"
+msgid "Function requires more variables than are provided, for example, AND() and OR()."
+msgstr "Funkcija sej wjace wariablow hač podate wužaduje, na přikład A() a ABO()."
+
+#. 3VQCp
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id3150393\n"
+"help.text"
+msgid "Formula overflow"
+msgstr "Formla je předołha"
+
+#. rJXWR
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id3159259\n"
+"help.text"
+msgid "<emph>Compiler:</emph> the total number of internal tokens, (that is, operators, variables, brackets) in the formula exceeds 8192."
+msgstr "<emph>Kompajler:</emph> Cyłkowna ličba nutřkownych znamješkow (t. r. operatory, wariable, spinki) w formli 8192 překročuje."
+
+#. T3ZaN
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id3147412\n"
+"help.text"
+msgid "String overflow"
+msgstr "Znamješkowy rjećazk je předołhi"
+
+#. XbagT
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id3145635\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>Kompajler:</emph> Identifikator w formli wulkosć 64 kB překročuje. <emph>Interpreter:</emph> Wuslědk operacije znamješkoweho rjećazka wulkosć 64 kB překročuje."
+
+#. E7ohJ
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id3157904\n"
+"help.text"
+msgid "Internal overflow"
+msgstr "Nutřkowny přeběžk"
+
+#. GsAC7
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id3149352\n"
+"help.text"
+msgid "Sort operation attempted on too much numerical data (max. 100000) or a calculation stack overflow."
+msgstr "Sortěrowanska operacija za přejwele numeriskich datow (maks. 100.000) je so spytała, abo je přeběžk ličenskeho stapla."
+
+#. LKnWm
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id3147424\n"
+"help.text"
+msgid "Internal syntax error"
+msgstr "Nutřkowny syntaksowy zmylk"
+
+#. 8f6zE
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id3148438\n"
+"help.text"
+msgid "Unknown error."
+msgstr "Njeznaty zmylk."
+
+#. voVnC
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id3147423\n"
+"help.text"
+msgid "Internal syntax error"
+msgstr "Nutřkowny syntaksowy zmylk"
+
+#. ZqovV
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id3148437\n"
+"help.text"
+msgid "Matrix is expected on the calculation stack, but is not available."
+msgstr "Matriks so w ličenskim staplu wočakuje, kotraž wšak k dispoziciji njeje."
+
+#. VoVHv
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id3153934\n"
+"help.text"
+msgid "Internal syntax error"
+msgstr "Nutřkowny syntaksowy zmylk"
+
+#. iTiDA
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id3149507\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 "Njeznaty kod, na přikład so dokument z nowšej funkciju w staršej wersiji začita, kotraž funkciju njewobsahuje."
+
+#. oRBwe
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id3149189\n"
+"help.text"
+msgid "Internal syntax error"
+msgstr "Nutřkowny syntaksowy zmylk"
+
+#. VMwqF
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id3149545\n"
+"help.text"
+msgid "Variable is not available"
+msgstr "Wariabla k dispoziciji njeje"
+
+#. 3Ewjd
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id3146142\n"
+"help.text"
+msgid "519<br/>#VALUE!"
+msgstr "519<br/>#HÓDNOTA!"
+
+#. c9Gyw
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id3155954\n"
+"help.text"
+msgid "No value (instead of Err:519 cell displays #VALUE!)"
+msgstr "Žana hódnota (město Err:519 cela #HÓDNOTA! pokazuje)"
+
+#. cf6oh
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id3153108\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 "Formla hódnotu přinjese, kotraž definiciji njewotpowěduje; abo cela, kotraž so w formli referencuje, tekst město ličby wobsahuje."
+
+#. z3KSt
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id3150017\n"
+"help.text"
+msgid "Internal syntax error"
+msgstr "Nutřkowny syntaksowy zmylk"
+
+#. 9JdQC
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id3148758\n"
+"help.text"
+msgid "Compiler creates an unknown compiler code."
+msgstr "Kompajler njeznaty kompajlerowy kod wutworja."
+
+#. xbiK9
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id3153737\n"
+"help.text"
+msgid "Internal syntax error (instead of Err:521 cell displays #NULL!)"
+msgstr "Nutřkowny syntaksowy zmylk (město Err:521 cela #NULL! pokazuje)"
+
+#. AiUic
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id3155436\n"
+"help.text"
+msgid "No code or no result."
+msgstr "Žadyn kod abo žadyn wuslědk."
+
+#. SWNv6
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id3149008\n"
+"help.text"
+msgid "Circular reference"
+msgstr "Cirkularny poćah"
+
+#. SNPhH
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id3157972\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 "Formla so direktnje abo indirektnje na so poćahuje a nastajenje <emph>Iteracije</emph> njeje pod <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME – Nastajenja</caseinline><defaultinline>Nastroje – Nastajenja</defaultinline></switchinline> – %PRODUCTNAME Calc – Wuličić stajene."
+
+#. Z3Q9Q
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id3150930\n"
+"help.text"
+msgid "The calculation procedure does not converge"
+msgstr "Ličenska metoda njekonwerguje"
+
+#. T3NrF
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id3150272\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 "Funkciji cilowa hódnota faluje abo <link href=\"text/shared/optionen/01060500.xhp\">iteratiwne poćahi </link> minimalnu změnu z maksimalnymi krokami njedocpěwa, kotrež su nastajene."
+
+#. K9EbP
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id3153544\n"
+"help.text"
+msgid "524<br/>#REF!"
+msgstr "524<br/>#REF!"
+
+#. aHB3e
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id3154634\n"
+"help.text"
+msgid "Not a valid reference (instead of Err:524 cell displays #REF!)"
+msgstr "Žadyn płaćiwy poćah (město Err:524 cela #REF! pokazuje)"
+
+#. iGGQE
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id3147539\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>Kompajler:</emph> Wopisanske mjeno špalty abo linki njeda so rozwjazać. <emph>Interpreter:</emph> W formli špalta, linka abo tabela faluje, kotraž referencowanu celu wobsahuje."
+
+#. XgsB8
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id3155984\n"
+"help.text"
+msgid "525<br/>#NAME?"
+msgstr "525<br/>#MJENO?"
+
+#. KxXmj
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id3148428\n"
+"help.text"
+msgid "invalid names (instead of Err:525 cell displays #NAME?)"
+msgstr "Njepłaćiwe mjena (město Err:525 cela #MJENO? pokazuje)"
+
+#. pTzCU
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id3156259\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 "Identifikator njeda so wuhódnoćić, na přikład njeje žadyn poćah, žane płaćiwe domenowe mjeno, žadyn popis špalty abo linki, žane makro, abo je wopačne decimalne dźělatko abo tykač njeje so namakał."
+
+#. sJuxt
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id3154315\n"
+"help.text"
+msgid "Internal syntax error"
+msgstr "Nutřkowny syntaksowy zmylk"
+
+#. v7KEg
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id3083286\n"
+"help.text"
+msgid "Obsolete, no longer used, but could come from old documents if the result is a formula from a domain."
+msgstr "Zestarjeny, so hižo njewužiwa, ale móhło ze starych dokumentow pochadźeć, jeli wuslědk je formla z domeny."
+
+#. M3m5X
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id3152966\n"
+"help.text"
+msgid "Internal overflow"
+msgstr "Nutřkowny přeběžk"
+
+#. UsyTo
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id3149709\n"
+"help.text"
+msgid "<emph>Interpreter: </emph>References, such as when a cell references a cell, are too encapsulated."
+msgstr "<emph>Interpreter: </emph>Poćahi, na přikład, hdyž so cela na celu referencuje, su přejara zakapslowane."
+
+#. 2ECY7
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id4152967\n"
+"help.text"
+msgid "No AddIn"
+msgstr "Žadyn tykač"
+
+#. zaCCw
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id3149710\n"
+"help.text"
+msgid "<emph>Interpreter: </emph>AddIn not found."
+msgstr "<emph>Interpreter: </emph>Tykač njeje so namakał."
+
+#. kAqvA
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id3152967\n"
+"help.text"
+msgid "No Macro"
+msgstr "Žane makro"
+
+#. 6S7DQ
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id3149711\n"
+"help.text"
+msgid "<emph>Interpreter: </emph>Macro not found."
+msgstr "<emph>Interpreter: </emph>Makro njeje so namakało."
+
+#. gBQnb
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id5324564\n"
+"help.text"
+msgid "532<br/>#DIV/0!"
+msgstr "532<br/>#DIW/0!"
+
+#. sfCB6
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id7941831\n"
+"help.text"
+msgid "Division by zero"
+msgstr "Diwizija přez nulu"
+
+#. BC4Gt
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id5844294\n"
+"help.text"
+msgid "Division operator / if the denominator is 0<br/>Some more functions return this error, for example:<br/>VARP with less than 1 argument<br/>STDEVP with less than 1 argument<br/>VAR with less than 2 arguments<br/>STDEV with less than 2 arguments<br/>STANDARDIZE with stdev=0<br/>NORMDIST with stdev=0"
+msgstr "Diwizijny operator / jeli mjenowak je 0<br/>Někotre dalše funkcije tutón zmylk wróćeja, na přikład:<br/>WARIANCY z mjenje hač 1 argumentom<br/>STWOTCHN z mjenje hač 1 argumentom<br/>WARIANCA z mjenje hač 2 argumentomaj<br/>STWOTCH z mjenje hač 2 argumentomaj<br/>STANDARDIZACIJA ze stwotch=0<br/>NORMROZDŹ z stwotch=0"
+
+#. qUCvU
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id951549820044260\n"
+"help.text"
+msgid "Nested arrays are not supported"
+msgstr "Zakašćikowane pólne wariable so njepodpěruja."
+
+#. GVEyH
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id781549820065619\n"
+"help.text"
+msgid "For example, ={1;{2}}"
+msgstr "Na přikład ={1;{2}}"
+
+#. ejYrQ
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id521549825734781\n"
+"help.text"
+msgid "Error: Array or matrix size"
+msgstr "Zmylk: Pólna wariabla abo wulkosć matriksy"
+
+#. GXCEU
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id931549825818729\n"
+"help.text"
+msgid "Unsupported inline array content"
+msgstr "Njepodpěrany wobsah nutřkowneje pólneje wariable"
+
+#. 6EgLN
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id551549825825905\n"
+"help.text"
+msgid "For example, ={1+2}"
+msgstr "Na přikład ={1+2}"
+
+#. Nhzyi
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id131549825893410\n"
+"help.text"
+msgid "External content disabled"
+msgstr "Eksterny wobsah znjemóžnjeny"
+
+#. XT6PG
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id881549825900965\n"
+"help.text"
+msgid "Happens if a function that requires (re)loading of external sources is encountered and the user hasn't confirmed reloading of external sources yet"
+msgstr "Stawa so, jeli so funkcija, kotraž sej (znowa)začitanje eksternych žórłow wužaduje, namaka a wužiwar hišće njeje znowozačitanje eksternych žórłow wobkrućił"
+
+#. f9Foc
+#: empty_cells.xhp
+msgctxt ""
+"empty_cells.xhp\n"
+"tit\n"
+"help.text"
+msgid "Handling of Empty Cells"
+msgstr "Wobchadźenje z prózdnymi celemi"
+
+#. nVAzC
+#: empty_cells.xhp
+msgctxt ""
+"empty_cells.xhp\n"
+"bm_id3146799\n"
+"help.text"
+msgid "<bookmark_value>empty cells;handling of</bookmark_value>"
+msgstr "<bookmark_value>prózdne cele;wobchadźenje</bookmark_value>"
+
+#. VYKrS
+#: empty_cells.xhp
+msgctxt ""
+"empty_cells.xhp\n"
+"hd_id1502121\n"
+"help.text"
+msgid "<variable id=\"empty_cells\"><link href=\"text/scalc/05/empty_cells.xhp\">Handling of Empty Cells</link></variable>"
+msgstr "<variable id=\"empty_cells\"><link href=\"text/scalc/05/empty_cells.xhp\">Wobchadźenje z prózdnymi celemi</link></variable>"
+
+#. TB34B
+#: empty_cells.xhp
+msgctxt ""
+"empty_cells.xhp\n"
+"par_id8266853\n"
+"help.text"
+msgid "In older versions of the software, empty cells were forced to numeric 0 in some contexts and to empty string in others, except in direct comparison where =A1=0 and =A1=\"\" both resulted in TRUE if A1 was empty. Emptiness now is inherited until used, so both =VLOOKUP(...)=0 and =VLOOKUP(...)=\"\" give TRUE if the lookup resulted in an empty cell being returned."
+msgstr "W staršich wersijach softwary dyrbjachu prózdne cele we wěstych kontekstach ličba 0 abo prózdny znamješkowy rjećazk w druhich być, nimo w direktnym přirunanju, hdźež wuslědk =A1=0 resp. =A1=\"\" běše přeco TRUE (WĚRNO), jeli A1 běše prózdny. Prózdnosć so nětko zdźědźi, doniž so njewužiwa. Tohodla stej =WPOKAZ(…)=0 a =WPOKAZ(…)=\"\" TRUE (WĚRNO), jeli so pokaz na prózdnu celu poćahuje."
+
+#. FKFTK
+#: empty_cells.xhp
+msgctxt ""
+"empty_cells.xhp\n"
+"par_id2733542\n"
+"help.text"
+msgid "A simple reference to an empty cell is still displayed as numeric 0 but is not necessarily of type numeric anymore, so also comparisons with the referencing cell work as expected."
+msgstr "Jednory poćah na prózdnu celu so hišće jako ličba 0 pokazuje, ale njetrjeba numeriskeho typa być. Tohodla přirunanja z referowacej celu kaž wočakowane funguja."
+
+#. sHJvH
+#: empty_cells.xhp
+msgctxt ""
+"empty_cells.xhp\n"
+"par_id4238715\n"
+"help.text"
+msgid "For the following examples, A1 contains a number, B1 is empty, C1 contains the reference to B1:"
+msgstr "Za slědowace přikłady A1 ličbu wobsahuje, B1 je prózdny, C1 poćah na B1 wobsahuje:"
+
+#. DFVNU
+#: empty_cells.xhp
+msgctxt ""
+"empty_cells.xhp\n"
+"par_id291535142746121\n"
+"help.text"
+msgid "Case"
+msgstr "Pad"
+
+#. 5pQ8p
+#: empty_cells.xhp
+msgctxt ""
+"empty_cells.xhp\n"
+"par_id441535142746121\n"
+"help.text"
+msgid "Formula"
+msgstr "Formla"
+
+#. siSXA
+#: empty_cells.xhp
+msgctxt ""
+"empty_cells.xhp\n"
+"par_id261535142746121\n"
+"help.text"
+msgid "Results and comments"
+msgstr "Wuslědki a komentary"
+
+#. y3GkG
+#: empty_cells.xhp
+msgctxt ""
+"empty_cells.xhp\n"
+"par_id941535142746122\n"
+"help.text"
+msgid "A1: 1<br/>B1: <Empty>"
+msgstr "A1: 1<br/>B1: <Empty>"
+
+#. y3NDD
+#: empty_cells.xhp
+msgctxt ""
+"empty_cells.xhp\n"
+"par_id851535142746123\n"
+"help.text"
+msgid "Displays 0"
+msgstr "Pokazuje 0"
+
+#. x3Fkf
+#: empty_cells.xhp
+msgctxt ""
+"empty_cells.xhp\n"
+"par_id981535142948275\n"
+"help.text"
+msgid "<variable id=\"vtrue\">TRUE</variable>"
+msgstr "<variable id=\"vtrue\">WĚRNY</variable>"
+
+#. jGD6d
+#: empty_cells.xhp
+msgctxt ""
+"empty_cells.xhp\n"
+"par_id1001535143031604\n"
+"help.text"
+msgid "TRUE (previously was FALSE)"
+msgstr "WĚRNY (do toho WOPAK)"
+
+#. rLs5m
+#: empty_cells.xhp
+msgctxt ""
+"empty_cells.xhp\n"
+"par_id201535143064244\n"
+"help.text"
+msgid "=ISNUMBER(B1)"
+msgstr "=JELIČBA(B1)"
+
+#. aBBEF
+#: empty_cells.xhp
+msgctxt ""
+"empty_cells.xhp\n"
+"par_id421535143064245\n"
+"help.text"
+msgid "<variable id=\"vfalse\">FALSE</variable>"
+msgstr "<variable id=\"vfalse\">WOPAK</variable>"
+
+#. 8taRG
+#: empty_cells.xhp
+msgctxt ""
+"empty_cells.xhp\n"
+"par_id681535143124250\n"
+"help.text"
+msgid "=ISNUMBER(C1)"
+msgstr "=JELIČBA(C1)"
+
+#. srU2T
+#: empty_cells.xhp
+msgctxt ""
+"empty_cells.xhp\n"
+"par_id211535143124250\n"
+"help.text"
+msgid "FALSE (previously was TRUE)"
+msgstr "WOPAK (do toho WĚRNY)"
+
+#. gUyG5
+#: empty_cells.xhp
+msgctxt ""
+"empty_cells.xhp\n"
+"par_id221535143151829\n"
+"help.text"
+msgid "=ISNUMBER(VLOOKUP(1;A1:C1;2))"
+msgstr "=JELIČBA(WPOKAZ(1;A1:C1;2))"
+
+#. eHH8h
+#: empty_cells.xhp
+msgctxt ""
+"empty_cells.xhp\n"
+"par_id271535143151830\n"
+"help.text"
+msgid "FALSE (B1)"
+msgstr "WOPAK(B1)"
+
+#. 24jXb
+#: empty_cells.xhp
+msgctxt ""
+"empty_cells.xhp\n"
+"par_id861535143183196\n"
+"help.text"
+msgid "=ISNUMBER(VLOOKUP(1;A1:C1;3))"
+msgstr "=JELIČBA(WPOKAZ(1;A1:C1;3)"
+
+#. TGuuU
+#: empty_cells.xhp
+msgctxt ""
+"empty_cells.xhp\n"
+"par_id371535143183197\n"
+"help.text"
+msgid "FALSE (C1, previously was TRUE)"
+msgstr "WOPAK (C1, do toho WĚRNY)"
+
+#. td3QN
+#: empty_cells.xhp
+msgctxt ""
+"empty_cells.xhp\n"
+"par_id191535143228538\n"
+"help.text"
+msgid "=ISTEXT(B1)"
+msgstr "=JETEKST(B1)"
+
+#. usWWT
+#: empty_cells.xhp
+msgctxt ""
+"empty_cells.xhp\n"
+"par_id251535143279847\n"
+"help.text"
+msgid "=ISTEXT(C1)"
+msgstr "=JETEKST(C1)"
+
+#. MoQBw
+#: empty_cells.xhp
+msgctxt ""
+"empty_cells.xhp\n"
+"par_id641535143301636\n"
+"help.text"
+msgid "=ISTEXT(VLOOKUP(1;A1:C1;2))"
+msgstr "=JETEKST(WPOKAZ(1;A1:C1;2))"
+
+#. DCsDd
+#: empty_cells.xhp
+msgctxt ""
+"empty_cells.xhp\n"
+"par_id391535143301637\n"
+"help.text"
+msgid "FALSE (B1, previously was TRUE)"
+msgstr "WOPAK (B1, do toho WĚRNY)"
+
+#. aBByS
+#: empty_cells.xhp
+msgctxt ""
+"empty_cells.xhp\n"
+"par_id661535143336012\n"
+"help.text"
+msgid "=ISTEXT(VLOOKUP(1;A1:C1;3))"
+msgstr "=JETEKST(WPOKAZ(1;A1:C1;3))"
+
+#. wyXe6
+#: empty_cells.xhp
+msgctxt ""
+"empty_cells.xhp\n"
+"par_id11535143336012\n"
+"help.text"
+msgid "FALSE (C1)"
+msgstr "WOPAK(C1)"
+
+#. kkBGf
+#: empty_cells.xhp
+msgctxt ""
+"empty_cells.xhp\n"
+"par_id661535143373396\n"
+"help.text"
+msgid "=ISBLANK(B1)"
+msgstr "=JEPRÓZDNY(B1)"
+
+#. 7m34D
+#: empty_cells.xhp
+msgctxt ""
+"empty_cells.xhp\n"
+"par_id281535143396581\n"
+"help.text"
+msgid "=ISBLANK(C1)"
+msgstr "=JEPRÓZDNY(C1)"
+
+#. NCnu6
+#: empty_cells.xhp
+msgctxt ""
+"empty_cells.xhp\n"
+"par_id31535143422248\n"
+"help.text"
+msgid "=ISBLANK(VLOOKUP(1;A1:C1;2))"
+msgstr "=JEPRÓZDNY(WPOKAZ(1;A1:C1;2))"
+
+#. YXdDe
+#: empty_cells.xhp
+msgctxt ""
+"empty_cells.xhp\n"
+"par_id871535143422248\n"
+"help.text"
+msgid "TRUE (B1, previously was FALSE)"
+msgstr "WĚRNY (B1, do toho WOPAK)"
+
+#. us9L8
+#: empty_cells.xhp
+msgctxt ""
+"empty_cells.xhp\n"
+"par_id731535143454577\n"
+"help.text"
+msgid "=ISBLANK(VLOOKUP(1;A1:C1;3))"
+msgstr "=JEPRÓZDNY(WPOKAZ(1;A1:C1;3))"
+
+#. 6PxBF
+#: empty_cells.xhp
+msgctxt ""
+"empty_cells.xhp\n"
+"par_id941535143454577\n"
+"help.text"
+msgid "FALSE (C1)"
+msgstr "WOPAK(C1)"
+
+#. wAsrJ
+#: empty_cells.xhp
+msgctxt ""
+"empty_cells.xhp\n"
+"par_id4217047\n"
+"help.text"
+msgid "Note that Microsoft Excel behaves different and always returns a number as the result of a reference to an empty cell or a formula cell with the result of an empty cell. For example:"
+msgstr "Dźiwajće na to, zo so Microsoft Excel hinak zadźeržuje a přeco ličbu jako wuslědk poćaha na prózdnu celu abo na formlowu celu, kotrejež wuslědk je prózdna cela, wróća. Na přikład:"
+
+#. YCDpa
+#: empty_cells.xhp
+msgctxt ""
+"empty_cells.xhp\n"
+"par_id251535143557533\n"
+"help.text"
+msgid "Case"
+msgstr "Pad"
+
+#. t8EJk
+#: empty_cells.xhp
+msgctxt ""
+"empty_cells.xhp\n"
+"par_id441535143557533\n"
+"help.text"
+msgid "Formula"
+msgstr "Formla"
+
+#. 23UDU
+#: empty_cells.xhp
+msgctxt ""
+"empty_cells.xhp\n"
+"par_id481535143557533\n"
+"help.text"
+msgid "Results and comments"
+msgstr "Wuslědki a komentary"
+
+#. 87W9A
+#: empty_cells.xhp
+msgctxt ""
+"empty_cells.xhp\n"
+"par_id311535143557534\n"
+"help.text"
+msgid "A1: <Empty>"
+msgstr "A1: <prózdny>"
+
+#. NaWZa
+#: empty_cells.xhp
+msgctxt ""
+"empty_cells.xhp\n"
+"par_id961535143557535\n"
+"help.text"
+msgid "Displays 0, but is just a reference to an empty cell."
+msgstr "Pokazuje 0, ale je jenož poćah na prózdnu celu."
+
+#. GJtfQ
+#: empty_cells.xhp
+msgctxt ""
+"empty_cells.xhp\n"
+"par_id441535143762523\n"
+"help.text"
+msgid "=ISNUMBER(A1)"
+msgstr "=JELIČBA(A1)"
+
+#. GZbTC
+#: empty_cells.xhp
+msgctxt ""
+"empty_cells.xhp\n"
+"par_id751535143810734\n"
+"help.text"
+msgid "=ISTEXT(A1)"
+msgstr "=JETEKST(A1)"
+
+#. ag84f
+#: empty_cells.xhp
+msgctxt ""
+"empty_cells.xhp\n"
+"par_id121535143920008\n"
+"help.text"
+msgid "=ISNUMBER(B1)"
+msgstr "=JELIČBA(B1)"
+
+#. XHXqn
+#: empty_cells.xhp
+msgctxt ""
+"empty_cells.xhp\n"
+"par_id391535143920009\n"
+"help.text"
+msgid "FALSE (Microsoft Excel: TRUE)"
+msgstr "WOPAK (Microsoft Excel: WĚRNY)"
+
+#. ndXeg
+#: empty_cells.xhp
+msgctxt ""
+"empty_cells.xhp\n"
+"par_id371535143961386\n"
+"help.text"
+msgid "=ISTEXT(B1)"
+msgstr "=JETEKST(B1)"
+
+#. xykic
+#: empty_cells.xhp
+msgctxt ""
+"empty_cells.xhp\n"
+"par_id111535144016852\n"
+"help.text"
+msgid "TRUE (Microsoft Excel: FALSE)"
+msgstr "WĚRNY (Microsoft Excel: WOPAK)"
+
+#. JGAPT
+#: empty_cells.xhp
+msgctxt ""
+"empty_cells.xhp\n"
+"par_id771535144043975\n"
+"help.text"
+msgid "C1: =VLOOKUP(...) with empty cell result"
+msgstr "C1: =WPOKAZ(…) z wuslědkom prózdneje cele"
+
+#. 7rzAj
+#: empty_cells.xhp
+msgctxt ""
+"empty_cells.xhp\n"
+"par_id311535144043975\n"
+"help.text"
+msgid "displays empty (Microsoft Excel: displays 0)"
+msgstr "pokazuje prózdny (Microsoft Excel: pokazuje 0)"
+
+#. QZZQE
+#: empty_cells.xhp
+msgctxt ""
+"empty_cells.xhp\n"
+"par_id761535144080504\n"
+"help.text"
+msgid "=ISNUMBER(VLOOKUP(...))"
+msgstr "=JELIČBA(WPOKAZ(…))"
+
+#. aioag
+#: empty_cells.xhp
+msgctxt ""
+"empty_cells.xhp\n"
+"par_id11535144101388\n"
+"help.text"
+msgid "=ISTEXT(VLOOKUP(...))"
+msgstr "=JETEKST(WPOKAZ(…))"
+
+#. DuoyG
+#: empty_cells.xhp
+msgctxt ""
+"empty_cells.xhp\n"
+"par_id131535144123734\n"
+"help.text"
+msgid "=ISNUMBER(C1)"
+msgstr "=JELIČBA(C1)"
+
+#. 8qC4h
+#: empty_cells.xhp
+msgctxt ""
+"empty_cells.xhp\n"
+"par_id151535144123735\n"
+"help.text"
+msgid "FALSE (Microsoft Excel: TRUE)"
+msgstr "WOPAK (Microsoft Excel: WĚRNY)"
+
+#. 2nREc
+#: empty_cells.xhp
+msgctxt ""
+"empty_cells.xhp\n"
+"par_id981535144159183\n"
+"help.text"
+msgid "=ISTEXT(C1)"
+msgstr "=JETEKST(C1)"
diff --git a/source/hsb/helpcontent2/source/text/scalc/06.po b/source/hsb/helpcontent2/source/text/scalc/06.po
new file mode 100644
index 00000000000..98c70b78afa
--- /dev/null
+++ b/source/hsb/helpcontent2/source/text/scalc/06.po
@@ -0,0 +1,25 @@
+#. extracted from helpcontent2/source/text/scalc/06
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-07-11 18:38+0200\n"
+"PO-Revision-Date: 2022-08-10 13:23+0000\n"
+"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
+"Language-Team: Upper Sorbian <https://translations.documentfoundation.org/projects/libo_help-master/textscalc06/hsb/>\n"
+"Language: hsb\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: Weblate 4.12.2\n"
+
+#. HDsTF
+#: calcsamplefiles.xhp
+msgctxt ""
+"calcsamplefiles.xhp\n"
+"tit\n"
+"help.text"
+msgid "Calc Sample Files"
+msgstr "Přikładowe dataje Calc"
diff --git a/source/hsb/helpcontent2/source/text/scalc/guide.po b/source/hsb/helpcontent2/source/text/scalc/guide.po
new file mode 100644
index 00000000000..0761a79f8bf
--- /dev/null
+++ b/source/hsb/helpcontent2/source/text/scalc/guide.po
@@ -0,0 +1,13957 @@
+#. extracted from helpcontent2/source/text/scalc/guide
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2022-10-10 13:36+0200\n"
+"PO-Revision-Date: 2022-08-10 13:23+0000\n"
+"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
+"Language-Team: Upper Sorbian <https://translations.documentfoundation.org/projects/libo_help-master/textscalcguide/hsb/>\n"
+"Language: hsb\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#. NXy6S
+#: address_auto.xhp
+msgctxt ""
+"address_auto.xhp\n"
+"tit\n"
+"help.text"
+msgid "Recognizing Names as Addressing"
+msgstr "Mjena jako adresowanje spóznać"
+
+#. QvKmR
+#: address_auto.xhp
+msgctxt ""
+"address_auto.xhp\n"
+"bm_id3148797\n"
+"help.text"
+msgid "<bookmark_value>automatic addressing in tables</bookmark_value> <bookmark_value>natural language addressing</bookmark_value> <bookmark_value>formulas; using row/column labels</bookmark_value> <bookmark_value>text in cells; as addressing</bookmark_value> <bookmark_value>addressing; automatic</bookmark_value> <bookmark_value>name recognition on/off</bookmark_value> <bookmark_value>row headers;using in formulas</bookmark_value> <bookmark_value>column headers;using in formulas</bookmark_value> <bookmark_value>columns; finding labels automatically</bookmark_value> <bookmark_value>rows; finding labels automatically</bookmark_value> <bookmark_value>recognizing; column and row labels</bookmark_value>"
+msgstr ""
+
+#. qAvAQ
+#: address_auto.xhp
+msgctxt ""
+"address_auto.xhp\n"
+"hd_id3148797\n"
+"help.text"
+msgid "<variable id=\"address_auto\"><link href=\"text/scalc/guide/address_auto.xhp\" name=\"Recognizing Names as Addressing\">Recognizing Names as Addressing</link></variable>"
+msgstr ""
+
+#. GgEvz
+#: address_auto.xhp
+msgctxt ""
+"address_auto.xhp\n"
+"par_id3152597\n"
+"help.text"
+msgid "You can use cells with text to refer to the rows or to the columns that contain the cells."
+msgstr ""
+
+#. jtGBH
+#: address_auto.xhp
+msgctxt ""
+"address_auto.xhp\n"
+"par_id3156283\n"
+"help.text"
+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 ""
+
+#. SFAp5
+#: address_auto.xhp
+msgctxt ""
+"address_auto.xhp\n"
+"par_id3154512\n"
+"help.text"
+msgid "In the example spreadsheet, you can use the string <item type=\"literal\">'Column One'</item> in a formula to refer to the cell range <item type=\"literal\">B3</item> to <item type=\"literal\">B5</item>, or <item type=\"literal\">'Column Two'</item> for the cell range <item type=\"literal\">C2</item> to <item type=\"literal\">C5</item>. You can also use <item type=\"literal\">'Row One'</item> for the cell range <item type=\"literal\">B3</item> to <item type=\"literal\">D3</item>, or <item type=\"literal\">'Row Two'</item> for the cell range <item type=\"literal\">B4</item> to <item type=\"literal\">D4</item>. The result of a formula that uses a cell name, for example, <item type=\"literal\">SUM('Column One')</item>, is 600."
+msgstr ""
+
+#. VBpuo
+#: address_auto.xhp
+msgctxt ""
+"address_auto.xhp\n"
+"par_id3155443\n"
+"help.text"
+msgid "This function is active by default. To turn this function off, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Calculate</emph> and clear the <emph>Automatically find column and row labels</emph> check box."
+msgstr ""
+
+#. ADRpB
+#: address_auto.xhp
+msgctxt ""
+"address_auto.xhp\n"
+"par_id3149210\n"
+"help.text"
+msgid "If you want a name to be automatically recognized by Calc, the name must start with a letter and be composed of alphanumeric characters. If you enter the name in the formula yourself, enclose the name in single quotation marks ('). If a single quotation mark appears in a name, you must enter a backslash in front of the quotation mark, for example, <item type=\"literal\">'Harry\\'s Bar'</item>."
+msgstr ""
+
+#. EXFye
+#: auto_off.xhp
+msgctxt ""
+"auto_off.xhp\n"
+"tit\n"
+"help.text"
+msgid "Deactivating Automatic Changes"
+msgstr ""
+
+#. ADp2n
+#: auto_off.xhp
+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 ""
+
+#. xyLjr
+#: auto_off.xhp
+msgctxt ""
+"auto_off.xhp\n"
+"hd_id3149456\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 ""
+
+#. 4h6m4
+#: auto_off.xhp
+msgctxt ""
+"auto_off.xhp\n"
+"par_id3156442\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 ""
+
+#. EnE7s
+#: auto_off.xhp
+msgctxt ""
+"auto_off.xhp\n"
+"par_id3145273\n"
+"help.text"
+msgid "The following shows you how to deactivate and reactivate the automatic changes in $[officename] Calc:"
+msgstr ""
+
+#. K9vst
+#: auto_off.xhp
+msgctxt ""
+"auto_off.xhp\n"
+"hd_id3145748\n"
+"help.text"
+msgid "Automatic Text or Number Completion"
+msgstr ""
+
+#. 9mHkN
+#: auto_off.xhp
+msgctxt ""
+"auto_off.xhp\n"
+"par_id3154730\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 ""
+
+#. QXemT
+#: auto_off.xhp
+msgctxt ""
+"auto_off.xhp\n"
+"par_id3153878\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 - AutoInput\"><emph>Tools - AutoInput</emph></link>."
+msgstr ""
+
+#. 8G5gv
+#: auto_off.xhp
+msgctxt ""
+"auto_off.xhp\n"
+"hd_id3146972\n"
+"help.text"
+msgid "Automatic Conversion to Date Format"
+msgstr ""
+
+#. JCMv7
+#: auto_off.xhp
+msgctxt ""
+"auto_off.xhp\n"
+"par_id3153707\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 ""
+
+#. afuu6
+#: auto_off.xhp
+msgctxt ""
+"auto_off.xhp\n"
+"par_id3159267\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 ""
+
+#. DzjZv
+#: auto_off.xhp
+msgctxt ""
+"auto_off.xhp\n"
+"hd_id3150043\n"
+"help.text"
+msgid "Quotation Marks Replaced by Custom Quotes"
+msgstr ""
+
+#. GYoEC
+#: auto_off.xhp
+msgctxt ""
+"auto_off.xhp\n"
+"par_id3155333\n"
+"help.text"
+msgid "Choose <emph>Tools - AutoCorrect - AutoCorrect Options</emph>. Go to the <emph>Localized Options</emph> tab and unmark <emph>Replace</emph>."
+msgstr ""
+
+#. j3GnW
+#: auto_off.xhp
+msgctxt ""
+"auto_off.xhp\n"
+"hd_id3149565\n"
+"help.text"
+msgid "Cell Content Always Begins With Uppercase"
+msgstr ""
+
+#. qNqbR
+#: auto_off.xhp
+msgctxt ""
+"auto_off.xhp\n"
+"par_id3147001\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">Tools - AutoCorrect - AutoCorrect Options</item>. Go to the <item type=\"menuitem\">Options</item> tab. Unmark <item type=\"menuitem\">Capitalize first letter of every sentence</item>."
+msgstr ""
+
+#. rwz87
+#: auto_off.xhp
+msgctxt ""
+"auto_off.xhp\n"
+"hd_id3150345\n"
+"help.text"
+msgid "Replace Word With Another Word"
+msgstr ""
+
+#. VF6DN
+#: auto_off.xhp
+msgctxt ""
+"auto_off.xhp\n"
+"par_id3166425\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">Tools - AutoCorrect - AutoCorrect Options</item>. Go to the <item type=\"menuitem\">Replace</item> tab. Select the word pair and click <item type=\"menuitem\">Delete</item>."
+msgstr ""
+
+#. mkLPr
+#: auto_off.xhp
+msgctxt ""
+"auto_off.xhp\n"
+"par_id3152992\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/06130000.xhp\" name=\"Tools - AutoInput\">Tools - AutoInput</link>"
+msgstr ""
+
+#. h5BG2
+#: auto_off.xhp
+msgctxt ""
+"auto_off.xhp\n"
+"par_id3154368\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"Tools - AutoCorrect\">Tools - AutoCorrect - AutoCorrect Options</link>"
+msgstr ""
+
+#. tdzBC
+#: autofilter.xhp
+msgctxt ""
+"autofilter.xhp\n"
+"tit\n"
+"help.text"
+msgid "Applying AutoFilter"
+msgstr ""
+
+#. uegyb
+#: autofilter.xhp
+msgctxt ""
+"autofilter.xhp\n"
+"bm_id3156423\n"
+"help.text"
+msgid "<bookmark_value>filters, see also AutoFilter function</bookmark_value> <bookmark_value>AutoFilter function;applying</bookmark_value> <bookmark_value>sheets; filter values</bookmark_value> <bookmark_value>numbers; filter sheets</bookmark_value> <bookmark_value>columns; AutoFilter function</bookmark_value> <bookmark_value>drop-down menus in sheet columns</bookmark_value> <bookmark_value>database ranges; AutoFilter function</bookmark_value>"
+msgstr ""
+
+#. WoBQt
+#: autofilter.xhp
+msgctxt ""
+"autofilter.xhp\n"
+"hd_id3156423\n"
+"help.text"
+msgid "<variable id=\"autofilter\"><link href=\"text/scalc/guide/autofilter.xhp\" name=\"Applying AutoFilter\">Applying AutoFilter</link></variable>"
+msgstr ""
+
+#. 7FoJn
+#: autofilter.xhp
+msgctxt ""
+"autofilter.xhp\n"
+"par_id3147427\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 ""
+
+#. BCGPe
+#: autofilter.xhp
+msgctxt ""
+"autofilter.xhp\n"
+"par_id3152576\n"
+"help.text"
+msgid "Select the columns you want to use AutoFilter on."
+msgstr ""
+
+#. Qk7GY
+#: autofilter.xhp
+msgctxt ""
+"autofilter.xhp\n"
+"par_id3153157\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 ""
+
+#. dHkYY
+#: autofilter.xhp
+msgctxt ""
+"autofilter.xhp\n"
+"par_id3154510\n"
+"help.text"
+msgid "Run the filter by clicking the drop-down arrow in the column heading and choosing an item."
+msgstr ""
+
+#. FDYaw
+#: autofilter.xhp
+msgctxt ""
+"autofilter.xhp\n"
+"par_id3155064\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 ""
+
+#. BTbCP
+#: autofilter.xhp
+msgctxt ""
+"autofilter.xhp\n"
+"par_id9216589\n"
+"help.text"
+msgid "When you apply an additional AutoFilter on another column of a filtered data range, then the other combo boxes list only the filtered data."
+msgstr ""
+
+#. BXy3D
+#: autofilter.xhp
+msgctxt ""
+"autofilter.xhp\n"
+"par_id3153714\n"
+"help.text"
+msgid "To display all records again, select the <emph>all</emph> entry in the AutoFilter combo box. If you choose <emph>Standard</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 ""
+
+#. x9jTE
+#: autofilter.xhp
+msgctxt ""
+"autofilter.xhp\n"
+"par_id3147340\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 ""
+
+#. mA8cY
+#: autofilter.xhp
+msgctxt ""
+"autofilter.xhp\n"
+"par_id4303415\n"
+"help.text"
+msgid "To assign different AutoFilters to different sheets, you must first define a database range on each sheet."
+msgstr ""
+
+#. 8ViYy
+#: autofilter.xhp
+msgctxt ""
+"autofilter.xhp\n"
+"par_id3159236\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 ""
+
+#. nj46T
+#: autofilter.xhp
+msgctxt ""
+"autofilter.xhp\n"
+"par_id3152985\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/12040100.xhp\" name=\"Data - Filter - AutoFilter\">Data - Filter - AutoFilter</link>"
+msgstr ""
+
+#. UwaWC
+#: autofilter.xhp
+msgctxt ""
+"autofilter.xhp\n"
+"par_id3154484\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060106.xhp\" name=\"SUBTOTAL\">SUBTOTAL</link>"
+msgstr ""
+
+#. XAtNE
+#: autoformat.xhp
+msgctxt ""
+"autoformat.xhp\n"
+"tit\n"
+"help.text"
+msgid "Using AutoFormat for Tables"
+msgstr ""
+
+#. V4grY
+#: autoformat.xhp
+msgctxt ""
+"autoformat.xhp\n"
+"bm_id3155132\n"
+"help.text"
+msgid "<bookmark_value>tables; AutoFormat</bookmark_value> <bookmark_value>AutoFormat cell ranges</bookmark_value> <bookmark_value>formats; automatically formatting spreadsheets</bookmark_value> <bookmark_value>sheets;AutoFormat</bookmark_value>"
+msgstr ""
+
+#. EiEMB
+#: autoformat.xhp
+msgctxt ""
+"autoformat.xhp\n"
+"hd_id3155132\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 ""
+
+#. 7xexA
+#: autoformat.xhp
+msgctxt ""
+"autoformat.xhp\n"
+"par_id3149401\n"
+"help.text"
+msgid "Use the AutoFormat feature to quickly apply a format to a selected cell range."
+msgstr ""
+
+#. rA9iM
+#: autoformat.xhp
+msgctxt ""
+"autoformat.xhp\n"
+"par_idN10702\n"
+"help.text"
+msgid "Applying an AutoFormat to a Selected Cell Range"
+msgstr ""
+
+#. jDKjA
+#: autoformat.xhp
+msgctxt ""
+"autoformat.xhp\n"
+"par_idN106CE\n"
+"help.text"
+msgid "Select the range of cells to which the AutoFormat style is to be applied. The range must be at least 3 columns and 3 rows in size."
+msgstr ""
+
+#. 6GCsB
+#: autoformat.xhp
+msgctxt ""
+"autoformat.xhp\n"
+"par_idN106D5\n"
+"help.text"
+msgid "Go to <menuitem>Format - AutoFormat Styles</menuitem> to open the AutoFormat dialog."
+msgstr ""
+
+#. CXiex
+#: autoformat.xhp
+msgctxt ""
+"autoformat.xhp\n"
+"par_id771630333791025\n"
+"help.text"
+msgid "In the <emph>Format</emph> list choose the AutoFormat style to apply."
+msgstr ""
+
+#. tCZL9
+#: autoformat.xhp
+msgctxt ""
+"autoformat.xhp\n"
+"par_id3151242\n"
+"help.text"
+msgid "In the <emph>Formatting</emph> section choose which properties from the AutoFormat style to apply to the selected cell range."
+msgstr ""
+
+#. rgXQa
+#: autoformat.xhp
+msgctxt ""
+"autoformat.xhp\n"
+"par_idN10715\n"
+"help.text"
+msgid "Click <emph>OK</emph> to apply the AutoFormat style and close the dialog."
+msgstr ""
+
+#. EAyCv
+#: autoformat.xhp
+msgctxt ""
+"autoformat.xhp\n"
+"par_id3149210\n"
+"help.text"
+msgid "In case the color of the cell contents does not change, make sure <menuitem>View - Value Highlighting</menuitem> is disabled."
+msgstr ""
+
+#. ovMm9
+#: autoformat.xhp
+msgctxt ""
+"autoformat.xhp\n"
+"bm_id11630343392868\n"
+"help.text"
+msgid "<bookmark_value>defining;AutoFormat styles</bookmark_value>"
+msgstr ""
+
+#. 5DZHa
+#: autoformat.xhp
+msgctxt ""
+"autoformat.xhp\n"
+"hd_id731630343367098\n"
+"help.text"
+msgid "Defining a new AutoFormat style"
+msgstr ""
+
+#. 2QDCM
+#: autoformat.xhp
+msgctxt ""
+"autoformat.xhp\n"
+"par_id3152985\n"
+"help.text"
+msgid "In a Calc spreadsheet, format a cell range with at least 4 columns and 4 rows to serve as model to create the new AutoFormat style."
+msgstr ""
+
+#. 3GsCL
+#: autoformat.xhp
+msgctxt ""
+"autoformat.xhp\n"
+"par_id3145384\n"
+"help.text"
+msgid "Select the cell range formatted in the previous step and go to <menuitem>Format - AutoFormat Styles</menuitem>."
+msgstr ""
+
+#. CzaoG
+#: autoformat.xhp
+msgctxt ""
+"autoformat.xhp\n"
+"par_idN107A9\n"
+"help.text"
+msgid "Click <emph>Add</emph>."
+msgstr ""
+
+#. GxXmX
+#: autoformat.xhp
+msgctxt ""
+"autoformat.xhp\n"
+"par_idN10760\n"
+"help.text"
+msgid "In the <emph>Name</emph> box of the <emph>Add AutoFormat</emph> dialog, enter a name for the new AutoFormat style."
+msgstr ""
+
+#. pMxn9
+#: autoformat.xhp
+msgctxt ""
+"autoformat.xhp\n"
+"par_idN107C3\n"
+"help.text"
+msgid "Click <emph>OK</emph> and close the dialog."
+msgstr ""
+
+#. HJiDi
+#: autoformat.xhp
+msgctxt ""
+"autoformat.xhp\n"
+"par_id51630343134146\n"
+"help.text"
+msgid "The new AutoFormat styles created using the steps above can be applied to any %PRODUCTNAME Calc file. Hence they are not limited to the file where the style was created."
+msgstr ""
+
+#. hpPvo
+#: autoformat.xhp
+msgctxt ""
+"autoformat.xhp\n"
+"par_id3159203\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/05110000.xhp\" name=\"Format - AutoFormat\">Format - AutoFormat Styles</link>"
+msgstr ""
+
+#. ZSCL9
+#: background.xhp
+msgctxt ""
+"background.xhp\n"
+"tit\n"
+"help.text"
+msgid "Defining Background Colors or Background Graphics"
+msgstr ""
+
+#. PE8wQ
+#: background.xhp
+msgctxt ""
+"background.xhp\n"
+"bm_id3149346\n"
+"help.text"
+msgid "<bookmark_value>spreadsheets; backgrounds</bookmark_value><bookmark_value>backgrounds;cell ranges</bookmark_value><bookmark_value>tables; backgrounds</bookmark_value><bookmark_value>cells; backgrounds</bookmark_value><bookmark_value>rows, see also cells</bookmark_value><bookmark_value>columns, see also cells</bookmark_value>"
+msgstr ""
+
+#. tMFWU
+#: background.xhp
+msgctxt ""
+"background.xhp\n"
+"hd_id3149346\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 ""
+
+#. gwwiM
+#: background.xhp
+msgctxt ""
+"background.xhp\n"
+"par_id9520249\n"
+"help.text"
+msgid "You can define a background color or use a graphic as a background for cell ranges in $[officename] Calc."
+msgstr ""
+
+#. iQgbC
+#: background.xhp
+msgctxt ""
+"background.xhp\n"
+"hd_id3144760\n"
+"help.text"
+msgid "Applying a Background Color to a $[officename] Calc Spreadsheet"
+msgstr ""
+
+#. CdEUc
+#: background.xhp
+msgctxt ""
+"background.xhp\n"
+"par_id3155429\n"
+"help.text"
+msgid "Select the cells."
+msgstr ""
+
+#. N2G5z
+#: background.xhp
+msgctxt ""
+"background.xhp\n"
+"par_id3149260\n"
+"help.text"
+msgid "Choose <emph>Format - Cells</emph> (or <emph>Format Cells</emph> from the context menu)."
+msgstr ""
+
+#. bg5yD
+#: background.xhp
+msgctxt ""
+"background.xhp\n"
+"par_id3152938\n"
+"help.text"
+msgid "On the <emph>Background</emph> tab page, select the background color."
+msgstr ""
+
+#. Fc3Wp
+#: background.xhp
+msgctxt ""
+"background.xhp\n"
+"hd_id3146974\n"
+"help.text"
+msgid "Graphics in the Background of Cells"
+msgstr ""
+
+#. faXAJ
+#: background.xhp
+msgctxt ""
+"background.xhp\n"
+"par_id3155414\n"
+"help.text"
+msgid "Choose <emph>Insert - Image - From File</emph>."
+msgstr ""
+
+#. BTGbT
+#: background.xhp
+msgctxt ""
+"background.xhp\n"
+"par_id3149664\n"
+"help.text"
+msgid "Select the graphic and click <emph>Open</emph>."
+msgstr ""
+
+#. 2BGVn
+#: background.xhp
+msgctxt ""
+"background.xhp\n"
+"par_id3153575\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 <menuitem>Arrange - To Background</menuitem> command to place this in the background. To select a graphic that has been placed in the background, use the <link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navigator</link>."
+msgstr ""
+
+#. vTxFX
+#: background.xhp
+msgctxt ""
+"background.xhp\n"
+"par_id51576\n"
+"help.text"
+msgid "<link href=\"text/shared/guide/background.xhp\">Watermarks</link>"
+msgstr ""
+
+#. R8Ctk
+#: background.xhp
+msgctxt ""
+"background.xhp\n"
+"par_id3156180\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05210100.xhp\" name=\"Background tab page\"><emph>Background</emph> tab page</link>"
+msgstr ""
+
+#. owozX
+#: background.xhp
+msgctxt ""
+"background.xhp\n"
+"par_id7601245\n"
+"help.text"
+msgid "<link href=\"text/scalc/guide/format_table.xhp\">Formatting Spreadsheets</link>"
+msgstr ""
+
+#. uTh4T
+#: borders.xhp
+msgctxt ""
+"borders.xhp\n"
+"tit\n"
+"help.text"
+msgid "User Defined Borders in Cells"
+msgstr ""
+
+#. RRraV
+#: borders.xhp
+msgctxt ""
+"borders.xhp\n"
+"bm_id3457441\n"
+"help.text"
+msgid "<bookmark_value>cells;borders</bookmark_value> <bookmark_value>line arrangements with cells</bookmark_value> <bookmark_value>borders;cells</bookmark_value>"
+msgstr ""
+
+#. ajMCN
+#: borders.xhp
+msgctxt ""
+"borders.xhp\n"
+"hd_id4544816\n"
+"help.text"
+msgid "<variable id=\"borders\"><link href=\"text/scalc/guide/borders.xhp\">User Defined Borders in Cells</link></variable>"
+msgstr ""
+
+#. QhPM3
+#: borders.xhp
+msgctxt ""
+"borders.xhp\n"
+"par_id2320017\n"
+"help.text"
+msgid "You can apply a variety of different lines to selected cells."
+msgstr ""
+
+#. apxgf
+#: borders.xhp
+msgctxt ""
+"borders.xhp\n"
+"par_id8055665\n"
+"help.text"
+msgid "Select the cell or a block of cells."
+msgstr ""
+
+#. mkqAE
+#: borders.xhp
+msgctxt ""
+"borders.xhp\n"
+"par_id9181188\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">Format - Cells</item>."
+msgstr ""
+
+#. HAyz8
+#: borders.xhp
+msgctxt ""
+"borders.xhp\n"
+"par_id9947508\n"
+"help.text"
+msgid "In the dialog, click the <emph>Borders</emph> tab."
+msgstr ""
+
+#. E89Fq
+#: borders.xhp
+msgctxt ""
+"borders.xhp\n"
+"par_id7907956\n"
+"help.text"
+msgid "Choose the border options you want to apply and click OK."
+msgstr ""
+
+#. EG7QD
+#: borders.xhp
+msgctxt ""
+"borders.xhp\n"
+"par_id1342204\n"
+"help.text"
+msgid "The options in the <emph>Line arrangement</emph> area can be used to apply multiple border styles."
+msgstr ""
+
+#. tQ4ii
+#: borders.xhp
+msgctxt ""
+"borders.xhp\n"
+"hd_id4454481\n"
+"help.text"
+msgid "Selection of cells"
+msgstr ""
+
+#. 3xGCg
+#: borders.xhp
+msgctxt ""
+"borders.xhp\n"
+"par_id7251503\n"
+"help.text"
+msgid "Depending on the selection of cells, the area looks different."
+msgstr ""
+
+#. jnGHi
+#: borders.xhp
+msgctxt ""
+"borders.xhp\n"
+"par_id8716696\n"
+"help.text"
+msgid "Selection"
+msgstr ""
+
+#. AKfDP
+#: borders.xhp
+msgctxt ""
+"borders.xhp\n"
+"par_id4677877\n"
+"help.text"
+msgid "Line arrangement area"
+msgstr ""
+
+#. fCBCP
+#: borders.xhp
+msgctxt ""
+"borders.xhp\n"
+"par_id807824\n"
+"help.text"
+msgid "One cell"
+msgstr ""
+
+#. 6a7qm
+#: borders.xhp
+msgctxt ""
+"borders.xhp\n"
+"par_id8473464\n"
+"help.text"
+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 ""
+
+#. kBPBo
+#: borders.xhp
+msgctxt ""
+"borders.xhp\n"
+"par_id3509933\n"
+"help.text"
+msgid "Cells in a column"
+msgstr ""
+
+#. JJYuk
+#: borders.xhp
+msgctxt ""
+"borders.xhp\n"
+"par_id6635639\n"
+"help.text"
+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 ""
+
+#. DCBWV
+#: borders.xhp
+msgctxt ""
+"borders.xhp\n"
+"par_id8073366\n"
+"help.text"
+msgid "Cells in a row"
+msgstr ""
+
+#. jDYBP
+#: borders.xhp
+msgctxt ""
+"borders.xhp\n"
+"par_id6054567\n"
+"help.text"
+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 ""
+
+#. ZkYrP
+#: borders.xhp
+msgctxt ""
+"borders.xhp\n"
+"par_id466322\n"
+"help.text"
+msgid "Cells in a block of 2x2 or more"
+msgstr ""
+
+#. GC7h8
+#: borders.xhp
+msgctxt ""
+"borders.xhp\n"
+"par_id4511551\n"
+"help.text"
+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 ""
+
+#. 2gKsC
+#: borders.xhp
+msgctxt ""
+"borders.xhp\n"
+"hd_id7790154\n"
+"help.text"
+msgid "Default Settings"
+msgstr ""
+
+#. p4Lam
+#: borders.xhp
+msgctxt ""
+"borders.xhp\n"
+"par_id2918485\n"
+"help.text"
+msgid "Click one of the <emph>Default</emph> icons to set or reset multiple borders."
+msgstr ""
+
+#. mh9v4
+#: borders.xhp
+msgctxt ""
+"borders.xhp\n"
+"par_id1836909\n"
+"help.text"
+msgid "The thin gray lines inside an icon show the borders that will be reset or cleared."
+msgstr ""
+
+#. CRmXG
+#: borders.xhp
+msgctxt ""
+"borders.xhp\n"
+"par_id5212561\n"
+"help.text"
+msgid "The dark lines inside an icon show the lines that will be set using the selected line style and color."
+msgstr ""
+
+#. Fo7Dp
+#: borders.xhp
+msgctxt ""
+"borders.xhp\n"
+"par_id4818872\n"
+"help.text"
+msgid "The thick gray lines inside an icon show the lines that will not be changed."
+msgstr ""
+
+#. bF8L3
+#: borders.xhp
+msgctxt ""
+"borders.xhp\n"
+"hd_id8989226\n"
+"help.text"
+msgid "Examples"
+msgstr ""
+
+#. BFCDb
+#: borders.xhp
+msgctxt ""
+"borders.xhp\n"
+"par_id622577\n"
+"help.text"
+msgid "Select a block of about 8x8 cells, then choose <emph>Format - Cells - Borders</emph>."
+msgstr ""
+
+#. qFhBm
+#: borders.xhp
+msgctxt ""
+"borders.xhp\n"
+"par_id8119754\n"
+"help.text"
+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 ""
+
+#. EFurH
+#: borders.xhp
+msgctxt ""
+"borders.xhp\n"
+"par_id8964201\n"
+"help.text"
+msgid "Click the left icon to clear all lines. This removes all outer borders, all inner lines, and all diagonal lines."
+msgstr ""
+
+#. ZTJS3
+#: borders.xhp
+msgctxt ""
+"borders.xhp\n"
+"par_id6048463\n"
+"help.text"
+msgid "Click the second icon from the left to set an outer border and to remove all other lines."
+msgstr ""
+
+#. 9bJYG
+#: borders.xhp
+msgctxt ""
+"borders.xhp\n"
+"par_id1495406\n"
+"help.text"
+msgid "Click the rightmost icon to set an outer border. The inner lines are not changed, except the diagonal lines, which will be removed."
+msgstr ""
+
+#. mvEWC
+#: borders.xhp
+msgctxt ""
+"borders.xhp\n"
+"par_id9269386\n"
+"help.text"
+msgid "Now you can continue to see which lines the other icons will set or remove."
+msgstr ""
+
+#. DDScY
+#: borders.xhp
+msgctxt ""
+"borders.xhp\n"
+"hd_id3593554\n"
+"help.text"
+msgid "User Defined Settings"
+msgstr ""
+
+#. VWqSq
+#: borders.xhp
+msgctxt ""
+"borders.xhp\n"
+"par_id4018066\n"
+"help.text"
+msgid "In the <emph>User defined</emph> area, you can click to set or remove individual lines. The preview shows lines in three different states."
+msgstr ""
+
+#. bG2uc
+#: borders.xhp
+msgctxt ""
+"borders.xhp\n"
+"par_id8004699\n"
+"help.text"
+msgid "Repeatedly click an edge or a corner to switch through the three different states."
+msgstr ""
+
+#. EnR9B
+#: borders.xhp
+msgctxt ""
+"borders.xhp\n"
+"par_id8037659\n"
+"help.text"
+msgid "Line types"
+msgstr ""
+
+#. XLAR9
+#: borders.xhp
+msgctxt ""
+"borders.xhp\n"
+"par_id2305978\n"
+"help.text"
+msgid "Image"
+msgstr ""
+
+#. 2eM3b
+#: borders.xhp
+msgctxt ""
+"borders.xhp\n"
+"par_id8716086\n"
+"help.text"
+msgid "Meaning"
+msgstr ""
+
+#. fh3Qr
+#: borders.xhp
+msgctxt ""
+"borders.xhp\n"
+"par_id3978087\n"
+"help.text"
+msgid "A black line"
+msgstr ""
+
+#. 6L2yn
+#: borders.xhp
+msgctxt ""
+"borders.xhp\n"
+"par_id4065065\n"
+"help.text"
+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 ""
+
+#. FUpZB
+#: borders.xhp
+msgctxt ""
+"borders.xhp\n"
+"par_id6987823\n"
+"help.text"
+msgid "A black line sets the corresponding line of the selected cells. The line is shown as a dotted line when you choose the 0.05 pt line style. Double lines are shown when you select a double line style."
+msgstr ""
+
+#. tgg4i
+#: borders.xhp
+msgctxt ""
+"borders.xhp\n"
+"par_id1209143\n"
+"help.text"
+msgid "A gray line"
+msgstr ""
+
+#. EMt2z
+#: borders.xhp
+msgctxt ""
+"borders.xhp\n"
+"par_id6653340\n"
+"help.text"
+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 ""
+
+#. HmMdg
+#: borders.xhp
+msgctxt ""
+"borders.xhp\n"
+"par_id2278817\n"
+"help.text"
+msgid "A gray line is shown when the corresponding line of the selected cells will not be changed. No line will be set or removed at this position."
+msgstr ""
+
+#. RoVV2
+#: borders.xhp
+msgctxt ""
+"borders.xhp\n"
+"par_id5374919\n"
+"help.text"
+msgid "A white line"
+msgstr ""
+
+#. mDdBw
+#: borders.xhp
+msgctxt ""
+"borders.xhp\n"
+"par_id52491\n"
+"help.text"
+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 ""
+
+#. YNahC
+#: borders.xhp
+msgctxt ""
+"borders.xhp\n"
+"par_id372325\n"
+"help.text"
+msgid "A white line is shown when the corresponding line of the selected cells will be removed."
+msgstr ""
+
+#. KFU6J
+#: borders.xhp
+msgctxt ""
+"borders.xhp\n"
+"hd_id7282937\n"
+"help.text"
+msgid "Examples"
+msgstr ""
+
+#. zNjfw
+#: borders.xhp
+msgctxt ""
+"borders.xhp\n"
+"par_id4230780\n"
+"help.text"
+msgid "Select a single cell, then choose <emph>Format - Cells - Borders</emph>."
+msgstr ""
+
+#. fHEFP
+#: borders.xhp
+msgctxt ""
+"borders.xhp\n"
+"par_id1712393\n"
+"help.text"
+msgid "Click the lower edge to set a very thin line as a lower border. All other lines will be removed from the cell."
+msgstr ""
+
+#. fe8tp
+#: borders.xhp
+msgctxt ""
+"borders.xhp\n"
+"par_id5149693\n"
+"help.text"
+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 ""
+
+#. yznZW
+#: borders.xhp
+msgctxt ""
+"borders.xhp\n"
+"par_id5759453\n"
+"help.text"
+msgid "Choose a thicker line style and click the lower edge. This sets a thicker line as a lower border."
+msgstr ""
+
+#. xixgT
+#: borders.xhp
+msgctxt ""
+"borders.xhp\n"
+"par_id6342051\n"
+"help.text"
+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 ""
+
+#. sTGsy
+#: borders.xhp
+msgctxt ""
+"borders.xhp\n"
+"par_id5775322\n"
+"help.text"
+msgid "Click the second <emph>Default</emph> icon from the left to set all four borders. Then repeatedly click the lower edge until a white line is shown. This removes the lower border."
+msgstr ""
+
+#. WAEE5
+#: borders.xhp
+msgctxt ""
+"borders.xhp\n"
+"par_id2882778\n"
+"help.text"
+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 ""
+
+#. 8FHj7
+#: borders.xhp
+msgctxt ""
+"borders.xhp\n"
+"par_id8102053\n"
+"help.text"
+msgid "You can combine several line types and styles. The last image shows how to set thick outer borders (the thick black lines), while any diagonal lines inside the cell will not be touched (gray lines)."
+msgstr ""
+
+#. Uop2U
+#: borders.xhp
+msgctxt ""
+"borders.xhp\n"
+"par_id2102420\n"
+"help.text"
+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 ""
+
+#. KKHLH
+#: borders.xhp
+msgctxt ""
+"borders.xhp\n"
+"bm_id151630452717743\n"
+"help.text"
+msgid "<bookmark_value>adjacent cells;remove border</bookmark_value>"
+msgstr ""
+
+#. eEE4F
+#: borders.xhp
+msgctxt ""
+"borders.xhp\n"
+"hd_id861630451554176\n"
+"help.text"
+msgid "Adjacent Cells"
+msgstr ""
+
+#. k8s2o
+#: borders.xhp
+msgctxt ""
+"borders.xhp\n"
+"par_id231630451548190\n"
+"help.text"
+msgid "This option becomes available when formatting a range of cells that already have borders and the new format defined for the range involves removing outer borders."
+msgstr ""
+
+#. xADD4
+#: borders.xhp
+msgctxt ""
+"borders.xhp\n"
+"par_id931630451706604\n"
+"help.text"
+msgid "By default the option <emph>Remove border</emph> is disabled and the borders at the edges of the selected range are left unchanged. Check this option if the borders at the edge of the selection should be removed."
+msgstr ""
+
+#. V8sNd
+#: borders.xhp
+msgctxt ""
+"borders.xhp\n"
+"par_id641630452272324\n"
+"help.text"
+msgid "If the preset <emph>No Borders</emph> is chosen then the <emph>Remove border</emph> option is enabled."
+msgstr ""
+
+#. kCAyU
+#: calc_date.xhp
+msgctxt ""
+"calc_date.xhp\n"
+"tit\n"
+"help.text"
+msgid "Calculating With Dates and Times"
+msgstr ""
+
+#. U4Xij
+#: calc_date.xhp
+msgctxt ""
+"calc_date.xhp\n"
+"bm_id3146120\n"
+"help.text"
+msgid "<bookmark_value>dates; in cells</bookmark_value> <bookmark_value>times; in cells</bookmark_value> <bookmark_value>cells;date and time formats</bookmark_value> <bookmark_value>current date and time values</bookmark_value>"
+msgstr ""
+
+#. DKYwy
+#: calc_date.xhp
+msgctxt ""
+"calc_date.xhp\n"
+"hd_id3146120\n"
+"help.text"
+msgid "<variable id=\"calc_date\"><link href=\"text/scalc/guide/calc_date.xhp\" name=\"Calculating With Dates and Times\">Calculating With Dates and Times</link></variable>"
+msgstr ""
+
+#. ZBgGk
+#: calc_date.xhp
+msgctxt ""
+"calc_date.xhp\n"
+"par_id3154320\n"
+"help.text"
+msgid "In $[officename] Calc, you can perform calculations with current date and time values. As an example, to find out exactly how old you are in seconds or hours, follow the following steps:"
+msgstr ""
+
+#. MXCKL
+#: calc_date.xhp
+msgctxt ""
+"calc_date.xhp\n"
+"par_id3150750\n"
+"help.text"
+msgid "In a spreadsheet, enter your birthday in cell A1."
+msgstr ""
+
+#. PqEkE
+#: calc_date.xhp
+msgctxt ""
+"calc_date.xhp\n"
+"par_id3145642\n"
+"help.text"
+msgid "Enter the following formula in cell A3: <item type=\"literal\">=NOW()-A1</item>"
+msgstr ""
+
+#. 9gqHu
+#: calc_date.xhp
+msgctxt ""
+"calc_date.xhp\n"
+"par_id3149020\n"
+"help.text"
+msgid "After pressing the Enter key you will see the result in date format. Since the result should show the difference between two dates as a number of days, you must format cell A3 as a number."
+msgstr ""
+
+#. hSnJ9
+#: calc_date.xhp
+msgctxt ""
+"calc_date.xhp\n"
+"par_id3155335\n"
+"help.text"
+msgid "Place the cursor in cell A3, right-click to open a context menu and choose <emph>Format Cells</emph>."
+msgstr ""
+
+#. ddvdC
+#: calc_date.xhp
+msgctxt ""
+"calc_date.xhp\n"
+"par_id3147343\n"
+"help.text"
+msgid "The <item type=\"menuitem\">Format Cells</item> dialog appears. On the <item type=\"menuitem\">Numbers</item> tab, the \"Number\" category will appear already highlighted. The format is set to \"General\", which causes the result of a calculation containing date entries to be displayed as a date. To display the result as a number, set the number format to \"-1,234\" and close the dialog with the <item type=\"menuitem\">OK</item> button."
+msgstr ""
+
+#. qt75B
+#: calc_date.xhp
+msgctxt ""
+"calc_date.xhp\n"
+"par_id3147001\n"
+"help.text"
+msgid "The number of days between today's date and the specified date is displayed in cell A3."
+msgstr ""
+
+#. LxXW8
+#: calc_date.xhp
+msgctxt ""
+"calc_date.xhp\n"
+"par_id3150304\n"
+"help.text"
+msgid "Experiment with some additional formulas: in A4 enter =A3*24 to calculate the hours, in A5 enter =A4*60 for the minutes, and in A6 enter =A5*60 for seconds. Press the Enter key after each formula."
+msgstr ""
+
+#. 6WaJq
+#: calc_date.xhp
+msgctxt ""
+"calc_date.xhp\n"
+"par_id3149207\n"
+"help.text"
+msgid "The time since your date of birth will be calculated and displayed in the various units. The values are calculated as of the exact moment when you entered the last formula and pressed the Enter key. This value is not automatically updated, although \"Now\" continuously changes. In the <emph>Data</emph> menu, the menu item <emph>Calculate - AutoCalculate</emph> is normally active; however, automatic calculation does not apply to the function NOW. This ensures that your computer is not solely occupied with updating the sheet."
+msgstr ""
+
+#. 8FWEV
+#: calc_series.xhp
+msgctxt ""
+"calc_series.xhp\n"
+"tit\n"
+"help.text"
+msgid "Automatically Calculating Series"
+msgstr ""
+
+#. jCpXS
+#: calc_series.xhp
+msgctxt ""
+"calc_series.xhp\n"
+"bm_id3150769\n"
+"help.text"
+msgid "<bookmark_value>series; calculating</bookmark_value> <bookmark_value>calculating; series</bookmark_value> <bookmark_value>linear series</bookmark_value> <bookmark_value>growth series</bookmark_value> <bookmark_value>date series</bookmark_value> <bookmark_value>powers of 2 calculations</bookmark_value> <bookmark_value>cells; filling automatically</bookmark_value> <bookmark_value>automatic cell filling</bookmark_value> <bookmark_value>AutoFill function</bookmark_value> <bookmark_value>filling;cells, automatically</bookmark_value>"
+msgstr ""
+
+#. RxPrT
+#: calc_series.xhp
+msgctxt ""
+"calc_series.xhp\n"
+"hd_id3150769\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 ""
+
+#. C6vL5
+#: calc_series.xhp
+msgctxt ""
+"calc_series.xhp\n"
+"par_idN106A8\n"
+"help.text"
+msgid "You can automatically fill cells with data with the AutoFill command or the Series command."
+msgstr ""
+
+#. ADstn
+#: calc_series.xhp
+msgctxt ""
+"calc_series.xhp\n"
+"par_idN106D3\n"
+"help.text"
+msgid "Using AutoFill"
+msgstr ""
+
+#. GCuzG
+#: calc_series.xhp
+msgctxt ""
+"calc_series.xhp\n"
+"par_idN106D7\n"
+"help.text"
+msgid "AutoFill automatically generates a data series based on a defined pattern."
+msgstr ""
+
+#. YXajB
+#: calc_series.xhp
+msgctxt ""
+"calc_series.xhp\n"
+"par_id3154319\n"
+"help.text"
+msgid "On a sheet, click in a cell, and type a number."
+msgstr ""
+
+#. T92cP
+#: calc_series.xhp
+msgctxt ""
+"calc_series.xhp\n"
+"par_idN106CB\n"
+"help.text"
+msgid "Click in another cell and then click back in the cell where you typed the number."
+msgstr ""
+
+#. CTnjD
+#: calc_series.xhp
+msgctxt ""
+"calc_series.xhp\n"
+"par_id3145272\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 ""
+
+#. UMiwa
+#: calc_series.xhp
+msgctxt ""
+"calc_series.xhp\n"
+"par_id3145801\n"
+"help.text"
+msgid "The cells are filled with ascending numbers."
+msgstr ""
+
+#. MGYNe
+#: calc_series.xhp
+msgctxt ""
+"calc_series.xhp\n"
+"par_idN106EE\n"
+"help.text"
+msgid "To quickly create a list of consecutive days, enter <item type=\"literal\">Monday</item> in a cell, and drag the fill handle."
+msgstr ""
+
+#. a2oGa
+#: calc_series.xhp
+msgctxt ""
+"calc_series.xhp\n"
+"par_id9720145\n"
+"help.text"
+msgid "Hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> if you do not want to fill the cells with different values."
+msgstr ""
+
+#. aDZ5t
+#: calc_series.xhp
+msgctxt ""
+"calc_series.xhp\n"
+"par_id3154490\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 ""
+
+#. eEAcg
+#: calc_series.xhp
+msgctxt ""
+"calc_series.xhp\n"
+"par_idN10737\n"
+"help.text"
+msgid "You can double-click the fill handle to automatically fill all empty columns of the current data block. For example, first enter Jan into A1 and drag the fill handle down to A12 to get the twelve months in the first column. Now enter some values into B1 and C1. Select those two cells, and double-click the fill handle. This fills automatically the data block B1:C12."
+msgstr ""
+
+#. F4V8E
+#: calc_series.xhp
+msgctxt ""
+"calc_series.xhp\n"
+"par_idN10713\n"
+"help.text"
+msgid "Using a Defined Series"
+msgstr ""
+
+#. ezuXW
+#: calc_series.xhp
+msgctxt ""
+"calc_series.xhp\n"
+"par_id3150749\n"
+"help.text"
+msgid "Select the cell range in the sheet that you want to fill."
+msgstr ""
+
+#. ffDtN
+#: calc_series.xhp
+msgctxt ""
+"calc_series.xhp\n"
+"par_id3154754\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">Sheet - Fill Cells - Series</item>."
+msgstr ""
+
+#. egEEL
+#: calc_series.xhp
+msgctxt ""
+"calc_series.xhp\n"
+"par_idN10716\n"
+"help.text"
+msgid "Select the parameters for the series."
+msgstr ""
+
+#. 69YN9
+#: calc_series.xhp
+msgctxt ""
+"calc_series.xhp\n"
+"par_idN10731\n"
+"help.text"
+msgid "If you select a <emph>linear</emph> series, the increment that you enter is <emph>added</emph> to each consecutive number in the series to create the next value."
+msgstr ""
+
+#. pB7bt
+#: calc_series.xhp
+msgctxt ""
+"calc_series.xhp\n"
+"par_idN1073C\n"
+"help.text"
+msgid "If you select a <emph>growth</emph> series, the increment that you enter is <emph>multiplied</emph> by each consecutive number to create the next value."
+msgstr ""
+
+#. gBU3Y
+#: calc_series.xhp
+msgctxt ""
+"calc_series.xhp\n"
+"par_idN10747\n"
+"help.text"
+msgid "If you select a <emph>date</emph> series, the increment that you enter is added to the time unit that you specify."
+msgstr ""
+
+#. NqenD
+#: calc_series.xhp
+msgctxt ""
+"calc_series.xhp\n"
+"par_id3159173\n"
+"help.text"
+msgid "<link href=\"text/shared/optionen/01060400.xhp\" name=\"Sort lists\">Sort lists</link>"
+msgstr ""
+
+#. a8RRo
+#: calc_timevalues.xhp
+msgctxt ""
+"calc_timevalues.xhp\n"
+"tit\n"
+"help.text"
+msgid "Calculating Time Differences"
+msgstr ""
+
+#. XRebj
+#: calc_timevalues.xhp
+msgctxt ""
+"calc_timevalues.xhp\n"
+"bm_id3150769\n"
+"help.text"
+msgid "<bookmark_value>calculating;time differences</bookmark_value><bookmark_value>time differences</bookmark_value>"
+msgstr ""
+
+#. ovkGS
+#: calc_timevalues.xhp
+msgctxt ""
+"calc_timevalues.xhp\n"
+"hd_id3150769\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 ""
+
+#. Cv4BS
+#: calc_timevalues.xhp
+msgctxt ""
+"calc_timevalues.xhp\n"
+"par_id3149263\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 ""
+
+#. bMpBD
+#: calc_timevalues.xhp
+msgctxt ""
+"calc_timevalues.xhp\n"
+"par_id3159153\n"
+"help.text"
+msgid "=(B2<A2)+B2-A2"
+msgstr ""
+
+#. LHdND
+#: calc_timevalues.xhp
+msgctxt ""
+"calc_timevalues.xhp\n"
+"par_id3152598\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 ""
+
+#. LeUFA
+#: calc_timevalues.xhp
+msgctxt ""
+"calc_timevalues.xhp\n"
+"par_id3145271\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 ""
+
+#. M8CyC
+#: calculate.xhp
+msgctxt ""
+"calculate.xhp\n"
+"tit\n"
+"help.text"
+msgid "Calculating in Spreadsheets"
+msgstr ""
+
+#. EZCSv
+#: calculate.xhp
+msgctxt ""
+"calculate.xhp\n"
+"bm_id3150791\n"
+"help.text"
+msgid "<bookmark_value>spreadsheets; calculating</bookmark_value><bookmark_value>calculating; spreadsheets</bookmark_value><bookmark_value>formulas; calculating</bookmark_value>"
+msgstr ""
+
+#. pkjAM
+#: calculate.xhp
+msgctxt ""
+"calculate.xhp\n"
+"hd_id3150791\n"
+"help.text"
+msgid "<variable id=\"calculate\"><link href=\"text/scalc/guide/calculate.xhp\" name=\"Calculating in Spreadsheets\">Calculating in Spreadsheets</link></variable>"
+msgstr ""
+
+#. VKHds
+#: calculate.xhp
+msgctxt ""
+"calculate.xhp\n"
+"par_id3146120\n"
+"help.text"
+msgid "The following is an example of a calculation in $[officename] Calc."
+msgstr ""
+
+#. t4ywa
+#: calculate.xhp
+msgctxt ""
+"calculate.xhp\n"
+"par_id3153951\n"
+"help.text"
+msgid "Click in a cell, and type a number"
+msgstr ""
+
+#. SXuMg
+#: calculate.xhp
+msgctxt ""
+"calculate.xhp\n"
+"par_idN10656\n"
+"help.text"
+msgid "Press Enter."
+msgstr ""
+
+#. LKPEt
+#: calculate.xhp
+msgctxt ""
+"calculate.xhp\n"
+"par_idN1065D\n"
+"help.text"
+msgid "The cursor moves down to the next cell."
+msgstr ""
+
+#. 6FYN9
+#: calculate.xhp
+msgctxt ""
+"calculate.xhp\n"
+"par_id3155064\n"
+"help.text"
+msgid "Enter another number."
+msgstr ""
+
+#. Sz2uF
+#: calculate.xhp
+msgctxt ""
+"calculate.xhp\n"
+"par_idN1066F\n"
+"help.text"
+msgid "Press the Tab key."
+msgstr ""
+
+#. mgYwz
+#: calculate.xhp
+msgctxt ""
+"calculate.xhp\n"
+"par_idN10676\n"
+"help.text"
+msgid "The cursor moves to the right into the next cell."
+msgstr ""
+
+#. eU4sz
+#: calculate.xhp
+msgctxt ""
+"calculate.xhp\n"
+"par_id3154253\n"
+"help.text"
+msgid "Type in a formula, for example, <item type=\"literal\">=A3 * A4 / 100.</item>"
+msgstr ""
+
+#. HNbQB
+#: calculate.xhp
+msgctxt ""
+"calculate.xhp\n"
+"par_idN1068B\n"
+"help.text"
+msgid "Press Enter."
+msgstr ""
+
+#. eesNk
+#: calculate.xhp
+msgctxt ""
+"calculate.xhp\n"
+"par_id3147343\n"
+"help.text"
+msgid "The result of the formula appears in the cell. If you want, you can edit the formula in the input line of the Formula bar."
+msgstr ""
+
+#. FgPuF
+#: calculate.xhp
+msgctxt ""
+"calculate.xhp\n"
+"par_id3155378\n"
+"help.text"
+msgid "When you edit a formula, the new result is calculated automatically."
+msgstr ""
+
+#. btgfD
+#: cell_enter.xhp
+msgctxt ""
+"cell_enter.xhp\n"
+"tit\n"
+"help.text"
+msgid "Entering Values"
+msgstr ""
+
+#. 2aSdr
+#: cell_enter.xhp
+msgctxt ""
+"cell_enter.xhp\n"
+"bm_id3150868\n"
+"help.text"
+msgid "<bookmark_value>values; inserting in multiple cells</bookmark_value> <bookmark_value>inserting;values</bookmark_value> <bookmark_value>cell ranges;selecting for data entries</bookmark_value> <bookmark_value>areas, see also cell ranges</bookmark_value>"
+msgstr ""
+
+#. CYPkV
+#: cell_enter.xhp
+msgctxt ""
+"cell_enter.xhp\n"
+"hd_id3405255\n"
+"help.text"
+msgid "<variable id=\"cell_enter\"><link href=\"text/scalc/guide/cell_enter.xhp\">Entering Values</link></variable>"
+msgstr ""
+
+#. NwDEk
+#: cell_enter.xhp
+msgctxt ""
+"cell_enter.xhp\n"
+"par_id7147129\n"
+"help.text"
+msgid "Calc can simplify entering data and values into multiple cells. You can change some settings to conform to your preferences."
+msgstr ""
+
+#. VH6v5
+#: cell_enter.xhp
+msgctxt ""
+"cell_enter.xhp\n"
+"hd_id5621509\n"
+"help.text"
+msgid "To Enter Values Into a Range of Cells Manually"
+msgstr ""
+
+#. AADVT
+#: cell_enter.xhp
+msgctxt ""
+"cell_enter.xhp\n"
+"par_id8200018\n"
+"help.text"
+msgid "There are two features that assist you when you enter a block of data manually."
+msgstr ""
+
+#. ETCVR
+#: cell_enter.xhp
+msgctxt ""
+"cell_enter.xhp\n"
+"hd_id1867427\n"
+"help.text"
+msgid "Area Detection for New Rows"
+msgstr ""
+
+#. XWCWz
+#: cell_enter.xhp
+msgctxt ""
+"cell_enter.xhp\n"
+"par_id7908871\n"
+"help.text"
+msgid "In the row below a heading row, you can advance from one cell to the next with the Tab key. After you enter the value into the last cell in the current row, press Enter. Calc positions the cursor below the first cell of the current block."
+msgstr ""
+
+#. xNqdW
+#: cell_enter.xhp
+msgctxt ""
+"cell_enter.xhp\n"
+"par_id6196783\n"
+"help.text"
+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 ""
+
+#. ebGHj
+#: cell_enter.xhp
+msgctxt ""
+"cell_enter.xhp\n"
+"par_id8118839\n"
+"help.text"
+msgid "In row 3, press Tab to advance from cell B3 to C3, D3, and E3. Then press Enter to advance to B4."
+msgstr ""
+
+#. CEkiZ
+#: cell_enter.xhp
+msgctxt ""
+"cell_enter.xhp\n"
+"hd_id3583788\n"
+"help.text"
+msgid "Area Selection"
+msgstr ""
+
+#. y55CS
+#: cell_enter.xhp
+msgctxt ""
+"cell_enter.xhp\n"
+"par_id2011780\n"
+"help.text"
+msgid "Select the area where you want to input values. Now you can start to input values from the cursor position in the selected area. Press the <keycode>Tab</keycode> key to advance to the next cell or <keycode>Shift</keycode> + <keycode>Tab</keycode> to move backward. At the edges of the selected area the tab key jumps inside the selected area. You will not leave the selected area."
+msgstr ""
+
+#. HbCtq
+#: cell_enter.xhp
+msgctxt ""
+"cell_enter.xhp\n"
+"par_id7044282\n"
+"help.text"
+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 ""
+
+#. CCcpp
+#: cell_enter.xhp
+msgctxt ""
+"cell_enter.xhp\n"
+"par_id3232520\n"
+"help.text"
+msgid "Select the area from B3 to E7. Now B3 is waiting for your input. Press <keycode>Tab</keycode> to advance to the next cell within the selected area."
+msgstr ""
+
+#. pbEDF
+#: cell_enter.xhp
+msgctxt ""
+"cell_enter.xhp\n"
+"hd_id8950163\n"
+"help.text"
+msgid "To Enter Values to a Range of Cells Automatically"
+msgstr ""
+
+#. APCjZ
+#: cell_enter.xhp
+msgctxt ""
+"cell_enter.xhp\n"
+"par_id633869\n"
+"help.text"
+msgid "See <link href=\"text/scalc/guide/calc_series.xhp\">Automatically Filling in Data Based on Adjacent Cells</link>."
+msgstr ""
+
+#. 5GQRe
+#: cell_protect.xhp
+msgctxt ""
+"cell_protect.xhp\n"
+"tit\n"
+"help.text"
+msgid "Protecting Cells from Changes"
+msgstr ""
+
+#. zC53S
+#: cell_protect.xhp
+msgctxt ""
+"cell_protect.xhp\n"
+"bm_id3146119\n"
+"help.text"
+msgid "<bookmark_value>protecting;cells and sheets</bookmark_value> <bookmark_value>cells; protecting</bookmark_value> <bookmark_value>cell protection; enabling</bookmark_value> <bookmark_value>sheets; protecting</bookmark_value> <bookmark_value>documents; protecting</bookmark_value> <bookmark_value>cells; hiding for printing</bookmark_value> <bookmark_value>changing; sheet protection</bookmark_value> <bookmark_value>hiding;formulas</bookmark_value> <bookmark_value>formulas;hiding</bookmark_value>"
+msgstr ""
+
+#. DDnnF
+#: cell_protect.xhp
+msgctxt ""
+"cell_protect.xhp\n"
+"hd_id3146119\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 ""
+
+#. YzGFz
+#: cell_protect.xhp
+msgctxt ""
+"cell_protect.xhp\n"
+"par_id3153368\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 ""
+
+#. uSBzE
+#: cell_protect.xhp
+msgctxt ""
+"cell_protect.xhp\n"
+"par_id3145261\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 ""
+
+#. w9aAF
+#: cell_protect.xhp
+msgctxt ""
+"cell_protect.xhp\n"
+"par_id3148576\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 ""
+
+#. WUAAG
+#: cell_protect.xhp
+msgctxt ""
+"cell_protect.xhp\n"
+"par_id5974303\n"
+"help.text"
+msgid "These protection features are just switches to prevent accidental action. The features are not intended to provide any secure protection. For example, by exporting a sheet to another file format, a user may be able to surpass the protection features. There is only one secure protection: the password that you can apply when saving an OpenDocument file. A file that has been saved with a password can be opened only with the same password."
+msgstr ""
+
+#. erq7m
+#: cell_protect.xhp
+msgctxt ""
+"cell_protect.xhp\n"
+"par_idN1066B\n"
+"help.text"
+msgid "Select the cells that you want to specify the cell protection options for."
+msgstr ""
+
+#. sPEfR
+#: cell_protect.xhp
+msgctxt ""
+"cell_protect.xhp\n"
+"par_id3149019\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">Format - Cells</item> and click the <emph>Cell Protection</emph> tab."
+msgstr ""
+
+#. 9C4pm
+#: cell_protect.xhp
+msgctxt ""
+"cell_protect.xhp\n"
+"par_id3152985\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 ""
+
+#. vMLiX
+#: cell_protect.xhp
+msgctxt ""
+"cell_protect.xhp\n"
+"par_id31529866655\n"
+"help.text"
+msgid "Uncheck <emph>Protected</emph> to allow the user to change the currently selected cells."
+msgstr ""
+
+#. bTDYj
+#: cell_protect.xhp
+msgctxt ""
+"cell_protect.xhp\n"
+"par_id3152898\n"
+"help.text"
+msgid "Select <emph>Protected</emph> to prevent changes to the contents and the format of a cell."
+msgstr ""
+
+#. NJqDX
+#: cell_protect.xhp
+msgctxt ""
+"cell_protect.xhp\n"
+"par_idN1069A\n"
+"help.text"
+msgid "Select <emph>Hide formula</emph> to hide and to protect formulas from changes."
+msgstr ""
+
+#. GDDez
+#: cell_protect.xhp
+msgctxt ""
+"cell_protect.xhp\n"
+"par_idN106A1\n"
+"help.text"
+msgid "Select <emph>Hide when printing</emph> to hide protected cells in the printed document. The cells are not hidden onscreen."
+msgstr ""
+
+#. tUXjv
+#: cell_protect.xhp
+msgctxt ""
+"cell_protect.xhp\n"
+"par_id3152872\n"
+"help.text"
+msgid "Click <emph>OK</emph>."
+msgstr ""
+
+#. dpMbT
+#: cell_protect.xhp
+msgctxt ""
+"cell_protect.xhp\n"
+"par_id3145362\n"
+"help.text"
+msgid "Apply the protection options."
+msgstr ""
+
+#. yCZeB
+#: cell_protect.xhp
+msgctxt ""
+"cell_protect.xhp\n"
+"par_idN106C0\n"
+"help.text"
+msgid "To protect the cells from being changed, viewed or printed according to your settings in the <emph>Format - Cells</emph> dialog, choose <link href=\"text/scalc/01/06060100.xhp\" name=\"Tools protect sheet\"><menuitem>Tools - Protect Sheet</menuitem></link>."
+msgstr ""
+
+#. doYSo
+#: cell_protect.xhp
+msgctxt ""
+"cell_protect.xhp\n"
+"par_idN106C7\n"
+"help.text"
+msgid "To protect the structure of the document, for example the count, <link href=\"text/scalc/guide/rename_table.xhp\">names</link>, and order of the sheets, from being changed, choose <item type=\"menuitem\">Tools - Protect Spreadsheet Structure</item>."
+msgstr ""
+
+#. R9bEQ
+#: cell_protect.xhp
+msgctxt ""
+"cell_protect.xhp\n"
+"par_idN106CF\n"
+"help.text"
+msgid "(Optional) Enter a password."
+msgstr ""
+
+#. bk6H6
+#: cell_protect.xhp
+msgctxt ""
+"cell_protect.xhp\n"
+"par_idN106D2\n"
+"help.text"
+msgid "If you forget your password, you cannot deactivate the protection. If you only want to protect cells from accidental changes, set the sheet protection, but do not enter a password."
+msgstr ""
+
+#. xEaSJ
+#: cell_protect.xhp
+msgctxt ""
+"cell_protect.xhp\n"
+"par_id3153810\n"
+"help.text"
+msgid "Click <emph>OK</emph>."
+msgstr ""
+
+#. CFXJD
+#: cell_unprotect.xhp
+msgctxt ""
+"cell_unprotect.xhp\n"
+"tit\n"
+"help.text"
+msgid "Unprotecting Cells"
+msgstr ""
+
+#. byazz
+#: cell_unprotect.xhp
+msgctxt ""
+"cell_unprotect.xhp\n"
+"bm_id3153252\n"
+"help.text"
+msgid "<bookmark_value>cell protection; unprotecting</bookmark_value> <bookmark_value>protecting; unprotecting cells</bookmark_value> <bookmark_value>unprotecting cells</bookmark_value>"
+msgstr ""
+
+#. K8ukF
+#: cell_unprotect.xhp
+msgctxt ""
+"cell_unprotect.xhp\n"
+"hd_id3153252\n"
+"help.text"
+msgid "<variable id=\"cell_unprotect\"><link href=\"text/scalc/guide/cell_unprotect.xhp\" name=\"Unprotecting Cells\">Unprotecting Cells</link> </variable>"
+msgstr ""
+
+#. gK5Qh
+#: cell_unprotect.xhp
+msgctxt ""
+"cell_unprotect.xhp\n"
+"par_id3151112\n"
+"help.text"
+msgid "Click the sheet for which you want to cancel the protection."
+msgstr ""
+
+#. EmUnA
+#: cell_unprotect.xhp
+msgctxt ""
+"cell_unprotect.xhp\n"
+"par_id3149656\n"
+"help.text"
+msgid "Select <emph>Tools - Protect Sheet</emph> or <emph>Tools - Protect Spreadsheet Structure</emph> to remove the check mark indicating the protected status."
+msgstr ""
+
+#. 7ya2E
+#: cell_unprotect.xhp
+msgctxt ""
+"cell_unprotect.xhp\n"
+"par_id3145171\n"
+"help.text"
+msgid "If you have assigned a password, enter it in this dialog and click <emph>OK</emph>."
+msgstr ""
+
+#. xYEFE
+#: cell_unprotect.xhp
+msgctxt ""
+"cell_unprotect.xhp\n"
+"par_id3153771\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 ""
+
+#. GT6ix
+#: cellcopy.xhp
+msgctxt ""
+"cellcopy.xhp\n"
+"tit\n"
+"help.text"
+msgid "Only Copy Visible Cells"
+msgstr ""
+
+#. LqS8X
+#: cellcopy.xhp
+msgctxt ""
+"cellcopy.xhp\n"
+"bm_id3150440\n"
+"help.text"
+msgid "<bookmark_value>cells; copying/deleting/formatting/moving</bookmark_value> <bookmark_value>rows;visible and invisible</bookmark_value> <bookmark_value>copying; visible cells only</bookmark_value> <bookmark_value>formatting;visible cells only</bookmark_value> <bookmark_value>moving;visible cells only</bookmark_value> <bookmark_value>deleting;visible cells only</bookmark_value> <bookmark_value>invisible cells</bookmark_value> <bookmark_value>filters;copying visible cells only</bookmark_value> <bookmark_value>hidden cells</bookmark_value>"
+msgstr ""
+
+#. jdYeD
+#: cellcopy.xhp
+msgctxt ""
+"cellcopy.xhp\n"
+"hd_id3150440\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 ""
+
+#. eAskd
+#: cellcopy.xhp
+msgctxt ""
+"cellcopy.xhp\n"
+"par_id3148577\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 ""
+
+#. uA66B
+#: cellcopy.xhp
+msgctxt ""
+"cellcopy.xhp\n"
+"par_id3154729\n"
+"help.text"
+msgid "$[officename] behavior depends on how the cells were made invisible, by a filter or manually."
+msgstr ""
+
+#. Y7BEN
+#: cellcopy.xhp
+msgctxt ""
+"cellcopy.xhp\n"
+"par_id3155603\n"
+"help.text"
+msgid "Method and Action"
+msgstr ""
+
+#. Bt5NA
+#: cellcopy.xhp
+msgctxt ""
+"cellcopy.xhp\n"
+"par_id3150751\n"
+"help.text"
+msgid "Result"
+msgstr ""
+
+#. 6fWoa
+#: cellcopy.xhp
+msgctxt ""
+"cellcopy.xhp\n"
+"par_id3149018\n"
+"help.text"
+msgid "Cells were filtered by AutoFilters, standard filters or advanced filters."
+msgstr ""
+
+#. M4Edv
+#: cellcopy.xhp
+msgctxt ""
+"cellcopy.xhp\n"
+"par_id3150044\n"
+"help.text"
+msgid "Copy, delete, move, or format a selection of currently visible cells."
+msgstr ""
+
+#. fV6ro
+#: cellcopy.xhp
+msgctxt ""
+"cellcopy.xhp\n"
+"par_id3146918\n"
+"help.text"
+msgid "Only the visible cells of the selection are copied, deleted, moved, or formatted."
+msgstr ""
+
+#. 2mDPY
+#: cellcopy.xhp
+msgctxt ""
+"cellcopy.xhp\n"
+"par_id3166427\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 ""
+
+#. hCVpN
+#: cellcopy.xhp
+msgctxt ""
+"cellcopy.xhp\n"
+"par_id3152990\n"
+"help.text"
+msgid "Copy, delete, move, or format a selection of currently visible cells."
+msgstr ""
+
+#. VccAs
+#: cellcopy.xhp
+msgctxt ""
+"cellcopy.xhp\n"
+"par_id3154371\n"
+"help.text"
+msgid "By default, all cells of the selection, including the hidden cells, are copied, deleted, moved, or formatted. Restrict the selection to visible rows choosing <menuitem>Edit - Select - Select Visible Rows Only</menuitem> or to visible columns choosing <menuitem>Edit - Select - Select Visible Columns Only</menuitem>."
+msgstr ""
+
+#. rBtUY
+#: cellreference_dragdrop.xhp
+msgctxt ""
+"cellreference_dragdrop.xhp\n"
+"tit\n"
+"help.text"
+msgid "Referencing Cells by Drag-and-Drop"
+msgstr ""
+
+#. DN7Zz
+#: cellreference_dragdrop.xhp
+msgctxt ""
+"cellreference_dragdrop.xhp\n"
+"bm_id3154686\n"
+"help.text"
+msgid "<bookmark_value>drag and drop; referencing cells</bookmark_value> <bookmark_value>cells; referencing by drag and drop </bookmark_value> <bookmark_value>references;inserting by drag and drop</bookmark_value> <bookmark_value>inserting;references, by drag and drop</bookmark_value>"
+msgstr ""
+
+#. sr78D
+#: cellreference_dragdrop.xhp
+msgctxt ""
+"cellreference_dragdrop.xhp\n"
+"hd_id3154686\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 ""
+
+#. ANUwC
+#: cellreference_dragdrop.xhp
+msgctxt ""
+"cellreference_dragdrop.xhp\n"
+"par_id3156444\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 ""
+
+#. eV8oB
+#: cellreference_dragdrop.xhp
+msgctxt ""
+"cellreference_dragdrop.xhp\n"
+"par_id3152576\n"
+"help.text"
+msgid "Open the document that contains the source cells."
+msgstr ""
+
+#. SFWrp
+#: cellreference_dragdrop.xhp
+msgctxt ""
+"cellreference_dragdrop.xhp\n"
+"par_id3154011\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 ""
+
+#. UMVry
+#: cellreference_dragdrop.xhp
+msgctxt ""
+"cellreference_dragdrop.xhp\n"
+"par_id3151073\n"
+"help.text"
+msgid "Open the sheet in which you want to insert something."
+msgstr ""
+
+#. G9pdw
+#: cellreference_dragdrop.xhp
+msgctxt ""
+"cellreference_dragdrop.xhp\n"
+"par_id3154732\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 ""
+
+#. 36bq3
+#: cellreference_dragdrop.xhp
+msgctxt ""
+"cellreference_dragdrop.xhp\n"
+"par_id3150752\n"
+"help.text"
+msgid "In the Navigator, the source file object appears under \"Range names\"."
+msgstr ""
+
+#. FAErG
+#: cellreference_dragdrop.xhp
+msgctxt ""
+"cellreference_dragdrop.xhp\n"
+"par_id3154754\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 ""
+
+#. Thq7N
+#: cellreference_dragdrop.xhp
+msgctxt ""
+"cellreference_dragdrop.xhp\n"
+"par_id3154256\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 ""
+
+#. GK9kZ
+#: cellreference_dragdrop.xhp
+msgctxt ""
+"cellreference_dragdrop.xhp\n"
+"par_id3149565\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 ""
+
+#. ANNjW
+#: cellreferences.xhp
+msgctxt ""
+"cellreferences.xhp\n"
+"tit\n"
+"help.text"
+msgid "Referencing a Cell in Another Document"
+msgstr ""
+
+#. DLuhq
+#: cellreferences.xhp
+msgctxt ""
+"cellreferences.xhp\n"
+"bm_id3147436\n"
+"help.text"
+msgid "<bookmark_value>sheet references</bookmark_value> <bookmark_value>references; to cells in other sheets/documents</bookmark_value> <bookmark_value>cells; operating in another document</bookmark_value> <bookmark_value>documents;references</bookmark_value>"
+msgstr ""
+
+#. CEHES
+#: cellreferences.xhp
+msgctxt ""
+"cellreferences.xhp\n"
+"hd_id3147436\n"
+"help.text"
+msgid "<variable id=\"cellreferences\"><link href=\"text/scalc/guide/cellreferences.xhp\" name=\"Referencing Other Sheets\">Referencing Other Sheets</link></variable>"
+msgstr ""
+
+#. S3C6m
+#: cellreferences.xhp
+msgctxt ""
+"cellreferences.xhp\n"
+"par_id9663075\n"
+"help.text"
+msgid "In a sheet cell you can show a reference to a cell in another sheet."
+msgstr ""
+
+#. guASx
+#: cellreferences.xhp
+msgctxt ""
+"cellreferences.xhp\n"
+"par_id1879329\n"
+"help.text"
+msgid "In the same way, a reference can also be made to a cell from another document provided that this document has already been saved as a file."
+msgstr ""
+
+#. miL8J
+#: cellreferences.xhp
+msgctxt ""
+"cellreferences.xhp\n"
+"hd_id7122409\n"
+"help.text"
+msgid "To Reference a Cell in the Same Document"
+msgstr ""
+
+#. EruAD
+#: cellreferences.xhp
+msgctxt ""
+"cellreferences.xhp\n"
+"par_id2078005\n"
+"help.text"
+msgid "Open a new, empty spreadsheet. By default, it has only a single sheet named Sheet1. Add a second sheet clicking on <emph>+</emph> button to the left of the sheet tab in the bottom (it will be named Sheet2 by default)."
+msgstr ""
+
+#. paXnm
+#: cellreferences.xhp
+msgctxt ""
+"cellreferences.xhp\n"
+"par_id4943693\n"
+"help.text"
+msgid "By way of example, enter the following formula in cell A1 of Sheet1:"
+msgstr ""
+
+#. 2HPD8
+#: cellreferences.xhp
+msgctxt ""
+"cellreferences.xhp\n"
+"par_id9064302\n"
+"help.text"
+msgid "<item type=\"literal\">=Sheet2.A1</item>"
+msgstr ""
+
+#. zwUqn
+#: cellreferences.xhp
+msgctxt ""
+"cellreferences.xhp\n"
+"par_id7609790\n"
+"help.text"
+msgid "Click the <emph>Sheet 2</emph> tab at the bottom of the spreadsheet. Set the cursor in cell A1 there and enter text or a number."
+msgstr ""
+
+#. PYRuC
+#: cellreferences.xhp
+msgctxt ""
+"cellreferences.xhp\n"
+"par_id809961\n"
+"help.text"
+msgid "If you switch back to Sheet1, you will see the same content in cell A1 there. If the contents of Sheet2.A1 change, then the contents of Sheet1.A1 also change."
+msgstr ""
+
+#. Epbaf
+#: cellreferences.xhp
+msgctxt ""
+"cellreferences.xhp\n"
+"par_id3147338\n"
+"help.text"
+msgid "When referencing a sheet with name containing spaces, use single quotes around the name: <item type=\"literal\">='Sheet with spaces in name'.A1</item>"
+msgstr ""
+
+#. 7thQw
+#: cellreferences.xhp
+msgctxt ""
+"cellreferences.xhp\n"
+"par_id3147383\n"
+"help.text"
+msgid "The example uses Calc formula syntax. It is also possible to use Excel A1 or R1C1 formula syntax; this is configured on <link href=\"text/shared/optionen/01060900.xhp\">Formula options page</link>."
+msgstr ""
+
+#. mK8vG
+#: cellreferences.xhp
+msgctxt ""
+"cellreferences.xhp\n"
+"hd_id9209570\n"
+"help.text"
+msgid "To Reference a Cell in Another Document"
+msgstr ""
+
+#. hRAmo
+#: cellreferences.xhp
+msgctxt ""
+"cellreferences.xhp\n"
+"par_id5949278\n"
+"help.text"
+msgid "Choose <emph>File - Open</emph>, to load an existing spreadsheet document."
+msgstr ""
+
+#. XywAr
+#: cellreferences.xhp
+msgctxt ""
+"cellreferences.xhp\n"
+"par_id8001953\n"
+"help.text"
+msgid "Choose <emph>File - New</emph>, to open a new spreadsheet document. Set the cursor in the cell where you want to insert the external data and enter an equals sign to indicate that you want to begin a formula."
+msgstr ""
+
+#. BrDJf
+#: cellreferences.xhp
+msgctxt ""
+"cellreferences.xhp\n"
+"par_id8571123\n"
+"help.text"
+msgid "Now switch to the document you have just loaded. Click the cell with the data that you want to insert in the new document."
+msgstr ""
+
+#. rCxaG
+#: cellreferences.xhp
+msgctxt ""
+"cellreferences.xhp\n"
+"par_id8261665\n"
+"help.text"
+msgid "Switch back to the new spreadsheet. In the input line you will now see how $[officename] Calc has added the reference to the formula for you."
+msgstr ""
+
+#. VyHdU
+#: cellreferences.xhp
+msgctxt ""
+"cellreferences.xhp\n"
+"par_id5888241\n"
+"help.text"
+msgid "The reference to a cell of another document contains the name of the other document in single inverted commas, then a hash #, then the name of the sheet of the other document, followed by a point and the name of the cell."
+msgstr ""
+
+#. ACCDQ
+#: cellreferences.xhp
+msgctxt ""
+"cellreferences.xhp\n"
+"par_id7697683\n"
+"help.text"
+msgid "Confirm the formula by clicking the green check mark."
+msgstr ""
+
+#. Vp5Cb
+#: cellreferences.xhp
+msgctxt ""
+"cellreferences.xhp\n"
+"par_id7099826\n"
+"help.text"
+msgid "If you drag the box in the lower right corner of the active cell to select a range of cells, $[officename] automatically inserts the corresponding references in the adjacent cells. As a result, the sheet name is preceded with a \"$\" sign to designate it as an <link href=\"text/scalc/guide/relativ_absolut_ref.xhp\">absolute reference</link>."
+msgstr ""
+
+#. hrgGP
+#: cellreferences.xhp
+msgctxt ""
+"cellreferences.xhp\n"
+"par_id674459\n"
+"help.text"
+msgid "If you examine the name of the other document in this formula, you will notice that it is written as a <link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link>. This means that you can also enter a URL from the Internet."
+msgstr ""
+
+#. ABuMQ
+#: cellreferences_url.xhp
+msgctxt ""
+"cellreferences_url.xhp\n"
+"tit\n"
+"help.text"
+msgid "References to Other Sheets and Referencing URLs"
+msgstr ""
+
+#. 7ELAq
+#: cellreferences_url.xhp
+msgctxt ""
+"cellreferences_url.xhp\n"
+"bm_id3150441\n"
+"help.text"
+msgid "<bookmark_value>HTML; in sheet cells</bookmark_value><bookmark_value>references; URL in cells</bookmark_value><bookmark_value>cells; Internet references</bookmark_value><bookmark_value>URL; in Calc</bookmark_value>"
+msgstr ""
+
+#. uWXco
+#: cellreferences_url.xhp
+msgctxt ""
+"cellreferences_url.xhp\n"
+"hd_id3150441\n"
+"help.text"
+msgid "<variable id=\"cellreferences_url\"><link href=\"text/scalc/guide/cellreferences_url.xhp\" name=\"Referencing URLs\">Referencing URLs</link></variable>"
+msgstr ""
+
+#. VHDGU
+#: cellreferences_url.xhp
+msgctxt ""
+"cellreferences_url.xhp\n"
+"par_id1955626\n"
+"help.text"
+msgid "For example, if you found an Internet page containing current stock exchange information in spreadsheet cells, you can load this page in $[officename] Calc by using the following procedure:"
+msgstr ""
+
+#. 2MWuc
+#: cellreferences_url.xhp
+msgctxt ""
+"cellreferences_url.xhp\n"
+"par_id3152993\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 ""
+
+#. 5JKBf
+#: cellreferences_url.xhp
+msgctxt ""
+"cellreferences_url.xhp\n"
+"par_id3145384\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">Sheet - External Links</item>. The <link href=\"text/scalc/01/04090000.xhp\" name=\"External Data\"><item type=\"menuitem\">External Data</item></link> dialog appears."
+msgstr ""
+
+#. EQzxX
+#: cellreferences_url.xhp
+msgctxt ""
+"cellreferences_url.xhp\n"
+"par_id3152892\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 ""
+
+#. ZVqcc
+#: cellreferences_url.xhp
+msgctxt ""
+"cellreferences_url.xhp\n"
+"par_id3153068\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 ""
+
+#. xzgJv
+#: cellreferences_url.xhp
+msgctxt ""
+"cellreferences_url.xhp\n"
+"par_id3153914\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 ""
+
+#. BQaFB
+#: cellreferences_url.xhp
+msgctxt ""
+"cellreferences_url.xhp\n"
+"par_id3157979\n"
+"help.text"
+msgid "The contents will be inserted as a link in the $[officename] Calc document."
+msgstr ""
+
+#. LAC7R
+#: cellreferences_url.xhp
+msgctxt ""
+"cellreferences_url.xhp\n"
+"par_id3144768\n"
+"help.text"
+msgid "Save your spreadsheet. When you open it again later, $[officename] Calc will update the linked cells following an inquiry."
+msgstr ""
+
+#. qJWx2
+#: cellreferences_url.xhp
+msgctxt ""
+"cellreferences_url.xhp\n"
+"par_id3159204\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 ""
+
+#. 4DFzJ
+#: cellstyle_by_formula.xhp
+msgctxt ""
+"cellstyle_by_formula.xhp\n"
+"tit\n"
+"help.text"
+msgid "Assigning Formats by Formula"
+msgstr ""
+
+#. ewC9e
+#: cellstyle_by_formula.xhp
+msgctxt ""
+"cellstyle_by_formula.xhp\n"
+"bm_id3145673\n"
+"help.text"
+msgid "<bookmark_value>formats; assigning by formulas</bookmark_value> <bookmark_value>cell formats; assigning by formulas</bookmark_value> <bookmark_value>STYLE function example</bookmark_value> <bookmark_value>cell styles;assigning by formulas</bookmark_value> <bookmark_value>formulas;assigning cell formats</bookmark_value>"
+msgstr ""
+
+#. USRGE
+#: cellstyle_by_formula.xhp
+msgctxt ""
+"cellstyle_by_formula.xhp\n"
+"hd_id3145673\n"
+"help.text"
+msgid "<variable id=\"cellstyle_by_formula\"><link href=\"text/scalc/guide/cellstyle_by_formula.xhp\" name=\"Assigning Formats by Formula\">Assigning Formats by Formula</link></variable>"
+msgstr ""
+
+#. EzSnh
+#: cellstyle_by_formula.xhp
+msgctxt ""
+"cellstyle_by_formula.xhp\n"
+"par_id3150275\n"
+"help.text"
+msgid "The STYLE() function can be added to an existing formula in a cell. For example, together with the CURRENT function, you can color a cell depending on its value. The formula =...+STYLE(IF(CURRENT()>3; \"Red\"; \"Green\")) applies the cell style \"Red\" to cells if the value is greater than 3, otherwise the cell style \"Green\" is applied."
+msgstr ""
+
+#. bMcgv
+#: cellstyle_by_formula.xhp
+msgctxt ""
+"cellstyle_by_formula.xhp\n"
+"par_id3151385\n"
+"help.text"
+msgid "If you would like to apply a formula to all cells in a selected area, you can use the <item type=\"menuitem\">Find & Replace</item> dialog."
+msgstr ""
+
+#. qAH7F
+#: cellstyle_by_formula.xhp
+msgctxt ""
+"cellstyle_by_formula.xhp\n"
+"par_id3149456\n"
+"help.text"
+msgid "Select all the desired cells."
+msgstr ""
+
+#. FyUDd
+#: cellstyle_by_formula.xhp
+msgctxt ""
+"cellstyle_by_formula.xhp\n"
+"par_id3148797\n"
+"help.text"
+msgid "Select the menu command <emph>Edit - Find & Replace</emph>."
+msgstr ""
+
+#. STxmA
+#: cellstyle_by_formula.xhp
+msgctxt ""
+"cellstyle_by_formula.xhp\n"
+"par_id3150767\n"
+"help.text"
+msgid "For the <item type=\"menuitem\">Find</item> term, enter: .<item type=\"literal\">*</item>"
+msgstr ""
+
+#. EN8wF
+#: cellstyle_by_formula.xhp
+msgctxt ""
+"cellstyle_by_formula.xhp\n"
+"par_id3153770\n"
+"help.text"
+msgid "\".*\" is a regular expression that designates the contents of the current cell."
+msgstr ""
+
+#. r8m3j
+#: cellstyle_by_formula.xhp
+msgctxt ""
+"cellstyle_by_formula.xhp\n"
+"par_id3153143\n"
+"help.text"
+msgid "Enter the following formula in the <item type=\"menuitem\">Replace</item> field: <item type=\"literal\">=&+STYLE(IF(CURRENT()>3;\"Red\";\"Green\"))</item>"
+msgstr ""
+
+#. prHDb
+#: cellstyle_by_formula.xhp
+msgctxt ""
+"cellstyle_by_formula.xhp\n"
+"par_id3146975\n"
+"help.text"
+msgid "The \"&\" symbol designates the current contents of the <emph>Find</emph> field. The line must begin with an equal sign, since it is a formula. It is assumed that the cell styles \"Red\" and \"Green\" already exist."
+msgstr ""
+
+#. 4AgNk
+#: cellstyle_by_formula.xhp
+msgctxt ""
+"cellstyle_by_formula.xhp\n"
+"par_id3149262\n"
+"help.text"
+msgid "Mark the fields <link href=\"text/shared/01/02100000.xhp\" name=\"Regular expressions\"><emph>Regular expressions</emph></link> and <emph>Current selection only</emph>. Click <emph>Find All</emph>."
+msgstr ""
+
+#. A3CBV
+#: cellstyle_by_formula.xhp
+msgctxt ""
+"cellstyle_by_formula.xhp\n"
+"par_id3144767\n"
+"help.text"
+msgid "All cells with contents that were included in the selection are now highlighted."
+msgstr ""
+
+#. CxKWs
+#: cellstyle_by_formula.xhp
+msgctxt ""
+"cellstyle_by_formula.xhp\n"
+"par_id3147127\n"
+"help.text"
+msgid "Click <item type=\"menuitem\">Replace all</item>."
+msgstr ""
+
+#. smBjq
+#: cellstyle_conditional.xhp
+msgctxt ""
+"cellstyle_conditional.xhp\n"
+"tit\n"
+"help.text"
+msgid "Applying Conditional Formatting"
+msgstr ""
+
+#. 3TV3y
+#: cellstyle_conditional.xhp
+msgctxt ""
+"cellstyle_conditional.xhp\n"
+"bm_id3149263\n"
+"help.text"
+msgid "<bookmark_value>conditional formatting; cells</bookmark_value> <bookmark_value>cells; conditional formatting</bookmark_value> <bookmark_value>formatting; conditional formatting</bookmark_value> <bookmark_value>styles;conditional styles</bookmark_value> <bookmark_value>cell formats; conditional</bookmark_value> <bookmark_value>random numbers;examples</bookmark_value> <bookmark_value>cell styles; copying</bookmark_value> <bookmark_value>copying; cell styles</bookmark_value> <bookmark_value>tables; copying cell styles</bookmark_value>"
+msgstr ""
+
+#. 4jA2B
+#: cellstyle_conditional.xhp
+msgctxt ""
+"cellstyle_conditional.xhp\n"
+"hd_id3149263\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 ""
+
+#. 3Feon
+#: cellstyle_conditional.xhp
+msgctxt ""
+"cellstyle_conditional.xhp\n"
+"par_id3159156\n"
+"help.text"
+msgid "Using the menu command <emph>Format - Conditional - Condition</emph>, the dialog allows you to define conditions per cell, which must be met in order for the selected cells to have a particular format."
+msgstr ""
+
+#. SbhJy
+#: cellstyle_conditional.xhp
+msgctxt ""
+"cellstyle_conditional.xhp\n"
+"par_id8039796\n"
+"help.text"
+msgid "To apply conditional formatting, AutoCalculate must be enabled. Choose <emph>Data - Calculate - AutoCalculate</emph> (you see a check mark next to the command when AutoCalculate is enabled)."
+msgstr ""
+
+#. Yy9Z2
+#: cellstyle_conditional.xhp
+msgctxt ""
+"cellstyle_conditional.xhp\n"
+"par_id3154944\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 ""
+
+#. Zn2cD
+#: cellstyle_conditional.xhp
+msgctxt ""
+"cellstyle_conditional.xhp\n"
+"hd_id4480727\n"
+"help.text"
+msgid "To Define the Conditions"
+msgstr ""
+
+#. GbyDp
+#: cellstyle_conditional.xhp
+msgctxt ""
+"cellstyle_conditional.xhp\n"
+"par_id3154490\n"
+"help.text"
+msgid "Select the cells to which you want to apply a conditional style."
+msgstr ""
+
+#. oEDHp
+#: cellstyle_conditional.xhp
+msgctxt ""
+"cellstyle_conditional.xhp\n"
+"par_id3155603\n"
+"help.text"
+msgid "Choose <emph>Format - Conditional - Condition</emph>."
+msgstr ""
+
+#. nFqJG
+#: cellstyle_conditional.xhp
+msgctxt ""
+"cellstyle_conditional.xhp\n"
+"par_id3146969\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 ""
+
+#. xDZ66
+#: cellstyle_conditional.xhp
+msgctxt ""
+"cellstyle_conditional.xhp\n"
+"hd_id3155766\n"
+"help.text"
+msgid "Example of Conditional Formatting: Highlighting Totals Above/Under the Average Value"
+msgstr ""
+
+#. U3jUP
+#: cellstyle_conditional.xhp
+msgctxt ""
+"cellstyle_conditional.xhp\n"
+"hd_id4341868\n"
+"help.text"
+msgid "Step1: Generate Number Values"
+msgstr ""
+
+#. 5TVr9
+#: cellstyle_conditional.xhp
+msgctxt ""
+"cellstyle_conditional.xhp\n"
+"par_id3150043\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 ""
+
+#. 9zJa4
+#: cellstyle_conditional.xhp
+msgctxt ""
+"cellstyle_conditional.xhp\n"
+"par_id3155337\n"
+"help.text"
+msgid "First of all, create a table in which a few different values occur. For your test you can create tables with any random numbers:"
+msgstr ""
+
+#. A66qh
+#: cellstyle_conditional.xhp
+msgctxt ""
+"cellstyle_conditional.xhp\n"
+"par_id3149565\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 ""
+
+#. rCrEf
+#: cellstyle_conditional.xhp
+msgctxt ""
+"cellstyle_conditional.xhp\n"
+"par_id3149258\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 ""
+
+#. Tm6MA
+#: cellstyle_conditional.xhp
+msgctxt ""
+"cellstyle_conditional.xhp\n"
+"par_id3159236\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 ""
+
+#. i3CTm
+#: cellstyle_conditional.xhp
+msgctxt ""
+"cellstyle_conditional.xhp\n"
+"hd_id3149211\n"
+"help.text"
+msgid "Step 2: Define Cell Styles"
+msgstr ""
+
+#. sr6WY
+#: cellstyle_conditional.xhp
+msgctxt ""
+"cellstyle_conditional.xhp\n"
+"par_id3154659\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 window is visible before proceeding."
+msgstr ""
+
+#. CVM3G
+#: cellstyle_conditional.xhp
+msgctxt ""
+"cellstyle_conditional.xhp\n"
+"par_id3150883\n"
+"help.text"
+msgid "Click in a blank cell and select the command <emph>Format Cells</emph> in the context menu."
+msgstr ""
+
+#. JZ7gV
+#: cellstyle_conditional.xhp
+msgctxt ""
+"cellstyle_conditional.xhp\n"
+"par_id3155529\n"
+"help.text"
+msgid "In the <emph>Format Cells</emph> dialog on the <emph>Background</emph> tab, click the <emph>Color</emph> button and then select a background color. Click <emph>OK</emph>."
+msgstr ""
+
+#. AwUDA
+#: cellstyle_conditional.xhp
+msgctxt ""
+"cellstyle_conditional.xhp\n"
+"par_id3154484\n"
+"help.text"
+msgid "In the Styles deck of the Sidebar, click the <emph>New Style from Selection</emph> icon. Enter the name of the new style. For this example, name the style \"Above\"."
+msgstr ""
+
+#. 4bRZa
+#: cellstyle_conditional.xhp
+msgctxt ""
+"cellstyle_conditional.xhp\n"
+"par_id3152889\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 ""
+
+#. x3rxG
+#: cellstyle_conditional.xhp
+msgctxt ""
+"cellstyle_conditional.xhp\n"
+"hd_id3148704\n"
+"help.text"
+msgid "Step 3: Calculate Average"
+msgstr ""
+
+#. f5sxG
+#: cellstyle_conditional.xhp
+msgctxt ""
+"cellstyle_conditional.xhp\n"
+"par_id3148837\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 ""
+
+#. GhHpd
+#: cellstyle_conditional.xhp
+msgctxt ""
+"cellstyle_conditional.xhp\n"
+"par_id3144768\n"
+"help.text"
+msgid "Set the cursor in a blank cell, for example, J14, and choose <emph>Insert - Function</emph>."
+msgstr ""
+
+#. DGtFG
+#: cellstyle_conditional.xhp
+msgctxt ""
+"cellstyle_conditional.xhp\n"
+"par_id3156016\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#shrink_maximize\" name=\"Shrink or Maximize\"><item type=\"menuitem\">Shrink</item></link> icon."
+msgstr ""
+
+#. YEqsh
+#: cellstyle_conditional.xhp
+msgctxt ""
+"cellstyle_conditional.xhp\n"
+"par_id3153246\n"
+"help.text"
+msgid "Close the Function Wizard with <item type=\"menuitem\">OK</item>."
+msgstr ""
+
+#. 75WFf
+#: cellstyle_conditional.xhp
+msgctxt ""
+"cellstyle_conditional.xhp\n"
+"hd_id3149898\n"
+"help.text"
+msgid "Step 4: Apply Cell Styles"
+msgstr ""
+
+#. AA6JP
+#: cellstyle_conditional.xhp
+msgctxt ""
+"cellstyle_conditional.xhp\n"
+"par_id3149126\n"
+"help.text"
+msgid "Now you can apply the conditional formatting to the sheet:"
+msgstr ""
+
+#. 7YuzB
+#: cellstyle_conditional.xhp
+msgctxt ""
+"cellstyle_conditional.xhp\n"
+"par_id3150049\n"
+"help.text"
+msgid "Select all cells with the random numbers."
+msgstr ""
+
+#. p7dEG
+#: cellstyle_conditional.xhp
+msgctxt ""
+"cellstyle_conditional.xhp\n"
+"par_id3153801\n"
+"help.text"
+msgid "Choose the <emph>Format - Conditional - Condition</emph> command to open the corresponding dialog."
+msgstr ""
+
+#. oaUQo
+#: cellstyle_conditional.xhp
+msgctxt ""
+"cellstyle_conditional.xhp\n"
+"par_id3153013\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 ""
+
+#. p9FR7
+#: cellstyle_conditional.xhp
+msgctxt ""
+"cellstyle_conditional.xhp\n"
+"hd_id3155761\n"
+"help.text"
+msgid "Step 5: Copy Cell Style"
+msgstr ""
+
+#. GBgrB
+#: cellstyle_conditional.xhp
+msgctxt ""
+"cellstyle_conditional.xhp\n"
+"par_id3145320\n"
+"help.text"
+msgid "To apply the conditional formatting to other cells later:"
+msgstr ""
+
+#. soRTt
+#: cellstyle_conditional.xhp
+msgctxt ""
+"cellstyle_conditional.xhp\n"
+"par_id3153074\n"
+"help.text"
+msgid "Click one of the cells that has been assigned conditional formatting."
+msgstr ""
+
+#. 35S7X
+#: cellstyle_conditional.xhp
+msgctxt ""
+"cellstyle_conditional.xhp\n"
+"par_id3149051\n"
+"help.text"
+msgid "Copy the cell to the clipboard."
+msgstr ""
+
+#. ogFEX
+#: cellstyle_conditional.xhp
+msgctxt ""
+"cellstyle_conditional.xhp\n"
+"par_id3150436\n"
+"help.text"
+msgid "Select the cells that are to receive this same formatting."
+msgstr ""
+
+#. zDCnK
+#: cellstyle_conditional.xhp
+msgctxt ""
+"cellstyle_conditional.xhp\n"
+"par_id3147298\n"
+"help.text"
+msgid "Choose <emph>Edit - Paste Special - Paste Special</emph>. The <emph>Paste Special</emph> dialog appears."
+msgstr ""
+
+#. KEnNM
+#: cellstyle_conditional.xhp
+msgctxt ""
+"cellstyle_conditional.xhp\n"
+"par_id3166465\n"
+"help.text"
+msgid "In the <emph>Paste</emph> area, check only the <emph>Formats</emph> box. All other boxes must be unchecked. Click <emph>OK</emph>. Or you can click the <emph>Formats only</emph> button instead."
+msgstr ""
+
+#. YMDKA
+#: cellstyle_conditional.xhp
+msgctxt ""
+"cellstyle_conditional.xhp\n"
+"par_id3159123\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/05120000.xhp\" name=\"Format - Conditional formatting\">Format - Conditional - Condition</link>"
+msgstr ""
+
+#. HFoKB
+#: cellstyle_minusvalue.xhp
+msgctxt ""
+"cellstyle_minusvalue.xhp\n"
+"tit\n"
+"help.text"
+msgid "Highlighting Negative Numbers"
+msgstr ""
+
+#. 9Zqdi
+#: cellstyle_minusvalue.xhp
+msgctxt ""
+"cellstyle_minusvalue.xhp\n"
+"bm_id3147434\n"
+"help.text"
+msgid "<bookmark_value>negative numbers</bookmark_value> <bookmark_value>numbers; highlighting negative numbers</bookmark_value> <bookmark_value>highlighting;negative numbers</bookmark_value> <bookmark_value>colors;negative numbers</bookmark_value> <bookmark_value>number formats;colors for negative numbers</bookmark_value>"
+msgstr ""
+
+#. XwR9x
+#: cellstyle_minusvalue.xhp
+msgctxt ""
+"cellstyle_minusvalue.xhp\n"
+"hd_id3147434\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 ""
+
+#. YGxpk
+#: cellstyle_minusvalue.xhp
+msgctxt ""
+"cellstyle_minusvalue.xhp\n"
+"par_id3153878\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 ""
+
+#. ZFJHU
+#: cellstyle_minusvalue.xhp
+msgctxt ""
+"cellstyle_minusvalue.xhp\n"
+"par_id3155600\n"
+"help.text"
+msgid "Select the cells and choose <emph>Format - Cells</emph>."
+msgstr ""
+
+#. tYEZ3
+#: cellstyle_minusvalue.xhp
+msgctxt ""
+"cellstyle_minusvalue.xhp\n"
+"par_id3146969\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 ""
+
+#. 23n86
+#: cellstyle_minusvalue.xhp
+msgctxt ""
+"cellstyle_minusvalue.xhp\n"
+"par_id3145640\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 ""
+
+#. 5vG69
+#: change_image_anchor.xhp
+msgctxt ""
+"change_image_anchor.xhp\n"
+"image_anc\n"
+"help.text"
+msgid "Changing Image Anchor in Calc"
+msgstr ""
+
+#. Vwqvb
+#: change_image_anchor.xhp
+msgctxt ""
+"change_image_anchor.xhp\n"
+"bm_id471607970579914\n"
+"help.text"
+msgid "<bookmark_value>anchor;image</bookmark_value><bookmark_value>image anchor;in Calc</bookmark_value><bookmark_value>image anchor in Calc;changing</bookmark_value>"
+msgstr ""
+
+#. t3pgZ
+#: change_image_anchor.xhp
+msgctxt ""
+"change_image_anchor.xhp\n"
+"par_id851607971999527\n"
+"help.text"
+msgid "<variable id=\"anchor_image\"><link href=\"text/scalc/guide/change_image_anchor.xhp\" name=\"Changing Anchor of Image\">Changing the Anchor of an Image</link> </variable>"
+msgstr ""
+
+#. BoMUp
+#: change_image_anchor.xhp
+msgctxt ""
+"change_image_anchor.xhp\n"
+"par_id881607972030094\n"
+"help.text"
+msgid "Images are inserted in a Calc spreadsheet anchored to cells by default and do not resize when the cell is moved."
+msgstr ""
+
+#. gFthU
+#: change_image_anchor.xhp
+msgctxt ""
+"change_image_anchor.xhp\n"
+"par_id741607810664944\n"
+"help.text"
+msgid "Images can be anchored in three different ways:"
+msgstr ""
+
+#. WFaiX
+#: change_image_anchor.xhp
+msgctxt ""
+"change_image_anchor.xhp\n"
+"par_id351607809926451\n"
+"help.text"
+msgid "<emph>To Cell:</emph> the image will move along with the cell, when copying, sorting or inserting and deleting cells above and on the left of the cell holding the anchor."
+msgstr ""
+
+#. aFqrk
+#: change_image_anchor.xhp
+msgctxt ""
+"change_image_anchor.xhp\n"
+"par_id871607809971823\n"
+"help.text"
+msgid "<emph>To Cell (resize with cell):</emph> the image will move along with the cell. In addition, the image height and width will be resized if the cell holding the anchor is later resized. The aspect ratio of the image follows the later aspect ratio of the cell holding the anchor."
+msgstr ""
+
+#. DGAiK
+#: change_image_anchor.xhp
+msgctxt ""
+"change_image_anchor.xhp\n"
+"par_id551607810008215\n"
+"help.text"
+msgid "<emph>To Page:</emph> the image position in the page is not affected by cells ordering or cells movements."
+msgstr ""
+
+#. 97qEg
+#: change_image_anchor.xhp
+msgctxt ""
+"change_image_anchor.xhp\n"
+"hd_id151607809776222\n"
+"help.text"
+msgid "To Change the anchor of an image"
+msgstr ""
+
+#. t5B8m
+#: change_image_anchor.xhp
+msgctxt ""
+"change_image_anchor.xhp\n"
+"par_id41607978764613\n"
+"help.text"
+msgid "Select the image and choose <menuitem>Format - Anchor</menuitem>, or, on the context menu of the image choose <menuitem>Anchor</menuitem>"
+msgstr ""
+
+#. HUHPb
+#: change_image_anchor.xhp
+msgctxt ""
+"change_image_anchor.xhp\n"
+"par_id761607809520625\n"
+"help.text"
+msgid "The original size of the image and cell is preserved while pasting the entire row or entire column for both <emph>To Cell</emph> and <emph>To Cell (resize with cell)</emph> options."
+msgstr ""
+
+#. G5Dfz
+#: consolidate.xhp
+msgctxt ""
+"consolidate.xhp\n"
+"tit\n"
+"help.text"
+msgid "Consolidating Data"
+msgstr ""
+
+#. dEYi9
+#: consolidate.xhp
+msgctxt ""
+"consolidate.xhp\n"
+"bm_id3150791\n"
+"help.text"
+msgid "<bookmark_value>consolidating data</bookmark_value> <bookmark_value>ranges; combining</bookmark_value> <bookmark_value>combining;cell ranges</bookmark_value> <bookmark_value>tables; combining</bookmark_value> <bookmark_value>data; merging cell ranges</bookmark_value> <bookmark_value>merging;data ranges</bookmark_value>"
+msgstr ""
+
+#. aUBxc
+#: consolidate.xhp
+msgctxt ""
+"consolidate.xhp\n"
+"hd_id3150791\n"
+"help.text"
+msgid "<variable id=\"consolidate\"><link href=\"text/scalc/guide/consolidate.xhp\" name=\"Consolidating Data\">Consolidating Data</link></variable>"
+msgstr ""
+
+#. dcJqU
+#: consolidate.xhp
+msgctxt ""
+"consolidate.xhp\n"
+"par_id3153191\n"
+"help.text"
+msgid "During consolidation, the contents of the cells from several sheets will be combined in one place."
+msgstr ""
+
+#. GyvFB
+#: consolidate.xhp
+msgctxt ""
+"consolidate.xhp\n"
+"hd_id892056\n"
+"help.text"
+msgid "To Combine Cell Contents"
+msgstr ""
+
+#. 4tD6G
+#: consolidate.xhp
+msgctxt ""
+"consolidate.xhp\n"
+"par_id3151073\n"
+"help.text"
+msgid "Open the document that contains the cell ranges to be consolidated."
+msgstr ""
+
+#. 77VUk
+#: consolidate.xhp
+msgctxt ""
+"consolidate.xhp\n"
+"par_id3154513\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">Data - Consolidate</item> to open the <emph>Consolidate</emph> dialog."
+msgstr ""
+
+#. hJHqN
+#: consolidate.xhp
+msgctxt ""
+"consolidate.xhp\n"
+"par_id3147345\n"
+"help.text"
+msgid "From the <emph>Source data area</emph> box select a source cell range to consolidate with other areas."
+msgstr ""
+
+#. CvGP2
+#: consolidate.xhp
+msgctxt ""
+"consolidate.xhp\n"
+"par_id3149209\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 ""
+
+#. zSGyD
+#: consolidate.xhp
+msgctxt ""
+"consolidate.xhp\n"
+"par_id3155529\n"
+"help.text"
+msgid "Click <emph>Add</emph> to insert the selected range in the <emph>Consolidation areas</emph> field."
+msgstr ""
+
+#. Fo56E
+#: consolidate.xhp
+msgctxt ""
+"consolidate.xhp\n"
+"par_id3153816\n"
+"help.text"
+msgid "Select additional ranges and click <emph>Add</emph> after each selection."
+msgstr ""
+
+#. 85CXx
+#: consolidate.xhp
+msgctxt ""
+"consolidate.xhp\n"
+"par_id3157983\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 ""
+
+#. UByCi
+#: consolidate.xhp
+msgctxt ""
+"consolidate.xhp\n"
+"par_id3150215\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 ""
+
+#. JvD9q
+#: consolidate.xhp
+msgctxt ""
+"consolidate.xhp\n"
+"par_id3153813\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 ""
+
+#. Z3iG2
+#: consolidate.xhp
+msgctxt ""
+"consolidate.xhp\n"
+"par_id3149315\n"
+"help.text"
+msgid "Click <emph>OK</emph> to consolidate the ranges."
+msgstr ""
+
+#. qbEFs
+#: consolidate.xhp
+msgctxt ""
+"consolidate.xhp\n"
+"par_idN107DE\n"
+"help.text"
+msgid "Additional Settings"
+msgstr ""
+
+#. BSAXP
+#: consolidate.xhp
+msgctxt ""
+"consolidate.xhp\n"
+"par_id3147250\n"
+"help.text"
+msgid "Click <emph>More</emph> in the <emph>Consolidate</emph> dialog to display additional settings:"
+msgstr ""
+
+#. DEEPq
+#: consolidate.xhp
+msgctxt ""
+"consolidate.xhp\n"
+"par_id3156400\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 ""
+
+#. VJPHa
+#: consolidate.xhp
+msgctxt ""
+"consolidate.xhp\n"
+"par_id3150538\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 ""
+
+#. UubEm
+#: consolidate.xhp
+msgctxt ""
+"consolidate.xhp\n"
+"par_id3149945\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 ""
+
+#. AEjpi
+#: consolidate.xhp
+msgctxt ""
+"consolidate.xhp\n"
+"par_id3157871\n"
+"help.text"
+msgid "To consolidate by row labels or column labels, the label must be contained in the selected source ranges."
+msgstr ""
+
+#. mQ3x2
+#: consolidate.xhp
+msgctxt ""
+"consolidate.xhp\n"
+"par_id3150478\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 ""
+
+#. UMqz7
+#: consolidate.xhp
+msgctxt ""
+"consolidate.xhp\n"
+"par_id3147468\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 ""
+
+#. GGFhA
+#: consolidate.xhp
+msgctxt ""
+"consolidate.xhp\n"
+"par_id3153039\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/12070000.xhp\" name=\"Data - Consolidate\">Data - Consolidate</link>"
+msgstr ""
+
+#. UNSjU
+#: csv_files.xhp
+msgctxt ""
+"csv_files.xhp\n"
+"tit\n"
+"help.text"
+msgid "Importing and Exporting CSV Files"
+msgstr ""
+
+#. wBHVA
+#: csv_files.xhp
+msgctxt ""
+"csv_files.xhp\n"
+"bm_id892361\n"
+"help.text"
+msgid "<bookmark_value>number series import</bookmark_value><bookmark_value>data series import</bookmark_value><bookmark_value>exporting; tables as text</bookmark_value><bookmark_value>importing; tables as text</bookmark_value><bookmark_value>delimited values and files</bookmark_value><bookmark_value>comma separated files and values</bookmark_value><bookmark_value>text file import and export</bookmark_value><bookmark_value>csv files;importing and exporting</bookmark_value><bookmark_value>tables; importing/exporting as text</bookmark_value><bookmark_value>text documents; importing to spreadsheets</bookmark_value><bookmark_value>opening;text csv files</bookmark_value><bookmark_value>saving;as text csv</bookmark_value>"
+msgstr ""
+
+#. JZMzq
+#: csv_files.xhp
+msgctxt ""
+"csv_files.xhp\n"
+"par_idN10862\n"
+"help.text"
+msgid "<variable id=\"csv_files\"><link href=\"text/scalc/guide/csv_files.xhp\">Opening and Saving Text CSV Files</link></variable>"
+msgstr ""
+
+#. e4NjR
+#: csv_files.xhp
+msgctxt ""
+"csv_files.xhp\n"
+"par_idN10880\n"
+"help.text"
+msgid "Comma Separated Values (CSV) is a text file format that you can use to exchange data from a database or a spreadsheet between applications. Each line in a Text CSV file represents a record in the database, or a row in a spreadsheet. Each field in a database record or cell in a spreadsheet row is usually separated by a comma. However, you can use other characters to delimit a field, such as a tabulator character."
+msgstr ""
+
+#. TG3zV
+#: csv_files.xhp
+msgctxt ""
+"csv_files.xhp\n"
+"par_idN10886\n"
+"help.text"
+msgid "If the field or cell contains a comma, the field or cell <emph>must</emph> be enclosed by single quotes (') or double quotes (\")."
+msgstr ""
+
+#. dUgWo
+#: csv_files.xhp
+msgctxt ""
+"csv_files.xhp\n"
+"par_idN10890\n"
+"help.text"
+msgid "To Open a Text CSV File in Calc"
+msgstr ""
+
+#. LYnP5
+#: csv_files.xhp
+msgctxt ""
+"csv_files.xhp\n"
+"par_idN10897\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">File - Open</item>."
+msgstr ""
+
+#. UgyWE
+#: csv_files.xhp
+msgctxt ""
+"csv_files.xhp\n"
+"par_idN1089F\n"
+"help.text"
+msgid "Locate the CSV file that you want to open."
+msgstr ""
+
+#. SqwSh
+#: csv_files.xhp
+msgctxt ""
+"csv_files.xhp\n"
+"par_idN108A2\n"
+"help.text"
+msgid "If the file has a *.csv extension, select the file."
+msgstr ""
+
+#. DQq7Q
+#: csv_files.xhp
+msgctxt ""
+"csv_files.xhp\n"
+"par_idN108A5\n"
+"help.text"
+msgid "If the CSV file has another extension, select the file, and then select \"Text CSV\" in the <emph>Filter</emph> box"
+msgstr ""
+
+#. FEBAD
+#: csv_files.xhp
+msgctxt ""
+"csv_files.xhp\n"
+"par_idN1082D\n"
+"help.text"
+msgid "Click <item type=\"menuitem\">Open</item>."
+msgstr ""
+
+#. rUWLQ
+#: csv_files.xhp
+msgctxt ""
+"csv_files.xhp\n"
+"par_idN10834\n"
+"help.text"
+msgid "The <item type=\"menuitem\">Text Import</item> dialog opens."
+msgstr ""
+
+#. uc87k
+#: csv_files.xhp
+msgctxt ""
+"csv_files.xhp\n"
+"par_idN108B1\n"
+"help.text"
+msgid "Specify the options to divide the text in the file into columns."
+msgstr ""
+
+#. azv5J
+#: csv_files.xhp
+msgctxt ""
+"csv_files.xhp\n"
+"par_idN108BB\n"
+"help.text"
+msgid "You can preview the layout of the imported data at the bottom of the <item type=\"menuitem\">Text Import</item> dialog."
+msgstr ""
+
+#. UjzC5
+#: csv_files.xhp
+msgctxt ""
+"csv_files.xhp\n"
+"par_id8444166\n"
+"help.text"
+msgid "Right-click a column in the preview to set the format or to hide the column."
+msgstr ""
+
+#. SAMDV
+#: csv_files.xhp
+msgctxt ""
+"csv_files.xhp\n"
+"par_idN108E2\n"
+"help.text"
+msgid "Check the text delimiter box that matches the character used as text delimiter in the file. In case of an unlisted delimiter, type the character into the input box."
+msgstr ""
+
+#. Ztzey
+#: csv_files.xhp
+msgctxt ""
+"csv_files.xhp\n"
+"par_idN108C5\n"
+"help.text"
+msgid "Click <item type=\"menuitem\">OK</item>."
+msgstr ""
+
+#. QTrWA
+#: csv_files.xhp
+msgctxt ""
+"csv_files.xhp\n"
+"par_idN108FA\n"
+"help.text"
+msgid "To Save a Sheet as a Text CSV File"
+msgstr ""
+
+#. pyPuY
+#: csv_files.xhp
+msgctxt ""
+"csv_files.xhp\n"
+"par_idN106FC\n"
+"help.text"
+msgid "When you export a spreadsheet to CSV format, only the data on the current sheet is saved. All other information, including formulas and formatting, is lost."
+msgstr ""
+
+#. AyeuD
+#: csv_files.xhp
+msgctxt ""
+"csv_files.xhp\n"
+"par_idN10901\n"
+"help.text"
+msgid "Open the Calc sheet that you want to save as a Text CSV file."
+msgstr ""
+
+#. SG978
+#: csv_files.xhp
+msgctxt ""
+"csv_files.xhp\n"
+"par_idN107AF\n"
+"help.text"
+msgid "Only the current sheet can be exported."
+msgstr ""
+
+#. qznpi
+#: csv_files.xhp
+msgctxt ""
+"csv_files.xhp\n"
+"par_idN10905\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">File - Save as</item>."
+msgstr ""
+
+#. 3y6rF
+#: csv_files.xhp
+msgctxt ""
+"csv_files.xhp\n"
+"par_idN10915\n"
+"help.text"
+msgid "In the <item type=\"menuitem\">File name</item> box, enter a name for the file."
+msgstr ""
+
+#. EDhEz
+#: csv_files.xhp
+msgctxt ""
+"csv_files.xhp\n"
+"par_idN1090D\n"
+"help.text"
+msgid "In the <emph>Filter</emph> box, select \"Text CSV\"."
+msgstr ""
+
+#. 2JC8V
+#: csv_files.xhp
+msgctxt ""
+"csv_files.xhp\n"
+"par_idN107DD\n"
+"help.text"
+msgid "(Optional) Set the field options for the Text CSV file."
+msgstr ""
+
+#. 6KsfG
+#: csv_files.xhp
+msgctxt ""
+"csv_files.xhp\n"
+"par_idN1091C\n"
+"help.text"
+msgid "Select <item type=\"menuitem\">Edit filter settings</item>."
+msgstr ""
+
+#. VXtFE
+#: csv_files.xhp
+msgctxt ""
+"csv_files.xhp\n"
+"par_idN107ED\n"
+"help.text"
+msgid "In the <item type=\"menuitem\">Export of text files</item> dialog, select the options that you want."
+msgstr ""
+
+#. HFtDt
+#: csv_files.xhp
+msgctxt ""
+"csv_files.xhp\n"
+"par_idN107F4\n"
+"help.text"
+msgid "Click <item type=\"menuitem\">OK</item>."
+msgstr ""
+
+#. zCCwW
+#: csv_files.xhp
+msgctxt ""
+"csv_files.xhp\n"
+"par_idN107FC\n"
+"help.text"
+msgid "Click <item type=\"menuitem\">Save</item>."
+msgstr ""
+
+#. U6QRD
+#: csv_files.xhp
+msgctxt ""
+"csv_files.xhp\n"
+"par_id3153487\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 ""
+
+#. W3bT3
+#: csv_files.xhp
+msgctxt ""
+"csv_files.xhp\n"
+"par_id3153008\n"
+"help.text"
+msgid "<link href=\"text/shared/00/00000207.xhp\" name=\"Export text files\">Export text files</link>"
+msgstr ""
+
+#. jADCM
+#: csv_files.xhp
+msgctxt ""
+"csv_files.xhp\n"
+"par_id3155595\n"
+"help.text"
+msgid "<link href=\"text/shared/00/00000208.xhp\" name=\"Import text files\">Import text files</link>"
+msgstr ""
+
+#. ounFQ
+#: csv_formula.xhp
+msgctxt ""
+"csv_formula.xhp\n"
+"tit\n"
+"help.text"
+msgid "Importing and Exporting Text Files"
+msgstr ""
+
+#. AzAKW
+#: csv_formula.xhp
+msgctxt ""
+"csv_formula.xhp\n"
+"bm_id3153726\n"
+"help.text"
+msgid "<bookmark_value>csv files;formulas</bookmark_value> <bookmark_value>formulas; importing/exporting as csv files</bookmark_value> <bookmark_value>exporting;formulas as csv files</bookmark_value> <bookmark_value>importing;csv files with formulas</bookmark_value>"
+msgstr ""
+
+#. DfYsZ
+#: csv_formula.xhp
+msgctxt ""
+"csv_formula.xhp\n"
+"hd_id3153726\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 ""
+
+#. 7kmDr
+#: csv_formula.xhp
+msgctxt ""
+"csv_formula.xhp\n"
+"par_id3149402\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 ""
+
+#. 5E4aN
+#: csv_formula.xhp
+msgctxt ""
+"csv_formula.xhp\n"
+"hd_id3150715\n"
+"help.text"
+msgid "To Import a CSV File"
+msgstr ""
+
+#. iNsCc
+#: csv_formula.xhp
+msgctxt ""
+"csv_formula.xhp\n"
+"par_id3153709\n"
+"help.text"
+msgid "Choose <emph>File - Open</emph>."
+msgstr ""
+
+#. iPsQg
+#: csv_formula.xhp
+msgctxt ""
+"csv_formula.xhp\n"
+"par_id3155445\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 ""
+
+#. U4nRf
+#: csv_formula.xhp
+msgctxt ""
+"csv_formula.xhp\n"
+"par_id3149565\n"
+"help.text"
+msgid "You will see the <item type=\"menuitem\">Text Import</item> dialog. Click <item type=\"menuitem\">OK</item>."
+msgstr ""
+
+#. adhCg
+#: csv_formula.xhp
+msgctxt ""
+"csv_formula.xhp\n"
+"par_id3149255\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 ""
+
+#. JTAdg
+#: csv_formula.xhp
+msgctxt ""
+"csv_formula.xhp\n"
+"hd_id3154022\n"
+"help.text"
+msgid "To Export Formulas and Values as CSV Files"
+msgstr ""
+
+#. fWwZt
+#: csv_formula.xhp
+msgctxt ""
+"csv_formula.xhp\n"
+"par_id3150342\n"
+"help.text"
+msgid "Click the sheet to be written as a csv file."
+msgstr ""
+
+#. nJJjE
+#: csv_formula.xhp
+msgctxt ""
+"csv_formula.xhp\n"
+"par_id3166423\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 ""
+
+#. S9LAC
+#: csv_formula.xhp
+msgctxt ""
+"csv_formula.xhp\n"
+"par_id3155111\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 ""
+
+#. 4oXKB
+#: csv_formula.xhp
+msgctxt ""
+"csv_formula.xhp\n"
+"par_id3150200\n"
+"help.text"
+msgid "Under <emph>Display</emph>, mark the <emph>Formulas</emph> check box. Click <emph>OK</emph>."
+msgstr ""
+
+#. iwN9i
+#: csv_formula.xhp
+msgctxt ""
+"csv_formula.xhp\n"
+"par_id3154484\n"
+"help.text"
+msgid "If you want to export the calculation results instead of the formulas, do not mark <emph>Formulas</emph>."
+msgstr ""
+
+#. a5ChK
+#: csv_formula.xhp
+msgctxt ""
+"csv_formula.xhp\n"
+"par_id3148702\n"
+"help.text"
+msgid "Choose <emph>File - Save as</emph>. You will see the <emph>Save as</emph> dialog."
+msgstr ""
+
+#. wc7Fy
+#: csv_formula.xhp
+msgctxt ""
+"csv_formula.xhp\n"
+"par_id3153912\n"
+"help.text"
+msgid "In the <item type=\"menuitem\">File type</item> field select the format \"Text CSV\"."
+msgstr ""
+
+#. jFEFh
+#: csv_formula.xhp
+msgctxt ""
+"csv_formula.xhp\n"
+"par_id3157978\n"
+"help.text"
+msgid "Enter a name and click <emph>Save</emph>."
+msgstr ""
+
+#. Z69Sc
+#: csv_formula.xhp
+msgctxt ""
+"csv_formula.xhp\n"
+"par_id3152869\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 ""
+
+#. yPP3a
+#: csv_formula.xhp
+msgctxt ""
+"csv_formula.xhp\n"
+"par_id3150050\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 ""
+
+#. D9voD
+#: csv_formula.xhp
+msgctxt ""
+"csv_formula.xhp\n"
+"par_id3153487\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 ""
+
+#. iGg7e
+#: csv_formula.xhp
+msgctxt ""
+"csv_formula.xhp\n"
+"par_id3153008\n"
+"help.text"
+msgid "<link href=\"text/shared/00/00000207.xhp\" name=\"Export text files\">Export text files</link>"
+msgstr ""
+
+#. X5Eoo
+#: csv_formula.xhp
+msgctxt ""
+"csv_formula.xhp\n"
+"par_id3155595\n"
+"help.text"
+msgid "<link href=\"text/shared/00/00000208.xhp\" name=\"Import text files\">Import text files</link>"
+msgstr ""
+
+#. s2isa
+#: currency_format.xhp
+msgctxt ""
+"currency_format.xhp\n"
+"tit\n"
+"help.text"
+msgid "Cells in Currency Format"
+msgstr ""
+
+#. XgZWi
+#: currency_format.xhp
+msgctxt ""
+"currency_format.xhp\n"
+"bm_id3156329\n"
+"help.text"
+msgid "<bookmark_value>currency formats; spreadsheets</bookmark_value><bookmark_value>cells; currency formats</bookmark_value><bookmark_value>international currency formats</bookmark_value><bookmark_value>formats; currency formats in cells</bookmark_value><bookmark_value>currencies; default currencies</bookmark_value><bookmark_value>defaults;currency formats</bookmark_value><bookmark_value>changing;currency formats</bookmark_value>"
+msgstr ""
+
+#. GUpzE
+#: currency_format.xhp
+msgctxt ""
+"currency_format.xhp\n"
+"hd_id3156329\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 ""
+
+#. Tq9vD
+#: currency_format.xhp
+msgctxt ""
+"currency_format.xhp\n"
+"par_id3153968\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 ""
+
+#. UWxwb
+#: currency_format.xhp
+msgctxt ""
+"currency_format.xhp\n"
+"par_id3150010\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 ""
+
+#. 7Kq8i
+#: currency_format.xhp
+msgctxt ""
+"currency_format.xhp\n"
+"par_id3156442\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 ""
+
+#. fBUBn
+#: currency_format.xhp
+msgctxt ""
+"currency_format.xhp\n"
+"par_id3151075\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 ""
+
+#. 7b98J
+#: currency_format.xhp
+msgctxt ""
+"currency_format.xhp\n"
+"par_id3150749\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 ""
+
+#. MNnnJ
+#: currency_format.xhp
+msgctxt ""
+"currency_format.xhp\n"
+"par_id3145640\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 ""
+
+#. CzbsK
+#: currency_format.xhp
+msgctxt ""
+"currency_format.xhp\n"
+"par_id3154255\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cells - Numbers\">Format - Cells - Numbers</link>"
+msgstr ""
+
+#. QoTwd
+#: database_define.xhp
+msgctxt ""
+"database_define.xhp\n"
+"tit\n"
+"help.text"
+msgid "Defining Database Ranges"
+msgstr ""
+
+#. vjEu6
+#: database_define.xhp
+msgctxt ""
+"database_define.xhp\n"
+"bm_id3154758\n"
+"help.text"
+msgid "<bookmark_value>tables; database ranges</bookmark_value> <bookmark_value>database ranges; defining</bookmark_value> <bookmark_value>ranges; defining database ranges</bookmark_value> <bookmark_value>defining;database ranges</bookmark_value>"
+msgstr ""
+
+#. bCxRx
+#: database_define.xhp
+msgctxt ""
+"database_define.xhp\n"
+"hd_id3154758\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 ""
+
+#. 4BdV5
+#: database_define.xhp
+msgctxt ""
+"database_define.xhp\n"
+"par_id3153768\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 ""
+
+#. YkmRD
+#: database_define.xhp
+msgctxt ""
+"database_define.xhp\n"
+"par_id3145801\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 ""
+
+#. 7A9DZ
+#: database_define.xhp
+msgctxt ""
+"database_define.xhp\n"
+"par_idN10648\n"
+"help.text"
+msgid "To define a database range"
+msgstr ""
+
+#. ViixK
+#: database_define.xhp
+msgctxt ""
+"database_define.xhp\n"
+"par_id3155064\n"
+"help.text"
+msgid "Select the range of cells that you want to define as a database range."
+msgstr ""
+
+#. koZRd
+#: database_define.xhp
+msgctxt ""
+"database_define.xhp\n"
+"par_idN10654\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">Data - Define Range</item>."
+msgstr ""
+
+#. C4Pvr
+#: database_define.xhp
+msgctxt ""
+"database_define.xhp\n"
+"par_id3153715\n"
+"help.text"
+msgid "In the <emph>Name</emph> box, enter a name for the database range."
+msgstr ""
+
+#. 2X6GR
+#: database_define.xhp
+msgctxt ""
+"database_define.xhp\n"
+"par_idN1066A\n"
+"help.text"
+msgid "Click <emph>More</emph>."
+msgstr ""
+
+#. zp2Nx
+#: database_define.xhp
+msgctxt ""
+"database_define.xhp\n"
+"par_id3154253\n"
+"help.text"
+msgid "Specify the options for the database range."
+msgstr ""
+
+#. gDERf
+#: database_define.xhp
+msgctxt ""
+"database_define.xhp\n"
+"par_idN10675\n"
+"help.text"
+msgid "Click <emph>OK</emph>."
+msgstr ""
+
+#. q4WSq
+#: database_filter.xhp
+msgctxt ""
+"database_filter.xhp\n"
+"tit\n"
+"help.text"
+msgid "Filtering Cell Ranges"
+msgstr ""
+
+#. DERXE
+#: database_filter.xhp
+msgctxt ""
+"database_filter.xhp\n"
+"bm_id3153541\n"
+"help.text"
+msgid "<bookmark_value>cell ranges;applying/removing filters</bookmark_value> <bookmark_value>filtering;cell ranges/database ranges</bookmark_value> <bookmark_value>database ranges;applying/removing filters</bookmark_value> <bookmark_value>removing;cell range filters</bookmark_value>"
+msgstr ""
+
+#. geiwR
+#: database_filter.xhp
+msgctxt ""
+"database_filter.xhp\n"
+"hd_id3153541\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 ""
+
+#. 4znQt
+#: database_filter.xhp
+msgctxt ""
+"database_filter.xhp\n"
+"par_id3145069\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 ""
+
+#. e7DZH
+#: database_filter.xhp
+msgctxt ""
+"database_filter.xhp\n"
+"par_idN10682\n"
+"help.text"
+msgid "To Apply a Standard Filter to a Cell Range"
+msgstr ""
+
+#. SiEGx
+#: database_filter.xhp
+msgctxt ""
+"database_filter.xhp\n"
+"par_id3150398\n"
+"help.text"
+msgid "Click in a cell range."
+msgstr ""
+
+#. WG4wc
+#: database_filter.xhp
+msgctxt ""
+"database_filter.xhp\n"
+"par_idN10693\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">Data - More Filters - Standard Filter</item>."
+msgstr ""
+
+#. Hxxpj
+#: database_filter.xhp
+msgctxt ""
+"database_filter.xhp\n"
+"par_id3156422\n"
+"help.text"
+msgid "In the <emph>Standard Filter</emph> dialog, specify the filter options that you want."
+msgstr ""
+
+#. vcg5k
+#: database_filter.xhp
+msgctxt ""
+"database_filter.xhp\n"
+"par_idN106A5\n"
+"help.text"
+msgid "Click <emph>OK</emph>."
+msgstr ""
+
+#. qmFD9
+#: database_filter.xhp
+msgctxt ""
+"database_filter.xhp\n"
+"par_id3153143\n"
+"help.text"
+msgid "The records that match the filter options that you specified are shown."
+msgstr ""
+
+#. zUCBf
+#: database_filter.xhp
+msgctxt ""
+"database_filter.xhp\n"
+"par_id3153728\n"
+"help.text"
+msgid "To Apply an AutoFilter to a Cell Range"
+msgstr ""
+
+#. tqAMd
+#: database_filter.xhp
+msgctxt ""
+"database_filter.xhp\n"
+"par_id3144764\n"
+"help.text"
+msgid "Click in a cell range or a database range."
+msgstr ""
+
+#. EFRDW
+#: database_filter.xhp
+msgctxt ""
+"database_filter.xhp\n"
+"par_id9303872\n"
+"help.text"
+msgid "If you want to apply multiple AutoFilters to the same sheet, you must first define database ranges, then apply the AutoFilters to the database ranges."
+msgstr ""
+
+#. ayGC2
+#: database_filter.xhp
+msgctxt ""
+"database_filter.xhp\n"
+"par_id3154944\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">Data - AutoFilter</item>."
+msgstr ""
+
+#. 8jfFs
+#: database_filter.xhp
+msgctxt ""
+"database_filter.xhp\n"
+"par_idN106DB\n"
+"help.text"
+msgid "An arrow button is added to the head of each column in the database range."
+msgstr ""
+
+#. buscD
+#: database_filter.xhp
+msgctxt ""
+"database_filter.xhp\n"
+"par_id3153878\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 ""
+
+#. vFUzG
+#: database_filter.xhp
+msgctxt ""
+"database_filter.xhp\n"
+"par_idN10749\n"
+"help.text"
+msgid "Select the value or string that you want to use as the filter criteria."
+msgstr ""
+
+#. H4Cqe
+#: database_filter.xhp
+msgctxt ""
+"database_filter.xhp\n"
+"par_idN1074C\n"
+"help.text"
+msgid "The records that match the filter criteria that you selected are shown."
+msgstr ""
+
+#. fkmqA
+#: database_filter.xhp
+msgctxt ""
+"database_filter.xhp\n"
+"par_idN106E8\n"
+"help.text"
+msgid "To Remove a Filter From a Cell Range"
+msgstr ""
+
+#. 85fDm
+#: database_filter.xhp
+msgctxt ""
+"database_filter.xhp\n"
+"par_idN1075C\n"
+"help.text"
+msgid "Click in a filtered cell range."
+msgstr ""
+
+#. H7icE
+#: database_filter.xhp
+msgctxt ""
+"database_filter.xhp\n"
+"par_idN106EC\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">Data - Filter - Reset Filter</item>."
+msgstr ""
+
+#. EFnz4
+#: database_filter.xhp
+msgctxt ""
+"database_filter.xhp\n"
+"par_id4525284\n"
+"help.text"
+msgid "<link href=\"https://wiki.documentfoundation.org/Documentation/How_Tos/Defining_a_Data_Range\" name=\"wiki.documentfoundation.org Defining a Data Range\">Wiki page about defining a data range</link>"
+msgstr ""
+
+#. ueLu8
+#: database_sort.xhp
+msgctxt ""
+"database_sort.xhp\n"
+"tit\n"
+"help.text"
+msgid "Sorting Data"
+msgstr ""
+
+#. qvJdv
+#: database_sort.xhp
+msgctxt ""
+"database_sort.xhp\n"
+"bm_id3150767\n"
+"help.text"
+msgid "<bookmark_value>database ranges; sorting</bookmark_value> <bookmark_value>sorting; database ranges</bookmark_value> <bookmark_value>data;sorting in databases</bookmark_value>"
+msgstr ""
+
+#. P89iU
+#: database_sort.xhp
+msgctxt ""
+"database_sort.xhp\n"
+"hd_id3150767\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 ""
+
+#. vddXD
+#: database_sort.xhp
+msgctxt ""
+"database_sort.xhp\n"
+"par_id3145751\n"
+"help.text"
+msgid "Click in a database range."
+msgstr ""
+
+#. BjSBG
+#: database_sort.xhp
+msgctxt ""
+"database_sort.xhp\n"
+"par_id121020081121549\n"
+"help.text"
+msgid "If you select a range of cells, only these cells will get sorted. If you just click one cell without selecting, then the whole database range will get sorted."
+msgstr ""
+
+#. LpURK
+#: database_sort.xhp
+msgctxt ""
+"database_sort.xhp\n"
+"par_idN10635\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">Data - Sort</item>."
+msgstr ""
+
+#. t46AF
+#: database_sort.xhp
+msgctxt ""
+"database_sort.xhp\n"
+"par_id121020081121547\n"
+"help.text"
+msgid "The range of cells that will get sorted is shown in inverted colors."
+msgstr ""
+
+#. HGBLx
+#: database_sort.xhp
+msgctxt ""
+"database_sort.xhp\n"
+"par_idN10645\n"
+"help.text"
+msgid "Select the sort options that you want."
+msgstr ""
+
+#. dxfCa
+#: database_sort.xhp
+msgctxt ""
+"database_sort.xhp\n"
+"par_idN1063D\n"
+"help.text"
+msgid "Click <emph>OK</emph>."
+msgstr ""
+
+#. yFuM4
+#: database_sort.xhp
+msgctxt ""
+"database_sort.xhp\n"
+"par_id1846980\n"
+"help.text"
+msgid "<link href=\"https://wiki.documentfoundation.org/Documentation/How_Tos/Defining_a_Data_Range\" name=\"wiki.documentfoundation.org: Defining a Data Range\">Wiki page about defining a data range</link>"
+msgstr ""
+
+#. zsSK8
+#: datapilot.xhp
+msgctxt ""
+"datapilot.xhp\n"
+"tit\n"
+"help.text"
+msgid "Pivot Table"
+msgstr ""
+
+#. q3UkA
+#: datapilot.xhp
+msgctxt ""
+"datapilot.xhp\n"
+"bm_id3150448\n"
+"help.text"
+msgid "<bookmark_value>pivot table function; introduction</bookmark_value><bookmark_value>DataPilot, see pivot table function</bookmark_value>"
+msgstr ""
+
+#. tAv25
+#: datapilot.xhp
+msgctxt ""
+"datapilot.xhp\n"
+"hd_id3150448\n"
+"help.text"
+msgid "<variable id=\"datapilot\"><link href=\"text/scalc/guide/datapilot.xhp\" name=\"Pivot Table\">Pivot Table</link></variable>"
+msgstr ""
+
+#. X3qFY
+#: datapilot.xhp
+msgctxt ""
+"datapilot.xhp\n"
+"par_id3156024\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 ""
+
+#. EP4s6
+#: datapilot.xhp
+msgctxt ""
+"datapilot.xhp\n"
+"par_id3145069\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 ""
+
+#. cGChV
+#: datapilot_createtable.xhp
+msgctxt ""
+"datapilot_createtable.xhp\n"
+"tit\n"
+"help.text"
+msgid "Creating Pivot Tables"
+msgstr ""
+
+#. kEK57
+#: datapilot_createtable.xhp
+msgctxt ""
+"datapilot_createtable.xhp\n"
+"bm_id3148491\n"
+"help.text"
+msgid "<bookmark_value>pivot tables</bookmark_value> <bookmark_value>pivot table function; calling up and applying</bookmark_value>"
+msgstr ""
+
+#. c5AAy
+#: datapilot_createtable.xhp
+msgctxt ""
+"datapilot_createtable.xhp\n"
+"hd_id3148491\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 ""
+
+#. qrneD
+#: datapilot_createtable.xhp
+msgctxt ""
+"datapilot_createtable.xhp\n"
+"par_id3156023\n"
+"help.text"
+msgid "Position the cursor within a range of cells containing values, row and column headings."
+msgstr ""
+
+#. LA3ux
+#: datapilot_createtable.xhp
+msgctxt ""
+"datapilot_createtable.xhp\n"
+"par_id3147264\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 \"Filters\", \"Column Fields\", \"Row Fields\" and \"Data Fields\"."
+msgstr ""
+
+#. XR8Sd
+#: datapilot_createtable.xhp
+msgctxt ""
+"datapilot_createtable.xhp\n"
+"par_id3150868\n"
+"help.text"
+msgid "Drag the desired buttons into one of the four areas."
+msgstr ""
+
+#. 7PXD6
+#: datapilot_createtable.xhp
+msgctxt ""
+"datapilot_createtable.xhp\n"
+"par_id7599414\n"
+"help.text"
+msgid "Drag a button to the <emph>Filters</emph> area to create a button and a listbox on top of the generated pivot table. The listbox can be used to filter the pivot table by the contents of the selected item. You can use drag-and-drop within the generated pivot table to use another page field as a filter."
+msgstr ""
+
+#. vFX84
+#: datapilot_createtable.xhp
+msgctxt ""
+"datapilot_createtable.xhp\n"
+"par_id3154011\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 ""
+
+#. 8rEXv
+#: datapilot_createtable.xhp
+msgctxt ""
+"datapilot_createtable.xhp\n"
+"par_id3146974\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 ""
+
+#. PAuDC
+#: datapilot_createtable.xhp
+msgctxt ""
+"datapilot_createtable.xhp\n"
+"par_id3156286\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 ""
+
+#. AniFD
+#: datapilot_createtable.xhp
+msgctxt ""
+"datapilot_createtable.xhp\n"
+"par_id3150329\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 ""
+
+#. ADpWF
+#: datapilot_createtable.xhp
+msgctxt ""
+"datapilot_createtable.xhp\n"
+"par_id3153714\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 ""
+
+#. Hm6YC
+#: datapilot_createtable.xhp
+msgctxt ""
+"datapilot_createtable.xhp\n"
+"par_id3147338\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 ""
+
+#. iXULx
+#: datapilot_createtable.xhp
+msgctxt ""
+"datapilot_createtable.xhp\n"
+"par_id3154020\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>Filters</emph> area. The pivot table is inserted further down."
+msgstr ""
+
+#. dJsd8
+#: datapilot_deletetable.xhp
+msgctxt ""
+"datapilot_deletetable.xhp\n"
+"tit\n"
+"help.text"
+msgid "Deleting Pivot Tables"
+msgstr ""
+
+#. 5mACL
+#: datapilot_deletetable.xhp
+msgctxt ""
+"datapilot_deletetable.xhp\n"
+"bm_id3153726\n"
+"help.text"
+msgid "<bookmark_value>pivot table function; deleting tables</bookmark_value> <bookmark_value>deleting;pivot tables</bookmark_value>"
+msgstr ""
+
+#. CWysA
+#: datapilot_deletetable.xhp
+msgctxt ""
+"datapilot_deletetable.xhp\n"
+"hd_id3153726\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 ""
+
+#. yvJds
+#: datapilot_deletetable.xhp
+msgctxt ""
+"datapilot_deletetable.xhp\n"
+"par_id3154014\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 ""
+
+#. oFygT
+#: datapilot_deletetable.xhp
+msgctxt ""
+"datapilot_deletetable.xhp\n"
+"par_id141525148751543\n"
+"help.text"
+msgid "If you delete a pivot table linked to a pivot chart, the pivot chart is also deleted. A dialog box opens to confirm the pivot chart deletion."
+msgstr ""
+
+#. 9Ft4E
+#: datapilot_edittable.xhp
+msgctxt ""
+"datapilot_edittable.xhp\n"
+"tit\n"
+"help.text"
+msgid "Editing Pivot Tables"
+msgstr ""
+
+#. sdZ2P
+#: datapilot_edittable.xhp
+msgctxt ""
+"datapilot_edittable.xhp\n"
+"bm_id3148663\n"
+"help.text"
+msgid "<bookmark_value>pivot table function; editing tables</bookmark_value><bookmark_value>editing;pivot tables</bookmark_value>"
+msgstr ""
+
+#. SRQYX
+#: datapilot_edittable.xhp
+msgctxt ""
+"datapilot_edittable.xhp\n"
+"hd_id3148663\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 ""
+
+#. jDNdq
+#: datapilot_edittable.xhp
+msgctxt ""
+"datapilot_edittable.xhp\n"
+"par_id3150868\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 ""
+
+#. oRj6N
+#: datapilot_edittable.xhp
+msgctxt ""
+"datapilot_edittable.xhp\n"
+"par_id3145786\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 ""
+
+#. Yrb6G
+#: datapilot_edittable.xhp
+msgctxt ""
+"datapilot_edittable.xhp\n"
+"par_id1648915\n"
+"help.text"
+msgid "In the Pivot Table dialog, you can drag a button to the <emph>Filters</emph> area to create a button and a listbox on top of the pivot table. The listbox can be used to filter the pivot table by the contents of the selected item. You can use drag-and-drop within the pivot table to use another page field as a filter."
+msgstr ""
+
+#. AeGto
+#: datapilot_edittable.xhp
+msgctxt ""
+"datapilot_edittable.xhp\n"
+"par_id3147434\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 ""
+
+#. vbqKe
+#: datapilot_edittable.xhp
+msgctxt ""
+"datapilot_edittable.xhp\n"
+"par_id3156442\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>Properties</emph>, which displays the <emph>Pivot Table Layout</emph> dialog for the current pivot table."
+msgstr ""
+
+#. fKGXd
+#: datapilot_edittable.xhp
+msgctxt ""
+"datapilot_edittable.xhp\n"
+"par_id2666096\n"
+"help.text"
+msgid "In the pivot table, you can use drag-and-drop or cut/paste commands to rearrange the order of data fields."
+msgstr ""
+
+#. aBysR
+#: datapilot_edittable.xhp
+msgctxt ""
+"datapilot_edittable.xhp\n"
+"par_id266609688\n"
+"help.text"
+msgid "You can assign custom display names to fields, field members, subtotals (with some restrictions), and grand totals inside pivot tables. A custom display name is assigned to an item by overwriting the original name with another name."
+msgstr ""
+
+#. Yt6DD
+#: datapilot_filtertable.xhp
+msgctxt ""
+"datapilot_filtertable.xhp\n"
+"tit\n"
+"help.text"
+msgid "Filtering Pivot Tables"
+msgstr ""
+
+#. DjYdz
+#: datapilot_filtertable.xhp
+msgctxt ""
+"datapilot_filtertable.xhp\n"
+"bm_id3150792\n"
+"help.text"
+msgid "<bookmark_value>pivot table function; filtering tables</bookmark_value><bookmark_value>filtering;pivot tables</bookmark_value>"
+msgstr ""
+
+#. B6RwS
+#: datapilot_filtertable.xhp
+msgctxt ""
+"datapilot_filtertable.xhp\n"
+"hd_id3150792\n"
+"help.text"
+msgid "<variable id=\"datapilot_filtertable\"><link href=\"text/scalc/guide/datapilot_filtertable.xhp\" name=\"Filtering Pivot Tables\">Filtering Pivot Tables</link></variable>"
+msgstr ""
+
+#. ADCtg
+#: datapilot_filtertable.xhp
+msgctxt ""
+"datapilot_filtertable.xhp\n"
+"par_id3153192\n"
+"help.text"
+msgid "You can use filters to remove unwanted data from a pivot table."
+msgstr ""
+
+#. GgnjB
+#: datapilot_filtertable.xhp
+msgctxt ""
+"datapilot_filtertable.xhp\n"
+"par_id3150441\n"
+"help.text"
+msgid "Click the <emph>Filter</emph> button in the sheet to call up the dialog for the filter conditions. Alternatively, call up the context menu of the pivot table and select the <emph>Filter</emph> command. The <link href=\"text/scalc/01/12090103.xhp\" name=\"Filter\"><emph>Filter</emph></link> dialog appears. Here you can filter the pivot table."
+msgstr ""
+
+#. TUAcu
+#: datapilot_filtertable.xhp
+msgctxt ""
+"datapilot_filtertable.xhp\n"
+"par_id315044199\n"
+"help.text"
+msgid "You can also click the arrow on a button in the pivot table to show a pop-up window. In this pop-up window, you can edit the visibility settings of the associated field."
+msgstr ""
+
+#. SQnhK
+#: datapilot_filtertable.xhp
+msgctxt ""
+"datapilot_filtertable.xhp\n"
+"par_id0720201001344485\n"
+"help.text"
+msgid "The pop-up window displays a list of field members associated with that field. A check box is placed to the left of each field member name. When a field has an alternative display name that differs from its original name, that name is displayed in the list."
+msgstr ""
+
+#. y6PoC
+#: datapilot_filtertable.xhp
+msgctxt ""
+"datapilot_filtertable.xhp\n"
+"par_id0720201001344449\n"
+"help.text"
+msgid "Enable or disable a checkbox to show or hide the associated field member in the pivot table."
+msgstr ""
+
+#. SW9yB
+#: datapilot_filtertable.xhp
+msgctxt ""
+"datapilot_filtertable.xhp\n"
+"par_id0720201001344493\n"
+"help.text"
+msgid "Enable or disable the <emph>All</emph> checkbox to show all or none of the field members."
+msgstr ""
+
+#. SKUBa
+#: datapilot_filtertable.xhp
+msgctxt ""
+"datapilot_filtertable.xhp\n"
+"par_id0720201001344431\n"
+"help.text"
+msgid "Select a field member in the pop-up window and click the <item type=\"menuitem\">Show only the current item</item> button to show only the selected field member. All other field members are hidden in the pivot table."
+msgstr ""
+
+#. BMRWS
+#: datapilot_filtertable.xhp
+msgctxt ""
+"datapilot_filtertable.xhp\n"
+"par_id0720201001344484\n"
+"help.text"
+msgid "Select a field member in the pop-up window and click the <item type=\"menuitem\">Hide only the current item</item> button to hide only the selected field member. All other field members are shown in the pivot table."
+msgstr ""
+
+#. YyzoD
+#: datapilot_filtertable.xhp
+msgctxt ""
+"datapilot_filtertable.xhp\n"
+"par_id0720201001344578\n"
+"help.text"
+msgid "Commands enable you to sort the field members in ascending order, descending order, or using a custom sort list."
+msgstr ""
+
+#. VmFtw
+#: datapilot_filtertable.xhp
+msgctxt ""
+"datapilot_filtertable.xhp\n"
+"par_id0720201001344584\n"
+"help.text"
+msgid "To edit the custom sort lists, open <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - Sort Lists."
+msgstr ""
+
+#. fWvXo
+#: datapilot_filtertable.xhp
+msgctxt ""
+"datapilot_filtertable.xhp\n"
+"par_id0720201001344811\n"
+"help.text"
+msgid "The arrow to open the pop-up window is normally black. When the field contains one or more hidden field members, the arrow is blue and displays a tiny square at its lower-right corner."
+msgstr ""
+
+#. DBnSP
+#: datapilot_filtertable.xhp
+msgctxt ""
+"datapilot_filtertable.xhp\n"
+"par_id0720201001344884\n"
+"help.text"
+msgid "You can also open the pop-up window by positioning the cell cursor at the button and pressing <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+D."
+msgstr ""
+
+#. LYAEi
+#: datapilot_formatting.xhp
+msgctxt ""
+"datapilot_formatting.xhp\n"
+"tit\n"
+"help.text"
+msgid "Formatting Pivot Tables"
+msgstr ""
+
+#. GkCpq
+#: datapilot_formatting.xhp
+msgctxt ""
+"datapilot_formatting.xhp\n"
+"bm_id931656104694657\n"
+"help.text"
+msgid "<bookmark_value>formatting;pivot tables</bookmark_value>"
+msgstr ""
+
+#. GN6EJ
+#: datapilot_formatting.xhp
+msgctxt ""
+"datapilot_formatting.xhp\n"
+"hd_id341656099297638\n"
+"help.text"
+msgid "<variable id=\"h1\"><link href=\"text/scalc/guide/datapilot_formatting.xhp\" name=\"Formatting Pivot Tables\">Formatting Pivot Tables</link></variable>"
+msgstr ""
+
+#. aA7AD
+#: datapilot_formatting.xhp
+msgctxt ""
+"datapilot_formatting.xhp\n"
+"par_id121656099297641\n"
+"help.text"
+msgid "You can format pivot tables cells using specific cell styles."
+msgstr ""
+
+#. V3B9U
+#: datapilot_formatting.xhp
+msgctxt ""
+"datapilot_formatting.xhp\n"
+"par_id751656100824556\n"
+"help.text"
+msgid "Direct formatting of pivot tables cells is lost when updating or editing the table."
+msgstr ""
+
+#. BX4Fw
+#: datapilot_formatting.xhp
+msgctxt ""
+"datapilot_formatting.xhp\n"
+"par_id31656100011920\n"
+"help.text"
+msgid "When creating a pivot table, six new cell styles are added to your document. Format each cell style as needed. The customization of the pivot cell styles will be preserved when updating the pivot table."
+msgstr ""
+
+#. jQyBh
+#: datapilot_formatting.xhp
+msgctxt ""
+"datapilot_formatting.xhp\n"
+"par_id601656100455727\n"
+"help.text"
+msgid "By using cell styles for pivot table formatting, all pivot tables cells in the spreadsheet document will have the same look. In other words, the pivot table cell styles apply to all pivot tables of the document."
+msgstr ""
+
+#. YgaMr
+#: datapilot_formatting.xhp
+msgctxt ""
+"datapilot_formatting.xhp\n"
+"par_id941656100017412\n"
+"help.text"
+msgid "The six cell styles are:"
+msgstr ""
+
+#. cH3xo
+#: datapilot_formatting.xhp
+msgctxt ""
+"datapilot_formatting.xhp\n"
+"par_id181656100070568\n"
+"help.text"
+msgid "Pivot Table Categories"
+msgstr ""
+
+#. GznnA
+#: datapilot_formatting.xhp
+msgctxt ""
+"datapilot_formatting.xhp\n"
+"par_id781656100074986\n"
+"help.text"
+msgid "Pivot Table Corner"
+msgstr ""
+
+#. Y5UBR
+#: datapilot_formatting.xhp
+msgctxt ""
+"datapilot_formatting.xhp\n"
+"par_id311656100079561\n"
+"help.text"
+msgid "Pivot Table Field"
+msgstr ""
+
+#. a2oFk
+#: datapilot_formatting.xhp
+msgctxt ""
+"datapilot_formatting.xhp\n"
+"par_id601656100083888\n"
+"help.text"
+msgid "Pivot Table Result"
+msgstr ""
+
+#. JvVDa
+#: datapilot_formatting.xhp
+msgctxt ""
+"datapilot_formatting.xhp\n"
+"par_id521656100088324\n"
+"help.text"
+msgid "Pivot Table Value"
+msgstr ""
+
+#. HABWX
+#: datapilot_formatting.xhp
+msgctxt ""
+"datapilot_formatting.xhp\n"
+"par_id111656100092437\n"
+"help.text"
+msgid "Pivot Table Title"
+msgstr ""
+
+#. cRb6R
+#: datapilot_formatting.xhp
+msgctxt ""
+"datapilot_formatting.xhp\n"
+"par_id971656104293716\n"
+"help.text"
+msgid "The number format of these cell styles cannot be changed in the cell style itself; you must format it in the data source."
+msgstr ""
+
+#. CeKoE
+#: datapilot_grouping.xhp
+msgctxt ""
+"datapilot_grouping.xhp\n"
+"tit\n"
+"help.text"
+msgid "Grouping Pivot Tables"
+msgstr ""
+
+#. Kvc5K
+#: datapilot_grouping.xhp
+msgctxt ""
+"datapilot_grouping.xhp\n"
+"bm_id4195684\n"
+"help.text"
+msgid "<bookmark_value>grouping; pivot tables</bookmark_value><bookmark_value>pivot table function;grouping table entries</bookmark_value><bookmark_value>ungrouping entries in pivot tables</bookmark_value>"
+msgstr ""
+
+#. NEBhF
+#: datapilot_grouping.xhp
+msgctxt ""
+"datapilot_grouping.xhp\n"
+"par_idN10643\n"
+"help.text"
+msgid "<variable id=\"datapilot_grouping\"><link href=\"text/scalc/guide/datapilot_grouping.xhp\">Grouping Pivot Tables</link></variable>"
+msgstr ""
+
+#. EMuyW
+#: datapilot_grouping.xhp
+msgctxt ""
+"datapilot_grouping.xhp\n"
+"par_idN10661\n"
+"help.text"
+msgid "The resulting pivot table can contain many different entries. By grouping the entries, you can improve the visible result."
+msgstr ""
+
+#. jwZEk
+#: datapilot_grouping.xhp
+msgctxt ""
+"datapilot_grouping.xhp\n"
+"par_idN10667\n"
+"help.text"
+msgid "Select a cell or range of cells in the pivot table."
+msgstr ""
+
+#. dqrNE
+#: datapilot_grouping.xhp
+msgctxt ""
+"datapilot_grouping.xhp\n"
+"par_idN1066B\n"
+"help.text"
+msgid "Choose <emph>Data - Group and Outline - Group</emph>."
+msgstr ""
+
+#. JwFoj
+#: datapilot_grouping.xhp
+msgctxt ""
+"datapilot_grouping.xhp\n"
+"par_idN1066E\n"
+"help.text"
+msgid "Depending on the format of the selected cells, either a new group field is added to the pivot table, or you see one of the two <link href=\"text/scalc/01/12090400.xhp\">Grouping</link> dialogs, either for numeric values, or for date values."
+msgstr ""
+
+#. smas8
+#: datapilot_grouping.xhp
+msgctxt ""
+"datapilot_grouping.xhp\n"
+"par_id3328653\n"
+"help.text"
+msgid "The pivot table must be organized in a way that grouping can be applied."
+msgstr ""
+
+#. QCfxM
+#: datapilot_grouping.xhp
+msgctxt ""
+"datapilot_grouping.xhp\n"
+"par_idN10682\n"
+"help.text"
+msgid "To remove a grouping, click inside the group, then choose <emph>Data - Group and Outline - Ungroup</emph>."
+msgstr ""
+
+#. CG8kj
+#: datapilot_tipps.xhp
+msgctxt ""
+"datapilot_tipps.xhp\n"
+"tit\n"
+"help.text"
+msgid "Selecting Pivot Table Output Ranges"
+msgstr ""
+
+#. Xwk6m
+#: datapilot_tipps.xhp
+msgctxt ""
+"datapilot_tipps.xhp\n"
+"bm_id3148663\n"
+"help.text"
+msgid "<bookmark_value>pivot table function; preventing data overwriting</bookmark_value><bookmark_value>output ranges of pivot tables</bookmark_value>"
+msgstr ""
+
+#. xFzFx
+#: datapilot_tipps.xhp
+msgctxt ""
+"datapilot_tipps.xhp\n"
+"hd_id3148663\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 ""
+
+#. kikhM
+#: datapilot_tipps.xhp
+msgctxt ""
+"datapilot_tipps.xhp\n"
+"par_id3154123\n"
+"help.text"
+msgid "Click the button <emph>More</emph> in the <emph>Pivot Table</emph> dialog. The dialog will be extended."
+msgstr ""
+
+#. rRGaZ
+#: datapilot_tipps.xhp
+msgctxt ""
+"datapilot_tipps.xhp\n"
+"par_id3153771\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 ""
+
+#. EHd6K
+#: datapilot_tipps.xhp
+msgctxt ""
+"datapilot_tipps.xhp\n"
+"par_id3146974\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 ""
+
+#. qRCKc
+#: datapilot_tipps.xhp
+msgctxt ""
+"datapilot_tipps.xhp\n"
+"par_id3145273\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 ""
+
+#. 6WBqj
+#: datapilot_updatetable.xhp
+msgctxt ""
+"datapilot_updatetable.xhp\n"
+"tit\n"
+"help.text"
+msgid "Updating Pivot Tables"
+msgstr ""
+
+#. 8o6oz
+#: datapilot_updatetable.xhp
+msgctxt ""
+"datapilot_updatetable.xhp\n"
+"bm_id3150792\n"
+"help.text"
+msgid "<bookmark_value>pivot table import</bookmark_value><bookmark_value>pivot table function; refreshing tables</bookmark_value><bookmark_value>recalculating;pivot tables</bookmark_value><bookmark_value>updating;pivot tables</bookmark_value>"
+msgstr ""
+
+#. BxZL2
+#: datapilot_updatetable.xhp
+msgctxt ""
+"datapilot_updatetable.xhp\n"
+"hd_id3150792\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 ""
+
+#. gaKCU
+#: datapilot_updatetable.xhp
+msgctxt ""
+"datapilot_updatetable.xhp\n"
+"par_id3154684\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 ""
+
+#. kDqTU
+#: dbase_files.xhp
+msgctxt ""
+"dbase_files.xhp\n"
+"tit\n"
+"help.text"
+msgid "Importing and Exporting dBASE Files"
+msgstr ""
+
+#. DkG3C
+#: dbase_files.xhp
+msgctxt ""
+"dbase_files.xhp\n"
+"bm_id1226844\n"
+"help.text"
+msgid "<bookmark_value>exporting;spreadsheets to dBASE</bookmark_value> <bookmark_value>importing;dBASE files</bookmark_value> <bookmark_value>dBASE import/export</bookmark_value> <bookmark_value>spreadsheets; importing from/exporting to dBASE files</bookmark_value> <bookmark_value>tables in databases;importing dBASE files</bookmark_value>"
+msgstr ""
+
+#. phARr
+#: dbase_files.xhp
+msgctxt ""
+"dbase_files.xhp\n"
+"par_idN10738\n"
+"help.text"
+msgid "<variable id=\"dbase_files\"><link href=\"text/scalc/guide/dbase_files.xhp\">Importing and Exporting dBASE Files</link></variable>"
+msgstr ""
+
+#. J3aQ5
+#: dbase_files.xhp
+msgctxt ""
+"dbase_files.xhp\n"
+"par_idN10756\n"
+"help.text"
+msgid "You can open and save data in the dBASE file format (*.dbf file extension) in $[officename] Base or a spreadsheet. In %PRODUCTNAME Base, a dBASE database is a folder that contains files with the .dbf file extension. Each file corresponds to a table in the database. Formulas and formatting are lost when you open and save a dBASE file from %PRODUCTNAME."
+msgstr ""
+
+#. jVz9V
+#: dbase_files.xhp
+msgctxt ""
+"dbase_files.xhp\n"
+"par_idN10759\n"
+"help.text"
+msgid "To Import a dBASE File Into a Spreadsheet"
+msgstr ""
+
+#. v3JdV
+#: dbase_files.xhp
+msgctxt ""
+"dbase_files.xhp\n"
+"par_idN10760\n"
+"help.text"
+msgid "Choose <emph>File - Open</emph>."
+msgstr ""
+
+#. FmmZC
+#: dbase_files.xhp
+msgctxt ""
+"dbase_files.xhp\n"
+"par_idN1071F\n"
+"help.text"
+msgid "Locate the *.dbf file that you want to import."
+msgstr ""
+
+#. cBR6P
+#: dbase_files.xhp
+msgctxt ""
+"dbase_files.xhp\n"
+"par_idN10768\n"
+"help.text"
+msgid "Click <emph>Open</emph>."
+msgstr ""
+
+#. WQGdy
+#: dbase_files.xhp
+msgctxt ""
+"dbase_files.xhp\n"
+"par_idN10730\n"
+"help.text"
+msgid "The <emph>Import dBASE files</emph> dialog opens."
+msgstr ""
+
+#. S2JPc
+#: dbase_files.xhp
+msgctxt ""
+"dbase_files.xhp\n"
+"par_idN10774\n"
+"help.text"
+msgid "Click <emph>OK</emph>."
+msgstr ""
+
+#. DBvJH
+#: dbase_files.xhp
+msgctxt ""
+"dbase_files.xhp\n"
+"par_idN10777\n"
+"help.text"
+msgid "The dBASE file opens as a new Calc spreadsheet."
+msgstr ""
+
+#. pLCMp
+#: dbase_files.xhp
+msgctxt ""
+"dbase_files.xhp\n"
+"par_idN1074E\n"
+"help.text"
+msgid "If you want to save the spreadsheet as a dBASE file, do not alter or delete the first row in the imported file. This row contains information that is required by a dBASE database."
+msgstr ""
+
+#. 8hyku
+#: dbase_files.xhp
+msgctxt ""
+"dbase_files.xhp\n"
+"par_idN1077A\n"
+"help.text"
+msgid "To Import a dBASE File Into a Database Table"
+msgstr ""
+
+#. gBiN7
+#: dbase_files.xhp
+msgctxt ""
+"dbase_files.xhp\n"
+"par_idN1076C\n"
+"help.text"
+msgid "A %PRODUCTNAME Base database table is actually a link to an existing database."
+msgstr ""
+
+#. Z2WYv
+#: dbase_files.xhp
+msgctxt ""
+"dbase_files.xhp\n"
+"par_idN10796\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">File - New - Database</item>."
+msgstr ""
+
+#. VtptA
+#: dbase_files.xhp
+msgctxt ""
+"dbase_files.xhp\n"
+"par_idN10786\n"
+"help.text"
+msgid "In the <emph>File name</emph> box of the <emph>Save As</emph> dialog, enter a name for the database."
+msgstr ""
+
+#. KGUEA
+#: dbase_files.xhp
+msgctxt ""
+"dbase_files.xhp\n"
+"par_idN10792\n"
+"help.text"
+msgid "Click <emph>Save</emph>."
+msgstr ""
+
+#. Bz2eB
+#: dbase_files.xhp
+msgctxt ""
+"dbase_files.xhp\n"
+"par_idN1079A\n"
+"help.text"
+msgid "In the <emph>Database type </emph>box of the <emph>Database Properties</emph> dialog, select \"dBASE\"."
+msgstr ""
+
+#. HjBBj
+#: dbase_files.xhp
+msgctxt ""
+"dbase_files.xhp\n"
+"par_idN107A6\n"
+"help.text"
+msgid "Click <emph>Next</emph>."
+msgstr ""
+
+#. w4Hcx
+#: dbase_files.xhp
+msgctxt ""
+"dbase_files.xhp\n"
+"par_idN107AE\n"
+"help.text"
+msgid "Click <emph>Browse</emph>."
+msgstr ""
+
+#. EyJdW
+#: dbase_files.xhp
+msgctxt ""
+"dbase_files.xhp\n"
+"par_idN107B6\n"
+"help.text"
+msgid "Locate the directory that contains the dBASE file, and click <emph>OK</emph>."
+msgstr ""
+
+#. 5kG55
+#: dbase_files.xhp
+msgctxt ""
+"dbase_files.xhp\n"
+"par_idN107BE\n"
+"help.text"
+msgid "Click <emph>Create</emph>."
+msgstr ""
+
+#. rJEHy
+#: dbase_files.xhp
+msgctxt ""
+"dbase_files.xhp\n"
+"par_idN107F1\n"
+"help.text"
+msgid "To Save a Spreadsheet as a dBASE File"
+msgstr ""
+
+#. i2EnS
+#: dbase_files.xhp
+msgctxt ""
+"dbase_files.xhp\n"
+"par_idN107F8\n"
+"help.text"
+msgid "Choose <emph>File - Save As</emph>."
+msgstr ""
+
+#. N4YuB
+#: dbase_files.xhp
+msgctxt ""
+"dbase_files.xhp\n"
+"par_idN10800\n"
+"help.text"
+msgid "In the <emph>File format</emph> box, select \"dBASE file\"."
+msgstr ""
+
+#. rrFCz
+#: dbase_files.xhp
+msgctxt ""
+"dbase_files.xhp\n"
+"par_idN107F9\n"
+"help.text"
+msgid "In the <emph>File name</emph> box, type a name for the dBASE file."
+msgstr ""
+
+#. VW7aF
+#: dbase_files.xhp
+msgctxt ""
+"dbase_files.xhp\n"
+"par_idN10801\n"
+"help.text"
+msgid "Click <emph>Save</emph>."
+msgstr ""
+
+#. WF9Ky
+#: dbase_files.xhp
+msgctxt ""
+"dbase_files.xhp\n"
+"par_idN10808\n"
+"help.text"
+msgid "Only the data on the current sheet is exported."
+msgstr ""
+
+#. kzGEG
+#: design.xhp
+msgctxt ""
+"design.xhp\n"
+"tit\n"
+"help.text"
+msgid "Selecting Themes for Sheets"
+msgstr ""
+
+#. qMsyD
+#: design.xhp
+msgctxt ""
+"design.xhp\n"
+"bm_id3150791\n"
+"help.text"
+msgid "<bookmark_value>theme selection for sheets</bookmark_value><bookmark_value>layout;spreadsheets</bookmark_value><bookmark_value>cell styles; selecting</bookmark_value><bookmark_value>selecting;formatting themes</bookmark_value><bookmark_value>sheets;formatting themes</bookmark_value><bookmark_value>formats;themes for sheets</bookmark_value><bookmark_value>formatting;themes for sheets</bookmark_value>"
+msgstr ""
+
+#. kBFhA
+#: design.xhp
+msgctxt ""
+"design.xhp\n"
+"hd_id3150791\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 ""
+
+#. axrVR
+#: design.xhp
+msgctxt ""
+"design.xhp\n"
+"par_id3145786\n"
+"help.text"
+msgid "$[officename] Calc comes with a predefined set of formatting themes that you can apply to your spreadsheets."
+msgstr ""
+
+#. eAC5E
+#: design.xhp
+msgctxt ""
+"design.xhp\n"
+"par_id3154490\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 ""
+
+#. ZD2hJ
+#: design.xhp
+msgctxt ""
+"design.xhp\n"
+"par_id3154757\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 ""
+
+#. CbouS
+#: design.xhp
+msgctxt ""
+"design.xhp\n"
+"par_id3156382\n"
+"help.text"
+msgid "To apply a custom cell style to a cell, you can open the Styles 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 window to apply this style to the selected cells."
+msgstr ""
+
+#. 6zVVD
+#: design.xhp
+msgctxt ""
+"design.xhp\n"
+"par_id3153963\n"
+"help.text"
+msgid "To apply a theme to a spreadsheet:"
+msgstr ""
+
+#. FFRn8
+#: design.xhp
+msgctxt ""
+"design.xhp\n"
+"par_id3146920\n"
+"help.text"
+msgid "Click the <emph>Choose Themes</emph> icon in the <emph>Tools</emph> bar."
+msgstr ""
+
+#. yEAwo
+#: design.xhp
+msgctxt ""
+"design.xhp\n"
+"par_id3148488\n"
+"help.text"
+msgid "The <emph>Theme Selection</emph> dialog appears. This dialog lists the available themes for the whole spreadsheet and the Styles window lists the custom styles for specific cells."
+msgstr ""
+
+#. BgEap
+#: design.xhp
+msgctxt ""
+"design.xhp\n"
+"par_id3155114\n"
+"help.text"
+msgid "In the <emph>Theme Selection </emph>dialog, select the theme that you want to apply to the spreadsheet."
+msgstr ""
+
+#. mhFa5
+#: design.xhp
+msgctxt ""
+"design.xhp\n"
+"par_id3150090\n"
+"help.text"
+msgid "Click OK"
+msgstr ""
+
+#. QfPpn
+#: design.xhp
+msgctxt ""
+"design.xhp\n"
+"par_id3150201\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 ""
+
+#. CG6ba
+#: design.xhp
+msgctxt ""
+"design.xhp\n"
+"par_id3146979\n"
+"help.text"
+msgid "<link href=\"text/scalc/02/06080000.xhp\" name=\"Theme selection\">Theme selection</link>"
+msgstr ""
+
+#. t5ETg
+#: edit_multitables.xhp
+msgctxt ""
+"edit_multitables.xhp\n"
+"tit\n"
+"help.text"
+msgid "Copying to Multiple Sheets"
+msgstr ""
+
+#. BbCnT
+#: edit_multitables.xhp
+msgctxt ""
+"edit_multitables.xhp\n"
+"bm_id3149456\n"
+"help.text"
+msgid "<bookmark_value>copying;values, to multiple sheets</bookmark_value><bookmark_value>pasting;values in multiple sheets</bookmark_value><bookmark_value>data;inserting in multiple sheets</bookmark_value><bookmark_value>sheets; simultaneous multiple filling</bookmark_value>"
+msgstr ""
+
+#. TTfnY
+#: edit_multitables.xhp
+msgctxt ""
+"edit_multitables.xhp\n"
+"hd_id3149456\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 ""
+
+#. 4sMCm
+#: edit_multitables.xhp
+msgctxt ""
+"edit_multitables.xhp\n"
+"par_id3150868\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 ""
+
+#. Z4D7x
+#: edit_multitables.xhp
+msgctxt ""
+"edit_multitables.xhp\n"
+"par_id3153768\n"
+"help.text"
+msgid "Select all desired sheets by holding down the <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command</emph></caseinline><defaultinline><emph>Ctrl</emph></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 ""
+
+#. xSB4o
+#: edit_multitables.xhp
+msgctxt ""
+"edit_multitables.xhp\n"
+"par_idN10614\n"
+"help.text"
+msgid "You can use <emph>Shift</emph>+<switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline>+<emph>Page Up</emph> or <emph>Page Down</emph> to select multiple sheets using the keyboard."
+msgstr ""
+
+#. bwHKS
+#: edit_multitables.xhp
+msgctxt ""
+"edit_multitables.xhp\n"
+"par_id3147435\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 selected sheet."
+msgstr ""
+
+#. ASuDk
+#: filters.xhp
+msgctxt ""
+"filters.xhp\n"
+"tit\n"
+"help.text"
+msgid "Applying Filters"
+msgstr ""
+
+#. vAkUj
+#: filters.xhp
+msgctxt ""
+"filters.xhp\n"
+"bm_id3153896\n"
+"help.text"
+msgid "<bookmark_value>filters; applying/removing</bookmark_value> <bookmark_value>rows;removing/redisplaying with filters</bookmark_value> <bookmark_value>removing;filters</bookmark_value>"
+msgstr ""
+
+#. gcyYi
+#: filters.xhp
+msgctxt ""
+"filters.xhp\n"
+"hd_id3153896\n"
+"help.text"
+msgid "<variable id=\"filters\"><link href=\"text/scalc/guide/filters.xhp\" name=\"Applying Filters\">Applying Filters</link></variable>"
+msgstr ""
+
+#. d4Uux
+#: filters.xhp
+msgctxt ""
+"filters.xhp\n"
+"par_id3150869\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 ""
+
+#. XnoBc
+#: filters.xhp
+msgctxt ""
+"filters.xhp\n"
+"par_id3155131\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 ""
+
+#. mbcRS
+#: filters.xhp
+msgctxt ""
+"filters.xhp\n"
+"par_id3146119\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 ""
+
+#. YtHEq
+#: filters.xhp
+msgctxt ""
+"filters.xhp\n"
+"par_id3150010\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 ""
+
+#. tffpp
+#: filters.xhp
+msgctxt ""
+"filters.xhp\n"
+"par_id9384746\n"
+"help.text"
+msgid "To remove a filter, so that you see all cells again, click inside the area where the filter was applied, then choose <item type=\"menuitem\">Data - Filter - Reset Filter</item>."
+msgstr ""
+
+#. E2EfB
+#: filters.xhp
+msgctxt ""
+"filters.xhp\n"
+"par_idN10663\n"
+"help.text"
+msgid "When you select multiple rows from an area where a filter was applied, then this selection can include rows that are visible and rows that are hidden by the filter. If you then apply formatting, or delete the selected rows, this action then applies only to the visible rows. The hidden rows are not affected."
+msgstr ""
+
+#. LAuWM
+#: filters.xhp
+msgctxt ""
+"filters.xhp\n"
+"par_id218817\n"
+"help.text"
+msgid "This is the opposite to rows that you have hidden manually by the <emph>Format - Rows - Hide Rows</emph> command. Manually hidden rows are deleted when you delete a selection that contains them."
+msgstr ""
+
+#. 8sxJn
+#: finding.xhp
+msgctxt ""
+"finding.xhp\n"
+"tit\n"
+"help.text"
+msgid "Finding and Replacing in Calc"
+msgstr ""
+
+#. qSAcB
+#: finding.xhp
+msgctxt ""
+"finding.xhp\n"
+"bm_id3769341\n"
+"help.text"
+msgid "<bookmark_value>searching, see also finding</bookmark_value><bookmark_value>finding;formulas/values/text/objects</bookmark_value><bookmark_value>replacing; cell contents</bookmark_value><bookmark_value>formatting;multiple cell texts</bookmark_value>"
+msgstr ""
+
+#. riEkj
+#: finding.xhp
+msgctxt ""
+"finding.xhp\n"
+"hd_id3149204\n"
+"help.text"
+msgid "<variable id=\"finding\"><link href=\"text/scalc/guide/finding.xhp\">Finding and Replacing in Calc</link></variable>"
+msgstr ""
+
+#. uzefv
+#: finding.xhp
+msgctxt ""
+"finding.xhp\n"
+"par_id9363689\n"
+"help.text"
+msgid "In spreadsheet documents you can find words, formulas, and styles. You can navigate from one result to the next, or you can highlight all matching cells at once, then apply another format or replace the cell content by other content."
+msgstr ""
+
+#. xm5HB
+#: finding.xhp
+msgctxt ""
+"finding.xhp\n"
+"hd_id3610644\n"
+"help.text"
+msgid "The Find & Replace dialog"
+msgstr ""
+
+#. iACsJ
+#: finding.xhp
+msgctxt ""
+"finding.xhp\n"
+"par_id2224494\n"
+"help.text"
+msgid "Cells can contain text or numbers that were entered directly as in a text document. But cells can also contain text or numbers as the result of a calculation. For example, if a cell contains the formula =1+2 it displays the result 3. You must decide whether to search for the 1 respective 2, or to search the 3."
+msgstr ""
+
+#. tbVVd
+#: finding.xhp
+msgctxt ""
+"finding.xhp\n"
+"hd_id2423780\n"
+"help.text"
+msgid "To find formulas or values"
+msgstr ""
+
+#. zstCf
+#: finding.xhp
+msgctxt ""
+"finding.xhp\n"
+"par_id2569658\n"
+"help.text"
+msgid "You can specify in the Find & Replace dialog either to find the parts of a formula or the results of a calculation."
+msgstr ""
+
+#. C6cDQ
+#: finding.xhp
+msgctxt ""
+"finding.xhp\n"
+"par_id6394238\n"
+"help.text"
+msgid "Choose <emph>Edit - Find & Replace</emph> to open the Find & Replace dialog."
+msgstr ""
+
+#. cAUtG
+#: finding.xhp
+msgctxt ""
+"finding.xhp\n"
+"par_id7214270\n"
+"help.text"
+msgid "Click <emph>More Options</emph> to expand the dialog."
+msgstr ""
+
+#. wX8ZD
+#: finding.xhp
+msgctxt ""
+"finding.xhp\n"
+"par_id2186346\n"
+"help.text"
+msgid "Select \"Formulas\" or \"Values\" in the <emph>Search in</emph> list box."
+msgstr ""
+
+#. nWDYw
+#: finding.xhp
+msgctxt ""
+"finding.xhp\n"
+"par_id1331217\n"
+"help.text"
+msgid "With \"Formulas\" you will find all parts of the formulas."
+msgstr ""
+
+#. iERyD
+#: finding.xhp
+msgctxt ""
+"finding.xhp\n"
+"par_id393993\n"
+"help.text"
+msgid "With \"Values\" you will find the results of the calculations."
+msgstr ""
+
+#. FMaXJ
+#: finding.xhp
+msgctxt ""
+"finding.xhp\n"
+"par_id3163853\n"
+"help.text"
+msgid "Cell contents can be formatted in different ways. For example, a number can be formatted as a currency, to be displayed with a currency symbol. These symbols are included in searches when the Formatted Display search option is activated."
+msgstr ""
+
+#. Z4ABm
+#: finding.xhp
+msgctxt ""
+"finding.xhp\n"
+"hd_id7359233\n"
+"help.text"
+msgid "Finding text"
+msgstr ""
+
+#. uf8Kc
+#: finding.xhp
+msgctxt ""
+"finding.xhp\n"
+"par_id6549272\n"
+"help.text"
+msgid "Choose <emph>Edit - Find & Replace</emph> to open the Find & Replace dialog."
+msgstr ""
+
+#. 5DY4k
+#: finding.xhp
+msgctxt ""
+"finding.xhp\n"
+"par_id6529740\n"
+"help.text"
+msgid "Enter the text to find in the <emph>Find</emph> text box."
+msgstr ""
+
+#. pMEpA
+#: finding.xhp
+msgctxt ""
+"finding.xhp\n"
+"par_id9121982\n"
+"help.text"
+msgid "Either click <emph>Find Next</emph> or <emph>Find All</emph>."
+msgstr ""
+
+#. E4Qgi
+#: finding.xhp
+msgctxt ""
+"finding.xhp\n"
+"par_id3808404\n"
+"help.text"
+msgid "When you click <emph>Find Next</emph>, Calc will select the next cell that contains your text. You can watch and edit the text, then click <emph>Find Next</emph> again to advance to the next found cell."
+msgstr ""
+
+#. TcnxV
+#: finding.xhp
+msgctxt ""
+"finding.xhp\n"
+"par_id2394482\n"
+"help.text"
+msgid "If you closed the dialog, you can press a key combination (<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+F) to find the next cell without opening the dialog."
+msgstr ""
+
+#. r5FfG
+#: finding.xhp
+msgctxt ""
+"finding.xhp\n"
+"par_id631733\n"
+"help.text"
+msgid "By default, Calc searches the current sheet. Check the <emph>All sheets</emph> box to search through all sheets of the document."
+msgstr ""
+
+#. ahmfD
+#: finding.xhp
+msgctxt ""
+"finding.xhp\n"
+"par_id7811822\n"
+"help.text"
+msgid "When you click <emph>Find All</emph>, Calc selects all cells that contain your entry. Now you can for example set all found cells to bold, or apply a Cell Style to all at once."
+msgstr ""
+
+#. 2DBXW
+#: finding.xhp
+msgctxt ""
+"finding.xhp\n"
+"hd_id8531449\n"
+"help.text"
+msgid "The Navigator"
+msgstr ""
+
+#. FFkBL
+#: finding.xhp
+msgctxt ""
+"finding.xhp\n"
+"par_id9183935\n"
+"help.text"
+msgid "Choose <emph>View - Navigator</emph> to open the Navigator window."
+msgstr ""
+
+#. yAdcD
+#: finding.xhp
+msgctxt ""
+"finding.xhp\n"
+"par_id946684\n"
+"help.text"
+msgid "The Navigator is the main tool for finding and selecting objects."
+msgstr ""
+
+#. 4Ezz7
+#: finding.xhp
+msgctxt ""
+"finding.xhp\n"
+"par_id9607226\n"
+"help.text"
+msgid "Use the Navigator for inserting objects and links within the same document or from other open documents."
+msgstr ""
+
+#. Zg9uE
+#: format_table.xhp
+msgctxt ""
+"format_table.xhp\n"
+"tit\n"
+"help.text"
+msgid "Formatting Spreadsheets"
+msgstr ""
+
+#. CuVCu
+#: format_table.xhp
+msgctxt ""
+"format_table.xhp\n"
+"bm_id3154125\n"
+"help.text"
+msgid "<bookmark_value>text in cells; formatting</bookmark_value><bookmark_value>spreadsheets;formatting</bookmark_value><bookmark_value>backgrounds;cells and pages</bookmark_value><bookmark_value>borders;cells and pages</bookmark_value><bookmark_value>formatting;spreadsheets</bookmark_value><bookmark_value>numbers; formatting options for selected cells</bookmark_value><bookmark_value>cells; number formats</bookmark_value><bookmark_value>currencies;formats</bookmark_value>"
+msgstr ""
+
+#. Aairv
+#: format_table.xhp
+msgctxt ""
+"format_table.xhp\n"
+"hd_id3154125\n"
+"help.text"
+msgid "<variable id=\"format_table\"><link href=\"text/scalc/guide/format_table.xhp\" name=\"Designing Spreadsheets\">Formatting Spreadsheets</link></variable>"
+msgstr ""
+
+#. WMnGx
+#: format_table.xhp
+msgctxt ""
+"format_table.xhp\n"
+"hd_id3153912\n"
+"help.text"
+msgid "Formatting Text in a Spreadsheet"
+msgstr ""
+
+#. EG9vg
+#: format_table.xhp
+msgctxt ""
+"format_table.xhp\n"
+"par_id3144772\n"
+"help.text"
+msgid "Select the text you want to format."
+msgstr ""
+
+#. dcUPy
+#: format_table.xhp
+msgctxt ""
+"format_table.xhp\n"
+"par_id3155268\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 ""
+
+#. 5fukM
+#: format_table.xhp
+msgctxt ""
+"format_table.xhp\n"
+"hd_id3149899\n"
+"help.text"
+msgid "Formatting Numbers in a Spreadsheet"
+msgstr ""
+
+#. SjM5x
+#: format_table.xhp
+msgctxt ""
+"format_table.xhp\n"
+"par_id3159226\n"
+"help.text"
+msgid "Select the cells containing the numbers you want to format."
+msgstr ""
+
+#. 8qkZC
+#: format_table.xhp
+msgctxt ""
+"format_table.xhp\n"
+"par_id3150046\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 ""
+
+#. QxDDZ
+#: format_table.xhp
+msgctxt ""
+"format_table.xhp\n"
+"hd_id3153483\n"
+"help.text"
+msgid "Formatting Borders and Backgrounds for Cells and Pages"
+msgstr ""
+
+#. PpEbj
+#: format_table.xhp
+msgctxt ""
+"format_table.xhp\n"
+"par_id3154733\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 - Cells</item>. In this dialog, you can select attributes such as shadows and backgrounds."
+msgstr ""
+
+#. G3rCM
+#: format_table.xhp
+msgctxt ""
+"format_table.xhp\n"
+"par_id3145116\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 ""
+
+#. VUH7Y
+#: format_table.xhp
+msgctxt ""
+"format_table.xhp\n"
+"par_id3145389\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 ""
+
+#. vvAFw
+#: format_table.xhp
+msgctxt ""
+"format_table.xhp\n"
+"par_id2837916\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05020300.xhp\">Number Formatting Options</link>"
+msgstr ""
+
+#. umrzR
+#: format_table.xhp
+msgctxt ""
+"format_table.xhp\n"
+"par_id2614215\n"
+"help.text"
+msgid "<link href=\"text/scalc/guide/background.xhp\">Backgrounds for Cells</link>"
+msgstr ""
+
+#. S9XPt
+#: format_value.xhp
+msgctxt ""
+"format_value.xhp\n"
+"tit\n"
+"help.text"
+msgid "Formatting Numbers With Decimals"
+msgstr ""
+
+#. vXT2D
+#: format_value.xhp
+msgctxt ""
+"format_value.xhp\n"
+"bm_id3145367\n"
+"help.text"
+msgid "<bookmark_value>numbers;formatting decimals</bookmark_value> <bookmark_value>formats; numbers in tables</bookmark_value> <bookmark_value>tables; number formats</bookmark_value> <bookmark_value>defaults; number formats in spreadsheets</bookmark_value> <bookmark_value>decimal places;formatting numbers</bookmark_value> <bookmark_value>formatting;numbers with decimals</bookmark_value> <bookmark_value>formatting;adding/deleting decimal places</bookmark_value> <bookmark_value>number formats; adding/deleting decimal places in cells</bookmark_value> <bookmark_value>deleting; decimal places</bookmark_value> <bookmark_value>decimal places; adding/deleting</bookmark_value>"
+msgstr ""
+
+#. Qe83k
+#: format_value.xhp
+msgctxt ""
+"format_value.xhp\n"
+"hd_id3145367\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 ""
+
+#. MBqzn
+#: format_value.xhp
+msgctxt ""
+"format_value.xhp\n"
+"par_id3148576\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 ""
+
+#. 5PHhG
+#: format_value.xhp
+msgctxt ""
+"format_value.xhp\n"
+"par_id3154012\n"
+"help.text"
+msgid "To format numbers with decimals:"
+msgstr ""
+
+#. 3AGec
+#: format_value.xhp
+msgctxt ""
+"format_value.xhp\n"
+"par_id3147394\n"
+"help.text"
+msgid "Set the cursor at the number and choose <emph>Format - Cells</emph> to start the <emph>Format Cells</emph> dialog."
+msgstr ""
+
+#. 6rPBs
+#: format_value.xhp
+msgctxt ""
+"format_value.xhp\n"
+"par_id3153157\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 ""
+
+#. EpfA6
+#: format_value.xhp
+msgctxt ""
+"format_value.xhp\n"
+"par_id3155766\n"
+"help.text"
+msgid "<image id=\"img_id3149021\" src=\"cmd/sc_numberformatincdecimals.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149021\">Icon</alt></image>"
+msgstr ""
+
+#. RuWXz
+#: format_value.xhp
+msgctxt ""
+"format_value.xhp\n"
+"par_id3149256\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 ""
+
+#. 4h8BG
+#: format_value_userdef.xhp
+msgctxt ""
+"format_value_userdef.xhp\n"
+"tit\n"
+"help.text"
+msgid "User-defined Number Formats"
+msgstr ""
+
+#. GcvLD
+#: format_value_userdef.xhp
+msgctxt ""
+"format_value_userdef.xhp\n"
+"bm_id3143268\n"
+"help.text"
+msgid "<bookmark_value>numbers;user-defined formatting</bookmark_value> <bookmark_value>formatting; user-defined numbers</bookmark_value> <bookmark_value>number formats; millions</bookmark_value> <bookmark_value>format codes; user-defined number formats</bookmark_value>"
+msgstr ""
+
+#. VbsDd
+#: format_value_userdef.xhp
+msgctxt ""
+"format_value_userdef.xhp\n"
+"hd_id3143268\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 ""
+
+#. AGNss
+#: format_value_userdef.xhp
+msgctxt ""
+"format_value_userdef.xhp\n"
+"par_id3150400\n"
+"help.text"
+msgid "You can define your own number formats to display numbers in <item type=\"productname\">%PRODUCTNAME</item> Calc."
+msgstr ""
+
+#. NFeoQ
+#: format_value_userdef.xhp
+msgctxt ""
+"format_value_userdef.xhp\n"
+"par_id3150767\n"
+"help.text"
+msgid "As an example, to display the number 10,200,000 as 10.2 Million:"
+msgstr ""
+
+#. D3ZeE
+#: format_value_userdef.xhp
+msgctxt ""
+"format_value_userdef.xhp\n"
+"par_id3150868\n"
+"help.text"
+msgid "Select the cells to which you want to apply a new, user-defined format."
+msgstr ""
+
+#. EWTbr
+#: format_value_userdef.xhp
+msgctxt ""
+"format_value_userdef.xhp\n"
+"par_id3149664\n"
+"help.text"
+msgid "Choose <emph>Format - Cells - Numbers</emph>."
+msgstr ""
+
+#. dDV7y
+#: format_value_userdef.xhp
+msgctxt ""
+"format_value_userdef.xhp\n"
+"par_id3149260\n"
+"help.text"
+msgid "In the <emph>Categories</emph> list box select \"User-defined\"."
+msgstr ""
+
+#. CAX4U
+#: format_value_userdef.xhp
+msgctxt ""
+"format_value_userdef.xhp\n"
+"par_id3148646\n"
+"help.text"
+msgid "In the <emph>Format code</emph> text box enter the following code:"
+msgstr ""
+
+#. dkHFm
+#: format_value_userdef.xhp
+msgctxt ""
+"format_value_userdef.xhp\n"
+"par_id3152596\n"
+"help.text"
+msgid "0.0,, \"Million\""
+msgstr ""
+
+#. tRigu
+#: format_value_userdef.xhp
+msgctxt ""
+"format_value_userdef.xhp\n"
+"par_id3144764\n"
+"help.text"
+msgid "Click OK."
+msgstr ""
+
+#. BeeYr
+#: format_value_userdef.xhp
+msgctxt ""
+"format_value_userdef.xhp\n"
+"par_id3155417\n"
+"help.text"
+msgid "The following table shows the effects of rounding, thousands delimiters (,), decimal delimiters (.) and the placeholders # and 0."
+msgstr ""
+
+#. rhoNR
+#: format_value_userdef.xhp
+msgctxt ""
+"format_value_userdef.xhp\n"
+"par_id3146971\n"
+"help.text"
+msgid "Number"
+msgstr ""
+
+#. gcKFX
+#: format_value_userdef.xhp
+msgctxt ""
+"format_value_userdef.xhp\n"
+"par_id3154757\n"
+"help.text"
+msgid ".#,, \"Million\""
+msgstr ""
+
+#. ZDWJV
+#: format_value_userdef.xhp
+msgctxt ""
+"format_value_userdef.xhp\n"
+"par_id3147338\n"
+"help.text"
+msgid "0.0,, \"Million\""
+msgstr ""
+
+#. F3THi
+#: format_value_userdef.xhp
+msgctxt ""
+"format_value_userdef.xhp\n"
+"par_id3146920\n"
+"help.text"
+msgid "#,, \"Million\""
+msgstr ""
+
+#. CWvSi
+#: format_value_userdef.xhp
+msgctxt ""
+"format_value_userdef.xhp\n"
+"par_id3147344\n"
+"help.text"
+msgid "10200000"
+msgstr ""
+
+#. LXQ8t
+#: format_value_userdef.xhp
+msgctxt ""
+"format_value_userdef.xhp\n"
+"par_id3147003\n"
+"help.text"
+msgid "10.2 Million"
+msgstr ""
+
+#. eYXd4
+#: format_value_userdef.xhp
+msgctxt ""
+"format_value_userdef.xhp\n"
+"par_id3166426\n"
+"help.text"
+msgid "10.2 Million"
+msgstr ""
+
+#. zDUuF
+#: format_value_userdef.xhp
+msgctxt ""
+"format_value_userdef.xhp\n"
+"par_id3155113\n"
+"help.text"
+msgid "10 Million"
+msgstr ""
+
+#. PLajw
+#: format_value_userdef.xhp
+msgctxt ""
+"format_value_userdef.xhp\n"
+"par_id3150369\n"
+"help.text"
+msgid "500000"
+msgstr ""
+
+#. jKNEA
+#: format_value_userdef.xhp
+msgctxt ""
+"format_value_userdef.xhp\n"
+"par_id3145585\n"
+"help.text"
+msgid ".5 Million"
+msgstr ""
+
+#. rpB7A
+#: format_value_userdef.xhp
+msgctxt ""
+"format_value_userdef.xhp\n"
+"par_id3154486\n"
+"help.text"
+msgid "0.5 Million"
+msgstr ""
+
+#. Bao4X
+#: format_value_userdef.xhp
+msgctxt ""
+"format_value_userdef.xhp\n"
+"par_id3146114\n"
+"help.text"
+msgid "1 Million"
+msgstr ""
+
+#. kqXDb
+#: format_value_userdef.xhp
+msgctxt ""
+"format_value_userdef.xhp\n"
+"par_id3155810\n"
+"help.text"
+msgid "100000000"
+msgstr ""
+
+#. PMVAd
+#: format_value_userdef.xhp
+msgctxt ""
+"format_value_userdef.xhp\n"
+"par_id3153818\n"
+"help.text"
+msgid "100. Million"
+msgstr ""
+
+#. h9FjQ
+#: format_value_userdef.xhp
+msgctxt ""
+"format_value_userdef.xhp\n"
+"par_id3151241\n"
+"help.text"
+msgid "100.0 Million"
+msgstr ""
+
+#. 9GBRG
+#: format_value_userdef.xhp
+msgctxt ""
+"format_value_userdef.xhp\n"
+"par_id3144771\n"
+"help.text"
+msgid "100 Million"
+msgstr ""
+
+#. chVng
+#: formula_copy.xhp
+msgctxt ""
+"formula_copy.xhp\n"
+"tit\n"
+"help.text"
+msgid "Copying Formulas"
+msgstr ""
+
+#. AKeo5
+#: formula_copy.xhp
+msgctxt ""
+"formula_copy.xhp\n"
+"bm_id3151113\n"
+"help.text"
+msgid "<bookmark_value>formulas; copying and pasting</bookmark_value><bookmark_value>copying; formulas</bookmark_value><bookmark_value>pasting;formulas</bookmark_value>"
+msgstr ""
+
+#. Qtkdo
+#: formula_copy.xhp
+msgctxt ""
+"formula_copy.xhp\n"
+"hd_id3151113\n"
+"help.text"
+msgid "<variable id=\"formula_copy\"><link href=\"text/scalc/guide/formula_copy.xhp\" name=\"Copying Formulas\">Copying Formulas</link></variable>"
+msgstr ""
+
+#. 3ZujS
+#: formula_copy.xhp
+msgctxt ""
+"formula_copy.xhp\n"
+"par_id3156424\n"
+"help.text"
+msgid "There are various ways to copy a formula. One suggested method is:"
+msgstr ""
+
+#. ujCBT
+#: formula_copy.xhp
+msgctxt ""
+"formula_copy.xhp\n"
+"par_id3150439\n"
+"help.text"
+msgid "Select the cell containing the formula."
+msgstr ""
+
+#. ZofEF
+#: formula_copy.xhp
+msgctxt ""
+"formula_copy.xhp\n"
+"par_id3154319\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 ""
+
+#. r3npC
+#: formula_copy.xhp
+msgctxt ""
+"formula_copy.xhp\n"
+"par_id3159155\n"
+"help.text"
+msgid "Select the cell into which you want the formula to be copied."
+msgstr ""
+
+#. BTcCF
+#: formula_copy.xhp
+msgctxt ""
+"formula_copy.xhp\n"
+"par_id3153728\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 ""
+
+#. atCgW
+#: formula_copy.xhp
+msgctxt ""
+"formula_copy.xhp\n"
+"par_id3149961\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 ""
+
+#. gyrPq
+#: formula_copy.xhp
+msgctxt ""
+"formula_copy.xhp\n"
+"par_id3149400\n"
+"help.text"
+msgid "Select the cell containing the formula."
+msgstr ""
+
+#. fx7Nc
+#: formula_copy.xhp
+msgctxt ""
+"formula_copy.xhp\n"
+"par_id3154018\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 ""
+
+#. BmZDf
+#: formula_copy.xhp
+msgctxt ""
+"formula_copy.xhp\n"
+"par_id3150749\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 ""
+
+#. 5LuK6
+#: formula_copy.xhp
+msgctxt ""
+"formula_copy.xhp\n"
+"par_id3153714\n"
+"help.text"
+msgid "When you release the mouse button, the formula will be copied into the cells and automatically adjusted."
+msgstr ""
+
+#. Ajamz
+#: formula_copy.xhp
+msgctxt ""
+"formula_copy.xhp\n"
+"par_id3156385\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 ""
+
+#. MrTXu
+#: formula_enter.xhp
+msgctxt ""
+"formula_enter.xhp\n"
+"tit\n"
+"help.text"
+msgid "Entering Formulas"
+msgstr ""
+
+#. N8kvv
+#: formula_enter.xhp
+msgctxt ""
+"formula_enter.xhp\n"
+"bm_id3150868\n"
+"help.text"
+msgid "<bookmark_value>formula bar; input line</bookmark_value><bookmark_value>input line in formula bar</bookmark_value><bookmark_value>formulas; inputting</bookmark_value><bookmark_value>inserting;formulas</bookmark_value>"
+msgstr ""
+
+#. rP8CF
+#: formula_enter.xhp
+msgctxt ""
+"formula_enter.xhp\n"
+"hd_id3150868\n"
+"help.text"
+msgid "<variable id=\"formula_enter\"><link href=\"text/scalc/guide/formula_enter.xhp\" name=\"Entering Formulas\">Entering Formulas</link></variable>"
+msgstr ""
+
+#. H3w2m
+#: formula_enter.xhp
+msgctxt ""
+"formula_enter.xhp\n"
+"par_id6848353\n"
+"help.text"
+msgid "You can enter formulas in several ways: using the icons, or by typing on the keyboard, or by a mixture of both methods."
+msgstr ""
+
+#. HXqkB
+#: formula_enter.xhp
+msgctxt ""
+"formula_enter.xhp\n"
+"par_id3145364\n"
+"help.text"
+msgid "Click the cell in which you want to enter the formula."
+msgstr ""
+
+#. MT9ac
+#: formula_enter.xhp
+msgctxt ""
+"formula_enter.xhp\n"
+"par_id3150012\n"
+"help.text"
+msgid "Click the <emph>Function</emph> icon on the Formula Bar."
+msgstr ""
+
+#. jtUAV
+#: formula_enter.xhp
+msgctxt ""
+"formula_enter.xhp\n"
+"par_id3156441\n"
+"help.text"
+msgid "You will now see an equals sign in the input line and you can begin to input the formula."
+msgstr ""
+
+#. 6zCUk
+#: formula_enter.xhp
+msgctxt ""
+"formula_enter.xhp\n"
+"par_id3153726\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 ""
+
+#. b4AH4
+#: formula_enter.xhp
+msgctxt ""
+"formula_enter.xhp\n"
+"par_id3147394\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 ""
+
+#. qLCxa
+#: formula_enter.xhp
+msgctxt ""
+"formula_enter.xhp\n"
+"par_id4206976\n"
+"help.text"
+msgid "You can also press the + or - key on the numerical keyboard to start a formula. NumLock must be \"on\". For example, press the following keys in succession:"
+msgstr ""
+
+#. 7dRd8
+#: formula_enter.xhp
+msgctxt ""
+"formula_enter.xhp\n"
+"par_id1836909\n"
+"help.text"
+msgid "+ 5 0 - 8 Enter"
+msgstr ""
+
+#. pADVE
+#: formula_enter.xhp
+msgctxt ""
+"formula_enter.xhp\n"
+"par_id8171330\n"
+"help.text"
+msgid "You see the result <item type=\"literal\">42</item> in the cell. The cell contains the formula <item type=\"literal\">=+50-8</item>."
+msgstr ""
+
+#. KGDF3
+#: formula_enter.xhp
+msgctxt ""
+"formula_enter.xhp\n"
+"par_id3155764\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 ""
+
+#. G2WDH
+#: formula_enter.xhp
+msgctxt ""
+"formula_enter.xhp\n"
+"par_id3149210\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 ""
+
+#. 3zBJH
+#: formula_enter.xhp
+msgctxt ""
+"formula_enter.xhp\n"
+"par_id3150304\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 ""
+
+#. GXy6w
+#: formula_enter.xhp
+msgctxt ""
+"formula_enter.xhp\n"
+"par_id3152993\n"
+"help.text"
+msgid "<link href=\"text/scalc/main0206.xhp\" name=\"Formula bar\">Formula bar</link>"
+msgstr ""
+
+#. a5yvD
+#: formula_value.xhp
+msgctxt ""
+"formula_value.xhp\n"
+"tit\n"
+"help.text"
+msgid "Displaying Formulas or Values"
+msgstr ""
+
+#. CSD33
+#: formula_value.xhp
+msgctxt ""
+"formula_value.xhp\n"
+"bm_id3153195\n"
+"help.text"
+msgid "<bookmark_value>formulas; displaying in cells</bookmark_value><bookmark_value>values; displaying in tables</bookmark_value><bookmark_value>tables; displaying formulas/values</bookmark_value><bookmark_value>results display vs. formulas display</bookmark_value><bookmark_value>displaying; formulas instead of results</bookmark_value>"
+msgstr ""
+
+#. CAjGG
+#: formula_value.xhp
+msgctxt ""
+"formula_value.xhp\n"
+"hd_id3153195\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 ""
+
+#. MeZFx
+#: formula_value.xhp
+msgctxt ""
+"formula_value.xhp\n"
+"par_id3150010\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 ""
+
+#. PADBf
+#: formula_value.xhp
+msgctxt ""
+"formula_value.xhp\n"
+"par_id3151116\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 ""
+
+#. 6tdYB
+#: formula_value.xhp
+msgctxt ""
+"formula_value.xhp\n"
+"par_id3146120\n"
+"help.text"
+msgid "In the <emph>Display</emph> area mark the <emph>Formulas</emph> box. Click OK."
+msgstr ""
+
+#. Q5PPt
+#: formula_value.xhp
+msgctxt ""
+"formula_value.xhp\n"
+"par_id3147396\n"
+"help.text"
+msgid "If you want to view the calculation results instead of the formula, do not mark the Formulas box."
+msgstr ""
+
+#. iDByM
+#: formula_value.xhp
+msgctxt ""
+"formula_value.xhp\n"
+"par_id3153157\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 ""
+
+#. xBkFL
+#: formulas.xhp
+msgctxt ""
+"formulas.xhp\n"
+"tit\n"
+"help.text"
+msgid "Calculating With Formulas"
+msgstr ""
+
+#. 5J8TF
+#: formulas.xhp
+msgctxt ""
+"formulas.xhp\n"
+"bm_id3155411\n"
+"help.text"
+msgid "<bookmark_value>formulas;calculating with</bookmark_value><bookmark_value>calculating; with formulas</bookmark_value><bookmark_value>examples;formula calculation</bookmark_value>"
+msgstr ""
+
+#. EQdXT
+#: formulas.xhp
+msgctxt ""
+"formulas.xhp\n"
+"hd_id3155411\n"
+"help.text"
+msgid "<variable id=\"formulas\"><link href=\"text/scalc/guide/formulas.xhp\" name=\"Calculating With Formulas\">Calculating With Formulas</link></variable>"
+msgstr ""
+
+#. iVVxK
+#: formulas.xhp
+msgctxt ""
+"formulas.xhp\n"
+"par_id3156281\n"
+"help.text"
+msgid "All formulas begin with an equals sign. The formulas can contain numbers, text, arithmetic operators, logic operators, or functions."
+msgstr ""
+
+#. VMHDP
+#: formulas.xhp
+msgctxt ""
+"formulas.xhp\n"
+"par_id3145272\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 ""
+
+#. pr9Zq
+#: formulas.xhp
+msgctxt ""
+"formulas.xhp\n"
+"par_id3146119\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 ""
+
+#. xyGTS
+#: formulas.xhp
+msgctxt ""
+"formulas.xhp\n"
+"par_id3156285\n"
+"help.text"
+msgid "Here are a few examples of $[officename] Calc formulas:"
+msgstr ""
+
+#. suAfx
+#: formulas.xhp
+msgctxt ""
+"formulas.xhp\n"
+"par_id3154015\n"
+"help.text"
+msgid "=A1+10"
+msgstr ""
+
+#. CBA6j
+#: formulas.xhp
+msgctxt ""
+"formulas.xhp\n"
+"par_id3146972\n"
+"help.text"
+msgid "Displays the contents of cell A1 plus 10."
+msgstr ""
+
+#. VFDp4
+#: formulas.xhp
+msgctxt ""
+"formulas.xhp\n"
+"par_id3145643\n"
+"help.text"
+msgid "=A1*16%"
+msgstr ""
+
+#. yHNCY
+#: formulas.xhp
+msgctxt ""
+"formulas.xhp\n"
+"par_id3154255\n"
+"help.text"
+msgid "Displays 16% of the contents of A1."
+msgstr ""
+
+#. JEQ4F
+#: formulas.xhp
+msgctxt ""
+"formulas.xhp\n"
+"par_id3146917\n"
+"help.text"
+msgid "=A1 * A2"
+msgstr ""
+
+#. ZbQoA
+#: formulas.xhp
+msgctxt ""
+"formulas.xhp\n"
+"par_id3146315\n"
+"help.text"
+msgid "Displays the result of the multiplication of A1 and A2."
+msgstr ""
+
+#. XUAPn
+#: formulas.xhp
+msgctxt ""
+"formulas.xhp\n"
+"par_id3154022\n"
+"help.text"
+msgid "=ROUND(A1;1)"
+msgstr ""
+
+#. nZmjz
+#: formulas.xhp
+msgctxt ""
+"formulas.xhp\n"
+"par_id3150363\n"
+"help.text"
+msgid "Displays the contents of cell A1 rounded to one decimal place."
+msgstr ""
+
+#. p46Wk
+#: formulas.xhp
+msgctxt ""
+"formulas.xhp\n"
+"par_id3150209\n"
+"help.text"
+msgid "=EFFECTIVE(5%;12)"
+msgstr ""
+
+#. LFSAU
+#: formulas.xhp
+msgctxt ""
+"formulas.xhp\n"
+"par_id3150883\n"
+"help.text"
+msgid "Calculates the effective interest for 5% annual nominal interest with 12 payments a year."
+msgstr ""
+
+#. 2A7E6
+#: formulas.xhp
+msgctxt ""
+"formulas.xhp\n"
+"par_id3146114\n"
+"help.text"
+msgid "=B8-SUM(B10:B14)"
+msgstr ""
+
+#. BwE2o
+#: formulas.xhp
+msgctxt ""
+"formulas.xhp\n"
+"par_id3154486\n"
+"help.text"
+msgid "Calculates B8 minus the sum of the cells B10 to B14."
+msgstr ""
+
+#. a744P
+#: formulas.xhp
+msgctxt ""
+"formulas.xhp\n"
+"par_id3152890\n"
+"help.text"
+msgid "=SUM(B8;SUM(B10:B14))"
+msgstr ""
+
+#. 7AGzG
+#: formulas.xhp
+msgctxt ""
+"formulas.xhp\n"
+"par_id3159171\n"
+"help.text"
+msgid "Calculates the sum of cells B10 to B14 and adds the value to B8."
+msgstr ""
+
+#. nPTep
+#: formulas.xhp
+msgctxt ""
+"formulas.xhp\n"
+"par_id3150109\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 ""
+
+#. CQoDo
+#: formulas.xhp
+msgctxt ""
+"formulas.xhp\n"
+"par_id3150213\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060100.xhp\" name=\"Functions list\">Functions list</link>"
+msgstr ""
+
+#. nFipB
+#: formulas.xhp
+msgctxt ""
+"formulas.xhp\n"
+"par_id3152869\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060000.xhp\" name=\"AutoPilot: Functions\">Function Wizard</link>"
+msgstr ""
+
+#. 6XzRE
+#: fraction_enter.xhp
+msgctxt ""
+"fraction_enter.xhp\n"
+"tit\n"
+"help.text"
+msgid "Entering Fractions"
+msgstr ""
+
+#. AJMeW
+#: fraction_enter.xhp
+msgctxt ""
+"fraction_enter.xhp\n"
+"bm_id3155411\n"
+"help.text"
+msgid "<bookmark_value>fractions; entering</bookmark_value><bookmark_value>numbers; entering fractions </bookmark_value><bookmark_value>inserting;fractions</bookmark_value>"
+msgstr ""
+
+#. ry5Y2
+#: fraction_enter.xhp
+msgctxt ""
+"fraction_enter.xhp\n"
+"hd_id3155411\n"
+"help.text"
+msgid "<variable id=\"fraction_enter\"><link href=\"text/scalc/guide/fraction_enter.xhp\" name=\"Entering Fractions \">Entering Fractions </link></variable>"
+msgstr ""
+
+#. NEuqx
+#: fraction_enter.xhp
+msgctxt ""
+"fraction_enter.xhp\n"
+"par_id3153968\n"
+"help.text"
+msgid "You can enter a fractional number in a cell and use it for calculation:"
+msgstr ""
+
+#. EG6pz
+#: fraction_enter.xhp
+msgctxt ""
+"fraction_enter.xhp\n"
+"par_id3155133\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 ""
+
+#. JGMCp
+#: fraction_enter.xhp
+msgctxt ""
+"fraction_enter.xhp\n"
+"par_id3145750\n"
+"help.text"
+msgid "If you enter “0 1/2” AutoCorrect causes the three characters 1, / and 2 to be replaced by a single character, ½. The same applies to 1/4 and 3/4. This replacement is defined in <emph>Tools - AutoCorrect - AutoCorrect Options - Options</emph> tab."
+msgstr ""
+
+#. WncaT
+#: fraction_enter.xhp
+msgctxt ""
+"fraction_enter.xhp\n"
+"par_id3145367\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 ""
+
+#. ixdhC
+#: goalseek.xhp
+msgctxt ""
+"goalseek.xhp\n"
+"tit\n"
+"help.text"
+msgid "Applying Goal Seek"
+msgstr ""
+
+#. i6KyW
+#: goalseek.xhp
+msgctxt ""
+"goalseek.xhp\n"
+"bm_id3145068\n"
+"help.text"
+msgid "<bookmark_value>goal seeking;example</bookmark_value><bookmark_value>equations in goal seek</bookmark_value><bookmark_value>calculating;variables in equations</bookmark_value><bookmark_value>variables;calculating equations</bookmark_value><bookmark_value>examples;goal seek</bookmark_value>"
+msgstr ""
+
+#. QJcX6
+#: goalseek.xhp
+msgctxt ""
+"goalseek.xhp\n"
+"hd_id3145068\n"
+"help.text"
+msgid "<variable id=\"goalseek\"><link href=\"text/scalc/guide/goalseek.xhp\" name=\"Applying Goal Seek\">Applying Goal Seek</link></variable>"
+msgstr ""
+
+#. yeBWn
+#: goalseek.xhp
+msgctxt ""
+"goalseek.xhp\n"
+"par_id3145171\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 ""
+
+#. viB9m
+#: goalseek.xhp
+msgctxt ""
+"goalseek.xhp\n"
+"hd_id3153966\n"
+"help.text"
+msgid "Goal Seek Example"
+msgstr ""
+
+#. gWfbJ
+#: goalseek.xhp
+msgctxt ""
+"goalseek.xhp\n"
+"par_id3150871\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 ""
+
+#. cSY4A
+#: goalseek.xhp
+msgctxt ""
+"goalseek.xhp\n"
+"par_id3152596\n"
+"help.text"
+msgid "I = C * n* i"
+msgstr ""
+
+#. UBFDH
+#: goalseek.xhp
+msgctxt ""
+"goalseek.xhp\n"
+"par_id3155335\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 ""
+
+#. E8wVE
+#: goalseek.xhp
+msgctxt ""
+"goalseek.xhp\n"
+"par_id3155960\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 ""
+
+#. ETmjE
+#: goalseek.xhp
+msgctxt ""
+"goalseek.xhp\n"
+"par_id3147001\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 ""
+
+#. AuvJG
+#: goalseek.xhp
+msgctxt ""
+"goalseek.xhp\n"
+"par_id3150088\n"
+"help.text"
+msgid "The correct cell is already entered in the field <emph>Formula Cell</emph>."
+msgstr ""
+
+#. 5eePU
+#: goalseek.xhp
+msgctxt ""
+"goalseek.xhp\n"
+"par_id3166426\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 ""
+
+#. UGtG2
+#: goalseek.xhp
+msgctxt ""
+"goalseek.xhp\n"
+"par_id3150369\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 ""
+
+#. JPSHu
+#: goalseek.xhp
+msgctxt ""
+"goalseek.xhp\n"
+"par_id3146978\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 ""
+
+#. iMULv
+#: goalseek.xhp
+msgctxt ""
+"goalseek.xhp\n"
+"par_id3149409\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/06040000.xhp\" name=\"Goal Seek\">Goal Seek</link>"
+msgstr ""
+
+#. UhcpV
+#: html_doc.xhp
+msgctxt ""
+"html_doc.xhp\n"
+"tit\n"
+"help.text"
+msgid "Saving and Opening Sheets in HTML"
+msgstr ""
+
+#. hqPFT
+#: html_doc.xhp
+msgctxt ""
+"html_doc.xhp\n"
+"bm_id3150542\n"
+"help.text"
+msgid "<bookmark_value>HTML; sheets</bookmark_value><bookmark_value>sheets; HTML</bookmark_value><bookmark_value>saving; sheets in HTML</bookmark_value><bookmark_value>opening; sheets in HTML</bookmark_value>"
+msgstr ""
+
+#. aPFgV
+#: html_doc.xhp
+msgctxt ""
+"html_doc.xhp\n"
+"hd_id3150542\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 ""
+
+#. qFyZS
+#: html_doc.xhp
+msgctxt ""
+"html_doc.xhp\n"
+"hd_id3154124\n"
+"help.text"
+msgid "Saving Sheets in HTML"
+msgstr ""
+
+#. LGxfn
+#: html_doc.xhp
+msgctxt ""
+"html_doc.xhp\n"
+"par_id3145785\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 ""
+
+#. mtAQs
+#: html_doc.xhp
+msgctxt ""
+"html_doc.xhp\n"
+"par_id3155854\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 ""
+
+#. uKM4A
+#: html_doc.xhp
+msgctxt ""
+"html_doc.xhp\n"
+"par_id3153188\n"
+"help.text"
+msgid "To save the current Calc document as HTML, choose <emph>File - Save As</emph>."
+msgstr ""
+
+#. BUVST
+#: html_doc.xhp
+msgctxt ""
+"html_doc.xhp\n"
+"par_id3148645\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 ""
+
+#. cEXDE
+#: html_doc.xhp
+msgctxt ""
+"html_doc.xhp\n"
+"par_id3154729\n"
+"help.text"
+msgid "Enter a <emph>File name</emph> and click <emph>Save</emph>."
+msgstr ""
+
+#. G9crT
+#: html_doc.xhp
+msgctxt ""
+"html_doc.xhp\n"
+"hd_id3149379\n"
+"help.text"
+msgid "Opening Sheets in HTML"
+msgstr ""
+
+#. hZdEW
+#: html_doc.xhp
+msgctxt ""
+"html_doc.xhp\n"
+"par_id3149959\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 ""
+
+#. GXftR
+#: html_doc.xhp
+msgctxt ""
+"html_doc.xhp\n"
+"par_id3146969\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 ""
+
+#. tj7SQ
+#: html_doc.xhp
+msgctxt ""
+"html_doc.xhp\n"
+"par_id3155446\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 ""
+
+#. EVA3w
+#: html_doc.xhp
+msgctxt ""
+"html_doc.xhp\n"
+"par_id3150370\n"
+"help.text"
+msgid "<link href=\"text/shared/01/01020000.xhp\" name=\"File - Open\">File - Open</link>"
+msgstr ""
+
+#. ApBCr
+#: html_doc.xhp
+msgctxt ""
+"html_doc.xhp\n"
+"par_id3150199\n"
+"help.text"
+msgid "<link href=\"text/shared/01/01070000.xhp\" name=\"File - Save As\">File - Save As</link>"
+msgstr ""
+
+#. 66Qu3
+#: integer_leading_zero.xhp
+msgctxt ""
+"integer_leading_zero.xhp\n"
+"tit\n"
+"help.text"
+msgid "Entering a Number with Leading Zeros"
+msgstr ""
+
+#. GGTWq
+#: integer_leading_zero.xhp
+msgctxt ""
+"integer_leading_zero.xhp\n"
+"bm_id3147560\n"
+"help.text"
+msgid "<bookmark_value>zero values; entering leading zeros</bookmark_value> <bookmark_value>numbers; with leading zeros</bookmark_value> <bookmark_value>leading zeros</bookmark_value> <bookmark_value>integers with leading zeros</bookmark_value> <bookmark_value>cells; changing text/number formats</bookmark_value> <bookmark_value>formats; changing text/number</bookmark_value> <bookmark_value>text in cells; changing to numbers</bookmark_value> <bookmark_value>converting;text with leading zeros, into numbers</bookmark_value>"
+msgstr ""
+
+#. WJnMv
+#: integer_leading_zero.xhp
+msgctxt ""
+"integer_leading_zero.xhp\n"
+"hd_id3147560\n"
+"help.text"
+msgid "<variable id=\"integer_leading_zero\"><link href=\"text/scalc/guide/integer_leading_zero.xhp\" name=\"Entering a Number with Leading Zeros\">Entering a Number with Leading Zeros</link></variable>"
+msgstr ""
+
+#. ZFk6Q
+#: integer_leading_zero.xhp
+msgctxt ""
+"integer_leading_zero.xhp\n"
+"par_id3153194\n"
+"help.text"
+msgid "There are various ways to enter integers starting with a zero:"
+msgstr ""
+
+#. kqPoV
+#: integer_leading_zero.xhp
+msgctxt ""
+"integer_leading_zero.xhp\n"
+"par_id3146119\n"
+"help.text"
+msgid "Enter the number as text. The easiest way is to enter the number starting with an apostrophe (for example, <item type=\"input\">'0987</item>). The apostrophe will not appear in the cell, and the number will be formatted as text. Because it is in text format, however, you cannot calculate with this number."
+msgstr ""
+
+#. jQBnH
+#: integer_leading_zero.xhp
+msgctxt ""
+"integer_leading_zero.xhp\n"
+"par_id3154013\n"
+"help.text"
+msgid "Format a cell with a number format such as <item type=\"input\">\\0000</item>. This format can be assigned in the <emph>Format code</emph> field under the <emph>Format - Cells - Numbers</emph> tab, and defines the cell display as \"always put a zero first and then the integer, having at least three places, and filled with zeros at the left if less than three digits\"."
+msgstr ""
+
+#. 9RanL
+#: integer_leading_zero.xhp
+msgctxt ""
+"integer_leading_zero.xhp\n"
+"par_id3153158\n"
+"help.text"
+msgid "If you want to apply a numerical format to a column of numbers in text format (for example, text \"000123\" becomes number \"123\"), do the following:"
+msgstr ""
+
+#. Y9PcH
+#: integer_leading_zero.xhp
+msgctxt ""
+"integer_leading_zero.xhp\n"
+"par_id3149377\n"
+"help.text"
+msgid "Select the column in which the digits are found in text format. Set the cell format in that column as \"Number\"."
+msgstr ""
+
+#. KR9G6
+#: integer_leading_zero.xhp
+msgctxt ""
+"integer_leading_zero.xhp\n"
+"par_id3154944\n"
+"help.text"
+msgid "Choose <emph>Edit - Find & Replace</emph>"
+msgstr ""
+
+#. MJUjm
+#: integer_leading_zero.xhp
+msgctxt ""
+"integer_leading_zero.xhp\n"
+"par_id3154510\n"
+"help.text"
+msgid "In the <emph>Find</emph> box, enter <item type=\"input\">^[0-9]</item>"
+msgstr ""
+
+#. 6gHkJ
+#: integer_leading_zero.xhp
+msgctxt ""
+"integer_leading_zero.xhp\n"
+"par_id3155068\n"
+"help.text"
+msgid "In the <emph>Replace</emph> box, enter <item type=\"input\">&</item>"
+msgstr ""
+
+#. 2e4FS
+#: integer_leading_zero.xhp
+msgctxt ""
+"integer_leading_zero.xhp\n"
+"par_id3149018\n"
+"help.text"
+msgid "Check <emph>Regular expressions</emph>"
+msgstr ""
+
+#. Ek4jF
+#: integer_leading_zero.xhp
+msgctxt ""
+"integer_leading_zero.xhp\n"
+"par_id3156382\n"
+"help.text"
+msgid "Check <emph>Current selection only</emph>"
+msgstr ""
+
+#. noLgp
+#: integer_leading_zero.xhp
+msgctxt ""
+"integer_leading_zero.xhp\n"
+"par_id3146916\n"
+"help.text"
+msgid "Click <emph>Replace All</emph>"
+msgstr ""
+
+#. MSHQ3
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"tit\n"
+"help.text"
+msgid "Shortcut Keys (%PRODUCTNAME Calc Accessibility)"
+msgstr ""
+
+#. 8nhV7
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"bm_id3145120\n"
+"help.text"
+msgid "<bookmark_value>accessibility; %PRODUCTNAME Calc shortcuts</bookmark_value><bookmark_value>shortcut keys;%PRODUCTNAME Calc accessibility</bookmark_value>"
+msgstr ""
+
+#. 5D3u4
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"hd_id3145120\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 ""
+
+#. P7WD8
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"par_id3154760\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 ""
+
+#. fvTfW
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"hd_id3153360\n"
+"help.text"
+msgid "Cell Selection Mode"
+msgstr ""
+
+#. GhNyL
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"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 ""
+
+#. YBDA2
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"par_id3154319\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 ""
+
+#. h4DAg
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"par_id3145272\n"
+"help.text"
+msgid "In the cell selection mode, you can use the common navigation keys to select cells."
+msgstr ""
+
+#. UdBhU
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"hd_id3148646\n"
+"help.text"
+msgid "Controlling the Outline"
+msgstr ""
+
+#. rBMm4
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"par_id3146120\n"
+"help.text"
+msgid "You can use the keyboard in <link href=\"text/scalc/01/12080000.xhp\" name=\"Outline\">Outline</link>:"
+msgstr ""
+
+#. L9VfN
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"par_id3147394\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 ""
+
+#. YfB3C
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"par_id3149379\n"
+"help.text"
+msgid "<item type=\"keycode\">Tab</item> - cycle through all visible buttons from top to bottom or from left to right."
+msgstr ""
+
+#. woNKZ
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"par_id3156286\n"
+"help.text"
+msgid "<item type=\"keycode\">Shift+Tab</item> - cycle through all visible buttons in the opposite direction."
+msgstr ""
+
+#. sEF7Z
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"par_id3149403\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 ""
+
+#. tHbqV
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"par_id3150329\n"
+"help.text"
+msgid "Use <item type=\"keycode\">+</item> or <item type=\"keycode\">-</item> to show or hide the focused outline group."
+msgstr ""
+
+#. kvXDz
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"par_id3155446\n"
+"help.text"
+msgid "Press <item type=\"keycode\">Enter</item> to activate the focused button."
+msgstr ""
+
+#. cbpG5
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"par_id3154253\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 ""
+
+#. up5Eo
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"hd_id3147343\n"
+"help.text"
+msgid "Selecting a Drawing Object or a Graphic"
+msgstr ""
+
+#. ND75D
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"par_idN107AA\n"
+"help.text"
+msgid "Choose View - Toolbars - Drawing to open the Drawing toolbar."
+msgstr ""
+
+#. staPK
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"par_id3155333\n"
+"help.text"
+msgid "Press <item type=\"keycode\">F6</item> until the <emph>Drawing</emph> toolbar is selected."
+msgstr ""
+
+#. 4SuXi
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"par_id3150345\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 ""
+
+#. AnBgF
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"par_id3159240\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 ""
+
+#. GLSGe
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"par_id3155379\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 ""
+
+#. DE22p
+#: line_fix.xhp
+msgctxt ""
+"line_fix.xhp\n"
+"tit\n"
+"help.text"
+msgid "Freezing Rows or Columns as Headers"
+msgstr ""
+
+#. T2rdS
+#: line_fix.xhp
+msgctxt ""
+"line_fix.xhp\n"
+"bm_id3154684\n"
+"help.text"
+msgid "<bookmark_value>tables; freezing</bookmark_value> <bookmark_value>title rows; freezing during table split</bookmark_value> <bookmark_value>rows; freezing</bookmark_value> <bookmark_value>columns; freezing</bookmark_value> <bookmark_value>freezing rows or columns</bookmark_value> <bookmark_value>headers; freezing during table split</bookmark_value> <bookmark_value>scrolling prevention in tables</bookmark_value> <bookmark_value>windows; splitting</bookmark_value> <bookmark_value>tables; splitting windows</bookmark_value>"
+msgstr ""
+
+#. 2WVYD
+#: line_fix.xhp
+msgctxt ""
+"line_fix.xhp\n"
+"hd_id3154684\n"
+"help.text"
+msgid "<variable id=\"line_fix\"><link href=\"text/scalc/guide/line_fix.xhp\" name=\"Freezing Rows or Columns as Headers\">Freezing Rows or Columns as Headers</link> </variable>"
+msgstr ""
+
+#. rQbwQ
+#: line_fix.xhp
+msgctxt ""
+"line_fix.xhp\n"
+"par_id3148576\n"
+"help.text"
+msgid "If you have long rows or columns of data that extend beyond the viewable area of the sheet, you can freeze some rows or columns, which allows you to see the frozen columns or rows as you scroll through the rest of the data."
+msgstr ""
+
+#. uE6Wi
+#: line_fix.xhp
+msgctxt ""
+"line_fix.xhp\n"
+"par_id3156441\n"
+"help.text"
+msgid "Select the row below, or the column to the right of the row or column that you want to be in the frozen region. All rows above, or all columns to the left of the selection are frozen."
+msgstr ""
+
+#. YS2LL
+#: line_fix.xhp
+msgctxt ""
+"line_fix.xhp\n"
+"par_id3153158\n"
+"help.text"
+msgid "To freeze both horizontally and vertically, select the <emph>cell</emph> that is below the row and to the right of the column that you want to freeze."
+msgstr ""
+
+#. Ly3Ez
+#: line_fix.xhp
+msgctxt ""
+"line_fix.xhp\n"
+"par_id3156286\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>."
+msgstr ""
+
+#. Exqyb
+#: line_fix.xhp
+msgctxt ""
+"line_fix.xhp\n"
+"par_id3151073\n"
+"help.text"
+msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Rows and Columns</item> again."
+msgstr ""
+
+#. U7GBK
+#: line_fix.xhp
+msgctxt ""
+"line_fix.xhp\n"
+"par_id3155335\n"
+"help.text"
+msgid "If the area defined is to be scrollable, apply the <item type=\"menuitem\">View - Split Window</item> command."
+msgstr ""
+
+#. izbC9
+#: line_fix.xhp
+msgctxt ""
+"line_fix.xhp\n"
+"par_id3147345\n"
+"help.text"
+msgid "If you want to print a certain row on all pages of a document, choose <item type=\"menuitem\">Format - Print ranges - Edit</item>."
+msgstr ""
+
+#. Z29B7
+#: line_fix.xhp
+msgctxt ""
+"line_fix.xhp\n"
+"par_id3147004\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Rows and Columns</link>"
+msgstr ""
+
+#. RbKLt
+#: line_fix.xhp
+msgctxt ""
+"line_fix.xhp\n"
+"par_id3150088\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/07080000.xhp\" name=\"View - Split\">View - Split Window</link>"
+msgstr ""
+
+#. uaqGG
+#: line_fix.xhp
+msgctxt ""
+"line_fix.xhp\n"
+"par_id3150304\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/05080300.xhp\" name=\"Format - Print ranges - Edit\">Format - Print ranges - Edit</link>"
+msgstr ""
+
+#. JGxbG
+#: main.xhp
+msgctxt ""
+"main.xhp\n"
+"tit\n"
+"help.text"
+msgid "Instructions for Using $[officename] Calc"
+msgstr ""
+
+#. 8cLFT
+#: main.xhp
+msgctxt ""
+"main.xhp\n"
+"bm_id3150770\n"
+"help.text"
+msgid "<bookmark_value>HowTos for Calc</bookmark_value><bookmark_value>instructions; $[officename] Calc</bookmark_value>"
+msgstr ""
+
+#. CDGGu
+#: main.xhp
+msgctxt ""
+"main.xhp\n"
+"hd_id3150770\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 ""
+
+#. izTXs
+#: main.xhp
+msgctxt ""
+"main.xhp\n"
+"hd_id3145748\n"
+"help.text"
+msgid "Formatting Tables and Cells"
+msgstr ""
+
+#. wegGK
+#: main.xhp
+msgctxt ""
+"main.xhp\n"
+"hd_id3154022\n"
+"help.text"
+msgid "Entering Values and Formulas"
+msgstr ""
+
+#. gbmwG
+#: main.xhp
+msgctxt ""
+"main.xhp\n"
+"hd_id3152899\n"
+"help.text"
+msgid "Entering References"
+msgstr ""
+
+#. Dpeey
+#: main.xhp
+msgctxt ""
+"main.xhp\n"
+"hd_id3155382\n"
+"help.text"
+msgid "Database Ranges in Tables"
+msgstr ""
+
+#. WdS4k
+#: main.xhp
+msgctxt ""
+"main.xhp\n"
+"hd_id3159229\n"
+"help.text"
+msgid "Advanced Calculations"
+msgstr ""
+
+#. tfcNX
+#: main.xhp
+msgctxt ""
+"main.xhp\n"
+"hd_id3153070\n"
+"help.text"
+msgid "Printing and Print Preview"
+msgstr ""
+
+#. 5wFpk
+#: main.xhp
+msgctxt ""
+"main.xhp\n"
+"hd_id3150437\n"
+"help.text"
+msgid "Importing and Exporting Documents"
+msgstr ""
+
+#. uCMKm
+#: main.xhp
+msgctxt ""
+"main.xhp\n"
+"hd_id3166464\n"
+"help.text"
+msgid "Miscellaneous"
+msgstr ""
+
+#. TC4cU
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"tit\n"
+"help.text"
+msgid "Selecting Multiple Cells"
+msgstr ""
+
+#. uhRQX
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"bm_id3153361\n"
+"help.text"
+msgid "<bookmark_value>cells; selecting</bookmark_value> <bookmark_value>marking cells</bookmark_value> <bookmark_value>selecting;cells</bookmark_value> <bookmark_value>multiple cells selection</bookmark_value> <bookmark_value>selection modes in spreadsheets</bookmark_value> <bookmark_value>tables; selecting ranges</bookmark_value>"
+msgstr ""
+
+#. agB5T
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"hd_id3153361\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 ""
+
+#. DnPDm
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"hd_id3145272\n"
+"help.text"
+msgid "Select a rectangular range"
+msgstr ""
+
+#. XjgG6
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"par_id3149261\n"
+"help.text"
+msgid "With the mouse button pressed, drag from one corner to the diagonally opposed corner of the range."
+msgstr ""
+
+#. JDShL
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"hd_id3151119\n"
+"help.text"
+msgid "Mark a single cell"
+msgstr ""
+
+#. VwvYL
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"par_id3146975\n"
+"help.text"
+msgid "Do one of the following:"
+msgstr ""
+
+#. 8XfBg
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"par_id3163710\n"
+"help.text"
+msgid "Click, then Shift-click the cell."
+msgstr ""
+
+#. smrDt
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"par_id3149959\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 ""
+
+#. b6dRj
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"hd_id3154942\n"
+"help.text"
+msgid "Select various dispersed cells"
+msgstr ""
+
+#. 8TSyD
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"par_id1001200901072060\n"
+"help.text"
+msgid "Do one of the following:"
+msgstr ""
+
+#. ueuNX
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"par_id3156284\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 ""
+
+#. 4MdDB
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"par_id1001200901072023\n"
+"help.text"
+msgid "Click the STD / EXT / ADD area in the status bar until it shows ADD. Now click all cells that you want to select."
+msgstr ""
+
+#. bGGYT
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"hd_id3146971\n"
+"help.text"
+msgid "Switch marking mode"
+msgstr ""
+
+#. qTUCj
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"par_id3155064\n"
+"help.text"
+msgid "On the status bar, click the box with the legend STD / EXT / ADD to switch the marking mode:"
+msgstr ""
+
+#. 3SPfk
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"par_id3159264\n"
+"help.text"
+msgid "Field contents"
+msgstr ""
+
+#. HbCYq
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"par_id3155337\n"
+"help.text"
+msgid "Effect of clicking the mouse"
+msgstr ""
+
+#. qCjXD
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"par_id3149568\n"
+"help.text"
+msgid "STD"
+msgstr ""
+
+#. uCt66
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"par_id3148486\n"
+"help.text"
+msgid "A mouse click selects the cell you have clicked on. Unmarks all marked cells."
+msgstr ""
+
+#. HQyai
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"par_id3150090\n"
+"help.text"
+msgid "EXT"
+msgstr ""
+
+#. 5FQEV
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"par_id3150305\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 ""
+
+#. TBk4P
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"par_id3145587\n"
+"help.text"
+msgid "ADD"
+msgstr ""
+
+#. hQCw9
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"par_id3154368\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 ""
+
+#. 2tZHj
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"par_id3154487\n"
+"help.text"
+msgid "<link href=\"text/scalc/main0208.xhp\" name=\"Status bar\">Status bar</link>"
+msgstr ""
+
+#. AU6FR
+#: matrixformula.xhp
+msgctxt ""
+"matrixformula.xhp\n"
+"tit\n"
+"help.text"
+msgid "Entering Matrix Formulas"
+msgstr ""
+
+#. 2goEn
+#: matrixformula.xhp
+msgctxt ""
+"matrixformula.xhp\n"
+"bm_id3153969\n"
+"help.text"
+msgid "<bookmark_value>matrices; entering matrix formulas</bookmark_value><bookmark_value>formulas; matrix formulas</bookmark_value><bookmark_value>inserting;matrix formulas</bookmark_value>"
+msgstr ""
+
+#. vzNxD
+#: matrixformula.xhp
+msgctxt ""
+"matrixformula.xhp\n"
+"hd_id3153969\n"
+"help.text"
+msgid "<variable id=\"matrixformula\"><link href=\"text/scalc/guide/matrixformula.xhp\" name=\"Entering Matrix Formulas\">Entering Matrix Formulas</link></variable>"
+msgstr ""
+
+#. uo5ny
+#: matrixformula.xhp
+msgctxt ""
+"matrixformula.xhp\n"
+"par_id3153144\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 ""
+
+#. E2PiE
+#: matrixformula.xhp
+msgctxt ""
+"matrixformula.xhp\n"
+"par_id3153188\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 ""
+
+#. AuPqQ
+#: matrixformula.xhp
+msgctxt ""
+"matrixformula.xhp\n"
+"par_id3154321\n"
+"help.text"
+msgid "Using the mouse, select the range C1:C10, in which the results are to be displayed."
+msgstr ""
+
+#. kXuHe
+#: matrixformula.xhp
+msgctxt ""
+"matrixformula.xhp\n"
+"par_id3149260\n"
+"help.text"
+msgid "Press F2, or click in the input line of the Formula bar."
+msgstr ""
+
+#. 6wMhC
+#: matrixformula.xhp
+msgctxt ""
+"matrixformula.xhp\n"
+"par_id3154944\n"
+"help.text"
+msgid "Enter an equal sign (=)."
+msgstr ""
+
+#. Yxpmu
+#: matrixformula.xhp
+msgctxt ""
+"matrixformula.xhp\n"
+"par_id3145252\n"
+"help.text"
+msgid "Select the range A1:A10, which contains the first values for the sum formula."
+msgstr ""
+
+#. JQGTN
+#: matrixformula.xhp
+msgctxt ""
+"matrixformula.xhp\n"
+"par_id3144767\n"
+"help.text"
+msgid "Press the (+) key from the numerical keypad."
+msgstr ""
+
+#. y6wkD
+#: matrixformula.xhp
+msgctxt ""
+"matrixformula.xhp\n"
+"par_id3154018\n"
+"help.text"
+msgid "Select the numbers in the second column in cells B1:B10."
+msgstr ""
+
+#. e5wGm
+#: matrixformula.xhp
+msgctxt ""
+"matrixformula.xhp\n"
+"par_id3150716\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 ""
+
+#. D8QXG
+#: matrixformula.xhp
+msgctxt ""
+"matrixformula.xhp\n"
+"par_id3145640\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 ""
+
+#. zHLbu
+#: move_dragdrop.xhp
+msgctxt ""
+"move_dragdrop.xhp\n"
+"tit\n"
+"help.text"
+msgid "Moving Cells by Drag-and-Drop"
+msgstr ""
+
+#. CoB5w
+#: move_dragdrop.xhp
+msgctxt ""
+"move_dragdrop.xhp\n"
+"bm_id3155686\n"
+"help.text"
+msgid "<bookmark_value>drag and drop; moving cells</bookmark_value><bookmark_value>cells; moving by drag and drop </bookmark_value><bookmark_value>rows;moving by drag and drop</bookmark_value><bookmark_value>columns;moving by drag and drop</bookmark_value><bookmark_value>moving;cells, rows and columns by drag and drop</bookmark_value><bookmark_value>inserting;cells, by drag and drop</bookmark_value>"
+msgstr ""
+
+#. EJFwU
+#: move_dragdrop.xhp
+msgctxt ""
+"move_dragdrop.xhp\n"
+"hd_id986358\n"
+"help.text"
+msgid "<variable id=\"move_dragdrop\"><link href=\"text/scalc/guide/move_dragdrop.xhp\">Moving Cells by Drag-and-Drop</link></variable>"
+msgstr ""
+
+#. g9ZDg
+#: move_dragdrop.xhp
+msgctxt ""
+"move_dragdrop.xhp\n"
+"par_id2760093\n"
+"help.text"
+msgid "When you drag-and-drop a selection of cells, rows or columns on a Calc sheet, the cells (including the ones in selected rows or columns) normally overwrite the existing cells in the area where you drop. This is the normal <emph>overwrite mode</emph>."
+msgstr ""
+
+#. BGUHG
+#: move_dragdrop.xhp
+msgctxt ""
+"move_dragdrop.xhp\n"
+"par_id2760101\n"
+"help.text"
+msgid "Note that to drag-and-drop entire rows or columns, you must select the rows or columns you want to move (or copy) first, then start dragging from selected cells, not from the row or column headers (cells would be deselected by this)."
+msgstr ""
+
+#. cgwHu
+#: move_dragdrop.xhp
+msgctxt ""
+"move_dragdrop.xhp\n"
+"par_id9527268\n"
+"help.text"
+msgid "When you hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> key while releasing the mouse button, you enter the <emph>insert mode</emph>."
+msgstr ""
+
+#. FJBmQ
+#: move_dragdrop.xhp
+msgctxt ""
+"move_dragdrop.xhp\n"
+"par_id79653\n"
+"help.text"
+msgid "In insert mode, the existing cells where you drop will be shifted to the right or to the bottom, and the dropped cells are inserted into the now empty positions without overwriting."
+msgstr ""
+
+#. CLKQq
+#: move_dragdrop.xhp
+msgctxt ""
+"move_dragdrop.xhp\n"
+"par_id8676717\n"
+"help.text"
+msgid "The surrounding box of the moved cells looks different in insert mode."
+msgstr ""
+
+#. jfPyT
+#: move_dragdrop.xhp
+msgctxt ""
+"move_dragdrop.xhp\n"
+"par_id3968932\n"
+"help.text"
+msgid "In overwrite mode you see all four borders around the selected area. In insert mode you see only the left border when target cells will be shifted to the right. You see only the upper border when target cells will be shifted down."
+msgstr ""
+
+#. ZZbmo
+#: move_dragdrop.xhp
+msgctxt ""
+"move_dragdrop.xhp\n"
+"par_id7399517\n"
+"help.text"
+msgid "Whether the target area will be shifted to the right or to the bottom depends on the distance between source and target cells, if you move within the same sheet. It depends on the number of horizontal or vertical cells in the moved area, if you move to a different sheet."
+msgstr ""
+
+#. PtNLn
+#: move_dragdrop.xhp
+msgctxt ""
+"move_dragdrop.xhp\n"
+"par_id8040406\n"
+"help.text"
+msgid "If you move cells in insert mode within the same row (only horizontally), then after insertion of the cells, all cells will be shifted to the left to fill the source area."
+msgstr ""
+
+#. LEvkD
+#: move_dragdrop.xhp
+msgctxt ""
+"move_dragdrop.xhp\n"
+"par_id2586748\n"
+"help.text"
+msgid "In both modes, you can hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key, or <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift keys while you release the mouse button to insert a copy or a link, respectively."
+msgstr ""
+
+#. RmAjD
+#: move_dragdrop.xhp
+msgctxt ""
+"move_dragdrop.xhp\n"
+"par_id5814081\n"
+"help.text"
+msgid "Keys pressed while releasing the mouse button"
+msgstr ""
+
+#. zh9LK
+#: move_dragdrop.xhp
+msgctxt ""
+"move_dragdrop.xhp\n"
+"par_id6581316\n"
+"help.text"
+msgid "Result"
+msgstr ""
+
+#. 96Caz
+#: move_dragdrop.xhp
+msgctxt ""
+"move_dragdrop.xhp\n"
+"par_id9906613\n"
+"help.text"
+msgid "No key"
+msgstr ""
+
+#. rLLCx
+#: move_dragdrop.xhp
+msgctxt ""
+"move_dragdrop.xhp\n"
+"par_id2815637\n"
+"help.text"
+msgid "Cells are moved and overwrite the cells in the target area. Source cells are emptied."
+msgstr ""
+
+#. VqGjf
+#: move_dragdrop.xhp
+msgctxt ""
+"move_dragdrop.xhp\n"
+"par_id6161687\n"
+"help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key"
+msgstr ""
+
+#. dHibC
+#: move_dragdrop.xhp
+msgctxt ""
+"move_dragdrop.xhp\n"
+"par_id4278389\n"
+"help.text"
+msgid "Cells are copied and overwrite the cells in the target area. Source cells stay as they are."
+msgstr ""
+
+#. 2HVTA
+#: move_dragdrop.xhp
+msgctxt ""
+"move_dragdrop.xhp\n"
+"par_id2805566\n"
+"help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift keys"
+msgstr ""
+
+#. HMLtJ
+#: move_dragdrop.xhp
+msgctxt ""
+"move_dragdrop.xhp\n"
+"par_id5369121\n"
+"help.text"
+msgid "Links to the source cells are inserted and overwrite the cells in the target area. Source cells stay as they are."
+msgstr ""
+
+#. GLDS6
+#: move_dragdrop.xhp
+msgctxt ""
+"move_dragdrop.xhp\n"
+"par_id9518723\n"
+"help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> key"
+msgstr ""
+
+#. mFaYd
+#: move_dragdrop.xhp
+msgctxt ""
+"move_dragdrop.xhp\n"
+"par_id2926419\n"
+"help.text"
+msgid "Cells are moved and shift the cells in the target area to the right or to the bottom. Source cells are emptied, except if you move within the same rows on the same sheet."
+msgstr ""
+
+#. DDgJR
+#: move_dragdrop.xhp
+msgctxt ""
+"move_dragdrop.xhp\n"
+"par_id4021423\n"
+"help.text"
+msgid "If you move within the same rows on the same sheet, the cells in the target area shift to the right, and then the whole row shifts to fill the source area."
+msgstr ""
+
+#. ZkkAv
+#: move_dragdrop.xhp
+msgctxt ""
+"move_dragdrop.xhp\n"
+"par_id2783898\n"
+"help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option+Command </caseinline><defaultinline>Alt+Ctrl</defaultinline></switchinline> keys"
+msgstr ""
+
+#. FAxCD
+#: move_dragdrop.xhp
+msgctxt ""
+"move_dragdrop.xhp\n"
+"par_id2785119\n"
+"help.text"
+msgid "Cells are copied and shift the cells in the target area to the right or to the bottom. Source cells stay as they are."
+msgstr ""
+
+#. PzPB4
+#: move_dragdrop.xhp
+msgctxt ""
+"move_dragdrop.xhp\n"
+"par_id584124\n"
+"help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option+Command</caseinline><defaultinline>Alt+Ctrl</defaultinline></switchinline>+Shift keys"
+msgstr ""
+
+#. VpQTf
+#: move_dragdrop.xhp
+msgctxt ""
+"move_dragdrop.xhp\n"
+"par_id5590990\n"
+"help.text"
+msgid "Links to the source cells are inserted and shift the cells in the target area to the right or to the bottom. Source cells stay as they are."
+msgstr ""
+
+#. fEsX4
+#: multi_tables.xhp
+msgctxt ""
+"multi_tables.xhp\n"
+"tit\n"
+"help.text"
+msgid "Navigating Through Sheets Tabs"
+msgstr ""
+
+#. Dtosi
+#: multi_tables.xhp
+msgctxt ""
+"multi_tables.xhp\n"
+"bm_id3150769\n"
+"help.text"
+msgid "<bookmark_value>sheets; showing multiple</bookmark_value><bookmark_value>sheet tabs;using</bookmark_value><bookmark_value>views;multiple sheets</bookmark_value>"
+msgstr ""
+
+#. kGEYq
+#: multi_tables.xhp
+msgctxt ""
+"multi_tables.xhp\n"
+"hd_id3150769\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 ""
+
+#. Fpcz8
+#: multi_tables.xhp
+msgctxt ""
+"multi_tables.xhp\n"
+"par_id3153771\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 ""
+
+#. 4KYVc
+#: multi_tables.xhp
+msgctxt ""
+"multi_tables.xhp\n"
+"par_idN106AF\n"
+"help.text"
+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 ""
+
+#. XGC9c
+#: multi_tables.xhp
+msgctxt ""
+"multi_tables.xhp\n"
+"par_id3153144\n"
+"help.text"
+msgid "<image id=\"img_id3156441\" src=\"media/helpimg/calcnav.png\" width=\"0.6563inch\" height=\"0.1457inch\"><alt id=\"alt_id3156441\">Icon</alt></image>"
+msgstr ""
+
+#. cF9mG
+#: multi_tables.xhp
+msgctxt ""
+"multi_tables.xhp\n"
+"par_id3147396\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 ""
+
+#. c6FGv
+#: multioperation.xhp
+msgctxt ""
+"multioperation.xhp\n"
+"tit\n"
+"help.text"
+msgid "Applying Multiple Operations"
+msgstr ""
+
+#. Wm4DX
+#: multioperation.xhp
+msgctxt ""
+"multioperation.xhp\n"
+"bm_id3147559\n"
+"help.text"
+msgid "<bookmark_value>multiple operations</bookmark_value><bookmark_value>what if operations;two variables</bookmark_value><bookmark_value>tables; multiple operations in</bookmark_value><bookmark_value>data tables; multiple operations in</bookmark_value><bookmark_value>cross-classified tables</bookmark_value>"
+msgstr ""
+
+#. aDj8d
+#: multioperation.xhp
+msgctxt ""
+"multioperation.xhp\n"
+"hd_id3147559\n"
+"help.text"
+msgid "<variable id=\"multioperation\"><link href=\"text/scalc/guide/multioperation.xhp\" name=\"Applying Multiple Operations\">Applying Multiple Operations</link></variable>"
+msgstr ""
+
+#. mX8Gh
+#: multioperation.xhp
+msgctxt ""
+"multioperation.xhp\n"
+"hd_id3145171\n"
+"help.text"
+msgid "Multiple Operations in Columns or Rows"
+msgstr ""
+
+#. GgvB4
+#: multioperation.xhp
+msgctxt ""
+"multioperation.xhp\n"
+"par_id4123966\n"
+"help.text"
+msgid "The <item type=\"menuitem\">Data - Multiple Operations</item> command provides a planning tool for \"what if\" questions. In your spreadsheet, you enter a formula to calculate a result from values that are stored in other cells. Then, you set up a cell range where you enter some fixed values, and the Multiple Operations command will calculate the results depending on the formula."
+msgstr ""
+
+#. wW4Vg
+#: multioperation.xhp
+msgctxt ""
+"multioperation.xhp\n"
+"par_id3156424\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 ""
+
+#. aZap6
+#: multioperation.xhp
+msgctxt ""
+"multioperation.xhp\n"
+"hd_id3159153\n"
+"help.text"
+msgid "Examples"
+msgstr ""
+
+#. 7GHff
+#: multioperation.xhp
+msgctxt ""
+"multioperation.xhp\n"
+"par_id3153189\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 ""
+
+#. vdeBS
+#: multioperation.xhp
+msgctxt ""
+"multioperation.xhp\n"
+"par_id6478774\n"
+"help.text"
+msgid "<image id=\"img_id1621753\" src=\"media/helpimg/what-if.png\"><alt id=\"alt_id1621753\">what-if sheet area</alt></image>"
+msgstr ""
+
+#. KavvR
+#: multioperation.xhp
+msgctxt ""
+"multioperation.xhp\n"
+"hd_id3145239\n"
+"help.text"
+msgid "Calculating With One Formula and One Variable"
+msgstr ""
+
+#. nCki4
+#: multioperation.xhp
+msgctxt ""
+"multioperation.xhp\n"
+"par_id3146888\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 ""
+
+#. 4zUKz
+#: multioperation.xhp
+msgctxt ""
+"multioperation.xhp\n"
+"par_id3157875\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 ""
+
+#. vABD4
+#: multioperation.xhp
+msgctxt ""
+"multioperation.xhp\n"
+"par_id3159115\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 ""
+
+#. b4zBY
+#: multioperation.xhp
+msgctxt ""
+"multioperation.xhp\n"
+"par_id3149723\n"
+"help.text"
+msgid "Choose <emph>Data - Multiple operations</emph>."
+msgstr ""
+
+#. p8VjP
+#: multioperation.xhp
+msgctxt ""
+"multioperation.xhp\n"
+"par_id3149149\n"
+"help.text"
+msgid "With the cursor in the <emph>Formulas </emph>field, click cell B5."
+msgstr ""
+
+#. NBWeD
+#: multioperation.xhp
+msgctxt ""
+"multioperation.xhp\n"
+"par_id3149355\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 ""
+
+#. SyPmA
+#: multioperation.xhp
+msgctxt ""
+"multioperation.xhp\n"
+"par_id3149009\n"
+"help.text"
+msgid "Close the dialog with <emph>OK</emph>. You see the profits for the different quantities in column E."
+msgstr ""
+
+#. CqtUM
+#: multioperation.xhp
+msgctxt ""
+"multioperation.xhp\n"
+"hd_id3148725\n"
+"help.text"
+msgid "Calculating with Several Formulas Simultaneously"
+msgstr ""
+
+#. DxqGZ
+#: multioperation.xhp
+msgctxt ""
+"multioperation.xhp\n"
+"par_id3146880\n"
+"help.text"
+msgid "Delete column E."
+msgstr ""
+
+#. h4umZ
+#: multioperation.xhp
+msgctxt ""
+"multioperation.xhp\n"
+"par_id3154675\n"
+"help.text"
+msgid "Enter the following formula in C5: = B5 / B4. You are now calculating the annual profit per item sold."
+msgstr ""
+
+#. GpoD9
+#: multioperation.xhp
+msgctxt ""
+"multioperation.xhp\n"
+"par_id3148885\n"
+"help.text"
+msgid "Select the range D2:F11, thus three columns."
+msgstr ""
+
+#. 5GyFY
+#: multioperation.xhp
+msgctxt ""
+"multioperation.xhp\n"
+"par_id3147474\n"
+"help.text"
+msgid "Choose <emph>Data - Multiple Operations</emph>."
+msgstr ""
+
+#. vVE2F
+#: multioperation.xhp
+msgctxt ""
+"multioperation.xhp\n"
+"par_id3154846\n"
+"help.text"
+msgid "With the cursor in the <emph>Formulas</emph> field, select cells B5 thru C5."
+msgstr ""
+
+#. CBN2h
+#: multioperation.xhp
+msgctxt ""
+"multioperation.xhp\n"
+"par_id3153931\n"
+"help.text"
+msgid "Set the cursor in the <emph>Column input cell</emph> field and click cell B4."
+msgstr ""
+
+#. mfN9d
+#: multioperation.xhp
+msgctxt ""
+"multioperation.xhp\n"
+"par_id3150862\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 ""
+
+#. avEUy
+#: multioperation.xhp
+msgctxt ""
+"multioperation.xhp\n"
+"hd_id3146139\n"
+"help.text"
+msgid "Multiple Operations Across Rows and Columns"
+msgstr ""
+
+#. 3abTJ
+#: multioperation.xhp
+msgctxt ""
+"multioperation.xhp\n"
+"par_id3148584\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 ""
+
+#. uHGGD
+#: multioperation.xhp
+msgctxt ""
+"multioperation.xhp\n"
+"hd_id3149949\n"
+"help.text"
+msgid "Calculating with Two Variables"
+msgstr ""
+
+#. 7MGG4
+#: multioperation.xhp
+msgctxt ""
+"multioperation.xhp\n"
+"par_id3154808\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 ""
+
+#. kRNub
+#: multioperation.xhp
+msgctxt ""
+"multioperation.xhp\n"
+"par_id3149731\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 ""
+
+#. LdMQc
+#: multioperation.xhp
+msgctxt ""
+"multioperation.xhp\n"
+"par_id3152810\n"
+"help.text"
+msgid "Select the range D1:H11."
+msgstr ""
+
+#. FKGVk
+#: multioperation.xhp
+msgctxt ""
+"multioperation.xhp\n"
+"par_id3153620\n"
+"help.text"
+msgid "Choose <emph>Data - Multiple Operations</emph>."
+msgstr ""
+
+#. uv9gg
+#: multioperation.xhp
+msgctxt ""
+"multioperation.xhp\n"
+"par_id3149981\n"
+"help.text"
+msgid "With the cursor in the <emph>Formulas</emph> field, click cell B5."
+msgstr ""
+
+#. ABmDF
+#: multioperation.xhp
+msgctxt ""
+"multioperation.xhp\n"
+"par_id3156113\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 ""
+
+#. yrzWJ
+#: multioperation.xhp
+msgctxt ""
+"multioperation.xhp\n"
+"par_id3154049\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 ""
+
+#. YEQAH
+#: multioperation.xhp
+msgctxt ""
+"multioperation.xhp\n"
+"par_id3149141\n"
+"help.text"
+msgid "Close the dialog with OK. You see the profits for the different selling prices in the range E2:H11."
+msgstr ""
+
+#. RDzCg
+#: multioperation.xhp
+msgctxt ""
+"multioperation.xhp\n"
+"par_id3155104\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/12060000.xhp\" name=\"Multiple operations\">Multiple operations</link>"
+msgstr ""
+
+#. fdSJp
+#: multitables.xhp
+msgctxt ""
+"multitables.xhp\n"
+"tit\n"
+"help.text"
+msgid "Applying Multiple Sheets"
+msgstr ""
+
+#. eVtFk
+#: multitables.xhp
+msgctxt ""
+"multitables.xhp\n"
+"bm_id3154759\n"
+"help.text"
+msgid "<bookmark_value>sheets; inserting</bookmark_value> <bookmark_value>inserting; sheets</bookmark_value> <bookmark_value>sheets; selecting multiple</bookmark_value> <bookmark_value>appending sheets</bookmark_value> <bookmark_value>selecting;multiple sheets</bookmark_value> <bookmark_value>multiple sheets</bookmark_value> <bookmark_value>calculating;multiple sheets</bookmark_value>"
+msgstr ""
+
+#. kAW58
+#: multitables.xhp
+msgctxt ""
+"multitables.xhp\n"
+"hd_id3154759\n"
+"help.text"
+msgid "<variable id=\"multitables\"><link href=\"text/scalc/guide/multitables.xhp\" name=\"Applying Multiple Sheets\">Applying Multiple Sheets</link></variable>"
+msgstr ""
+
+#. VB2mS
+#: multitables.xhp
+msgctxt ""
+"multitables.xhp\n"
+"hd_id3148576\n"
+"help.text"
+msgid "Inserting a Sheet"
+msgstr ""
+
+#. 2Ej8G
+#: multitables.xhp
+msgctxt ""
+"multitables.xhp\n"
+"par_id3154731\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">Insert - Sheet</item> to insert a new sheet or an existing sheet from another file."
+msgstr ""
+
+#. 6pGCA
+#: multitables.xhp
+msgctxt ""
+"multitables.xhp\n"
+"par_id05092009140203598\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens a dialog box where you can assign macros to sheet events.</ahelp>"
+msgstr ""
+
+#. 66AKV
+#: multitables.xhp
+msgctxt ""
+"multitables.xhp\n"
+"par_id05092009140203523\n"
+"help.text"
+msgid "<variable id=\"sheettabcolor\"><ahelp hid=\".\" visibility=\"hidden\">Opens a window where you can assign a color to the sheet tab.</ahelp></variable>"
+msgstr ""
+
+#. eBdGF
+#: multitables.xhp
+msgctxt ""
+"multitables.xhp\n"
+"par_id050920091402035\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to select all sheets in the document.</ahelp>"
+msgstr ""
+
+#. dMywe
+#: multitables.xhp
+msgctxt ""
+"multitables.xhp\n"
+"par_id0509200914020391\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to deselect all sheets in the document, except the current sheet.</ahelp>"
+msgstr ""
+
+#. JGNCt
+#: multitables.xhp
+msgctxt ""
+"multitables.xhp\n"
+"hd_id3154491\n"
+"help.text"
+msgid "Selecting Multiple Sheets"
+msgstr ""
+
+#. K9EAh
+#: multitables.xhp
+msgctxt ""
+"multitables.xhp\n"
+"par_id3145251\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 ""
+
+#. mtheu
+#: multitables.xhp
+msgctxt ""
+"multitables.xhp\n"
+"par_idN106B7\n"
+"help.text"
+msgid "You can use Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Up or Page Down to select multiple sheets using the keyboard."
+msgstr ""
+
+#. LHpti
+#: multitables.xhp
+msgctxt ""
+"multitables.xhp\n"
+"hd_id3155600\n"
+"help.text"
+msgid "Undoing a Selection"
+msgstr ""
+
+#. ZDEzm
+#: multitables.xhp
+msgctxt ""
+"multitables.xhp\n"
+"par_id3146969\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 ""
+
+#. AzZ8a
+#: multitables.xhp
+msgctxt ""
+"multitables.xhp\n"
+"hd_id3156382\n"
+"help.text"
+msgid "Calculating Across Multiple Sheets"
+msgstr ""
+
+#. g6eib
+#: multitables.xhp
+msgctxt ""
+"multitables.xhp\n"
+"par_id3155333\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 ""
+
+#. BCGTB
+#: note_insert.xhp
+msgctxt ""
+"note_insert.xhp\n"
+"tit\n"
+"help.text"
+msgid "Inserting and Editing Comments"
+msgstr ""
+
+#. P8tBc
+#: note_insert.xhp
+msgctxt ""
+"note_insert.xhp\n"
+"bm_id3153968\n"
+"help.text"
+msgid "<bookmark_value>comments; on cells</bookmark_value> <bookmark_value>cells;comments</bookmark_value> <bookmark_value>remarks on cells</bookmark_value> <bookmark_value>formatting;comments on cells</bookmark_value> <bookmark_value>viewing;comments on cells</bookmark_value> <bookmark_value>displaying; comments</bookmark_value>"
+msgstr ""
+
+#. YBYVe
+#: note_insert.xhp
+msgctxt ""
+"note_insert.xhp\n"
+"hd_id3153968\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 ""
+
+#. ppiA9
+#: note_insert.xhp
+msgctxt ""
+"note_insert.xhp\n"
+"par_id3150440\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 ""
+
+#. ZGJBc
+#: note_insert.xhp
+msgctxt ""
+"note_insert.xhp\n"
+"par_id3145750\n"
+"help.text"
+msgid "The comment is visible whenever the mouse pointer is over the cell."
+msgstr ""
+
+#. C4Eo5
+#: note_insert.xhp
+msgctxt ""
+"note_insert.xhp\n"
+"par_id3148575\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 ""
+
+#. KdF5M
+#: note_insert.xhp
+msgctxt ""
+"note_insert.xhp\n"
+"par_id3149958\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 ""
+
+#. hWoCg
+#: note_insert.xhp
+msgctxt ""
+"note_insert.xhp\n"
+"par_idN10699\n"
+"help.text"
+msgid "Move or resize each comment as you like."
+msgstr ""
+
+#. kwi8z
+#: note_insert.xhp
+msgctxt ""
+"note_insert.xhp\n"
+"par_idN1069D\n"
+"help.text"
+msgid "Format each comment by specifying background color, transparency, border style, and text alignment. Choose the commands from the context menu of the comment."
+msgstr ""
+
+#. vNMSR
+#: note_insert.xhp
+msgctxt ""
+"note_insert.xhp\n"
+"par_id3144764\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 ""
+
+#. TYg9E
+#: note_insert.xhp
+msgctxt ""
+"note_insert.xhp\n"
+"par_id3150715\n"
+"help.text"
+msgid "To display a help tip for a selected cell, use <emph>Data - Validity - Input Help</emph>."
+msgstr ""
+
+#. yGtBB
+#: note_insert.xhp
+msgctxt ""
+"note_insert.xhp\n"
+"par_id3153707\n"
+"help.text"
+msgid "<link href=\"text/shared/01/04050000.xhp\" name=\"Insert - Comment\">Insert - Comment</link>"
+msgstr ""
+
+#. 97G62
+#: numbers_text.xhp
+msgctxt ""
+"numbers_text.xhp\n"
+"tit\n"
+"help.text"
+msgid "Converting Text to Numbers"
+msgstr ""
+
+#. dP2GC
+#: numbers_text.xhp
+msgctxt ""
+"numbers_text.xhp\n"
+"bm_id3145068\n"
+"help.text"
+msgid "<bookmark_value>formats; text as numbers</bookmark_value> <bookmark_value>time format conversion</bookmark_value> <bookmark_value>date formats;conversion</bookmark_value> <bookmark_value>converting;text, into numbers</bookmark_value>"
+msgstr ""
+
+#. pqhdm
+#: numbers_text.xhp
+msgctxt ""
+"numbers_text.xhp\n"
+"hd_id0908200901265171\n"
+"help.text"
+msgid "<variable id=\"numbers_text\"><link href=\"text/scalc/guide/numbers_text.xhp\" name=\"Converting Text to Numbers\">Converting Text to Numbers</link></variable>"
+msgstr ""
+
+#. rpHje
+#: numbers_text.xhp
+msgctxt ""
+"numbers_text.xhp\n"
+"par_id0908200901265127\n"
+"help.text"
+msgid "Defaults settings in Calc converts text inside cells to the respective numeric values if an unambiguous conversion is possible. If no conversion is possible, Calc returns a #VALUE! error."
+msgstr ""
+
+#. yhhMM
+#: numbers_text.xhp
+msgctxt ""
+"numbers_text.xhp\n"
+"par_id0908200901265196\n"
+"help.text"
+msgid "<emph>Only integer numbers including exponent are converted</emph>, and ISO 8601 dates and times in their extended formats with separators. Anything else, like fractional numbers with decimal separators or dates other than ISO 8601, is not converted, as the text string would be locale dependent. Leading and trailing blanks are ignored."
+msgstr ""
+
+#. KHDbE
+#: numbers_text.xhp
+msgctxt ""
+"numbers_text.xhp\n"
+"par_id0908200901265220\n"
+"help.text"
+msgid "The following ISO 8601 formats are converted:"
+msgstr ""
+
+#. Wm625
+#: numbers_text.xhp
+msgctxt ""
+"numbers_text.xhp\n"
+"par_id0908200901265288\n"
+"help.text"
+msgid "CCYY-MM-DD"
+msgstr ""
+
+#. FpDBW
+#: numbers_text.xhp
+msgctxt ""
+"numbers_text.xhp\n"
+"par_id0908200901265267\n"
+"help.text"
+msgid "CCYY-MM-DDThh:mm"
+msgstr ""
+
+#. r9ueM
+#: numbers_text.xhp
+msgctxt ""
+"numbers_text.xhp\n"
+"par_id0908200901265248\n"
+"help.text"
+msgid "CCYY-MM-DDThh:mm:ss"
+msgstr ""
+
+#. 9nAGP
+#: numbers_text.xhp
+msgctxt ""
+"numbers_text.xhp\n"
+"par_id0908200901265374\n"
+"help.text"
+msgid "CCYY-MM-DDThh:mm:ss,s"
+msgstr ""
+
+#. GbRWC
+#: numbers_text.xhp
+msgctxt ""
+"numbers_text.xhp\n"
+"par_id0908200901265327\n"
+"help.text"
+msgid "CCYY-MM-DDThh:mm:ss.s"
+msgstr ""
+
+#. NAzAi
+#: numbers_text.xhp
+msgctxt ""
+"numbers_text.xhp\n"
+"par_id0908200901265399\n"
+"help.text"
+msgid "hh:mm"
+msgstr ""
+
+#. fHx5R
+#: numbers_text.xhp
+msgctxt ""
+"numbers_text.xhp\n"
+"par_id0908200901265347\n"
+"help.text"
+msgid "hh:mm:ss"
+msgstr ""
+
+#. NhLDG
+#: numbers_text.xhp
+msgctxt ""
+"numbers_text.xhp\n"
+"par_id0908200901265349\n"
+"help.text"
+msgid "hh:mm:ss,s"
+msgstr ""
+
+#. zQp4V
+#: numbers_text.xhp
+msgctxt ""
+"numbers_text.xhp\n"
+"par_id0908200901265342\n"
+"help.text"
+msgid "hh:mm:ss.s"
+msgstr ""
+
+#. 2frj9
+#: numbers_text.xhp
+msgctxt ""
+"numbers_text.xhp\n"
+"par_id0908200901265491\n"
+"help.text"
+msgid "The century code CC may not be omitted. Instead of the T date and time separator, exactly one space character may be used."
+msgstr ""
+
+#. ertRH
+#: numbers_text.xhp
+msgctxt ""
+"numbers_text.xhp\n"
+"par_id0908200901265467\n"
+"help.text"
+msgid "If a date is given, it must be a valid Gregorian calendar date. In this case the optional time must be in the range 00:00 to 23:59:59.99999..."
+msgstr ""
+
+#. sztEG
+#: numbers_text.xhp
+msgctxt ""
+"numbers_text.xhp\n"
+"par_id0908200901265420\n"
+"help.text"
+msgid "If only a time string is given, it may have an hours value of more than 24, while minutes and seconds can have a maximum value of 59."
+msgstr ""
+
+#. iCp9E
+#: numbers_text.xhp
+msgctxt ""
+"numbers_text.xhp\n"
+"par_id761567607207916\n"
+"help.text"
+msgid "The conversion is done for single scalar values only, not within ranges."
+msgstr ""
+
+#. C6ykS
+#: numbers_text.xhp
+msgctxt ""
+"numbers_text.xhp\n"
+"par_id0908200901265448\n"
+"help.text"
+msgid "The conversion is done for single scalar values, as in =A1+A2, or =\"1E2\"+1. Cell range arguments are not affected, so SUM(A1:A2) differs from A1+A2 if at least one of the two cells contain a convertible string."
+msgstr ""
+
+#. N4xE3
+#: numbers_text.xhp
+msgctxt ""
+"numbers_text.xhp\n"
+"par_id090820090126540\n"
+"help.text"
+msgid "Strings inside formulas are also converted, such as in =\"1999-11-22\"+42, which returns the date 42 days after November 22nd, 1999. Calculations involving localized dates as strings inside the formula return an error. For example, the localized date string \"11/22/1999\" or \"22.11.1999\" cannot be used for the automatic conversion."
+msgstr ""
+
+#. mvBJU
+#: numbers_text.xhp
+msgctxt ""
+"numbers_text.xhp\n"
+"hd_id1005200903485368\n"
+"help.text"
+msgid "Example"
+msgstr ""
+
+#. Wn9uE
+#: numbers_text.xhp
+msgctxt ""
+"numbers_text.xhp\n"
+"par_id1005200903485359\n"
+"help.text"
+msgid "In A1 enter the text <literal>'1e2</literal> (which is converted to the number 100 internally)."
+msgstr ""
+
+#. CFpmx
+#: numbers_text.xhp
+msgctxt ""
+"numbers_text.xhp\n"
+"par_id1005200903485341\n"
+"help.text"
+msgid "In A2 enter <literal>=A1+1</literal> (which correctly results in 101)."
+msgstr ""
+
+#. MLL7F
+#: numbers_text.xhp
+msgctxt ""
+"numbers_text.xhp\n"
+"par_id891567607263849\n"
+"help.text"
+msgid "The formula <literal>=SUM(A1:A2)</literal>, returns 101 instead of 201 because the conversion does not occur in a range, only for single scalar values. Here, '1e2 is treated as string which is ignored for the SUM function."
+msgstr ""
+
+#. hoF73
+#: numbers_text.xhp
+msgctxt ""
+"numbers_text.xhp\n"
+"par_id611567607779380\n"
+"help.text"
+msgid "<literal>=SUM(\"1E2\";1)</literal> returns #VALUE! because SUM() and some others that iterate over number sequences explicitly check the argument type."
+msgstr ""
+
+#. RNrFS
+#: numbers_text.xhp
+msgctxt ""
+"numbers_text.xhp\n"
+"hd_id871567772424915\n"
+"help.text"
+msgid "Changing the default text to number conversion settings"
+msgstr ""
+
+#. p9t4t
+#: numbers_text.xhp
+msgctxt ""
+"numbers_text.xhp\n"
+"par_id111567772433803\n"
+"help.text"
+msgid "The text to number conversion can be customized in the <link href=\"text/shared/optionen/detailedcalculation.xhp\" name=\"detailed_link\">Detailed Calculation Settings</link> option."
+msgstr ""
+
+#. WE8wt
+#: numbers_text.xhp
+msgctxt ""
+"numbers_text.xhp\n"
+"par_id0908200901265544\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cells - Numbers\">Format - Cells - Numbers</link>"
+msgstr ""
+
+#. 42xFw
+#: pivotchart.xhp
+msgctxt ""
+"pivotchart.xhp\n"
+"tit\n"
+"help.text"
+msgid "Pivot Chart"
+msgstr ""
+
+#. M55mf
+#: pivotchart.xhp
+msgctxt ""
+"pivotchart.xhp\n"
+"bm_id541525139738752\n"
+"help.text"
+msgid "<bookmark_value>chart;pivot chart</bookmark_value> <bookmark_value>pivot table;pivot chart</bookmark_value>"
+msgstr ""
+
+#. AEE5J
+#: pivotchart.xhp
+msgctxt ""
+"pivotchart.xhp\n"
+"hd_id141525139671420\n"
+"help.text"
+msgid "<variable id=\"pivotchart\"><link href=\"text/scalc/guide/pivotchart.xhp\" name=\"Pivot Chart\">Pivot Chart</link></variable>"
+msgstr ""
+
+#. 7LinF
+#: pivotchart.xhp
+msgctxt ""
+"pivotchart.xhp\n"
+"par_id291525139878423\n"
+"help.text"
+msgid "A pivot chart is a chart with data range and data series of a <link href=\"text/scalc/guide/datapilot.xhp\" name=\"Pivot Table\">pivot table</link>."
+msgstr ""
+
+#. VMZRC
+#: pivotchart.xhp
+msgctxt ""
+"pivotchart.xhp\n"
+"par_id911525139890364\n"
+"help.text"
+msgid "Different from static sized tables, where the number of rows and columns are constant, pivot tables can have varying dimensions, depending on the pivot table settings and its data source contents."
+msgstr ""
+
+#. WFAoP
+#: pivotchart.xhp
+msgctxt ""
+"pivotchart.xhp\n"
+"par_id201525141351484\n"
+"help.text"
+msgid "Pivot charts track the changes in the data issued from a pivot table and adjust the data series and data range accordingly."
+msgstr ""
+
+#. mZV4m
+#: pivotchart.xhp
+msgctxt ""
+"pivotchart.xhp\n"
+"par_id191525177790601\n"
+"help.text"
+msgid "<link href=\"https://tomazvajngerl.blogspot.com/2017/03/pivot-charts-in-libreoffice-part-1.html\" name=\"Tomaž Vajngerl blog\">Technical details on %PRODUCTNAME pivot chart implementation</link>."
+msgstr ""
+
+#. D4FkY
+#: pivotchart_create.xhp
+msgctxt ""
+"pivotchart_create.xhp\n"
+"tit\n"
+"help.text"
+msgid "Creating Pivot Charts"
+msgstr ""
+
+#. ycEFe
+#: pivotchart_create.xhp
+msgctxt ""
+"pivotchart_create.xhp\n"
+"bm_id531525141739769\n"
+"help.text"
+msgid "<bookmark_value>pivot chart;creating</bookmark_value>"
+msgstr ""
+
+#. LGXm7
+#: pivotchart_create.xhp
+msgctxt ""
+"pivotchart_create.xhp\n"
+"hd_id441525141699185\n"
+"help.text"
+msgid "<variable id=\"pivotchartcreate\"><link href=\"text/scalc/guide/pivotchart_create.xhp\" name=\"pivot chart create\">Creating Pivot Charts</link></variable>"
+msgstr ""
+
+#. UuRST
+#: pivotchart_create.xhp
+msgctxt ""
+"pivotchart_create.xhp\n"
+"par_id481525142550652\n"
+"help.text"
+msgid "To create a pivot chart proceed as below:"
+msgstr ""
+
+#. EYcoc
+#: pivotchart_create.xhp
+msgctxt ""
+"pivotchart_create.xhp\n"
+"par_id761525140219212\n"
+"help.text"
+msgid "Click inside the pivot table that you want to present in your chart."
+msgstr ""
+
+#. VXkUm
+#: pivotchart_create.xhp
+msgctxt ""
+"pivotchart_create.xhp\n"
+"par_id351525140237521\n"
+"help.text"
+msgid "Choose <emph>Insert – Chart</emph> or click in the <image id=\"img_id3157322\" src=\"cmd/sc_insertobjectchart.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3159322\">Insert Chart Icon</alt></image> <emph>Insert Chart</emph> icon in the main toolbar."
+msgstr ""
+
+#. AE2L6
+#: pivotchart_create.xhp
+msgctxt ""
+"pivotchart_create.xhp\n"
+"par_id151525140367370\n"
+"help.text"
+msgid "%PRODUCTNAME Calc automatically detects the pivot table and opens the pivot chart wizard."
+msgstr ""
+
+#. q3cHS
+#: pivotchart_create.xhp
+msgctxt ""
+"pivotchart_create.xhp\n"
+"par_id861525140391601\n"
+"help.text"
+msgid "Select the <link href=\"text/schart/01/wiz_chart_type.xhp\" name=\"Chart type\">Chart type</link> for the data in the chart wizard."
+msgstr ""
+
+#. DkotR
+#: pivotchart_create.xhp
+msgctxt ""
+"pivotchart_create.xhp\n"
+"par_id41525141917275\n"
+"help.text"
+msgid "The data range and the data series pages of the chart wizard are not enabled. They are controlled by the pivot table."
+msgstr ""
+
+#. 6tkMF
+#: pivotchart_create.xhp
+msgctxt ""
+"pivotchart_create.xhp\n"
+"par_id511525140411625\n"
+"help.text"
+msgid "Select the <link href=\"text/schart/01/wiz_chart_elements.xhp\" name=\"Chart elements\">Chart Elements</link> of the pivot chart in the wizard."
+msgstr ""
+
+#. DiBBF
+#: pivotchart_create.xhp
+msgctxt ""
+"pivotchart_create.xhp\n"
+"par_id1001525165156188\n"
+"help.text"
+msgid "Click <emph>OK</emph> to close the wizard and create the pivot chart."
+msgstr ""
+
+#. gQpGG
+#: pivotchart_delete.xhp
+msgctxt ""
+"pivotchart_delete.xhp\n"
+"tit\n"
+"help.text"
+msgid "Deleting Pivot Charts"
+msgstr ""
+
+#. BEj4o
+#: pivotchart_delete.xhp
+msgctxt ""
+"pivotchart_delete.xhp\n"
+"hd_id231525147891984\n"
+"help.text"
+msgid "<variable id=\"pivotchartdelete\"><link href=\"text/scalc/guide/pivotchart_delete.xhp\" name=\"Deleting a Pivot Chart\">Deleting a Pivot Chart</link></variable>"
+msgstr ""
+
+#. GRQDA
+#: pivotchart_delete.xhp
+msgctxt ""
+"pivotchart_delete.xhp\n"
+"bm_id231525149357908\n"
+"help.text"
+msgid "<bookmark_value>pivot chart;deleting</bookmark_value>"
+msgstr ""
+
+#. cJkJT
+#: pivotchart_delete.xhp
+msgctxt ""
+"pivotchart_delete.xhp\n"
+"par_id141525147903623\n"
+"help.text"
+msgid "To delete a pivot chart, select the chart and press <emph>Del</emph>."
+msgstr ""
+
+#. DFffk
+#: pivotchart_delete.xhp
+msgctxt ""
+"pivotchart_delete.xhp\n"
+"par_id431525148462157\n"
+"help.text"
+msgid "When deleting a pivot chart, the linked pivot table is not affected."
+msgstr ""
+
+#. izc4D
+#: pivotchart_delete.xhp
+msgctxt ""
+"pivotchart_delete.xhp\n"
+"par_id141525148751543\n"
+"help.text"
+msgid "If you delete a pivot table linked to a pivot chart, the pivot chart is also deleted. A dialog box opens to confirm the pivot chart deletion."
+msgstr ""
+
+#. KEqLt
+#: pivotchart_edit.xhp
+msgctxt ""
+"pivotchart_edit.xhp\n"
+"tit\n"
+"help.text"
+msgid "Editing Pivot Charts"
+msgstr ""
+
+#. LsYBC
+#: pivotchart_edit.xhp
+msgctxt ""
+"pivotchart_edit.xhp\n"
+"bm_id661525144028976\n"
+"help.text"
+msgid "<bookmark_value>pivot chart;editing</bookmark_value>"
+msgstr ""
+
+#. fEdDB
+#: pivotchart_edit.xhp
+msgctxt ""
+"pivotchart_edit.xhp\n"
+"hd_id271525144002806\n"
+"help.text"
+msgid "<variable id=\"pivotchartedit\"><link href=\"text/scalc/guide/pivotchart_edit.xhp\" name=\"Pivot Chart Editing\">Editing Pivot Charts</link></variable>"
+msgstr ""
+
+#. tyqEE
+#: pivotchart_edit.xhp
+msgctxt ""
+"pivotchart_edit.xhp\n"
+"par_id971525144066574\n"
+"help.text"
+msgid "Edit a pivot chart in the same way as normal charts."
+msgstr ""
+
+#. RtcFm
+#: pivotchart_edit.xhp
+msgctxt ""
+"pivotchart_edit.xhp\n"
+"hd_id5631580\n"
+"help.text"
+msgid "To edit a pivot chart"
+msgstr ""
+
+#. 4J9iC
+#: pivotchart_filter.xhp
+msgctxt ""
+"pivotchart_filter.xhp\n"
+"tit\n"
+"help.text"
+msgid "Filtering Pivot Charts"
+msgstr ""
+
+#. 83phF
+#: pivotchart_filter.xhp
+msgctxt ""
+"pivotchart_filter.xhp\n"
+"hd_id401525165755583\n"
+"help.text"
+msgid "<variable id=\"pivotchartfilter\"><link href=\"text/scalc/guide/pivotchart_filter.xhp\" name=\"Filtering Pivot Charts\">Filtering Pivot Charts</link></variable>"
+msgstr ""
+
+#. rByFE
+#: pivotchart_filter.xhp
+msgctxt ""
+"pivotchart_filter.xhp\n"
+"par_id781525166702239\n"
+"help.text"
+msgid "Filters are used to remove unwanted data from the pivot chart. You can use filters in the pivot chart or in the corresponding <link href=\"text/scalc/guide/datapilot_filtertable.xhp\" name=\"Pivot table filtering\">pivot table</link>, since the resulting chart is exactly the same."
+msgstr ""
+
+#. n2tCy
+#: pivotchart_filter.xhp
+msgctxt ""
+"pivotchart_filter.xhp\n"
+"hd_id201525166689277\n"
+"help.text"
+msgid "Pivot chart field buttons"
+msgstr ""
+
+#. h5tHY
+#: pivotchart_filter.xhp
+msgctxt ""
+"pivotchart_filter.xhp\n"
+"par_id751525167435160\n"
+"help.text"
+msgid "Pivot chart buttons are unique to pivot charts, normal charts don't have them. The buttons shows the layout of the pivot table, which are the pivot table fields. If present, filters are displayed in the top. Row fields are displayed on the bottom of the chart next to each other and the legend shows the buttons from column fields stacked."
+msgstr ""
+
+#. HiBfg
+#: pivotchart_filter.xhp
+msgctxt ""
+"pivotchart_filter.xhp\n"
+"par_id681525167692377\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sc_PivotChartButtons.png\" id=\"img_id801525167692378\" width=\"604px\" height=\"340px\"><alt id=\"alt_id881525167692378\">Pivot chart buttons</alt></image>"
+msgstr ""
+
+#. 6hniX
+#: pivotchart_filter.xhp
+msgctxt ""
+"pivotchart_filter.xhp\n"
+"par_id851525167448337\n"
+"help.text"
+msgid "The buttons have a pop-up action attached to them. If there is some filtering applied, then the arrow turns blue (similar to the pivot table), so it is easier to see when a field has any filter applied."
+msgstr ""
+
+#. 2A39k
+#: pivotchart_filter.xhp
+msgctxt ""
+"pivotchart_filter.xhp\n"
+"par_id401525167457977\n"
+"help.text"
+msgid "Existing filters shows what is filtered: when nothing is filtered \"- all -\" is shown, when some data is filtered, then \"- multiple -\" is shown and when only one value is not filtered, the value is shown."
+msgstr ""
+
+#. Qprys
+#: pivotchart_update.xhp
+msgctxt ""
+"pivotchart_update.xhp\n"
+"tit\n"
+"help.text"
+msgid "Pivot Chart Update"
+msgstr ""
+
+#. cUrFa
+#: pivotchart_update.xhp
+msgctxt ""
+"pivotchart_update.xhp\n"
+"bm_id801525146393791\n"
+"help.text"
+msgid "<bookmark_value>pivot chart;update</bookmark_value>"
+msgstr ""
+
+#. uViPN
+#: pivotchart_update.xhp
+msgctxt ""
+"pivotchart_update.xhp\n"
+"hd_id281525146417678\n"
+"help.text"
+msgid "<variable id=\"pivotchartupdate\"><link href=\"text/scalc/guide/pivotchart_update.xhp\" name=\"Pivot Chart Update\">Updating Pivot Charts</link></variable>"
+msgstr ""
+
+#. JmbEt
+#: pivotchart_update.xhp
+msgctxt ""
+"pivotchart_update.xhp\n"
+"par_id831525146706944\n"
+"help.text"
+msgid "If the data of the source sheet has been changed, you must refresh the pivot table and the pivot chart is updated accordingly. To refresh the pivot table (and thus the pivot chart):"
+msgstr ""
+
+#. dDjSB
+#: pivotchart_update.xhp
+msgctxt ""
+"pivotchart_update.xhp\n"
+"par_id451525146722974\n"
+"help.text"
+msgid "Choose <emph>Data - Pivot Table - Refresh</emph>."
+msgstr ""
+
+#. Q3QuQ
+#: pivotchart_update.xhp
+msgctxt ""
+"pivotchart_update.xhp\n"
+"par_id331525146738273\n"
+"help.text"
+msgid "Choose <emph>Refresh...</emph> in the context menu of any cell in the pivot table."
+msgstr ""
+
+#. wpTTH
+#: print_details.xhp
+msgctxt ""
+"print_details.xhp\n"
+"tit\n"
+"help.text"
+msgid "Printing Sheet Details"
+msgstr ""
+
+#. qrcho
+#: print_details.xhp
+msgctxt ""
+"print_details.xhp\n"
+"bm_id3154346\n"
+"help.text"
+msgid "<bookmark_value>printing;sheet details</bookmark_value><bookmark_value>sheets; printing details</bookmark_value><bookmark_value>grids; printing sheet grids</bookmark_value><bookmark_value>formulas; printing, instead of results</bookmark_value><bookmark_value>comments; printing</bookmark_value><bookmark_value>charts;printing</bookmark_value><bookmark_value>sheet grids; printing</bookmark_value><bookmark_value>cells; printing grids</bookmark_value><bookmark_value>borders; printing cells</bookmark_value><bookmark_value>zero values; printing</bookmark_value><bookmark_value>null values; printing</bookmark_value><bookmark_value>draw objects;printing</bookmark_value>"
+msgstr ""
+
+#. cqFyW
+#: print_details.xhp
+msgctxt ""
+"print_details.xhp\n"
+"hd_id3154346\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 ""
+
+#. hGEFc
+#: print_details.xhp
+msgctxt ""
+"print_details.xhp\n"
+"par_id3153728\n"
+"help.text"
+msgid "When printing a sheet you can select which details are to be printed:"
+msgstr ""
+
+#. sTXzq
+#: print_details.xhp
+msgctxt ""
+"print_details.xhp\n"
+"par_id3150010\n"
+"help.text"
+msgid "Row and column headers"
+msgstr ""
+
+#. Rxa8b
+#: print_details.xhp
+msgctxt ""
+"print_details.xhp\n"
+"par_id3154013\n"
+"help.text"
+msgid "Sheet grid"
+msgstr ""
+
+#. Bn5n8
+#: print_details.xhp
+msgctxt ""
+"print_details.xhp\n"
+"par_id3145273\n"
+"help.text"
+msgid "Comments"
+msgstr ""
+
+#. DsPaj
+#: print_details.xhp
+msgctxt ""
+"print_details.xhp\n"
+"par_id3145801\n"
+"help.text"
+msgid "Objects and images"
+msgstr ""
+
+#. BBrSF
+#: print_details.xhp
+msgctxt ""
+"print_details.xhp\n"
+"par_id3154491\n"
+"help.text"
+msgid "Charts"
+msgstr ""
+
+#. nJzAL
+#: print_details.xhp
+msgctxt ""
+"print_details.xhp\n"
+"par_id3154731\n"
+"help.text"
+msgid "Drawing objects"
+msgstr ""
+
+#. BRFB5
+#: print_details.xhp
+msgctxt ""
+"print_details.xhp\n"
+"par_id3149400\n"
+"help.text"
+msgid "Formulas"
+msgstr ""
+
+#. 7m79J
+#: print_details.xhp
+msgctxt ""
+"print_details.xhp\n"
+"par_id3150752\n"
+"help.text"
+msgid "To choose the details proceed as follows:"
+msgstr ""
+
+#. jXek8
+#: print_details.xhp
+msgctxt ""
+"print_details.xhp\n"
+"par_id3145640\n"
+"help.text"
+msgid "Select the sheet you want to print."
+msgstr ""
+
+#. yDak7
+#: print_details.xhp
+msgctxt ""
+"print_details.xhp\n"
+"par_id3150042\n"
+"help.text"
+msgid "Choose <emph>Format - Page</emph>."
+msgstr ""
+
+#. 4sJjb
+#: print_details.xhp
+msgctxt ""
+"print_details.xhp\n"
+"par_id3147340\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 ""
+
+#. iLHHD
+#: print_details.xhp
+msgctxt ""
+"print_details.xhp\n"
+"par_id3146916\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 ""
+
+#. FBQsr
+#: print_details.xhp
+msgctxt ""
+"print_details.xhp\n"
+"par_id3145789\n"
+"help.text"
+msgid "Print the document."
+msgstr ""
+
+#. jKV72
+#: print_details.xhp
+msgctxt ""
+"print_details.xhp\n"
+"par_id3150345\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/03100000.xhp\" name=\"View - Page Break\">View - Page Break</link>"
+msgstr ""
+
+#. AgAiH
+#: print_exact.xhp
+msgctxt ""
+"print_exact.xhp\n"
+"tit\n"
+"help.text"
+msgid "Defining Number of Pages for Printing"
+msgstr ""
+
+#. HQatF
+#: print_exact.xhp
+msgctxt ""
+"print_exact.xhp\n"
+"bm_id3153194\n"
+"help.text"
+msgid "<bookmark_value>printing; sheet counts</bookmark_value><bookmark_value>sheets; printing sheet counts</bookmark_value><bookmark_value>page breaks; spreadsheet preview</bookmark_value><bookmark_value>editing;print ranges</bookmark_value><bookmark_value>viewing;print ranges</bookmark_value><bookmark_value>previews;page breaks for printing</bookmark_value>"
+msgstr ""
+
+#. 6Wsn5
+#: print_exact.xhp
+msgctxt ""
+"print_exact.xhp\n"
+"hd_id3153194\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 ""
+
+#. 8omBt
+#: print_exact.xhp
+msgctxt ""
+"print_exact.xhp\n"
+"par_id3153771\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 ""
+
+#. qdCU7
+#: print_exact.xhp
+msgctxt ""
+"print_exact.xhp\n"
+"par_id3159155\n"
+"help.text"
+msgid "Go to the sheet to be printed."
+msgstr ""
+
+#. TkCsA
+#: print_exact.xhp
+msgctxt ""
+"print_exact.xhp\n"
+"par_id3150012\n"
+"help.text"
+msgid "Choose <emph>View - Page Break</emph>."
+msgstr ""
+
+#. eWnDG
+#: print_exact.xhp
+msgctxt ""
+"print_exact.xhp\n"
+"par_id3146974\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 ""
+
+#. wTFAy
+#: print_exact.xhp
+msgctxt ""
+"print_exact.xhp\n"
+"par_id3152578\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 ""
+
+#. yfroe
+#: print_exact.xhp
+msgctxt ""
+"print_exact.xhp\n"
+"par_id3151073\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/03100000.xhp\" name=\"View - Page Break\">View - Page Break</link>"
+msgstr ""
+
+#. ruFna
+#: print_landscape.xhp
+msgctxt ""
+"print_landscape.xhp\n"
+"tit\n"
+"help.text"
+msgid "Printing Sheets in Landscape Format"
+msgstr ""
+
+#. rEKGF
+#: print_landscape.xhp
+msgctxt ""
+"print_landscape.xhp\n"
+"bm_id3153418\n"
+"help.text"
+msgid "<bookmark_value>printing; sheet selections</bookmark_value> <bookmark_value>sheets; printing in landscape</bookmark_value> <bookmark_value>printing; landscape</bookmark_value> <bookmark_value>landscape printing</bookmark_value>"
+msgstr ""
+
+#. ff6kb
+#: print_landscape.xhp
+msgctxt ""
+"print_landscape.xhp\n"
+"hd_id3153418\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 ""
+
+#. Ce8BB
+#: print_landscape.xhp
+msgctxt ""
+"print_landscape.xhp\n"
+"par_id3149257\n"
+"help.text"
+msgid "In order to print a sheet you have a number of interactive options available under <emph>View - Page Break</emph>. Drag the delimiter lines to define the range of printed cells on each page."
+msgstr ""
+
+#. LBGFD
+#: print_landscape.xhp
+msgctxt ""
+"print_landscape.xhp\n"
+"par_id3153963\n"
+"help.text"
+msgid "To print in landscape format, proceed as follows:"
+msgstr ""
+
+#. GGu4V
+#: print_landscape.xhp
+msgctxt ""
+"print_landscape.xhp\n"
+"par_id3154020\n"
+"help.text"
+msgid "Go to the sheet to be printed."
+msgstr ""
+
+#. ZLQgF
+#: print_landscape.xhp
+msgctxt ""
+"print_landscape.xhp\n"
+"par_id3150786\n"
+"help.text"
+msgid "Choose <emph>Format - Page</emph>."
+msgstr ""
+
+#. BTD2G
+#: print_landscape.xhp
+msgctxt ""
+"print_landscape.xhp\n"
+"par_id3150089\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 ""
+
+#. MXEBJ
+#: print_landscape.xhp
+msgctxt ""
+"print_landscape.xhp\n"
+"par_id3166430\n"
+"help.text"
+msgid "Select the <emph>Page</emph> tab. Select the <emph>Landscape</emph> paper format and click OK."
+msgstr ""
+
+#. Ffpa2
+#: print_landscape.xhp
+msgctxt ""
+"print_landscape.xhp\n"
+"par_id3150885\n"
+"help.text"
+msgid "Choose <emph>File - Print</emph>. You will see the <emph>Print</emph> dialog."
+msgstr ""
+
+#. t2d4C
+#: print_landscape.xhp
+msgctxt ""
+"print_landscape.xhp\n"
+"par_id3156288\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 ""
+
+#. naUGC
+#: print_landscape.xhp
+msgctxt ""
+"print_landscape.xhp\n"
+"par_id3149404\n"
+"help.text"
+msgid "In the <emph>Print </emph>dialog in the <emph>General</emph> tab page, select the contents to be printed:"
+msgstr ""
+
+#. QtMET
+#: print_landscape.xhp
+msgctxt ""
+"print_landscape.xhp\n"
+"par_id3153305\n"
+"help.text"
+msgid "<emph>All sheets</emph> - All sheets will be printed."
+msgstr ""
+
+#. uVqb5
+#: print_landscape.xhp
+msgctxt ""
+"print_landscape.xhp\n"
+"par_id3148871\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 ""
+
+#. rrUVv
+#: print_landscape.xhp
+msgctxt ""
+"print_landscape.xhp\n"
+"par_id3764763\n"
+"help.text"
+msgid "<emph>Selected cells</emph> - All selected cells are printed."
+msgstr ""
+
+#. uYBdU
+#: print_landscape.xhp
+msgctxt ""
+"print_landscape.xhp\n"
+"par_id5538804\n"
+"help.text"
+msgid "From all the paper pages that result from the above selection, you can select the range of paper pages to be printed:"
+msgstr ""
+
+#. 9UzuE
+#: print_landscape.xhp
+msgctxt ""
+"print_landscape.xhp\n"
+"par_id14343\n"
+"help.text"
+msgid "<emph>All pages</emph> - Print all resulting pages."
+msgstr ""
+
+#. eUkMY
+#: print_landscape.xhp
+msgctxt ""
+"print_landscape.xhp\n"
+"par_id3148699\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 ""
+
+#. JiCgW
+#: print_landscape.xhp
+msgctxt ""
+"print_landscape.xhp\n"
+"par_id3145076\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 ""
+
+#. EVXcd
+#: print_landscape.xhp
+msgctxt ""
+"print_landscape.xhp\n"
+"par_id3156019\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/03100000.xhp\" name=\"View - Page Break\">View - Page Break</link>"
+msgstr ""
+
+#. vbjmr
+#: print_landscape.xhp
+msgctxt ""
+"print_landscape.xhp\n"
+"par_id8254646\n"
+"help.text"
+msgid "<link href=\"text/scalc/guide/printranges.xhp\">Defining Print Ranges on a Sheet</link>"
+msgstr ""
+
+#. 5uE2T
+#: print_title_row.xhp
+msgctxt ""
+"print_title_row.xhp\n"
+"tit\n"
+"help.text"
+msgid "Printing Rows or Columns on Every Page"
+msgstr ""
+
+#. i2Etr
+#: print_title_row.xhp
+msgctxt ""
+"print_title_row.xhp\n"
+"bm_id3151112\n"
+"help.text"
+msgid "<bookmark_value>printing; sheets on multiple pages</bookmark_value><bookmark_value>sheets; printing on multiple pages</bookmark_value><bookmark_value>rows; repeating when printing</bookmark_value><bookmark_value>columns; repeating when printing</bookmark_value><bookmark_value>repeating;columns/rows on printed pages</bookmark_value><bookmark_value>title rows; printing on all sheets</bookmark_value><bookmark_value>headers; printing on sheets</bookmark_value><bookmark_value>footers; printing on sheets</bookmark_value><bookmark_value>printing; rows/columns as table headings</bookmark_value><bookmark_value>headings;repeating rows/columns as</bookmark_value>"
+msgstr ""
+
+#. GaFEB
+#: print_title_row.xhp
+msgctxt ""
+"print_title_row.xhp\n"
+"hd_id3153727\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 ""
+
+#. kzA5T
+#: print_title_row.xhp
+msgctxt ""
+"print_title_row.xhp\n"
+"par_id3154014\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 ""
+
+#. CHPC8
+#: print_title_row.xhp
+msgctxt ""
+"print_title_row.xhp\n"
+"par_id3146975\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 ""
+
+#. SggEJ
+#: print_title_row.xhp
+msgctxt ""
+"print_title_row.xhp\n"
+"par_id3163710\n"
+"help.text"
+msgid "Choose <emph>Format - Print Ranges - Edit</emph>. The <emph>Edit Print Ranges</emph> dialog appears."
+msgstr ""
+
+#. Gz7dZ
+#: print_title_row.xhp
+msgctxt ""
+"print_title_row.xhp\n"
+"par_id3149958\n"
+"help.text"
+msgid "Click the icon at the far right of the <emph>Rows to repeat</emph> area."
+msgstr ""
+
+#. CMsDN
+#: print_title_row.xhp
+msgctxt ""
+"print_title_row.xhp\n"
+"par_id3145800\n"
+"help.text"
+msgid "The dialog shrinks so that you can see more of the sheet."
+msgstr ""
+
+#. 3Sk4w
+#: print_title_row.xhp
+msgctxt ""
+"print_title_row.xhp\n"
+"par_id3155602\n"
+"help.text"
+msgid "Select the first two rows and, for this example, click cell A1 and drag to A2."
+msgstr ""
+
+#. 3qAdo
+#: print_title_row.xhp
+msgctxt ""
+"print_title_row.xhp\n"
+"par_id3154018\n"
+"help.text"
+msgid "In the shrunk dialog you will see $1:$2. Rows 1 and 2 are now rows to repeat."
+msgstr ""
+
+#. RsCa5
+#: print_title_row.xhp
+msgctxt ""
+"print_title_row.xhp\n"
+"par_id3153707\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 ""
+
+#. GC8hz
+#: print_title_row.xhp
+msgctxt ""
+"print_title_row.xhp\n"
+"par_id3155443\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 ""
+
+#. sHfQp
+#: print_title_row.xhp
+msgctxt ""
+"print_title_row.xhp\n"
+"par_id3154256\n"
+"help.text"
+msgid "Click column A (not in the column header)."
+msgstr ""
+
+#. EyDEo
+#: print_title_row.xhp
+msgctxt ""
+"print_title_row.xhp\n"
+"par_id3154704\n"
+"help.text"
+msgid "Click the icon again at the far right of the <emph>Columns to repeat</emph> area."
+msgstr ""
+
+#. YvDgQ
+#: print_title_row.xhp
+msgctxt ""
+"print_title_row.xhp\n"
+"par_id3150088\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 ""
+
+#. b42kP
+#: print_title_row.xhp
+msgctxt ""
+"print_title_row.xhp\n"
+"par_id3155380\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/03100000.xhp\" name=\"View - Page Break Preview\">View - Page Break Preview</link>"
+msgstr ""
+
+#. uExLf
+#: print_title_row.xhp
+msgctxt ""
+"print_title_row.xhp\n"
+"par_id3154371\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/05080300.xhp\" name=\"Format - Print ranges - Edit\">Format - Print ranges - Edit</link>"
+msgstr ""
+
+#. mxvQN
+#: print_title_row.xhp
+msgctxt ""
+"print_title_row.xhp\n"
+"par_id3146113\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/05070000.xhp\" name=\"Format - Page - (Header / Footer)\">Format - Page - (Header / Footer)</link>"
+msgstr ""
+
+#. AK3vB
+#: printranges.xhp
+msgctxt ""
+"printranges.xhp\n"
+"tit\n"
+"help.text"
+msgid "Using Print Ranges on a Spreadsheet"
+msgstr ""
+
+#. QQGLQ
+#: printranges.xhp
+msgctxt ""
+"printranges.xhp\n"
+"bm_id14648\n"
+"help.text"
+msgid "<bookmark_value>exporting;cells</bookmark_value><bookmark_value>printing; cells</bookmark_value><bookmark_value>ranges;print ranges</bookmark_value><bookmark_value>PDF export of print ranges</bookmark_value><bookmark_value>cell ranges; printing</bookmark_value><bookmark_value>cells; print ranges</bookmark_value><bookmark_value>print ranges</bookmark_value><bookmark_value>clearing, see also deleting/removing</bookmark_value><bookmark_value>defining;print ranges</bookmark_value><bookmark_value>extending print ranges</bookmark_value><bookmark_value>deleting;print ranges</bookmark_value>"
+msgstr ""
+
+#. USFyE
+#: printranges.xhp
+msgctxt ""
+"printranges.xhp\n"
+"par_idN108D7\n"
+"help.text"
+msgid "<variable id=\"printranges\"><link href=\"text/scalc/guide/printranges.xhp\">Defining Print Ranges on a Sheet</link></variable>"
+msgstr ""
+
+#. h4dAF
+#: printranges.xhp
+msgctxt ""
+"printranges.xhp\n"
+"par_idN108F5\n"
+"help.text"
+msgid "You can define which range of cells on a spreadsheet to print."
+msgstr ""
+
+#. sD9qE
+#: printranges.xhp
+msgctxt ""
+"printranges.xhp\n"
+"par_idN108FB\n"
+"help.text"
+msgid "The cells on the sheet that are not part of the defined print range are not printed or exported. Sheets without a defined print range are not printed and not exported to a PDF file, unless the document uses the Excel file format."
+msgstr ""
+
+#. HkA7y
+#: printranges.xhp
+msgctxt ""
+"printranges.xhp\n"
+"par_idN1077A\n"
+"help.text"
+msgid "For files opened in Excel format, all sheets that do not contain a defined print range are printed. The same behavior occurs when you export the Excel formatted spreadsheet to a PDF file."
+msgstr ""
+
+#. 62UF5
+#: printranges.xhp
+msgctxt ""
+"printranges.xhp\n"
+"par_idN108FE\n"
+"help.text"
+msgid "To Define a Print Range"
+msgstr ""
+
+#. tffSG
+#: printranges.xhp
+msgctxt ""
+"printranges.xhp\n"
+"par_idN10905\n"
+"help.text"
+msgid "Select the cells that you want to print."
+msgstr ""
+
+#. qPKQF
+#: printranges.xhp
+msgctxt ""
+"printranges.xhp\n"
+"par_idN10909\n"
+"help.text"
+msgid "Choose <emph>Format - Print Ranges - Define</emph>."
+msgstr ""
+
+#. 5GFUH
+#: printranges.xhp
+msgctxt ""
+"printranges.xhp\n"
+"par_idN10910\n"
+"help.text"
+msgid "To Add Cells to a Print Range"
+msgstr ""
+
+#. fwkxc
+#: printranges.xhp
+msgctxt ""
+"printranges.xhp\n"
+"par_idN10917\n"
+"help.text"
+msgid "Select the cells that you want to add to the existing print range."
+msgstr ""
+
+#. uNLYf
+#: printranges.xhp
+msgctxt ""
+"printranges.xhp\n"
+"par_idN1091B\n"
+"help.text"
+msgid "Choose <emph>Format - Print Ranges - Add</emph>."
+msgstr ""
+
+#. Xj8rT
+#: printranges.xhp
+msgctxt ""
+"printranges.xhp\n"
+"par_idN10922\n"
+"help.text"
+msgid "To Clear a Print Range"
+msgstr ""
+
+#. dYHcz
+#: printranges.xhp
+msgctxt ""
+"printranges.xhp\n"
+"par_idN10929\n"
+"help.text"
+msgid "Choose <emph>Format - Print Ranges - Clear</emph>."
+msgstr ""
+
+#. GLmBw
+#: printranges.xhp
+msgctxt ""
+"printranges.xhp\n"
+"par_idN10953\n"
+"help.text"
+msgid "Using the Page Break Preview to Edit Print Ranges"
+msgstr ""
+
+#. fA865
+#: printranges.xhp
+msgctxt ""
+"printranges.xhp\n"
+"par_idN1093E\n"
+"help.text"
+msgid "In the <emph>Page Break Preview</emph>, print ranges as well as page break regions are outlined by a blue border and contain a centered page number in gray. Nonprinting areas have a gray background."
+msgstr ""
+
+#. S5enN
+#: printranges.xhp
+msgctxt ""
+"printranges.xhp\n"
+"par_id3153143\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 ""
+
+#. DCNh4
+#: printranges.xhp
+msgctxt ""
+"printranges.xhp\n"
+"par_idN10930\n"
+"help.text"
+msgid "To View and Edit Print Ranges"
+msgstr ""
+
+#. KmLhz
+#: printranges.xhp
+msgctxt ""
+"printranges.xhp\n"
+"par_idN10937\n"
+"help.text"
+msgid "Choose <emph>View - Page Break Preview</emph>."
+msgstr ""
+
+#. d3cdC
+#: printranges.xhp
+msgctxt ""
+"printranges.xhp\n"
+"par_idN1082A\n"
+"help.text"
+msgid "To change the default zoom factor of the <emph>Page Break Preview</emph>, double click the percentage value on the <emph>Status</emph> bar, and select a new zoom factor."
+msgstr ""
+
+#. RFe8B
+#: printranges.xhp
+msgctxt ""
+"printranges.xhp\n"
+"par_idN10836\n"
+"help.text"
+msgid "Edit the print range."
+msgstr ""
+
+#. dQeMn
+#: printranges.xhp
+msgctxt ""
+"printranges.xhp\n"
+"par_idN10944\n"
+"help.text"
+msgid "To change the size of a print range, drag a border of the range to a new location."
+msgstr ""
+
+#. HwnGq
+#: printranges.xhp
+msgctxt ""
+"printranges.xhp\n"
+"par_id3151075\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 ""
+
+#. xLgnw
+#: printranges.xhp
+msgctxt ""
+"printranges.xhp\n"
+"par_idN10948\n"
+"help.text"
+msgid "To clear a print range, drag a border of the range onto the opposite border of the range."
+msgstr ""
+
+#. wATRM
+#: printranges.xhp
+msgctxt ""
+"printranges.xhp\n"
+"par_idN10862\n"
+"help.text"
+msgid "To exit the <emph>Page Break Preview</emph>, choose <emph>View - Normal</emph>."
+msgstr ""
+
+#. D7AdB
+#: printranges.xhp
+msgctxt ""
+"printranges.xhp\n"
+"par_idN109CF\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/05080300.xhp\">Editing Print Ranges</link>"
+msgstr ""
+
+#. eUvgA
+#: relativ_absolut_ref.xhp
+msgctxt ""
+"relativ_absolut_ref.xhp\n"
+"tit\n"
+"help.text"
+msgid "Addresses and References, Absolute and Relative"
+msgstr ""
+
+#. ZvNEh
+#: relativ_absolut_ref.xhp
+msgctxt ""
+"relativ_absolut_ref.xhp\n"
+"bm_id3156423\n"
+"help.text"
+msgid "<bookmark_value>addressing; relative and absolute</bookmark_value><bookmark_value>references; absolute/relative</bookmark_value><bookmark_value>absolute addresses in spreadsheets</bookmark_value><bookmark_value>relative addresses</bookmark_value><bookmark_value>absolute references in spreadsheets</bookmark_value><bookmark_value>relative references</bookmark_value><bookmark_value>references; to cells</bookmark_value><bookmark_value>cells; references</bookmark_value>"
+msgstr ""
+
+#. hMp78
+#: relativ_absolut_ref.xhp
+msgctxt ""
+"relativ_absolut_ref.xhp\n"
+"hd_id3156423\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 ""
+
+#. 6AVDc
+#: relativ_absolut_ref.xhp
+msgctxt ""
+"relativ_absolut_ref.xhp\n"
+"hd_id3163712\n"
+"help.text"
+msgid "Relative Addressing"
+msgstr ""
+
+#. rb6GT
+#: relativ_absolut_ref.xhp
+msgctxt ""
+"relativ_absolut_ref.xhp\n"
+"par_id3146119\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 ""
+
+#. 8A4F3
+#: relativ_absolut_ref.xhp
+msgctxt ""
+"relativ_absolut_ref.xhp\n"
+"par_id3154730\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 ""
+
+#. BX9Er
+#: relativ_absolut_ref.xhp
+msgctxt ""
+"relativ_absolut_ref.xhp\n"
+"hd_id3149377\n"
+"help.text"
+msgid "Absolute Addressing"
+msgstr ""
+
+#. xBKEc
+#: relativ_absolut_ref.xhp
+msgctxt ""
+"relativ_absolut_ref.xhp\n"
+"par_id3154943\n"
+"help.text"
+msgid "Absolute referencing is 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 ""
+
+#. i9Afo
+#: relativ_absolut_ref.xhp
+msgctxt ""
+"relativ_absolut_ref.xhp\n"
+"par_id3147338\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 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 ""
+
+#. MaL7p
+#: relativ_absolut_ref.xhp
+msgctxt ""
+"relativ_absolut_ref.xhp\n"
+"par_id3153963\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 ""
+
+#. 7hFuB
+#: relativ_absolut_ref.xhp
+msgctxt ""
+"relativ_absolut_ref.xhp\n"
+"hd_id3154704\n"
+"help.text"
+msgid "When to Use Relative and Absolute References"
+msgstr ""
+
+#. VRg9u
+#: relativ_absolut_ref.xhp
+msgctxt ""
+"relativ_absolut_ref.xhp\n"
+"par_id3147346\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 ""
+
+#. 5ja9B
+#: relativ_absolut_ref.xhp
+msgctxt ""
+"relativ_absolut_ref.xhp\n"
+"par_id3155335\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 ""
+
+#. HEJFq
+#: relativ_absolut_ref.xhp
+msgctxt ""
+"relativ_absolut_ref.xhp\n"
+"par_id3145791\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 ""
+
+#. eMTKy
+#: relativ_absolut_ref.xhp
+msgctxt ""
+"relativ_absolut_ref.xhp\n"
+"par_id3147005\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 ""
+
+#. kAFBF
+#: remove_duplicates.xhp
+msgctxt ""
+"remove_duplicates.xhp\n"
+"tit\n"
+"help.text"
+msgid "Removing Duplicate Values"
+msgstr ""
+
+#. hGQvA
+#: remove_duplicates.xhp
+msgctxt ""
+"remove_duplicates.xhp\n"
+"bm_id3153896\n"
+"help.text"
+msgid "<bookmark_value>filters; removing duplicates</bookmark_value> <bookmark_value>filters; finding unique values</bookmark_value>"
+msgstr ""
+
+#. Q5494
+#: remove_duplicates.xhp
+msgctxt ""
+"remove_duplicates.xhp\n"
+"hd_id501630021281902\n"
+"help.text"
+msgid "<variable id=\"filters\"><link href=\"text/scalc/guide/remove_duplicates.xhp\" name=\"Duplicates_h1\">Removing Duplicate Values</link></variable>"
+msgstr ""
+
+#. ocizx
+#: remove_duplicates.xhp
+msgctxt ""
+"remove_duplicates.xhp\n"
+"par_id3150869\n"
+"help.text"
+msgid "Consider a single column with values where some may be duplicates. To remove duplicate values and obtain only the unique entries in the column:"
+msgstr ""
+
+#. omVUk
+#: remove_duplicates.xhp
+msgctxt ""
+"remove_duplicates.xhp\n"
+"par_id631630021463659\n"
+"help.text"
+msgid "Select the range of values from which duplicate values are to be removed. The values have to be arranged in a single column."
+msgstr ""
+
+#. 7fDQ9
+#: remove_duplicates.xhp
+msgctxt ""
+"remove_duplicates.xhp\n"
+"par_id31630021517873\n"
+"help.text"
+msgid "Go to <menuitem>Data - More Filters - Standard Filter</menuitem>. This opens the <link href=\"text/shared/02/12090100.xhp\" name=\"std_dialog_link\"> Standard Filter</link> dialog."
+msgstr ""
+
+#. EVEzq
+#: remove_duplicates.xhp
+msgctxt ""
+"remove_duplicates.xhp\n"
+"par_id801630022108301\n"
+"help.text"
+msgid "In <emph>Field Name</emph> make sure that the selected column is the column where the values are stored. If a single column is selected this field will be set automatically."
+msgstr ""
+
+#. TesFn
+#: remove_duplicates.xhp
+msgctxt ""
+"remove_duplicates.xhp\n"
+"par_id461630022298515\n"
+"help.text"
+msgid "In <emph>Condition</emph> choose the option <emph>=</emph> (equals sign), which is the default option."
+msgstr ""
+
+#. nWrGh
+#: remove_duplicates.xhp
+msgctxt ""
+"remove_duplicates.xhp\n"
+"par_id261630022372414\n"
+"help.text"
+msgid "In <emph>Value</emph> choose the option <emph>Not Empty</emph>."
+msgstr ""
+
+#. fFZRM
+#: remove_duplicates.xhp
+msgctxt ""
+"remove_duplicates.xhp\n"
+"par_id441630022436605\n"
+"help.text"
+msgid "Click <emph>Options</emph> and select <emph>No duplications</emph>. If the first value is the column header check <emph>Range contains column labels</emph>."
+msgstr ""
+
+#. sdBSD
+#: remove_duplicates.xhp
+msgctxt ""
+"remove_duplicates.xhp\n"
+"par_id841630022924442\n"
+"help.text"
+msgid "Check <emph>Copy results</emph> and use the input box below it to inform a cell address where the unique entries are to be entered."
+msgstr ""
+
+#. DJcXh
+#: remove_duplicates.xhp
+msgctxt ""
+"remove_duplicates.xhp\n"
+"par_id61630023053412\n"
+"help.text"
+msgid "Click <emph>OK</emph>. The unique values in the range will be entered starting with the cell selected in the previous step."
+msgstr ""
+
+#. 3qh4V
+#: remove_duplicates.xhp
+msgctxt ""
+"remove_duplicates.xhp\n"
+"par_id81630022708336\n"
+"help.text"
+msgid "The <emph>No duplications</emph> option is case sensitive. Therefore, values \"A\" and \"a\" are each considered as unique values."
+msgstr ""
+
+#. cPpmr
+#: rename_table.xhp
+msgctxt ""
+"rename_table.xhp\n"
+"tit\n"
+"help.text"
+msgid "Renaming Sheets"
+msgstr ""
+
+#. fuPJn
+#: rename_table.xhp
+msgctxt ""
+"rename_table.xhp\n"
+"bm_id3150398\n"
+"help.text"
+msgid "<bookmark_value>renaming;sheets</bookmark_value> <bookmark_value>sheet tabs;renaming</bookmark_value> <bookmark_value>tables;renaming</bookmark_value> <bookmark_value>names; sheets</bookmark_value>"
+msgstr ""
+
+#. Ussbk
+#: rename_table.xhp
+msgctxt ""
+"rename_table.xhp\n"
+"hd_id3150398\n"
+"help.text"
+msgid "<variable id=\"rename_table\"><link href=\"text/scalc/guide/rename_table.xhp\" name=\"Renaming Sheets\">Renaming Sheets</link></variable>"
+msgstr ""
+
+#. zEnG4
+#: rename_table.xhp
+msgctxt ""
+"rename_table.xhp\n"
+"par_id701519308848244\n"
+"help.text"
+msgid "Setting sheet names is an important feature to produce readable and understandable spreadsheets documents."
+msgstr ""
+
+#. DE2ji
+#: rename_table.xhp
+msgctxt ""
+"rename_table.xhp\n"
+"par_id3155444\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."
+msgstr ""
+
+#. rMuCd
+#: rename_table.xhp
+msgctxt ""
+"rename_table.xhp\n"
+"par_id471607437423400\n"
+"help.text"
+msgid "To rename a sheet in your document:"
+msgstr ""
+
+#. 99JMV
+#: rename_table.xhp
+msgctxt ""
+"rename_table.xhp\n"
+"par_id3146976\n"
+"help.text"
+msgid "Double-click the sheet tab or open its context menu and choose <menuitem>Rename Sheet</menuitem>. A dialog box appears where you can enter a new name."
+msgstr ""
+
+#. GtGtQ
+#: rename_table.xhp
+msgctxt ""
+"rename_table.xhp\n"
+"par_id3149260\n"
+"help.text"
+msgid "Enter a new name for the sheet and click <emph>OK</emph>."
+msgstr ""
+
+#. NELoF
+#: rename_table.xhp
+msgctxt ""
+"rename_table.xhp\n"
+"par_id3149667\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 ""
+
+#. FUXLc
+#: rename_table.xhp
+msgctxt ""
+"rename_table.xhp\n"
+"par_id471519308256437\n"
+"help.text"
+msgid "The document can contain up to 10,000 individual sheets, which must have different names."
+msgstr ""
+
+#. VDtVj
+#: rename_table.xhp
+msgctxt ""
+"rename_table.xhp\n"
+"hd_id541607437294635\n"
+"help.text"
+msgid "Sheet Naming Restrictions"
+msgstr ""
+
+#. ynfez
+#: rename_table.xhp
+msgctxt ""
+"rename_table.xhp\n"
+"par_id0909200810502833\n"
+"help.text"
+msgid "Sheet names can contain almost any character. Some naming restrictions apply, the following characters are not allowed in sheet names:"
+msgstr ""
+
+#. GW256
+#: rename_table.xhp
+msgctxt ""
+"rename_table.xhp\n"
+"par_id090920081050281\n"
+"help.text"
+msgid "colon <literal>:</literal>"
+msgstr ""
+
+#. a2JXE
+#: rename_table.xhp
+msgctxt ""
+"rename_table.xhp\n"
+"par_id0909200810502897\n"
+"help.text"
+msgid "back slash <literal>\\</literal>"
+msgstr ""
+
+#. mkHAC
+#: rename_table.xhp
+msgctxt ""
+"rename_table.xhp\n"
+"par_id090920081050299\n"
+"help.text"
+msgid "forward slash <literal>/</literal>"
+msgstr ""
+
+#. V9Z6i
+#: rename_table.xhp
+msgctxt ""
+"rename_table.xhp\n"
+"par_id0909200810502913\n"
+"help.text"
+msgid "question mark <literal>?</literal>"
+msgstr ""
+
+#. 42B5r
+#: rename_table.xhp
+msgctxt ""
+"rename_table.xhp\n"
+"par_id090920081050298\n"
+"help.text"
+msgid "asterisk <literal>*</literal>"
+msgstr ""
+
+#. sAMTR
+#: rename_table.xhp
+msgctxt ""
+"rename_table.xhp\n"
+"par_id0909200810502969\n"
+"help.text"
+msgid "left square bracket <literal>[</literal>"
+msgstr ""
+
+#. 32rAi
+#: rename_table.xhp
+msgctxt ""
+"rename_table.xhp\n"
+"par_id0909200810502910\n"
+"help.text"
+msgid "right square bracket <literal>]</literal>"
+msgstr ""
+
+#. ESD5B
+#: rename_table.xhp
+msgctxt ""
+"rename_table.xhp\n"
+"par_id0909200810502971\n"
+"help.text"
+msgid "single quote <literal>'</literal> as the first or last character of the name"
+msgstr ""
+
+#. 36nvo
+#: rename_table.xhp
+msgctxt ""
+"rename_table.xhp\n"
+"par_id761607437686157\n"
+"help.text"
+msgid "The single quote is Unicode <literal>U+0027</literal>, also known as <literal>apostrophe</literal>. Other single-quote characters, similar to <literal>apostrophe</literal>, are allowed, such as <literal>ʼ</literal> <literal>‛</literal> and <literal>‚</literal>."
+msgstr ""
+
+#. DMm29
+#: rename_table.xhp
+msgctxt ""
+"rename_table.xhp\n"
+"hd_id251607438968588\n"
+"help.text"
+msgid "Using a Default Prefix for Sheet Names"
+msgstr ""
+
+#. MEc8r
+#: rename_table.xhp
+msgctxt ""
+"rename_table.xhp\n"
+"par_id81519309108908\n"
+"help.text"
+msgid "You can set a prefix for the names of new sheets you create. Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - %PRODUCTNAME Calc - Defaults</menuitem> and enter the prefix name in <emph>Prefix name for new worksheet</emph>."
+msgstr ""
+
+#. Ev9Ae
+#: rename_table.xhp
+msgctxt ""
+"rename_table.xhp\n"
+"hd_id821607437571713\n"
+"help.text"
+msgid "Referencing Sheet Names with Special Characters"
+msgstr ""
+
+#. BAZ4z
+#: rename_table.xhp
+msgctxt ""
+"rename_table.xhp\n"
+"par_id090920081050307\n"
+"help.text"
+msgid "In cell references, a sheet name must be enclosed in single quotes <literal>'</literal> when the name contains other characters than alphanumeric or underscore. A single quote contained within a name has to be escaped by doubling it (two single quotes)."
+msgstr ""
+
+#. ZjbDT
+#: rename_table.xhp
+msgctxt ""
+"rename_table.xhp\n"
+"par_id321519307869857\n"
+"help.text"
+msgid "For example, you want to reference the <literal>cell A1</literal> on a sheet named <literal>This year's sheet</literal>."
+msgstr ""
+
+#. tAj5V
+#: rename_table.xhp
+msgctxt ""
+"rename_table.xhp\n"
+"par_id0909200810503054\n"
+"help.text"
+msgid "The reference must be enclosed in single quotes, and the one single quote inside the name must be doubled: <literal>'This year''s sheet'.A1</literal>"
+msgstr ""
+
+#. bwZRy
+#: rounding_numbers.xhp
+msgctxt ""
+"rounding_numbers.xhp\n"
+"tit\n"
+"help.text"
+msgid "Using Rounded Off Numbers"
+msgstr ""
+
+#. TukAd
+#: rounding_numbers.xhp
+msgctxt ""
+"rounding_numbers.xhp\n"
+"bm_id3153361\n"
+"help.text"
+msgid "<bookmark_value>numbers; rounded off</bookmark_value><bookmark_value>rounded off numbers</bookmark_value><bookmark_value>exact numbers in $[officename] Calc</bookmark_value><bookmark_value>decimal places; showing</bookmark_value><bookmark_value>changing;number of decimal places</bookmark_value><bookmark_value>values;rounded in calculations</bookmark_value><bookmark_value>calculating;rounded off values</bookmark_value><bookmark_value>numbers; decimal places</bookmark_value><bookmark_value>precision as shown</bookmark_value><bookmark_value>rounding precision</bookmark_value><bookmark_value>spreadsheets; values as shown</bookmark_value>"
+msgstr ""
+
+#. K5BPL
+#: rounding_numbers.xhp
+msgctxt ""
+"rounding_numbers.xhp\n"
+"hd_id3156422\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 ""
+
+#. dJpQD
+#: rounding_numbers.xhp
+msgctxt ""
+"rounding_numbers.xhp\n"
+"par_id3153726\n"
+"help.text"
+msgid "In $[officename] Calc, all decimal numbers are displayed rounded off to two decimal places."
+msgstr ""
+
+#. BKGNA
+#: rounding_numbers.xhp
+msgctxt ""
+"rounding_numbers.xhp\n"
+"hd_id3152596\n"
+"help.text"
+msgid "To change this for selected cells"
+msgstr ""
+
+#. fmThE
+#: rounding_numbers.xhp
+msgctxt ""
+"rounding_numbers.xhp\n"
+"par_id3154321\n"
+"help.text"
+msgid "Mark all the cells you want to modify."
+msgstr ""
+
+#. 9JSBs
+#: rounding_numbers.xhp
+msgctxt ""
+"rounding_numbers.xhp\n"
+"par_id3147428\n"
+"help.text"
+msgid "Choose <emph>Format - Cells</emph> and go to the <emph>Numbers</emph> tab page."
+msgstr ""
+
+#. AvcBP
+#: rounding_numbers.xhp
+msgctxt ""
+"rounding_numbers.xhp\n"
+"par_id3153876\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 ""
+
+#. ynFUv
+#: rounding_numbers.xhp
+msgctxt ""
+"rounding_numbers.xhp\n"
+"hd_id3155415\n"
+"help.text"
+msgid "To change this everywhere"
+msgstr ""
+
+#. iUWJZ
+#: rounding_numbers.xhp
+msgctxt ""
+"rounding_numbers.xhp\n"
+"par_id3150715\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 ""
+
+#. po5bu
+#: rounding_numbers.xhp
+msgctxt ""
+"rounding_numbers.xhp\n"
+"par_id3153707\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 ""
+
+#. GeRbd
+#: rounding_numbers.xhp
+msgctxt ""
+"rounding_numbers.xhp\n"
+"hd_id3154755\n"
+"help.text"
+msgid "To calculate with the rounded off numbers instead of the internal exact values"
+msgstr ""
+
+#. 6po4k
+#: rounding_numbers.xhp
+msgctxt ""
+"rounding_numbers.xhp\n"
+"par_id3150045\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 ""
+
+#. fDDJv
+#: rounding_numbers.xhp
+msgctxt ""
+"rounding_numbers.xhp\n"
+"par_id3146920\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 ""
+
+#. qp8h5
+#: rounding_numbers.xhp
+msgctxt ""
+"rounding_numbers.xhp\n"
+"par_id3145790\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Numbers\">Numbers</link>"
+msgstr ""
+
+#. AoZCy
+#: rounding_numbers.xhp
+msgctxt ""
+"rounding_numbers.xhp\n"
+"par_id3147005\n"
+"help.text"
+msgid "<link href=\"text/shared/optionen/01060500.xhp\" name=\"Calculate\">Calculate</link>"
+msgstr ""
+
+#. 2CXMu
+#: row_height.xhp
+msgctxt ""
+"row_height.xhp\n"
+"tit\n"
+"help.text"
+msgid "Changing Row Height or Column Width"
+msgstr ""
+
+#. uJox8
+#: row_height.xhp
+msgctxt ""
+"row_height.xhp\n"
+"bm_id3145748\n"
+"help.text"
+msgid "<bookmark_value>heights of cells</bookmark_value><bookmark_value>cell heights</bookmark_value><bookmark_value>cell widths</bookmark_value><bookmark_value>cells; heights and widths</bookmark_value><bookmark_value>widths of cells</bookmark_value><bookmark_value>column widths</bookmark_value><bookmark_value>rows; heights</bookmark_value><bookmark_value>columns; widths</bookmark_value><bookmark_value>changing;row heights/column widths</bookmark_value>"
+msgstr ""
+
+#. ZhKE7
+#: row_height.xhp
+msgctxt ""
+"row_height.xhp\n"
+"hd_id3145748\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 ""
+
+#. NXeZU
+#: row_height.xhp
+msgctxt ""
+"row_height.xhp\n"
+"par_id3154017\n"
+"help.text"
+msgid "You can change the height of the rows with the mouse or through the dialog."
+msgstr ""
+
+#. 2RW9S
+#: row_height.xhp
+msgctxt ""
+"row_height.xhp\n"
+"par_id3154702\n"
+"help.text"
+msgid "What is described here for rows and row height applies accordingly for columns and column width."
+msgstr ""
+
+#. diHyP
+#: row_height.xhp
+msgctxt ""
+"row_height.xhp\n"
+"hd_id3153963\n"
+"help.text"
+msgid "Using the mouse to change the row height or column width"
+msgstr ""
+
+#. yDjtk
+#: row_height.xhp
+msgctxt ""
+"row_height.xhp\n"
+"par_id3154020\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 ""
+
+#. VzepD
+#: row_height.xhp
+msgctxt ""
+"row_height.xhp\n"
+"par_id3159237\n"
+"help.text"
+msgid "Select the optimal row height by double-clicking the separator below the row."
+msgstr ""
+
+#. sQvjf
+#: row_height.xhp
+msgctxt ""
+"row_height.xhp\n"
+"hd_id3154659\n"
+"help.text"
+msgid "Using the dialog to change the row height or column width"
+msgstr ""
+
+#. u7JcF
+#: row_height.xhp
+msgctxt ""
+"row_height.xhp\n"
+"par_id3150367\n"
+"help.text"
+msgid "Click the row so that you achieve the focus."
+msgstr ""
+
+#. g7BNy
+#: row_height.xhp
+msgctxt ""
+"row_height.xhp\n"
+"par_id3166432\n"
+"help.text"
+msgid "Start the context menu on the header at the left-hand side."
+msgstr ""
+
+#. FZCG8
+#: row_height.xhp
+msgctxt ""
+"row_height.xhp\n"
+"par_id3150519\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 ""
+
+#. XZYSf
+#: row_height.xhp
+msgctxt ""
+"row_height.xhp\n"
+"par_id3154487\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05340100.xhp\" name=\"Row height\">Row height</link>"
+msgstr ""
+
+#. ftbnx
+#: row_height.xhp
+msgctxt ""
+"row_height.xhp\n"
+"par_id3149408\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/05030200.xhp\" name=\"Optimal row height\">Optimal row height</link>"
+msgstr ""
+
+#. BJtSN
+#: row_height.xhp
+msgctxt ""
+"row_height.xhp\n"
+"par_id3153305\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05340200.xhp\" name=\"Column width\">Column width</link>"
+msgstr ""
+
+#. HGYEx
+#: row_height.xhp
+msgctxt ""
+"row_height.xhp\n"
+"par_id3153815\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/05040200.xhp\" name=\"Optimal column width\">Optimal column width</link>"
+msgstr ""
+
+#. YRbvh
+#: scenario.xhp
+msgctxt ""
+"scenario.xhp\n"
+"tit\n"
+"help.text"
+msgid "Using Scenarios"
+msgstr ""
+
+#. T4hqA
+#: scenario.xhp
+msgctxt ""
+"scenario.xhp\n"
+"bm_id3149664\n"
+"help.text"
+msgid "<bookmark_value>scenarios; creating/editing/deleting</bookmark_value><bookmark_value>opening;scenarios</bookmark_value><bookmark_value>selecting;scenarios in Navigator</bookmark_value>"
+msgstr ""
+
+#. 4gBns
+#: scenario.xhp
+msgctxt ""
+"scenario.xhp\n"
+"hd_id3125863\n"
+"help.text"
+msgid "<variable id=\"scenario\"><link href=\"text/scalc/guide/scenario.xhp\" name=\"Using Scenarios\">Using Scenarios</link></variable>"
+msgstr ""
+
+#. DGENT
+#: scenario.xhp
+msgctxt ""
+"scenario.xhp\n"
+"par_id3150869\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 ""
+
+#. 6DfU4
+#: scenario.xhp
+msgctxt ""
+"scenario.xhp\n"
+"hd_id3149255\n"
+"help.text"
+msgid "Creating Your Own Scenarios"
+msgstr ""
+
+#. gZSq5
+#: scenario.xhp
+msgctxt ""
+"scenario.xhp\n"
+"par_id3154704\n"
+"help.text"
+msgid "To create a scenario, select all the cells that provide the data for the scenario."
+msgstr ""
+
+#. tyTVg
+#: scenario.xhp
+msgctxt ""
+"scenario.xhp\n"
+"par_id3154020\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> key as you click each cell."
+msgstr ""
+
+#. Jfmm4
+#: scenario.xhp
+msgctxt ""
+"scenario.xhp\n"
+"par_id3150364\n"
+"help.text"
+msgid "Choose <emph>Tools - Scenarios</emph>. The <emph>Create Scenario</emph> dialog appears."
+msgstr ""
+
+#. BhQQD
+#: scenario.xhp
+msgctxt ""
+"scenario.xhp\n"
+"par_id3166426\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 ""
+
+#. Di3Gm
+#: scenario.xhp
+msgctxt ""
+"scenario.xhp\n"
+"hd_id3149664\n"
+"help.text"
+msgid "Using Scenarios"
+msgstr ""
+
+#. z5mGP
+#: scenario.xhp
+msgctxt ""
+"scenario.xhp\n"
+"par_id3153415\n"
+"help.text"
+msgid "Scenarios can be selected in the Navigator:"
+msgstr ""
+
+#. JBmvQ
+#: scenario.xhp
+msgctxt ""
+"scenario.xhp\n"
+"par_id3150752\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 ""
+
+#. 4GFfR
+#: scenario.xhp
+msgctxt ""
+"scenario.xhp\n"
+"par_id3155764\n"
+"help.text"
+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 ""
+
+#. 86uVD
+#: scenario.xhp
+msgctxt ""
+"scenario.xhp\n"
+"par_id3154256\n"
+"help.text"
+msgid "In the Navigator, you see the defined scenarios with the comments that were entered when the scenarios were created."
+msgstr ""
+
+#. Pisdt
+#: scenario.xhp
+msgctxt ""
+"scenario.xhp\n"
+"par_id1243629\n"
+"help.text"
+msgid "Double-click a scenario name in the Navigator to apply that scenario to the current sheet."
+msgstr ""
+
+#. vWTcf
+#: scenario.xhp
+msgctxt ""
+"scenario.xhp\n"
+"par_id9044770\n"
+"help.text"
+msgid "To delete a scenario, right-click the name in the Navigator and choose <emph>Delete</emph>."
+msgstr ""
+
+#. FLBCQ
+#: scenario.xhp
+msgctxt ""
+"scenario.xhp\n"
+"par_id3674123\n"
+"help.text"
+msgid "To edit a scenario, right-click the name in the Navigator and choose <emph>Properties</emph>."
+msgstr ""
+
+#. jUVxh
+#: scenario.xhp
+msgctxt ""
+"scenario.xhp\n"
+"par_id3424481\n"
+"help.text"
+msgid "To hide the border of a set of cells that are part of a scenario, open the <emph>Properties</emph> dialog for each scenario that affects the cells and clear the Display border checkbox. Hiding the border also removes the listbox on the sheet where you can choose the scenarios."
+msgstr ""
+
+#. jtQWC
+#: scenario.xhp
+msgctxt ""
+"scenario.xhp\n"
+"par_id3154368\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 ""
+
+#. 3Rz4E
+#: scenario.xhp
+msgctxt ""
+"scenario.xhp\n"
+"par_id3154484\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/06050000.xhp\" name=\"Creating Scenarios\">Creating Scenarios</link>"
+msgstr ""
+
+#. AG6Vf
+#: sorted_list.xhp
+msgctxt ""
+"sorted_list.xhp\n"
+"tit\n"
+"help.text"
+msgid "Applying Sort Lists"
+msgstr ""
+
+#. tWAqX
+#: sorted_list.xhp
+msgctxt ""
+"sorted_list.xhp\n"
+"bm_id3150870\n"
+"help.text"
+msgid "<bookmark_value>filling;customized lists</bookmark_value><bookmark_value>sort lists;applying</bookmark_value><bookmark_value>defining;sort lists</bookmark_value><bookmark_value>geometric lists</bookmark_value><bookmark_value>arithmetic lists</bookmark_value><bookmark_value>series;sort lists</bookmark_value><bookmark_value>lists; user-defined</bookmark_value><bookmark_value>customized lists</bookmark_value>"
+msgstr ""
+
+#. WuFEM
+#: sorted_list.xhp
+msgctxt ""
+"sorted_list.xhp\n"
+"hd_id3150870\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 ""
+
+#. oMwuD
+#: sorted_list.xhp
+msgctxt ""
+"sorted_list.xhp\n"
+"par_id3159154\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 ""
+
+#. BEsCh
+#: sorted_list.xhp
+msgctxt ""
+"sorted_list.xhp\n"
+"par_id3148645\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 ""
+
+#. Eay9F
+#: sorted_list.xhp
+msgctxt ""
+"sorted_list.xhp\n"
+"par_id2367931\n"
+"help.text"
+msgid "Hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> if you do not want to fill the cells with different values."
+msgstr ""
+
+#. YPryW
+#: sorted_list.xhp
+msgctxt ""
+"sorted_list.xhp\n"
+"par_id3152577\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 ""
+
+#. qqeXK
+#: sorted_list.xhp
+msgctxt ""
+"sorted_list.xhp\n"
+"par_id3147434\n"
+"help.text"
+msgid "<link href=\"text/shared/optionen/01060400.xhp\" name=\"Sort lists\">Sort lists</link>"
+msgstr ""
+
+#. 6GdiT
+#: specialfilter.xhp
+msgctxt ""
+"specialfilter.xhp\n"
+"tit\n"
+"help.text"
+msgid "Applying Advanced Filters"
+msgstr ""
+
+#. Gy5TZ
+#: specialfilter.xhp
+msgctxt ""
+"specialfilter.xhp\n"
+"bm_id3148798\n"
+"help.text"
+msgid "<bookmark_value>filters;defining advanced filters </bookmark_value><bookmark_value>advanced filters</bookmark_value><bookmark_value>defining; advanced filters</bookmark_value><bookmark_value>database ranges; advanced filters</bookmark_value>"
+msgstr ""
+
+#. cjgod
+#: specialfilter.xhp
+msgctxt ""
+"specialfilter.xhp\n"
+"hd_id3148798\n"
+"help.text"
+msgid "<variable id=\"specialfilter\"><link href=\"text/scalc/guide/specialfilter.xhp\" name=\"Applying Advanced Filters\">Applying Advanced Filters</link></variable>"
+msgstr ""
+
+#. tYuAi
+#: specialfilter.xhp
+msgctxt ""
+"specialfilter.xhp\n"
+"par_id3145785\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 ""
+
+#. 73DhZ
+#: specialfilter.xhp
+msgctxt ""
+"specialfilter.xhp\n"
+"par_id3153142\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 <menuitem>Data - More Filters - Advanced Filter</menuitem>, and define the filter conditions."
+msgstr ""
+
+#. 2F7wd
+#: specialfilter.xhp
+msgctxt ""
+"specialfilter.xhp\n"
+"par_id3153726\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 <menuitem>Format - Rows - Show</menuitem> command."
+msgstr ""
+
+#. Sn4mJ
+#: specialfilter.xhp
+msgctxt ""
+"specialfilter.xhp\n"
+"par_id3149664\n"
+"help.text"
+msgid "Example"
+msgstr ""
+
+#. UFqRd
+#: specialfilter.xhp
+msgctxt ""
+"specialfilter.xhp\n"
+"par_id3147427\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 ""
+
+#. KiEAY
+#: specialfilter.xhp
+msgctxt ""
+"specialfilter.xhp\n"
+"par_id3159239\n"
+"help.text"
+msgid "Month"
+msgstr ""
+
+#. zvwPF
+#: specialfilter.xhp
+msgctxt ""
+"specialfilter.xhp\n"
+"par_id3150086\n"
+"help.text"
+msgid "Standard"
+msgstr ""
+
+#. FgLfE
+#: specialfilter.xhp
+msgctxt ""
+"specialfilter.xhp\n"
+"par_id3150202\n"
+"help.text"
+msgid "Business"
+msgstr ""
+
+#. v3Dfi
+#: specialfilter.xhp
+msgctxt ""
+"specialfilter.xhp\n"
+"par_id3150883\n"
+"help.text"
+msgid "Luxury"
+msgstr ""
+
+#. 4BrQp
+#: specialfilter.xhp
+msgctxt ""
+"specialfilter.xhp\n"
+"par_id3152987\n"
+"help.text"
+msgid "Suite"
+msgstr ""
+
+#. KT7sj
+#: specialfilter.xhp
+msgctxt ""
+"specialfilter.xhp\n"
+"par_id3148839\n"
+"help.text"
+msgid "January"
+msgstr ""
+
+#. USDDe
+#: specialfilter.xhp
+msgctxt ""
+"specialfilter.xhp\n"
+"par_id3149900\n"
+"help.text"
+msgid "February"
+msgstr ""
+
+#. 88qLX
+#: specialfilter.xhp
+msgctxt ""
+"specialfilter.xhp\n"
+"par_id3147250\n"
+"help.text"
+msgid "March"
+msgstr ""
+
+#. sbbpY
+#: specialfilter.xhp
+msgctxt ""
+"specialfilter.xhp\n"
+"par_id3151391\n"
+"help.text"
+msgid "and so on..."
+msgstr ""
+
+#. e5jJ9
+#: specialfilter.xhp
+msgctxt ""
+"specialfilter.xhp\n"
+"par_id3147300\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 ""
+
+#. VHUHq
+#: specialfilter.xhp
+msgctxt ""
+"specialfilter.xhp\n"
+"par_id3150693\n"
+"help.text"
+msgid "Month"
+msgstr ""
+
+#. fX6Uo
+#: specialfilter.xhp
+msgctxt ""
+"specialfilter.xhp\n"
+"par_id3147475\n"
+"help.text"
+msgid "Standard"
+msgstr ""
+
+#. kQ8ZZ
+#: specialfilter.xhp
+msgctxt ""
+"specialfilter.xhp\n"
+"par_id3154846\n"
+"help.text"
+msgid "Business"
+msgstr ""
+
+#. cZBpH
+#: specialfilter.xhp
+msgctxt ""
+"specialfilter.xhp\n"
+"par_id3153082\n"
+"help.text"
+msgid "Luxury"
+msgstr ""
+
+#. eo2EN
+#: specialfilter.xhp
+msgctxt ""
+"specialfilter.xhp\n"
+"par_id3149506\n"
+"help.text"
+msgid "Suite"
+msgstr ""
+
+#. CAjJZ
+#: specialfilter.xhp
+msgctxt ""
+"specialfilter.xhp\n"
+"par_id3149956\n"
+"help.text"
+msgid "January"
+msgstr ""
+
+#. GTvgG
+#: specialfilter.xhp
+msgctxt ""
+"specialfilter.xhp\n"
+"par_id3153566\n"
+"help.text"
+msgid "Specify that only rows which either have the value <literal>January</literal> in the <emph>Month</emph> cells OR a value of under 160000 in the <emph>Standard</emph> cells will be displayed."
+msgstr ""
+
+#. ApUpg
+#: specialfilter.xhp
+msgctxt ""
+"specialfilter.xhp\n"
+"par_id3147372\n"
+"help.text"
+msgid "Choose <menuitem>Data - More Filters - Advanced Filter</menuitem>, 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 ""
+
+#. jQ6bn
+#: subtotaltool.xhp
+msgctxt ""
+"subtotaltool.xhp\n"
+"tit\n"
+"help.text"
+msgid "Using Subtotals Tool"
+msgstr ""
+
+#. aKjYH
+#: subtotaltool.xhp
+msgctxt ""
+"subtotaltool.xhp\n"
+"bm_id521585182060496\n"
+"help.text"
+msgid "<bookmark_value>subtotals;using subtotals tool</bookmark_value>"
+msgstr ""
+
+#. 6JBG9
+#: subtotaltool.xhp
+msgctxt ""
+"subtotaltool.xhp\n"
+"hd_id631585177069332\n"
+"help.text"
+msgid "<variable id=\"subtotaltoolh1\"><link href=\"text/scalc/guide/subtotaltool.xhp\" name=\"Using Subtotal Tool\">Using Subtotal Tool</link></variable>"
+msgstr ""
+
+#. rC9BC
+#: subtotaltool.xhp
+msgctxt ""
+"subtotaltool.xhp\n"
+"par_id301585177069332\n"
+"help.text"
+msgid "Calc offers the Subtotals tool as a more comprehensive alternative to the <link href=\"text/scalc/01/04060106.xhp#Section12\" name=\"subtotal\">SUBTOTAL function</link>. In contrast to SUBTOTAL, which only works on a single array, the Subtotals tool can create subtotals for up to three arrays arranged in labeled columns. It also groups subtotals by category and sorts them automatically, thereby eliminating the need to apply AutoFilters and filter categories by hand."
+msgstr ""
+
+#. NEkbi
+#: subtotaltool.xhp
+msgctxt ""
+"subtotaltool.xhp\n"
+"hd_id891585177511329\n"
+"help.text"
+msgid "Using the Subtotals tool"
+msgstr ""
+
+#. kwLkR
+#: subtotaltool.xhp
+msgctxt ""
+"subtotaltool.xhp\n"
+"par_id91585177517697\n"
+"help.text"
+msgid "To insert subtotal values into a worksheet:"
+msgstr ""
+
+#. DKZ3o
+#: subtotaltool.xhp
+msgctxt ""
+"subtotaltool.xhp\n"
+"par_id241585177550504\n"
+"help.text"
+msgid "Select the cell range for the subtotals that you want to calculate, and remember to include the column heading labels. Alternatively, click on a single cell within your data to allow Calc to automatically identify the range."
+msgstr ""
+
+#. QiBqE
+#: subtotaltool.xhp
+msgctxt ""
+"subtotaltool.xhp\n"
+"par_id421585177574387\n"
+"help.text"
+msgid "Choose <menuitem>Data - Subtotals</menuitem> to open the Subtotals dialog."
+msgstr ""
+
+#. BwAst
+#: subtotaltool.xhp
+msgctxt ""
+"subtotaltool.xhp\n"
+"par_id41585177608508\n"
+"help.text"
+msgid "In the <emph>Group by</emph> drop-down list on the <emph>First Group</emph> page, select a column by its label. Entries in the cell range from step 1 will be grouped and sorted by matching values in this column."
+msgstr ""
+
+#. QmNL9
+#: subtotaltool.xhp
+msgctxt ""
+"subtotaltool.xhp\n"
+"par_id451585177625978\n"
+"help.text"
+msgid "In the <emph>Calculate subtotals for</emph> box on the <emph>First Group</emph> page, select a column containing values to be subtotaled. If you later change values in this column, Calc will automatically recalculate the subtotals."
+msgstr ""
+
+#. CQ9km
+#: subtotaltool.xhp
+msgctxt ""
+"subtotaltool.xhp\n"
+"par_id661585177644535\n"
+"help.text"
+msgid "In the <emph>Use function</emph> box on the <emph>First Group</emph> page, select a function to calculate the subtotals for the column selected in step 4."
+msgstr ""
+
+#. 3eTTE
+#: subtotaltool.xhp
+msgctxt ""
+"subtotaltool.xhp\n"
+"par_id351585177661529\n"
+"help.text"
+msgid "Repeat steps 4 and 5 to create subtotals for other columns on the <emph>First Group</emph> page."
+msgstr ""
+
+#. 6GLDr
+#: subtotaltool.xhp
+msgctxt ""
+"subtotaltool.xhp\n"
+"par_id511585177679372\n"
+"help.text"
+msgid "You can create two more subtotal categories by using the <emph>Second Group</emph> and <emph>Third Group</emph> pages and repeating steps 3 to 6. If you do not want to add more groups, then leave the Group by list for each page set to “- none -”."
+msgstr ""
+
+#. HDB52
+#: subtotaltool.xhp
+msgctxt ""
+"subtotaltool.xhp\n"
+"par_id301585177698777\n"
+"help.text"
+msgid "Click <emph>OK</emph>. Calc will add subtotal and grand total rows to your cell range."
+msgstr ""
+
+#. iMTer
+#: subtotaltool.xhp
+msgctxt ""
+"subtotaltool.xhp\n"
+"hd_id211585178799496\n"
+"help.text"
+msgid "Subtotal outline"
+msgstr ""
+
+#. 35yNv
+#: subtotaltool.xhp
+msgctxt ""
+"subtotaltool.xhp\n"
+"par_id841585178819108\n"
+"help.text"
+msgid "When you use the Subtotals tool, Calc inserts an outline to the left of the row number column. This outline represents the hierarchical structure of your subtotals, and can be used to hide or show data at different levels in the hierarchy using the numbered column indicators at the top of the outline or the group indicators, denoted by plus <emph>(+)</emph> and minus <emph>(-)</emph> signs."
+msgstr ""
+
+#. EhreW
+#: subtotaltool.xhp
+msgctxt ""
+"subtotaltool.xhp\n"
+"par_id371585181820075\n"
+"help.text"
+msgid "This feature is useful if you have many subtotals, as you can simply hide low-level details, such as individual entries, to produce a high-level summary of your data."
+msgstr ""
+
+#. C97jN
+#: subtotaltool.xhp
+msgctxt ""
+"subtotaltool.xhp\n"
+"par_id161585178829165\n"
+"help.text"
+msgid "To turn off outlines, choose <menuitem>Data - Group and Outline - Remove Outline</menuitem>. To reinstate them, choose <menuitem>Data - Group and Outline - AutoOutline</menuitem>."
+msgstr ""
+
+#. oU9ew
+#: super_subscript.xhp
+msgctxt ""
+"super_subscript.xhp\n"
+"tit\n"
+"help.text"
+msgid "Text Superscript / Subscript"
+msgstr ""
+
+#. N93BJ
+#: super_subscript.xhp
+msgctxt ""
+"super_subscript.xhp\n"
+"bm_id3151112\n"
+"help.text"
+msgid "<bookmark_value>superscript text in cells</bookmark_value><bookmark_value>subscript text in cells</bookmark_value><bookmark_value>cells; text super/sub</bookmark_value><bookmark_value>characters;superscript/subscript</bookmark_value>"
+msgstr ""
+
+#. JLoBw
+#: super_subscript.xhp
+msgctxt ""
+"super_subscript.xhp\n"
+"hd_id3151112\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 ""
+
+#. DSxqD
+#: super_subscript.xhp
+msgctxt ""
+"super_subscript.xhp\n"
+"par_id3154684\n"
+"help.text"
+msgid "In the cell, select the character that you want to put in superscript or subscript."
+msgstr ""
+
+#. CWCc3
+#: super_subscript.xhp
+msgctxt ""
+"super_subscript.xhp\n"
+"par_id3150439\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 ""
+
+#. HfLPV
+#: super_subscript.xhp
+msgctxt ""
+"super_subscript.xhp\n"
+"par_id3149260\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 ""
+
+#. B8gYB
+#: super_subscript.xhp
+msgctxt ""
+"super_subscript.xhp\n"
+"par_id3153142\n"
+"help.text"
+msgid "Click the <emph>Font Position</emph> tab."
+msgstr ""
+
+#. 2perr
+#: super_subscript.xhp
+msgctxt ""
+"super_subscript.xhp\n"
+"par_id3153954\n"
+"help.text"
+msgid "Select the <emph>Subscript</emph> option and click OK."
+msgstr ""
+
+#. Vh5Ek
+#: super_subscript.xhp
+msgctxt ""
+"super_subscript.xhp\n"
+"par_id3153876\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05020500.xhp\" name=\"Context menu - Character - Font Position\">Context menu - Character - Font Position</link>"
+msgstr ""
+
+#. 2wVQM
+#: table_cellmerge.xhp
+msgctxt ""
+"table_cellmerge.xhp\n"
+"tit\n"
+"help.text"
+msgid "Merge and Unmerge Cells"
+msgstr ""
+
+#. FFV5z
+#: table_cellmerge.xhp
+msgctxt ""
+"table_cellmerge.xhp\n"
+"bm_id501632012952361\n"
+"help.text"
+msgid "<bookmark_value>merge/merging cells</bookmark_value> <bookmark_value>unmerge/unmerging cells</bookmark_value> <bookmark_value>split/splitting cells</bookmark_value>"
+msgstr ""
+
+#. BAqR3
+#: table_cellmerge.xhp
+msgctxt ""
+"table_cellmerge.xhp\n"
+"hd_id8005005\n"
+"help.text"
+msgid "<variable id=\"table_cellmerge\"><link href=\"text/scalc/guide/table_cellmerge.xhp\" name=\"Merging and Unmerging Cells\">Merge and Unmerge Cells</link></variable>"
+msgstr ""
+
+#. Hht67
+#: table_cellmerge.xhp
+msgctxt ""
+"table_cellmerge.xhp\n"
+"par_id8049867\n"
+"help.text"
+msgid "You can select a range of cells, then merge them into a single cell. Conversely, you can take a previously merged cell and divide it back into individual cells."
+msgstr ""
+
+#. vFF3v
+#: table_cellmerge.xhp
+msgctxt ""
+"table_cellmerge.xhp\n"
+"par_id0509200913480176\n"
+"help.text"
+msgid "When you copy cells into a target range containing merged cells, the target range gets unmerged first, then the copied cells are pasted in. If the copied cells are merged cells, they retain their merge state."
+msgstr ""
+
+#. F4ADr
+#: table_cellmerge.xhp
+msgctxt ""
+"table_cellmerge.xhp\n"
+"hd_id235602\n"
+"help.text"
+msgid "Merge Cells"
+msgstr ""
+
+#. PhwAW
+#: table_cellmerge.xhp
+msgctxt ""
+"table_cellmerge.xhp\n"
+"par_id1272927\n"
+"help.text"
+msgid "Click and drag to select the cells to be merged then do one of the following:"
+msgstr ""
+
+#. BpCih
+#: table_cellmerge.xhp
+msgctxt ""
+"table_cellmerge.xhp\n"
+"par_id221632803290526\n"
+"help.text"
+msgid "In the Formatting toolbar click:"
+msgstr ""
+
+#. tc6Dw
+#: table_cellmerge.xhp
+msgctxt ""
+"table_cellmerge.xhp\n"
+"par_id3154351\n"
+"help.text"
+msgid "Or, right click the selection to open the context menu and choose <menuitem>Merge Cells</menuitem>.<br/>If <menuitem>Unmerge Cells</menuitem> is present instead then the cell selection contains merged cells and cannot be merged further."
+msgstr ""
+
+#. uH6dA
+#: table_cellmerge.xhp
+msgctxt ""
+"table_cellmerge.xhp\n"
+"par_id931632803442925\n"
+"help.text"
+msgid "Or, in the <emph>Properties</emph> sidebar mark the <emph>Merge Cells</emph> checkbox."
+msgstr ""
+
+#. fAjCD
+#: table_cellmerge.xhp
+msgctxt ""
+"table_cellmerge.xhp\n"
+"par_id3154020\n"
+"help.text"
+msgid "Or, choose <menuitem>Format - Merge and Unmerge Cells - Merge Cells</menuitem>"
+msgstr ""
+
+#. 6VxQA
+#: table_cellmerge.xhp
+msgctxt ""
+"table_cellmerge.xhp\n"
+"par_id6424146\n"
+"help.text"
+msgid "Or, choose <menuitem>Format - Merge and Unmerge Cells - Merge and Center Cells</menuitem>"
+msgstr ""
+
+#. sHLpi
+#: table_cellmerge.xhp
+msgctxt ""
+"table_cellmerge.xhp\n"
+"par_id961632012538771\n"
+"help.text"
+msgid "The cells will be merged and the content will be centered in the merged cell."
+msgstr ""
+
+#. ULMQA
+#: table_cellmerge.xhp
+msgctxt ""
+"table_cellmerge.xhp\n"
+"hd_id451368\n"
+"help.text"
+msgid "Unmerge Cells"
+msgstr ""
+
+#. 2xrnM
+#: table_cellmerge.xhp
+msgctxt ""
+"table_cellmerge.xhp\n"
+"par_id7116611\n"
+"help.text"
+msgid "Select the cell to be unmerged, or a selection that includes the cells to be unmerged then do one of the following:"
+msgstr ""
+
+#. CmALo
+#: table_cellmerge.xhp
+msgctxt ""
+"table_cellmerge.xhp\n"
+"par_id581632820903635\n"
+"help.text"
+msgid "In the Formatting toolbar, click:"
+msgstr ""
+
+#. 4TYCy
+#: table_cellmerge.xhp
+msgctxt ""
+"table_cellmerge.xhp\n"
+"par_id431632277778130\n"
+"help.text"
+msgid "Or, right click the selection to open the context menu and choose <menuitem>Unmerge Cells</menuitem>.<br/>If <menuitem>Merge Cells</menuitem> is present instead then the selection does not contain any merged cells."
+msgstr ""
+
+#. LrAis
+#: table_cellmerge.xhp
+msgctxt ""
+"table_cellmerge.xhp\n"
+"par_id261632277824041\n"
+"help.text"
+msgid "Or, in the <emph>Properties</emph> sidebar clear the <emph>Merge Cells</emph> checkbox."
+msgstr ""
+
+#. uiNiD
+#: table_cellmerge.xhp
+msgctxt ""
+"table_cellmerge.xhp\n"
+"par_id9493087\n"
+"help.text"
+msgid "Or, choose <menuitem>Format - Merge and Unmerge Cells - Unmerge Cells</menuitem>."
+msgstr ""
+
+#. HJEzN
+#: table_cellmerge.xhp
+msgctxt ""
+"table_cellmerge.xhp\n"
+"par_id561632820960500\n"
+"help.text"
+msgid "Or, toggle <menuitem>Format - Merge and Unmerge Cells - Merge and Center Cells</menuitem>"
+msgstr ""
+
+#. u5xXE
+#: table_rotate.xhp
+msgctxt ""
+"table_rotate.xhp\n"
+"tit\n"
+"help.text"
+msgid "Rotating Tables (Transposing)"
+msgstr ""
+
+#. NWEK2
+#: table_rotate.xhp
+msgctxt ""
+"table_rotate.xhp\n"
+"bm_id3154346\n"
+"help.text"
+msgid "<bookmark_value>tables; transposing</bookmark_value><bookmark_value>transposing tables</bookmark_value><bookmark_value>inverting tables</bookmark_value><bookmark_value>swapping tables</bookmark_value><bookmark_value>columns; swap with rows</bookmark_value><bookmark_value>rows; swapping with columns</bookmark_value><bookmark_value>tables; rotating</bookmark_value><bookmark_value>rotating; tables</bookmark_value>"
+msgstr ""
+
+#. h6iqG
+#: table_rotate.xhp
+msgctxt ""
+"table_rotate.xhp\n"
+"hd_id3154346\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 ""
+
+#. fzyoE
+#: table_rotate.xhp
+msgctxt ""
+"table_rotate.xhp\n"
+"par_id3154013\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 ""
+
+#. MXbrh
+#: table_rotate.xhp
+msgctxt ""
+"table_rotate.xhp\n"
+"par_id3153142\n"
+"help.text"
+msgid "Select the cell range that you want to transpose."
+msgstr ""
+
+#. uS47V
+#: table_rotate.xhp
+msgctxt ""
+"table_rotate.xhp\n"
+"par_id3153191\n"
+"help.text"
+msgid "Choose <emph>Edit - Cut</emph>."
+msgstr ""
+
+#. MNeBn
+#: table_rotate.xhp
+msgctxt ""
+"table_rotate.xhp\n"
+"par_id3148575\n"
+"help.text"
+msgid "Click the cell that is to be the top left cell in the result."
+msgstr ""
+
+#. rhSEj
+#: table_rotate.xhp
+msgctxt ""
+"table_rotate.xhp\n"
+"par_id3156286\n"
+"help.text"
+msgid "Choose <emph>Edit - Paste Special</emph>."
+msgstr ""
+
+#. cAADF
+#: table_rotate.xhp
+msgctxt ""
+"table_rotate.xhp\n"
+"par_id3144764\n"
+"help.text"
+msgid "In the dialog, mark <emph>Paste all</emph> and <emph>Transpose</emph>."
+msgstr ""
+
+#. nFUUg
+#: table_rotate.xhp
+msgctxt ""
+"table_rotate.xhp\n"
+"par_id3155600\n"
+"help.text"
+msgid "If you now click OK the columns and rows are transposed."
+msgstr ""
+
+#. ZerMW
+#: table_rotate.xhp
+msgctxt ""
+"table_rotate.xhp\n"
+"par_id3146969\n"
+"help.text"
+msgid "<link href=\"text/shared/01/02070000.xhp\" name=\"Paste Special\">Paste Special</link>"
+msgstr ""
+
+#. qWjQg
+#: table_view.xhp
+msgctxt ""
+"table_view.xhp\n"
+"tit\n"
+"help.text"
+msgid "Changing Table Views"
+msgstr ""
+
+#. dmkBp
+#: table_view.xhp
+msgctxt ""
+"table_view.xhp\n"
+"bm_id3147304\n"
+"help.text"
+msgid "<bookmark_value>row headers; hiding</bookmark_value><bookmark_value>column headers; hiding</bookmark_value><bookmark_value>tables; views</bookmark_value><bookmark_value>views; tables</bookmark_value><bookmark_value>grids;hiding lines in sheets</bookmark_value><bookmark_value>hiding;headers/grid lines</bookmark_value><bookmark_value>changing;table views</bookmark_value>"
+msgstr ""
+
+#. AuiXd
+#: table_view.xhp
+msgctxt ""
+"table_view.xhp\n"
+"hd_id3147304\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 ""
+
+#. Fnu8g
+#: table_view.xhp
+msgctxt ""
+"table_view.xhp\n"
+"par_id3153192\n"
+"help.text"
+msgid "To hide column and line headers in a table:"
+msgstr ""
+
+#. dmh8o
+#: table_view.xhp
+msgctxt ""
+"table_view.xhp\n"
+"par_id3153768\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 ""
+
+#. AXeqh
+#: table_view.xhp
+msgctxt ""
+"table_view.xhp\n"
+"par_id3147436\n"
+"help.text"
+msgid "To hide grid lines:"
+msgstr ""
+
+#. XDpAC
+#: table_view.xhp
+msgctxt ""
+"table_view.xhp\n"
+"par_id3153726\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. Choose <emph>Hide</emph> in the <emph>Grid lines</emph> dropdown. Confirm with <emph>OK</emph>."
+msgstr ""
+
+#. j82PQ
+#: text_numbers.xhp
+msgctxt ""
+"text_numbers.xhp\n"
+"tit\n"
+"help.text"
+msgid "Formatting Numbers as Text"
+msgstr ""
+
+#. bDFaC
+#: text_numbers.xhp
+msgctxt ""
+"text_numbers.xhp\n"
+"bm_id3145068\n"
+"help.text"
+msgid "<bookmark_value>numbers;entering as text</bookmark_value> <bookmark_value>text formats; for numbers</bookmark_value> <bookmark_value>formats; numbers as text</bookmark_value> <bookmark_value>cell formats; text/numbers</bookmark_value> <bookmark_value>formatting;numbers as text</bookmark_value>"
+msgstr ""
+
+#. YjSEt
+#: text_numbers.xhp
+msgctxt ""
+"text_numbers.xhp\n"
+"hd_id3145068\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 ""
+
+#. JPD2o
+#: text_numbers.xhp
+msgctxt ""
+"text_numbers.xhp\n"
+"par_id3156280\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 ""
+
+#. 5xX5n
+#: text_numbers.xhp
+msgctxt ""
+"text_numbers.xhp\n"
+"par_id3149377\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 ""
+
+#. 4qFEu
+#: text_numbers.xhp
+msgctxt ""
+"text_numbers.xhp\n"
+"par_id3144765\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 ""
+
+#. hnEQ6
+#: text_numbers.xhp
+msgctxt ""
+"text_numbers.xhp\n"
+"par_id3156284\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cells - Numbers\">Format - Cells - Numbers</link>"
+msgstr ""
+
+#. MZp8B
+#: text_rotate.xhp
+msgctxt ""
+"text_rotate.xhp\n"
+"tit\n"
+"help.text"
+msgid "Rotating Text"
+msgstr ""
+
+#. 6VCJA
+#: text_rotate.xhp
+msgctxt ""
+"text_rotate.xhp\n"
+"bm_id3151112\n"
+"help.text"
+msgid "<bookmark_value>cells; rotating text</bookmark_value> <bookmark_value>rotating; text in cells</bookmark_value> <bookmark_value>text in cells; writing vertically</bookmark_value>"
+msgstr ""
+
+#. btUfR
+#: text_rotate.xhp
+msgctxt ""
+"text_rotate.xhp\n"
+"hd_id3151112\n"
+"help.text"
+msgid "<variable id=\"text_rotate\"><link href=\"text/scalc/guide/text_rotate.xhp\" name=\"Rotating Text\">Rotating Text</link></variable>"
+msgstr ""
+
+#. DXQsT
+#: text_rotate.xhp
+msgctxt ""
+"text_rotate.xhp\n"
+"par_id3145171\n"
+"help.text"
+msgid "Select the cells whose text you want to rotate."
+msgstr ""
+
+#. sDWLN
+#: text_rotate.xhp
+msgctxt ""
+"text_rotate.xhp\n"
+"par_id3155133\n"
+"help.text"
+msgid "Choose <emph>Format - Cells</emph>. You will see the <emph>Format Cells</emph> dialog."
+msgstr ""
+
+#. eTFCL
+#: text_rotate.xhp
+msgctxt ""
+"text_rotate.xhp\n"
+"par_id3155854\n"
+"help.text"
+msgid "Click the <emph>Alignment</emph> tab."
+msgstr ""
+
+#. nLfjx
+#: text_rotate.xhp
+msgctxt ""
+"text_rotate.xhp\n"
+"par_id3147426\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 ""
+
+#. xZi7M
+#: text_rotate.xhp
+msgctxt ""
+"text_rotate.xhp\n"
+"par_id3148456\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/05020000.xhp\" name=\"Format - Cells\">Format - Cells</link>"
+msgstr ""
+
+#. gVdDT
+#: text_rotate.xhp
+msgctxt ""
+"text_rotate.xhp\n"
+"par_id3154944\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\">Format - Cells - Alignment</link>"
+msgstr ""
+
+#. ExCrt
+#: text_wrap.xhp
+msgctxt ""
+"text_wrap.xhp\n"
+"tit\n"
+"help.text"
+msgid "Writing Multi-line Text"
+msgstr ""
+
+#. mQxDk
+#: text_wrap.xhp
+msgctxt ""
+"text_wrap.xhp\n"
+"bm_id3154346\n"
+"help.text"
+msgid "<bookmark_value>text in cells; multi-line</bookmark_value><bookmark_value>cells; text breaks</bookmark_value><bookmark_value>breaks in cells</bookmark_value><bookmark_value>multi-line text in cells</bookmark_value>"
+msgstr ""
+
+#. L6xkB
+#: text_wrap.xhp
+msgctxt ""
+"text_wrap.xhp\n"
+"hd_id3154346\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 ""
+
+#. WGo9x
+#: text_wrap.xhp
+msgctxt ""
+"text_wrap.xhp\n"
+"par_id3156280\n"
+"help.text"
+msgid "Pressing the <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></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 ""
+
+#. Cs3FE
+#: text_wrap.xhp
+msgctxt ""
+"text_wrap.xhp\n"
+"par_id3153142\n"
+"help.text"
+msgid "If you want the text to automatically break at the right border of the cell, proceed as follows:"
+msgstr ""
+
+#. VzGer
+#: text_wrap.xhp
+msgctxt ""
+"text_wrap.xhp\n"
+"par_id3153951\n"
+"help.text"
+msgid "Select all the cells where you want the text to break at the right border."
+msgstr ""
+
+#. 3zSSw
+#: text_wrap.xhp
+msgctxt ""
+"text_wrap.xhp\n"
+"par_id3148575\n"
+"help.text"
+msgid "In <menuitem>Format - Cells - Alignment</menuitem>, mark the <emph>Wrap text automatically</emph> option and click OK."
+msgstr ""
+
+#. GGFPz
+#: text_wrap.xhp
+msgctxt ""
+"text_wrap.xhp\n"
+"par_id201608575657740\n"
+"help.text"
+msgid "For automatic wrapping in XLS files, the rows in question should be set to Optimal Height."
+msgstr ""
+
+#. pED9m
+#: text_wrap.xhp
+msgctxt ""
+"text_wrap.xhp\n"
+"par_id3145799\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/05020000.xhp\" name=\"Format - Cells\">Format - Cells</link>"
+msgstr ""
+
+#. rAuLt
+#: userdefined_function.xhp
+msgctxt ""
+"userdefined_function.xhp\n"
+"tit\n"
+"help.text"
+msgid "User-Defined Functions"
+msgstr ""
+
+#. FS93h
+#: userdefined_function.xhp
+msgctxt ""
+"userdefined_function.xhp\n"
+"bm_id3155411\n"
+"help.text"
+msgid "<bookmark_value>functions; user-defined</bookmark_value><bookmark_value>user-defined functions</bookmark_value><bookmark_value>Basic IDE for user-defined functions</bookmark_value><bookmark_value>IDE; Basic IDE</bookmark_value><bookmark_value>programming;functions</bookmark_value>"
+msgstr ""
+
+#. ABAEY
+#: userdefined_function.xhp
+msgctxt ""
+"userdefined_function.xhp\n"
+"hd_id3155411\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 ""
+
+#. 4PUhf
+#: userdefined_function.xhp
+msgctxt ""
+"userdefined_function.xhp\n"
+"par_id3153969\n"
+"help.text"
+msgid "You can apply user-defined functions in $[officename] Calc in the following ways:"
+msgstr ""
+
+#. PER66
+#: userdefined_function.xhp
+msgctxt ""
+"userdefined_function.xhp\n"
+"par_id3145366\n"
+"help.text"
+msgid "You can define your own functions using the Basic-IDE. This method requires a basic knowledge of programming."
+msgstr ""
+
+#. F6npk
+#: userdefined_function.xhp
+msgctxt ""
+"userdefined_function.xhp\n"
+"par_id3153768\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 ""
+
+#. H2JBv
+#: userdefined_function.xhp
+msgctxt ""
+"userdefined_function.xhp\n"
+"hd_id3149260\n"
+"help.text"
+msgid "Defining A Function Using %PRODUCTNAME Basic"
+msgstr ""
+
+#. PfDpb
+#: userdefined_function.xhp
+msgctxt ""
+"userdefined_function.xhp\n"
+"par_id3148456\n"
+"help.text"
+msgid "Choose <menuitem>Tools - Macros - Edit Macros</menuitem>."
+msgstr ""
+
+#. N4uB4
+#: userdefined_function.xhp
+msgctxt ""
+"userdefined_function.xhp\n"
+"par_id3154510\n"
+"help.text"
+msgid "You will now see the Basic IDE."
+msgstr ""
+
+#. jXhZH
+#: userdefined_function.xhp
+msgctxt ""
+"userdefined_function.xhp\n"
+"par_id651603905832952\n"
+"help.text"
+msgid "In the Object Catalog window, double-click on the module where you want to store your macro."
+msgstr ""
+
+#. G6mwG
+#: userdefined_function.xhp
+msgctxt ""
+"userdefined_function.xhp\n"
+"par_id3150327\n"
+"help.text"
+msgid "Enter the function code. In this example, we define a <literal>VOL(a; b; c)</literal> function that calculates the volume of a rectangular solid with side lengths <literal>a</literal>, <literal>b</literal> and <literal>c</literal>:"
+msgstr ""
+
+#. eXWo3
+#: userdefined_function.xhp
+msgctxt ""
+"userdefined_function.xhp\n"
+"par_id3155443\n"
+"help.text"
+msgid "Close the Basic-IDE window."
+msgstr ""
+
+#. nWiEx
+#: userdefined_function.xhp
+msgctxt ""
+"userdefined_function.xhp\n"
+"par_id3150043\n"
+"help.text"
+msgid "Your function is automatically saved in the selected module and is now available. If you apply the function in a Calc document that is to be used on another computer, you can copy the function to the Calc document as described in the next section."
+msgstr ""
+
+#. 3bcAE
+#: userdefined_function.xhp
+msgctxt ""
+"userdefined_function.xhp\n"
+"hd_id3147340\n"
+"help.text"
+msgid "Copying a Function To a Document"
+msgstr ""
+
+#. Lm54u
+#: userdefined_function.xhp
+msgctxt ""
+"userdefined_function.xhp\n"
+"par_id3145232\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 ""
+
+#. DBXEe
+#: userdefined_function.xhp
+msgctxt ""
+"userdefined_function.xhp\n"
+"par_id3154022\n"
+"help.text"
+msgid "If you want to copy the user-defined function to a Calc document:"
+msgstr ""
+
+#. FiJEi
+#: userdefined_function.xhp
+msgctxt ""
+"userdefined_function.xhp\n"
+"par_id3150304\n"
+"help.text"
+msgid "Choose <menuitem>Tools - Macros - Organize Macros - Basic</menuitem>."
+msgstr ""
+
+#. HZciB
+#: userdefined_function.xhp
+msgctxt ""
+"userdefined_function.xhp\n"
+"par_id3150086\n"
+"help.text"
+msgid "In the <emph>Macro from</emph> field select <emph>My Macros - Standard - Module1</emph> and click <emph>Edit</emph>."
+msgstr ""
+
+#. GAARi
+#: userdefined_function.xhp
+msgctxt ""
+"userdefined_function.xhp\n"
+"par_id3166430\n"
+"help.text"
+msgid "In the Basic-IDE, select the source of your user-defined function and copy it to the clipboard."
+msgstr ""
+
+#. GTEs8
+#: userdefined_function.xhp
+msgctxt ""
+"userdefined_function.xhp\n"
+"par_idN1081D\n"
+"help.text"
+msgid "Close the Basic-IDE."
+msgstr ""
+
+#. rYyws
+#: userdefined_function.xhp
+msgctxt ""
+"userdefined_function.xhp\n"
+"par_id3150517\n"
+"help.text"
+msgid "Choose <menuitem>Tools - Macros - Organize Macros - Basic</menuitem> ."
+msgstr ""
+
+#. oTBX8
+#: userdefined_function.xhp
+msgctxt ""
+"userdefined_function.xhp\n"
+"par_id3145384\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 ""
+
+#. F2mDo
+#: userdefined_function.xhp
+msgctxt ""
+"userdefined_function.xhp\n"
+"par_id3148699\n"
+"help.text"
+msgid "Paste the clipboard contents in the Basic-IDE of the document."
+msgstr ""
+
+#. AkZ68
+#: userdefined_function.xhp
+msgctxt ""
+"userdefined_function.xhp\n"
+"hd_id3153305\n"
+"help.text"
+msgid "Applying a User-defined Function in $[officename] Calc"
+msgstr ""
+
+#. cKHUA
+#: userdefined_function.xhp
+msgctxt ""
+"userdefined_function.xhp\n"
+"par_id3148869\n"
+"help.text"
+msgid "Once you have defined the function <literal>VOL(a; b; c)</literal> in the Basic-IDE, you can apply it the same way as the built-in functions of $[officename] Calc."
+msgstr ""
+
+#. WtG8F
+#: userdefined_function.xhp
+msgctxt ""
+"userdefined_function.xhp\n"
+"par_id3148606\n"
+"help.text"
+msgid "Open a Calc document and enter numbers for the function parameters <literal>a</literal>, <literal>b</literal> and <literal>c</literal> in cells A1, B1, and C1."
+msgstr ""
+
+#. TTo2C
+#: userdefined_function.xhp
+msgctxt ""
+"userdefined_function.xhp\n"
+"par_id3156019\n"
+"help.text"
+msgid "Set the cursor in another cell and enter the following:"
+msgstr ""
+
+#. frbse
+#: userdefined_function.xhp
+msgctxt ""
+"userdefined_function.xhp\n"
+"par_id3146776\n"
+"help.text"
+msgid "The function is evaluated and you will see the result in the selected cell."
+msgstr ""
+
+#. Un4f7
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"tit\n"
+"help.text"
+msgid "Validity of Cell Contents"
+msgstr ""
+
+#. N5T5g
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"bm_id3156442\n"
+"help.text"
+msgid "<bookmark_value>values; limiting on input</bookmark_value><bookmark_value>limits; specifying value limits on input</bookmark_value><bookmark_value>permitted cell contents</bookmark_value><bookmark_value>data validity</bookmark_value><bookmark_value>validity</bookmark_value><bookmark_value>cells; validity</bookmark_value><bookmark_value>error messages; defining for incorrect input</bookmark_value><bookmark_value>actions in case of incorrect input</bookmark_value><bookmark_value>Help tips; defining text for cell input</bookmark_value><bookmark_value>comments;help text for cells</bookmark_value><bookmark_value>cells; defining input help</bookmark_value><bookmark_value>macros; running when incorrect input</bookmark_value><bookmark_value>data; validity check</bookmark_value>"
+msgstr ""
+
+#. mNVB9
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"hd_id3156442\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 ""
+
+#. XgWFZ
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"par_id3156283\n"
+"help.text"
+msgid "For each cell, you can define entries to be valid. Invalid entries to a cell will be rejected."
+msgstr ""
+
+#. cbHnL
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"par_id3145252\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 ""
+
+#. uVPcC
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"par_id5174718\n"
+"help.text"
+msgid "You can choose <emph>Tools - Detective</emph> at any time and choose the command <link href=\"text/scalc/01/06030800.xhp\" name=\"Mark Invalid Data\"><emph>Mark Invalid Data</emph></link> to display which cells contain invalid values."
+msgstr ""
+
+#. vExqw
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"hd_id3155603\n"
+"help.text"
+msgid "Using Cell Contents Validity"
+msgstr ""
+
+#. vPWZE
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"par_id3155959\n"
+"help.text"
+msgid "Select the cells for which you want to define a new validity rule."
+msgstr ""
+
+#. Rxqr5
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"par_id3148837\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">Data - Validity</item>."
+msgstr ""
+
+#. BCtiM
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"par_id3156020\n"
+"help.text"
+msgid "On the <emph>Criteria</emph> tab page, enter the conditions for new values entered into cells."
+msgstr ""
+
+#. 6t74m
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"par_id3159208\n"
+"help.text"
+msgid "In the <emph>Allow</emph> field, select an option."
+msgstr ""
+
+#. AN7uL
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"par_id3153011\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 ""
+
+#. qGjDb
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"par_id9224829\n"
+"help.text"
+msgid "Select \"List\" to enter a list of valid entries."
+msgstr ""
+
+#. JB7oA
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"par_id3149317\n"
+"help.text"
+msgid "Select the next condition under <emph>Data</emph>. According to what you choose, additional options will be selectable."
+msgstr ""
+
+#. KD7kV
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"par_id3151389\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 ""
+
+#. 6aBi5
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"par_id3159261\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 ""
+
+#. U3y7G
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"par_id3156396\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 ""
+
+#. JDuqF
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"par_id3147416\n"
+"help.text"
+msgid "If you select \"Stop\" as the action, invalid entries are not accepted, and the previous cell contents are retained."
+msgstr ""
+
+#. FeWnd
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"par_id3150033\n"
+"help.text"
+msgid "Select \"Warning\" or \"Information\" to display a dialog in which the entry can either be canceled or accepted."
+msgstr ""
+
+#. 9aCdk
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"par_id3149947\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 ""
+
+#. xoScW
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"par_id3149011\n"
+"help.text"
+msgid "To display the error message, select <link href=\"text/scalc/01/12120300.xhp\" name=\"erroralert\">Show error message when invalid values are entered</link>."
+msgstr ""
+
+#. VTfnE
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"par_id3148586\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 ""
+
+#. oQYeC
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"par_id3154805\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/12120000.xhp\" name=\"Data - Validity\">Data - Validity</link>"
+msgstr ""
+
+#. cEdPu
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
+"tit\n"
+"help.text"
+msgid "Naming Cells"
+msgstr ""
+
+#. DGAwD
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
+"bm_id3147434\n"
+"help.text"
+msgid "<bookmark_value>cells; defining names</bookmark_value> <bookmark_value>names; defining for cells</bookmark_value> <bookmark_value>values; defining names</bookmark_value> <bookmark_value>constants definition</bookmark_value> <bookmark_value>variables; defining names</bookmark_value> <bookmark_value>cell ranges; defining names</bookmark_value> <bookmark_value>defining;names for cell ranges</bookmark_value> <bookmark_value>formulas; defining names</bookmark_value> <bookmark_value>addressing; by defined names</bookmark_value> <bookmark_value>cell names; defining/addressing</bookmark_value> <bookmark_value>references; by defined names</bookmark_value> <bookmark_value>allowed cell names</bookmark_value> <bookmark_value>renaming;cells</bookmark_value>"
+msgstr ""
+
+#. 7VrgE
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
+"hd_id3147434\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 ""
+
+#. EyNmi
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
+"hd_id4391918\n"
+"help.text"
+msgid "Allowed names"
+msgstr ""
+
+#. MECFu
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
+"par_id2129581\n"
+"help.text"
+msgid "Names in Calc can contain letters, numeric characters, and the underline character. Names must start with a letter or an underline character."
+msgstr ""
+
+#. GztrF
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
+"par_id1120029\n"
+"help.text"
+msgid "Allowed special characters:"
+msgstr ""
+
+#. 4VANL
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
+"par_id3362224\n"
+"help.text"
+msgid "underline (_)"
+msgstr ""
+
+#. BvnNt
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
+"par_id328989\n"
+"help.text"
+msgid "Names must not be the same as cell references. For example, the name A1 is invalid because A1 is a cell reference to the top left cell."
+msgstr ""
+
+#. ufHkJ
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
+"par_id32898987\n"
+"help.text"
+msgid "Names must not start with the letters C or R followed by a number; also single characters C and R are not allowed as names. See the ADDRESS function for more information."
+msgstr ""
+
+#. 6piLZ
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
+"par_id4769737\n"
+"help.text"
+msgid "Names for cell ranges must not include blanks. Blanks are allowed within names for sheets and documents."
+msgstr ""
+
+#. ci2B9
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
+"hd_id1226233\n"
+"help.text"
+msgid "Naming cells and formulas"
+msgstr ""
+
+#. FPo7Y
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
+"par_id5489364\n"
+"help.text"
+msgid "A good way of making the references to cells and cell ranges in formulas legible is to give the ranges names. For example, you can name the range A1:B2 <emph>Start</emph>. You can then write a formula such as \"=SUM(Start)\". Even after you insert or delete rows or columns, $[officename] still correctly assigns the ranges identified by name. Range names must not contain any spaces."
+msgstr ""
+
+#. aZZC8
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
+"par_id953398\n"
+"help.text"
+msgid "For example, it is much easier to read a formula for sales tax if you can write \"= Amount * Tax_rate\" instead of \"= A5 * B12\". In this case, you would name cell A5 \"Amount\" and cell B12 \"Tax_rate.\""
+msgstr ""
+
+#. LViNz
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
+"par_id4889675\n"
+"help.text"
+msgid "Use the <emph>Define Names</emph> dialog to define names for formulas or parts of formulas you need more often. In order to specify range names,"
+msgstr ""
+
+#. UNzu6
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
+"par_id3153954\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 ""
+
+#. XRBXG
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
+"par_id3156283\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 ""
+
+#. wehKd
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
+"par_id5774101\n"
+"help.text"
+msgid "You can also name other cell ranges in this dialog by entering the name in the field and then selecting the respective cells."
+msgstr ""
+
+#. 3sCdF
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
+"par_id3154942\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 ""
+
+#. SgWa3
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
+"par_id3154510\n"
+"help.text"
+msgid "Press the Enter key in order to accept the name from the tip."
+msgstr ""
+
+#. dGV3u
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
+"par_id3150749\n"
+"help.text"
+msgid "If more than one name starts with the same characters, you can scroll forward through all the names using the <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline> <keycode>+ Tab keys</keycode> and backward using the <keycode>Shift +</keycode> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline> <keycode>+ Tab</keycode> keys."
+msgstr ""
+
+#. VDbbB
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
+"par_id3153711\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 ""
+
+#. tT8Ku
+#: webquery.xhp
+msgctxt ""
+"webquery.xhp\n"
+"tit\n"
+"help.text"
+msgid "Inserting External Data in Table (WebQuery)"
+msgstr ""
+
+#. eaFpE
+#: webquery.xhp
+msgctxt ""
+"webquery.xhp\n"
+"bm_id3154346\n"
+"help.text"
+msgid "<bookmark_value>HTML WebQuery</bookmark_value><bookmark_value>ranges; inserting in tables</bookmark_value><bookmark_value>external data; inserting</bookmark_value><bookmark_value>tables; inserting external data</bookmark_value><bookmark_value>web pages; importing data</bookmark_value><bookmark_value>WebQuery filter</bookmark_value><bookmark_value>inserting; external data</bookmark_value><bookmark_value>data sources; external data</bookmark_value>"
+msgstr ""
+
+#. BbQqD
+#: webquery.xhp
+msgctxt ""
+"webquery.xhp\n"
+"hd_id3125863\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 ""
+
+#. Uf8QW
+#: webquery.xhp
+msgctxt ""
+"webquery.xhp\n"
+"par_id3155131\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 ""
+
+#. eBygd
+#: webquery.xhp
+msgctxt ""
+"webquery.xhp\n"
+"par_id3148575\n"
+"help.text"
+msgid "You can use the same method to insert ranges defined by name from a Calc or Microsoft Excel spreadsheet."
+msgstr ""
+
+#. odxLF
+#: webquery.xhp
+msgctxt ""
+"webquery.xhp\n"
+"par_id3149664\n"
+"help.text"
+msgid "The following insert methods are available:"
+msgstr ""
+
+#. kNB42
+#: webquery.xhp
+msgctxt ""
+"webquery.xhp\n"
+"hd_id3146976\n"
+"help.text"
+msgid "Inserting by Dialog"
+msgstr ""
+
+#. WJEih
+#: webquery.xhp
+msgctxt ""
+"webquery.xhp\n"
+"par_id3154319\n"
+"help.text"
+msgid "Set the cell cursor at the cell where the new content will be inserted."
+msgstr ""
+
+#. SCn3P
+#: webquery.xhp
+msgctxt ""
+"webquery.xhp\n"
+"par_id3145750\n"
+"help.text"
+msgid "Choose <emph>Sheet - External Links</emph>. This opens the <link href=\"text/scalc/01/04090000.xhp\">External Data</link> dialog."
+msgstr ""
+
+#. AGj3g
+#: webquery.xhp
+msgctxt ""
+"webquery.xhp\n"
+"par_id3149958\n"
+"help.text"
+msgid "Enter the URL of the HTML document or the name of the spreadsheet. Press Enter when finished. Click the <emph>Browse</emph> button to open a file selection dialog."
+msgstr ""
+
+#. 5b5MC
+#: webquery.xhp
+msgctxt ""
+"webquery.xhp\n"
+"par_id3149400\n"
+"help.text"
+msgid "In the large list box of the dialog, select the named ranges or tables you want to insert."
+msgstr ""
+
+#. Kegfn
+#: webquery.xhp
+msgctxt ""
+"webquery.xhp\n"
+"par_id3155064\n"
+"help.text"
+msgid "You can also specify that the ranges or tables are updated every n seconds."
+msgstr ""
+
+#. ywoJU
+#: webquery.xhp
+msgctxt ""
+"webquery.xhp\n"
+"par_id3155443\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 ""
+
+#. HA9v2
+#: webquery.xhp
+msgctxt ""
+"webquery.xhp\n"
+"hd_id3149021\n"
+"help.text"
+msgid "Inserting by Navigator"
+msgstr ""
+
+#. KpQYC
+#: webquery.xhp
+msgctxt ""
+"webquery.xhp\n"
+"par_id3153965\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 ""
+
+#. ekAUo
+#: webquery.xhp
+msgctxt ""
+"webquery.xhp\n"
+"par_id3150205\n"
+"help.text"
+msgid "In the target document open the Navigator."
+msgstr ""
+
+#. z9DtM
+#: webquery.xhp
+msgctxt ""
+"webquery.xhp\n"
+"par_id3152990\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 ""
+
+#. ZDFsw
+#: webquery.xhp
+msgctxt ""
+"webquery.xhp\n"
+"par_id3148842\n"
+"help.text"
+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 ""
+
+#. LS3Wf
+#: webquery.xhp
+msgctxt ""
+"webquery.xhp\n"
+"par_id3157978\n"
+"help.text"
+msgid "Drag the desired external data from the Navigator into the target document."
+msgstr ""
+
+#. 9GfqA
+#: webquery.xhp
+msgctxt ""
+"webquery.xhp\n"
+"par_id3144768\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 ""
+
+#. rcjUt
+#: webquery.xhp
+msgctxt ""
+"webquery.xhp\n"
+"par_id3152873\n"
+"help.text"
+msgid "<item type=\"literal\">HTML_all</item> - designates the entire document"
+msgstr ""
+
+#. ecFZG
+#: webquery.xhp
+msgctxt ""
+"webquery.xhp\n"
+"par_id3149897\n"
+"help.text"
+msgid "<item type=\"literal\">HTML_tables</item> - designates all HTML tables in the document"
+msgstr ""
+
+#. TGhCr
+#: webquery.xhp
+msgctxt ""
+"webquery.xhp\n"
+"hd_id3149126\n"
+"help.text"
+msgid "Editing the external data"
+msgstr ""
+
+#. GEeyF
+#: webquery.xhp
+msgctxt ""
+"webquery.xhp\n"
+"par_id3159228\n"
+"help.text"
+msgid "Open <emph>Edit - Links</emph>. Here you can edit the link to the external data."
+msgstr ""
+
+#. mXauD
+#: webquery.xhp
+msgctxt ""
+"webquery.xhp\n"
+"par_id3154650\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04090000.xhp\" name=\"External data dialog\">External data dialog</link>"
+msgstr ""
+
+#. GnXq4
+#: wildcards.xhp
+msgctxt ""
+"wildcards.xhp\n"
+"tit\n"
+"help.text"
+msgid "Using Wildcards in Formulas"
+msgstr ""
+
+#. kZVe7
+#: wildcards.xhp
+msgctxt ""
+"wildcards.xhp\n"
+"bm_id3152149\n"
+"help.text"
+msgid "<bookmark_value>wildcards in formulas</bookmark_value> <bookmark_value>wildcards;examples</bookmark_value>"
+msgstr ""
+
+#. 98C5v
+#: wildcards.xhp
+msgctxt ""
+"wildcards.xhp\n"
+"hd_id941629155075179\n"
+"help.text"
+msgid "<variable id=\"wildcards_h1\"><link href=\"text/scalc/guide/wildcards.xhp\" name=\"wildcards_link\">Using Wildcards in Formulas</link></variable>"
+msgstr ""
+
+#. yqMKw
+#: wildcards.xhp
+msgctxt ""
+"wildcards.xhp\n"
+"par_id571629155308959\n"
+"help.text"
+msgid "Wildcards are special characters that can be used in search strings that are passed as arguments to some Calc functions. They can also be used to define search criteria in the <emph>Find & Replace</emph> dialog. The use of wildcards enables the definition of more advanced search parameters with a single search string."
+msgstr ""
+
+#. vQrdp
+#: wildcards.xhp
+msgctxt ""
+"wildcards.xhp\n"
+"par_id391629156224638\n"
+"help.text"
+msgid "%PRODUCTNAME Calc supports either <emph>wildcards</emph> or <emph>regular expressions</emph> as arguments depending on the current application settings. By default %PRODUCTNAME Calc is set to support wildcards instead of regular expressions."
+msgstr ""
+
+#. GVpD7
+#: wildcards.xhp
+msgctxt ""
+"wildcards.xhp\n"
+"par_id551629156504794\n"
+"help.text"
+msgid "To make sure wildcards are supported, go to <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences - %PRODUCTNAME Calc - Calculate</menuitem></caseinline><defaultinline><menuitem>Tools - Options - %PRODUCTNAME Calc - Calculate</menuitem></defaultinline></switchinline> and check if the option <emph>Enable wildcards in formulas</emph> is selected. Note that you can use this dialog to switch to regular expressions by choosing <emph>Enable regular expressions in formulas</emph> or choose to support neither wildcards nor regular expressions."
+msgstr ""
+
+#. BHJzs
+#: wildcards.xhp
+msgctxt ""
+"wildcards.xhp\n"
+"par_id141629156913731\n"
+"help.text"
+msgid "The following wildcards are supported:"
+msgstr ""
+
+#. tbbPM
+#: wildcards.xhp
+msgctxt ""
+"wildcards.xhp\n"
+"par_id801629209195110\n"
+"help.text"
+msgid "Wildcard"
+msgstr ""
+
+#. 7PmfG
+#: wildcards.xhp
+msgctxt ""
+"wildcards.xhp\n"
+"par_id861629209212608\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. DfkJA
+#: wildcards.xhp
+msgctxt ""
+"wildcards.xhp\n"
+"par_id591629209073388\n"
+"help.text"
+msgid "<emph>? (question mark)</emph>"
+msgstr ""
+
+#. F2wmk
+#: wildcards.xhp
+msgctxt ""
+"wildcards.xhp\n"
+"par_id31629209073388\n"
+"help.text"
+msgid "Matches any single character. For example, the search string \"b?g\" matches “bag” and “beg” but will not match \"boog\" or \"mug\"."
+msgstr ""
+
+#. pi9ik
+#: wildcards.xhp
+msgctxt ""
+"wildcards.xhp\n"
+"par_id121629209114452\n"
+"help.text"
+msgid "Note that it will not match \"bg\" as well, since \"?\" must match exactly <emph>one</emph> character. The \"?\" wildcard does not correspond to a zero-character match."
+msgstr ""
+
+#. PmsQL
+#: wildcards.xhp
+msgctxt ""
+"wildcards.xhp\n"
+"par_id981629209073388\n"
+"help.text"
+msgid "<emph>* (asterisk)</emph>"
+msgstr ""
+
+#. 6V7SE
+#: wildcards.xhp
+msgctxt ""
+"wildcards.xhp\n"
+"par_id51629209073388\n"
+"help.text"
+msgid "Matches any sequence of characters, including an empty string. For example, the search string \"*cast\" will match “cast”, “forecast”, and “outcast”, but will not match \"forecaster\" using default %PRODUCTNAME settings."
+msgstr ""
+
+#. fDuhF
+#: wildcards.xhp
+msgctxt ""
+"wildcards.xhp\n"
+"par_id351629209153307\n"
+"help.text"
+msgid "If the option <menuitem>Search criteria = and <> must apply to whole cells</menuitem> is disabled in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences - %PRODUCTNAME Calc - Calculate</menuitem></caseinline><defaultinline><menuitem>Tools - Options - %PRODUCTNAME Calc - Calculate</menuitem></defaultinline></switchinline>, then \"forecaster\" will be a match using the \"*cast\" search string."
+msgstr ""
+
+#. ek6t7
+#: wildcards.xhp
+msgctxt ""
+"wildcards.xhp\n"
+"par_id181629209277556\n"
+"help.text"
+msgid "<emph>~ (tilde)</emph>"
+msgstr ""
+
+#. F3Tuy
+#: wildcards.xhp
+msgctxt ""
+"wildcards.xhp\n"
+"par_id881629209280877\n"
+"help.text"
+msgid "Escapes the special meaning of a question mark, asterisk, or tilde character that follows immediately after the tilde character."
+msgstr ""
+
+#. P35Fo
+#: wildcards.xhp
+msgctxt ""
+"wildcards.xhp\n"
+"par_id861629209431020\n"
+"help.text"
+msgid "For example, the search string \"why~?\" matches “why?” but will not match \"whys\" nor \"why~s\"."
+msgstr ""
+
+#. aCtpj
+#: wildcards.xhp
+msgctxt ""
+"wildcards.xhp\n"
+"par_id1001629157561261\n"
+"help.text"
+msgid "Wildcards are supported in %PRODUCTNAME Calc and in Microsoft Excel. Therefore, if interoperability between both applications is needed, choose to work with wildcards instead of regular expressions. Conversely, if interoperability is not necessary, consider using regular expressions for more powerful search capabilities."
+msgstr ""
+
+#. Dwt2G
+#: wildcards.xhp
+msgctxt ""
+"wildcards.xhp\n"
+"hd_id671629158766165\n"
+"help.text"
+msgid "Supported Spreadsheet Functions"
+msgstr ""
+
+#. YF9FB
+#: wildcards.xhp
+msgctxt ""
+"wildcards.xhp\n"
+"par_id161629158785887\n"
+"help.text"
+msgid "Wildcards are supported by the following spreadsheet functions:"
+msgstr ""
+
+#. rRPbf
+#: wildcards.xhp
+msgctxt ""
+"wildcards.xhp\n"
+"par_id441629158810517\n"
+"help.text"
+msgid "<emph>Database functions:</emph> DAVERAGE, DCOUNT, DCOUNTA, DGET, DMAX, DMIN, DPRODUCT, DSTDEV, DSTDEVP, DSUM, DVAR and DVARP."
+msgstr ""
+
+#. gfUGT
+#: wildcards.xhp
+msgctxt ""
+"wildcards.xhp\n"
+"par_id321629158810916\n"
+"help.text"
+msgid "<emph>Conditional functions:</emph> AVERAGEIF, AVERAGEIFS, COUNTIF, COUNTIFS, MAXIFS, MINIFS, SUMIF and SUMIFS."
+msgstr ""
+
+#. oUwuB
+#: wildcards.xhp
+msgctxt ""
+"wildcards.xhp\n"
+"par_id941629158811325\n"
+"help.text"
+msgid "<emph>Lookup functions:</emph> HLOOKUP, LOOKUP and VLOOKUP."
+msgstr ""
+
+#. Ka6SK
+#: wildcards.xhp
+msgctxt ""
+"wildcards.xhp\n"
+"par_id41629158919808\n"
+"help.text"
+msgid "<emph>Other functions:</emph> MATCH and SEARCH."
+msgstr ""
+
+#. 2ZGuQ
+#: wildcards.xhp
+msgctxt ""
+"wildcards.xhp\n"
+"hd_id701629159564269\n"
+"help.text"
+msgid "Examples of Wildcards in Formulas"
+msgstr ""
+
+#. 3WVEm
+#: wildcards.xhp
+msgctxt ""
+"wildcards.xhp\n"
+"par_id121629289062103\n"
+"help.text"
+msgid "The following examples consider that the options <menuitem>Enable wildcards in formulas</menuitem> and <menuitem>Search criteria = and <> must apply to whole cells</menuitem> are enabled in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences - %PRODUCTNAME Calc - Calculate</menuitem></caseinline><defaultinline><menuitem>Tools - Options - %PRODUCTNAME Calc - Calculate</menuitem></defaultinline></switchinline>."
+msgstr ""
+
+#. znKay
+#: wildcards.xhp
+msgctxt ""
+"wildcards.xhp\n"
+"par_id271629159111490\n"
+"help.text"
+msgid "<input>=COUNTIF(A1:A10;\"Chi*\")</input> counts the number of cells in the range <emph>A1:A10</emph> containing strings that start with \"Chi\" followed by zero or more characters."
+msgstr ""
+
+#. TPRuA
+#: wildcards.xhp
+msgctxt ""
+"wildcards.xhp\n"
+"par_id741629159343415\n"
+"help.text"
+msgid "<input>=SUMIF(A1:A5;\"A??\";B1:B5)</input> sums the values in <emph>B1:B5</emph> whose corresponding values in <emph>A1:A5</emph> start with \"A\" followed by exactly two other characters."
+msgstr ""
+
+#. 7GqMs
+#: wildcards.xhp
+msgctxt ""
+"wildcards.xhp\n"
+"par_id141629159465592\n"
+"help.text"
+msgid "Wildcard comparisons are <emph>not</emph> case sensitive, hence \"A?\" will match both \"A1\" and \"a1\"."
+msgstr ""
+
+#. ysgCC
+#: year2000.xhp
+msgctxt ""
+"year2000.xhp\n"
+"tit\n"
+"help.text"
+msgid "19xx/20xx Years"
+msgstr ""
+
+#. BzWuf
+#: year2000.xhp
+msgctxt ""
+"year2000.xhp\n"
+"bm_id3150439\n"
+"help.text"
+msgid "<bookmark_value>years; 2-digits</bookmark_value><bookmark_value>dates; 19xx/20xx</bookmark_value>"
+msgstr ""
+
+#. xroNR
+#: year2000.xhp
+msgctxt ""
+"year2000.xhp\n"
+"hd_id3150439\n"
+"help.text"
+msgid "<variable id=\"year2000\"><link href=\"text/scalc/guide/year2000.xhp\" name=\"19xx/20xx Years\">19xx/20xx Years</link></variable>"
+msgstr ""
+
+#. DeEcT
+#: year2000.xhp
+msgctxt ""
+"year2000.xhp\n"
+"par_id3151116\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 ""
+
+#. VVD69
+#: year2000.xhp
+msgctxt ""
+"year2000.xhp\n"
+"par_id3154011\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 ""
+
+#. zB3Ff
+#: year2000.xhp
+msgctxt ""
+"year2000.xhp\n"
+"par_id3150010\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 ""
diff --git a/source/hsb/helpcontent2/source/text/schart.po b/source/hsb/helpcontent2/source/text/schart.po
new file mode 100644
index 00000000000..9d6f8e37a59
--- /dev/null
+++ b/source/hsb/helpcontent2/source/text/schart.po
@@ -0,0 +1,880 @@
+#. extracted from helpcontent2/source/text/schart
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-07-11 18:38+0200\n"
+"PO-Revision-Date: 2022-08-22 14:05+0000\n"
+"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
+"Language-Team: Upper Sorbian <https://translations.documentfoundation.org/projects/libo_help-master/textschart/hsb/>\n"
+"Language: hsb\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: Weblate 4.12.2\n"
+
+#. wtFDe
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Charts in $[officename]"
+msgstr "Diagramy w $[officename]"
+
+#. rTRMz
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"bm_id3148664\n"
+"help.text"
+msgid "<bookmark_value>charts; overview</bookmark_value> <bookmark_value>HowTos for charts</bookmark_value>"
+msgstr "<bookmark_value>diagramy; přehlad</bookmark_value><bookmark_value>nawody; diagramy</bookmark_value>"
+
+#. MCTMA
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"hd_id3148664\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=\"diagramy w $[officename]\">Diagramy w %PRODUCTNAME wužiwać</link></variable>"
+
+#. MKzCA
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"par_id3154685\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 "<variable id=\"chart\">$[officename] wam zmóžnja, daty grafisce w diagramje zwobraznić, zo byšće móhł datowe rjady wizuelnje přirunać a trendy w datach widźeć. Móžeće diagramy do tabelowych dokumentow, tekstowych dokumentow, rysowankow a prezentacijow zasadźić.</variable>"
+
+#. wFC6F
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"hd_id3153143\n"
+"help.text"
+msgid "Chart Data"
+msgstr "Diagramowe daty"
+
+#. SVCdj
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"par_id5181432\n"
+"help.text"
+msgid "Charts can be based on the following data:"
+msgstr "Diagramy móža na slědowacych datach bazować:"
+
+#. upkcw
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"par_id7787102\n"
+"help.text"
+msgid "Spreadsheet values from Calc cell ranges"
+msgstr "Tabelowe hódnoty z celowych wobłukow Calc"
+
+#. xvPKt
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"par_id7929929\n"
+"help.text"
+msgid "Cell values from a Writer table"
+msgstr "Celowe hódnoty z tabele Writer"
+
+#. pkLtG
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"par_id4727011\n"
+"help.text"
+msgid "Values that you enter in the Chart Data Table dialog (you can create these charts in Writer, Draw, or Impress, and you can copy and paste them also to Calc)"
+msgstr "Hódnoty, kotrež do dialoga diagramoweje datoweje tabele zapodawaće (móžeće tute diagramy we Writer, Draw abo Impress wutworić a móžeće je tež kopěrować a do Calc zasadźić)."
+
+#. yKUMz
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"par_id76601\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Creates a chart in the current document. To use a continuous range of cells as the data source for your chart, click inside the cell range, and then choose this command. Alternatively, select some cells and choose this command to create a chart of the selected cells.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Wutwori diagram w aktualnym dokumenće. Zo byšće zwisowacu skupinu celow jako datowe žórło za swój diagram wužiwał, klikńće do celoweho wobłuka a wubjerće potom tutón přikaz. Abo wuběraće někotre cele a potom tutón přikaz, zo byšće diagram z wubranych celow wutworił.</ahelp>"
+
+#. MZr5A
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"hd_id5345011\n"
+"help.text"
+msgid "To insert a chart"
+msgstr "Zo byšće diagram zasadźił"
+
+#. xMyYq
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"hd_id5631580\n"
+"help.text"
+msgid "To edit a chart"
+msgstr "Zo byšće diagram wobdźěłał"
+
+#. 2awPo
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"par_id7911008\n"
+"help.text"
+msgid "Click a chart to edit the object properties:"
+msgstr "Klikńće na diagram, zo byšće objektowe kajkosće wobdźěłał:"
+
+#. MMYWv
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"par_id9844660\n"
+"help.text"
+msgid "Size and position on the current page."
+msgstr "Wulkosć a pozicija na aktualnej stronje."
+
+#. 7zPqd
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"par_id8039796\n"
+"help.text"
+msgid "Alignment, text wrap, outer borders, and more."
+msgstr "Wusměrjenje, tekstowy wobběh, wonkowne ramiki a wjace."
+
+#. X27Dw
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"par_id7986693\n"
+"help.text"
+msgid "Double-click a chart to enter the chart edit mode:"
+msgstr "Klikńće dwójce na diagram, zo byšće k wobdźěłowanskemu modusej přešoł:"
+
+#. cUADi
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"par_id2350840\n"
+"help.text"
+msgid "Chart data values (for charts with own data)."
+msgstr "Diagramowe datowe hódnoty (za diagramy ze swójskimi datami)"
+
+#. BGFEv
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"par_id3776055\n"
+"help.text"
+msgid "Chart type, axes, titles, walls, grid, and more."
+msgstr "Diagramowy typ, wóski, titule, lěsyca a wjace."
+
+#. aDGNk
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"par_id8442335\n"
+"help.text"
+msgid "Double-click a chart element in chart edit mode:"
+msgstr "Klikńće dwójce na diagramowy element we wobdźěłowanskim modusu:"
+
+#. Ft8G5
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"par_id4194769\n"
+"help.text"
+msgid "Double-click an axis to edit the scale, type, color, and more."
+msgstr "Klikńće dwójce na wósku, zo byšće skalowanje, typ, barbu a druhe wobdźěłał."
+
+#. BcUqt
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"par_id8644672\n"
+"help.text"
+msgid "Double-click a data point to select and edit the data series to which the data point belongs."
+msgstr "Klikńće dwójce na datowy dypk, zo byšće datowy rjad wubrał a wobdźěłał, ke kotremuž datowy dypk słuša."
+
+#. Drw6j
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"par_id6574907\n"
+"help.text"
+msgid "With a data series selected, click, then double-click a single data point to edit the properties of this data point (for example, a single bar in a bar chart)."
+msgstr "Wubjerće datowy rjad a klikńće potom na jednotliwy datowy dypk, zo byšće kajkosće tutoho datoweho dypka wobdźěłał (na přikład jednotliwy stołp w stołpowym diagramje)."
+
+#. ZrY6M
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"par_id1019200902360575\n"
+"help.text"
+msgid "Double-click the legend to select and edit the legend. Click, then double-click a symbol in the selected legend to edit the associated data series."
+msgstr "Klikńće dwójce na legendu, zo byšće legendu wubrał a wobdźěłał. Klikńće a potom klikńće dwójce na symbol we wubranej legendźe, zo byšće přisłušne datowe rjady wobdźěłał."
+
+#. 2GvmD
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"par_id7528916\n"
+"help.text"
+msgid "Double-click any other chart element, or click the element and open the Format menu, to edit the properties."
+msgstr "Klikńće dwójce na druhi diagramowy element, abo klikńće na element a wočińće meni Format, zo byšće kajkosće wobdźěłał."
+
+#. eCML4
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"par_id8420667\n"
+"help.text"
+msgid "Click outside the chart to leave the current edit mode."
+msgstr "Klikńće zwonka diagrama, zo byšće aktualny wobdźěłowanski modus wopušćił."
+
+#. Jcdvi
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"par_id4923856\n"
+"help.text"
+msgid "To print a chart in high quality, you can export the chart to a PDF file and print that file."
+msgstr "Zo byšće diagram we wysokej kwaliće ćišćał, móžeće diagram do PDF-dataje eksportować a tu dataju ćišćeć."
+
+#. dk7i6
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"par_id0810200912061033\n"
+"help.text"
+msgid "In chart edit mode, you see the <link href=\"text/schart/main0202.xhp\">Formatting Bar</link> for charts near the upper border of the document. The Drawing Bar for charts appears near the lower border of the document. The Drawing Bar shows a subset of the icons from the <link href=\"text/simpress/main0210.xhp\">Drawing</link> toolbar of Draw and Impress."
+msgstr "W diagramowym wobdźěłowanskim modusu widźiće symbolowu lajstu <link href=\"text/schart/main0202.xhp\">Formatowanje</link> za diagramy blisko hornjeje kromy dokumenta. Symbolowa lajsta Rysowanka za diagramy so blisko delnjeje kromy dokumenta jewi. Symbolowa lajsta Rysowanka dźěl symbolow ze symboloweje lajsty <link href=\"text/simpress/main0210.xhp\">Rysowanka</link> z Draw a Impress pokazuje."
+
+#. sNqMe
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"par_id0810200902080452\n"
+"help.text"
+msgid "You can right-click an element of a chart to open the context menu. The context menu offers many commands to format the selected element."
+msgstr "Móžeće z prawej tastu na diagramowy element kliknyć, zo byšće kontekstowy meni wočinił. Kontekstowy meni wjele přikazow skići, z kotrymiž móžeće wubrany element formatować."
+
+#. dQSHt
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"par_id081020090354489\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Formats the selected title.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Formatuje wubrany titul.</ahelp>"
+
+#. orDAZ
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"par_id0810200903405629\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Formats the chart area.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Formatuje diagramowu płoninu.</ahelp>"
+
+#. FAkFX
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"par_id0810200903544867\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Formats the chart wall.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Formatuje diagramowu sćěnu.</ahelp>"
+
+#. GBwcB
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"par_id0810200903544952\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Formats the chart floor.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Formatuje diagramowe dno.</ahelp>"
+
+#. VsRbA
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"par_id0810200903544927\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Formats the chart legend.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Formatuje diagramowu legendu.</ahelp>"
+
+#. dahmw
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"par_id0810200903544949\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Formats the selected axis.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Formatuje wubranu wósku.</ahelp>"
+
+#. dnReG
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"par_id0810200903544984\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Formats the selected data point.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Formatuje wubrany datowy dypk.</ahelp>"
+
+#. Em2oQ
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"par_id0810200903545096\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Formats the major grid.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Formatuje hłownu lěsycu.</ahelp>"
+
+#. dSJTX
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"par_id0810200903545057\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Formats the minor grid.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Formatuje pomocnu lěsycu.</ahelp>"
+
+#. 8Dius
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"par_id0810200903545095\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Formats the data series.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Formatuje datowe rjady.</ahelp>"
+
+#. 9FeGU
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"par_id0810200903545094\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Formats the stock loss indicators.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Formatuje indikatory straty wobstatka.</ahelp>"
+
+#. uhG9U
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"par_id0810200903545113\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Formats the stock gain indicators.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Formatuje indikatory dobytka wobstatka.</ahelp>"
+
+#. RshCo
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"par_id0810200903545149\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Formats the data labels.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Formatuje datowe popisy.</ahelp>"
+
+#. 7Gexq
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"par_id0810200903545159\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Formats the Y error bars.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Formatuje zmylkowe Y-hrjady.</ahelp>"
+
+#. MhtWH
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"par_id081020090354524\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Formats the mean value line.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Formatuje liniju srjedźneje hódnoty.</ahelp>"
+
+#. H44aA
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"par_id0810200903545274\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Formats the trendline.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Formatuje trendowu liniju.</ahelp>"
+
+#. QYEkZ
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"par_id0810200904063285\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Formats the trendline equation.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Formatuje runicu trendoweje linije.</ahelp>"
+
+#. zgFB3
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"par_id0810200904063252\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Formats the selected data label.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Formatuje wubrany datowy popis.</ahelp>"
+
+#. AdNa8
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"par_id0810200904063239\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens a dialog to insert chart titles.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Wočinja dialog za zasadźowanje diagramowych titulow.</ahelp>"
+
+#. fZZ6J
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"par_id0810200904233047\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens a dialog to insert or delete axes.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Wočinja dialog za zasadźowanje abo zhašenje wóskow.</ahelp>"
+
+#. CzaFt
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"par_id0810200904233058\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens a dialog to insert an axis.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Wočinja dialog za zasadźowanje wóski.</ahelp>"
+
+#. x9jBK
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"par_id0810200904233089\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens a dialog to insert an axis title.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Wočinja dialog za zasadźowanje titula wóski.</ahelp>"
+
+#. tS9HE
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"par_id0810200904233160\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts a major grid.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Zasadźuje hłownu lěsycu.</ahelp>"
+
+#. NUu58
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"par_id0810200904233175\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts a minor grid.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Zasadźuje pomocnu lěsycu.</ahelp>"
+
+#. B67hx
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"par_id0810200904233111\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts data labels.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Zasadźuje datowe popisy.</ahelp>"
+
+#. 2STaz
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"par_id0810200904233174\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts the trendline equation and the coefficient of determination R².</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Zasadźuje runicu trendoweje linije a koeficient wěstosće R².</ahelp>"
+
+#. CKUEM
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"par_id0810200904265639\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts the coefficient of determination R² value.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Zasadźuje hódnotu koeficienta wěstosće R².</ahelp>"
+
+#. BsSAb
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"par_id0810200904362614\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts a single data label.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Zasadźuje jednotliwy datowy popis.</ahelp>"
+
+#. 35PWr
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"par_id0810200904362666\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Deletes the chart legend.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Zhaša diagramowu legendu.</ahelp>"
+
+#. CFDbR
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"par_id0810200904362777\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Deletes the selected axis.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Zhaša wubranu wósku.</ahelp>"
+
+#. jgG2M
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"par_id0810200904362785\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Deletes the major grid.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Zhaša hłownu lěsycu.</ahelp>"
+
+#. bTycs
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"par_id0810200904362748\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Deletes the minor grid.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Zhaša pomocnu lěsycu.</ahelp>"
+
+#. Qatm6
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"par_id0810200904362778\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Deletes all data labels.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Zhaša wšě datowe popisy.</ahelp>"
+
+#. NDa9X
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"par_id0810200904362893\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Deletes the trendline equation.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Zhaša runicu trendoweje linije.</ahelp>"
+
+#. CbYXF
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"par_id0810200904362896\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Deletes the R² value.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Zhaša hódnotu R².</ahelp>"
+
+#. 3thAk
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"par_id0810200904362827\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Deletes the selected data label.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Zhaša wubrany datowy popis.</ahelp>"
+
+#. LQRZw
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"par_id0810200904431376\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Deletes the mean value line.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Zhaša liniju srjedźneje hódnoty.</ahelp>"
+
+#. WBA6w
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"par_id081020090443142\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Deletes the Y error bars.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Zhaša zmylkowe Y-hrjady.</ahelp>"
+
+#. d6WTf
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"par_id0810200904393229\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Resets the selected data point to default format.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Staja wubrany datowy dypk na standardny format wróćo.</ahelp>"
+
+#. xZ45w
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"par_id0810200904393351\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Resets all data points to default format.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Staja wšě datowe dypki na standardny format wróćo.</ahelp>"
+
+#. XUCUB
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"tit\n"
+"help.text"
+msgid "Formatting Bar"
+msgstr "Symbolowa lajsta Formatowanje"
+
+#. WicyB
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"hd_id0810200911433792\n"
+"help.text"
+msgid "<link href=\"text/schart/main0202.xhp\" name=\"Formatting Bar\">Formatting Bar</link>"
+msgstr "Symbolowa lajsta <link href=\"text/schart/main0202.xhp\" name=\"Formatowanje\">Formatowanje</link>"
+
+#. bGXHw
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"par_id0810200911433835\n"
+"help.text"
+msgid "The Formatting Bar is shown when a chart is set to edit mode. Double-click a chart to enter edit mode. Click outside the chart to leave edit mode."
+msgstr "Symbolowa lajsta so pokazuje, hdyž diagram je we wobdźěłowanskim modusu. Klikńće dwójce na diagram, zo byšće do wobdźěłowanskeho modusa zastupił. Klikńće zwonka diagrama, zo byšće wobdźěłowanski modus wopušćił."
+
+#. ffA95
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"par_id0810200911433878\n"
+"help.text"
+msgid "You can edit the formatting of a chart using the controls and icons on the Formatting Bar."
+msgstr "Móžeće formatowanje diagrama z pomocu wodźenskich elementow a symbolow na symbolowej lajsće Formatowanje wobdźěłać."
+
+#. MnXYr
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"hd_id0810200902300436\n"
+"help.text"
+msgid "Select Chart Element"
+msgstr "Wubjerće diagramowy element"
+
+#. eYgyC
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"par_id0810200902300479\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select the element from the chart that you want to format. The element gets selected in the chart preview. Click Format Selection to open the properties dialog for the selected element.</ahelp>"
+msgstr "<ahelp hid=\".\">Wubjerće element z diagrama, kotryž chceće formatować. Element so w diagramowym přehledźe wubjerje. Klikńće na Format – Wuběr formatować…, zo byšće dialog kajkosćow za wubrany element wočinił.</ahelp>"
+
+#. uGAFF
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"hd_id0810200902300555\n"
+"help.text"
+msgid "Format Selection"
+msgstr "Wuběr formatować"
+
+#. BSwBH
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"par_id0810200902300539\n"
+"help.text"
+msgid "Opens the properties dialog for the selected element."
+msgstr "Wočinja dialog kajkosćow za wubrany element."
+
+#. AUcrE
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"hd_id0810200902300545\n"
+"help.text"
+msgid "Chart Type"
+msgstr "Diagramowy typ"
+
+#. Q4Sap
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"par_id0810200902300594\n"
+"help.text"
+msgid "Opens the Chart Type dialog."
+msgstr "Wočinja dialog Diagramowy typ."
+
+#. wepEQ
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"hd_id0810200902300537\n"
+"help.text"
+msgid "Chart Data Table"
+msgstr "Tabela diagramowych datow"
+
+#. c6Act
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"par_id0810200902300699\n"
+"help.text"
+msgid "Opens the Data Table dialog where you can edit the chart data."
+msgstr "Wočinja dialog datoweje tabele, hdźež móžeće diagramowe daty wobdźěłać."
+
+#. aE624
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"hd_id0810200902300672\n"
+"help.text"
+msgid "Horizontal Grids"
+msgstr "Horicontalne lěsycy"
+
+#. uTeV8
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"par_id0810200902300630\n"
+"help.text"
+msgid "The Horizontal Grids icon on the Formatting bar toggles the visibility of the grid display for the Y axis."
+msgstr "Symbol horicontalnych lěsycow w symbolowej lajsće Formatowanje widźomnosć lěsyčnych linijow za Y-wósku přešaltuje."
+
+#. dqfgM
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"hd_id0810200902300738\n"
+"help.text"
+msgid "Legend On/Off"
+msgstr "Legenda zapinjena/wupinjena"
+
+#. aAABk
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"par_id081020090230076\n"
+"help.text"
+msgid "To show or hide a legend, click Legend On/Off on the Formatting bar."
+msgstr "Zo byšće legendu pokazał abo schował, klikńće na Legenda zapinjena/wupinjena w symbolowej lajsće Formatowanje."
+
+#. ACmgc
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"hd_id0810200902300785\n"
+"help.text"
+msgid "Scale Text"
+msgstr "Tekst skalować"
+
+#. vUrp2
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"par_id0810200902300784\n"
+"help.text"
+msgid "Rescales the text in the chart when you change the size of the chart."
+msgstr "Skaluje tekst w diagramje, hdyž wulkosć diagrama měnjeće."
+
+#. hsSrG
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"hd_id081020090230087\n"
+"help.text"
+msgid "Automatic Layout"
+msgstr "Awtomatiske wuhotowanje"
+
+#. gcAxi
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"par_id0810200902300834\n"
+"help.text"
+msgid "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."
+msgstr "Přesuwa wšě diagramowe elementy do jich standardnych pozicijow znutřka aktualneho diagrama. Tuta funkcija diagramowy typ abo druhe atributy njeměnja, měnja jenož poziciju elementow."
+
+#. NCrAu
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"tit\n"
+"help.text"
+msgid "$[officename] Chart Features"
+msgstr "Funkcije diagramow $[officename]"
+
+#. dyCxy
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"hd_id3150543\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=\"Diagramowe funkcije $[officename]\">Diagramowe funkcije $[officename]</link>"
+
+#. DR7Ma
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"par_id3150868\n"
+"help.text"
+msgid "Charts allow you to present data so that it is easy to visualize."
+msgstr "Diagramy wam zmóžnjeja, daty na lochke wašnje zwobraznić."
+
+#. ozGGL
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"par_id3146974\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 "Móžeće diagram ze žórłowych datow w tabelowym dokumenće Calc abo w tabeli Writer wutworić. Hdyž diagram je so w samsnym dokumenće kaž daty zasadźił, je wón z datami zwjazany, zo by so diagram awtomatisce aktualizuje, hdyž žórłowe daty měnjeće."
+
+#. 5BKEB
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"hd_id3153143\n"
+"help.text"
+msgid "Chart Types"
+msgstr "Diagramowe typy"
+
+#. imCSX
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"par_id3151112\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 "Wubjerće ze wšelakich 3D- a 2D-diagramow, na přikład stołpowych, linijowych a kursowych diagramow. Móžeće z mało kliknjenjemi myški diagramowe typy změnić."
+
+#. xTCes
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"hd_id3149665\n"
+"help.text"
+msgid "Individual Formatting"
+msgstr "Jednotliwe formatowanje"
+
+#. AuSKr
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"par_id3156441\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 "Móžeće jednotliwe diagramowe elementy přiměrić, na přikład wóski, datowe popisy a legendy. Klikńće potom z prawej tastu w diagramje, abo wužiwajće symbole symboloweje lajsty a menijowe přikazy."
diff --git a/source/hsb/helpcontent2/source/text/schart/00.po b/source/hsb/helpcontent2/source/text/schart/00.po
new file mode 100644
index 00000000000..363843075a4
--- /dev/null
+++ b/source/hsb/helpcontent2/source/text/schart/00.po
@@ -0,0 +1,556 @@
+#. extracted from helpcontent2/source/text/schart/00
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-07-11 18:38+0200\n"
+"PO-Revision-Date: 2022-08-22 14:05+0000\n"
+"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
+"Language-Team: Upper Sorbian <https://translations.documentfoundation.org/projects/libo_help-master/textschart00/hsb/>\n"
+"Language: hsb\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: Weblate 4.12.2\n"
+
+#. E9tti
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"tit\n"
+"help.text"
+msgid "To access this function..."
+msgstr "Zo byšće tutu funkciju dóstał …"
+
+#. GYYED
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"hd_id3156023\n"
+"help.text"
+msgid "<variable id=\"wie\">To access this function...</variable>"
+msgstr "<variable id=\"wie\">Přistup k tutej funkciji …</variable>"
+
+#. ug82V
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3150791\n"
+"help.text"
+msgid "Choose <emph>View - Chart Data Table</emph> (Charts)"
+msgstr "Wubjerće <emph>Napohlad – Datowa tabela…</emph> (diagram dyrbi zasadźeny być)"
+
+#. fU5ZG
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3154686\n"
+"help.text"
+msgid "On Formatting bar, click"
+msgstr "Klikńće w symbolowej lajsće Format na"
+
+#. GDpSu
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3153728\n"
+"help.text"
+msgid "<image id=\"img_id3147428\" src=\"cmd/sc_grid.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3147428\">Icon</alt></image>"
+msgstr "<image id=\"img_id3147428\" src=\"cmd/sc_grid.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3147428\">Symbol</alt></image>"
+
+#. S6JmP
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3154942\n"
+"help.text"
+msgid "Chart Data"
+msgstr "Diagramowe daty"
+
+#. GhdKK
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3153160\n"
+"help.text"
+msgid "<variable id=\"efgttl\">Choose <emph>Insert - Titles</emph> (Charts)</variable>"
+msgstr "<variable id=\"efgttl\">Wubjerće <emph>Zasadźić - Titule</emph></variable> (diagram dyrbi zasadźeny być)"
+
+#. 3x5QB
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3149121\n"
+"help.text"
+msgid "Choose <emph>Insert - Legend</emph> (Charts)"
+msgstr "Wubjerće <emph>Zasadźić – Legenda…</emph> (diagram dyrbi zasadźeny być)"
+
+#. HqMQr
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3155444\n"
+"help.text"
+msgid "Choose <emph>Format - Legend - Position</emph> tab (Charts)"
+msgstr "Wubjerće <emph>Format – Legenda… – Pozicija</emph> (diagram dyrbi zasadźeny być)"
+
+#. EH75q
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3156385\n"
+"help.text"
+msgid "Choose <emph>Insert - Data Labels</emph> (Charts)"
+msgstr "Wubjerće <emph>Zasadźić – Datowe popisy</emph> (diagram dyrbi zasadźeny być)"
+
+#. zEfSg
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3147341\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 "Wubjerće <emph>Format – Wuběr formatować – Datowe popisy</emph> (hdyž datowy rjad abo datowy dypk diagrama je wubrany)"
+
+#. SQbvj
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3149565\n"
+"help.text"
+msgid "<variable id=\"efgaug\">Choose <emph>Insert - Axes</emph> (Charts)</variable>"
+msgstr "<variable id=\"efgaug\">Wubjerće <emph>Zasadźić - Wóski…</emph> (diagram dyrbi zasadźeny być)</variable>"
+
+#. GttHw
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3150297\n"
+"help.text"
+msgid "Choose <emph>Insert - Grids</emph> (Charts)"
+msgstr "Wubjerće <emph>Zasadźić – Lěsycy</emph> (diagram dyrbi zasadźeny być)"
+
+#. LWyLt
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3145789\n"
+"help.text"
+msgid "On Formatting bar, click"
+msgstr "Klikńće w symbolowej lajsće Format na"
+
+#. zTF9a
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3150307\n"
+"help.text"
+msgid "<image id=\"img_id3155111\" src=\"cmd/sc_togglegridhorizontal.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155111\">Icon</alt></image>"
+msgstr "<image id=\"img_id3155111\" src=\"cmd/sc_togglegridhorizontal.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155111\">Symbol</alt></image>"
+
+#. Abvw3
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3155378\n"
+"help.text"
+msgid "Horizontal Grids"
+msgstr "Horicontalne lěsycy"
+
+#. 77NFv
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3145384\n"
+"help.text"
+msgid "<image id=\"img_id3152989\" src=\"cmd/sc_togglegridvertical.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3152989\">Icon</alt></image>"
+msgstr "<image id=\"img_id3152989\" src=\"cmd/sc_togglegridvertical.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3152989\">Symbol</alt></image>"
+
+#. AeSzg
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3153067\n"
+"help.text"
+msgid "Vertical Grids"
+msgstr "Wertikalne lěsycy"
+
+#. Twpy9
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3148869\n"
+"help.text"
+msgid "<variable id=\"efgsta\">Choose <emph>Insert - X Error Bars</emph>, or <emph>Insert - Y Error Bars</emph> (Charts)</variable>"
+msgstr "<variable id=\"efgsta\">Wubjerće<emph>Zasadźić – Zmylkowe hrjady X…</emph> abo <emph>Zasadźić - Zmylkowe hrjady Y…</emph> (diagram dyrbi zasadźeny być)</variable>"
+
+#. ZD5K5
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id1061738\n"
+"help.text"
+msgid "<variable id=\"trendlines\">Choose <emph>Insert - Trend Line</emph> (Charts)</variable>"
+msgstr "<variable id=\"trendlines\">Wubjerće <emph>Zasadźić – Trendowa linija…</emph> (diagram dyrbi zasadźeny być)</variable>"
+
+#. UzBjR
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3154532\n"
+"help.text"
+msgid "<variable id=\"sonderz\">Choose <emph>Insert - Special Character</emph> (Charts)</variable>"
+msgstr "<variable id=\"sonderz\">Wubjerće <emph>Zasadźić - Wosebite znamješko…</emph> (diagram dyrbi zasadźeny być)</variable>"
+
+#. 8TxLK
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3153246\n"
+"help.text"
+msgid "<variable id=\"frtoes\">Choose <emph>Format - Format Selection</emph> (Charts)</variable>"
+msgstr "<variable id=\"frtoes\">Wubjerće <emph>Format - Wuběr formatować…</emph> (diagram dyrbi zasadźeny być)</variable>"
+
+#. DqsZe
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3150214\n"
+"help.text"
+msgid "<variable id=\"frtodd\">Choose <emph>Format - Format Selection - Data Point</emph> dialog (Charts)</variable>"
+msgstr "<variable id=\"frtodd\">Wubjerće <emph>Format - Wuběr formatować… – dialog Datowy dypk</emph> (diagram dyrbi zasadźeny być)</variable>"
+
+#. ASTDr
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3154765\n"
+"help.text"
+msgid "<variable id=\"frtodr\">Choose <emph>Format - Format Selection - Data Series</emph> dialog (Charts)</variable>"
+msgstr "<variable id=\"frtodr\">Wubjerće <emph>Format – Wuběr formatować… – dialog Datowy rjad</emph> (diagram dyrbi zasadźeny być)</variable>"
+
+#. p2eYn
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3153009\n"
+"help.text"
+msgid "<variable id=\"optionen\">Choose <emph>Format - Format Selection - Data Series - Options</emph> tab (Charts)</variable>"
+msgstr "<variable id=\"optionen\">Wubjerće <emph>Format – Wuběr formatować… – rajtark Opcije</emph> (diagram dyrbi zasadźeny być)</variable>"
+
+#. yRSaN
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3154707\n"
+"help.text"
+msgid "<variable id=\"frtttl\">Choose <emph>Format - Title</emph> (Charts)</variable>"
+msgstr "<variable id=\"frtttl\">Wubjerće <emph>Format - Titul</emph> (diagram dyrbi zasadźeny być)</variable>"
+
+#. CExBh
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3155758\n"
+"help.text"
+msgid "<variable id=\"frtoe\">Choose <emph>Format - Format Selection - Title</emph> dialog (Charts)</variable>"
+msgstr "<variable id=\"frtoe\">Wubjerće <emph>Format – Wuběr formatować… – dialog Titul</emph> (diagram dyrbi zasadźeny być)</variable>"
+
+#. icD4Y
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3153075\n"
+"help.text"
+msgid "<variable id=\"frtegt\">Choose <emph>Format - Format Selection - Title</emph> dialog (Charts)</variable>"
+msgstr "<variable id=\"frtegt\">Wubjerće <emph>Format – Wuběr formatować… – dialog Titul</emph> (diagram dyrbi zasadźeny być)</variable>"
+
+#. aEnjy
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3149048\n"
+"help.text"
+msgid "<variable id=\"frttya\">Choose <emph>Format - Title</emph> (Charts)</variable>"
+msgstr "<variable id=\"frttya\">Wubjerće <emph>Format - Titul</emph> (diagram dyrbi zasadźeny być)</variable>"
+
+#. arVPN
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3147402\n"
+"help.text"
+msgid "<variable id=\"frttyab\">Choose <emph>Format - Axis</emph> (Charts)</variable>"
+msgstr "<variable id=\"frttyab\">Wubjerće <emph>Format - Wóska</emph> (diagram dyrbi zasadźeny być)</variable>"
+
+#. HDvN2
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3147297\n"
+"help.text"
+msgid "<variable id=\"frtlgd\">Choose <emph>Format - Legend</emph>, or <emph>Format - Format Selection - Legend</emph> (Charts)</variable>"
+msgstr "<variable id=\"frtlgd\">Wubjerće <emph>Format - Legenda…</emph> abo <emph>Format - Wuběr formatować… - Legenda</emph> (diagram dyrbi zasadźeny być)</variable>"
+
+#. R5dmc
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3157876\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\">Wubjerće <emph>Format – Wóska – X-wóska…/Sekundarna X-wóska…/Z-wóska…/Wšě wóski…</emph> (diagram dyrbi zasadźeny być)</variable>"
+
+#. Fphi2
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3146883\n"
+"help.text"
+msgid "<variable id=\"frtyas\">Choose <emph>Format - Axis - Y Axis/Secondary Y Axis</emph> (Charts)</variable>"
+msgstr "<variable id=\"frtyas\">Wubjerće <emph>Format - Wóska - Y-wóska…/Sekundarna Y-wóska…</emph> (diagram dyrbi zasadźeny być)</variable>"
+
+#. BH3xT
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3149349\n"
+"help.text"
+msgid "<variable id=\"frtysk\">Choose <emph>Format - Axis - Y Axis - Scale</emph> tab (Charts)</variable>"
+msgstr "<variable id=\"frtysk\">Wubjerće <emph>Format – Wóska – Y-wóska – rajtark Skalowanje</emph> (diagram dyrbi zasadźeny być)</variable>"
+
+#. DbZea
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id1006200812385491\n"
+"help.text"
+msgid "<variable id=\"positioning\">Choose <emph>Format - Axis - X Axis - Positioning</emph> tab (Charts)</variable>"
+msgstr "<variable id=\"positioning\">Wubjerće <emph>Format – Wóska – X-wóska… – rajtark Pozicioněrowanje</emph> (diagram dyrbi zasadźeny być)</variable>"
+
+#. 7T8FZ
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id31493459\n"
+"help.text"
+msgid "<variable id=\"positioningy\">Choose <emph>Format - Axis - Y Axis - Positioning</emph> tab (Charts)</variable>"
+msgstr "<variable id=\"positioningy\">Wubjerće <emph>Format – Wóska – Y-wóska… – rajtark Pozicioněrowanje</emph> (diagram dyrbi zasadźeny być)</variable>"
+
+#. kLZUK
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3150477\n"
+"help.text"
+msgid "<variable id=\"frtgt\">Choose <emph>Format - Grid</emph> (Charts)</variable>"
+msgstr "<variable id=\"frtgt\">Wubjerće <emph>Format - Lěsyca</emph> (diagram dyrbi zasadźeny być)</variable>"
+
+#. 8RRTD
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3150746\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\">Wubjerće <emph>Format – Lěsyca – Hłowna lěsyca X-, Y-, Z-wóski/ Pomocna lěsyca X-, Y-, Z-wóski/ Wšě lěsycy…</emph> (diagram dyrbi zasadźeny być)</variable>"
+
+#. aRwaG
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3145828\n"
+"help.text"
+msgid "<variable id=\"frtdgw\">Choose <emph>Format - Chart Wall - Chart</emph> dialog (Charts)</variable>"
+msgstr "<variable id=\"frtdgw\">Wubjerće <emph>Format – Diagramowa sćěna…</emph>(diagram dyrbi zasadźeny być)</variable>"
+
+#. F8nYw
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3153039\n"
+"help.text"
+msgid "<variable id=\"frtdgb\">Choose <emph>Format - Chart Floor</emph> (Charts)</variable>"
+msgstr "<variable id=\"frtdgb\">Wubjerće <emph>Format - Diagramowe dno…</emph> (diagram dyrbi zasadźeny być)</variable>"
+
+#. e3DQt
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3150141\n"
+"help.text"
+msgid "<variable id=\"frtdgf\">Choose <emph>Format - Chart Area</emph> (Charts)</variable>"
+msgstr "<variable id=\"frtdgf\">Wubjerće <emph>Format – Diagramowa płonina…</emph> (diagram dyrbi zasadźeny być)</variable>"
+
+#. DMVGy
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3155830\n"
+"help.text"
+msgid "Choose <emph>Format - Chart Type</emph> (Charts)"
+msgstr "Wubjerće <emph>Format –Diagramowy typ…</emph> (diagram dyrbi zasadźeny być)"
+
+#. MoAXJ
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3145140\n"
+"help.text"
+msgid "On Formatting bar, click"
+msgstr "Klikńće w symbolowej lajsće Format na"
+
+#. sucpX
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3148582\n"
+"help.text"
+msgid "<image id=\"img_id3153124\" src=\"cmd/sc_diagramtype.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3153124\">Icon</alt></image>"
+msgstr "<image id=\"img_id3153124\" src=\"cmd/sc_diagramtype.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3153124\">Symbol</alt></image>"
+
+#. sMG8t
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3155956\n"
+"help.text"
+msgid "Edit Chart Type"
+msgstr "Diagramowy typ wobdźěłać"
+
+#. pcXEC
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3155621\n"
+"help.text"
+msgid "<variable id=\"frtdda\">Choose <emph>Format - 3D View</emph> (Charts)</variable>"
+msgstr "<variable id=\"frtdda\">Wubjerće <emph>Format – 3D-napohlad…</emph> (diagram dyrbi zasadźeny być)</variable>"
+
+#. Fqrq7
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3150661\n"
+"help.text"
+msgid "Choose <emph>Format - Arrangement</emph> (Charts)"
+msgstr "Wubjerće <emph>Format – Porjad…</emph> (diagram dyrbi zasadźeny być)"
+
+#. fsASf
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3153046\n"
+"help.text"
+msgid "Open context menu - choose <emph>Arrangement</emph> (Charts)"
+msgstr "Wočińće kontekstowy meni a wubjerće <emph>Porjad</emph> (diagram dyrbi zasadźeny być)"
+
+#. YFGGY
+#: 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>"
+msgstr "<image id=\"img_id3149708\" src=\"cmd/sc_togglegridhorizontal.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149708\">Symbol</alt></image>"
+
+#. DENsj
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3150962\n"
+"help.text"
+msgid "Horizontal Grids"
+msgstr "Horicontalne lěsycy"
+
+#. sKqMD
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3151183\n"
+"help.text"
+msgid "<image id=\"img_id3151189\" src=\"cmd/sc_toggleaxisdescr.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3151189\">Icon</alt></image>"
+msgstr "<image id=\"img_id3151189\" src=\"cmd/sc_toggleaxisdescr.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3151189\">Symbol</alt></image>"
+
+#. Mpmae
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3153210\n"
+"help.text"
+msgid "Show/Hide Axis Descriptions"
+msgstr "Wóskowe popisy pokazać/schować"
+
+#. E8GSF
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3156315\n"
+"help.text"
+msgid "<image id=\"img_id3156322\" src=\"cmd/sc_togglegridvertical.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3156322\">Icon</alt></image>"
+msgstr "<image id=\"img_id3156322\" src=\"cmd/sc_togglegridvertical.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3156322\">Symbol</alt></image>"
+
+#. RUv7H
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3153153\n"
+"help.text"
+msgid "Vertical Grids"
+msgstr "Wertikalne lěsycy"
+
+#. HTXnr
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id161525135741575\n"
+"help.text"
+msgid "<emph>Insert Chart</emph>"
+msgstr "<emph>Diagram zasadźić</emph>"
+
+#. FMCni
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id9631641\n"
+"help.text"
+msgid "Choose <emph>Insert - Chart...</emph>"
+msgstr "Wubjerće <emph>Zasadźić – Diagram…</emph>"
+
+#. r4BHs
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id2985320\n"
+"help.text"
+msgid "Choose <emph>Insert - Chart...</emph>"
+msgstr "Wubjerće <emph>Zasadźić – Diagram…</emph>"
+
+#. foJgL
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id1096530\n"
+"help.text"
+msgid "Double-click a chart, then choose <emph>Format - Data Ranges</emph>"
+msgstr "Klikńće dwójce na diagram a wubjerće potom <emph>Format – Datowe wobłuki…</emph>"
+
+#. XCQwT
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id733359\n"
+"help.text"
+msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type drop-down, then click the Properties button.</variable>"
+msgstr "<variable id=\"smlp\">Wubjerće w dialogu Diagramowy typ linijoweho abo XY-diagrama, kotryž linije pokazuje, linijowy typ „Křiwka“ a klikńće potom na tłóčatko Kajkosće…</variable>"
+
+#. ToFBi
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id8513095\n"
+"help.text"
+msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type drop-down, then click the Properties button.</variable>"
+msgstr "<variable id=\"smlp\">Wubjerće w dialogu Diagramowy typ linijoweho abo XY-diagrama, kotryž linije pokazuje, linijowy typ „Schodźenki“ a klikńće potom na tłóčatko Kajkosće…</variable>"
diff --git a/source/hsb/helpcontent2/source/text/schart/01.po b/source/hsb/helpcontent2/source/text/schart/01.po
new file mode 100644
index 00000000000..17c965a435d
--- /dev/null
+++ b/source/hsb/helpcontent2/source/text/schart/01.po
@@ -0,0 +1,8827 @@
+#. extracted from helpcontent2/source/text/schart/01
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2021-09-10 23:11+0200\n"
+"PO-Revision-Date: 2022-08-10 13:23+0000\n"
+"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
+"Language-Team: Upper Sorbian <https://translations.documentfoundation.org/projects/libo_help-master/textschart01/hsb/>\n"
+"Language: hsb\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: Weblate 4.12.2\n"
+
+#. DsZFP
+#: 03010000.xhp
+msgctxt ""
+"03010000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Data Table"
+msgstr "Datowa tabela"
+
+#. uFKwH
+#: 03010000.xhp
+msgctxt ""
+"03010000.xhp\n"
+"hd_id3150869\n"
+"help.text"
+msgid "<link href=\"text/schart/01/03010000.xhp\" name=\"Data Table\">Data Table</link>"
+msgstr ""
+
+#. EvUD4
+#: 03010000.xhp
+msgctxt ""
+"03010000.xhp\n"
+"par_id3151115\n"
+"help.text"
+msgid "<ahelp hid=\".\">Opens the<emph> Data Table </emph>dialog where you can edit the chart data.</ahelp>"
+msgstr ""
+
+#. RHGbZ
+#: 03010000.xhp
+msgctxt ""
+"03010000.xhp\n"
+"par_id3149667\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 ""
+
+#. uiZwN
+#: 03010000.xhp
+msgctxt ""
+"03010000.xhp\n"
+"par_id6746421\n"
+"help.text"
+msgid "<link href=\"text/swriter/01/06990000.xhp\">To update a chart manually when a Writer table got changed</link>"
+msgstr ""
+
+#. zuseH
+#: 03010000.xhp
+msgctxt ""
+"03010000.xhp\n"
+"par_id2565996\n"
+"help.text"
+msgid "Some changes will become visible only after you close and reopen the dialog."
+msgstr ""
+
+#. YcEuK
+#: 03010000.xhp
+msgctxt ""
+"03010000.xhp\n"
+"hd_id6129947\n"
+"help.text"
+msgid "To change chart data"
+msgstr ""
+
+#. ECmjX
+#: 03010000.xhp
+msgctxt ""
+"03010000.xhp\n"
+"par_id8141117\n"
+"help.text"
+msgid "When you create a chart that is based on default data, or when you copy a chart into your document, you can open the Data Table dialog to enter your own data. The chart responds to the data in a live preview."
+msgstr ""
+
+#. VoGXA
+#: 03010000.xhp
+msgctxt ""
+"03010000.xhp\n"
+"par_id9487594\n"
+"help.text"
+msgid "Close the Chart Data dialog to apply all changes to the chart. Choose <emph>Edit - Undo</emph> to cancel the changes."
+msgstr ""
+
+#. iDfxC
+#: 03010000.xhp
+msgctxt ""
+"03010000.xhp\n"
+"par_id4149906\n"
+"help.text"
+msgid "Insert or select a chart that is not based on existing cell data."
+msgstr ""
+
+#. H9HSu
+#: 03010000.xhp
+msgctxt ""
+"03010000.xhp\n"
+"par_id6064943\n"
+"help.text"
+msgid "Choose <emph>View - Chart Data Table</emph> to open the Data Table dialog."
+msgstr ""
+
+#. CtH6Q
+#: 03010000.xhp
+msgctxt ""
+"03010000.xhp\n"
+"par_id3236182\n"
+"help.text"
+msgid "The data series are organized in columns. The role of the left most column is set to categories or data labels respectively. The contents of the left most column are always formatted as text. You can insert more text columns to be used as hierarchical labels."
+msgstr ""
+
+#. RSA5B
+#: 03010000.xhp
+msgctxt ""
+"03010000.xhp\n"
+"par_id9799798\n"
+"help.text"
+msgid "Click a cell in the dialog and change the contents. Click another cell to see the changed contents in the preview."
+msgstr ""
+
+#. CBYKU
+#: 03010000.xhp
+msgctxt ""
+"03010000.xhp\n"
+"par_id1251258\n"
+"help.text"
+msgid "Enter the name of the data series in the text box above the column."
+msgstr ""
+
+#. 87TGK
+#: 03010000.xhp
+msgctxt ""
+"03010000.xhp\n"
+"par_id743430\n"
+"help.text"
+msgid "Use the icons above the table to insert or delete rows and columns. For data series with multiple columns, only whole data series can be inserted or deleted."
+msgstr ""
+
+#. 5wuLN
+#: 03010000.xhp
+msgctxt ""
+"03010000.xhp\n"
+"par_id8111819\n"
+"help.text"
+msgid "The order of the data series in the chart is the same as in the data table. Use the <emph>Move Series Right</emph> icon to switch the current column with its neighbor on the right."
+msgstr ""
+
+#. fQcQH
+#: 03010000.xhp
+msgctxt ""
+"03010000.xhp\n"
+"par_id9116794\n"
+"help.text"
+msgid "The order of the categories or data points in the chart is the same as in the data table. Use the <emph>Move Row Down</emph> icon to switch the current row with its neighbor below."
+msgstr ""
+
+#. fux4x
+#: 03010000.xhp
+msgctxt ""
+"03010000.xhp\n"
+"par_id3150297\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts a new row below the current row.</ahelp>"
+msgstr ""
+
+#. PkbNJ
+#: 03010000.xhp
+msgctxt ""
+"03010000.xhp\n"
+"par_id3145384\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts a new data series after the current column.</ahelp>"
+msgstr ""
+
+#. WPrLE
+#: 03010000.xhp
+msgctxt ""
+"03010000.xhp\n"
+"par_id3152297\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts a new text column after the current column for hierarchical axes descriptions.</ahelp>"
+msgstr ""
+
+#. Zmyws
+#: 03010000.xhp
+msgctxt ""
+"03010000.xhp\n"
+"par_id3159231\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Deletes the current row. It is not possible to delete the label row.</ahelp>"
+msgstr ""
+
+#. 5zEhn
+#: 03010000.xhp
+msgctxt ""
+"03010000.xhp\n"
+"par_id3153336\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 ""
+
+#. wJbsu
+#: 03010000.xhp
+msgctxt ""
+"03010000.xhp\n"
+"par_id4089175\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Switches the current column with its neighbor at the right.</ahelp>"
+msgstr ""
+
+#. AE67G
+#: 03010000.xhp
+msgctxt ""
+"03010000.xhp\n"
+"par_id4089176\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Switches the current column with its neighbor at the left.</ahelp>"
+msgstr ""
+
+#. DvGaq
+#: 03010000.xhp
+msgctxt ""
+"03010000.xhp\n"
+"par_id3949095\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Switches the current row with its neighbor below.</ahelp>"
+msgstr ""
+
+#. qCW5A
+#: 03010000.xhp
+msgctxt ""
+"03010000.xhp\n"
+"par_id3949096\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Switches the current row with its neighbor above.</ahelp>"
+msgstr ""
+
+#. gqb7C
+#: 03010000.xhp
+msgctxt ""
+"03010000.xhp\n"
+"par_id6697286\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter names for the data series.</ahelp>"
+msgstr ""
+
+#. 9dACT
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Titles"
+msgstr ""
+
+#. dDQSp
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"hd_id3147345\n"
+"help.text"
+msgid "Titles"
+msgstr ""
+
+#. 2YvMC
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id3150298\n"
+"help.text"
+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 ""
+
+#. nMBJm
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"hd_id3150207\n"
+"help.text"
+msgid "Title"
+msgstr ""
+
+#. aDGQ3
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id3150371\n"
+"help.text"
+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 ""
+
+#. PB2Ds
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"hd_id3146980\n"
+"help.text"
+msgid "Subtitle"
+msgstr ""
+
+#. scHvz
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id3149404\n"
+"help.text"
+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 ""
+
+#. XnAk5
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"hd_id3150208\n"
+"help.text"
+msgid "Axes"
+msgstr ""
+
+#. UZbPg
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"hd_id3156018\n"
+"help.text"
+msgid "X axis"
+msgstr ""
+
+#. pKjQE
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id3152869\n"
+"help.text"
+msgid "<ahelp hid=\"modules/schart/ui/inserttitledlg/primaryXaxis\">Enter the desired title for the X axis of the chart.</ahelp>"
+msgstr ""
+
+#. D9dUG
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"hd_id3159226\n"
+"help.text"
+msgid "Y axis"
+msgstr ""
+
+#. Xo3hd
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id3154763\n"
+"help.text"
+msgid "<ahelp hid=\"modules/schart/ui/inserttitledlg/primaryYaxis\">Enter the desired title for the Y axis of the chart.</ahelp>"
+msgstr ""
+
+#. dnefP
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"hd_id3153009\n"
+"help.text"
+msgid "Z axis"
+msgstr ""
+
+#. KJ7bn
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id3154710\n"
+"help.text"
+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 ""
+
+#. uq9uY
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"hd_id3150209\n"
+"help.text"
+msgid "Secondary Axes"
+msgstr ""
+
+#. Ur5xh
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"hd_id3156019\n"
+"help.text"
+msgid "X axis"
+msgstr ""
+
+#. QNMF9
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id3152870\n"
+"help.text"
+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 ""
+
+#. CZHPa
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"hd_id3156020\n"
+"help.text"
+msgid "Y axis"
+msgstr ""
+
+#. 7BuDS
+#: 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 ""
+
+#. EpNZy
+#: 04020000.xhp
+msgctxt ""
+"04020000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Legend"
+msgstr ""
+
+#. Qpgon
+#: 04020000.xhp
+msgctxt ""
+"04020000.xhp\n"
+"bm_id3156441\n"
+"help.text"
+msgid "<bookmark_value>chart legends; hiding</bookmark_value><bookmark_value>hiding;chart legends</bookmark_value>"
+msgstr ""
+
+#. sVYGd
+#: 04020000.xhp
+msgctxt ""
+"04020000.xhp\n"
+"hd_id3156441\n"
+"help.text"
+msgid "Legend"
+msgstr ""
+
+#. tGRyh
+#: 04020000.xhp
+msgctxt ""
+"04020000.xhp\n"
+"par_id3155413\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 ""
+
+#. nyEeY
+#: 04020000.xhp
+msgctxt ""
+"04020000.xhp\n"
+"par_id3149124\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 ""
+
+#. CxQSK
+#: 04020000.xhp
+msgctxt ""
+"04020000.xhp\n"
+"par_id3145230\n"
+"help.text"
+msgid "<image id=\"img_id3147346\" src=\"cmd/sc_togglelegend.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3147346\">Icon</alt></image>"
+msgstr ""
+
+#. qgksF
+#: 04020000.xhp
+msgctxt ""
+"04020000.xhp\n"
+"par_id3149207\n"
+"help.text"
+msgid "Legend On/Off"
+msgstr ""
+
+#. k6bRB
+#: 04020000.xhp
+msgctxt ""
+"04020000.xhp\n"
+"hd_id3155114\n"
+"help.text"
+msgid "Display"
+msgstr ""
+
+#. BSdJn
+#: 04020000.xhp
+msgctxt ""
+"04020000.xhp\n"
+"par_id3150206\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 ""
+
+#. 7DTyB
+#: 04020000.xhp
+msgctxt ""
+"04020000.xhp\n"
+"hd_id3150201\n"
+"help.text"
+msgid "Position"
+msgstr ""
+
+#. jRcLn
+#: 04020000.xhp
+msgctxt ""
+"04020000.xhp\n"
+"par_id3155376\n"
+"help.text"
+msgid "Select the position for the legend:"
+msgstr ""
+
+#. JZBng
+#: 04020000.xhp
+msgctxt ""
+"04020000.xhp\n"
+"hd_id3152988\n"
+"help.text"
+msgid "Left"
+msgstr ""
+
+#. cz4fU
+#: 04020000.xhp
+msgctxt ""
+"04020000.xhp\n"
+"par_id3155087\n"
+"help.text"
+msgid "<ahelp hid=\"modules/schart/ui/tp_LegendPosition/left\">Positions the legend at the left of the chart.</ahelp>"
+msgstr ""
+
+#. EEpAX
+#: 04020000.xhp
+msgctxt ""
+"04020000.xhp\n"
+"hd_id3153816\n"
+"help.text"
+msgid "Top"
+msgstr ""
+
+#. 6dfZN
+#: 04020000.xhp
+msgctxt ""
+"04020000.xhp\n"
+"par_id3153912\n"
+"help.text"
+msgid "<ahelp hid=\"modules/schart/ui/tp_LegendPosition/top\">Positions the legend at the top of the chart.</ahelp>"
+msgstr ""
+
+#. LQDxf
+#: 04020000.xhp
+msgctxt ""
+"04020000.xhp\n"
+"hd_id3144773\n"
+"help.text"
+msgid "Right"
+msgstr ""
+
+#. WJFTY
+#: 04020000.xhp
+msgctxt ""
+"04020000.xhp\n"
+"par_id3155268\n"
+"help.text"
+msgid "<ahelp hid=\"modules/schart/ui/tp_LegendPosition/right\">Positions the legend at the right of the chart.</ahelp>"
+msgstr ""
+
+#. CHEsi
+#: 04020000.xhp
+msgctxt ""
+"04020000.xhp\n"
+"hd_id3152871\n"
+"help.text"
+msgid "Bottom"
+msgstr ""
+
+#. LuHXm
+#: 04020000.xhp
+msgctxt ""
+"04020000.xhp\n"
+"par_id3153249\n"
+"help.text"
+msgid "<ahelp hid=\"modules/schart/ui/tp_LegendPosition/bottom\">Positions the legend at the bottom of the chart.</ahelp>"
+msgstr ""
+
+#. rqcBi
+#: 04020000.xhp
+msgctxt ""
+"04020000.xhp\n"
+"hd_id1106200812072645\n"
+"help.text"
+msgid "Text Orientation"
+msgstr ""
+
+#. zgASX
+#: 04020000.xhp
+msgctxt ""
+"04020000.xhp\n"
+"par_id1106200812072653\n"
+"help.text"
+msgid "This feature is only available if complex text layout support is enabled 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\"> - Language settings - Languages</item>."
+msgstr ""
+
+#. P8c8j
+#: 04020000.xhp
+msgctxt ""
+"04020000.xhp\n"
+"hd_id1106200812112444\n"
+"help.text"
+msgid "Text Direction"
+msgstr ""
+
+#. bq8iM
+#: 04020000.xhp
+msgctxt ""
+"04020000.xhp\n"
+"par_id1106200812112530\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specify the text direction for a paragraph that uses complex text layout (CTL). This feature is only available if complex text layout support is enabled.</ahelp>"
+msgstr ""
+
+#. iNVc7
+#: 04020000.xhp
+msgctxt ""
+"04020000.xhp\n"
+"hd_id1106200812112445\n"
+"help.text"
+msgid "Overlay"
+msgstr ""
+
+#. C27pQ
+#: 04020000.xhp
+msgctxt ""
+"04020000.xhp\n"
+"par_id1106200812112531\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specifies whether the legend should overlap the chart.</ahelp> Turning off this option is useful if you want to display the legend above an empty part of the chart area instead of beside it. This way the drawing area can fill the whole chart area, increasing its readability."
+msgstr ""
+
+#. WXyyt
+#: 04030000.xhp
+msgctxt ""
+"04030000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Data Labels"
+msgstr ""
+
+#. hnFS9
+#: 04030000.xhp
+msgctxt ""
+"04030000.xhp\n"
+"bm_id3150275\n"
+"help.text"
+msgid "<bookmark_value>data labels in charts</bookmark_value> <bookmark_value>labels; for charts</bookmark_value> <bookmark_value>charts; data labels</bookmark_value> <bookmark_value>data values in charts</bookmark_value> <bookmark_value>chart legends; showing icons with labels</bookmark_value>"
+msgstr ""
+
+#. jWyvv
+#: 04030000.xhp
+msgctxt ""
+"04030000.xhp\n"
+"hd_id3150275\n"
+"help.text"
+msgid "<variable id=\"datenbeschriftung\"><link href=\"text/schart/01/04030000.xhp\" name=\"Data labels\">Data Labels</link></variable>"
+msgstr ""
+
+#. C3Fy5
+#: 04030000.xhp
+msgctxt ""
+"04030000.xhp\n"
+"par_id3154684\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 ""
+
+#. EwAhi
+#: 04030000.xhp
+msgctxt ""
+"04030000.xhp\n"
+"par_id0810200912120416\n"
+"help.text"
+msgid "If an element of a data series is selected, this command works on that data series only. If no element is selected, this command works on all data series."
+msgstr ""
+
+#. krmHL
+#: 04030000.xhp
+msgctxt ""
+"04030000.xhp\n"
+"hd_id3149401\n"
+"help.text"
+msgid "Show value as number"
+msgstr ""
+
+#. EDSJW
+#: 04030000.xhp
+msgctxt ""
+"04030000.xhp\n"
+"par_id3150751\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 ""
+
+#. 6nNxh
+#: 04030000.xhp
+msgctxt ""
+"04030000.xhp\n"
+"hd_id5077059\n"
+"help.text"
+msgid "Number format"
+msgstr ""
+
+#. qcDam
+#: 04030000.xhp
+msgctxt ""
+"04030000.xhp\n"
+"par_id9794610\n"
+"help.text"
+msgid "<ahelp hid=\".\">Opens a dialog to select the number format.</ahelp>"
+msgstr ""
+
+#. uBbyH
+#: 04030000.xhp
+msgctxt ""
+"04030000.xhp\n"
+"hd_id3145643\n"
+"help.text"
+msgid "Show value as percentage"
+msgstr ""
+
+#. ngLy4
+#: 04030000.xhp
+msgctxt ""
+"04030000.xhp\n"
+"par_id3156382\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 ""
+
+#. 7gGrJ
+#: 04030000.xhp
+msgctxt ""
+"04030000.xhp\n"
+"hd_id1316873\n"
+"help.text"
+msgid "Percentage format"
+msgstr ""
+
+#. 6v4iu
+#: 04030000.xhp
+msgctxt ""
+"04030000.xhp\n"
+"par_id5476241\n"
+"help.text"
+msgid "<ahelp hid=\".\">Opens a dialog to select the percentage format.</ahelp>"
+msgstr ""
+
+#. eQMTH
+#: 04030000.xhp
+msgctxt ""
+"04030000.xhp\n"
+"hd_id3145228\n"
+"help.text"
+msgid "Show category"
+msgstr ""
+
+#. t8e9e
+#: 04030000.xhp
+msgctxt ""
+"04030000.xhp\n"
+"par_id3154702\n"
+"help.text"
+msgid "<ahelp hid=\"modules/schart/ui/tp_DataLabel/CB_CATEGORY\">Shows the data point text labels.</ahelp>"
+msgstr ""
+
+#. 47xYM
+#: 04030000.xhp
+msgctxt ""
+"04030000.xhp\n"
+"hd_id3150298\n"
+"help.text"
+msgid "Show legend key"
+msgstr ""
+
+#. 2hZiL
+#: 04030000.xhp
+msgctxt ""
+"04030000.xhp\n"
+"par_id3150205\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 ""
+
+#. 9J6AM
+#: 04030000.xhp
+msgctxt ""
+"04030000.xhp\n"
+"hd_id3836787\n"
+"help.text"
+msgid "Separator"
+msgstr ""
+
+#. GJjLw
+#: 04030000.xhp
+msgctxt ""
+"04030000.xhp\n"
+"par_id6668904\n"
+"help.text"
+msgid "<ahelp hid=\".\">Selects the separator between multiple text strings for the same object.</ahelp>"
+msgstr ""
+
+#. cg8Ec
+#: 04030000.xhp
+msgctxt ""
+"04030000.xhp\n"
+"hd_id4319284\n"
+"help.text"
+msgid "Placement"
+msgstr ""
+
+#. zGAPr
+#: 04030000.xhp
+msgctxt ""
+"04030000.xhp\n"
+"par_id5159459\n"
+"help.text"
+msgid "<ahelp hid=\".\">Selects the placement of data labels relative to the objects.</ahelp>"
+msgstr ""
+
+#. WH2iw
+#: 04030000.xhp
+msgctxt ""
+"04030000.xhp\n"
+"hd_id1106200812280727\n"
+"help.text"
+msgid "Text Direction"
+msgstr ""
+
+#. FRDF4
+#: 04030000.xhp
+msgctxt ""
+"04030000.xhp\n"
+"par_id1106200812280719\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specify the text direction for a paragraph that uses complex text layout (CTL). This feature is only available if complex text layout support is enabled.</ahelp>"
+msgstr ""
+
+#. iCBUY
+#: 04030000.xhp
+msgctxt ""
+"04030000.xhp\n"
+"hd_id1007200901590713\n"
+"help.text"
+msgid "Rotate Text"
+msgstr ""
+
+#. q7CXD
+#: 04030000.xhp
+msgctxt ""
+"04030000.xhp\n"
+"par_id1007200901590752\n"
+"help.text"
+msgid "<ahelp hid=\".\">Click in the dial to set the text orientation for the data labels.</ahelp>"
+msgstr ""
+
+#. wRA3X
+#: 04030000.xhp
+msgctxt ""
+"04030000.xhp\n"
+"par_id1007200901590757\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter the counterclockwise rotation angle for the data labels.</ahelp>"
+msgstr ""
+
+#. 9SFGe
+#: 04040000.xhp
+msgctxt ""
+"04040000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Axes"
+msgstr ""
+
+#. eFmfm
+#: 04040000.xhp
+msgctxt ""
+"04040000.xhp\n"
+"bm_id3147428\n"
+"help.text"
+msgid "<bookmark_value>axes; showing axes in charts</bookmark_value><bookmark_value>charts; showing axes</bookmark_value><bookmark_value>X axes; showing</bookmark_value><bookmark_value>Y axes; showing</bookmark_value><bookmark_value>Z axes; showing</bookmark_value><bookmark_value>axes; better scaling</bookmark_value><bookmark_value>secondary axes in charts</bookmark_value>"
+msgstr ""
+
+#. WkAuF
+#: 04040000.xhp
+msgctxt ""
+"04040000.xhp\n"
+"hd_id3147428\n"
+"help.text"
+msgid "Axes"
+msgstr ""
+
+#. roD3o
+#: 04040000.xhp
+msgctxt ""
+"04040000.xhp\n"
+"par_id3150330\n"
+"help.text"
+msgid "<variable id=\"achsen\"><ahelp hid=\".uno:InsertMenuAxes\">Specifies the axes to be displayed in the chart.</ahelp></variable>"
+msgstr ""
+
+#. ZeHAo
+#: 04040000.xhp
+msgctxt ""
+"04040000.xhp\n"
+"hd_id3156385\n"
+"help.text"
+msgid "Major axis"
+msgstr ""
+
+#. qKnCE
+#: 04040000.xhp
+msgctxt ""
+"04040000.xhp\n"
+"hd_id3146316\n"
+"help.text"
+msgid "X axis"
+msgstr ""
+
+#. iBDRp
+#: 04040000.xhp
+msgctxt ""
+"04040000.xhp\n"
+"par_id3145230\n"
+"help.text"
+msgid "<ahelp hid=\"modules/schart/ui/insertaxisdlg/primaryX\">Displays the X axis as a line with subdivisions.</ahelp>"
+msgstr ""
+
+#. Z2haD
+#: 04040000.xhp
+msgctxt ""
+"04040000.xhp\n"
+"hd_id3147003\n"
+"help.text"
+msgid "Y axis"
+msgstr ""
+
+#. E8B8Z
+#: 04040000.xhp
+msgctxt ""
+"04040000.xhp\n"
+"par_id3154020\n"
+"help.text"
+msgid "<ahelp hid=\"modules/schart/ui/insertaxisdlg/primaryY\">Displays the Y axis as a line with subdivisions.</ahelp>"
+msgstr ""
+
+#. mJpxz
+#: 04040000.xhp
+msgctxt ""
+"04040000.xhp\n"
+"hd_id3150345\n"
+"help.text"
+msgid "Z axis"
+msgstr ""
+
+#. pAJYE
+#: 04040000.xhp
+msgctxt ""
+"04040000.xhp\n"
+"par_id3155113\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 ""
+
+#. d2Ec7
+#: 04040000.xhp
+msgctxt ""
+"04040000.xhp\n"
+"hd_id3150206\n"
+"help.text"
+msgid "Secondary axis"
+msgstr ""
+
+#. QaGNX
+#: 04040000.xhp
+msgctxt ""
+"04040000.xhp\n"
+"par_id3166428\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 ""
+
+#. oEY8r
+#: 04040000.xhp
+msgctxt ""
+"04040000.xhp\n"
+"hd_id3152988\n"
+"help.text"
+msgid "X axis"
+msgstr ""
+
+#. hAMZB
+#: 04040000.xhp
+msgctxt ""
+"04040000.xhp\n"
+"par_id3156445\n"
+"help.text"
+msgid "<ahelp hid=\"modules/schart/ui/insertaxisdlg/secondaryX\">Displays a secondary X axis in the chart.</ahelp>"
+msgstr ""
+
+#. v2A28
+#: 04040000.xhp
+msgctxt ""
+"04040000.xhp\n"
+"hd_id3152896\n"
+"help.text"
+msgid "Y axis"
+msgstr ""
+
+#. VEXsg
+#: 04040000.xhp
+msgctxt ""
+"04040000.xhp\n"
+"par_id3153818\n"
+"help.text"
+msgid "<ahelp hid=\"modules/schart/ui/insertaxisdlg/secondaryY\">Displays a secondary Y axis in the chart.</ahelp>"
+msgstr ""
+
+#. m6gyt
+#: 04040000.xhp
+msgctxt ""
+"04040000.xhp\n"
+"par_id3154762\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 ""
+
+#. CQdYY
+#: 04050000.xhp
+msgctxt ""
+"04050000.xhp\n"
+"tit\n"
+"help.text"
+msgid "X/Y Error Bars"
+msgstr ""
+
+#. 3gFip
+#: 04050000.xhp
+msgctxt ""
+"04050000.xhp\n"
+"hd_id3147428\n"
+"help.text"
+msgid "<link href=\"text/schart/01/04050000.xhp\" name=\"Y Error Bars\">X/Y Error Bars</link>"
+msgstr ""
+
+#. VufWr
+#: 04050000.xhp
+msgctxt ""
+"04050000.xhp\n"
+"par_id3149666\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 ""
+
+#. dw9Dz
+#: 04050000.xhp
+msgctxt ""
+"04050000.xhp\n"
+"par_id3401287\n"
+"help.text"
+msgid "An error bar is an indicator line that spans over a range from x/y - NegativeErrorValue to x/y + PositiveErrorValue. In this term, x or y is the value of the data point. When \"standard deviation\" is selected, x or y is the mean value of the data series. NegativeErrorValue and PositiveErrorValue are the amounts calculated by the error bar function or given explicitly."
+msgstr ""
+
+#. 2uEd3
+#: 04050000.xhp
+msgctxt ""
+"04050000.xhp\n"
+"par_id3153965\n"
+"help.text"
+msgid "The <emph>Insert - X/Y Error Bars</emph> menu command is only available for 2D charts."
+msgstr ""
+
+#. GE8Ux
+#: 04050000.xhp
+msgctxt ""
+"04050000.xhp\n"
+"hd_id3150344\n"
+"help.text"
+msgid "Error category"
+msgstr ""
+
+#. 7x2ix
+#: 04050000.xhp
+msgctxt ""
+"04050000.xhp\n"
+"par_id3150202\n"
+"help.text"
+msgid "In the <emph>Error category</emph> area, you can choose different ways to display the error category."
+msgstr ""
+
+#. TFxgF
+#: 04050000.xhp
+msgctxt ""
+"04050000.xhp\n"
+"hd_id3152989\n"
+"help.text"
+msgid "None"
+msgstr ""
+
+#. jUGgu
+#: 04050000.xhp
+msgctxt ""
+"04050000.xhp\n"
+"par_id3149409\n"
+"help.text"
+msgid "<ahelp hid=\".\">Does not show any error bars.</ahelp>"
+msgstr ""
+
+#. G7ApU
+#: 04050000.xhp
+msgctxt ""
+"04050000.xhp\n"
+"hd_id3145117\n"
+"help.text"
+msgid "Constant value"
+msgstr ""
+
+#. yFttn
+#: 04050000.xhp
+msgctxt ""
+"04050000.xhp\n"
+"par_id3151390\n"
+"help.text"
+msgid "<ahelp hid=\".\">Displays constant values that you specify in the Parameters area.</ahelp>"
+msgstr ""
+
+#. uPkhT
+#: 04050000.xhp
+msgctxt ""
+"04050000.xhp\n"
+"hd_id3159204\n"
+"help.text"
+msgid "Percentage"
+msgstr ""
+
+#. pLWGy
+#: 04050000.xhp
+msgctxt ""
+"04050000.xhp\n"
+"par_id3150048\n"
+"help.text"
+msgid "<ahelp hid=\".\">Displays a percentage. The display refers to the corresponding data point. Set the percentage in the Parameters area.</ahelp>"
+msgstr ""
+
+#. tsxNy
+#: 04050000.xhp
+msgctxt ""
+"04050000.xhp\n"
+"hd_id8977629\n"
+"help.text"
+msgid "Functions"
+msgstr ""
+
+#. JVDun
+#: 04050000.xhp
+msgctxt ""
+"04050000.xhp\n"
+"par_id7109286\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select a function to calculate the error bars.</ahelp>"
+msgstr ""
+
+#. wUD8K
+#: 04050000.xhp
+msgctxt ""
+"04050000.xhp\n"
+"par_id5154576\n"
+"help.text"
+msgid "Standard Error: Displays the standard error."
+msgstr ""
+
+#. 2t2XJ
+#: 04050000.xhp
+msgctxt ""
+"04050000.xhp\n"
+"par_id3157979\n"
+"help.text"
+msgid "Variance: Displays the variance calculated from the number of data points and respective values."
+msgstr ""
+
+#. DkMFd
+#: 04050000.xhp
+msgctxt ""
+"04050000.xhp\n"
+"par_id3153249\n"
+"help.text"
+msgid "Standard Deviation: Displays the standard deviation (square root of the variance). Unlike other functions, error bars are centered on the mean."
+msgstr ""
+
+#. GdCG9
+#: 04050000.xhp
+msgctxt ""
+"04050000.xhp\n"
+"par_id3149870\n"
+"help.text"
+msgid "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."
+msgstr ""
+
+#. ffQE4
+#: 04050000.xhp
+msgctxt ""
+"04050000.xhp\n"
+"hd_id350962\n"
+"help.text"
+msgid "Cell Range"
+msgstr ""
+
+#. BzcrF
+#: 04050000.xhp
+msgctxt ""
+"04050000.xhp\n"
+"par_id6679586\n"
+"help.text"
+msgid "<ahelp hid=\".\">Click Cell Range and then specify a cell range from which to take the positive and negative error bar values.</ahelp>"
+msgstr ""
+
+#. DQYC6
+#: 04050000.xhp
+msgctxt ""
+"04050000.xhp\n"
+"par_id3872188\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Click a button to shrink the dialog, then use the mouse to select the cell range in the spreadsheet. Click the button again to restore the dialog to full size.</ahelp>"
+msgstr ""
+
+#. XbnB2
+#: 04050000.xhp
+msgctxt ""
+"04050000.xhp\n"
+"hd_id2633747\n"
+"help.text"
+msgid "From Data Table"
+msgstr ""
+
+#. CKWJ7
+#: 04050000.xhp
+msgctxt ""
+"04050000.xhp\n"
+"par_id6633503\n"
+"help.text"
+msgid "<ahelp hid=\".\">For a chart with its own data, the error bar values can be entered in the chart data table. The Data Table dialog shows additional columns titled Positive X or Y-Error-Bars and Negative X or Y-Error-Bars.</ahelp>"
+msgstr ""
+
+#. 6Tjw9
+#: 04050000.xhp
+msgctxt ""
+"04050000.xhp\n"
+"par_id0428200810573839\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the value to add to the displayed value as the positive error value.</ahelp>"
+msgstr ""
+
+#. YCbEY
+#: 04050000.xhp
+msgctxt ""
+"04050000.xhp\n"
+"par_id0428200810573862\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the value to subtract from the displayed value as the negative error value.</ahelp>"
+msgstr ""
+
+#. kRFcG
+#: 04050000.xhp
+msgctxt ""
+"04050000.xhp\n"
+"par_id0428200810573844\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the address range from where to get the positive error values. Use the Shrink button to select the range from a sheet.</ahelp>"
+msgstr ""
+
+#. Qpys7
+#: 04050000.xhp
+msgctxt ""
+"04050000.xhp\n"
+"par_id0428200810573970\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the address range from where to get the negative error values. Use the Shrink button to select the range from a sheet.</ahelp>"
+msgstr ""
+
+#. bcLoY
+#: 04050000.xhp
+msgctxt ""
+"04050000.xhp\n"
+"hd_id0428200810573977\n"
+"help.text"
+msgid "Same value for both"
+msgstr ""
+
+#. FAXMR
+#: 04050000.xhp
+msgctxt ""
+"04050000.xhp\n"
+"par_id0428200810573991\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enable to use the positive error values also as negative error values. You can only change the value of the \"Positive (+)\" box. That value gets copied to the \"Negative (-)\" box automatically.</ahelp>"
+msgstr ""
+
+#. QZNgb
+#: 04050000.xhp
+msgctxt ""
+"04050000.xhp\n"
+"hd_id3156396\n"
+"help.text"
+msgid "Error Indicator"
+msgstr ""
+
+#. YmcEX
+#: 04050000.xhp
+msgctxt ""
+"04050000.xhp\n"
+"par_id3150539\n"
+"help.text"
+msgid "Specifies the error indicator."
+msgstr ""
+
+#. E4UCQ
+#: 04050000.xhp
+msgctxt ""
+"04050000.xhp\n"
+"hd_id0428200810574027\n"
+"help.text"
+msgid "Positive and Negative"
+msgstr ""
+
+#. GfYAw
+#: 04050000.xhp
+msgctxt ""
+"04050000.xhp\n"
+"par_id0428200810574039\n"
+"help.text"
+msgid "<ahelp hid=\".\">Shows positive and negative error bars.</ahelp>"
+msgstr ""
+
+#. r6Cp5
+#: 04050000.xhp
+msgctxt ""
+"04050000.xhp\n"
+"hd_id0428200810574031\n"
+"help.text"
+msgid "Positive"
+msgstr ""
+
+#. FUMP7
+#: 04050000.xhp
+msgctxt ""
+"04050000.xhp\n"
+"par_id042820081057411\n"
+"help.text"
+msgid "<ahelp hid=\".\">Shows only positive error bars.</ahelp>"
+msgstr ""
+
+#. 4w2iy
+#: 04050000.xhp
+msgctxt ""
+"04050000.xhp\n"
+"hd_id0428200810574138\n"
+"help.text"
+msgid "Negative"
+msgstr ""
+
+#. TZcmS
+#: 04050000.xhp
+msgctxt ""
+"04050000.xhp\n"
+"par_id0522200809110667\n"
+"help.text"
+msgid "<ahelp hid=\".\">Shows only negative error bars.</ahelp>"
+msgstr ""
+
+#. 5TUMR
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"tit\n"
+"help.text"
+msgid "Trend Lines"
+msgstr ""
+
+#. dZSez
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"bm_id1744743\n"
+"help.text"
+msgid "<bookmark_value>calculating;regression curves</bookmark_value> <bookmark_value>regression curves in charts</bookmark_value> <bookmark_value>trend lines in charts</bookmark_value> <bookmark_value>mean value lines in charts</bookmark_value>"
+msgstr ""
+
+#. UDTw3
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"hd_id5409405\n"
+"help.text"
+msgid "<variable id=\"regression\"><link href=\"text/schart/01/04050100.xhp\">Trend Lines</link></variable>"
+msgstr ""
+
+#. JF9Gb
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id7272255\n"
+"help.text"
+msgid "<variable id=\"trendlinestext\"> <ahelp hid=\".\">Trend lines can be added to all 2D chart types except for Pie and Stock charts.</ahelp> </variable>"
+msgstr ""
+
+#. NF2z3
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id5716727\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">A linear trend line is shown.</ahelp>"
+msgstr ""
+
+#. o9Giz
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id5840021\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">A logarithmic trend line is shown.</ahelp>"
+msgstr ""
+
+#. CXJKD
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id9417096\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">An exponential trend line is shown.</ahelp>"
+msgstr ""
+
+#. J8i6Q
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id8482924\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">A power trend line is shown.</ahelp>"
+msgstr ""
+
+#. ENpRE
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id180820161052123210\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">A polynomial trend line is shown with a given degree.</ahelp>"
+msgstr ""
+
+#. 69csw
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id180820161102568315\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Degree of polynomial trend line.</ahelp>"
+msgstr ""
+
+#. pBcbu
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id180820161105546053\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">A moving average trend line is shown with a given period.</ahelp>"
+msgstr ""
+
+#. 9QFZj
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id180820161107537745\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Number of points to calculate average of moving average trend line.</ahelp>"
+msgstr ""
+
+#. 8racG
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id180820161112599880\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Name of trend line in legend.</ahelp>"
+msgstr ""
+
+#. YXXHr
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id180820161117252261\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Trend line is extrapolated for higher x-values.</ahelp>"
+msgstr ""
+
+#. LsExB
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id18082016111837138\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Trend line is extrapolated for lower x-values.</ahelp>"
+msgstr ""
+
+#. qsEYS
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id180820161124272765\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">For linear, polynomial and exponential trend lines, intercept value is forced to a given value.</ahelp>"
+msgstr ""
+
+#. Fug2F
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id180820161126064822\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Value of intercept if it is forced.</ahelp>"
+msgstr ""
+
+#. EsUHA
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id8962370\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Shows the trend line equation next to the trend line.</ahelp>"
+msgstr ""
+
+#. 6FZGw
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id6889858\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Shows the coefficient of determination next to the trend line.</ahelp>"
+msgstr ""
+
+#. RtirG
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id180820161133305870\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Name of X variable in trend line equation.</ahelp>"
+msgstr ""
+
+#. eD68W
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id180820161134155865\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Name of Y variable in trend line equation.</ahelp>"
+msgstr ""
+
+#. tpWGs
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id8398998\n"
+"help.text"
+msgid "If you insert a trend line to a chart type that uses categories, like <emph>Line</emph> or <emph>Column</emph>, then the numbers 1, 2, 3, <emph>…</emph> are used as x-values to calculate the trend line. For such charts the XY chart type might be more suitable."
+msgstr ""
+
+#. E7mkV
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id4349192\n"
+"help.text"
+msgid "To insert a trend line for a data series, first double-click the chart to enter edit mode and select the data series in the chart to which a trend line is to be created."
+msgstr ""
+
+#. VLWvK
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id801630627531175\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">Insert - Trend Line</item>, or right-click the data series to open the context menu, and choose <item type=\"menuitem\">Insert Trend Line</item>."
+msgstr ""
+
+#. osECL
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id180820161539033867\n"
+"help.text"
+msgid "Mean Value Lines are special trend lines that show the mean value. Use <item type=\"menuitem\">Insert - Mean Value Lines</item> to insert mean value lines for data series."
+msgstr ""
+
+#. B2FBY
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id9337443\n"
+"help.text"
+msgid "To delete a trend line or mean value line, click the line, then press the Del key."
+msgstr ""
+
+#. nbEcg
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id801630627733593\n"
+"help.text"
+msgid "The menu item <menuitem>Insert - Trend Line</menuitem> is only available when the chart is in edit mode. It will appear grayed out if the chart is in edit mode but no data series is selected."
+msgstr ""
+
+#. EFBBV
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id9569689\n"
+"help.text"
+msgid "The trend line has the same color as the corresponding data series. To change the line properties, select the trend line and choose <item type=\"menuitem\">Format - Format Selection - Line</item>."
+msgstr ""
+
+#. JVZCk
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id296334\n"
+"help.text"
+msgid "A trend line is shown in the legend automatically. Its name can be defined in options of the trend line."
+msgstr ""
+
+#. FAqAo
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"hd_id180820161534333508\n"
+"help.text"
+msgid "Trend Line Equation and Coefficient of Determination"
+msgstr ""
+
+#. ArYKX
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id8962065\n"
+"help.text"
+msgid "When the chart is in edit mode, %PRODUCTNAME gives you the equation of the trend line and the coefficient of determination R<sup>2</sup>, even if they are not shown: click on the trend line to see the information in the status bar."
+msgstr ""
+
+#. xHGhE
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id846888\n"
+"help.text"
+msgid "<ahelp hid=\".\">To show the trend line equation, select the trend line in the chart, right-click to open the context menu, and choose <item type=\"menuitem\">Insert Trend Line Equation</item>.</ahelp>"
+msgstr ""
+
+#. ohXGJ
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id8962066\n"
+"help.text"
+msgid "To change format of values (use less significant digits or scientific notation), select the equation in the chart, right-click to open the context menu, and choose <item type=\"menuitem\">Format Trend Line Equation - Numbers</item>."
+msgstr ""
+
+#. e957n
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id180820161627109994\n"
+"help.text"
+msgid "Default equation uses <item type=\"literal\">x</item> for abscissa variable, and <item type=\"literal\">f(x)</item> for ordinate variable. To change these names, select the trend line, choose <item type=\"menuitem\">Format - Format Selection – Type</item> and enter names in <item type=\"literal\">X Variable Name</item> and <item type=\"literal\">Y Variable Name</item> edit boxes."
+msgstr ""
+
+#. jAs3d
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id18082016163702791\n"
+"help.text"
+msgid "To show the coefficient of determination R<sup>2</sup>, select the equation in the chart, right-click to open the context menu, and choose <item type=\"menuitem\">Insert R</item><sup><item type=\"menuitem\">2</item></sup>."
+msgstr ""
+
+#. yfQY2
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id180820161637028632\n"
+"help.text"
+msgid "If intercept is forced, coefficient of determination R<sup>2</sup> is not calculated in the same way as with free intercept. R<sup>2</sup> values can not be compared with forced or free intercept."
+msgstr ""
+
+#. 47ME7
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"hd_id180820161534333509\n"
+"help.text"
+msgid "Trend Lines Curve Types"
+msgstr ""
+
+#. AB9tE
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id18082016153820777\n"
+"help.text"
+msgid "The following regression types are available:"
+msgstr ""
+
+#. FBpPx
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id180820161604098009\n"
+"help.text"
+msgid "<emph>Linear</emph> trend line: regression through equation <item type=\"literal\">y=a∙x+b</item>. Intercept <item type=\"literal\">b</item> can be forced."
+msgstr ""
+
+#. 2cKaa
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id180820161612524298\n"
+"help.text"
+msgid "<emph>Polynomial</emph> trend line: regression through equation <item type=\"literal\">y=Σ</item><sub><item type=\"literal\">i</item></sub><item type=\"literal\">(a</item><sub><item type=\"literal\">i</item></sub><item type=\"literal\">∙x</item><sup><item type=\"literal\">i</item></sup><item type=\"literal\">)</item>. Intercept <item type=\"literal\">a</item><sub><item type=\"literal\">0</item></sub> can be forced. Degree of polynomial must be given (at least 2)."
+msgstr ""
+
+#. srJXi
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id180820161612525364\n"
+"help.text"
+msgid "<emph>Logarithmic</emph> trend line: regression through equation <item type=\"literal\">y=a∙ln(x)+b</item>."
+msgstr ""
+
+#. MLE4x
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id180820161612526680\n"
+"help.text"
+msgid "<emph>Exponential</emph> trend line: regression through equation <item type=\"literal\">y=b∙exp(a∙x)</item>.This equation is equivalent to <item type=\"literal\">y=b∙m</item><sup><item type=\"literal\">x</item></sup> with <item type=\"literal\">m=exp(a)</item>. Intercept <item type=\"literal\">b</item> can be forced."
+msgstr ""
+
+#. KoRSa
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id180820161612527230\n"
+"help.text"
+msgid "<emph>Power</emph> trend line: regression through equation <item type=\"literal\">y=b∙x</item><sup><item type=\"literal\">a</item></sup>."
+msgstr ""
+
+#. fnwKu
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id180820161617342768\n"
+"help.text"
+msgid "<emph>Moving average</emph> trend line: simple moving average is calculated with the <emph>n</emph> previous y-values, <emph>n</emph> being the period. No equation is available for this trend line."
+msgstr ""
+
+#. kq2KM
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"hd_id9204077\n"
+"help.text"
+msgid "Constraints"
+msgstr ""
+
+#. Dv6wV
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id7393719\n"
+"help.text"
+msgid "The calculation of the trend line considers only data pairs with the following values:"
+msgstr ""
+
+#. F7VNE
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id7212744\n"
+"help.text"
+msgid "Logarithmic trend line: only positive x-values are considered."
+msgstr ""
+
+#. GDEmX
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id1664479\n"
+"help.text"
+msgid "Exponential trend line: only positive y-values are considered, except if all y-values are negative: regression will then follow equation <item type=\"literal\">y=-b∙exp(a∙x)</item>."
+msgstr ""
+
+#. 58RRD
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id8734702\n"
+"help.text"
+msgid "Power trend line: only positive x-values are considered; only positive y-values are considered, except if all y-values are negative: regression will then follow equation<item type=\"literal\"> y=-b∙x</item><sup><item type=\"literal\">a</item></sup>."
+msgstr ""
+
+#. XWrNF
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id181279\n"
+"help.text"
+msgid "You should transform your data accordingly; it is best to work on a copy of the original data and transform the copied data."
+msgstr ""
+
+#. xrvYT
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"hd_id180820161528021520\n"
+"help.text"
+msgid "Calculate Parameters in Calc"
+msgstr ""
+
+#. XS5FX
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id7735221\n"
+"help.text"
+msgid "You can also calculate the parameters using Calc functions as follows."
+msgstr ""
+
+#. KeyG7
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"hd_id5744193\n"
+"help.text"
+msgid "The linear regression equation"
+msgstr ""
+
+#. gvykK
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id9251991\n"
+"help.text"
+msgid "The <emph>linear regression</emph> follows the equation <item type=\"literal\">y=m*x+b</item>."
+msgstr ""
+
+#. sJhZJ
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id7951902\n"
+"help.text"
+msgid "m = SLOPE(Data_Y;Data_X)"
+msgstr ""
+
+#. ufTSt
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id6637165\n"
+"help.text"
+msgid "b = INTERCEPT(Data_Y ;Data_X)"
+msgstr ""
+
+#. MJUyE
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id7879268\n"
+"help.text"
+msgid "Calculate the coefficient of determination by"
+msgstr ""
+
+#. XdQ7G
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id9244361\n"
+"help.text"
+msgid "r<sup>2</sup> = RSQ(Data_Y;Data_X)"
+msgstr ""
+
+#. 3RFqQ
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id2083498\n"
+"help.text"
+msgid "Besides m, b and r<sup>2</sup> the array function <emph>LINEST</emph> provides additional statistics for a regression analysis."
+msgstr ""
+
+#. FQkBD
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"hd_id2538834\n"
+"help.text"
+msgid "The logarithmic regression equation"
+msgstr ""
+
+#. 4oEke
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id394299\n"
+"help.text"
+msgid "The <emph>logarithmic regression</emph> follows the equation <item type=\"literal\">y=a*ln(x)+b</item>."
+msgstr ""
+
+#. Zundq
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id2134159\n"
+"help.text"
+msgid "a = SLOPE(Data_Y;LN(Data_X))"
+msgstr ""
+
+#. vqAFr
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id5946531\n"
+"help.text"
+msgid "b = INTERCEPT(Data_Y ;LN(Data_X))"
+msgstr ""
+
+#. CfpeX
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id5649281\n"
+"help.text"
+msgid "r<sup>2</sup> = RSQ(Data_Y;LN(Data_X))"
+msgstr ""
+
+#. d372B
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"hd_id7874080\n"
+"help.text"
+msgid "The exponential regression equation"
+msgstr ""
+
+#. QEb4f
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id4679097\n"
+"help.text"
+msgid "For exponential trend lines a transformation to a linear model takes place. The optimal curve fitting is related to the linear model and the results are interpreted accordingly."
+msgstr ""
+
+#. LYGaX
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id9112216\n"
+"help.text"
+msgid "The exponential regression follows the equation <item type=\"literal\">y=b*exp(a*x)</item> or <item type=\"literal\">y=b*m</item><sup><item type=\"literal\">x</item></sup>, which is transformed to <item type=\"literal\">ln(y)=ln(b)+a*x</item> or <item type=\"literal\">ln(y)=ln(b)+ln(m)*x</item> respectively."
+msgstr ""
+
+#. NaM55
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id4416638\n"
+"help.text"
+msgid "a = SLOPE(LN(Data_Y);Data_X)"
+msgstr ""
+
+#. DNTZj
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id1039155\n"
+"help.text"
+msgid "The variables for the second variation are calculated as follows:"
+msgstr ""
+
+#. NUado
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id7184057\n"
+"help.text"
+msgid "m = EXP(SLOPE(LN(Data_Y);Data_X))"
+msgstr ""
+
+#. SPjRP
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id786767\n"
+"help.text"
+msgid "b = EXP(INTERCEPT(LN(Data_Y);Data_X))"
+msgstr ""
+
+#. 4YKvd
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id7127292\n"
+"help.text"
+msgid "Calculate the coefficient of determination by"
+msgstr ""
+
+#. wrZLx
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id5437177\n"
+"help.text"
+msgid "r<sup>2</sup> = RSQ(LN(Data_Y);Data_X)"
+msgstr ""
+
+#. 5xosY
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id6946317\n"
+"help.text"
+msgid "Besides m, b and r<sup>2</sup> the array function <emph>LOGEST</emph> provides additional statistics for a regression analysis."
+msgstr ""
+
+#. GKeKk
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"hd_id6349375\n"
+"help.text"
+msgid "The power regression equation"
+msgstr ""
+
+#. CobWD
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id1857661\n"
+"help.text"
+msgid "For <emph>power regression</emph> curves a transformation to a linear model takes place. The power regression follows the equation <item type=\"literal\">y=b*x</item><sup><item type=\"literal\">a</item></sup>, which is transformed to <item type=\"literal\">ln(y)=ln(b)+a*ln(x)</item>."
+msgstr ""
+
+#. ETDqd
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id8517105\n"
+"help.text"
+msgid "a = SLOPE(LN(Data_Y);LN(Data_X))"
+msgstr ""
+
+#. CYELA
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id9827265\n"
+"help.text"
+msgid "b = EXP(INTERCEPT(LN(Data_Y);LN(Data_X))"
+msgstr ""
+
+#. NFVfw
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id2357249\n"
+"help.text"
+msgid "r<sup>2</sup> = RSQ(LN(Data_Y);LN(Data_X))"
+msgstr ""
+
+#. CGBsE
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"hd_id7907040\n"
+"help.text"
+msgid "The polynomial regression equation"
+msgstr ""
+
+#. qAyRm
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id8918729\n"
+"help.text"
+msgid "For <emph>polynomial regression</emph> curves a transformation to a linear model takes place."
+msgstr ""
+
+#. DatEp
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id33875\n"
+"help.text"
+msgid "Create a table with the columns x, x<sup>2</sup>, x<sup>3</sup>, … , x<sup>n</sup>, y up to the desired degree n."
+msgstr ""
+
+#. wJrKC
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id8720053\n"
+"help.text"
+msgid "Use the formula <item type=\"literal\">=LINEST(Data_Y,Data_X)</item> with the complete range x to x<sup>n</sup> (without headings) as Data_X."
+msgstr ""
+
+#. 3zm3C
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id5068514\n"
+"help.text"
+msgid "The first row of the <emph>LINEST</emph> output contains the coefficients of the regression polynomial, with the coefficient of x<sup>n</sup> at the leftmost position."
+msgstr ""
+
+#. pGA6a
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id8202154\n"
+"help.text"
+msgid "The first element of the third row of the <emph>LINEST</emph> output is the value of r<sup>2</sup>. See the <link href=\"text/scalc/01/04060107.xhp#Section8\"><emph>LINEST</emph></link> function for details on proper use and an explanation of the other output parameters."
+msgstr ""
+
+#. RU3Fv
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id4562211\n"
+"help.text"
+msgid "<link href=\"text/schart/01/04050000.xhp\">X/Y Error Bars</link>"
+msgstr ""
+
+#. KL73b
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id4562212\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060107.xhp#Section8\">LINEST</link> function"
+msgstr ""
+
+#. hxCkj
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id4562216\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060107.xhp#Section7\">LOGEST</link> function"
+msgstr ""
+
+#. 9otAR
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id4562213\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060185.xhp#slope\">SLOPE</link> function"
+msgstr ""
+
+#. CGFab
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id4562214\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060181.xhp#intercept\">INTERCEPT</link> function"
+msgstr ""
+
+#. PEhEy
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id4562215\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060181.xhp#rsq\">RSQ</link> function"
+msgstr ""
+
+#. CUcsc
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Options"
+msgstr ""
+
+#. zEuu4
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"bm_id3149400\n"
+"help.text"
+msgid "<bookmark_value>aligning; 2D charts</bookmark_value> <bookmark_value>charts; aligning</bookmark_value> <bookmark_value>pie charts;options</bookmark_value>"
+msgstr ""
+
+#. VZy93
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"hd_id3149400\n"
+"help.text"
+msgid "<link href=\"text/schart/01/04060000.xhp\" name=\"Options\">Options</link>"
+msgstr ""
+
+#. FFqBA
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id3155067\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 ""
+
+#. tAu88
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"hd_id3150043\n"
+"help.text"
+msgid "Align data series to:"
+msgstr ""
+
+#. 2H5Bb
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id3145228\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 ""
+
+#. mV2z2
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"hd_id3147346\n"
+"help.text"
+msgid "Primary Y axis"
+msgstr ""
+
+#. WNkLE
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id3147005\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 ""
+
+#. opEF3
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"hd_id3143221\n"
+"help.text"
+msgid "Secondary Y axis"
+msgstr ""
+
+#. uFYk8
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id3154656\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 ""
+
+#. FFa8c
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"hd_id3166423\n"
+"help.text"
+msgid "Settings"
+msgstr ""
+
+#. NSFYJ
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id3150365\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 ""
+
+#. w8uog
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"hd_id3145584\n"
+"help.text"
+msgid "Spacing"
+msgstr ""
+
+#. ayXg8
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id3155376\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 ""
+
+#. o9k6R
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"hd_id3145384\n"
+"help.text"
+msgid "Overlap"
+msgstr ""
+
+#. YsvUy
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id3156447\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 ""
+
+#. 4wQHD
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"hd_id3153305\n"
+"help.text"
+msgid "Connection Lines"
+msgstr ""
+
+#. CF4RX
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id3148868\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 ""
+
+#. xX6CC
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"hd_id9842219\n"
+"help.text"
+msgid "Show bars side by side"
+msgstr ""
+
+#. T7xnJ
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id9800103\n"
+"help.text"
+msgid "If two axes are shown in a bar chart, and some data series are attached to the first axis, while some other data series are attached to the second axis, then both sets of data series are shown independently, overlapping each other."
+msgstr ""
+
+#. oLCGt
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id2144535\n"
+"help.text"
+msgid "As a result, bars attached to the first y-axis are partly or completely hidden by bars attached to the second y-axis. To avoid this, enable the option to display bars side by side. <ahelp hid=\".\">The bars from different data series are shown as if they were attached only to one axis.</ahelp>"
+msgstr ""
+
+#. u8zZt
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"hd_id24414\n"
+"help.text"
+msgid "Clockwise direction"
+msgstr ""
+
+#. Mnouh
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id2527237\n"
+"help.text"
+msgid "Available for pie and donut charts. <ahelp hid=\".\">The default direction in which the pieces of a pie chart are ordered is counterclockwise. Enable the <emph>Clockwise direction</emph> checkbox to draw the pieces in opposite direction.</ahelp>"
+msgstr ""
+
+#. BiqZr
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"hd_id401013\n"
+"help.text"
+msgid "Starting angle"
+msgstr ""
+
+#. tGbuE
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id761131\n"
+"help.text"
+msgid "<ahelp hid=\".\">Drag the small dot along the circle or click any position on the circle to set the starting angle of a pie or donut chart. The starting angle is the mathematical angle position where the first piece is drawn. The value of 90 degrees draws the first piece at the 12 o'clock position. A value of 0 degrees starts at the 3 o'clock position.</ahelp>"
+msgstr ""
+
+#. YFRMd
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id553910\n"
+"help.text"
+msgid "In 3D pie and donut charts that were created with older versions of the software, the starting angle is 0 degrees instead of 90 degrees. For old and new 2D charts the default starting angle is 90 degrees."
+msgstr ""
+
+#. 9xzEe
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id1414838\n"
+"help.text"
+msgid "When you change the starting angle or the direction, only current versions of the software show the changed values. Older versions of the software display the same document using the default values: Always counterclockwise direction and a starting value of 90 degrees (2D pie charts) or 0 degrees (3D pie charts)."
+msgstr ""
+
+#. hvgvC
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"hd_id3179723\n"
+"help.text"
+msgid "Degrees"
+msgstr ""
+
+#. asdVC
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id2164067\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter the starting angle between 0 and 359 degrees. You can also click the arrows to change the displayed value.</ahelp>"
+msgstr ""
+
+#. 9Dfjk
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"hd_id0305200910524613\n"
+"help.text"
+msgid "Plot missing values"
+msgstr ""
+
+#. RfNzm
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id0305200910524650\n"
+"help.text"
+msgid "Sometimes values are missing in a data series that is shown in a chart. You can select from different options how to plot the missing values. The options are available for some chart types only."
+msgstr ""
+
+#. iFsLL
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"hd_id0305200910524823\n"
+"help.text"
+msgid "Leave gap"
+msgstr ""
+
+#. A6KyD
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id0305200910524811\n"
+"help.text"
+msgid "<ahelp hid=\".\">For a missing value, no data will be shown. This is the default for chart types Column, Bar, Line, Net.</ahelp>"
+msgstr ""
+
+#. uManw
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"hd_id0305200910524811\n"
+"help.text"
+msgid "Assume zero"
+msgstr ""
+
+#. gz7cb
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id030520091052489\n"
+"help.text"
+msgid "<ahelp hid=\".\">For a missing value, the y-value will be shown as zero. This is the default for chart type Area.</ahelp>"
+msgstr ""
+
+#. rns6H
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"hd_id0305200910524837\n"
+"help.text"
+msgid "Continue line"
+msgstr ""
+
+#. A7Fse
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id0305200910524938\n"
+"help.text"
+msgid "<ahelp hid=\".\">For a missing value, the interpolation from the neighbor values will be shown. This is the default for chart type XY.</ahelp>"
+msgstr ""
+
+#. GBLUU
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"hd_id0305200910524937\n"
+"help.text"
+msgid "Include values from hidden cells"
+msgstr ""
+
+#. CYWe2
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id030520091052494\n"
+"help.text"
+msgid "<ahelp hid=\".\">Check to also show values of currently hidden cells within the source cell range.</ahelp>"
+msgstr ""
+
+#. QUETc
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"hd_id0305200910524938\n"
+"help.text"
+msgid "Hide legend entry"
+msgstr ""
+
+#. roeRi
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id030520091052495\n"
+"help.text"
+msgid "<ahelp hid=\".\">Do not show legend entry for the selected data series or data point.</ahelp>"
+msgstr ""
+
+#. WWrcn
+#: 04070000.xhp
+msgctxt ""
+"04070000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Grids"
+msgstr ""
+
+#. 7Qu9B
+#: 04070000.xhp
+msgctxt ""
+"04070000.xhp\n"
+"bm_id3147434\n"
+"help.text"
+msgid "<bookmark_value>axes; inserting grids</bookmark_value> <bookmark_value>grids; inserting in charts</bookmark_value>"
+msgstr ""
+
+#. xYnZh
+#: 04070000.xhp
+msgctxt ""
+"04070000.xhp\n"
+"hd_id3147434\n"
+"help.text"
+msgid "Grids"
+msgstr ""
+
+#. BPAAF
+#: 04070000.xhp
+msgctxt ""
+"04070000.xhp\n"
+"par_id3146974\n"
+"help.text"
+msgid "<variable id=\"gitter\"><ahelp hid=\".\">You can divide the axes into sections by assigning gridlines to them. This allows you to get a better overview of the chart, especially if you are working with large charts.</ahelp> </variable> The Y axis major grid is activated by default."
+msgstr ""
+
+#. EaERh
+#: 04070000.xhp
+msgctxt ""
+"04070000.xhp\n"
+"hd_id3156286\n"
+"help.text"
+msgid "Major grids"
+msgstr ""
+
+#. jMxC8
+#: 04070000.xhp
+msgctxt ""
+"04070000.xhp\n"
+"par_id3154511\n"
+"help.text"
+msgid "Defines the axis to be set as the major grid."
+msgstr ""
+
+#. YFW67
+#: 04070000.xhp
+msgctxt ""
+"04070000.xhp\n"
+"hd_id3149400\n"
+"help.text"
+msgid "X axis"
+msgstr ""
+
+#. Sy8iQ
+#: 04070000.xhp
+msgctxt ""
+"04070000.xhp\n"
+"par_id3150749\n"
+"help.text"
+msgid "<ahelp hid=\"modules/schart/ui/insertgriddlg/primaryX\">Adds gridlines to the X axis of the chart.</ahelp>"
+msgstr ""
+
+#. jw52A
+#: 04070000.xhp
+msgctxt ""
+"04070000.xhp\n"
+"par_id3154754\n"
+"help.text"
+msgid "<variable id=\"sytextxgitter\"><ahelp hid=\".uno:ToggleGridVertical\">The <emph>Vertical Grids</emph> icon on the <emph>Formatting</emph> bar toggles the visibility of the grid display for the X axis.</ahelp></variable> It switches between the three states: no grid, major grid and both major and minor grids displayed. The change will affect check boxes in <emph>Insert - Grids</emph>."
+msgstr ""
+
+#. b5caj
+#: 04070000.xhp
+msgctxt ""
+"04070000.xhp\n"
+"hd_id3145228\n"
+"help.text"
+msgid "Y axis"
+msgstr ""
+
+#. xxgzQ
+#: 04070000.xhp
+msgctxt ""
+"04070000.xhp\n"
+"par_id3147004\n"
+"help.text"
+msgid "<ahelp hid=\"modules/schart/ui/insertgriddlg/primaryY\">Adds gridlines to the Y axis of the chart.</ahelp>"
+msgstr ""
+
+#. wKyUB
+#: 04070000.xhp
+msgctxt ""
+"04070000.xhp\n"
+"par_id3150344\n"
+"help.text"
+msgid "<variable id=\"sytextygitter\"><ahelp hid=\".uno:ToggleGridHorizontal\">The <emph>Horizontal Grids</emph> icon on the <emph>Formatting</emph> bar toggles the visibility of the grid display for the Y axis.</ahelp></variable> It switches between the three states: no grid, major grid and both major and minor grids displayed. The change will affect check boxes in <emph>Insert - Grids</emph>."
+msgstr ""
+
+#. LnVn3
+#: 04070000.xhp
+msgctxt ""
+"04070000.xhp\n"
+"hd_id3166430\n"
+"help.text"
+msgid "Z axis"
+msgstr ""
+
+#. 4WjWH
+#: 04070000.xhp
+msgctxt ""
+"04070000.xhp\n"
+"par_id3155378\n"
+"help.text"
+msgid "<ahelp hid=\"modules/schart/ui/insertgriddlg/primaryZ\">Adds gridlines to the Z axis of the chart.</ahelp> This option is only available if you're working with 3D charts."
+msgstr ""
+
+#. ttEwy
+#: 04070000.xhp
+msgctxt ""
+"04070000.xhp\n"
+"hd_id3146978\n"
+"help.text"
+msgid "Minor grids"
+msgstr ""
+
+#. XwARg
+#: 04070000.xhp
+msgctxt ""
+"04070000.xhp\n"
+"par_id3156449\n"
+"help.text"
+msgid "Use this area to assign a minor grid for each axis. Assigning minor grids to the axis reduces the distance between the major grids."
+msgstr ""
+
+#. 9qctc
+#: 04070000.xhp
+msgctxt ""
+"04070000.xhp\n"
+"hd_id3153308\n"
+"help.text"
+msgid "X axis"
+msgstr ""
+
+#. Q3e6A
+#: 04070000.xhp
+msgctxt ""
+"04070000.xhp\n"
+"par_id3148704\n"
+"help.text"
+msgid "<ahelp hid=\"modules/schart/ui/insertgriddlg/secondaryX\">Adds gridlines that subdivide the X axis into smaller sections.</ahelp>"
+msgstr ""
+
+#. UVBEm
+#: 04070000.xhp
+msgctxt ""
+"04070000.xhp\n"
+"hd_id3153917\n"
+"help.text"
+msgid "Y axis"
+msgstr ""
+
+#. 2hkA9
+#: 04070000.xhp
+msgctxt ""
+"04070000.xhp\n"
+"par_id3154536\n"
+"help.text"
+msgid "<ahelp hid=\"modules/schart/ui/insertgriddlg/secondaryY\">Adds gridlines that subdivide the Y axis into smaller sections.</ahelp>"
+msgstr ""
+
+#. mDcfy
+#: 04070000.xhp
+msgctxt ""
+"04070000.xhp\n"
+"hd_id3148607\n"
+"help.text"
+msgid "Z axis"
+msgstr ""
+
+#. wnQmC
+#: 04070000.xhp
+msgctxt ""
+"04070000.xhp\n"
+"par_id3153247\n"
+"help.text"
+msgid "<ahelp hid=\"modules/schart/ui/insertgriddlg/secondaryZ\">Adds gridlines that subdivide the Z axis into smaller sections.</ahelp> This option is only available if you're working with 3D charts."
+msgstr ""
+
+#. GrPzW
+#: 05010000.xhp
+msgctxt ""
+"05010000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Format Selection"
+msgstr ""
+
+#. JGKU8
+#: 05010000.xhp
+msgctxt ""
+"05010000.xhp\n"
+"bm_id3149666\n"
+"help.text"
+msgid "<bookmark_value>objects;properties of charts</bookmark_value><bookmark_value>charts; properties</bookmark_value><bookmark_value>properties;charts</bookmark_value>"
+msgstr ""
+
+#. a9uEw
+#: 05010000.xhp
+msgctxt ""
+"05010000.xhp\n"
+"hd_id3149666\n"
+"help.text"
+msgid "Format Selection"
+msgstr ""
+
+#. mefpJ
+#: 05010000.xhp
+msgctxt ""
+"05010000.xhp\n"
+"par_id3156284\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 ""
+
+#. vHgCk
+#: 05010000.xhp
+msgctxt ""
+"05010000.xhp\n"
+"hd_id3153418\n"
+"help.text"
+msgid "<link href=\"text/schart/01/05060000.xhp\" name=\"Chart Wall\">Chart Wall</link>"
+msgstr ""
+
+#. QqxBP
+#: 05010000.xhp
+msgctxt ""
+"05010000.xhp\n"
+"hd_id3155766\n"
+"help.text"
+msgid "<link href=\"text/schart/01/05080000.xhp\" name=\"Chart Area\">Chart Area</link>"
+msgstr ""
+
+#. 2V4zT
+#: 05010000.xhp
+msgctxt ""
+"05010000.xhp\n"
+"hd_id3154255\n"
+"help.text"
+msgid "<link href=\"text/schart/01/05070000.xhp\" name=\"Chart Floor\">Chart Floor</link>"
+msgstr ""
+
+#. bAPbZ
+#: 05010000.xhp
+msgctxt ""
+"05010000.xhp\n"
+"hd_id3146313\n"
+"help.text"
+msgid "<link href=\"text/schart/01/05020100.xhp\" name=\"Title\">Title</link>"
+msgstr ""
+
+#. HDCGU
+#: 05010000.xhp
+msgctxt ""
+"05010000.xhp\n"
+"hd_id3150297\n"
+"help.text"
+msgid "<link href=\"text/schart/01/05030000.xhp\" name=\"Legend\">Legend</link>"
+msgstr ""
+
+#. AFjzr
+#: 05010000.xhp
+msgctxt ""
+"05010000.xhp\n"
+"hd_id3143219\n"
+"help.text"
+msgid "<link href=\"text/schart/01/05040100.xhp\" name=\"X Axis\">X Axis</link>"
+msgstr ""
+
+#. PBGAy
+#: 05010000.xhp
+msgctxt ""
+"05010000.xhp\n"
+"hd_id3150207\n"
+"help.text"
+msgid "<link href=\"text/schart/01/05040200.xhp\" name=\"Y Axis\">Y Axis</link>"
+msgstr ""
+
+#. fda89
+#: 05010000.xhp
+msgctxt ""
+"05010000.xhp\n"
+"hd_id3166432\n"
+"help.text"
+msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"Grid\">Grid</link>"
+msgstr ""
+
+#. J6GAJ
+#: 05010100.xhp
+msgctxt ""
+"05010100.xhp\n"
+"tit\n"
+"help.text"
+msgid "Data Point"
+msgstr ""
+
+#. 23fqY
+#: 05010100.xhp
+msgctxt ""
+"05010100.xhp\n"
+"hd_id3153768\n"
+"help.text"
+msgid "<link href=\"text/schart/01/05010100.xhp\" name=\"Data Point\">Data Point</link>"
+msgstr ""
+
+#. GP7Gq
+#: 05010100.xhp
+msgctxt ""
+"05010100.xhp\n"
+"par_id3152577\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 ""
+
+#. QGeL3
+#: 05010100.xhp
+msgctxt ""
+"05010100.xhp\n"
+"par_id3149121\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 ""
+
+#. VFmBM
+#: 05010200.xhp
+msgctxt ""
+"05010200.xhp\n"
+"tit\n"
+"help.text"
+msgid "Data Series"
+msgstr ""
+
+#. XqZBr
+#: 05010200.xhp
+msgctxt ""
+"05010200.xhp\n"
+"hd_id3150449\n"
+"help.text"
+msgid "<link href=\"text/schart/01/05010200.xhp\" name=\"Data Series\">Data Series</link>"
+msgstr ""
+
+#. gW2W2
+#: 05010200.xhp
+msgctxt ""
+"05010200.xhp\n"
+"par_id3145750\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 ""
+
+#. 9jEEq
+#: 05010200.xhp
+msgctxt ""
+"05010200.xhp\n"
+"par_id3154015\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 ""
+
+#. ncg3c
+#: 05010200.xhp
+msgctxt ""
+"05010200.xhp\n"
+"hd_id3146916\n"
+"help.text"
+msgid "<link href=\"text/schart/01/04050000.xhp\" name=\"Y Error Bars\">Y Error Bars</link>"
+msgstr ""
+
+#. VsfnB
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Title"
+msgstr ""
+
+#. cuNLY
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"bm_id3150791\n"
+"help.text"
+msgid "<bookmark_value>titles; formatting charts</bookmark_value><bookmark_value>formatting; chart titles</bookmark_value>"
+msgstr ""
+
+#. Jfh4e
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"hd_id3150791\n"
+"help.text"
+msgid "<link href=\"text/schart/01/05020000.xhp\" name=\"Title\">Title</link>"
+msgstr ""
+
+#. pj2hY
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"par_id3125863\n"
+"help.text"
+msgid "The<emph> Title </emph>menu command opens a submenu for editing the properties of the titles in the chart."
+msgstr ""
+
+#. rXXck
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"hd_id3155414\n"
+"help.text"
+msgid "<link href=\"text/schart/01/05020100.xhp\" name=\"Main title\">Main title</link>"
+msgstr ""
+
+#. SiCVe
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"hd_id3156441\n"
+"help.text"
+msgid "<link href=\"text/schart/01/05020100.xhp\" name=\"Subtitle\">Subtitle</link>"
+msgstr ""
+
+#. LiMC5
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"hd_id3151073\n"
+"help.text"
+msgid "<link href=\"text/schart/01/05020100.xhp\" name=\"X-axis title\">X-axis title</link>"
+msgstr ""
+
+#. fZFZC
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"hd_id3154732\n"
+"help.text"
+msgid "<link href=\"text/schart/01/05020200.xhp\" name=\"Y-axis title\">Y-axis title</link>"
+msgstr ""
+
+#. dMUSA
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"hd_id3154017\n"
+"help.text"
+msgid "<link href=\"text/schart/01/05020100.xhp\" name=\"Z-axis title\">Z-axis title</link>"
+msgstr ""
+
+#. L4bi3
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"hd_id3153711\n"
+"help.text"
+msgid "<link href=\"text/schart/01/05020200.xhp\" name=\"All titles\">All titles</link>"
+msgstr ""
+
+#. Mr6ew
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"tit\n"
+"help.text"
+msgid "Title"
+msgstr ""