summaryrefslogtreecommitdiff
path: root/autodoc/source/ary/idl/i_service.cxx
blob: 14eb20a1096d6c74242e6db341446dd9fc8a3d6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
/*************************************************************************
 *
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * Copyright 2000, 2010 Oracle and/or its affiliates.
 *
 * OpenOffice.org - a multi-platform office productivity suite
 *
 * This file is part of OpenOffice.org.
 *
 * OpenOffice.org is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License version 3
 * only, as published by the Free Software Foundation.
 *
 * OpenOffice.org is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License version 3 for more details
 * (a copy is included in the LICENSE file that accompanied this code).
 *
 * You should have received a copy of the GNU Lesser General Public License
 * version 3 along with OpenOffice.org.  If not, see
 * <http://www.openoffice.org/license.html>
 * for a copy of the LGPLv3 License.
 *
 ************************************************************************/

#include <precomp.h>
#include <ary/idl/i_service.hxx>


// NOT FULLY DECLARED SERVICES
#include <cosv/tpl/processor.hxx>
#include <ary/idl/ik_service.hxx>
#include <ary/doc/d_oldidldocu.hxx>
#include <sci_impl.hxx>
#include "i2s_calculator.hxx"


namespace ary
{
namespace idl
{

Service::Service( const String &      i_sName,
                  Ce_id               i_nOwner )
    :   sName(i_sName),
        nOwner(i_nOwner),
        aIncludedServices(),
        aSupportedInterfaces(),
        aProperties()
{
}

Service::~Service()
{
    for ( RelationList::iterator it = aIncludedServices.begin();
          it != aIncludedServices.end();
          ++it )
    {
        delete (*it).Info();
    }

    for ( RelationList::iterator it = aSupportedInterfaces.begin();
          it != aSupportedInterfaces.end();
          ++it )
    {
        delete (*it).Info();
    }
}

void
Service::Get_SupportedInterfaces( Dyn_StdConstIterator<CommentedRelation> & o_rResult ) const
{
    o_rResult = new SCI_Vector<CommentedRelation>(aSupportedInterfaces);
}

void
Service::Get_IncludedServices( Dyn_StdConstIterator<CommentedRelation> & o_rResult ) const
{
    o_rResult = new SCI_Vector<CommentedRelation>(aIncludedServices);
}

void
Service::do_Accept( csv::ProcessorIfc & io_processor ) const
{
    csv::CheckedCall(io_processor, *this);
}

ClassId
Service::get_AryClass() const
{
    return class_id;
}

const String &
Service::inq_LocalName() const
{
    return sName;
}

Ce_id
Service::inq_NameRoom() const
{
    return nOwner;
}

Ce_id
Service::inq_Owner() const
{
    return nOwner;
}

E_SightLevel
Service::inq_SightLevel() const
{
    return sl_File;
}


namespace ifc_service
{

inline const Service &
service_cast( const CodeEntity &  i_ce )
{
    csv_assert( i_ce.AryClass() == Service::class_id );
    return static_cast< const Service& >(i_ce);
}

void
attr::Get_IncludedServices( Dyn_StdConstIterator<CommentedRelation> & o_result,
                            const CodeEntity &                        i_ce )
{
    o_result = new SCI_Vector<CommentedRelation>( service_cast(i_ce).aIncludedServices );
}

void
attr::Get_ExportedInterfaces( Dyn_StdConstIterator<CommentedRelation> & o_result,
                              const CodeEntity &                            i_ce )
{
    o_result = new SCI_Vector<CommentedRelation>( service_cast(i_ce).aSupportedInterfaces );
}

void
attr::Get_Properties( Dyn_CeIterator &    o_result,
                      const CodeEntity &  i_ce )
{
    o_result = new SCI_Vector<Ce_id>( service_cast(i_ce).aProperties );
}

void
xref::Get_IncludingServices( Dyn_CeIterator &    o_result,
                             const CodeEntity &  i_ce )
{
    o_result = new SCI_Vector<Ce_id>(i_ce.Secondaries().List(service_2s_IncludingServices));
}

void
xref::Get_InstantiatingSingletons( Dyn_CeIterator &    o_result,
                                   const CodeEntity &  i_ce )
{
    o_result = new SCI_Vector<Ce_id>(i_ce.Secondaries().List(service_2s_InstantiatingSingletons));
}


} // namespace ifc_service


}   //  namespace   idl
}   //  namespace   ary
/uiconfig/ui.po?h=libreoffice-6-2-3&id=47af5d9707cf34a8f7f9507a62c2dd03e56dbfa9'>source/bg/svtools/uiconfig/ui.po11
-rw-r--r--source/bg/svx/source/dialog.po4
-rw-r--r--source/bg/svx/source/tbxctrls.po10
-rw-r--r--source/bg/svx/uiconfig/ui.po13
-rw-r--r--source/bg/sw/source/ui/utlui.po6
-rw-r--r--source/bg/sw/uiconfig/swriter/ui.po11
-rw-r--r--source/bg/swext/mediawiki/help.po8
-rw-r--r--source/bg/vcl/source/src.po22
-rw-r--r--source/bg/vcl/uiconfig/ui.po18
-rw-r--r--source/bg/wizards/source/formwizard.po10
-rw-r--r--source/bg/xmlsecurity/uiconfig/ui.po84
94 files changed, 214114 insertions, 215436 deletions
diff --git a/source/bg/android/sdremote/res/values.po b/source/bg/android/sdremote/res/values.po
index 78cb5e92708..785478e2769 100644
--- a/source/bg/android/sdremote/res/values.po
+++ b/source/bg/android/sdremote/res/values.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2013-03-25 22:21+0000\n"
-"Last-Translator: mbalabanov <m.balabanov@gmail.com>\n"
+"POT-Creation-Date: 2013-05-28 18:08+0200\n"
+"PO-Revision-Date: 2013-05-31 11:10+0000\n"
+"Last-Translator: Hristo <h.hristov@icobgr.info>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1364250111.0\n"
+"X-POOTLE-MTIME: 1369998642.0\n"
#: strings.xml
msgctxt ""
@@ -70,7 +70,7 @@ msgctxt ""
"reconnect\n"
"string.text"
msgid "Reconnect..."
-msgstr ""
+msgstr "Свързване наново..."
#: strings.xml
msgctxt ""
@@ -151,8 +151,8 @@ msgctxt ""
"string.text"
msgid ""
"#1 Verify Impress is running \n"
-"#2 For Bluetooth user, enable \"Preference\"-\"LibreOffice Impress\"-\"General\"-\"Enable remote control\"\n"
-"#3 For WiFi user, tick \"Preferece\"-\"LibreOffice\"-\"Advanced\"-\"Enable Experimental Features\" \n"
+"#2 For Bluetooth user, enable \"Preferences\"-\"LibreOffice Impress\"-\"General\"-\"Enable remote control\"\n"
+"#3 For WiFi user, tick \"Preferences\"-\"LibreOffice\"-\"Advanced\"-\"Enable Experimental Features\" \n"
" "
msgstr ""
@@ -448,7 +448,7 @@ msgctxt ""
"reconnect_description2\n"
"string.text"
msgid "Please try to reconnect"
-msgstr ""
+msgstr "Моля, опитайте да се свържете повторно"
#: strings.xml
msgctxt ""
@@ -456,8 +456,8 @@ msgctxt ""
"wifiAlertMsg\n"
"string.text"
msgid ""
-"This is still an experimental feature. You need to \"enable experimental features\" in \"Preference\"-\"LibreOffice\"-\"Advanced\" on your computer. \n"
-"The use over Bluetooth is recommanded."
+"This is still an experimental feature. You need to \"enable experimental features\" in \"Preferences\"-\"LibreOffice\"-\"Advanced\" on your computer. \n"
+"The use over Bluetooth is recommended."
msgstr ""
#: strings.xml
@@ -466,4 +466,4 @@ msgctxt ""
"wrong_time_format\n"
"string.text"
msgid "You have entered wrong time format"
-msgstr ""
+msgstr "Въвели сте погрешен формат за време"
diff --git a/source/bg/chart2/source/controller/dialogs.po b/source/bg/chart2/source/controller/dialogs.po
index fc3de6aced8..81954be2207 100644
--- a/source/bg/chart2/source/controller/dialogs.po
+++ b/source/bg/chart2/source/controller/dialogs.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2012-11-18 16:10+0000\n"
-"Last-Translator: Hristo <h.hristov@icobgr.info>\n"
+"PO-Revision-Date: 2013-05-31 11:02+0000\n"
+"Last-Translator: mbalabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1353255006.0\n"
+"X-POOTLE-MTIME: 1369998128.0\n"
#: Strings.src
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"STR_DLG_STEPPED_LINE_PROPERTIES\n"
"string.text"
msgid "Stepped Lines"
-msgstr ""
+msgstr "Стъпаловидни линии"
#: Strings.src
msgctxt ""
@@ -1106,7 +1106,7 @@ msgctxt ""
"STR_LINETYPE_STRAIGHT\n"
"string.text"
msgid "Straight"
-msgstr ""
+msgstr "Права"
#: Strings_AdditionalControls.src
msgctxt ""
@@ -1114,7 +1114,7 @@ msgctxt ""
"STR_LINETYPE_SMOOTH\n"
"string.text"
msgid "Smooth"
-msgstr "Изглаждане"
+msgstr "Гладка"
#: Strings_AdditionalControls.src
msgctxt ""
@@ -1122,7 +1122,7 @@ msgctxt ""
"STR_LINETYPE_STEPPED\n"
"string.text"
msgid "Stepped"
-msgstr ""
+msgstr "Стъпаловидна"
#: Strings_ChartTypes.src
msgctxt ""
diff --git a/source/bg/chart2/uiconfig/ui.po b/source/bg/chart2/uiconfig/ui.po
index 87955af7696..7dd7c2fc549 100644
--- a/source/bg/chart2/uiconfig/ui.po
+++ b/source/bg/chart2/uiconfig/ui.po
@@ -4,15 +4,17 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"PO-Revision-Date: 2013-05-31 11:07+0000\n"
+"Last-Translator: mbalabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-POOTLE-MTIME: 1369998447.0\n"
#: smoothlinesdlg.ui
msgctxt ""
@@ -21,7 +23,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Smooth Lines"
-msgstr ""
+msgstr "Гладки линии"
#: smoothlinesdlg.ui
msgctxt ""
@@ -30,7 +32,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Line _Type:"
-msgstr ""
+msgstr "_Тип линия:"
#: smoothlinesdlg.ui
msgctxt ""
@@ -39,7 +41,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Cubic spline"
-msgstr ""
+msgstr "Кубичен сплайн"
#: smoothlinesdlg.ui
msgctxt ""
@@ -48,7 +50,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "B-spline"
-msgstr ""
+msgstr "B-сплайн"
#: smoothlinesdlg.ui
msgctxt ""
@@ -57,7 +59,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Resolution:"
-msgstr ""
+msgstr "_Разделителна способност:"
#: smoothlinesdlg.ui
msgctxt ""
@@ -66,7 +68,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Degree of polynomials:"
-msgstr ""
+msgstr "С_тепен на полиномите:"
#: smoothlinesdlg.ui
msgctxt ""
@@ -75,7 +77,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Cubic Spline"
-msgstr ""
+msgstr "Кубичен сплайн"
#: smoothlinesdlg.ui
msgctxt ""
@@ -84,7 +86,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "B-Spline"
-msgstr ""
+msgstr "B-сплайн"
#: steppedlinesdlg.ui
msgctxt ""
@@ -93,7 +95,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Choose the type of stepping:"
-msgstr ""
+msgstr "Изберете вида на стъпката:"
#: steppedlinesdlg.ui
msgctxt ""
@@ -102,7 +104,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Start with horizontal line"
-msgstr ""
+msgstr "За_почва с хоризонтална линия"
#: steppedlinesdlg.ui
msgctxt ""
@@ -111,7 +113,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Step at the _horizontal mean"
-msgstr ""
+msgstr "Стъпка в _хоризонталното средно"
#: steppedlinesdlg.ui
msgctxt ""
@@ -120,7 +122,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_End with horizontal line"
-msgstr ""
+msgstr "За_вършва с хоризонтална линия"
#: steppedlinesdlg.ui
msgctxt ""
@@ -129,4 +131,4 @@ msgctxt ""
"label\n"
"string.text"
msgid "Step to the _vertical mean"
-msgstr ""
+msgstr "Стъпка към _вертикалното средно"
diff --git a/source/bg/cui/source/customize.po b/source/bg/cui/source/customize.po
index d4456b55274..914cfc638ca 100644
--- a/source/bg/cui/source/customize.po
+++ b/source/bg/cui/source/customize.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2012-11-23 16:40+0000\n"
-"Last-Translator: Hristo <h.hristov@icobgr.info>\n"
+"PO-Revision-Date: 2013-05-31 08:45+0000\n"
+"Last-Translator: mbalabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1353688841.0\n"
+"X-POOTLE-MTIME: 1369989958.0\n"
#: acccfg.src
msgctxt ""
@@ -131,7 +131,7 @@ msgctxt ""
"STR_FILTERNAME_CFG\n"
"string.text"
msgid "Configuration (*.cfg)"
-msgstr ""
+msgstr "Конфигурация (*.cfg)"
#: acccfg.src
msgctxt ""
diff --git a/source/bg/cui/source/options.po b/source/bg/cui/source/options.po
index 645c6256943..a5749ac5fa1 100644
--- a/source/bg/cui/source/options.po
+++ b/source/bg/cui/source/options.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2012-12-26 10:32+0000\n"
+"POT-Creation-Date: 2013-05-28 18:08+0200\n"
+"PO-Revision-Date: 2013-05-31 10:26+0000\n"
"Last-Translator: mbalabanov <m.balabanov@gmail.com>\n"
"Language-Team: .\n"
"Language: bg\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1356517940.0\n"
+"X-POOTLE-MTIME: 1369995963.0\n"
#: certpath.src
msgctxt ""
@@ -1354,8 +1354,8 @@ msgctxt ""
"RID_SVXDLG_JAVA_PARAMETER\n"
"FT_EXAMPLE\n"
"fixedtext.text"
-msgid "For example: -Dmyprop=c:program filesjava"
-msgstr ""
+msgid "For example: -Dmyprop=c:\\program files\\java"
+msgstr "Например: -Dmyprop=c:\\program files\\java"
#: optjava.src
msgctxt ""
@@ -1427,7 +1427,7 @@ msgid ""
"The folder you selected does not contain a Java runtime environment.\n"
"Please select a different folder."
msgstr ""
-"Избраната папка не съдържа обкръжение за изпълнение на Java.\n"
+"Избраната папка не съдържа среда за изпълнение на Java.\n"
"Моля, изберете друга папка."
#: optjava.src
@@ -1439,7 +1439,7 @@ msgid ""
"The Java runtime environment you selected is not the required version.\n"
"Please select a different folder."
msgstr ""
-"Избраното обкръжение за изпълнение на Javа не е необходимата версия.\n"
+"Избраната среда за изпълнение на Javа не е необходимата версия.\n"
"Моля, изберете друга папка."
#: optjava.src
diff --git a/source/bg/cui/source/tabpages.po b/source/bg/cui/source/tabpages.po
index dc6aca705fa..1e32dd1020a 100644
--- a/source/bg/cui/source/tabpages.po
+++ b/source/bg/cui/source/tabpages.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2012-12-01 16:33+0300\n"
-"Last-Translator: Михаил Балабанов <mishob@abv.bg>\n"
+"PO-Revision-Date: 2013-05-31 08:47+0000\n"
+"Last-Translator: mbalabanov <m.balabanov@gmail.com>\n"
"Language-Team: .\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1354371380.0\n"
+"X-POOTLE-MTIME: 1369990029.0\n"
#: autocdlg.src
msgctxt ""
@@ -1823,7 +1823,7 @@ msgctxt ""
"24\n"
"itemlist.text"
msgid "#6¾ Envelope"
-msgstr ""
+msgstr "Плик #6¾"
#: page.src
msgctxt ""
@@ -1832,7 +1832,7 @@ msgctxt ""
"25\n"
"itemlist.text"
msgid "#7¾ (Monarch) Envelope"
-msgstr ""
+msgstr "Плик #7¾ (Monarch)"
#: page.src
msgctxt ""
diff --git a/source/bg/cui/uiconfig/ui.po b/source/bg/cui/uiconfig/ui.po
index 603f50b20f4..23c7525140a 100644
--- a/source/bg/cui/uiconfig/ui.po
+++ b/source/bg/cui/uiconfig/ui.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2013-01-19 18:57+0000\n"
-"Last-Translator: mbalabanov <m.balabanov@gmail.com>\n"
+"POT-Creation-Date: 2013-06-02 13:55+0200\n"
+"PO-Revision-Date: 2013-06-01 08:22+0000\n"
+"Last-Translator: Hristo <h.hristov@icobgr.info>\n"
"Language-Team: .\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1358621861.0\n"
+"X-POOTLE-MTIME: 1370074964.0\n"
#: aboutdialog.ui
msgctxt ""
@@ -33,7 +33,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Website"
-msgstr ""
+msgstr "_Уебсайт"
#: aboutdialog.ui
msgctxt ""
@@ -51,7 +51,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Build ID: $BUILDID"
-msgstr ""
+msgstr "Build ID: $BUILDID"
#: aboutdialog.ui
msgctxt ""
@@ -69,7 +69,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Copyright © 2000 - 2013 LibreOffice contributors and/or their affiliates."
-msgstr ""
+msgstr "© 2000 – 2013 сътрудниците на LibreOffice и/или техните партньори."
#: aboutdialog.ui
msgctxt ""
@@ -78,7 +78,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "LibreOffice was based on OpenOffice.org."
-msgstr ""
+msgstr "LibreOffice е базиран на OpenOffice.org."
#: aboutdialog.ui
msgctxt ""
@@ -87,7 +87,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
-msgstr ""
+msgstr "%PRODUCTNAME е производен на LibreOffice, който е базиран на OpenOffice.org."
#: aboutdialog.ui
msgctxt ""
@@ -96,7 +96,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "This release was supplied by %OOOVENDOR."
-msgstr ""
+msgstr "Това издание е доставено от %OOOVENDOR."
#: aboutdialog.ui
msgctxt ""
@@ -114,7 +114,7 @@ msgctxt ""
"text\n"
"string.text"
msgid "Version: %ABOUTBOXPRODUCTVERSION%ABOUTBOXPRODUCTVERSIONSUFFIX"
-msgstr ""
+msgstr "Версия: %ABOUTBOXPRODUCTVERSION%ABOUTBOXPRODUCTVERSIONSUFFIX"
#: acorexceptpage.ui
msgctxt ""
@@ -443,6 +443,15 @@ msgstr "Фонов цвят"
#: backgroundpage.ui
msgctxt ""
"backgroundpage.ui\n"
+"fileft\n"
+"label\n"
+"string.text"
+msgid "<FILENAME>"
+msgstr ""
+
+#: backgroundpage.ui
+msgctxt ""
+"backgroundpage.ui\n"
"unlinkedft\n"
"label\n"
"string.text"
@@ -915,7 +924,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "ABCD"
-msgstr ""
+msgstr "АБВГ"
#: cellalignment.ui
msgctxt ""
@@ -1356,7 +1365,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Script Indicator"
-msgstr ""
+msgstr "Индикатор за скрипт"
#: colorconfigwin.ui
msgctxt ""
@@ -1410,7 +1419,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Direct Cursor"
-msgstr ""
+msgstr "Свободен курсор"
#: colorconfigwin.ui
msgctxt ""
@@ -1742,7 +1751,7 @@ msgctxt ""
"modellb\n"
"1\n"
"stringlist.text"
-msgid "CYMK"
+msgid "CMYK"
msgstr ""
#: colorpage.ui
@@ -1761,7 +1770,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_B"
-msgstr ""
+msgstr "_С"
#: colorpage.ui
msgctxt ""
@@ -1770,7 +1779,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_G"
-msgstr ""
+msgstr "_З"
#: colorpage.ui
msgctxt ""
@@ -1779,7 +1788,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_R"
-msgstr ""
+msgstr "_Ч"
#: colorpage.ui
msgctxt ""
@@ -1959,7 +1968,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Menu"
-msgstr ""
+msgstr "_Меню"
#: customize.ui
msgctxt ""
@@ -1977,7 +1986,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Move..."
-msgstr ""
+msgstr "_Преместване..."
#: customize.ui
msgctxt ""
@@ -2012,7 +2021,7 @@ msgctxt ""
"label4\n"
"label\n"
"string.text"
-msgid "LiberOffice Writer Menus"
+msgid "%PRODUCTNAME Writer Menus"
msgstr ""
#: customize.ui
@@ -2040,7 +2049,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Add Submenu..."
-msgstr ""
+msgstr "_Добавяне на подменю..."
#: customize.ui
msgctxt ""
@@ -2049,7 +2058,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Begin a Group"
-msgstr ""
+msgstr "_Начало на група"
#: customize.ui
msgctxt ""
@@ -2085,7 +2094,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Save In"
-msgstr ""
+msgstr "_Съхраняване в"
#: customize.ui
msgctxt ""
@@ -2130,7 +2139,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Li_breOffice"
-msgstr ""
+msgstr "Li_breOffice"
#: customize.ui
msgctxt ""
@@ -2139,7 +2148,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Writer"
-msgstr ""
+msgstr "_Writer"
#: customize.ui
msgctxt ""
@@ -2219,7 +2228,7 @@ msgctxt ""
"label29\n"
"label\n"
"string.text"
-msgid "_Toolbare"
+msgid "_Toolbars"
msgstr ""
#: customize.ui
@@ -2256,7 +2265,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Icons Only"
-msgstr ""
+msgstr "Са_мо икони"
#: customize.ui
msgctxt ""
@@ -2274,7 +2283,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "I_cons & Text"
-msgstr ""
+msgstr "И_кони и текст"
#: customize.ui
msgctxt ""
@@ -2291,7 +2300,7 @@ msgctxt ""
"label26\n"
"label\n"
"string.text"
-msgid "LiberOffice Writer Toolbars"
+msgid "%PRODUCTNAME Writer Toolbars"
msgstr ""
#: customize.ui
@@ -2301,7 +2310,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Co_mmands"
-msgstr ""
+msgstr "Ко_манди"
#: customize.ui
msgctxt ""
@@ -2328,7 +2337,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Restore Default _Command"
-msgstr ""
+msgstr "Възстановяване на подразбираната _команда"
#: customize.ui
msgctxt ""
@@ -2373,7 +2382,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Save In"
-msgstr ""
+msgstr "_Съхраняване в"
#: customize.ui
msgctxt ""
@@ -2445,7 +2454,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Save In"
-msgstr ""
+msgstr "_Съхраняване в"
#: customize.ui
msgctxt ""
@@ -3093,7 +3102,7 @@ msgctxt ""
"tooltip_markup\n"
"string.text"
msgid "Load Gradient List"
-msgstr ""
+msgstr "Зареждане на списък с градиенти"
#: gradientpage.ui
msgctxt ""
@@ -3102,7 +3111,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Load Gradient List"
-msgstr ""
+msgstr "Зареждане на списък с градиенти"
#: gradientpage.ui
msgctxt ""
@@ -3111,7 +3120,7 @@ msgctxt ""
"tooltip_markup\n"
"string.text"
msgid "Save Gradient List"
-msgstr ""
+msgstr "Запазване на списък с градиенти"
#: gradientpage.ui
msgctxt ""
@@ -3120,7 +3129,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Save Gradient List"
-msgstr ""
+msgstr "Запазване на списък с градиенти"
#: gradientpage.ui
msgctxt ""
@@ -3435,7 +3444,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Number:"
-msgstr ""
+msgstr "_Число:"
#: insertrowcolumn.ui
msgctxt ""
@@ -3561,7 +3570,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Menu _position"
-msgstr ""
+msgstr "_Позиция на менюто"
#: namedialog.ui
msgctxt ""
@@ -3759,7 +3768,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "C_ategory"
-msgstr ""
+msgstr "Кате_гория"
#: numberingformatpage.ui
msgctxt ""
@@ -4002,7 +4011,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Alignment "
-msgstr ""
+msgstr "Подравняване "
#: numberingoptionspage.ui
msgctxt ""
@@ -4479,7 +4488,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "N_umbering Alignment"
-msgstr ""
+msgstr "Подравняване на н_омерата"
#: numberingpositionpage.ui
msgctxt ""
@@ -4713,7 +4722,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Help tips disappear after"
-msgstr ""
+msgstr "_Съветите на помощта изчезват след "
#: optaccessibilitypage.ui
msgctxt ""
@@ -4790,6 +4799,15 @@ msgstr "Вече е инсталирано обкръжение за изпъл
#: optadvancedpage.ui
msgctxt ""
"optadvancedpage.ui\n"
+"add\n"
+"label\n"
+"string.text"
+msgid "_Add..."
+msgstr ""
+
+#: optadvancedpage.ui
+msgctxt ""
+"optadvancedpage.ui\n"
"parameters\n"
"label\n"
"string.text"
@@ -4892,8 +4910,8 @@ msgctxt ""
"macrorecording\n"
"label\n"
"string.text"
-msgid "Enable macro recording"
-msgstr "Разрешено записване на макроси"
+msgid "Enable macro recording (limited)"
+msgstr ""
#: optadvancedpage.ui
msgctxt ""
@@ -4911,7 +4929,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Scheme"
-msgstr ""
+msgstr "_Схема"
#: optappearancepage.ui
msgctxt ""
@@ -5199,7 +5217,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Fon_ts"
-msgstr ""
+msgstr "Шриф_т"
#: optfontspage.ui
msgctxt ""
@@ -5660,6 +5678,15 @@ msgctxt ""
msgid "_Default"
msgstr "_По подразбиране"
+#: optpathspage.ui
+msgctxt ""
+"optpathspage.ui\n"
+"edit\n"
+"label\n"
+"string.text"
+msgid "_Edit..."
+msgstr ""
+
#: optproxypage.ui
msgctxt ""
"optproxypage.ui\n"
@@ -6027,7 +6054,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "D_ocument type:"
-msgstr ""
+msgstr "Тип на д_окумента:"
#: optsavepage.ui
msgctxt ""
@@ -6045,7 +6072,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Adjust security related options and define warnings for hidden information in documents. "
-msgstr ""
+msgstr "Задаване на настройки, свързани със сигурността, и предупреждения за скрита информация в документите. "
#: optsecuritypage.ui
msgctxt ""
@@ -6072,7 +6099,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Persistently _save passwords for web connections"
-msgstr ""
+msgstr "Постоянно _съхраняване на пароли за връзки с Уеб"
#: optsecuritypage.ui
msgctxt ""
@@ -6080,7 +6107,7 @@ msgctxt ""
"usemasterpassword\n"
"label\n"
"string.text"
-msgid "Protected _by a master passwords (recommended)"
+msgid "Protected _by a master password (recommended)"
msgstr ""
#: optsecuritypage.ui
@@ -6267,7 +6294,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Fa_x/E-mail"
-msgstr ""
+msgstr "_Факс/е-поща"
#: optuserpage.ui
msgctxt ""
@@ -6348,7 +6375,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Home telephone number"
-msgstr ""
+msgstr "Домашен телефонен номер"
#: optuserpage.ui
msgctxt ""
@@ -6357,7 +6384,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Work telephone number"
-msgstr ""
+msgstr "Служебен телефонен номер"
#: optuserpage.ui
msgctxt ""
@@ -6366,7 +6393,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "FAX number"
-msgstr ""
+msgstr "Факс номер"
#: optuserpage.ui
msgctxt ""
@@ -6375,7 +6402,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "email address"
-msgstr ""
+msgstr "е-мейл адрес"
#: optuserpage.ui
msgctxt ""
@@ -6393,7 +6420,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Last Name/First _name/Father's name/Initials"
-msgstr ""
+msgstr "Фамилия/име/презиме/инициали"
#: optuserpage.ui
msgctxt ""
@@ -6411,7 +6438,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Father's name"
-msgstr ""
+msgstr "Презиме"
#: optuserpage.ui
msgctxt ""
@@ -6474,7 +6501,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Street/Apartment number"
-msgstr ""
+msgstr "_Улица/номер на апртамент"
#: optuserpage.ui
msgctxt ""
@@ -6492,7 +6519,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Apartment number"
-msgstr ""
+msgstr "Номер на апартамент"
#: optuserpage.ui
msgctxt ""
@@ -6942,7 +6969,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Orientation:"
-msgstr ""
+msgstr "_Ориентация:"
#: pageformatpage.ui
msgctxt ""
@@ -7461,7 +7488,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Firefox Themes"
-msgstr ""
+msgstr "Теми на Firefox"
#: pickbulletpage.ui
msgctxt ""
@@ -7776,7 +7803,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_When saving or sending"
-msgstr ""
+msgstr "_Когато съхранявате или изпращате"
#: securityoptionsdialog.ui
msgctxt ""
@@ -7785,7 +7812,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "When _signing"
-msgstr ""
+msgstr "Когато п_одписвате"
#: securityoptionsdialog.ui
msgctxt ""
@@ -7794,7 +7821,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "When _printing"
-msgstr ""
+msgstr "Когато _отпечавате"
#: securityoptionsdialog.ui
msgctxt ""
@@ -7803,7 +7830,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "When creating PDF _files"
-msgstr ""
+msgstr "Когато създавате PDF _файлове"
#: securityoptionsdialog.ui
msgctxt ""
@@ -7830,7 +7857,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Remove personal information on saving"
-msgstr ""
+msgstr "Пре_махване на персоналната информация при съхраняване"
#: securityoptionsdialog.ui
msgctxt ""
@@ -7911,7 +7938,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Delete _Last"
-msgstr ""
+msgstr "Изтриване на по_следното"
#: specialcharacters.ui
msgctxt ""
@@ -7992,7 +8019,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Correct"
-msgstr ""
+msgstr "Попра_вяне"
#: spellingdialog.ui
msgctxt ""
@@ -8001,7 +8028,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Correct A_ll"
-msgstr ""
+msgstr "Поправяне на _всички"
#: spellingdialog.ui
msgctxt ""
@@ -8010,7 +8037,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Alwa_ys correct"
-msgstr ""
+msgstr "Ви_наги правилно"
#: spellingdialog.ui
msgctxt ""
@@ -8019,7 +8046,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Check _Grammar"
-msgstr ""
+msgstr "_Граматическа проверка"
#: spellingdialog.ui
msgctxt ""
@@ -8064,7 +8091,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Res_ume"
-msgstr ""
+msgstr "Про_дължаване"
#: spellingdialog.ui
msgctxt ""
@@ -8091,7 +8118,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Add to Dictionary"
-msgstr ""
+msgstr "_Добавяне в речника"
#: spellingdialog.ui
msgctxt ""
@@ -8100,7 +8127,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Add to Dictionary"
-msgstr ""
+msgstr "_Добавяне в речника"
#: splitcellsdialog.ui
msgctxt ""
@@ -8541,7 +8568,7 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "["
-msgstr ""
+msgstr "["
#: twolinespage.ui
msgctxt ""
@@ -8550,7 +8577,7 @@ msgctxt ""
"3\n"
"stringlist.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: twolinespage.ui
msgctxt ""
@@ -8559,7 +8586,7 @@ msgctxt ""
"4\n"
"stringlist.text"
msgid "{"
-msgstr ""
+msgstr "{"
#: twolinespage.ui
msgctxt ""
@@ -8586,7 +8613,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid ")"
-msgstr ""
+msgstr ")"
#: twolinespage.ui
msgctxt ""
@@ -8595,7 +8622,7 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "]"
-msgstr ""
+msgstr "]"
#: twolinespage.ui
msgctxt ""
@@ -8604,7 +8631,7 @@ msgctxt ""
"3\n"
"stringlist.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: twolinespage.ui
msgctxt ""
@@ -8613,7 +8640,7 @@ msgctxt ""
"4\n"
"stringlist.text"
msgid "}"
-msgstr ""
+msgstr "}"
#: twolinespage.ui
msgctxt ""
diff --git a/source/bg/dbaccess/uiconfig/ui.po b/source/bg/dbaccess/uiconfig/ui.po
index 546200ba633..9f354346b52 100644
--- a/source/bg/dbaccess/uiconfig/ui.po
+++ b/source/bg/dbaccess/uiconfig/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:06+0200\n"
+"POT-Creation-Date: 2013-05-28 18:08+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"
@@ -101,6 +101,15 @@ msgstr ""
#: generalpagewizard.ui
msgctxt ""
"generalpagewizard.ui\n"
+"openDatabase\n"
+"label\n"
+"string.text"
+msgid "Open"
+msgstr ""
+
+#: generalpagewizard.ui
+msgctxt ""
+"generalpagewizard.ui\n"
"connectDatabase\n"
"label\n"
"string.text"
@@ -128,6 +137,24 @@ msgstr ""
#: querypropertiesdialog.ui
msgctxt ""
"querypropertiesdialog.ui\n"
+"distinct\n"
+"label\n"
+"string.text"
+msgid "Yes"
+msgstr ""
+
+#: querypropertiesdialog.ui
+msgctxt ""
+"querypropertiesdialog.ui\n"
+"nondistinct\n"
+"label\n"
+"string.text"
+msgid "No"
+msgstr ""
+
+#: querypropertiesdialog.ui
+msgctxt ""
+"querypropertiesdialog.ui\n"
"limit-label\n"
"label\n"
"string.text"
diff --git a/source/bg/dictionaries/is.po b/source/bg/dictionaries/is.po
new file mode 100644
index 00000000000..f07a85fcff4
--- /dev/null
+++ b/source/bg/dictionaries/is.po
@@ -0,0 +1,23 @@
+#. extracted from dictionaries/is
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2013-06-03 08:43+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"
+"Language: bg\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: LibreOffice\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml
+msgctxt ""
+"description.xml\n"
+"dispname\n"
+"description.text"
+msgid "Icelandic spelling dictionary and thesaurus"
+msgstr ""
diff --git a/source/bg/dictionaries/no.po b/source/bg/dictionaries/no.po
index 135d9286b81..d78120e153a 100644
--- a/source/bg/dictionaries/no.po
+++ b/source/bg/dictionaries/no.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 350-l10n\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2011-10-18 20:55+0200\n"
+"POT-Creation-Date: 2013-05-28 18:07+0200\n"
+"PO-Revision-Date: 2013-05-31 09:23+0000\n"
"Last-Translator: mbalabanov <m.balabanov@gmail.com>\n"
"Language-Team: none\n"
"Language: bg\n"
@@ -14,13 +14,12 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-POOTLE-MTIME: 1369992230.0\n"
#: description.xml
msgctxt ""
"description.xml\n"
"dispname\n"
"description.text"
-msgid ""
-"\n"
-"Norwegian (Nynorsk and Bokmål) spelling dictionary, hyphenation rules, and thesaurus\n"
-msgstr ""
+msgid "Norwegian (Nynorsk and Bokmål) spelling dictionary, hyphenation rules, and thesaurus"
+msgstr "Норвежки речници за правопис, сричкопренасяне и синоними (нюнорск и бокмал)"
diff --git a/source/bg/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po b/source/bg/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po
index f77f82bff3f..226f1d945d9 100644
--- a/source/bg/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po
+++ b/source/bg/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
+"POT-Creation-Date: 2013-06-03 08:43+0200\n"
"PO-Revision-Date: 2012-12-01 12:58+0000\n"
"Last-Translator: mbalabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -31,5 +31,5 @@ msgctxt ""
"..OptionsDialog.Nodes.LanguageSettings.Leaves.org.openoffice.lightproof.pt_BR\n"
"Label\n"
"value.text"
-msgid "Grammar checking (Portuguese)"
-msgstr "Проверка на граматиката (португалски)"
+msgid "Portuguese sentence checking"
+msgstr ""
diff --git a/source/bg/editeng/source/editeng.po b/source/bg/editeng/source/editeng.po
index ba089c4e3b8..2609d29ff40 100644
--- a/source/bg/editeng/source/editeng.po
+++ b/source/bg/editeng/source/editeng.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2013-01-15 09:07+0000\n"
+"PO-Revision-Date: 2013-05-31 11:03+0000\n"
"Last-Translator: mbalabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1358240858.0\n"
+"X-POOTLE-MTIME: 1369998180.0\n"
#: editeng.src
msgctxt ""
@@ -104,7 +104,7 @@ msgctxt ""
"MN_INSERT\n"
"menuitem.text"
msgid "~Add to Dictionary"
-msgstr ""
+msgstr "~Добавяне в речник"
#: editeng.src
msgctxt ""
@@ -113,7 +113,7 @@ msgctxt ""
"MN_INSERT_SINGLE\n"
"menuitem.text"
msgid "~Add to Dictionary"
-msgstr ""
+msgstr "~Добавяне в речник"
#: editeng.src
msgctxt ""
diff --git a/source/bg/editeng/source/items.po b/source/bg/editeng/source/items.po
index 83a1aa3071c..3259c8fd482 100644
--- a/source/bg/editeng/source/items.po
+++ b/source/bg/editeng/source/items.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2012-11-18 16:10+0000\n"
-"Last-Translator: Hristo <h.hristov@icobgr.info>\n"
+"PO-Revision-Date: 2013-05-31 11:04+0000\n"
+"Last-Translator: mbalabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1353255046.0\n"
+"X-POOTLE-MTIME: 1369998245.0\n"
#: page.src
msgctxt ""
@@ -1455,7 +1455,7 @@ msgctxt ""
"RID_SVXITEMS_HYPHEN_MINLEAD\n"
"string.text"
msgid "%1 characters at end of line"
-msgstr ""
+msgstr "%1 знака в края на реда"
#: svxitems.src
msgctxt ""
@@ -1463,7 +1463,7 @@ msgctxt ""
"RID_SVXITEMS_HYPHEN_MINTRAIL\n"
"string.text"
msgid "%1 characters at beginning of line"
-msgstr ""
+msgstr "%1 знака в началото на реда"
#: svxitems.src
msgctxt ""
@@ -1471,7 +1471,7 @@ msgctxt ""
"RID_SVXITEMS_HYPHEN_MAX\n"
"string.text"
msgid "%1 hyphens"
-msgstr ""
+msgstr "%1 тирета"
#: svxitems.src
msgctxt ""
diff --git a/source/bg/extensions/uiconfig.po b/source/bg/extensions/uiconfig.po
index 7f26a2b7b50..6738269348c 100644
--- a/source/bg/extensions/uiconfig.po
+++ b/source/bg/extensions/uiconfig.po
@@ -4,15 +4,17 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"PO-Revision-Date: 2013-05-31 10:58+0000\n"
+"Last-Translator: Hristo <h.hristov@icobgr.info>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-POOTLE-MTIME: 1369997934.0\n"
#: scanner.ui
msgctxt ""
@@ -24,6 +26,8 @@ msgid ""
"About\n"
"Dev_ice"
msgstr ""
+"За _устрой-\n"
+"ството"
#: scanner.ui
msgctxt ""
@@ -35,6 +39,8 @@ msgid ""
"Create\n"
"Previe_w"
msgstr ""
+"Създаване\n"
+"на _мостра"
#: scanner.ui
msgctxt ""
@@ -43,7 +49,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Scan"
-msgstr ""
+msgstr "_Сканиране"
#: scanner.ui
msgctxt ""
@@ -52,7 +58,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Left:"
-msgstr ""
+msgstr "От_ляво:"
#: scanner.ui
msgctxt ""
@@ -61,7 +67,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "To_p:"
-msgstr ""
+msgstr "От_горе:"
#: scanner.ui
msgctxt ""
@@ -70,7 +76,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Right:"
-msgstr ""
+msgstr "От_дясно:"
#: scanner.ui
msgctxt ""
@@ -79,7 +85,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Bottom:"
-msgstr ""
+msgstr "_Отдолу:"
#: scanner.ui
msgctxt ""
@@ -88,7 +94,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Scan area"
-msgstr ""
+msgstr "Област за сканиране"
#: scanner.ui
msgctxt ""
@@ -97,7 +103,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Preview"
-msgstr ""
+msgstr "Мостра"
#: scanner.ui
msgctxt ""
@@ -106,7 +112,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Device _used"
-msgstr ""
+msgstr "_Използвано устройство:"
#: scanner.ui
msgctxt ""
@@ -115,7 +121,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Resolution [_DPI]"
-msgstr ""
+msgstr "Разделителна способност [_DPI]"
#: scanner.ui
msgctxt ""
@@ -124,7 +130,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Show advanced options"
-msgstr ""
+msgstr "Показване на разширени настройки"
#: scanner.ui
msgctxt ""
@@ -133,4 +139,4 @@ msgctxt ""
"label\n"
"string.text"
msgid "Options:"
-msgstr ""
+msgstr "Настройки:"
diff --git a/source/bg/extras/source/gallery/share.po b/source/bg/extras/source/gallery/share.po
index b1d3938172a..6982d8fdb11 100644
--- a/source/bg/extras/source/gallery/share.po
+++ b/source/bg/extras/source/gallery/share.po
@@ -4,15 +4,17 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2013-05-23 12:06+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"PO-Revision-Date: 2013-06-01 08:22+0000\n"
+"Last-Translator: Hristo <h.hristov@icobgr.info>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-POOTLE-MTIME: 1370074964.0\n"
#: gallery_names.ulf
msgctxt ""
@@ -20,7 +22,7 @@ msgctxt ""
"arrows\n"
"LngText.text"
msgid "Arrows"
-msgstr ""
+msgstr "Стрелки"
#: gallery_names.ulf
msgctxt ""
@@ -28,7 +30,7 @@ msgctxt ""
"computers\n"
"LngText.text"
msgid "Computers"
-msgstr ""
+msgstr "Компютри"
#: gallery_names.ulf
msgctxt ""
@@ -36,7 +38,7 @@ msgctxt ""
"diagrams\n"
"LngText.text"
msgid "Diagrams"
-msgstr ""
+msgstr "Диаграми"
#: gallery_names.ulf
msgctxt ""
@@ -44,7 +46,7 @@ msgctxt ""
"education\n"
"LngText.text"
msgid "School & University"
-msgstr ""
+msgstr "Училище и университет"
#: gallery_names.ulf
msgctxt ""
@@ -52,7 +54,7 @@ msgctxt ""
"environment\n"
"LngText.text"
msgid "Environment"
-msgstr ""
+msgstr "Околна среда"
#: gallery_names.ulf
msgctxt ""
@@ -60,7 +62,7 @@ msgctxt ""
"finance\n"
"LngText.text"
msgid "Finance"
-msgstr ""
+msgstr "Финанси"
#: gallery_names.ulf
msgctxt ""
@@ -68,7 +70,7 @@ msgctxt ""
"people\n"
"LngText.text"
msgid "People"
-msgstr ""
+msgstr "Хора"
#: gallery_names.ulf
msgctxt ""
@@ -76,7 +78,7 @@ msgctxt ""
"sounds\n"
"LngText.text"
msgid "Sounds"
-msgstr ""
+msgstr "Звуци"
#: gallery_names.ulf
msgctxt ""
@@ -84,7 +86,7 @@ msgctxt ""
"symbols\n"
"LngText.text"
msgid "Symbols"
-msgstr ""
+msgstr "Символи"
#: gallery_names.ulf
msgctxt ""
@@ -100,4 +102,4 @@ msgctxt ""
"transportation\n"
"LngText.text"
msgid "Transportation"
-msgstr ""
+msgstr "Транспорт"
diff --git a/source/bg/filter/source/pdf.po b/source/bg/filter/source/pdf.po
index a472cd0cc70..36f1944b384 100644
--- a/source/bg/filter/source/pdf.po
+++ b/source/bg/filter/source/pdf.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2013-05-23 12:06+0200\n"
-"PO-Revision-Date: 2012-12-01 12:42+0000\n"
+"PO-Revision-Date: 2013-05-31 09:22+0000\n"
"Last-Translator: mbalabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1354365775.0\n"
+"X-POOTLE-MTIME: 1369992138.0\n"
#: impdialog.src
msgctxt ""
@@ -271,7 +271,7 @@ msgctxt ""
"CB_VIEWPDF\n"
"checkbox.text"
msgid "~View PDF after Export"
-msgstr ""
+msgstr "~Преглед на PDF файла след експортирането"
#: impdialog.src
msgctxt ""
diff --git a/source/bg/formula/source/core/resource.po b/source/bg/formula/source/core/resource.po
index 23bc7b5dce9..8231741602e 100644
--- a/source/bg/formula/source/core/resource.po
+++ b/source/bg/formula/source/core/resource.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2013-01-15 09:06+0000\n"
+"PO-Revision-Date: 2013-05-31 09:19+0000\n"
"Last-Translator: mbalabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1358240760.0\n"
+"X-POOTLE-MTIME: 1369991986.0\n"
#: core_resource.src
msgctxt ""
@@ -635,7 +635,7 @@ msgctxt ""
"SC_OPCODE_N\n"
"string.text"
msgid "N"
-msgstr ""
+msgstr "N"
#: core_resource.src
msgctxt ""
@@ -716,7 +716,7 @@ msgctxt ""
"SC_OPCODE_T\n"
"string.text"
msgid "T"
-msgstr ""
+msgstr "T"
#: core_resource.src
msgctxt ""
@@ -1283,7 +1283,7 @@ msgctxt ""
"SC_OPCODE_B\n"
"string.text"
msgid "B"
-msgstr ""
+msgstr "B"
#: core_resource.src
msgctxt ""
@@ -2156,7 +2156,7 @@ msgctxt ""
"SC_OPCODE_SKEWP\n"
"string.text"
msgid "SKEWP"
-msgstr ""
+msgstr "SKEWP"
#: core_resource.src
msgctxt ""
diff --git a/source/bg/framework/source/classes.po b/source/bg/framework/source/classes.po
index e86a69a8b74..0db5632d7ea 100644
--- a/source/bg/framework/source/classes.po
+++ b/source/bg/framework/source/classes.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2012-11-18 16:11+0000\n"
+"PO-Revision-Date: 2013-05-31 09:26+0000\n"
"Last-Translator: Hristo <h.hristov@icobgr.info>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1353255068.0\n"
+"X-POOTLE-MTIME: 1369992393.0\n"
#: resource.src
msgctxt ""
@@ -132,7 +132,7 @@ msgctxt ""
"STR_CLEAR_RECENT_FILES\n"
"string.text"
msgid "Clear List"
-msgstr ""
+msgstr "Изчистване на списъка"
#: resource.src
msgctxt ""
@@ -140,7 +140,7 @@ msgctxt ""
"STR_CLEAR_RECENT_FILES_HELP\n"
"string.text"
msgid "Clears the list with the most recently opened files. This action can not be undone."
-msgstr ""
+msgstr "Изчиства списъка с последно отворени файлове. Действието не подлежи на отмяна."
#: resource.src
msgctxt ""
diff --git a/source/bg/helpcontent2/source/auxiliary.po b/source/bg/helpcontent2/source/auxiliary.po
index 63cb9bbb6d5..e94e0a09d97 100644
--- a/source/bg/helpcontent2/source/auxiliary.po
+++ b/source/bg/helpcontent2/source/auxiliary.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-10 11:43+0100\n"
+"POT-Creation-Date: 2013-05-23 12:05+0200\n"
"PO-Revision-Date: 2012-12-02 15:12+0000\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -64,405 +64,165 @@ msgctxt ""
msgid "Guides"
msgstr "Ръководства"
-#: simpress.tree
+#: scalc.tree
msgctxt ""
-"simpress.tree\n"
-"04\n"
+"scalc.tree\n"
+"08\n"
"help_section.text"
-msgid "Presentations and Drawings"
-msgstr "Презентации и рисунки"
+msgid "Spreadsheets"
+msgstr "Електронни таблици"
-#: simpress.tree
+#: scalc.tree
msgctxt ""
-"simpress.tree\n"
-"0401\n"
+"scalc.tree\n"
+"0801\n"
"node.text"
msgid "General Information and User Interface Usage"
msgstr "Обща информация и работа с потребителския интерфейс"
-#: simpress.tree
+#: scalc.tree
msgctxt ""
-"simpress.tree\n"
-"0402\n"
+"scalc.tree\n"
+"0802\n"
"node.text"
msgid "Command and Menu Reference"
msgstr "Справочник за командите и менютата"
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"040201\n"
-"node.text"
-msgid "Presentations (%PRODUCTNAME Impress)"
-msgstr "Презентации (%PRODUCTNAME Impress)"
-
-#: simpress.tree
+#: scalc.tree
msgctxt ""
-"simpress.tree\n"
-"04020101\n"
+"scalc.tree\n"
+"080201\n"
"node.text"
msgid "Menus"
msgstr "Менюта"
-#: simpress.tree
+#: scalc.tree
msgctxt ""
-"simpress.tree\n"
-"04020102\n"
+"scalc.tree\n"
+"080202\n"
"node.text"
msgid "Toolbars"
msgstr "Ленти с инструменти"
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"040202\n"
-"node.text"
-msgid "Drawings (%PRODUCTNAME Draw)"
-msgstr "Рисунки (%PRODUCTNAME Draw)"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020201\n"
-"node.text"
-msgid "Menus"
-msgstr "Менюта"
-
-#: simpress.tree
+#: scalc.tree
msgctxt ""
-"simpress.tree\n"
-"04020202\n"
+"scalc.tree\n"
+"0803\n"
"node.text"
-msgid "Toolbars"
-msgstr "Ленти с инструменти"
+msgid "Functions Types and Operators"
+msgstr "Функции, типове и оператори"
-#: simpress.tree
+#: scalc.tree
msgctxt ""
-"simpress.tree\n"
-"0403\n"
+"scalc.tree\n"
+"0804\n"
"node.text"
msgid "Loading, Saving, Importing, and Exporting"
msgstr "Зареждане, запазване, импортиране и експортиране"
-#: simpress.tree
+#: scalc.tree
msgctxt ""
-"simpress.tree\n"
-"0404\n"
+"scalc.tree\n"
+"0805\n"
"node.text"
msgid "Formatting"
msgstr "Форматиране"
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"0405\n"
-"node.text"
-msgid "Printing"
-msgstr "Печатане"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"0406\n"
-"node.text"
-msgid "Effects"
-msgstr "Ефекти"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"0407\n"
-"node.text"
-msgid "Objects, Graphics, and Bitmaps"
-msgstr "Обекти, графики и растерни изображения"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"0408\n"
-"node.text"
-msgid "Groups and Layers"
-msgstr "Групи и слоеве"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"0409\n"
-"node.text"
-msgid "Text in Presentations and Drawings"
-msgstr "Текст в презентации и рисунки"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"0410\n"
-"node.text"
-msgid "Viewing"
-msgstr "Преглеждане"
-
-#: schart.tree
-msgctxt ""
-"schart.tree\n"
-"05\n"
-"help_section.text"
-msgid "Charts and Diagrams"
-msgstr "Диаграми"
-
-#: schart.tree
-msgctxt ""
-"schart.tree\n"
-"0501\n"
-"node.text"
-msgid "General Information"
-msgstr "Обща информация"
-
-#: swriter.tree
-msgctxt ""
-"swriter.tree\n"
-"02\n"
-"help_section.text"
-msgid "Text Documents"
-msgstr "Текстови документи"
-
-#: swriter.tree
-msgctxt ""
-"swriter.tree\n"
-"0201\n"
-"node.text"
-msgid "General Information and User Interface Usage"
-msgstr "Обща информация и работа с потребителския интерфейс"
-
-#: swriter.tree
-msgctxt ""
-"swriter.tree\n"
-"0202\n"
-"node.text"
-msgid "Command and Menu Reference"
-msgstr "Справочник за командите и менютата"
-
-#: swriter.tree
-msgctxt ""
-"swriter.tree\n"
-"020201\n"
-"node.text"
-msgid "Menus"
-msgstr "Менюта"
-
-#: swriter.tree
-msgctxt ""
-"swriter.tree\n"
-"020202\n"
-"node.text"
-msgid "Toolbars"
-msgstr "Ленти с инструменти"
-
-#: swriter.tree
-msgctxt ""
-"swriter.tree\n"
-"0203\n"
-"node.text"
-msgid "Creating Text Documents"
-msgstr "Създаване на текстови документи"
-
-#: swriter.tree
-msgctxt ""
-"swriter.tree\n"
-"0204\n"
-"node.text"
-msgid "Graphics in Text Documents"
-msgstr "Графики в текстови документи"
-
-#: swriter.tree
-msgctxt ""
-"swriter.tree\n"
-"0205\n"
-"node.text"
-msgid "Tables in Text Documents"
-msgstr "Таблици в текстови документи"
-
-#: swriter.tree
-msgctxt ""
-"swriter.tree\n"
-"0206\n"
-"node.text"
-msgid "Objects in Text Documents"
-msgstr "Обекти в текстови документи"
-
-#: swriter.tree
-msgctxt ""
-"swriter.tree\n"
-"0207\n"
-"node.text"
-msgid "Sections and Frames in Text Documents"
-msgstr "Раздели и рамки в текстови документи"
-
-#: swriter.tree
-msgctxt ""
-"swriter.tree\n"
-"0208\n"
-"node.text"
-msgid "Tables of Contents and Indexes"
-msgstr "Таблици на съдържанието и указатели"
-
-#: swriter.tree
-msgctxt ""
-"swriter.tree\n"
-"0209\n"
-"node.text"
-msgid "Fields in Text Documents"
-msgstr "Полета в текстови документи"
-
-#: swriter.tree
-msgctxt ""
-"swriter.tree\n"
-"0210\n"
-"node.text"
-msgid "Navigating Text Documents"
-msgstr "Навигация в текстови документи"
-
-#: swriter.tree
-msgctxt ""
-"swriter.tree\n"
-"0211\n"
-"node.text"
-msgid "Calculating in Text Documents"
-msgstr "Изчисления в текстови документи"
-
-#: swriter.tree
-msgctxt ""
-"swriter.tree\n"
-"0212\n"
-"node.text"
-msgid "Formatting Text Documents"
-msgstr "Форматиране на текстови документи"
-
-#: swriter.tree
-msgctxt ""
-"swriter.tree\n"
-"021201\n"
-"node.text"
-msgid "Templates and Styles"
-msgstr "Шаблони и стилове"
-
-#: swriter.tree
+#: scalc.tree
msgctxt ""
-"swriter.tree\n"
-"0213\n"
+"scalc.tree\n"
+"0806\n"
"node.text"
-msgid "Special Text Elements"
-msgstr "Специални текстови елементи"
+msgid "Filtering and Sorting"
+msgstr "Филтриране и сортиране"
-#: swriter.tree
+#: scalc.tree
msgctxt ""
-"swriter.tree\n"
-"0214\n"
+"scalc.tree\n"
+"0807\n"
"node.text"
-msgid "Automatic Functions"
-msgstr "Автоматични функции"
+msgid "Printing"
+msgstr "Печатане"
-#: swriter.tree
+#: scalc.tree
msgctxt ""
-"swriter.tree\n"
-"0215\n"
+"scalc.tree\n"
+"0808\n"
"node.text"
-msgid "Numbering and Lists"
-msgstr "Номерация и списъци"
+msgid "Data Ranges"
+msgstr "Области с данни"
-#: swriter.tree
+#: scalc.tree
msgctxt ""
-"swriter.tree\n"
-"0216\n"
+"scalc.tree\n"
+"0809\n"
"node.text"
-msgid "Spellchecking, Thesaurus, and Languages"
-msgstr "Проверка на правописа, синонимни речници и езици"
+msgid "Pivot Table"
+msgstr "Обобщаваща таблица"
-#: swriter.tree
+#: scalc.tree
msgctxt ""
-"swriter.tree\n"
-"0218\n"
+"scalc.tree\n"
+"0810\n"
"node.text"
-msgid "Troubleshooting Tips"
-msgstr "Съвети за решаване на проблеми"
+msgid "Scenarios"
+msgstr "Сценарии"
-#: swriter.tree
+#: scalc.tree
msgctxt ""
-"swriter.tree\n"
-"0219\n"
+"scalc.tree\n"
+"0811\n"
"node.text"
-msgid "Loading, Saving, Importing, and Exporting"
-msgstr "Зареждане, запазване, импортиране и експортиране"
+msgid "References"
+msgstr "Обръщения"
-#: swriter.tree
+#: scalc.tree
msgctxt ""
-"swriter.tree\n"
-"0220\n"
+"scalc.tree\n"
+"0812\n"
"node.text"
-msgid "Master Documents"
-msgstr "Главни документи"
+msgid "Viewing, Selecting, Copying"
+msgstr "Преглеждане, избиране, копиране"
-#: swriter.tree
+#: scalc.tree
msgctxt ""
-"swriter.tree\n"
-"0221\n"
+"scalc.tree\n"
+"0813\n"
"node.text"
-msgid "Links and References"
-msgstr "Връзки и препратки"
+msgid "Formulas and Calculations"
+msgstr "Формули и изчисления"
-#: swriter.tree
+#: scalc.tree
msgctxt ""
-"swriter.tree\n"
-"0222\n"
+"scalc.tree\n"
+"0814\n"
"node.text"
-msgid "Printing"
-msgstr "Печатане"
+msgid "Protection"
+msgstr "Защита"
-#: swriter.tree
+#: scalc.tree
msgctxt ""
-"swriter.tree\n"
-"0223\n"
+"scalc.tree\n"
+"0815\n"
"node.text"
-msgid "Searching and Replacing"
-msgstr "Търсене и замяна"
-
-#: swriter.tree
-msgctxt ""
-"swriter.tree\n"
-"06\n"
-"help_section.text"
-msgid "HTML Documents"
-msgstr "Документи на HTML"
+msgid "Miscellaneous"
+msgstr "Разни"
-#: smath.tree
+#: schart.tree
msgctxt ""
-"smath.tree\n"
-"03\n"
+"schart.tree\n"
+"05\n"
"help_section.text"
-msgid "Formulas"
-msgstr "Формули"
-
-#: smath.tree
-msgctxt ""
-"smath.tree\n"
-"0301\n"
-"node.text"
-msgid "General Information and User Interface Usage"
-msgstr "Обща информация и работа с потребителския интерфейс"
-
-#: smath.tree
-msgctxt ""
-"smath.tree\n"
-"0302\n"
-"node.text"
-msgid "Command and Menu Reference"
-msgstr "Справочник за командите и менютата"
+msgid "Charts and Diagrams"
+msgstr "Диаграми"
-#: smath.tree
+#: schart.tree
msgctxt ""
-"smath.tree\n"
-"0303\n"
+"schart.tree\n"
+"0501\n"
"node.text"
-msgid "Working with Formulas"
-msgstr "Работа с формули"
+msgid "General Information"
+msgstr "Обща информация"
#: shared.tree
msgctxt ""
@@ -688,146 +448,386 @@ msgctxt ""
msgid "General Information"
msgstr "Обща информация"
-#: scalc.tree
+#: simpress.tree
msgctxt ""
-"scalc.tree\n"
-"08\n"
+"simpress.tree\n"
+"04\n"
"help_section.text"
-msgid "Spreadsheets"
-msgstr "Електронни таблици"
+msgid "Presentations and Drawings"
+msgstr "Презентации и рисунки"
-#: scalc.tree
+#: simpress.tree
msgctxt ""
-"scalc.tree\n"
-"0801\n"
+"simpress.tree\n"
+"0401\n"
"node.text"
msgid "General Information and User Interface Usage"
msgstr "Обща информация и работа с потребителския интерфейс"
-#: scalc.tree
+#: simpress.tree
msgctxt ""
-"scalc.tree\n"
-"0802\n"
+"simpress.tree\n"
+"0402\n"
"node.text"
msgid "Command and Menu Reference"
msgstr "Справочник за командите и менютата"
-#: scalc.tree
+#: simpress.tree
msgctxt ""
-"scalc.tree\n"
-"080201\n"
+"simpress.tree\n"
+"040201\n"
+"node.text"
+msgid "Presentations (%PRODUCTNAME Impress)"
+msgstr "Презентации (%PRODUCTNAME Impress)"
+
+#: simpress.tree
+msgctxt ""
+"simpress.tree\n"
+"04020101\n"
"node.text"
msgid "Menus"
msgstr "Менюта"
-#: scalc.tree
+#: simpress.tree
msgctxt ""
-"scalc.tree\n"
-"080202\n"
+"simpress.tree\n"
+"04020102\n"
"node.text"
msgid "Toolbars"
msgstr "Ленти с инструменти"
-#: scalc.tree
+#: simpress.tree
msgctxt ""
-"scalc.tree\n"
-"0803\n"
+"simpress.tree\n"
+"040202\n"
"node.text"
-msgid "Functions Types and Operators"
-msgstr "Функции, типове и оператори"
+msgid "Drawings (%PRODUCTNAME Draw)"
+msgstr "Рисунки (%PRODUCTNAME Draw)"
-#: scalc.tree
+#: simpress.tree
msgctxt ""
-"scalc.tree\n"
-"0804\n"
+"simpress.tree\n"
+"04020201\n"
+"node.text"
+msgid "Menus"
+msgstr "Менюта"
+
+#: simpress.tree
+msgctxt ""
+"simpress.tree\n"
+"04020202\n"
+"node.text"
+msgid "Toolbars"
+msgstr "Ленти с инструменти"
+
+#: simpress.tree
+msgctxt ""
+"simpress.tree\n"
+"0403\n"
"node.text"
msgid "Loading, Saving, Importing, and Exporting"
msgstr "Зареждане, запазване, импортиране и експортиране"
-#: scalc.tree
+#: simpress.tree
msgctxt ""
-"scalc.tree\n"
-"0805\n"
+"simpress.tree\n"
+"0404\n"
"node.text"
msgid "Formatting"
msgstr "Форматиране"
-#: scalc.tree
+#: simpress.tree
msgctxt ""
-"scalc.tree\n"
-"0806\n"
+"simpress.tree\n"
+"0405\n"
"node.text"
-msgid "Filtering and Sorting"
-msgstr "Филтриране и сортиране"
+msgid "Printing"
+msgstr "Печатане"
-#: scalc.tree
+#: simpress.tree
msgctxt ""
-"scalc.tree\n"
-"0807\n"
+"simpress.tree\n"
+"0406\n"
"node.text"
-msgid "Printing"
-msgstr "Печатане"
+msgid "Effects"
+msgstr "Ефекти"
-#: scalc.tree
+#: simpress.tree
msgctxt ""
-"scalc.tree\n"
-"0808\n"
+"simpress.tree\n"
+"0407\n"
"node.text"
-msgid "Data Ranges"
-msgstr "Области с данни"
+msgid "Objects, Graphics, and Bitmaps"
+msgstr "Обекти, графики и растерни изображения"
-#: scalc.tree
+#: simpress.tree
msgctxt ""
-"scalc.tree\n"
-"0809\n"
+"simpress.tree\n"
+"0408\n"
"node.text"
-msgid "Pivot Table"
-msgstr "Обобщаваща таблица"
+msgid "Groups and Layers"
+msgstr "Групи и слоеве"
-#: scalc.tree
+#: simpress.tree
msgctxt ""
-"scalc.tree\n"
-"0810\n"
+"simpress.tree\n"
+"0409\n"
"node.text"
-msgid "Scenarios"
-msgstr "Сценарии"
+msgid "Text in Presentations and Drawings"
+msgstr "Текст в презентации и рисунки"
-#: scalc.tree
+#: simpress.tree
msgctxt ""
-"scalc.tree\n"
-"0811\n"
+"simpress.tree\n"
+"0410\n"
"node.text"
-msgid "References"
-msgstr "Обръщения"
+msgid "Viewing"
+msgstr "Преглеждане"
-#: scalc.tree
+#: smath.tree
msgctxt ""
-"scalc.tree\n"
-"0812\n"
+"smath.tree\n"
+"03\n"
+"help_section.text"
+msgid "Formulas"
+msgstr "Формули"
+
+#: smath.tree
+msgctxt ""
+"smath.tree\n"
+"0301\n"
"node.text"
-msgid "Viewing, Selecting, Copying"
-msgstr "Преглеждане, избиране, копиране"
+msgid "General Information and User Interface Usage"
+msgstr "Обща информация и работа с потребителския интерфейс"
-#: scalc.tree
+#: smath.tree
msgctxt ""
-"scalc.tree\n"
-"0813\n"
+"smath.tree\n"
+"0302\n"
"node.text"
-msgid "Formulas and Calculations"
-msgstr "Формули и изчисления"
+msgid "Command and Menu Reference"
+msgstr "Справочник за командите и менютата"
-#: scalc.tree
+#: smath.tree
msgctxt ""
-"scalc.tree\n"
-"0814\n"
+"smath.tree\n"
+"0303\n"
"node.text"
-msgid "Protection"
-msgstr "Защита"
+msgid "Working with Formulas"
+msgstr "Работа с формули"
-#: scalc.tree
+#: swriter.tree
msgctxt ""
-"scalc.tree\n"
-"0815\n"
+"swriter.tree\n"
+"02\n"
+"help_section.text"
+msgid "Text Documents"
+msgstr "Текстови документи"
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0201\n"
"node.text"
-msgid "Miscellaneous"
-msgstr "Разни"
+msgid "General Information and User Interface Usage"
+msgstr "Обща информация и работа с потребителския интерфейс"
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0202\n"
+"node.text"
+msgid "Command and Menu Reference"
+msgstr "Справочник за командите и менютата"
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"020201\n"
+"node.text"
+msgid "Menus"
+msgstr "Менюта"
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"020202\n"
+"node.text"
+msgid "Toolbars"
+msgstr "Ленти с инструменти"
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0203\n"
+"node.text"
+msgid "Creating Text Documents"
+msgstr "Създаване на текстови документи"
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0204\n"
+"node.text"
+msgid "Graphics in Text Documents"
+msgstr "Графики в текстови документи"
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0205\n"
+"node.text"
+msgid "Tables in Text Documents"
+msgstr "Таблици в текстови документи"
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0206\n"
+"node.text"
+msgid "Objects in Text Documents"
+msgstr "Обекти в текстови документи"
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0207\n"
+"node.text"
+msgid "Sections and Frames in Text Documents"
+msgstr "Раздели и рамки в текстови документи"
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0208\n"
+"node.text"
+msgid "Tables of Contents and Indexes"
+msgstr "Таблици на съдържанието и указатели"
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0209\n"
+"node.text"
+msgid "Fields in Text Documents"
+msgstr "Полета в текстови документи"
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0210\n"
+"node.text"
+msgid "Navigating Text Documents"
+msgstr "Навигация в текстови документи"
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0211\n"
+"node.text"
+msgid "Calculating in Text Documents"
+msgstr "Изчисления в текстови документи"
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0212\n"
+"node.text"
+msgid "Formatting Text Documents"
+msgstr "Форматиране на текстови документи"
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"021201\n"
+"node.text"
+msgid "Templates and Styles"
+msgstr "Шаблони и стилове"
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0213\n"
+"node.text"
+msgid "Special Text Elements"
+msgstr "Специални текстови елементи"
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0214\n"
+"node.text"
+msgid "Automatic Functions"
+msgstr "Автоматични функции"
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0215\n"
+"node.text"
+msgid "Numbering and Lists"
+msgstr "Номерация и списъци"
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0216\n"
+"node.text"
+msgid "Spellchecking, Thesaurus, and Languages"
+msgstr "Проверка на правописа, синонимни речници и езици"
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0218\n"
+"node.text"
+msgid "Troubleshooting Tips"
+msgstr "Съвети за решаване на проблеми"
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0219\n"
+"node.text"
+msgid "Loading, Saving, Importing, and Exporting"
+msgstr "Зареждане, запазване, импортиране и експортиране"
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0220\n"
+"node.text"
+msgid "Master Documents"
+msgstr "Главни документи"
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0221\n"
+"node.text"
+msgid "Links and References"
+msgstr "Връзки и препратки"
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0222\n"
+"node.text"
+msgid "Printing"
+msgstr "Печатане"
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0223\n"
+"node.text"
+msgid "Searching and Replacing"
+msgstr "Търсене и замяна"
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"06\n"
+"help_section.text"
+msgid "HTML Documents"
+msgstr "Документи на HTML"
diff --git a/source/bg/helpcontent2/source/text/sbasic/guide.po b/source/bg/helpcontent2/source/text/sbasic/guide.po
index 2020aa75fff..d356894d6d4 100644
--- a/source/bg/helpcontent2/source/text/sbasic/guide.po
+++ b/source/bg/helpcontent2/source/text/sbasic/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-10 11:44+0100\n"
+"POT-Creation-Date: 2013-05-23 12:05+0200\n"
"PO-Revision-Date: 2012-12-02 17:14+0000\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,6 +16,49 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-POOTLE-MTIME: 1354468478.0\n"
+#: control_properties.xhp
+msgctxt ""
+"control_properties.xhp\n"
+"tit\n"
+"help.text"
+msgid "Changing the Properties of Controls in the Dialog Editor"
+msgstr "Свойства на елементите за управление в редактора на диалогови прозорци"
+
+#: 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>свойства; елементи за управление в редактора на диалози</bookmark_value><bookmark_value>промяна;свойства на елемент за управление</bookmark_value><bookmark_value>елементи за управление;промяна на свойства</bookmark_value><bookmark_value>редактор на диалогови прозорци;свойства на елементите за управление</bookmark_value>"
+
+#: control_properties.xhp
+msgctxt ""
+"control_properties.xhp\n"
+"hd_id3145786\n"
+"1\n"
+"help.text"
+msgid "<variable id=\"control_properties\"><link href=\"text/sbasic/guide/control_properties.xhp\" name=\"Changing the Properties of Controls in the Dialog Editor\">Changing the Properties of Controls in the Dialog Editor</link></variable>"
+msgstr "<variable id=\"control_properties\"><link href=\"text/sbasic/guide/control_properties.xhp\" name=\"Свойства на елементите за управление в редактора на диалогови прозорци\">Свойства на елементите за управление в редактора на диалогови прозорци</link></variable>"
+
+#: control_properties.xhp
+msgctxt ""
+"control_properties.xhp\n"
+"par_id3147317\n"
+"2\n"
+"help.text"
+msgid "You can set the properties of control that you add to a dialog. For example, you can change the color, name, and size of a button that you added. You can change most control properties when you create or edit a dialog. However, you can only change some properties at runtime."
+msgstr "Можете да задавате свойствата на елементите за управление, които добавяте в диалоговите прозорци, например цветове, имена и размери. Повечето свойства са достъпни за промяна докато създавате или редактирате диалоговия прозорец. Някои обаче могат да се променят само по време на изпълнение."
+
+#: control_properties.xhp
+msgctxt ""
+"control_properties.xhp\n"
+"par_id3145749\n"
+"3\n"
+"help.text"
+msgid "To change the properties of a control in design mode, right-click the control, and then choose <emph>Properties</emph>."
+msgstr "За да промените свойствата на елемент за управление в режим „Проектиране“, щракнете с десния бутон върху елемента за управление и изберете <emph>Свойства</emph>."
+
#: create_dialog.xhp
msgctxt ""
"create_dialog.xhp\n"
@@ -346,48 +389,66 @@ msgctxt ""
msgid "REM remove the first entry from the ListBox"
msgstr "REM Премахване на първия елемент от списъчното поле"
-#: control_properties.xhp
+#: show_dialog.xhp
msgctxt ""
-"control_properties.xhp\n"
+"show_dialog.xhp\n"
"tit\n"
"help.text"
-msgid "Changing the Properties of Controls in the Dialog Editor"
-msgstr "Свойства на елементите за управление в редактора на диалогови прозорци"
+msgid "Opening a Dialog With Program Code"
+msgstr "Отваряне на диалогов прозорец с програмен код"
-#: control_properties.xhp
+#: show_dialog.xhp
msgctxt ""
-"control_properties.xhp\n"
-"bm_id3145786\n"
+"show_dialog.xhp\n"
+"bm_id3154140\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>свойства; елементи за управление в редактора на диалози</bookmark_value><bookmark_value>промяна;свойства на елемент за управление</bookmark_value><bookmark_value>елементи за управление;промяна на свойства</bookmark_value><bookmark_value>редактор на диалогови прозорци;свойства на елементите за управление</bookmark_value>"
+msgid "<bookmark_value>module/dialog toggle</bookmark_value><bookmark_value>dialogs;using program code to show (example)</bookmark_value><bookmark_value>examples; showing a dialog using program code</bookmark_value>"
+msgstr "<bookmark_value>модул/диалогов прозорец, превключване</bookmark_value><bookmark_value>диалогови прозорци;показване чрез програмен код (пример)</bookmark_value><bookmark_value>примери; показване на диалогов прозорец чрез програмен код</bookmark_value>"
-#: control_properties.xhp
+#: show_dialog.xhp
msgctxt ""
-"control_properties.xhp\n"
-"hd_id3145786\n"
+"show_dialog.xhp\n"
+"hd_id3154140\n"
"1\n"
"help.text"
-msgid "<variable id=\"control_properties\"><link href=\"text/sbasic/guide/control_properties.xhp\" name=\"Changing the Properties of Controls in the Dialog Editor\">Changing the Properties of Controls in the Dialog Editor</link></variable>"
-msgstr "<variable id=\"control_properties\"><link href=\"text/sbasic/guide/control_properties.xhp\" name=\"Свойства на елементите за управление в редактора на диалогови прозорци\">Свойства на елементите за управление в редактора на диалогови прозорци</link></variable>"
+msgid "<variable id=\"show_dialog\"><link href=\"text/sbasic/guide/show_dialog.xhp\" name=\"Opening a Dialog With Program Code\">Opening a Dialog With Program Code</link></variable>"
+msgstr "<variable id=\"show_dialog\"><link href=\"text/sbasic/guide/show_dialog.xhp\" name=\"Отваряне на диалогов прозорец с програмен код\">Отваряне на диалогов прозорец с програмен код</link></variable>"
-#: control_properties.xhp
+#: show_dialog.xhp
msgctxt ""
-"control_properties.xhp\n"
-"par_id3147317\n"
+"show_dialog.xhp\n"
+"par_id3145171\n"
"2\n"
"help.text"
-msgid "You can set the properties of control that you add to a dialog. For example, you can change the color, name, and size of a button that you added. You can change most control properties when you create or edit a dialog. However, you can only change some properties at runtime."
-msgstr "Можете да задавате свойствата на елементите за управление, които добавяте в диалоговите прозорци, например цветове, имена и размери. Повечето свойства са достъпни за промяна докато създавате или редактирате диалоговия прозорец. Някои обаче могат да се променят само по време на изпълнение."
+msgid "In the <item type=\"productname\">%PRODUCTNAME</item> BASIC window for a dialog that you created, leave the dialog editor by clicking the name tab of the Module that the dialog is assigned to. The name tab is at the bottom of the window."
+msgstr "В прозореца на <item type=\"productname\">%PRODUCTNAME</item> BASIC за създаден от вас диалог напуснете редактора на диалози, като щракнете върху етикета с името на модула, на който е приписан диалоговият прозорец. Етикетът с името е в долния край на прозореца."
-#: control_properties.xhp
+#: show_dialog.xhp
msgctxt ""
-"control_properties.xhp\n"
-"par_id3145749\n"
-"3\n"
+"show_dialog.xhp\n"
+"par_id3153968\n"
+"6\n"
"help.text"
-msgid "To change the properties of a control in design mode, right-click the control, and then choose <emph>Properties</emph>."
-msgstr "За да промените свойствата на елемент за управление в режим „Проектиране“, щракнете с десния бутон върху елемента за управление и изберете <emph>Свойства</emph>."
+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 "Въведете следния код за подпрограма с име „Dialog1Show“. В този пример името на създадения от вас диалогов прозорец е „Dialog1“:"
+
+#: show_dialog.xhp
+msgctxt ""
+"show_dialog.xhp\n"
+"par_id3152596\n"
+"18\n"
+"help.text"
+msgid "Without using \"LoadDialog\" you can call the code as follows:"
+msgstr "Без използване на „LoadDialog“ можете да извикате кода както следва:"
+
+#: show_dialog.xhp
+msgctxt ""
+"show_dialog.xhp\n"
+"par_id3153157\n"
+"16\n"
+"help.text"
+msgid "When you execute this code, \"Dialog1\" opens. To close the dialog, click the close button (x) on its title bar."
+msgstr "При изпълняване на този код се отваря „Dialog1“. За да затворите диалоговия прозорец, натиснете бутона за затваряне (x) в заглавната му лента."
#: translation.xhp
msgctxt ""
@@ -660,64 +721,3 @@ msgctxt ""
"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 "Ако потребителят използва по-стара версия на %PRODUCTNAME, която не разпознава локализируемите текстови ресурси за диалогови прозорци на Basic, ще се виждат низовете на подразбирания език."
-
-#: show_dialog.xhp
-msgctxt ""
-"show_dialog.xhp\n"
-"tit\n"
-"help.text"
-msgid "Opening a Dialog With Program Code"
-msgstr "Отваряне на диалогов прозорец с програмен код"
-
-#: 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 program code to show (example)</bookmark_value><bookmark_value>examples; showing a dialog using program code</bookmark_value>"
-msgstr "<bookmark_value>модул/диалогов прозорец, превключване</bookmark_value><bookmark_value>диалогови прозорци;показване чрез програмен код (пример)</bookmark_value><bookmark_value>примери; показване на диалогов прозорец чрез програмен код</bookmark_value>"
-
-#: show_dialog.xhp
-msgctxt ""
-"show_dialog.xhp\n"
-"hd_id3154140\n"
-"1\n"
-"help.text"
-msgid "<variable id=\"show_dialog\"><link href=\"text/sbasic/guide/show_dialog.xhp\" name=\"Opening a Dialog With Program Code\">Opening a Dialog With Program Code</link></variable>"
-msgstr "<variable id=\"show_dialog\"><link href=\"text/sbasic/guide/show_dialog.xhp\" name=\"Отваряне на диалогов прозорец с програмен код\">Отваряне на диалогов прозорец с програмен код</link></variable>"
-
-#: show_dialog.xhp
-msgctxt ""
-"show_dialog.xhp\n"
-"par_id3145171\n"
-"2\n"
-"help.text"
-msgid "In the <item type=\"productname\">%PRODUCTNAME</item> BASIC window for a dialog that you created, leave the dialog editor by clicking the name tab of the Module that the dialog is assigned to. The name tab is at the bottom of the window."
-msgstr "В прозореца на <item type=\"productname\">%PRODUCTNAME</item> BASIC за създаден от вас диалог напуснете редактора на диалози, като щракнете върху етикета с името на модула, на който е приписан диалоговият прозорец. Етикетът с името е в долния край на прозореца."
-
-#: show_dialog.xhp
-msgctxt ""
-"show_dialog.xhp\n"
-"par_id3153968\n"
-"6\n"
-"help.text"
-msgid "Enter the following code for a subroutine called <emph>Dialog1Show</emph>. In this example, the name of the dialog that you created is \"Dialog1\":"
-msgstr "Въведете следния код за подпрограма с име „Dialog1Show“. В този пример името на създадения от вас диалогов прозорец е „Dialog1“:"
-
-#: show_dialog.xhp
-msgctxt ""
-"show_dialog.xhp\n"
-"par_id3152596\n"
-"18\n"
-"help.text"
-msgid "Without using \"LoadDialog\" you can call the code as follows:"
-msgstr "Без използване на „LoadDialog“ можете да извикате кода както следва:"
-
-#: show_dialog.xhp
-msgctxt ""
-"show_dialog.xhp\n"
-"par_id3153157\n"
-"16\n"
-"help.text"
-msgid "When you execute this code, \"Dialog1\" opens. To close the dialog, click the close button (x) on its title bar."
-msgstr "При изпълняване на този код се отваря „Dialog1“. За да затворите диалоговия прозорец, натиснете бутона за затваряне (x) в заглавната му лента."
diff --git a/source/bg/helpcontent2/source/text/sbasic/shared.po b/source/bg/helpcontent2/source/text/sbasic/shared.po
index 9179819a382..344813397c3 100644
--- a/source/bg/helpcontent2/source/text/sbasic/shared.po
+++ b/source/bg/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-10 11:44+0100\n"
+"POT-Creation-Date: 2013-05-23 12:05+0200\n"
"PO-Revision-Date: 2012-12-03 01:24+0000\n"
"Last-Translator: mbalabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,6 +16,5040 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-POOTLE-MTIME: 1354497886.0\n"
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"tit\n"
+"help.text"
+msgid "$[officename] Basic Glossary"
+msgstr "Речник за $[officename] Basic"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"hd_id3145068\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/00000002.xhp\" name=\"$[officename] Basic Glossary\">$[officename] Basic Glossary</link>"
+msgstr "<link href=\"text/sbasic/shared/00000002.xhp\" name=\"Речник за $[officename] Basic\">Речник за $[officename] Basic</link>"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3150792\n"
+"2\n"
+"help.text"
+msgid "This glossary explains some technical terms that you may come across when working with $[officename] Basic."
+msgstr "Речникът пояснява някои технически термини, които можете да срещнете при работа с $[officename] Basic."
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"hd_id3155133\n"
+"7\n"
+"help.text"
+msgid "Decimal Point"
+msgstr "Десетична точка"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3156443\n"
+"8\n"
+"help.text"
+msgid "When converting numbers, $[officename] Basic uses the locale settings of the system for determining the type of decimal and thousand separator."
+msgstr "При преобразуване на числа $[officename] Basic използва настройките за локал на системата, за да определи вида на разделителя на дробната част и на хилядите."
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3153092\n"
+"9\n"
+"help.text"
+msgid "The behavior has an effect on both the implicit conversion ( 1 + \"2.3\" = 3.3 ) as well as the runtime function <link href=\"text/sbasic/shared/03102700.xhp\" name=\"IsNumeric\">IsNumeric</link>."
+msgstr "Това влияе както върху неявното преобразуване ( 1 + \"2.3\" = 3.3 ), така и върху функцията <link href=\"text/sbasic/shared/03102700.xhp\" name=\"IsNumeric\">IsNumeric</link> по време на изпълнение."
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"hd_id3155854\n"
+"29\n"
+"help.text"
+msgid "Colors"
+msgstr "Цветове"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3145366\n"
+"30\n"
+"help.text"
+msgid "In $[officename] Basic, colors are treated as long integer value. The return value of color queries is also always a long integer value. When defining properties, colors can be specified using their RGB code that is converted to a long integer value using the <link href=\"text/sbasic/shared/03010305.xhp\" name=\"RGB function\">RGB function</link>."
+msgstr "В $[officename] Basic цветовете се обработват като целочислени стойности. Стойността, съответстваща на цвят, винаги е дълго цяло число (long integer). При дефиниране на свойства цветовете могат да се задават чрез код RGB, който се преобразува в дълга целочислена стойност чрез <link href=\"text/sbasic/shared/03010305.xhp\" name=\"функция RGB\">функцията RGB</link>."
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"hd_id3146119\n"
+"32\n"
+"help.text"
+msgid "Measurement Units"
+msgstr "Мерни единици"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3154013\n"
+"33\n"
+"help.text"
+msgid "In $[officename] Basic, a <emph>method parameter</emph> or a <emph>property</emph> expecting unit information can be specified either as integer or long integer expression without a unit, or as a character string containing a unit. If no unit is passed to the method the default unit defined for the active document type will be used. If the parameter is passed as a character string containing a measurement unit, the default setting will be ignored. The default measurement unit for a document type can be set under <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - (Document Type) - General</emph>."
+msgstr "В $[officename] Basic <emph>параметър на метод</emph> или <emph>свойство</emph>, приемащо информация в мерни единици, може да се зададе като израз от тип integer или long integer или като знаков низ, съдържащ и мерната единица. Ако не бъде подадена мерна единица, методът ще използва подразбираната мерна единица за типа на активния документ. Ако параметърът е знаков низ, съдържащ мерна единица, подразбираната настройка ще бъде пренебрегната. Подразбираната мерна единиц аза даден тип документи може да бъде зададена в <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Свойства</caseinline><defaultinline>Инструменти - Настройки</defaultinline></switchinline> - (вид документ) - Общи</emph>."
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"bm_id3145801\n"
+"help.text"
+msgid "<bookmark_value>twips; definition</bookmark_value>"
+msgstr "<bookmark_value>туипове; определение</bookmark_value>"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"hd_id3145801\n"
+"5\n"
+"help.text"
+msgid "Twips"
+msgstr "Туипове"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3154731\n"
+"6\n"
+"help.text"
+msgid "A twip is a screen-independent unit which is used to define the uniform position and size of screen elements on all display systems. A twip is 1/1440th of an inch or 1/20 of a printer's point. There are 1440 twips to an inch or about 567 twips to a centimeter."
+msgstr "Туип (twip) е независима от екрана мерна единица, чрез която се задават унифицирано позициите и размерите на екранните елементи върху всякакъв дисплей. Туипът е 1/1440 от инча или 1/20 от пункта. В един инч има 1440 туипа, а в един сантиметър – 567 туипа."
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"hd_id3153159\n"
+"106\n"
+"help.text"
+msgid "URL Notation"
+msgstr "URL адреси"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3153415\n"
+"108\n"
+"help.text"
+msgid "URLs (<emph>Uniform Resource Locators</emph>) are used to determine the location of a resource like a file in a file system, typically inside a network environment. A URL consists of a protocol specifier, a host specifier and a file and path specifier:"
+msgstr "URL адресите (<emph>Uniform Resource Locators</emph>, унифицирани локатори на ресурси) служат за определяне на местоположението на ресурс, например файл във файлова система, обикновено при работа в мрежа. URL адресът се състои от спецификатор на протокол, спецификатор на хост и спецификатор на път:"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3149121\n"
+"107\n"
+"help.text"
+msgid "<emph>protocol</emph>://<emph>host.name</emph>/<emph>path/to/the/file.html</emph>"
+msgstr "<emph>протокол</emph>://<emph>име.на.хост</emph>/<emph>път/до/файл.html</emph>"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3168612\n"
+"109\n"
+"help.text"
+msgid "The most common usage of URLs is on the internet when specifying web pages. Example for protocols are <emph>http</emph>, <emph>ftp</emph>, or <emph>file</emph>. The <emph>file</emph> protocol specifier is used when referring to a file on the local file system."
+msgstr "Най-разпространената употреба на URL адреси е задаването на адреси на уебстраници в Интернет. Означението за протокол може да бъде например <emph>http</emph>, <emph>ftp</emph> или <emph>file</emph>. Спецификаторът на протокол <emph>file</emph> се използва при посочване на файл в локалната файлова система."
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3150324\n"
+"110\n"
+"help.text"
+msgid "URL notation does not allow certain special characters to be used. These are either replaced by other characters or encoded. A slash (<emph>/</emph>) is used as a path separator. For example, a file referred to as <emph>C:\\My File.sxw</emph> on the local host in \"Windows notation\" becomes <emph>file:///C|/My%20File.sxw</emph> in URL notation."
+msgstr "Синтаксисът на URL не позволява използването на някои специални знаци. Те или се заместват с други, или се кодират. Наклонената черта (<emph>/</emph>) се използва като разделител в пътища. Например файлът, посочен като <emph>C:\\My File.sxw</emph> в локалния компютър чрез синтаксиса на Windows, се цитира като <emph>file:///C|/My%20File.sxw</emph> според синтаксиса на URL."
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"tit\n"
+"help.text"
+msgid "Information"
+msgstr "Информация"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id3148550\n"
+"1\n"
+"help.text"
+msgid "Information"
+msgstr "Информация"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3153381\n"
+"102\n"
+"help.text"
+msgid "You can set the locale used for controlling the formatting numbers, dates and currencies in $[officename] Basic in <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - 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 "Можете да задавате локала, използван за форматиране на числа, дати и парични суми в $[officename] Basic, в <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Свойства</caseinline><defaultinline>Инструменти - Настройки</defaultinline></switchinline> - Езикови настройки - Езици</emph>. Във форматиращите кодове на Basic десетичната точка(<emph>.</emph>) винаги се използва като <emph>заместител</emph> за дробния разделител от локала и се замества автоматично със съответния знак."
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3150870\n"
+"103\n"
+"help.text"
+msgid "The same applies to the locale settings for date, time and currency formats. The Basic format code will be interpreted and displayed according to your locale setting."
+msgstr "Същото важи за настройките за формат на дата, час и валута от локала. Кодът на формат в Basic ще бъде интерпретиран и изписан според настройките на локала."
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3156424\n"
+"2\n"
+"help.text"
+msgid "The color values of the 16 basic colors are as follows:"
+msgstr "Стойностите за шестнайсетте основни цвята са както следва:"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3153091\n"
+"3\n"
+"help.text"
+msgid "<emph>Color Value</emph>"
+msgstr "<emph>Стойност на цвят</emph>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3154319\n"
+"4\n"
+"help.text"
+msgid "<emph>Color Name</emph>"
+msgstr "<emph>Име на цвят</emph>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3151112\n"
+"5\n"
+"help.text"
+msgid "0"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3155854\n"
+"6\n"
+"help.text"
+msgid "Black"
+msgstr "Черно"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3154942\n"
+"7\n"
+"help.text"
+msgid "128"
+msgstr "128"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3154731\n"
+"8\n"
+"help.text"
+msgid "Blue"
+msgstr "Синьо"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3145645\n"
+"9\n"
+"help.text"
+msgid "32768"
+msgstr "32768"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3149400\n"
+"10\n"
+"help.text"
+msgid "Green"
+msgstr "Зелено"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3150753\n"
+"11\n"
+"help.text"
+msgid "32896"
+msgstr "32896"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3153765\n"
+"12\n"
+"help.text"
+msgid "Cyan"
+msgstr "Синьозелено"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3154756\n"
+"13\n"
+"help.text"
+msgid "8388608"
+msgstr "8388608"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3159266\n"
+"14\n"
+"help.text"
+msgid "Red"
+msgstr "Червено"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3163807\n"
+"15\n"
+"help.text"
+msgid "8388736"
+msgstr "8388736"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3145150\n"
+"16\n"
+"help.text"
+msgid "Magenta"
+msgstr "Пурпурно"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3147002\n"
+"17\n"
+"help.text"
+msgid "8421376"
+msgstr "8421376"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3152778\n"
+"18\n"
+"help.text"
+msgid "Yellow"
+msgstr "Жълто"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3150088\n"
+"19\n"
+"help.text"
+msgid "8421504"
+msgstr "8421504"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3159239\n"
+"20\n"
+"help.text"
+msgid "White"
+msgstr "Бяло"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3150206\n"
+"21\n"
+"help.text"
+msgid "12632256"
+msgstr "12632256"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3149817\n"
+"22\n"
+"help.text"
+msgid "Gray"
+msgstr "Сиво"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3150363\n"
+"23\n"
+"help.text"
+msgid "255"
+msgstr "255"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3154576\n"
+"24\n"
+"help.text"
+msgid "Light blue"
+msgstr "Светло синьо"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3150367\n"
+"25\n"
+"help.text"
+msgid "65280"
+msgstr "65280"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3150202\n"
+"26\n"
+"help.text"
+msgid "Light green"
+msgstr "Светло зелено"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3154487\n"
+"27\n"
+"help.text"
+msgid "65535"
+msgstr "65535"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3151332\n"
+"28\n"
+"help.text"
+msgid "Light cyan"
+msgstr "Светло синьозелено"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3148702\n"
+"29\n"
+"help.text"
+msgid "16711680"
+msgstr "16711680"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3153067\n"
+"30\n"
+"help.text"
+msgid "Light red"
+msgstr "Светло червено"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3153912\n"
+"31\n"
+"help.text"
+msgid "16711935"
+msgstr "16711935"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3159097\n"
+"32\n"
+"help.text"
+msgid "Light magenta"
+msgstr "Светло пурпурно"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3155266\n"
+"33\n"
+"help.text"
+msgid "16776960"
+msgstr "16776960"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3157978\n"
+"34\n"
+"help.text"
+msgid "Light yellow"
+msgstr "Светло жълто"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3153286\n"
+"35\n"
+"help.text"
+msgid "16777215"
+msgstr "16777215"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3151302\n"
+"36\n"
+"help.text"
+msgid "Transparent white"
+msgstr "Прозрачно бяло"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id3152869\n"
+"37\n"
+"help.text"
+msgid "<variable id=\"errorcode\">Error Codes</variable>"
+msgstr "<variable id=\"errorcode\">Кодове за грешка</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id315509599\n"
+"help.text"
+msgid "<variable id=\"err1\">1 An exception occurred</variable>"
+msgstr "<variable id=\"err1\">1 Възникнало е изключение</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3155095\n"
+"38\n"
+"help.text"
+msgid "<variable id=\"err2\">2 Syntax error</variable>"
+msgstr "<variable id=\"err2\">2 Синтактична грешка</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3149126\n"
+"39\n"
+"help.text"
+msgid "<variable id=\"err3\">3 Return without Gosub</variable>"
+msgstr "<variable id=\"err3\">3 Return без Gosub</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3153976\n"
+"40\n"
+"help.text"
+msgid "<variable id=\"err4\">4 Incorrect entry; please retry</variable>"
+msgstr "<variable id=\"err4\">4 Неправилни входни данни, опитайте отново</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3150891\n"
+"41\n"
+"help.text"
+msgid "<variable id=\"err5\">5 Invalid procedure call</variable>"
+msgstr "<variable id=\"err5\">5 Невалидно извикване на процедура</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3159227\n"
+"42\n"
+"help.text"
+msgid "<variable id=\"err6\">6 Overflow</variable>"
+msgstr "<variable id=\"err6\">6 Препълване</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3154649\n"
+"43\n"
+"help.text"
+msgid "<variable id=\"err7\">7 Not enough memory</variable>"
+msgstr "<variable id=\"err7\">7 Недостиг на памет</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3150050\n"
+"44\n"
+"help.text"
+msgid "<variable id=\"err8\">8 Array already dimensioned</variable>"
+msgstr "<variable id=\"err8\">8 Масивът вече е оразмерен</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3148900\n"
+"45\n"
+"help.text"
+msgid "<variable id=\"err9\">9 Index out of defined range</variable>"
+msgstr "<variable id=\"err9\">9 Индекс извън дефинирания обхват</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3153806\n"
+"46\n"
+"help.text"
+msgid "<variable id=\"err10\">10 Duplicate definition</variable>"
+msgstr "<variable id=\"err10\">10 Дублирана дефиниция</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3146963\n"
+"47\n"
+"help.text"
+msgid "<variable id=\"err11\">11 Division by zero</variable>"
+msgstr "<variable id=\"err11\">11 Деление на нула</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3153013\n"
+"48\n"
+"help.text"
+msgid "<variable id=\"err12\">12 Variable not defined</variable>"
+msgstr "<variable id=\"err12\">12 Променливата не е дефинирана</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3155593\n"
+"49\n"
+"help.text"
+msgid "<variable id=\"err13\">13 Data type mismatch</variable>"
+msgstr "<variable id=\"err13\">13 Несъответствие на типовете</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3151197\n"
+"50\n"
+"help.text"
+msgid "<variable id=\"err14\">14 Invalid parameter</variable>"
+msgstr "<variable id=\"err14\">14 Невалиден параметър</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3154710\n"
+"51\n"
+"help.text"
+msgid "<variable id=\"err18\">18 Process interrupted by user</variable>"
+msgstr "<variable id=\"err18\">18 Процесът е прекъснат от потребителя </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3147504\n"
+"52\n"
+"help.text"
+msgid "<variable id=\"err20\">20 Resume without error</variable>"
+msgstr "<variable id=\"err20\">20 Продължаване без грешка</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3145319\n"
+"53\n"
+"help.text"
+msgid "<variable id=\"err28\">28 Not enough stack memory</variable>"
+msgstr "<variable id=\"err28\">28 Няма повече памет за стек</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3146110\n"
+"54\n"
+"help.text"
+msgid "<variable id=\"err35\">35 Sub-procedure or function procedure not defined</variable>"
+msgstr "<variable id=\"err35\">35 Процедурата или функцията не е дефинирана</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3147246\n"
+"55\n"
+"help.text"
+msgid "<variable id=\"err48\">48 Error loading DLL file</variable>"
+msgstr "<variable id=\"err48\">48 Грешка при зареждане на DLL</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3146101\n"
+"56\n"
+"help.text"
+msgid "<variable id=\"err49\">49 Wrong DLL call convention</variable>"
+msgstr "<variable id=\"err49\">49 Неправилна конвенция за обръщение към DLL</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3153957\n"
+"57\n"
+"help.text"
+msgid "<variable id=\"err51\">51 Internal error</variable>"
+msgstr "<variable id=\"err51\">51 Вътрешна грешка</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3154404\n"
+"58\n"
+"help.text"
+msgid "<variable id=\"err52\">52 Invalid file name or file number</variable>"
+msgstr "<variable id=\"err52\">52 Лошо име или номер на файл</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3151338\n"
+"59\n"
+"help.text"
+msgid "<variable id=\"err53\">53 File not found</variable>"
+msgstr "<variable id=\"err53\">53 Файлът не е намерен</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3147298\n"
+"60\n"
+"help.text"
+msgid "<variable id=\"err54\">54 Incorrect file mode</variable>"
+msgstr "<variable id=\"err54\">54 Неправилен режим на файл</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3148747\n"
+"61\n"
+"help.text"
+msgid "<variable id=\"err55\">55 File already open</variable>"
+msgstr "<variable id=\"err55\">55 Файлът вече е отворен</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3145233\n"
+"62\n"
+"help.text"
+msgid "<variable id=\"err57\">57 Device I/O error</variable>"
+msgstr "<variable id=\"err57\">57 Входно-изходна грешка на устройство</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3156399\n"
+"63\n"
+"help.text"
+msgid "<variable id=\"err58\">58 File already exists</variable>"
+msgstr "<variable id=\"err58\">58 Файлът вече съществува</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3149324\n"
+"64\n"
+"help.text"
+msgid "<variable id=\"err59\">59 Incorrect record length</variable>"
+msgstr "<variable id=\"err59\">59 Неправилна дължина на запис</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3147409\n"
+"65\n"
+"help.text"
+msgid "<variable id=\"err61\">61 Disk or hard drive full</variable>"
+msgstr "<variable id=\"err61\">61 Дискът е пълен</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3149146\n"
+"66\n"
+"help.text"
+msgid "<variable id=\"err62\">62 Reading exceeds EOF</variable>"
+msgstr "<variable id=\"err62\">62 Четене след EOF</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3150456\n"
+"67\n"
+"help.text"
+msgid "<variable id=\"err63\">63 Incorrect record number</variable>"
+msgstr "<variable id=\"err63\">63 Неправилен номер на запис</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3146883\n"
+"68\n"
+"help.text"
+msgid "<variable id=\"err67\">67 Too many files</variable>"
+msgstr "<variable id=\"err67\">67 Твърде много файлове</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3146818\n"
+"69\n"
+"help.text"
+msgid "<variable id=\"err68\">68 Device not available</variable>"
+msgstr "<variable id=\"err68\">68 Устройството не е налично</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3145225\n"
+"70\n"
+"help.text"
+msgid "<variable id=\"err70\">70 Access denied</variable>"
+msgstr "<variable id=\"err70\">70 Отказан достъп</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3150372\n"
+"71\n"
+"help.text"
+msgid "<variable id=\"err71\">71 Disk not ready</variable>"
+msgstr "<variable id=\"err71\">71 Дискът не е готов</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3148894\n"
+"72\n"
+"help.text"
+msgid "<variable id=\"err73\">73 Not implemented</variable>"
+msgstr "<variable id=\"err73\">73 Не е реализирано</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3152981\n"
+"73\n"
+"help.text"
+msgid "<variable id=\"err74\">74 Renaming on different drives impossible</variable>"
+msgstr "<variable id=\"err74\">74 Преименуване към друго устройство не е възможно</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3149355\n"
+"74\n"
+"help.text"
+msgid "<variable id=\"err75\">75 Path/file access error</variable>"
+msgstr "<variable id=\"err75\">75 Грешка при достъп до път/файл</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3150477\n"
+"75\n"
+"help.text"
+msgid "<variable id=\"err76\">76 Path not found</variable>"
+msgstr "<variable id=\"err76\">76 Пътят не е намерен</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3154678\n"
+"76\n"
+"help.text"
+msgid "<variable id=\"err91\">91 Object variable not set</variable>"
+msgstr "<variable id=\"err91\">91 Обектна променлива без стойност</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3149890\n"
+"77\n"
+"help.text"
+msgid "<variable id=\"err93\">93 Invalid string pattern</variable>"
+msgstr "<variable id=\"err93\">93 Невалиден низ за шаблон</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3146942\n"
+"78\n"
+"help.text"
+msgid "<variable id=\"err94\">94 Use of zero not permitted</variable>"
+msgstr "<variable id=\"err94\">94 Не е разрешено използване на нула</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469429\n"
+"help.text"
+msgid "<variable id=\"err250\">250 DDE Error</variable>"
+msgstr "<variable id=\"err250\">250 Грешка в DDE</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469428\n"
+"help.text"
+msgid "<variable id=\"err280\">280 Awaiting response to DDE connection</variable>"
+msgstr "<variable id=\"err280\">280 Очаква се отговор на DDE връзка</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469427\n"
+"help.text"
+msgid "<variable id=\"err281\">281 No DDE channels available</variable>"
+msgstr "<variable id=\"err281\">281 Няма достъпни канали за DDE</variable>"
+
+#: 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 "<variable id=\"err282\">282 Никое приложение не е отговорило на опита за връзка през DDE</variable>"
+
+#: 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 "<variable id=\"err283\">283 Твърде много приложения са отговорили на опита за връзка през DDE</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469424\n"
+"help.text"
+msgid "<variable id=\"err284\">284 DDE channel locked</variable>"
+msgstr "<variable id=\"err284\">284 DDE каналът е заключен</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469423\n"
+"help.text"
+msgid "<variable id=\"err285\">285 External application cannot execute DDE operation</variable>"
+msgstr "<variable id=\"err285\">285 Външно приложение не може да изпълни операция на DDE</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469422\n"
+"help.text"
+msgid "<variable id=\"err286\">286 Timeout while waiting for DDE response</variable>"
+msgstr "<variable id=\"err286\">286 Изтече времето за изчакване на отговор от DDE</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469421\n"
+"help.text"
+msgid "<variable id=\"err287\">287 user pressed ESCAPE during DDE operation</variable>"
+msgstr "<variable id=\"err287\">287 Потребителят е натиснал ESCAPE по време на DDE</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469420\n"
+"help.text"
+msgid "<variable id=\"err288\">288 External application busy</variable>"
+msgstr "<variable id=\"err288\">288 Външното приложение е заето</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469419\n"
+"help.text"
+msgid "<variable id=\"err289\">289 DDE operation without data</variable>"
+msgstr "<variable id=\"err289\">289 DDE операция без данни</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469418\n"
+"help.text"
+msgid "<variable id=\"err290\">290 Data are in wrong format</variable>"
+msgstr "<variable id=\"err290\">290 Данните са в неправилен формат</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469417\n"
+"help.text"
+msgid "<variable id=\"err291\">291 External application has been terminated</variable>"
+msgstr "<variable id=\"err291\">291 Външното приложение е било прекратено</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469416\n"
+"help.text"
+msgid "<variable id=\"err292\">292 DDE connection interrupted or modified</variable>"
+msgstr "<variable id=\"err292\">292 DDE връзката е била прекъсната или променена</variable>"
+
+#: 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 "<variable id=\"err293\">293 Извикан е метод на DDE без отворен канал</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469414\n"
+"help.text"
+msgid "<variable id=\"err294\">294 Invalid DDE link format</variable>"
+msgstr "<variable id=\"err294\">294 Невалиден формат на DDE връзка</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469413\n"
+"help.text"
+msgid "<variable id=\"err295\">295 DDE message has been lost</variable>"
+msgstr "<variable id=\"err295\">295 Изгубено съобщение на DDE</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469412\n"
+"help.text"
+msgid "<variable id=\"err296\">296 Paste link already performed</variable>"
+msgstr "<variable id=\"err296\">296 Поставянето на връзката вече е извършено</variable>"
+
+#: 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 "<variable id=\"err297\">297 Не може да се зададе режим на връзката заради невалидна тема</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469410\n"
+"help.text"
+msgid "<variable id=\"err298\">298 DDE requires the DDEML.DLL file</variable>"
+msgstr "<variable id=\"err298\">298 DDE изисква файла DDEML.DLL</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3150028\n"
+"79\n"
+"help.text"
+msgid "<variable id=\"err323\">323 Module cannot be loaded; invalid format</variable>"
+msgstr "<variable id=\"err323\">323 Модулът не може да бъде зареден, невалиден формат</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3148434\n"
+"80\n"
+"help.text"
+msgid "<variable id=\"err341\">341 Invalid object index</variable>"
+msgstr "<variable id=\"err341\">341 Невалиден индекс на обект</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3143219\n"
+"81\n"
+"help.text"
+msgid "<variable id=\"err366\">366 Object is not available</variable>"
+msgstr "<variable id=\"err366\">366 Обектът не е наличен</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3144744\n"
+"82\n"
+"help.text"
+msgid "<variable id=\"err380\">380 Incorrect property value</variable>"
+msgstr "<variable id=\"err380\">380 Неправилна стойност на свойство</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3147420\n"
+"83\n"
+"help.text"
+msgid "<variable id=\"err382\">382 This property is read-only</variable>"
+msgstr "<variable id=\"err382\">382 Свойството е само за четене</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3147472\n"
+"84\n"
+"help.text"
+msgid "<variable id=\"err394\">394 This property is write-only</variable>"
+msgstr "<variable id=\"err394\">394 Свойството е само за писане</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3148583\n"
+"85\n"
+"help.text"
+msgid "<variable id=\"err420\">420 Invalid object reference</variable>"
+msgstr "<variable id=\"err420\">420 Невалидно обръщение към обект</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3153329\n"
+"86\n"
+"help.text"
+msgid "<variable id=\"err423\">423 Property or method not found</variable>"
+msgstr "<variable id=\"err423\">423 Свойството или методът не е намерен</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3148738\n"
+"87\n"
+"help.text"
+msgid "<variable id=\"err424\">424 Object required</variable>"
+msgstr "<variable id=\"err424\">424 Изисква се обект</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3159084\n"
+"88\n"
+"help.text"
+msgid "<variable id=\"err425\">425 Invalid use of an object</variable>"
+msgstr "<variable id=\"err425\">425 Невалидна употреба на обект</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3146806\n"
+"89\n"
+"help.text"
+msgid "<variable id=\"err430\">430 OLE Automation is not supported by this object</variable>"
+msgstr "<variable id=\"err430\">430 Обектът не поддържа OLE Automation</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3146130\n"
+"90\n"
+"help.text"
+msgid "<variable id=\"err438\">438 This property or method is not supported by the object</variable>"
+msgstr "<variable id=\"err438\">438 Обектът не поддържа това свойство или метод</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3154374\n"
+"91\n"
+"help.text"
+msgid "<variable id=\"err440\">440 OLE automation error</variable>"
+msgstr "<variable id=\"err440\">440 Грешка в OLE Automation</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3149685\n"
+"92\n"
+"help.text"
+msgid "<variable id=\"err445\">445 This action is not supported by given object</variable>"
+msgstr "<variable id=\"err445\">445 Обектът не поддържа това действие</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3150282\n"
+"93\n"
+"help.text"
+msgid "<variable id=\"err446\">446 Named arguments are not supported by given object</variable>"
+msgstr "<variable id=\"err446\">446 Обектът не поддържа наименувани аргументи</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3150142\n"
+"94\n"
+"help.text"
+msgid "<variable id=\"err447\">447 The current locale setting is not supported by the given object</variable>"
+msgstr "<variable id=\"err447\">447 Обектът не поддържа текущата настройка за локал</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3152771\n"
+"95\n"
+"help.text"
+msgid "<variable id=\"err448\">448 Named argument not found</variable>"
+msgstr "<variable id=\"err448\">448 Наименуваният аргумент не е намерен</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3145145\n"
+"96\n"
+"help.text"
+msgid "<variable id=\"err449\">449 Argument is not optional</variable>"
+msgstr "<variable id=\"err449\">449 Аргументът е задължителен</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3154399\n"
+"97\n"
+"help.text"
+msgid "<variable id=\"err450\">450 Invalid number of arguments</variable>"
+msgstr "<variable id=\"err450\">450 Грешен брой аргументи</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3146137\n"
+"98\n"
+"help.text"
+msgid "<variable id=\"err451\">451 Object is not a list</variable>"
+msgstr "<variable id=\"err451\">451 Обектът не е списък</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3149507\n"
+"99\n"
+"help.text"
+msgid "<variable id=\"err452\">452 Invalid ordinal number</variable>"
+msgstr "<variable id=\"err452\">452 Невалиден пореден номер</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3154566\n"
+"100\n"
+"help.text"
+msgid "<variable id=\"err453\">453 Specified DLL function not found</variable>"
+msgstr "<variable id=\"err453\">453 Указаната функция в DLL не е намерена</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3145595\n"
+"101\n"
+"help.text"
+msgid "<variable id=\"err460\">460 Invalid clipboard format</variable>"
+msgstr "<variable id=\"err460\">460 Невалиден формат на клипборда</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455951\n"
+"help.text"
+msgid "<variable id=\"err951\">951 Unexpected symbol:</variable>"
+msgstr "<variable id=\"err951\">951 Неочакван символ:</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455952\n"
+"help.text"
+msgid "<variable id=\"err952\">952 Expected:</variable>"
+msgstr "<variable id=\"err952\">952 Очаква се:</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455953\n"
+"help.text"
+msgid "<variable id=\"err953\">953 Symbol expected</variable>"
+msgstr "<variable id=\"err953\">953 Очаква се символ</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455954\n"
+"help.text"
+msgid "<variable id=\"err954\">954 Variable expected</variable>"
+msgstr "<variable id=\"err954\">954 Очаква се променлива</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455955\n"
+"help.text"
+msgid "<variable id=\"err955\">955 Label expected</variable>"
+msgstr "<variable id=\"err955\">955 Очаква се етикет</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455956\n"
+"help.text"
+msgid "<variable id=\"err956\">956 Value cannot be applied</variable>"
+msgstr "<variable id=\"err956\">956 Стойността не може да бъде приложена</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455957\n"
+"help.text"
+msgid "<variable id=\"err957\">957 Variable already defined</variable>"
+msgstr "<variable id=\"err957\">957 Променливата вече е дефинирана</variable>"
+
+#: 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 "<variable id=\"err958\">958 Подпрограмата или функцията вече е дефинирана</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455959\n"
+"help.text"
+msgid "<variable id=\"err959\">959 Label already defined</variable>"
+msgstr "<variable id=\"err959\">959 Етикетът вече е дефиниран</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455960\n"
+"help.text"
+msgid "<variable id=\"err960\">960 Variable not found</variable>"
+msgstr "<variable id=\"err960\">960 Променливата не е намерена</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455961\n"
+"help.text"
+msgid "<variable id=\"err961\">961 Array or procedure not found</variable>"
+msgstr "<variable id=\"err961\">961 Масивът или процедурата не е намерена</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455962\n"
+"help.text"
+msgid "<variable id=\"err962\">962 Procedure not found</variable>"
+msgstr "<variable id=\"err962\">962 Процедурата не е намерена</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455963\n"
+"help.text"
+msgid "<variable id=\"err963\">963 Label undefined</variable>"
+msgstr "<variable id=\"err963\">963 Етикетът не е дефиниран</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455964\n"
+"help.text"
+msgid "<variable id=\"err964\">964 Unknown data type</variable>"
+msgstr "<variable id=\"err964\">964 Неизвестен тип на данните</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455965\n"
+"help.text"
+msgid "<variable id=\"err965\">965 Exit expected</variable>"
+msgstr "<variable id=\"err965\">965 Очаква се Exit</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455966\n"
+"help.text"
+msgid "<variable id=\"err966\">966 Statement block still open: missing</variable>"
+msgstr "<variable id=\"err966\">966 Все още е отворен блок на оператор: липсва</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455967\n"
+"help.text"
+msgid "<variable id=\"err967\">967 Parentheses do not match</variable>"
+msgstr "<variable id=\"err967\">967 Скобите не си съответстват</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455968\n"
+"help.text"
+msgid "<variable id=\"err968\">968 Symbol already defined differently</variable>"
+msgstr "<variable id=\"err968\">968 Символът вече е дефиниран различно</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455969\n"
+"help.text"
+msgid "<variable id=\"err969\">969 Parameters do not correspond to procedure</variable>"
+msgstr "<variable id=\"err969\">969 Параметрите не отговарят на процедурата</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455970\n"
+"help.text"
+msgid "<variable id=\"err970\">970 Invalid character in number</variable>"
+msgstr "<variable id=\"err970\">970 Невалиден знак в число</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455971\n"
+"help.text"
+msgid "<variable id=\"err971\">971 Array must be dimensioned</variable>"
+msgstr "<variable id=\"err971\">971 Масивът трябва да бъде оразмерен</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455972\n"
+"help.text"
+msgid "<variable id=\"err972\">972 Else/Endif without If</variable>"
+msgstr "<variable id=\"err972\">972 Else/Endif без If</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455973\n"
+"help.text"
+msgid "<variable id=\"err973\">973 not allowed within a procedure</variable>"
+msgstr "<variable id=\"err973\">973 не се допуска в процедура</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455974\n"
+"help.text"
+msgid "<variable id=\"err974\">974 not allowed outside a procedure</variable>"
+msgstr "<variable id=\"err974\">974 не се допуска извън процедура</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455975\n"
+"help.text"
+msgid "<variable id=\"err975\">975 Dimension specifications do not match</variable>"
+msgstr "<variable id=\"err975\">975 Спецификациите за размерност не си съответстват</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455976\n"
+"help.text"
+msgid "<variable id=\"err976\">976 Unknown option:</variable>"
+msgstr "<variable id=\"err976\">976 Непозната настройка:</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455977\n"
+"help.text"
+msgid "<variable id=\"err977\">977 Constant redefined</variable>"
+msgstr "<variable id=\"err977\">977 Повторно дефинирана константа</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455978\n"
+"help.text"
+msgid "<variable id=\"err978\">978 Program too large</variable>"
+msgstr "<variable id=\"err978\">978 Програмата е твърде голяма</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455979\n"
+"help.text"
+msgid "<variable id=\"err979\">979 Strings or arrays not permitted</variable>"
+msgstr "<variable id=\"err979\">979 Не са разрешени низове и масиви</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455980\n"
+"help.text"
+msgid "<variable id=\"err1000\">1000 Object does not have this property</variable>"
+msgstr "<variable id=\"err1000\">1000 Обектът няма такова свойство</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455981\n"
+"help.text"
+msgid "<variable id=\"err1001\">1001 Object does not have this method</variable>"
+msgstr "<variable id=\"err1001\">1001 Обектът няма такъв метод</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455982\n"
+"help.text"
+msgid "<variable id=\"err1002\">1002 Required argument lacking</variable>"
+msgstr "<variable id=\"err1002\">1002 Пропуснат е задължителен аргумент</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455983\n"
+"help.text"
+msgid "<variable id=\"err1003\">1003 Invalid number of arguments</variable>"
+msgstr "<variable id=\"err1003\">1003 Грешен брой аргументи</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455984\n"
+"help.text"
+msgid "<variable id=\"err1004\">1004 Error executing a method</variable>"
+msgstr "<variable id=\"err1004\">1004 Грешка при изпълнение на метод</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455985\n"
+"help.text"
+msgid "<variable id=\"err1005\">1005 Unable to set property</variable>"
+msgstr "<variable id=\"err1005\">1005 Не е възможно да се зададе свойство</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455986\n"
+"help.text"
+msgid "<variable id=\"err1006\">1006 Unable to determine property</variable>"
+msgstr "<variable id=\"err1006\">1006 Не е възможно да се определи свойство</variable>"
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Programming with $[officename] Basic"
+msgstr "Програмиране с $[officename] Basic"
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
+"hd_id3156027\n"
+"1\n"
+"help.text"
+msgid "<variable id=\"doc_title\"><link href=\"text/sbasic/shared/01000000.xhp\" name=\"Programming with $[officename] Basic \">Programming with $[officename] Basic </link></variable>"
+msgstr "<variable id=\"doc_title\"><link href=\"text/sbasic/shared/01000000.xhp\" name=\"Програмиране с $[officename] Basic \">Програмиране с $[officename] Basic </link></variable>"
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
+"par_id3153708\n"
+"2\n"
+"help.text"
+msgid "This is where you find general information about working with macros and $[officename] Basic."
+msgstr "Тук ще намерите обща информация относно работата с макроси и с $[officename] Basic."
+
+#: 01010210.xhp
+msgctxt ""
+"01010210.xhp\n"
+"tit\n"
+"help.text"
+msgid "Basics"
+msgstr "Основи"
+
+#: 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 "<bookmark_value>основи</bookmark_value><bookmark_value>подпрограми</bookmark_value><bookmark_value>променливи;глобални и локални</bookmark_value><bookmark_value>модули;подпрограми и функции</bookmark_value>"
+
+#: 01010210.xhp
+msgctxt ""
+"01010210.xhp\n"
+"hd_id3154927\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/01010210.xhp\" name=\"Basics\">Basics</link>"
+msgstr "<link href=\"text/sbasic/shared/01010210.xhp\" name=\"Основи\">Основи</link>"
+
+#: 01010210.xhp
+msgctxt ""
+"01010210.xhp\n"
+"par_id3156023\n"
+"14\n"
+"help.text"
+msgid "This section provides the fundamentals for working with $[officename] Basic."
+msgstr "Този раздел съдържа основна информация за работата с $[officename] Basic."
+
+#: 01010210.xhp
+msgctxt ""
+"01010210.xhp\n"
+"par_id3147560\n"
+"2\n"
+"help.text"
+msgid "$[officename] Basic code is based on subroutines and functions that are specified between <emph>sub...end sub</emph> and <emph>function...end function</emph> sections. Each Sub or Function can call other Subs and Functions. If you take care to write generic code for a Sub or Function, you can probably re-use it in other programs. See also <link href=\"text/sbasic/shared/01020300.xhp\" name=\"Procedures and Functions\">Procedures and Functions</link>."
+msgstr "Кодът на $[officename] Basic е базиран на подпрограми и функции, които се задават като раздели от типа <emph>sub...end sub</emph> и <emph>function...end function</emph>. Всяка подпрограма и функция може да се обръща към други подпрограми и функции. Ако се погрижите кодът на подпрограмата или функцията да не е зависим от контекста, вероятно ще можете да я използвате в други програми. Вижте също<link href=\"text/sbasic/shared/01020300.xhp\" name=\"Процедури и функции\">Процедури и функции</link>."
+
+#: 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 "За имената на публичните променливи, подпрограми и функции са в сила някои ограничение. Не трябва да използвате име, еднакво с това на модул от същата библиотека."
+
+#: 01010210.xhp
+msgctxt ""
+"01010210.xhp\n"
+"hd_id3150398\n"
+"3\n"
+"help.text"
+msgid "What is a Sub?"
+msgstr "Какво е подпрограма (Sub)?"
+
+#: 01010210.xhp
+msgctxt ""
+"01010210.xhp\n"
+"par_id3148797\n"
+"4\n"
+"help.text"
+msgid "<emph>Sub</emph> is the short form of <emph>subroutine</emph>, that is used to handle a certain task within a program. Subs are used to split a task into individual procedures. Splitting a program into procedures and sub-procedures enhances readability and reduces the error-proneness. A sub possibly takes some arguments as parameters but does not return any values back to the calling sub or function, for example:"
+msgstr "<emph>Sub</emph> е съкращение от <emph>subroutine</emph> (подпрограма) – откъс код, който служи за решаване на определена задача в програма. Подпрограмите служат за разделяне на задача на отделни процедури. Разделянето на програмата на процедури и подпроцедури подобрява четливостта й и намалява възможностите за грешка. Подпрограмата може да приема аргументи като параметри, но не връща стойност на извикващата я подпрограма или функция, например:"
+
+#: 01010210.xhp
+msgctxt ""
+"01010210.xhp\n"
+"par_id3150868\n"
+"15\n"
+"help.text"
+msgid "DoSomethingWithTheValues(MyFirstValue,MySecondValue)"
+msgstr "НаправиНещоСъсСтойностите(ПърваСтойност, ВтораСтойност)"
+
+#: 01010210.xhp
+msgctxt ""
+"01010210.xhp\n"
+"hd_id3156282\n"
+"5\n"
+"help.text"
+msgid "What is a Function?"
+msgstr "Какво е функция (Function)?"
+
+#: 01010210.xhp
+msgctxt ""
+"01010210.xhp\n"
+"par_id3156424\n"
+"6\n"
+"help.text"
+msgid "A <emph>function</emph> is essentially a sub, which returns a value. You may use a function at the right side of a variable declaration, or at other places where you normally use values, for example:"
+msgstr "<emph>Функцията</emph> представлява подпрограма, която връща стойност. Можете да я използвате от дясната страна при обявяване на променлива или на други места, където обикновено използвате стойности, например:"
+
+#: 01010210.xhp
+msgctxt ""
+"01010210.xhp\n"
+"par_id3146985\n"
+"7\n"
+"help.text"
+msgid "MySecondValue = myFunction(MyFirstValue)"
+msgstr "ВтораСтойност = МояФункция(Първа стойност)"
+
+#: 01010210.xhp
+msgctxt ""
+"01010210.xhp\n"
+"hd_id3153364\n"
+"8\n"
+"help.text"
+msgid "Global and local variables"
+msgstr "Глобални и локални променливи"
+
+#: 01010210.xhp
+msgctxt ""
+"01010210.xhp\n"
+"par_id3151112\n"
+"9\n"
+"help.text"
+msgid "Global variables are valid for all subs and functions inside a module. They are declared at the beginning of a module before the first sub or function starts."
+msgstr "Глобалните променливи важат във всички подпрограми и функции в даден модул. Те се обявяват в началото на модула, преди началото на първата подпрограма или функция."
+
+#: 01010210.xhp
+msgctxt ""
+"01010210.xhp\n"
+"par_id3154012\n"
+"10\n"
+"help.text"
+msgid "Variables that you declare within a sub or function are valid only inside this sub or function. These variables override global variables with the same name and local variables with the same name coming from superordinate subs or functions."
+msgstr "Променливите, обявени в подпрограма или функция, важат само в съответната подпрограма или функция. Те имат предимство пред глобалните променливи със същите имена и локалните променливи със същите имена от по-външни подпрограми или функции."
+
+#: 01010210.xhp
+msgctxt ""
+"01010210.xhp\n"
+"hd_id3150010\n"
+"11\n"
+"help.text"
+msgid "Structuring"
+msgstr "Структуриране"
+
+#: 01010210.xhp
+msgctxt ""
+"01010210.xhp\n"
+"par_id3153727\n"
+"12\n"
+"help.text"
+msgid "After separating your program into procedures and functions (Subs and Functions), you can save these procedures and functions as files for reuse in other projects. $[officename] Basic supports <link href=\"text/sbasic/shared/01020500.xhp\" name=\"Modules and Libraries\">Modules and Libraries</link>. Subs and functions are always contained in modules. You can define modules to be global or part of a document. Multiple modules can be combined to a library."
+msgstr "След като разделите програмата си на процедури и функции (блокове Sub и Function), можете да ги запишете за повторно използване в други проекти. $[officename] Basic поддържа <link href=\"text/sbasic/shared/01020500.xhp\" name=\"модули и библиотеки\">модули и библиотеки</link>. Процедурите и функциите винаги са част от модул. Можете да дефинирате модулите като глобални или като части от документ. Една библиотека може да съдържа няколко модула."
+
+#: 01010210.xhp
+msgctxt ""
+"01010210.xhp\n"
+"par_id3152578\n"
+"13\n"
+"help.text"
+msgid "You can copy or move subs, functions, modules and libraries from one file to another by using the <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Macro\">Macro</link> dialog."
+msgstr "Можете да копирате и местите процедури, функции, модули и библиотеки от един файл в друг чрез диалоговия прозорец <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Макрос\">Макрос</link>."
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Syntax"
+msgstr "Синтаксис"
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3148946\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/01020000.xhp\" name=\"Syntax\">Syntax</link>"
+msgstr "<link href=\"text/sbasic/shared/01020000.xhp\" name=\"Синтаксис\">Синтаксис</link>"
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3150793\n"
+"2\n"
+"help.text"
+msgid "This section describes the basic syntax elements of $[officename] Basic. For a detailed description please refer to the $[officename] Basic Guide which is available separately."
+msgstr "Този раздел описва основните елементи от синтаксиса на $[officename] Basic. За подробно описание се обърнете към отделното ръководство по $[officename] Basic."
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"tit\n"
+"help.text"
+msgid "Using Variables"
+msgstr "Използване на променливи"
+
+#: 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>constants</bookmark_value><bookmark_value>arrays;declaring</bookmark_value><bookmark_value>defining;constants</bookmark_value>"
+msgstr "<bookmark_value>имена на променливи</bookmark_value><bookmark_value>променливи; използване</bookmark_value><bookmark_value>типове на променливи</bookmark_value><bookmark_value>обявяване на променливи</bookmark_value><bookmark_value>деклариране на променливи</bookmark_value><bookmark_value>стойности;на променливи</bookmark_value><bookmark_value>константи</bookmark_value><bookmark_value>масиви;обявяване</bookmark_value><bookmark_value>дефиниране;константи</bookmark_value>"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3149346\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/01020100.xhp\" name=\"Using Variables\">Using Variables</link>"
+msgstr "<link href=\"text/sbasic/shared/01020100.xhp\" name=\"Използване на променливи\">Използване на променливи</link>"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3154346\n"
+"3\n"
+"help.text"
+msgid "The following describes the basic use of variables in $[officename] Basic."
+msgstr "По-долу са описани основите на работата с променливи в $[officename] Basic."
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3153361\n"
+"4\n"
+"help.text"
+msgid "Naming Conventions for Variable Identifiers"
+msgstr "Правила за съставяне идентификатори на променливи"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3148797\n"
+"5\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 "Имената на променливи не могат да надхвърлят дължина от 255 знака. Първият знак от името на променлива <emph>трябва</emph> да бъде латинска буква от A до Z или от a до z. В имената на променливи могат да се използват и цифри, но препинателни и специални знаци не се допускар, с изключение на знака долна черта (_). В $[officename] Basic идентификаторите на променливи са нечувствителни към регистъра. Имената на променливи могат да съдържат интервали, но в такъв случай трябва да са оградени с квадратни скоби."
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3156422\n"
+"6\n"
+"help.text"
+msgid "Examples for variable identifiers:"
+msgstr "Примери за идентификатори на променливи:"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3156441\n"
+"126\n"
+"help.text"
+msgid "Correct"
+msgstr "Правилно"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3149664\n"
+"127\n"
+"help.text"
+msgid "Correct"
+msgstr "Правилно"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3146119\n"
+"128\n"
+"help.text"
+msgid "Correct"
+msgstr "Правилно"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3153876\n"
+"11\n"
+"help.text"
+msgid "Not valid, variable with space must be enclosed in square brackets"
+msgstr "Невалиден, променлива с интервал трябва да е оградена с квадратни скоби"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3154510\n"
+"15\n"
+"help.text"
+msgid "Correct"
+msgstr "Правилно"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3150330\n"
+"129\n"
+"help.text"
+msgid "Not valid, special characters are not allowed"
+msgstr "Невалиден, специални знаци не се допускат"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3154254\n"
+"130\n"
+"help.text"
+msgid "Not valid, variable may not begin with a number"
+msgstr "Невалиден, променлива не може да започва с цифра"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3149256\n"
+"131\n"
+"help.text"
+msgid "Not valid, punctuation marks are not allowed"
+msgstr "Невалиден, пунктуация не се допуска"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3146317\n"
+"17\n"
+"help.text"
+msgid "Declaring Variables"
+msgstr "Обявяване на променливи"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3150299\n"
+"18\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 "В $[officename] Basic не е задължително да декларирате изрично променливите. Обявяването на променлива се извършва с оператора <emph>Dim</emph>. Можете да декларирате няколко променливи наведнъж, като разделите имената им със запетая. За да дефинирате типа на променливата, използвайте или знак за декларация на тип след името, или съответната ключова дума."
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3154118\n"
+"140\n"
+"help.text"
+msgid "Examples for variable declarations:"
+msgstr "Примери за декларации на променливи:"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3150982\n"
+"132\n"
+"help.text"
+msgid "Declares the variable \"a\" as a String"
+msgstr "Обявява променливата „a“ от тип String"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3150343\n"
+"133\n"
+"help.text"
+msgid "Declares the variable \"a\" as a String"
+msgstr "Обявява променливата „a“ от тип String"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3155507\n"
+"22\n"
+"help.text"
+msgid "Declares one variable as a String and one as an Integer"
+msgstr "Обявява една променлива от тип String и една от тип Integer"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_idN10859\n"
+"help.text"
+msgid "Declares c as a Boolean variable that can be TRUE or FALSE"
+msgstr "Обявява „c“ като променлива от тип Boolean, която приема стойности TRUE (истина) и FALSE (лъжа)"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3150519\n"
+"23\n"
+"help.text"
+msgid "It is very important when declaring variables that you use the type-declaration character each time, even if it was used in the declaration instead of a keyword. Thus the following statements are invalid:"
+msgstr "При обявяване на променливи е много важно винаги да използвате знака за деклариране на тип, дори ако е бил използван в декларацията вместо ключова дума. Затова следните оператори са невалидни:"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3154527\n"
+"134\n"
+"help.text"
+msgid "Declares \"a\" as a String"
+msgstr "Обявява променливата „a“ от тип String"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3153064\n"
+"135\n"
+"help.text"
+msgid "Type-declaration missing: \"a$=\""
+msgstr "Липсва декларация на тип: \"a$=\""
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3144770\n"
+"26\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 "След като сте декларирали променлива като принадлежаща на определен тип, не можете да декларирате променлива със същото име от друг тип!"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3149331\n"
+"27\n"
+"help.text"
+msgid "Forcing Variable Declarations"
+msgstr "Форсиране на декларациите на променливи"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3149443\n"
+"28\n"
+"help.text"
+msgid "To force declaration of variables, use the following command:"
+msgstr "За да направите обявяването на променливите задължително, използвайте следната команда:"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3155072\n"
+"30\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 "Операторът <emph>OPTION EXPLICIT</emph> трябва да бъде на първия ред от модула, преди първия блок SUB. Обикновено само масивите трябва да се обявяват изрично. Всички останали променливи се декларират според знака за тип или – ако той е пропуснат – като принадлежащи на подразбирания тип <emph>Single</emph>."
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3154614\n"
+"34\n"
+"help.text"
+msgid "Variable Types"
+msgstr "Типове на променливите"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3155383\n"
+"35\n"
+"help.text"
+msgid "$[officename] Basic supports four variable classes:"
+msgstr "$[officename] Basic поддържа четири вида променливи:"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3153972\n"
+"36\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 "<emph>Числови</emph> променливи, които могат да съдържат числови стойности. Някои променливи служат за съхраняване на много големи или много малки числа, а други – за съхраняване на дробни числа или числа с плаваща запетая."
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3159226\n"
+"37\n"
+"help.text"
+msgid "<emph>String</emph> variables contain character strings."
+msgstr "<emph>Низови</emph> променливи, които съдържат знакови низове."
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3145217\n"
+"38\n"
+"help.text"
+msgid "<emph>Boolean</emph> variables contain either the TRUE or the FALSE value."
+msgstr "<emph>Булеви</emph> променливи, съдържащи стойност TRUE или FALSE."
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3154762\n"
+"39\n"
+"help.text"
+msgid "<emph>Object</emph> variables can store objects of various types, like tables and documents within a document."
+msgstr "<emph>Обектни</emph> променливи, съхраняващи обекти от различни типове, например таблици или документи."
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3153805\n"
+"40\n"
+"help.text"
+msgid "Integer Variables"
+msgstr "Целочислени променливи"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3146966\n"
+"41\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 "Целочислените променливи приемат стойности от -32768 до 32767. Ако присвоите стойност с плаваща запетая на целочислена променлива, стойността ще бъде закръглена до най-близкото цяло число. С целочислените променливи се работи бързо и те са подходящи за броячи в цикли. Целочислените променливи заемат само по два байта в паметта. Техният знак за деклариране на тип е „%“."
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3147546\n"
+"45\n"
+"help.text"
+msgid "Long Integer Variables"
+msgstr "Дълги целочислени променливи"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3151193\n"
+"46\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 "Дългите целочислени променливи приемат стойности от -2147483648 до 2147483647. Ако присвоите стойност с плаваща запетая на дълга целочислена променлива, стойността ще бъде закръглена до най-близкото цяло число. С дългите целочислени променливи се работи бързо и те са подходящи за броячи в цикли с големи стойности. Дългите целочислени променливи заемат по четири байта в паметта. Техният знак за деклариране на тип е „&“."
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id7596972\n"
+"help.text"
+msgid "Decimal Variables"
+msgstr "Десетични променливи"
+
+#: 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 "Десетичните променливи могат да приемат положителни, отрицателни и нулеви стойности. Точността им е до 29 цифри."
+
+#: 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 "Можете да използвате знаците плюс (+) и минус (-) като префикси за десетични числа (с или без интервал)."
+
+#: 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 "Ако присвоите десетично число на целочислена променлива, %PRODUCTNAME Basic ще го закръгли нагоре или надолу."
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3147500\n"
+"50\n"
+"help.text"
+msgid "Single Variables"
+msgstr "Променливи с еднична точност"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3153070\n"
+"51\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 "Променливите с единична точност приемат положителни или отрицателни стойности от 3,402823.10^38 до 1,401298.10^-45. Това са променливи с плаваща запетая, в които точността спада с удължаването на цялата част от стойността. Променливите с единична точност са подходящи за средно точни математически пресмятания. С тях се работи по-бавно, отколкото с целочислените, но по-бързо, отколкото с тези с двойна точност. Променливите с единична точност заемат по четири байта в паметта. Техният знак за деклариране на тип е „!“."
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3155753\n"
+"54\n"
+"help.text"
+msgid "Double Variables"
+msgstr "Променливи с двойна точност"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3150953\n"
+"55\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 "Променливите с двойна точност приемат положителни или отрицателни стойности от 1,79769313486232.10^308 до 4,94065645841247.10^-324. Това са променливи с плаваща запетая, в които точността спада с удължаването на цялата част от стойността. Променливите с двойна точност са подходящи за точни пресмятания. С тях се работи по-бавно, отколкото с тези с единична точност. Променливите с двойна точност заемат по осем байта в паметта. Техният знак за деклариране на тип е „#“."
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3155747\n"
+"95\n"
+"help.text"
+msgid "Currency Variables"
+msgstr "Променливи за парични суми"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3153337\n"
+"96\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 "Променливите за парични суми се съхраняват вътрешно като 64-битови числа (8 байта) и се изобразяват като десетични числа с фиксирана запетая, с 15-цифрена цяла и 4-цифрена дробна част. Стойностите им варират от -922337203685477,5808 до +922337203685477,5807. Тези променливи се използват за валутни изчисления с висока точност. Съответният знак за деклариране на тип е „@“."
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3148742\n"
+"58\n"
+"help.text"
+msgid "String Variables"
+msgstr "Низови променливи"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3151393\n"
+"59\n"
+"help.text"
+msgid "String variables can hold character strings with up to 65,535 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 64 Kbytes. The memory required for storing string variables depends on the number of characters in the variable. The type-declaration character is \"$\"."
+msgstr "Низовите променливи могат да съдържат знакови низове с дължина до 65 535 знака. Всеки знак се съхранява като съответната стойност от Уникод. Низовите променливи са подходящи за обработка на текст в програми и за временно съхраняване на непечатни знаци с дължина до 64 КБ. Необходимата памет за съхранение на низова променлива зависи от броя знаци в нея. Знакът за деклариране на тип е „$“."
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3150534\n"
+"62\n"
+"help.text"
+msgid "Boolean Variables"
+msgstr "Булеви променливи"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3145632\n"
+"63\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 "Булевите променливи могат да съдържат само две стойности: TRUE (истина) или FALSE (лъжа). Числото 0 има стойност FALSE, а всички останали числа се считат за TRUE."
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3149722\n"
+"65\n"
+"help.text"
+msgid "Date Variables"
+msgstr "Променливи за дати"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3159116\n"
+"66\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 "Променливите за дати могат да съдържат само дати и часове, съхранявани във вътрешен формат. Стойностите, присвоявани на променливите за дати с функциите <link href=\"text/sbasic/shared/03030101.xhp\" name=\"Dateserial\"><emph>Dateserial</emph></link>, <link href=\"text/sbasic/shared/03030102.xhp\" name=\"Datevalue\"><emph>Datevalue</emph></link>, <link href=\"text/sbasic/shared/03030205.xhp\" name=\"Timeserial\"><emph>Timeserial</emph></link> и <link href=\"text/sbasic/shared/03030206.xhp\" name=\"Timevalue\"><emph>Timevalue</emph></link>, автоматично се преобразуват във вътрешния формат. Променливите за дати се преобразуват в обикновени числа чрез функциите <link href=\"text/sbasic/shared/03030103.xhp\" name=\"Day\"><emph>Day</emph></link>, <link href=\"text/sbasic/shared/03030104.xhp\" name=\"Month\"><emph>Month</emph></link>, <link href=\"text/sbasic/shared/03030106.xhp\" name=\"Year\"><emph>Year</emph></link> или <link href=\"text/sbasic/shared/03030201.xhp\" name=\"Hour\"><emph>Hour</emph></link>, <link href=\"text/sbasic/shared/03030202.xhp\" name=\"Minute\"><emph>Minute</emph></link>, <link href=\"text/sbasic/shared/03030204.xhp\" name=\"Second\"><emph>Second</emph></link>. Вътрешният формат позволява сравняване на дати и часове чрез изчисляване на разликата между две числа. Тези променливи могат да се декларират само с ключовата дума <emph>Date</emph>."
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3148732\n"
+"68\n"
+"help.text"
+msgid "Initial Variable Values"
+msgstr "Начални стойности на променливите"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3154549\n"
+"69\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 "Още при декларирането на променливата автоматично й се присвоява стойността „Null“. Обърнете внимание на следните правила:"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3143222\n"
+"70\n"
+"help.text"
+msgid "<emph>Numeric</emph> variables are automatically assigned the value \"0\" as soon as they are declared."
+msgstr "<emph>Числовите</emph> променливи автоматично получават стойност 0 при обявяването си."
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3150693\n"
+"71\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 "На <emph>променливите за дати</emph> се присвоява вътрешно стойност 0. Това е еквивалентно на преобразуването на стойността до „0“ с функциите <link href=\"text/sbasic/shared/03030103.xhp\" name=\"Day\"><emph>Day</emph></link>, <link href=\"text/sbasic/shared/03030104.xhp\" name=\"Month\"><emph>Month</emph></link>, <link href=\"text/sbasic/shared/03030106.xhp\" name=\"Year\"><emph>Year</emph></link> или <link href=\"text/sbasic/shared/03030201.xhp\" name=\"Hour\"><emph>Hour</emph></link>, <link href=\"text/sbasic/shared/03030202.xhp\" name=\"Minute\"><emph>Minute</emph></link>, <link href=\"text/sbasic/shared/03030204.xhp\" name=\"Second\"><emph>Second</emph></link>."
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3154807\n"
+"72\n"
+"help.text"
+msgid "<emph>String variables</emph> are assigned an empty-string (\"\") when they are declared."
+msgstr "На <emph>низовите променливи</emph> при обявяването им се присвоява празен низ (\"\")."
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3153936\n"
+"83\n"
+"help.text"
+msgid "Arrays"
+msgstr "Масиви"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3148736\n"
+"84\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 "$[officename] Basic поддържа едномерни и многомерни масиви, дефинирани със специален вид променлива. Масивите са подходящи за редактиране на списъци и таблици в програмите. Отделните елементи на масив могат да се адресират чрез числов индекс."
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3149546\n"
+"85\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 "Масивите <emph>трябва</emph> да бъдат обявени с оператора <emph>Dim</emph>. Има няколко начина за дефиниране на диапазона от индекси на масив:"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3154567\n"
+"136\n"
+"help.text"
+msgid "21 elements numbered from 0 to 20"
+msgstr "21 елемента, номерирани от 0 до 20"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3154397\n"
+"137\n"
+"help.text"
+msgid "30 elements (a matrix of 6 x 5 elements)"
+msgstr "30 елемента (матрица от 6 на 5 елемента)"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3149690\n"
+"138\n"
+"help.text"
+msgid "21 elements numbered from 5 to 25"
+msgstr "21 елемента, номерирани от 5 до 25"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3153113\n"
+"89\n"
+"help.text"
+msgid "21 elements (including 0), numbered from -15 to 5"
+msgstr "21 елемента (включително номер 0), номерирани от -15 до 5"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3153005\n"
+"90\n"
+"help.text"
+msgid "The index range can include positive as well as negative numbers."
+msgstr "Диапазонът от индекси може да включва както положителни, така и отрицателни числа."
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3154507\n"
+"91\n"
+"help.text"
+msgid "Constants"
+msgstr "Константи"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3156357\n"
+"92\n"
+"help.text"
+msgid "Constants have a fixed value. They are only defined once in the program and cannot be redefined later:"
+msgstr "Константите имат фиксирана стойност. Те се задават само веднъж в програмата и след това не могат да се предефинират:"
+
+#: 01020200.xhp
+msgctxt ""
+"01020200.xhp\n"
+"tit\n"
+"help.text"
+msgid "Using Objects"
+msgstr "Използване на обекти"
+
+#: 01020200.xhp
+msgctxt ""
+"01020200.xhp\n"
+"hd_id3145645\n"
+"1\n"
+"help.text"
+msgid "<variable id=\"01020200\"><link href=\"text/sbasic/shared/01020200.xhp\">Using the Object Catalog</link></variable>"
+msgstr "<variable id=\"01020200\"><link href=\"text/sbasic/shared/01020200.xhp\">Работа с каталога на обектите</link></variable>"
+
+#: 01020200.xhp
+msgctxt ""
+"01020200.xhp\n"
+"par_id3153707\n"
+"76\n"
+"help.text"
+msgid "The object catalog provides an overview of all modules and dialogs you have created in $[officename]."
+msgstr "Каталогът на обектите позволява общ преглед на всички модули и диалози, създадени от вас в $[officename]."
+
+#: 01020200.xhp
+msgctxt ""
+"01020200.xhp\n"
+"par_id3147346\n"
+"78\n"
+"help.text"
+msgid "Click the <emph>Object Catalog</emph> icon <image id=\"img_id3147341\" src=\"cmd/sc_objectcatalog.png\" width=\"0.564cm\" height=\"0.564cm\"><alt id=\"alt_id3147341\">Icon</alt></image> in the Macro toolbar to display the object catalog."
+msgstr "За да видите каталога на обектите, щракнете върху иконата <emph>Каталог на обектите</emph> <image id=\"img_id3147341\" src=\"cmd/sc_objectcatalog.png\" width=\"0.564cm\" height=\"0.564cm\"><alt id=\"alt_id3147341\">Икона</alt></image> в лентата „Макрос“."
+
+#: 01020200.xhp
+msgctxt ""
+"01020200.xhp\n"
+"par_id3155114\n"
+"79\n"
+"help.text"
+msgid "The dialog shows a list of all existing objects in a hierarchical representation. Double-clicking a list entry opens its subordinate objects."
+msgstr "Диалоговият прозорец показва йерархичен списък на всички съществуващи обекти. Щракнете двукратно върху елемент от списъка, за да видите подчинените му обекти."
+
+#: 01020200.xhp
+msgctxt ""
+"01020200.xhp\n"
+"par_id3150786\n"
+"83\n"
+"help.text"
+msgid "To display a certain module in the Editor or to position the cursor in a selected SUB or FUNCTION, double click on the corresponding entry."
+msgstr ""
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"tit\n"
+"help.text"
+msgid "Using Procedures and Functions"
+msgstr "Използване на процедури и функции"
+
+#: 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 and functions</bookmark_value><bookmark_value>parameters;for procedures and functions</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 "<bookmark_value>процедури</bookmark_value><bookmark_value>функции;използване</bookmark_value><bookmark_value>променливи;подавани към процедури и функции</bookmark_value><bookmark_value>параметри;за процедури и функции</bookmark_value><bookmark_value>параметри;подавани по стойност или адрес</bookmark_value><bookmark_value>променливи;обхват</bookmark_value><bookmark_value>обхват на променливи</bookmark_value><bookmark_value>глобални променливи</bookmark_value><bookmark_value>публични променливи</bookmark_value><bookmark_value>частни променливи</bookmark_value><bookmark_value>функции;тип на връщаната стойност</bookmark_value><bookmark_value>тип на връщаната стойност на функции</bookmark_value>"
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"hd_id3149456\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/01020300.xhp\">Using Procedures and Functions</link>"
+msgstr "<link href=\"text/sbasic/shared/01020300.xhp\">Използване на процедури и функции</link>"
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3150767\n"
+"2\n"
+"help.text"
+msgid "The following describes the basic use of procedures and functions in $[officename] Basic."
+msgstr "По-долу са описани основите на работа с процедури и функции в $[officename] Basic."
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3151215\n"
+"56\n"
+"help.text"
+msgid "When you create a new module, $[officename] Basic automatically inserts a SUB called \"Main\". This default name has nothing to do with the order or the starting point of a $[officename] Basic project. You can also safely rename this SUB."
+msgstr "Когато създадете нов модул, $[officename] Basic автоматично вмъква процедура SUB с име „Main“. Това подразбирано име не е свързано с реда или началната точка за изпълнение на проект на $[officename] Basic. Можете безопасно да преименувате процедурата."
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.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 "За имената на публичните променливи, подпрограми и функции са в сила някои ограничение. Не трябва да използвате име, еднакво с това на модул от същата библиотека."
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3154124\n"
+"3\n"
+"help.text"
+msgid "Procedures (SUBS) and functions (FUNCTIONS) help you maintaining a structured overview by separating a program into logical pieces."
+msgstr "Процедурите (SUB) и функциите (FUNCTIONS) ви помагат да структурирате програмата, като я разделите на логически части."
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3153193\n"
+"4\n"
+"help.text"
+msgid "One benefit of procedures and functions is that, once you have developed a program code containing task components, you can use this code in another project."
+msgstr "Едно предимство на процедурите и функциите е това, че след като разработите програмен код, разделен на компоненти по задачи, можете да го използвате в друг проект."
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"hd_id3153770\n"
+"26\n"
+"help.text"
+msgid "Passing Variables to Procedures (SUB) and Functions (FUNCTION)"
+msgstr "Подаване на променливи към процедури (SUB) и функции (FUNCTION)"
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3155414\n"
+"27\n"
+"help.text"
+msgid "Variables can be passed to both procedures and functions. The SUB or FUNCTION must be declared to expect parameters:"
+msgstr "Възможно е подаване на променливи както към процедурите, така и към функциите. И в двата случая в подпрограмата трябва да се обяви, че тя приема параметри:"
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3151114\n"
+"29\n"
+"help.text"
+msgid "Program code"
+msgstr "Програмен код"
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3152577\n"
+"31\n"
+"help.text"
+msgid "The SUB is called using the following syntax:"
+msgstr "Процедурите се извикват чрез следния синтаксис:"
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3147124\n"
+"33\n"
+"help.text"
+msgid "The parameters passed to a SUB must fit to those specified in the SUB declaration."
+msgstr "Параметрите, подадени на процедурата, трябва да съответстват на обявените в декларацията й."
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3147397\n"
+"34\n"
+"help.text"
+msgid "The same process applies to FUNCTIONS. 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 "Същото важи и за функциите. Освен това функцията винаги трябва да връща резултат. Той се задава чрез присвояване на стойност на името на функцията:"
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3156284\n"
+"36\n"
+"help.text"
+msgid "Program code"
+msgstr "Програмен код"
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3145799\n"
+"37\n"
+"help.text"
+msgid "FunctionName=Result"
+msgstr "ИмеНаФункция = Резултат"
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3153839\n"
+"39\n"
+"help.text"
+msgid "The FUNCTION is called using the following syntax:"
+msgstr "Обръщението към функция следва следния синтаксис:"
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3146914\n"
+"40\n"
+"help.text"
+msgid "Variable=FunctionName(Parameter1, Parameter2,...)"
+msgstr "Променлива=ИмеНаФункция(Параметър1, Параметър2,...)"
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_idN107B3\n"
+"help.text"
+msgid "You can also use the fully qualified name to call a procedure or function:<br/><item type=\"literal\">Library.Module.Macro()</item><br/> For example, to call the Autotext macro from the Gimmicks library, use the following command:<br/><item type=\"literal\">Gimmicks.AutoText.Main()</item>"
+msgstr "За обръщение към процедура или функция можете да използвате и напълно квалифицирано име:<br/><item type=\"literal\">Библиотека.Модул.Макрос()</item><br/> Например, за да извикате макроса Autotext от библиотеката Gimmicks, ще използвате следната команда:<br/><item type=\"literal\">Gimmicks.AutoText.Main()</item>"
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"hd_id3156276\n"
+"45\n"
+"help.text"
+msgid "Passing Variables by Value or Reference"
+msgstr "Подаване на променливи по стойност или по адрес"
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3155765\n"
+"47\n"
+"help.text"
+msgid "Parameters can be passed to a SUB or a FUNCTION either by reference or by value. Unless otherwise specified, a parameter is always passed by reference. That means that a SUB or a FUNCTION gets the parameter and can read and modify its value."
+msgstr "Параметрите могат да се подават на процедура или функция по адрес или по стойност. Ако не е указано друго, параметърът винаги се предава по адрес. Това означава, че процедурата или функцията получава самия параметър и може да чете и променя стойността му."
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3145640\n"
+"53\n"
+"help.text"
+msgid "If you want to pass a parameter by value insert the key word \"ByVal\" in front of the parameter when you call a SUB or FUNCTION, for example:"
+msgstr "Ако искате да подадете параметър по стойност, поставете ключовата дума „ByVal“ пред името на параметъра, когато пишете обръщение към процедура или функция, например:"
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3150042\n"
+"54\n"
+"help.text"
+msgid "Result = Function(ByVal Parameter)"
+msgstr ""
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3149258\n"
+"55\n"
+"help.text"
+msgid "In this case, the original content of the parameter will not be modified by the FUNCTION since it only gets the value and not the parameter itself."
+msgstr "В този случай оригиналното съдържание на параметъра няма да бъде променено от функцията, тъй като тя получава само стойността, но не и самия параметър."
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"hd_id3150982\n"
+"57\n"
+"help.text"
+msgid "Scope of Variables"
+msgstr "Обхват на променливите"
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3149814\n"
+"58\n"
+"help.text"
+msgid "A variable defined within a SUB or FUNCTION, 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 SUB or FUNCTION is exited."
+msgstr "Променлива, дефинирана в процедура или функция, е валидна само до завършване изпълнението на процедурата или функцията. Такива променливи се наричат локални. В много случаи са необходими променливи, валидни във всички процедури, модули или библиотеки, или след края на изпълнението на процедура или функция."
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"hd_id3154186\n"
+"59\n"
+"help.text"
+msgid "Declaring Variables Outside a SUB or FUNCTION"
+msgstr "Обявяване на променливи извън процедури и функции"
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3150208\n"
+"111\n"
+"help.text"
+msgid "Global VarName As TYPENAME"
+msgstr "Global ИмеНаПроменлива As ТИП"
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3145258\n"
+"112\n"
+"help.text"
+msgid "The variable is valid as long as the $[officename] session lasts."
+msgstr "Променливата е валидна, докато трае сесията на $[officename]."
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3153198\n"
+"60\n"
+"help.text"
+msgid "Public VarName As TYPENAME"
+msgstr "Public ИмеНаПроменлива As ТИП"
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3150088\n"
+"61\n"
+"help.text"
+msgid "The variable is valid in all modules."
+msgstr "Променливата е валидна за всички модули."
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3158212\n"
+"62\n"
+"help.text"
+msgid "Private VarName As TYPENAME"
+msgstr "Private ИмеНаПроменлива As ТИП"
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3152994\n"
+"63\n"
+"help.text"
+msgid "The variable is only valid in this module."
+msgstr "Променливата е валидна само в този модул."
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3150886\n"
+"64\n"
+"help.text"
+msgid "Dim VarName As TYPENAME"
+msgstr ""
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3150368\n"
+"65\n"
+"help.text"
+msgid "The variable is only valid in this module."
+msgstr "Променливата е валидна само в този модул."
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"hd_id5097506\n"
+"help.text"
+msgid "Example for private variables"
+msgstr "Пример за частни променливи"
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id8738975\n"
+"help.text"
+msgid "Enforce private variables to be private across modules by setting CompatibilityMode(true)."
+msgstr "За да направите частните променливи достъпни през раниците на модул, задайте CompatibilityMode(true)."
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id9475997\n"
+"help.text"
+msgid "myText = \"Hello\""
+msgstr "myText = \"Здравейте\""
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id6933500\n"
+"help.text"
+msgid "Print \"In module1 : \", myText"
+msgstr "Print \"В module1 : \", myText"
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id4104129\n"
+"help.text"
+msgid "' Now returns empty string"
+msgstr "' Сега връща празен низ"
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id7906125\n"
+"help.text"
+msgid "' (or rises error for Option Explicit)"
+msgstr "' (или предизвиква грешка за Option Explicit)"
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id8055970\n"
+"help.text"
+msgid "Print \"Now in module2 : \", myText"
+msgstr "Print \"Сега в module2 : \", myText"
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"hd_id3154368\n"
+"66\n"
+"help.text"
+msgid "Saving Variable Content after Exiting a SUB or FUNCTION"
+msgstr "Запазване съдържанието на променливите след завършване на процедура или функция"
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3156288\n"
+"67\n"
+"help.text"
+msgid "Static VarName As TYPENAME"
+msgstr "Static ИмеНаПроменлива As ТИП"
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3154486\n"
+"68\n"
+"help.text"
+msgid "The variable retains its value until the next time the FUNCTION or SUB is entered. The declaration must exist inside a SUB or a FUNCTION."
+msgstr "Променливата ще запази стойността си до следващото изпълнение на процедурата или функцията. Декларацията трябва да бъде в процедура или функция."
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"hd_id3155809\n"
+"41\n"
+"help.text"
+msgid "Specifying the Return Value Type of a FUNCTION"
+msgstr "Задаване типа на резултата от функция"
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3149404\n"
+"42\n"
+"help.text"
+msgid "As with variables, include a type-declaration character after the function name, or the type indicated by \"As\" and the corresponding key word at the end of the parameter list to define the type of the function's return value, for example:"
+msgstr "Както и с променливите, след името на функцията включете знак за деклариране на или задайте типа с „As“ и съответната ключова дума в края на списъка с параметри. Така задавате типа на резултата на функцията, например:"
+
+#: 01020500.xhp
+msgctxt ""
+"01020500.xhp\n"
+"tit\n"
+"help.text"
+msgid "Libraries, Modules and Dialogs"
+msgstr "Библиотеки, модули и диалогови прозорци"
+
+#: 01020500.xhp
+msgctxt ""
+"01020500.xhp\n"
+"hd_id3147317\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/01020500.xhp\" name=\"Libraries, Modules and Dialogs\">Libraries, Modules and Dialogs</link>"
+msgstr "<link href=\"text/sbasic/shared/01020500.xhp\" name=\"Библиотеки, модули и диалогови прозорци\">Библиотеки, модули и диалогови прозорци</link>"
+
+#: 01020500.xhp
+msgctxt ""
+"01020500.xhp\n"
+"par_id3147427\n"
+"2\n"
+"help.text"
+msgid "The following describes the basic use of libraries, modules and dialogs in $[officename] Basic."
+msgstr "Следва основна информация за работата с библиотеки, модули и диалози в $[officename] Basic."
+
+#: 01020500.xhp
+msgctxt ""
+"01020500.xhp\n"
+"par_id3146120\n"
+"3\n"
+"help.text"
+msgid "$[officename] Basic provides tools to help you structuring your projects. It supports various \"units\" which enable you to group individual SUBS and FUNCTIONS in a Basic project."
+msgstr "$[officename] Basic предлага средства за структуриране на проектите. Той поддържа различни подразделения, в които да групирате отделните процедури и функции на проекта си."
+
+#: 01020500.xhp
+msgctxt ""
+"01020500.xhp\n"
+"hd_id3148575\n"
+"5\n"
+"help.text"
+msgid "Libraries"
+msgstr "Библиотеки"
+
+#: 01020500.xhp
+msgctxt ""
+"01020500.xhp\n"
+"par_id3150011\n"
+"6\n"
+"help.text"
+msgid "Libraries serve as a tool for organizing modules, and can either be attached to a document or a template. When the document or a template is saved, all modules contained in the library are automatically saved as well."
+msgstr "Библиотеките служат за организиране на модули и могат да бъдат прикрепени или към документ, или към шаблон. Когато документът и шаблонът дбъде съхранен, автоматично се запазват и всички модули от библиотеката."
+
+#: 01020500.xhp
+msgctxt ""
+"01020500.xhp\n"
+"par_id3151112\n"
+"7\n"
+"help.text"
+msgid "A library can contain up to 16,000 modules."
+msgstr "Всяка библиотека може да съдържа до 16 000 модула."
+
+#: 01020500.xhp
+msgctxt ""
+"01020500.xhp\n"
+"hd_id3149262\n"
+"8\n"
+"help.text"
+msgid "Modules"
+msgstr "Модули"
+
+#: 01020500.xhp
+msgctxt ""
+"01020500.xhp\n"
+"par_id3156441\n"
+"9\n"
+"help.text"
+msgid "A module contains SUBS and FUNCTIONS along with variable declarations. The length of the program that can be saved in a module is limited to 64 KB. If more space is required you can divide a $[officename] Basic project among several modules, and then save them in a single library."
+msgstr "Модулите съдържат процедури, функции и декларации на променливи. Дължината на програмата, която може да се съхранява в един модул, е ограничена до 64 КБ. Ако е необходимо повече пространство, можете да разделите проекта на $[officename] Basic на няколко модула и да ги запишете в една обща библиотека."
+
+#: 01020500.xhp
+msgctxt ""
+"01020500.xhp\n"
+"hd_id3152577\n"
+"11\n"
+"help.text"
+msgid "Dialog Modules"
+msgstr "Диалогови модули"
+
+#: 01020500.xhp
+msgctxt ""
+"01020500.xhp\n"
+"par_id3149377\n"
+"12\n"
+"help.text"
+msgid "Dialog modules contain dialog definitions, including the dialog box properties, the properties of each dialog element and the events assigned. Since a dialog module can only contain a single dialog, they are often referred to as \"dialogs\"."
+msgstr "Диалоговите модули съдържат дефиниции на диалози, включително свойствата на диалоговия прозорец и на всеки елемент от диалога, както и зададените събития. Тъй като диалоговите модули могат да съдържат само по един диалог, често се наричат просто диалози."
+
+#: 01030000.xhp
+msgctxt ""
+"01030000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Integrated Development Environment (IDE)"
+msgstr "Интегрирана развойна среда"
+
+#: 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 "<bookmark_value>Basic;интегрирана развойна среда</bookmark_value><bookmark_value>интегрирана развойна среда</bookmark_value>"
+
+#: 01030000.xhp
+msgctxt ""
+"01030000.xhp\n"
+"hd_id3145090\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/01030000.xhp\" name=\"Integrated Development Environment (IDE)\">Integrated Development Environment (IDE)</link>"
+msgstr "<link href=\"text/sbasic/shared/01030000.xhp\" name=\"Интегрирана развойна среда\">Интегрирана развойна среда</link>"
+
+#: 01030000.xhp
+msgctxt ""
+"01030000.xhp\n"
+"par_id3146795\n"
+"2\n"
+"help.text"
+msgid "This section describes the Integrated Development Environment for $[officename] Basic."
+msgstr "Този раздел описва интегрираната развойна среда за $[officename] Basic."
+
+#: 01030100.xhp
+msgctxt ""
+"01030100.xhp\n"
+"tit\n"
+"help.text"
+msgid "IDE Overview"
+msgstr "Общ преглед"
+
+#: 01030100.xhp
+msgctxt ""
+"01030100.xhp\n"
+"hd_id3147291\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/01030100.xhp\" name=\"IDE Overview\">IDE Overview</link>"
+msgstr "<link href=\"text/sbasic/shared/01030100.xhp\" name=\"Интегрирана развойна среда – общ преглед\">Интегрирана развойна среда – общ преглед</link>"
+
+#: 01030100.xhp
+msgctxt ""
+"01030100.xhp\n"
+"par_id3156344\n"
+"3\n"
+"help.text"
+msgid "The <link href=\"text/sbasic/shared/main0211.xhp\" name=\"Macro Toolbar\"><emph>Macro Toolbar</emph></link> in the IDE provides various icons for editing and testing programs."
+msgstr "Лента <link href=\"text/sbasic/shared/main0211.xhp\" name=\"Лента Макрос\"><emph>Макрос</emph></link> в развойната среда предлага икони за редактиране и изпитване на програми."
+
+#: 01030100.xhp
+msgctxt ""
+"01030100.xhp\n"
+"par_id3151210\n"
+"4\n"
+"help.text"
+msgid "In the <link href=\"text/sbasic/shared/01030200.xhp\" name=\"Editor window\"><emph>Editor window</emph></link>, directly below the Macro toolbar, you can edit the Basic program code. The column on the left side is used to set breakpoints in the program code."
+msgstr "В <link href=\"text/sbasic/shared/01030200.xhp\" name=\"Прозорец на редактора\"><emph>прозореца на редактора</emph></link>, точно под лентата „Макрос“, можете да редактирате програмния код на Basic. Колоната отляво служи за поставяне точки на прекъсване в програмния код."
+
+#: 01030100.xhp
+msgctxt ""
+"01030100.xhp\n"
+"par_id3154686\n"
+"5\n"
+"help.text"
+msgid "The <link href=\"text/sbasic/shared/01050100.xhp\" name=\"Watch\"><emph>Watch window</emph></link> (observer) is located below the Editor window at the left, and displays the contents of variables or arrays during a single step process."
+msgstr "Прозорецът <link href=\"text/sbasic/shared/01050100.xhp\" name=\"Следене\"><emph>Следене</emph></link> се намира вляво под редактора и показва съдържанието на променливи и масиви при постъпково изпълнение на програмата."
+
+#: 01030100.xhp
+msgctxt ""
+"01030100.xhp\n"
+"par_id3145787\n"
+"8\n"
+"help.text"
+msgid "The <emph>Call Stack</emph> window to the right provides information about the call stack of SUBS and FUNCTIONS when a program runs."
+msgstr "Прозорецът <emph>Извиквания</emph> вдясно предлага информация за стека на обръщенията към процедури и функции по време на изпълнение на програма."
+
+#: 01030100.xhp
+msgctxt ""
+"01030100.xhp\n"
+"par_id3147434\n"
+"6\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/01050000.xhp\" name=\"Basic IDE\">Basic IDE</link>"
+msgstr "<link href=\"text/sbasic/shared/01050000.xhp\" name=\"Интегрирана развойна среда на Basic\">Интегрирана развойна среда на Basic</link>"
+
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"tit\n"
+"help.text"
+msgid "The Basic Editor"
+msgstr "Редакторът на Basic"
+
+#: 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 "<bookmark_value>съхраняване;код на Basic</bookmark_value><bookmark_value>запазване;код на Basic</bookmark_value><bookmark_value>зареждане;код на Basic</bookmark_value><bookmark_value>редактор на Basic</bookmark_value><bookmark_value>навигация;в проекти на Basic</bookmark_value><bookmark_value>дълги редове;в редактора на Basic</bookmark_value><bookmark_value>редове в текст;в редактора на Basic</bookmark_value><bookmark_value>продължаване;дълги редове в редактор</bookmark_value>"
+
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"hd_id3147264\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/01030200.xhp\" name=\"The Basic Editor\">The Basic Editor</link>"
+msgstr "<link href=\"text/sbasic/shared/01030200.xhp\" name=\"Редакторът на Basic\">Редакторът на Basic</link>"
+
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"par_id3145069\n"
+"3\n"
+"help.text"
+msgid "The Basic Editor provides the standard editing functions you are familiar with when working in a text document. It supports the functions of the <emph>Edit</emph> menu (Cut, Delete, Paste), the ability to select text with the Shift key, as well as cursor positioning functions (for example, moving from word to word with <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> and the arrow keys)."
+msgstr "Редакторът на Basic предлага стандартните функции за редактиране, които са ви познати от работата с текстови документи. Той поддържа функциите на менюто <emph>Редактиране</emph> (Изрязване, Изтриване, Поставяне), възможност за избиране на текст с клавиша Shift, както и функции за позициониране на курсора (например преминаване от дума на дума с <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline> и клавишите със стрелки)."
+
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"par_id3154686\n"
+"31\n"
+"help.text"
+msgid "Long lines can be split into several parts by inserting a space and an underline character _ as the last two characters of a line. This connects the line with the following line to one logical line. (If \"Option Compatible\" is used in the same Basic module, the line continuation feature is also valid for comment lines.)"
+msgstr "Дългите редове могат да бъдат разделяни на няколко части чрез завършване на ред с интервал и долна черта (_). Ред, завършен по този начин, се свързва със следващия в един цял логически ред. (Ако същият модул на Basic съдържа оператор „Option Compatible“, продължаването на редове важи и за редовете – коментари.)"
+
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"par_id3151042\n"
+"32\n"
+"help.text"
+msgid "If you press the <emph>Run BASIC</emph> icon on the <emph>Macro</emph> bar, program execution starts at the first line of the Basic editor. The program executes the first Sub or Function and then program execution stops. The \"Sub Main\" does not take precedence on program execution."
+msgstr "Ако щракнете върху иконата <emph>Стартиране на BASIC</emph> в лентата <emph>Макрос</emph>, изпълнението на програмата започва от първия ред в редактора на Basic. Изпълнява се първата процедура или функция, след което изпълнението на програмата спира. Процедурата „Sub Main“ няма предимство при изпълнение."
+
+#: 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 "Вмъкнете кода на Basic между редовете Sub Main и End Sub, които ще видите, когато отворите развойната среда. Можете също така да изтриете всички редове и да въведете изцяло ваш собствен код на Basic."
+
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"hd_id3125863\n"
+"4\n"
+"help.text"
+msgid "Navigating in a Project"
+msgstr "Навигация в проект"
+
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"hd_id3145785\n"
+"6\n"
+"help.text"
+msgid "The Library List"
+msgstr "Списъкът с библиотеки"
+
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"par_id3146120\n"
+"7\n"
+"help.text"
+msgid "Select a library from the <emph>Library</emph> list at the left of the toolbar to load the library in the editor. The first module of the selected library will be displayed."
+msgstr "За да заредите библиотека в редактира, изберете я в списъка <emph>Библиотека</emph> вляво от лентата с инструменти. Ще бъде показан първият модул от избраната бибиотека."
+
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"hd_id3153190\n"
+"8\n"
+"help.text"
+msgid "The Object Catalog"
+msgstr "Каталог на обектите"
+
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"hd_id3148647\n"
+"15\n"
+"help.text"
+msgid "Saving and Loading Basic Source Code"
+msgstr "Съхраняване и зареждане на код на Basic"
+
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"par_id3154320\n"
+"16\n"
+"help.text"
+msgid "You can save Basic code in a text file for saving and importing in other programming systems."
+msgstr "Можете да запазвате код на Basic в текстов файл за съхраняване и импортиране в други среди за програмиране."
+
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"par_id3149959\n"
+"25\n"
+"help.text"
+msgid "You cannot save Basic dialogs to a text file."
+msgstr "Не можете да записвате диалози на Basic в текстови файлове."
+
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"hd_id3149403\n"
+"17\n"
+"help.text"
+msgid "Saving Source Code to a Text File"
+msgstr "Съхраняване на изходен код в текстов файл"
+
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"par_id3150327\n"
+"18\n"
+"help.text"
+msgid "Select the module that you want to export as text from the object catalog."
+msgstr "Изберете от каталога на обектите модула, който желаете да експортиране като текст."
+
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"par_id3150752\n"
+"19\n"
+"help.text"
+msgid "Click the <emph>Save Source As</emph> icon in the Macro toolbar."
+msgstr "Щракнете върху иконата <emph>Съхраняване на код на BASIC</emph> в лентата с инструменти „Макрос“."
+
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"par_id3154754\n"
+"20\n"
+"help.text"
+msgid "Select a file name and click <emph>OK</emph> to save the file."
+msgstr "Изберете име на файл и щракнете върху <emph>OK</emph>, за да запазите файла."
+
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"hd_id3159264\n"
+"21\n"
+"help.text"
+msgid "Loading Source Code From a Text File"
+msgstr "Зареждане на изходен код от текстов файл"
+
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"par_id3147343\n"
+"22\n"
+"help.text"
+msgid "Select the module where you want to import the source code from the object catalog."
+msgstr "Изберете от каталога на обектите модула, в който желаете да импортирате изходния код."
+
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"par_id3145230\n"
+"23\n"
+"help.text"
+msgid "Position the cursor where you want to insert the program code."
+msgstr "Поставете курсора там, където искате да вмъкнете програмния код."
+
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"par_id3149565\n"
+"24\n"
+"help.text"
+msgid "Click the <emph>Insert Source Text</emph> icon in the Macro toolbar."
+msgstr "Щракнете върху иконата <emph>Вмъкване на код на BASIC</emph> в лентата с инструменти „Макрос“."
+
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"par_id3154020\n"
+"33\n"
+"help.text"
+msgid "Select the text file containing the source code and click <emph>OK</emph>."
+msgstr "Изберете текстовия файл, който съдържа изходния код, и натиснете <emph>OK</emph>."
+
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"par_id3153198\n"
+"29\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/01050000.xhp\" name=\"Basic IDE\">Basic IDE</link>"
+msgstr "<link href=\"text/sbasic/shared/01050000.xhp\" name=\"Интегрирана развойна среда на Basic\">Интегрирана развойна среда на Basic</link>"
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"tit\n"
+"help.text"
+msgid "Debugging a Basic Program"
+msgstr "Отстраняване на грешки в програма на Basic"
+
+#: 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 "<bookmark_value>трасиране на програми на Basic</bookmark_value><bookmark_value>променливи; следене на стойности</bookmark_value><bookmark_value>следене на променливи</bookmark_value><bookmark_value>грешки при изпълнение в Basic</bookmark_value><bookmark_value>кодове за грешки в Basic</bookmark_value><bookmark_value>точки на прекъсване</bookmark_value><bookmark_value>стек, прозорец за</bookmark_value>"
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"hd_id3153344\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/01030300.xhp\">Debugging a Basic Program</link>"
+msgstr "<link href=\"text/sbasic/shared/01030300.xhp\">Отстраняване на грешки в програма на Basic</link>"
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"hd_id3159224\n"
+"4\n"
+"help.text"
+msgid "Breakpoints and Single Step Execution"
+msgstr "Точки на прекъсване и постъпково изпълнение"
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id3150682\n"
+"5\n"
+"help.text"
+msgid "You can check each line in your Basic program for errors using single step execution. Errors are easily traced since you can immediately see the result of each step. A pointer in the breakpoint column of the Editor indicates the current line. You can also set a breakpoint if you want to force the program to be interrupted at a specific position."
+msgstr "Чрез постъпковото изпълнение можете да проверите за грешки всеки ред от програма на Basic. Грешките се забелязват лесно, тъй като незабавно виждате резултата от всяка стъпка. Текущият ред е обозначен с показалец в колоната за точки на прекъсване. Освен това, ако искате програмата да бъде прекъсната на определено място, можете да зададете точка на прекъсване."
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id3147303\n"
+"7\n"
+"help.text"
+msgid "Double-click in the <emph>breakpoint</emph> column at the left of the Editor window to toggle a breakpoint at the corresponding line. When the program reaches a breakpoint, the program execution is interrupted."
+msgstr "За да поставите или премахнете точка на прекъсване на даден ред, щракнете двукратно пред него в колоната за <emph>точки на прекъсване</emph>. Когато изпълнението на програмата достигне до такъв ред, то се прекъсва."
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id3155805\n"
+"8\n"
+"help.text"
+msgid "The <emph>single step </emph>execution using the <emph>Single Step</emph> icon causes the program to branch into procedures and functions."
+msgstr "<emph>Постъпковото</emph> изпълнение чрез иконата <emph>Стъпка навътре</emph> позволява проследяване на изпълнението на извикваните процедури и функции."
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id3151110\n"
+"25\n"
+"help.text"
+msgid "The procedure step execution using the <emph>Procedure Step</emph> icon causes the program to skip over procedures and functions as a single step."
+msgstr "При изпълнението процедура по процедура с иконата <emph>Стъпка напред</emph> процедурите и функциите се изпълняват като единични стъпки."
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"hd_id3153825\n"
+"9\n"
+"help.text"
+msgid "Properties of a Breakpoint"
+msgstr "Свойства на точка на прекъсване"
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id3147574\n"
+"26\n"
+"help.text"
+msgid "The properties of a breakpoint are available through its context menu by right-clicking the breakpoint in the breakpoint column."
+msgstr "Свойствата на всяка точка на прекъсване са достъпни чрез контекстното й меню, което се отваря с щракване върху нея с десния бутон в колоната за точки на прекъсване."
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id3148473\n"
+"10\n"
+"help.text"
+msgid "You can <emph>activate</emph> and <emph>deactivate</emph> a breakpoint by selecting <emph>Active</emph> from its context menu. When a breakpoint is deactivated, it does not interrupt the program execution."
+msgstr "За да <emph>разрешите</emph> или <emph>забраните</emph> точка на прекъсване, изберете <emph>Активна</emph> от контекстното й меню. Когато точката на прекъсване е забранена, изпълнението на програмата не спира на това място."
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id3159413\n"
+"27\n"
+"help.text"
+msgid "Select <emph>Properties</emph> from the context menu of a breakpoint or select <emph>Breakpoints</emph> from the context menu of the breakpoint column to call the <emph>Breakpoints</emph> dialog where you can specify other breakpoint options."
+msgstr "Изберете <emph>Свойства</emph> от контекстното меню на точка на прекъсване или <emph>Точки на прекъсване</emph> от контекстното меню на колоната за точки на прекъсване, за да отворите диалоговия прозорец <emph>Точки на прекъсване</emph>. В него можете да задавате други настройки за точките на прекъсване."
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id3156280\n"
+"11\n"
+"help.text"
+msgid "The list displays all <emph>breakpoints</emph> with the corresponding line number in the source code. You can activate or deactivate a selected breakpoint by checking or clearing the <emph>Active</emph> box."
+msgstr "Списъкът показва всички <emph>точки на прекъсване</emph> със съответните номера на редове в изходния код. Можете да включите или изключите избрана точка на прекъсване, като отметнете или изчистите квадратчето <emph>Активна</emph>."
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id3158407\n"
+"12\n"
+"help.text"
+msgid "The <emph>Pass Count</emph> specifies the number of times the breakpoint can be passed over before the program is interrupted. If you enter 0 (default setting) the program is always interrupted as soon as a breakpoint is encountered."
+msgstr "Срещу <emph>Брой пасове</emph> можете да зададете колко пъти точката на прекъсване да бъде подмината, преди да се прекъсне програмата. Ако оставите подразбираната стойност, 0, изпълнението спира при всяко достигане на точката на прекъсване."
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id3153968\n"
+"13\n"
+"help.text"
+msgid "Click <emph>Delete</emph> to remove the breakpoint from the program."
+msgstr "За да премахнете точката на прекъсване от програмата, щракнете върху <emph>Изтриване</emph>."
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"hd_id3150439\n"
+"14\n"
+"help.text"
+msgid "Observing the Value of Variables"
+msgstr "Наблюдаване стойностите на променливи"
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id3153368\n"
+"15\n"
+"help.text"
+msgid "You can monitor the values of a variable by adding it to the <emph>Watch</emph> window. To add a variable to the list of watched variables, type the variable name in the <emph>Watch</emph> text box and press Enter."
+msgstr "Можете да наблюдавате стойността на променлива, като я добавите в прозореца <emph>Следене</emph>. За да добавите променлива към списъка за следене, въведете името й в полето <emph>Следене</emph> и натиснете Enter."
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id3146986\n"
+"16\n"
+"help.text"
+msgid "The values of variables are only displayed if they are in scope. Variables that are not defined at the current source code location display (\"Out of Scope\") instead of a value."
+msgstr "Стойностите на променливите се показват само ако са в текущия обхват. За променливите, които не са дефинирани в текущата точка от изходния код, вместо стойност се изписва „Out of Scope“ („Извън обхват“)."
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id3145272\n"
+"17\n"
+"help.text"
+msgid "You can also include arrays in the Watch window. If you enter the name of an array variable without an index value in the Watch text box, the content of the entire array is displayed."
+msgstr "В прозореца за следене можете да включвате и масиви. Ако в текстовото поле Следене въведете име на променлива – масив без индекс, ще се покаже съдържанието на целия масив."
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id3145749\n"
+"19\n"
+"help.text"
+msgid "If you rest the mouse over a predefined variable in the Editor at run-time, the content of the variable is displayed in a pop-up box."
+msgstr "Ако по време на изпълнение задържите показалеца на мишката върху предварително дефинирана променлива в редактора, съдържанието на променливата ще се покаже в изскачащо прозорче."
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"hd_id3148618\n"
+"20\n"
+"help.text"
+msgid "The Call Stack Window"
+msgstr "Прозорецът за стека"
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id3154491\n"
+"21\n"
+"help.text"
+msgid "<ahelp hid=\"HID_BASICIDE_STACKWINDOW_LIST\">Provides an overview of the call hierarchy of procedures and functions.</ahelp> You can determine which procedures and functions called which other procedures and functions at the current point in the source code."
+msgstr "<ahelp hid=\"HID_BASICIDE_STACKWINDOW_LIST\">Позволява преглеждане на йерархията на извикване на процедури и функции.</ahelp> Можете да видите кои процедури и функции кои други процедури и функции са извикали в текущия момент от изпълнението на изходния код."
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"hd_id3150594\n"
+"24\n"
+"help.text"
+msgid "List of Run-Time Errors"
+msgstr "Списък на грешките по време на изпълнение"
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"tit\n"
+"help.text"
+msgid "Organizing Libraries and Modules"
+msgstr "Организиране на библиотеки и модули"
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"bm_id3148797\n"
+"help.text"
+msgid "<bookmark_value>libraries;organizing</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 "<bookmark_value>библиотеки;организиране</bookmark_value><bookmark_value>модули;организиране</bookmark_value><bookmark_value>копиране;модули</bookmark_value><bookmark_value>добавяне на библиотеки</bookmark_value><bookmark_value>изтриване;библиотеки/модули/диалогови прозорци</bookmark_value><bookmark_value>диалогови прозорци;организиране</bookmark_value><bookmark_value>преместване;модули</bookmark_value><bookmark_value>организиране;модули/библиотеки/диалогови прозорци</bookmark_value><bookmark_value>преименуване на модули и диалогови прозорци</bookmark_value>"
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"hd_id3148797\n"
+"1\n"
+"help.text"
+msgid "<variable id=\"01030400\"><link href=\"text/sbasic/shared/01030400.xhp\">Organizing Libraries and Modules</link></variable>"
+msgstr "<variable id=\"01030400\"><link href=\"text/sbasic/shared/01030400.xhp\">Организиране на библиотеки и модули</link></variable>"
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"hd_id3150868\n"
+"4\n"
+"help.text"
+msgid "Organizing Libraries"
+msgstr "Организиране на библиотеки"
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"hd_id3125864\n"
+"5\n"
+"help.text"
+msgid "Creating a New Library"
+msgstr "Създаване на нова библиотека"
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3152576\n"
+"6\n"
+"help.text"
+msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
+msgstr "Изберете <emph>Инструменти - Макроси - Управление на макроси - %PRODUCTNAME Basic</emph> и щракнете върху <emph>Организатор</emph> или щракнете върху иконата <emph>Избор на модул</emph> в развойната среда на Basic, за да отворите диалоговия прозорец <emph>Управление на макроси</emph>."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3153726\n"
+"8\n"
+"help.text"
+msgid "Click the <emph>Libraries</emph> tab."
+msgstr "Щракнете върху раздела <emph>Библиотеки</emph>."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3149664\n"
+"9\n"
+"help.text"
+msgid "Select to where you want to attach the library in the <emph>Location</emph> list. If you select %PRODUCTNAME Macros & Dialogs, the library will belong to the $[officename] application and will be available for all documents. If you select a document the library will be attached to this document and only available from there."
+msgstr "Посочете в списъка <emph>Местонахождение</emph> къде желаете да прикрепите библиотеката. Ако изберете Макроси и диалогови прозорци на %PRODUCTNAME, библиотеката ще принадлежи на приложението $[officename] и ще бъде достъпна за всички документи. Ако изберете документ, библиотеката ще бъде прикрепена към документа и ще бъде достъпна само от него."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3153365\n"
+"10\n"
+"help.text"
+msgid "Click <emph>New</emph> and insert a name to create a new library."
+msgstr "Щракнете върху <emph>Нова</emph> и въведете име, за да създадете нова библиотека."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"hd_id3147394\n"
+"48\n"
+"help.text"
+msgid "Import a Library"
+msgstr "Импортиране на библиотека"
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3153157\n"
+"49\n"
+"help.text"
+msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
+msgstr "Изберете <emph>Инструменти - Макроси - Управление на макроси - %PRODUCTNAME Basic</emph> и щракнете върху <emph>Организатор</emph> или щракнете върху иконата <emph>Избор на модул</emph> в развойната среда на Basic, за да отворите диалоговия прозорец <emph>Управление на макроси</emph>."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3146972\n"
+"50\n"
+"help.text"
+msgid "Click the <emph>Libraries</emph> tab."
+msgstr "Щракнете върху раздела <emph>Библиотеки</emph>."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3145640\n"
+"51\n"
+"help.text"
+msgid "Select to where you want to import the library in the <emph>Location</emph> list. If you select %PRODUCTNAME Macros & Dialogs, the library will belong to the $[officename] application and will be available for all documents. If you select a document the library will be imported to this document and only available from there."
+msgstr "Посочете в списъка <emph>Местонахождение</emph> къде желаете да импортирате библиотеката. Ако изберете Макроси и диалогови прозорци на %PRODUCTNAME, библиотеката ще принадлежи на приложението $[officename] и ще бъде достъпна за всички документи. Ако изберете документ, библиотеката ще бъде импортирана в документа и ще бъде достъпна само от него."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3154253\n"
+"52\n"
+"help.text"
+msgid "Click <emph>Import...</emph> and select an external library to import."
+msgstr "Щракнете върху <emph>Импортиране...</emph> и изберете външна библиотека за импортиране."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3154705\n"
+"53\n"
+"help.text"
+msgid "Select all libraries to be imported in the <emph>Import Libraries</emph> dialog. The dialog displays all libraries that are contained in the selected file."
+msgstr "Изберете библиотеките, които да бъдат импортирани, в диалоговия прозорец <emph>Импортиране на библиотеки</emph>. Той показва всички библиотеки, съдържащи се в избрания файл."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3163807\n"
+"54\n"
+"help.text"
+msgid "If you want to insert the library as a reference only check the <emph>Insert as reference (read-only)</emph> box. Read-only libraries are fully functional but cannot be modified in the Basic IDE."
+msgstr "Ако искате да вмъкнете библиотека само като обръщение, отметнете <emph>Вмъкване като обръщение (само за четене)</emph>. Библиотеките само за четене са напълно функционални, но не могат да бъдат променяни в развойната среда на Basic."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3145228\n"
+"55\n"
+"help.text"
+msgid "Check the <emph>Replace existing libraries</emph> box if you want existing libraries of the same name to be overwritten."
+msgstr "Ако желаете съществуващите библиотеки със същите имена да бъдат замествани, отметнете <emph>Замяна на съществуващи библиотеки</emph>."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3147004\n"
+"56\n"
+"help.text"
+msgid "Click <emph>OK</emph> to import the library."
+msgstr "Щракнете върху <emph>OK</emph>, за да импортирате библиотеката."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"hd_id3159099\n"
+"17\n"
+"help.text"
+msgid "Export a Library"
+msgstr "Експортиране на библиотека"
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3147005\n"
+"70\n"
+"help.text"
+msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
+msgstr "Изберете <emph>Инструменти - Макроси - Управление на макроси - %PRODUCTNAME Basic</emph> и щракнете върху <emph>Организатор</emph> или щракнете върху иконата <emph>Избор на модул</emph> в развойната среда на Basic, за да отворите диалоговия прозорец <emph>Управление на макроси</emph>."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3147006\n"
+"71\n"
+"help.text"
+msgid "Click the <emph>Libraries</emph> tab."
+msgstr "Щракнете върху раздела <emph>Библиотеки</emph>."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3147007\n"
+"72\n"
+"help.text"
+msgid "In the <emph>Location</emph> list you specify where your library is stored. Select the library that you want to export. Note that you cannot export the <emph>Standard</emph> library."
+msgstr "В списъка <emph>Местоположение</emph> задайте къде е запазена библиотеката. Изберете библиотеката, която искате да експортирате. Забележете, че не можете да експортирате библиотеката <emph>Standard</emph>."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3147008\n"
+"73\n"
+"help.text"
+msgid "Click <emph>Export...</emph>"
+msgstr "Щракнете върху <emph>Експортиране...</emph>"
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3147009\n"
+"74\n"
+"help.text"
+msgid "Choose whether you want to export the library as an extension or as a basic library."
+msgstr "Изберете дали искате да експортирате библиотеката като разширение или като обикновена библиотека."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3147010\n"
+"75\n"
+"help.text"
+msgid "Click <emph>OK</emph>."
+msgstr "Щракнете върху <emph>OK</emph>."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3147011\n"
+"76\n"
+"help.text"
+msgid "Select where you want your library exported."
+msgstr "Изберете къде желаете да бъде експортирана библиотеката."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3147012\n"
+"77\n"
+"help.text"
+msgid "Click <emph>Save</emph> to export the library."
+msgstr "Щракнете върху <emph>Съхраняване</emph>, за да експортирате библиотеката."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"hd_id3159100\n"
+"17\n"
+"help.text"
+msgid "Deleting a Library"
+msgstr "Изтриване на библиотека"
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3150086\n"
+"18\n"
+"help.text"
+msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
+msgstr "Изберете <emph>Инструменти - Макроси - Управление на макроси - %PRODUCTNAME Basic</emph> и щракнете върху <emph>Организатор</emph> или щракнете върху иконата <emph>Избор на модул</emph> в развойната среда на Basic, за да отворите диалоговия прозорец <emph>Управление на макроси</emph>."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3146808\n"
+"57\n"
+"help.text"
+msgid "Click the <emph>Libraries</emph> tab."
+msgstr "Щракнете върху раздела <emph>Библиотеки</emph>."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3158212\n"
+"58\n"
+"help.text"
+msgid "Select the library to be deleted from the list."
+msgstr "Изберете от списъка библиотеката, която да бъде изтрита."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3150361\n"
+"20\n"
+"help.text"
+msgid "Click <emph>Delete</emph>."
+msgstr "Щракнете върху <emph>Изтриване</emph>."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3152986\n"
+"19\n"
+"help.text"
+msgid "Deleting a library permanently deletes all existing modules and corresponding procedures and functions."
+msgstr "Безвъзвратното изтриване на библиотека изтрива всички съществуващи модули и съответните процедури и функции."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3148868\n"
+"59\n"
+"help.text"
+msgid "You cannot delete the default library named \"Standard\"."
+msgstr "Не можете да изтриете подразбираната библиотека с име „Standard“."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3146869\n"
+"60\n"
+"help.text"
+msgid "If you delete a library that was inserted as reference only the reference is deleted but not the library itself."
+msgstr "Ако изтриете библиотека, която е била вмъкната като обръщение, се премахва само обръщението, но не и самата библиотека."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"hd_id3147070\n"
+"21\n"
+"help.text"
+msgid "Organizing Modules and Dialogs"
+msgstr "Организиране на модули и диалогови прозорци"
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"hd_id3155265\n"
+"61\n"
+"help.text"
+msgid "Creating a New Module or Dialog"
+msgstr "Създаване на нов модул или диалогов прозорец"
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3154537\n"
+"62\n"
+"help.text"
+msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
+msgstr "Изберете <emph>Инструменти - Макроси - Управление на макроси - %PRODUCTNAME Basic</emph> и щракнете върху <emph>Организатор</emph> или щракнете върху иконата <emph>Избор на модул</emph> в развойната среда на Basic, за да отворите диалоговия прозорец <emph>Управление на макроси</emph>."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3146781\n"
+"63\n"
+"help.text"
+msgid "Click the <emph>Modules</emph> tab or the <emph>Dialogs</emph> tab."
+msgstr "Щракнете върху раздела <emph>Модули</emph> или <emph>Диалогови прозорци</emph>."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3159206\n"
+"64\n"
+"help.text"
+msgid "Select the library where the module will be inserted and click <emph>New</emph>."
+msgstr "Изберете библиотеката, в която да бъде вмъкнат модулът, и натиснете <emph>Нов</emph>."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3152389\n"
+"65\n"
+"help.text"
+msgid "Enter a name for the module or the dialog and click <emph>OK</emph>."
+msgstr "Въведете име за модула или диалоговия прозорец и щракнете върху <emph>OK</emph>."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"hd_id3152872\n"
+"25\n"
+"help.text"
+msgid "Renaming a Module or Dialog"
+msgstr "Преименуване на модул или диалогов прозорец"
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3159230\n"
+"66\n"
+"help.text"
+msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
+msgstr "Изберете <emph>Инструменти - Макроси - Управление на макроси - %PRODUCTNAME Basic</emph> и щракнете върху <emph>Организатор</emph> или щракнете върху иконата <emph>Избор на модул</emph> в развойната среда на Basic, за да отворите диалоговия прозорец <emph>Управление на макроси</emph>."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3150046\n"
+"67\n"
+"help.text"
+msgid "Click the module to be renamed twice, with a pause between the clicks. Enter the new name."
+msgstr "Щракнете два пъти върху модула, който искате да преименувате, с пауза между щракванията. Въведете новото име."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3153801\n"
+"27\n"
+"help.text"
+msgid "In the Basic IDE, right-click the name of the module or dialog in the tabs at the bottom of the screen, choose <emph>Rename</emph> and type in the new name."
+msgstr "В развойната среда на Basic щракнете с десния бутон върху името на модула или диалоговия прозорец сред етикетите в долния край на екрана, изберете <emph>Преименуване</emph> и въведете новото име."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3155526\n"
+"28\n"
+"help.text"
+msgid "Press Enter to confirm your changes."
+msgstr "Натиснете Enter, за да потвърдите промените."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"hd_id3146963\n"
+"29\n"
+"help.text"
+msgid "Deleting a Module or Dialog"
+msgstr "Изтриване на модул или диалогов прозорец"
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3147547\n"
+"68\n"
+"help.text"
+msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
+msgstr "Изберете <emph>Инструменти - Макроси - Управление на макроси - %PRODUCTNAME Basic</emph> и щракнете върху <emph>Организатор</emph> или щракнете върху иконата <emph>Избор на модул</emph> в развойната среда на Basic, за да отворите диалоговия прозорец <emph>Управление на макроси</emph>."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3150958\n"
+"69\n"
+"help.text"
+msgid "Click the <emph>Modules</emph> tab or the <emph>Dialogs</emph> tab."
+msgstr "Щракнете върху раздела <emph>Модули</emph> или <emph>Диалогови прозорци</emph>."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3149870\n"
+"30\n"
+"help.text"
+msgid "Select the module or dialog to be deleted from the list. Double-click an entry to reveal sub-entries, if required."
+msgstr "Изберете модула или диалоговия прозорец, който да бъде изтрит от списъка. Ако е необходимо, щракнете двукратно върху елемент, за да видите подчинените му елементи."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3147248\n"
+"32\n"
+"help.text"
+msgid "Click <emph>Delete</emph>."
+msgstr "Щракнете върху <emph>Изтриване</emph>."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3151339\n"
+"31\n"
+"help.text"
+msgid "Deleting a module permanently deletes all existing procedures and functions in that module."
+msgstr "Изтриването на модул изтрива безвъзвратно всички съществуващи процедури и функции в него."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"hd_id3151392\n"
+"33\n"
+"help.text"
+msgid "Organizing Projects among Documents or Templates"
+msgstr "Организиране на проекти в документи или шаблони"
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"hd_id3156400\n"
+"36\n"
+"help.text"
+msgid "Moving or copying modules between documents, templates and the application."
+msgstr "Преместване или копиране на модули между документи, шаблони и самото приложение"
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3146819\n"
+"37\n"
+"help.text"
+msgid "Open all documents or templates among which you want to move or copy the modules or dialogs."
+msgstr "Отворете всички документи или шаблони, между които желаете да местите или копирате модули или диалогови прозорци."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3149319\n"
+"38\n"
+"help.text"
+msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
+msgstr "Изберете <emph>Инструменти - Макроси - Управление на макроси - %PRODUCTNAME Basic</emph> и щракнете върху <emph>Организатор</emph> или щракнете върху иконата <emph>Избор на модул</emph> в развойната среда на Basic, за да отворите диалоговия прозорец <emph>Управление на макроси</emph>."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3145637\n"
+"39\n"
+"help.text"
+msgid "To move a module or dialog to another document, click the corresponding object in the list and drag it to the desired position. A horizontal line indicates the target position of the current object while dragging. Hold the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key while dragging to copy the object instead of moving it."
+msgstr "За да преместите модул или диалогов прозорец в друг документ, щракнете върху съответния обект в списъка и го плъзнете до желаната позиция. По време на плъзгането позицията – цел се показва с хоризонтална линия. Задръжте клавиша <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> докато плъзгате, за да копирате обекта, вместо да го преместите."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Event-Driven Macros"
+msgstr "Макроси, задействани от събития"
+
+#: 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>events; assigning macros</bookmark_value>"
+msgstr "<bookmark_value>изтриване; макрос, зададен за събитие</bookmark_value><bookmark_value>макроси; задаване за събития</bookmark_value><bookmark_value>задаване на макроси за събития</bookmark_value><bookmark_value>събития; задаване на макроси</bookmark_value>"
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"hd_id3147348\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/01040000.xhp\" name=\"Event-Driven Macros\">Event-Driven Macros</link>"
+msgstr "<link href=\"text/sbasic/shared/01040000.xhp\" name=\"Макроси, задействани от събития\">Макроси, задействани от събития</link>"
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3146120\n"
+"2\n"
+"help.text"
+msgid "This section describes how to assign Basic programs to program events."
+msgstr "В този раздел е показано как се приписват програми на Basic на програмни събития."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3149263\n"
+"4\n"
+"help.text"
+msgid "You can automatically execute a macro when a specified software event occurs by assigning the desired macro to the event. The following table provides an overview of program events and at what point an assigned macro is executed."
+msgstr "Когато припишете макрос на дадено събитие, той ще се изпълнява автоматично при възникване на събитието. Вижте следващата таблица за общ преглед на програмните събития и моментите, в които се изпълняват зададените макроси."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3148455\n"
+"5\n"
+"help.text"
+msgid "Event"
+msgstr "Събитие"
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3145799\n"
+"6\n"
+"help.text"
+msgid "An assigned macro is executed..."
+msgstr "Приписаният макрос се изпълнява…"
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3149379\n"
+"7\n"
+"help.text"
+msgid "Program Start"
+msgstr "При стартиране на приложение"
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3150715\n"
+"8\n"
+"help.text"
+msgid "... after a $[officename] application is started."
+msgstr "…след като бъде стартирано приложение на $[officename]."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3146914\n"
+"9\n"
+"help.text"
+msgid "Program End"
+msgstr "При затваряне на приложение"
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3153765\n"
+"10\n"
+"help.text"
+msgid "...before a $[officename] application is terminated."
+msgstr "…преди да се спре приложение на $[officename]."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3145150\n"
+"11\n"
+"help.text"
+msgid "Create Document"
+msgstr "При създаване на документ"
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3163808\n"
+"12\n"
+"help.text"
+msgid "...after a new document is created with <emph>File - New</emph> or with the <emph>New</emph> icon."
+msgstr "…след като бъде създаден нов документ с <emph>Файл - Нов</emph> или с иконата <emph>Нов</emph>."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3145790\n"
+"13\n"
+"help.text"
+msgid "Open Document"
+msgstr "При отваряне на документ"
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3154572\n"
+"14\n"
+"help.text"
+msgid "...after a document is opened with <emph>File - Open</emph> or with the <emph>Open</emph> icon."
+msgstr "…след като бъде отворен документ с <emph>Файл - Отваряне</emph> или с иконата <emph>Отваряне</emph>."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3153266\n"
+"15\n"
+"help.text"
+msgid "Save Document As"
+msgstr "При съхраняване на документ като"
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3150208\n"
+"16\n"
+"help.text"
+msgid "...before a document is saved under a specified name (with <emph>File - Save As</emph>, or with <emph>File - Save</emph> or the <emph>Save</emph> icon, if a document name has not yet been specified)."
+msgstr "…преди документ да бъде запазен под зададено име (с <emph>Файл - Съхраняване като</emph> или с <emph>Файл - Съхраняване</emph> или иконата <emph>Файл - Съхраняване</emph>, ако на файла още не е зададено име)."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3158215\n"
+"43\n"
+"help.text"
+msgid "Document has been saved as"
+msgstr "След съхраняване на документ като"
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3150980\n"
+"44\n"
+"help.text"
+msgid "... after a document was saved under a specified name (with <emph>File - Save As</emph>, or with <emph>File - Save</emph> or with the <emph>Save</emph> icon, if a document name has not yet been specified)."
+msgstr "…след като документ бъде запазен под зададено име (с <emph>Файл - Съхраняване като</emph> или с <emph>Файл - Съхраняване</emph> или иконата <emph>Съхраняване</emph>, ако на файла още не е зададено име)."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3150519\n"
+"17\n"
+"help.text"
+msgid "Save Document"
+msgstr "При съхраняване на документ"
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3155529\n"
+"18\n"
+"help.text"
+msgid "...before a document is saved with <emph>File - Save</emph> or the <emph>Save</emph> icon, provided that a document name has already been specified."
+msgstr "…преди документ да бъде запазен с <emph>Файл - Съхраняване</emph> или иконата <emph>Съхраняване</emph>, ако вече му е зададено име."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3149404\n"
+"45\n"
+"help.text"
+msgid "Document has been saved"
+msgstr "След съхраняване на документ"
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3151332\n"
+"46\n"
+"help.text"
+msgid "...after a document is saved with <emph>File - Save</emph> or the <emph>Save</emph> icon, provided that a document name has already been specified."
+msgstr "…след като документ бъде запазен с <emph>Файл - Съхраняване</emph> или иконата <emph>Съхраняване</emph>, ако вече му е зададено име."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3159171\n"
+"19\n"
+"help.text"
+msgid "Document is closing"
+msgstr "Документът се затваря"
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3146868\n"
+"20\n"
+"help.text"
+msgid "...before a document is closed."
+msgstr "…преди да бъде затворен документ."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3159097\n"
+"47\n"
+"help.text"
+msgid "Document closed"
+msgstr "Документът е затворен"
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3148606\n"
+"48\n"
+"help.text"
+msgid "...after a document was closed. Note that the \"Save Document\" event may also occur when the document is saved before closing."
+msgstr "…след като е бил затворен документ. Забележете, че събитието „При съхраняване на документ“ може да възникне когато документът се запазва преди затваряне."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3144772\n"
+"21\n"
+"help.text"
+msgid "Activate Document"
+msgstr "При активиране на документ"
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3149442\n"
+"22\n"
+"help.text"
+msgid "...after a document is brought to the foreground."
+msgstr "…след като документ бъде изнесен на преден план."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3150888\n"
+"23\n"
+"help.text"
+msgid "Deactivate Document"
+msgstr "При деактивиране на документ"
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3154060\n"
+"24\n"
+"help.text"
+msgid "...after another document is brought to the foreground."
+msgstr "…след като друг документ бъде изнесен на преден план."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3152384\n"
+"25\n"
+"help.text"
+msgid "Print Document"
+msgstr "При печатане на документ"
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3152873\n"
+"26\n"
+"help.text"
+msgid "...after the <emph>Print</emph> dialog is closed, but before the actual print process begins."
+msgstr "…след като бъде затворен диалоговият прозорец <emph>Печат</emph>, но преди началото на действителното отпечатване."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3159227\n"
+"49\n"
+"help.text"
+msgid "JavaScript run-time error"
+msgstr "Грешка при изпълнение на JavaScript"
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3145362\n"
+"50\n"
+"help.text"
+msgid "...when a JavaScript run-time error occurs."
+msgstr "…когато възникне грешка по време на изпълнение на JavaScript."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3154767\n"
+"27\n"
+"help.text"
+msgid "Print Mail Merge"
+msgstr "При печат на типови писма"
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3153555\n"
+"28\n"
+"help.text"
+msgid "...after the <emph>Print</emph> dialog is closed, but before the actual print process begins. This event occurs for each copy printed."
+msgstr "…след като бъде затворен диалоговият прозорец <emph>Печат</emph>, но преди началото на действителното отпечатване. Това събитие възниква при отпечатването на всяко копие."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3156366\n"
+"51\n"
+"help.text"
+msgid "Change of the page count"
+msgstr "При промяна в броя на страниците"
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3154627\n"
+"52\n"
+"help.text"
+msgid "...when the page count changes."
+msgstr "…когато броят на страниците се промени."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3154737\n"
+"53\n"
+"help.text"
+msgid "Message received"
+msgstr "При получаване на съобщение"
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3150952\n"
+"54\n"
+"help.text"
+msgid "...if a message was received."
+msgstr "…ако бъде получено съобщение."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"hd_id3153299\n"
+"30\n"
+"help.text"
+msgid "Assigning a Macro to an Event"
+msgstr "Приписване на макрос на събитие"
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3147244\n"
+"31\n"
+"help.text"
+msgid "Choose <emph>Tools - Customize</emph> and click the <emph>Events</emph> tab."
+msgstr "Изберете <emph>Инструменти - Персонализиране</emph> и щракнете върху раздела <emph>Събития</emph>."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3146098\n"
+"55\n"
+"help.text"
+msgid "Select whether you want the assignment to be globally valid or just valid in the current document in the <emph>Save In</emph> listbox."
+msgstr "Посочете дали желаете приписването на макрос да важи глобално или само в текущия документ чрез списъчното поле <emph>Съхраняване в</emph>."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3150431\n"
+"32\n"
+"help.text"
+msgid "Select the event from the <emph>Event</emph> list."
+msgstr "Изберете събитието от списъка <emph>Събитие</emph>."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3148742\n"
+"33\n"
+"help.text"
+msgid "Click <emph>Macro</emph> and select the macro to be assigned to the selected event."
+msgstr "Щракнете върху <emph>Макрос</emph> и изберете макроса, който да бъде приписан на избраното събитие."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3146321\n"
+"35\n"
+"help.text"
+msgid "Click <emph>OK</emph> to assign the macro."
+msgstr "Щракнете върху <emph>OK</emph>, за да припишете макроса."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3147414\n"
+"56\n"
+"help.text"
+msgid "Click <emph>OK</emph> to close the dialog."
+msgstr "Щракнете върху <emph>OK</emph>, за да затворите диалоговия прозорец."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"hd_id3154581\n"
+"36\n"
+"help.text"
+msgid "Removing the Assignment of a Macro to an Event"
+msgstr "Отмяна на приписването на макрос на събитие"
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3146883\n"
+"57\n"
+"help.text"
+msgid "Choose <emph>Tools - Customize</emph> and click the <emph>Events</emph> tab."
+msgstr "Изберете <emph>Инструменти - Персонализиране</emph> и щракнете върху раздела <emph>Събития</emph>."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3155909\n"
+"58\n"
+"help.text"
+msgid "Select whether you want to remove a global assignment or an assignment that is just valid in the current document by selecting the option in the <emph>Save In</emph> listbox."
+msgstr "Посочете дали желаете да премахнете глобално приписване на макрос или такова в текущия документ чрез списъчното поле <emph>Съхраняване в</emph>."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3159129\n"
+"59\n"
+"help.text"
+msgid "Select the event that contains the assignment to be removed from the <emph>Event</emph> list."
+msgstr "Изберете събитието, на което е приписан макросът, от списъка <emph>Събитие</emph>."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3149143\n"
+"37\n"
+"help.text"
+msgid "Click <emph>Remove</emph>."
+msgstr "Щракнете върху <emph>Премахване</emph>."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3149351\n"
+"60\n"
+"help.text"
+msgid "Click <emph>OK</emph> to close the dialog."
+msgstr "Щракнете върху <emph>OK</emph>, за да затворите диалоговия прозорец."
+
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"tit\n"
+"help.text"
+msgid "$[officename] Basic IDE"
+msgstr "Развойна среда на $[officename] Basic"
+
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"hd_id3154422\n"
+"1\n"
+"help.text"
+msgid "<variable id=\"01050000\"><link href=\"text/sbasic/shared/01050000.xhp\" name=\"$[officename] Basic IDE\">$[officename] Basic IDE</link></variable>"
+msgstr "<variable id=\"01050000\"><link href=\"text/sbasic/shared/01050000.xhp\" name=\"Развойна среда на $[officename] Basic\">Развойна среда на $[officename] Basic</link></variable>"
+
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"par_id3153142\n"
+"2\n"
+"help.text"
+msgid "This section describes the structure of the Basic IDE."
+msgstr "В настоящия раздел е описана структурата на развойната среда на Basic."
+
+#: 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 "<ahelp hid=\".\" visibility=\"hidden\">Отваря развойната среда на Basic, в която можете да пишете и редактирате макроси.</ahelp>"
+
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"hd_id3153188\n"
+"5\n"
+"help.text"
+msgid "Commands From the Context menu of the Module Tabs"
+msgstr "Команди от контекстното меню на разделите с модули"
+
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"hd_id3154731\n"
+"6\n"
+"help.text"
+msgid "Insert"
+msgstr "Вмъкване"
+
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"hd_id3151074\n"
+"8\n"
+"help.text"
+msgid "Module"
+msgstr "Модул"
+
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"par_id3149581\n"
+"9\n"
+"help.text"
+msgid "<ahelp hid=\".uno:NewModule\">Inserts a new module into the current library.</ahelp>"
+msgstr "<ahelp hid=\".uno:NewModule\">Вмъква нов модул в текущата библиотека.</ahelp>"
+
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"hd_id3147397\n"
+"10\n"
+"help.text"
+msgid "Dialog"
+msgstr "Диалогов прозорец"
+
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"par_id3144335\n"
+"11\n"
+"help.text"
+msgid "<ahelp hid=\".uno:NewDialog\">Inserts a new dialog into the current library.</ahelp>"
+msgstr "<ahelp hid=\".uno:NewDialog\">Вмъква нов диалогов прозорец в текущата библиотека.</ahelp>"
+
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"hd_id3155602\n"
+"12\n"
+"help.text"
+msgid "Delete"
+msgstr "Изтриване"
+
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"par_id3155064\n"
+"13\n"
+"help.text"
+msgid "<ahelp hid=\".uno:DeleteCurrent\">Deletes the selected module.</ahelp>"
+msgstr "<ahelp hid=\".uno:DeleteCurrent\">изтрива избрания модул.</ahelp>"
+
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"hd_id3149018\n"
+"14\n"
+"help.text"
+msgid "Rename"
+msgstr "Преименуване"
+
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"par_id3154754\n"
+"15\n"
+"help.text"
+msgid "<ahelp hid=\".uno:RenameCurrent\">Renames the current module in place.</ahelp>"
+msgstr "<ahelp hid=\".uno:RenameCurrent\">Преименува текущия модул на място.</ahelp>"
+
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"hd_id3150043\n"
+"16\n"
+"help.text"
+msgid "Hide"
+msgstr "Скриване"
+
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"par_id3145147\n"
+"17\n"
+"help.text"
+msgid "<ahelp hid=\".uno:HideCurPage\">Hides the current module.</ahelp>"
+msgstr "<ahelp hid=\".uno:HideCurPage\">Скрива текущия модул.</ahelp>"
+
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"hd_id3163805\n"
+"18\n"
+"help.text"
+msgid "Modules"
+msgstr "Модули"
+
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"par_id3153965\n"
+"19\n"
+"help.text"
+msgid "Opens the <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Macro Organizer\"><emph>Macro Organizer</emph></link> dialog."
+msgstr "Opens the <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Организиране на макроси\"><emph>Организиране на макроси</emph></link> dialog."
+
+#: 01050100.xhp
+msgctxt ""
+"01050100.xhp\n"
+"tit\n"
+"help.text"
+msgid "Watch Window"
+msgstr "Прозорец за следене"
+
+#: 01050100.xhp
+msgctxt ""
+"01050100.xhp\n"
+"hd_id3149457\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/01050100.xhp\">Watch Window</link>"
+msgstr "<link href=\"text/sbasic/shared/01050100.xhp\">Прозорец за следене</link>"
+
+#: 01050100.xhp
+msgctxt ""
+"01050100.xhp\n"
+"par_id3154908\n"
+"9\n"
+"help.text"
+msgid "The Watch window allows you to observe the value of variables during the execution of a program. Define the variable in the Watch text box. Click on <link href=\"text/sbasic/shared/02/11080000.xhp\">Enable Watch</link> to add the variable to the list box and to display its values."
+msgstr "Прозорецът за следене ви позволява да наблюдавате стойностите на променливи по време на изпълнение на програма. Задайте променливата в текстовото поле Следене. Щракнете върху <link href=\"text/sbasic/shared/02/11080000.xhp\">Разрешаване на следенето</link>, за да добавите променливата към списъка и да виждате стойностите й."
+
+#: 01050100.xhp
+msgctxt ""
+"01050100.xhp\n"
+"hd_id3145173\n"
+"4\n"
+"help.text"
+msgid "Watch"
+msgstr "Следене"
+
+#: 01050100.xhp
+msgctxt ""
+"01050100.xhp\n"
+"par_id3155132\n"
+"5\n"
+"help.text"
+msgid "<ahelp hid=\"HID_BASICIDE_WATCHWINDOW_EDIT\">Enter the name of the variable whose value is to be monitored.</ahelp>"
+msgstr "<ahelp hid=\"HID_BASICIDE_WATCHWINDOW_EDIT\">Въведете името на променливата, чиято стойност ще наблюдавате.</ahelp>"
+
+#: 01050100.xhp
+msgctxt ""
+"01050100.xhp\n"
+"hd_id3148645\n"
+"6\n"
+"help.text"
+msgid "Remove Watch"
+msgstr "Премахване от списъка за следене"
+
+#: 01050100.xhp
+msgctxt ""
+"01050100.xhp\n"
+"par_id3148576\n"
+"7\n"
+"help.text"
+msgid "<ahelp hid=\"HID_BASICIDE_REMOVEWATCH\">Removes the selected variable from the list of watched variables.</ahelp>"
+msgstr "<ahelp hid=\"HID_BASICIDE_REMOVEWATCH\">Премахва избраната променлива от списъка със следени променливи.</ahelp>"
+
+#: 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 "<image id=\"img_id3152460\" src=\"res/baswatr.png\" width=\"0.25inch\" height=\"0.222inch\"><alt id=\"alt_id3152460\">Икона</alt></image>"
+
+#: 01050100.xhp
+msgctxt ""
+"01050100.xhp\n"
+"par_id3154012\n"
+"8\n"
+"help.text"
+msgid "Remove Watch"
+msgstr "Премахване от списъка за следене"
+
+#: 01050100.xhp
+msgctxt ""
+"01050100.xhp\n"
+"hd_id3154491\n"
+"10\n"
+"help.text"
+msgid "Editing the Value of a Watched Variable"
+msgstr "Редактиране стойността на наблюдавана променлива"
+
+#: 01050100.xhp
+msgctxt ""
+"01050100.xhp\n"
+"par_id3156283\n"
+"11\n"
+"help.text"
+msgid "<ahelp hid=\"HID_BASICIDE_WATCHWINDOW_LIST\">Displays the list of watched variables. Click twice with a short pause in between on an entry to edit its value.</ahelp> The new value will be taken as the variable's value for the program."
+msgstr "<ahelp hid=\"HID_BASICIDE_WATCHWINDOW_LIST\">Показва списъка със следени променливи. Щракнете два пъти върху елемент с кратка пауза между щракванията, за да редактирате стойността.</ahelp> Новата стойност ще бъде приета като стойност на променливата в програмата."
+
+#: 01050200.xhp
+msgctxt ""
+"01050200.xhp\n"
+"tit\n"
+"help.text"
+msgid "Call Stack Window (Calls)"
+msgstr "Прозорец на стека (Извиквания)"
+
+#: 01050200.xhp
+msgctxt ""
+"01050200.xhp\n"
+"hd_id3146794\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/01050200.xhp\" name=\"Call Stack Window (Calls)\">Call Stack Window (Calls)</link>"
+msgstr "<link href=\"text/sbasic/shared/01050200.xhp\" name=\"Прозорец на стека (Извиквания)\">Прозорец на стека (Извиквания)</link>"
+
+#: 01050200.xhp
+msgctxt ""
+"01050200.xhp\n"
+"par_id3150400\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\"HID_BASICIDE_STACKWINDOW_LIST\" visibility=\"hidden\">Displays the sequence of procedures and functions during the execution of a program.</ahelp> The <emph>Call Stack</emph> allows you to monitor the sequence of procedures and functions during the execution of a program. The procedures are functions are displayed bottom to top with the most recent function or procedure call at the top of the list."
+msgstr "<ahelp hid=\"HID_BASICIDE_STACKWINDOW_LIST\" visibility=\"hidden\">Показва реда на изпълняваните процедури и функции при изпълнението на програма.</ahelp> <emph>Стекът на извикванията</emph> ви позволява да следите реда на изпълняване на процедури и функции по време на изпълнението на програма. Процедурите и функциите се показват отдолу нагоре, като най-скоро извиканата функция или процедура е в началото на списъка."
+
+#: 01050300.xhp
+msgctxt ""
+"01050300.xhp\n"
+"tit\n"
+"help.text"
+msgid "Manage Breakpoints"
+msgstr "Управление на точките за прекъсване"
+
+#: 01050300.xhp
+msgctxt ""
+"01050300.xhp\n"
+"hd_id3154927\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/01050300.xhp\" name=\"Manage Breakpoints\">Manage Breakpoints</link>"
+msgstr "<link href=\"text/sbasic/shared/01050300.xhp\" name=\"Управление на точките на прекъсване\">Управление на точките на прекъсване</link>"
+
+#: 01050300.xhp
+msgctxt ""
+"01050300.xhp\n"
+"par_id3148550\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\"HID_BASICIDE_BRKPROPS\">Specifies the options for breakpoints.</ahelp>"
+msgstr "<ahelp hid=\"HID_BASICIDE_BRKPROPS\">Задава настройките за точки на прекъсване.</ahelp>"
+
+#: 01050300.xhp
+msgctxt ""
+"01050300.xhp\n"
+"hd_id3149670\n"
+"3\n"
+"help.text"
+msgid "Breakpoints"
+msgstr "Точки на прекъсване"
+
+#: 01050300.xhp
+msgctxt ""
+"01050300.xhp\n"
+"par_id3150398\n"
+"4\n"
+"help.text"
+msgid "<ahelp hid=\"BASCTL_COMBOBOX_RID_BASICIDE_BREAKPOINTDLG_RID_CB_BRKPOINTS\">Enter the line number for a new breakpoint, then click <emph>New</emph>.</ahelp>"
+msgstr "<ahelp hid=\"BASCTL_COMBOBOX_RID_BASICIDE_BREAKPOINTDLG_RID_CB_BRKPOINTS\">Въведете номер на ред за нова точка на прекъсване, после щракнете върху <emph>Нова</emph>.</ahelp>"
+
+#: 01050300.xhp
+msgctxt ""
+"01050300.xhp\n"
+"hd_id3156280\n"
+"6\n"
+"help.text"
+msgid "Active"
+msgstr "Активна"
+
+#: 01050300.xhp
+msgctxt ""
+"01050300.xhp\n"
+"par_id3154910\n"
+"7\n"
+"help.text"
+msgid "<ahelp hid=\"HID_BASICIDE_ACTIV\">Activates or deactivates the current breakpoint.</ahelp>"
+msgstr "<ahelp hid=\"HID_BASICIDE_ACTIV\">Активира или дезактивира текущата точка на прекъсване.</ahelp>"
+
+#: 01050300.xhp
+msgctxt ""
+"01050300.xhp\n"
+"hd_id3144500\n"
+"8\n"
+"help.text"
+msgid "Pass Count"
+msgstr "Брой пасове"
+
+#: 01050300.xhp
+msgctxt ""
+"01050300.xhp\n"
+"par_id3161831\n"
+"9\n"
+"help.text"
+msgid "<ahelp hid=\"BASCTL_NUMERICFIELD_RID_BASICIDE_BREAKPOINTDLG_RID_FLD_PASS\">Specify the number of loops to perform before the breakpoint takes effect.</ahelp>"
+msgstr "<ahelp hid=\"BASCTL_NUMERICFIELD_RID_BASICIDE_BREAKPOINTDLG_RID_FLD_PASS\">Задайте колко пъти да се изпълни редът, преди да се задейства точката на прекъсване.</ahelp>"
+
+#: 01050300.xhp
+msgctxt ""
+"01050300.xhp\n"
+"hd_id3152579\n"
+"10\n"
+"help.text"
+msgid "New"
+msgstr "Нова"
+
+#: 01050300.xhp
+msgctxt ""
+"01050300.xhp\n"
+"par_id3148575\n"
+"11\n"
+"help.text"
+msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_BASICIDE_BREAKPOINTDLG_RID_PB_NEW\">Creates a breakpoint on the line number specified.</ahelp>"
+msgstr "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_BASICIDE_BREAKPOINTDLG_RID_PB_NEW\">Създава точка на прекъсване върху реда с указания номер.</ahelp>"
+
+#: 01050300.xhp
+msgctxt ""
+"01050300.xhp\n"
+"hd_id3147319\n"
+"12\n"
+"help.text"
+msgid "Delete"
+msgstr "Изтриване"
+
+#: 01050300.xhp
+msgctxt ""
+"01050300.xhp\n"
+"par_id3153363\n"
+"13\n"
+"help.text"
+msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_BASICIDE_BREAKPOINTDLG_RID_PB_DEL\">Deletes the selected breakpoint.</ahelp>"
+msgstr "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_BASICIDE_BREAKPOINTDLG_RID_PB_DEL\">Изтрива избраната точка на прекъсване.</ahelp>"
+
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"tit\n"
+"help.text"
+msgid "Control and Dialog Properties"
+msgstr "Свойства на елементи за управление и диалогови прозорци"
+
+#: 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 "<bookmark_value>елементи за управление; свойства</bookmark_value><bookmark_value>свойства; елементи за управление и диалогови прозорци</bookmark_value><bookmark_value>диалогови прозорци; свойства</bookmark_value>"
+
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"hd_id3153379\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/01170100.xhp\" name=\"Control and Dialog Properties\">Control and Dialog Properties</link>"
+msgstr "<link href=\"text/sbasic/shared/01170100.xhp\" name=\"Свойства на елементи за управление и диалогови прозорци\">Свойства на елементи за управление и диалогови прозорци</link>"
+
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"par_id3156280\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specifies the properties of the selected dialog or control.</ahelp> You must be in the design mode to be able to use this command."
+msgstr "<ahelp hid=\".\">Задава свойствата на избрания диалогов прозорец или елемент за управление.</ahelp> За да използвате тази команда, трябва да работите в режим на проектиране."
+
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"hd_id3151043\n"
+"20\n"
+"help.text"
+msgid "Entering Data in the Properties Dialog"
+msgstr "Въвеждане на данни в диалоговия прозорец Свойства"
+
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"par_id3153771\n"
+"3\n"
+"help.text"
+msgid "The following key combinations apply to enter data in multiline fields or combo boxes of the <emph>Properties</emph> dialog:"
+msgstr "Следните комбинации от клавиши са приложими при въвеждане на данни в полета с няколко реда или комбинирани полета в диалоговия прозорец <emph>Свойства</emph>:"
+
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"par_id3150010\n"
+"18\n"
+"help.text"
+msgid "Keys"
+msgstr "Клавиши"
+
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"par_id3147317\n"
+"19\n"
+"help.text"
+msgid "Effects"
+msgstr "Действие"
+
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"par_id3146121\n"
+"4\n"
+"help.text"
+msgid "Alt+Down Arrow"
+msgstr "Alt+стрелка надолу"
+
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"par_id3149581\n"
+"5\n"
+"help.text"
+msgid "Opens a combo box"
+msgstr "Отваря списъка на комбинираното поле"
+
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"par_id3147394\n"
+"6\n"
+"help.text"
+msgid "Alt+Up Arrow"
+msgstr "Alt+стрелка нагоре"
+
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"par_id3148455\n"
+"7\n"
+"help.text"
+msgid "Closes a combo box"
+msgstr "Затваря списъка на комбинираното поле"
+
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"par_id3154511\n"
+"8\n"
+"help.text"
+msgid "Shift+Enter"
+msgstr "Shift+Enter"
+
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"par_id3146971\n"
+"9\n"
+"help.text"
+msgid "Inserts a line break in multiline fields."
+msgstr "Вмъква нов ред в поле с няколко реда."
+
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"par_id3146914\n"
+"10\n"
+"help.text"
+msgid "(UpArrow)"
+msgstr "(Стрелка нагоре)"
+
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"par_id3153714\n"
+"11\n"
+"help.text"
+msgid "Goes to the previous line."
+msgstr "Преминава към предишния ред."
+
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"par_id3159266\n"
+"12\n"
+"help.text"
+msgid "(DownArrow)"
+msgstr "(Стрелка надолу)"
+
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"par_id3146314\n"
+"13\n"
+"help.text"
+msgid "Goes to the next line."
+msgstr "Преминава към следващия ред."
+
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"par_id3149255\n"
+"14\n"
+"help.text"
+msgid "Enter"
+msgstr "Enter"
+
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"par_id3149566\n"
+"15\n"
+"help.text"
+msgid "Applies the changes made to a field and places the cursor into the next field."
+msgstr "Прилага промените, нанесени в полето, и поставя курсора в следващото поле."
+
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -396,7 +5430,7 @@ msgctxt ""
"95\n"
"help.text"
msgid "L"
-msgstr "L"
+msgstr ""
#: 01170101.xhp
msgctxt ""
@@ -414,7 +5448,7 @@ msgctxt ""
"97\n"
"help.text"
msgid "a"
-msgstr "a"
+msgstr ""
#: 01170101.xhp
msgctxt ""
@@ -432,7 +5466,7 @@ msgctxt ""
"99\n"
"help.text"
msgid "A"
-msgstr "A"
+msgstr ""
#: 01170101.xhp
msgctxt ""
@@ -450,7 +5484,7 @@ msgctxt ""
"101\n"
"help.text"
msgid "c"
-msgstr "c"
+msgstr ""
#: 01170101.xhp
msgctxt ""
@@ -468,7 +5502,7 @@ msgctxt ""
"103\n"
"help.text"
msgid "C"
-msgstr "C"
+msgstr ""
#: 01170101.xhp
msgctxt ""
@@ -486,7 +5520,7 @@ msgctxt ""
"105\n"
"help.text"
msgid "N"
-msgstr "N"
+msgstr ""
#: 01170101.xhp
msgctxt ""
@@ -504,7 +5538,7 @@ msgctxt ""
"107\n"
"help.text"
msgid "x"
-msgstr "x"
+msgstr ""
#: 01170101.xhp
msgctxt ""
@@ -522,7 +5556,7 @@ msgctxt ""
"109\n"
"help.text"
msgid "X"
-msgstr "X"
+msgstr ""
#: 01170101.xhp
msgctxt ""
@@ -1738,3157 +6772,2925 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the width of the current control or dialog.</ahelp>"
msgstr "<ahelp hid=\".\">Задайте ширината на текущия елемент за управление или диалогов прозорец.</ahelp>"
-#: 03010301.xhp
+#: 01170103.xhp
msgctxt ""
-"03010301.xhp\n"
+"01170103.xhp\n"
"tit\n"
"help.text"
-msgid "Blue Function [Runtime]"
-msgstr "Функция Blue [динамична]"
-
-#: 03010301.xhp
-msgctxt ""
-"03010301.xhp\n"
-"bm_id3149180\n"
-"help.text"
-msgid "<bookmark_value>Blue function</bookmark_value>"
-msgstr "<bookmark_value>Blue, функция</bookmark_value>"
+msgid "Events"
+msgstr "Събития"
-#: 03010301.xhp
+#: 01170103.xhp
msgctxt ""
-"03010301.xhp\n"
-"hd_id3149180\n"
+"01170103.xhp\n"
+"hd_id3155506\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03010301.xhp\" name=\"Blue Function [Runtime]\">Blue Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03010301.xhp\" name=\"Функция Blue [динамична]\">Функция Blue [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/01170103.xhp\" name=\"Events\">Events</link>"
+msgstr "<link href=\"text/sbasic/shared/01170103.xhp\" name=\"Събития\">Събития</link>"
-#: 03010301.xhp
+#: 01170103.xhp
msgctxt ""
-"03010301.xhp\n"
-"par_id3156343\n"
+"01170103.xhp\n"
+"par_id3146114\n"
"2\n"
"help.text"
-msgid "Returns the blue component of the specified color code."
-msgstr "Връща синия компонент от зададения код на цвят."
-
-#: 03010301.xhp
-msgctxt ""
-"03010301.xhp\n"
-"hd_id3149670\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
+msgid "Define event assignments for the selected control or dialog. The available events depend on the type of control selected."
+msgstr "Задайте макросите за събитията, свързани с избраният елемент за управление или диалогов прозорец. Достъпните събития зависят от вида на избрания елемент."
-#: 03010301.xhp
+#: 01170103.xhp
msgctxt ""
-"03010301.xhp\n"
-"par_id3149457\n"
-"4\n"
+"01170103.xhp\n"
+"hd_id3145387\n"
+"16\n"
"help.text"
-msgid "Blue (Color As Long)"
-msgstr "Blue (Color As Long)"
+msgid "When receiving focus"
+msgstr "При фокусиране"
-#: 03010301.xhp
+#: 01170103.xhp
msgctxt ""
-"03010301.xhp\n"
-"hd_id3149656\n"
-"5\n"
+"01170103.xhp\n"
+"par_id3155090\n"
+"17\n"
"help.text"
-msgid "Return value:"
-msgstr "Връщана стойност:"
+msgid "<ahelp hid=\"HID_EVT_FOCUSGAINED\">This event takes place if a control receives the focus.</ahelp>"
+msgstr "<ahelp hid=\"HID_EVT_FOCUSGAINED\">Това събитие възниква, ако елемент за управление получи фокуса.</ahelp>"
-#: 03010301.xhp
+#: 01170103.xhp
msgctxt ""
-"03010301.xhp\n"
-"par_id3154365\n"
-"6\n"
+"01170103.xhp\n"
+"hd_id3152892\n"
+"18\n"
"help.text"
-msgid "Integer"
-msgstr "Integer"
+msgid "When losing focus"
+msgstr "При загуба на фокуса"
-#: 03010301.xhp
+#: 01170103.xhp
msgctxt ""
-"03010301.xhp\n"
-"hd_id3156423\n"
-"7\n"
+"01170103.xhp\n"
+"par_id3153305\n"
+"19\n"
"help.text"
-msgid "Parameter:"
-msgstr "Параметър:"
+msgid "<ahelp hid=\"HID_EVT_FOCUSLOST\">This event takes place if a control loses the focus.</ahelp>"
+msgstr "<ahelp hid=\"HID_EVT_FOCUSLOST\">Това събитие възниква, ако елемент за управление загуби фокуса.</ahelp>"
-#: 03010301.xhp
+#: 01170103.xhp
msgctxt ""
-"03010301.xhp\n"
-"par_id3150448\n"
-"8\n"
+"01170103.xhp\n"
+"hd_id3152896\n"
+"20\n"
"help.text"
-msgid "<emph>Color value</emph>: Long integer expression that specifies any <link href=\"text/sbasic/shared/00000003.xhp#farbcodes\" name=\"color code\">color code</link> for which to return the blue component."
-msgstr "<emph>Color</emph>: израз от тип long integer, задаващ <link href=\"text/sbasic/shared/00000003.xhp#farbcodes\" name=\"код на цвят\">код на цвят</link>, за който да се намери синият компонент."
+msgid "Key pressed"
+msgstr "При натиснат клавиш"
-#: 03010301.xhp
+#: 01170103.xhp
msgctxt ""
-"03010301.xhp\n"
-"hd_id3153091\n"
-"9\n"
+"01170103.xhp\n"
+"par_id3148837\n"
+"21\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "<ahelp hid=\"HID_EVT_KEYTYPED\">This event occurs when the user presses any key while the control has the focus.</ahelp>"
+msgstr "<ahelp hid=\"HID_EVT_KEYTYPED\">Това събитие възниква, ако потребителят натисне клавиш, докато фокусът е върху елемента за управление.</ahelp>"
-#: 03010301.xhp
+#: 01170103.xhp
msgctxt ""
-"03010301.xhp\n"
-"par_id3154012\n"
-"13\n"
+"01170103.xhp\n"
+"hd_id3146869\n"
+"43\n"
"help.text"
-msgid "MsgBox \"The color \" & lVar & \" consists of:\" & Chr(13) &_"
-msgstr "MsgBox \"Цветът \" & lVar & \" съдържа:\" & Chr(13) &_"
+msgid "Key released"
+msgstr "При отпуснат клавиш"
-#: 03010301.xhp
+#: 01170103.xhp
msgctxt ""
-"03010301.xhp\n"
-"par_id3148645\n"
-"14\n"
+"01170103.xhp\n"
+"par_id3155267\n"
+"44\n"
"help.text"
-msgid "\"red= \" & Red(lVar) & Chr(13)&_"
-msgstr "\"червено= \" & Red(lVar) & Chr(13)&_"
+msgid "<ahelp hid=\"HID_EVT_KEYUP\">This event occurs when the user releases a key while the control has the focus.</ahelp>"
+msgstr "<ahelp hid=\"HID_EVT_KEYUP\">Това събитие възниква, ако потребителят отпусне клавиш, докато фокусът е върху елемента за управление.</ahelp>"
-#: 03010301.xhp
+#: 01170103.xhp
msgctxt ""
-"03010301.xhp\n"
-"par_id3159155\n"
-"15\n"
+"01170103.xhp\n"
+"hd_id3159096\n"
+"41\n"
"help.text"
-msgid "\"green= \" & Green(lVar) & Chr(13)&_"
-msgstr "\"зелено= \" & Green(lVar) & Chr(13)&_"
+msgid "Modified"
+msgstr "Променен"
-#: 03010301.xhp
+#: 01170103.xhp
msgctxt ""
-"03010301.xhp\n"
-"par_id3147319\n"
-"16\n"
+"01170103.xhp\n"
+"par_id3156019\n"
+"42\n"
"help.text"
-msgid "\"blue= \" & Blue(lVar) & Chr(13) , 64,\"colors\""
-msgstr "\"синьо= \" & Blue(lVar) & Chr(13), 64, \"Цветове\""
+msgid "<ahelp hid=\"HID_EVT_CHANGED\">This event takes place, when the control loses the focus and the contents of the control were changed since it lost the focus.</ahelp>"
+msgstr "<ahelp hid=\"HID_EVT_CHANGED\">Това събитие възниква, когато елементът за управление загуби фокуса и съдържанието му е променено след загубата на фокуса.</ahelp>"
-#: 03110100.xhp
+#: 01170103.xhp
msgctxt ""
-"03110100.xhp\n"
-"tit\n"
+"01170103.xhp\n"
+"hd_id3144508\n"
+"10\n"
"help.text"
-msgid "Comparison Operators [Runtime]"
-msgstr "Операции за сравнение [динамични]"
+msgid "Text modified"
+msgstr "При промяна в текста"
-#: 03110100.xhp
+#: 01170103.xhp
msgctxt ""
-"03110100.xhp\n"
-"bm_id3150682\n"
+"01170103.xhp\n"
+"par_id3148608\n"
+"11\n"
"help.text"
-msgid "<bookmark_value>comparison operators;%PRODUCTNAME Basic</bookmark_value><bookmark_value>operators;comparisons</bookmark_value>"
-msgstr "<bookmark_value>сравнение, операции за;%PRODUCTNAME Basic</bookmark_value><bookmark_value>операции;за сравнение</bookmark_value>"
+msgid "<ahelp hid=\"HID_EVT_TEXTCHANGED\">This event takes place if you enter or modify a text in an input field.</ahelp>"
+msgstr "<ahelp hid=\"HID_EVT_TEXTCHANGED\">Това събитие възниква, ако въведете или промените текст във входно поле.</ahelp>"
-#: 03110100.xhp
+#: 01170103.xhp
msgctxt ""
-"03110100.xhp\n"
-"hd_id3150682\n"
-"1\n"
+"01170103.xhp\n"
+"hd_id3159207\n"
+"8\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03110100.xhp\" name=\"Comparison Operators [Runtime]\">Comparison Operators [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03110100.xhp\" name=\"Операции за сравнение [динамични]\">Операции за сравнение [динамични]</link>"
+msgid "Item status changed"
+msgstr "При промяна в състоянието на обекта"
-#: 03110100.xhp
+#: 01170103.xhp
msgctxt ""
-"03110100.xhp\n"
-"par_id3156042\n"
-"2\n"
+"01170103.xhp\n"
+"par_id3155097\n"
+"9\n"
"help.text"
-msgid "Comparison operators compare two expressions. The result is returned as a Boolean expression that determines if the comparison is True (-1) or False (0)."
-msgstr "Операциите за сравнение сравняват стойностите на два израза. Резултатът е от тип Boolean и показва дали операцията има стойност True (-1) или False (0)."
+msgid "<ahelp hid=\"HID_EVT_ITEMSTATECHANGED\">This event takes place if the status of the control field is changed, for example, from checked to unchecked.</ahelp>"
+msgstr "<ahelp hid=\"HID_EVT_ITEMSTATECHANGED\">Това събитие възниква, ако състоянието на поле бъде променено, например от отметнато на празно.</ahelp>"
-#: 03110100.xhp
+#: 01170103.xhp
msgctxt ""
-"03110100.xhp\n"
-"hd_id3147291\n"
-"3\n"
+"01170103.xhp\n"
+"hd_id3151304\n"
+"26\n"
"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
+msgid "Mouse inside"
+msgstr "Когато мишката е вътре"
-#: 03110100.xhp
+#: 01170103.xhp
msgctxt ""
-"03110100.xhp\n"
-"par_id3149177\n"
-"4\n"
+"01170103.xhp\n"
+"par_id3152871\n"
+"27\n"
"help.text"
-msgid "Result = Expression1 { = | < | > | <= | >= } Expression2"
-msgstr "Result = Expression1 { = | < | > | <= | >= } Expression2"
+msgid "<ahelp hid=\"HID_EVT_MOUSEENTERED\">This event takes place when the mouse enters the control.</ahelp>"
+msgstr "<ahelp hid=\"HID_EVT_MOUSEENTERED\">Това събитие възниква, ако показалецът на мишката навлезе в елемента за управление.</ahelp>"
-#: 03110100.xhp
+#: 01170103.xhp
msgctxt ""
-"03110100.xhp\n"
-"hd_id3145316\n"
-"5\n"
+"01170103.xhp\n"
+"hd_id3146778\n"
+"30\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "Mouse moved while key pressed"
+msgstr "При местене на мишката с натиснат клавиш"
-#: 03110100.xhp
+#: 01170103.xhp
msgctxt ""
-"03110100.xhp\n"
-"par_id3147573\n"
-"6\n"
+"01170103.xhp\n"
+"par_id3150403\n"
+"31\n"
"help.text"
-msgid "<emph>Result:</emph> Boolean expression that specifies the result of the comparison (True, or False)"
-msgstr "<emph>Result:</emph> булева променлива за резултата от сравнението (True или False)."
+msgid "<ahelp hid=\"HID_EVT_MOUSEDRAGGED\">This event takes place when the mouse is dragged while a key is pressed.</ahelp>"
+msgstr "<ahelp hid=\"HID_EVT_MOUSEDRAGGED\">Това събитие възниква, ако мишката бъде плъзната с натиснат клавиш.</ahelp>"
-#: 03110100.xhp
+#: 01170103.xhp
msgctxt ""
-"03110100.xhp\n"
-"par_id3148686\n"
-"7\n"
+"01170103.xhp\n"
+"hd_id3150210\n"
+"32\n"
"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any numeric values or strings that you want to compare."
-msgstr "<emph>Expression1, Expression2:</emph> числови стойности или низове, които да бъдат сравнени."
+msgid "Mouse moved"
+msgstr "При преместване на мишката"
-#: 03110100.xhp
+#: 01170103.xhp
msgctxt ""
-"03110100.xhp\n"
-"hd_id3147531\n"
-"8\n"
+"01170103.xhp\n"
+"par_id3149697\n"
+"33\n"
"help.text"
-msgid "Comparison operators"
-msgstr "Операции за сравнение"
+msgid "<ahelp hid=\"HID_EVT_MOUSEMOVED\">This event takes place when the mouse moves over the control.</ahelp>"
+msgstr "<ahelp hid=\"HID_EVT_MOUSEMOVED\">Това събитие възниква, ако показалецът на мишката се премести през елемента за управление.</ahelp>"
-#: 03110100.xhp
+#: 01170103.xhp
msgctxt ""
-"03110100.xhp\n"
-"par_id3147265\n"
-"9\n"
+"01170103.xhp\n"
+"hd_id3145216\n"
+"22\n"
"help.text"
-msgid "= : Equal to"
-msgstr "= : равно на"
+msgid "Mouse button pressed"
+msgstr "При натиснат бутон на мишката"
-#: 03110100.xhp
+#: 01170103.xhp
msgctxt ""
-"03110100.xhp\n"
-"par_id3154924\n"
-"10\n"
+"01170103.xhp\n"
+"par_id3155914\n"
+"23\n"
"help.text"
-msgid "< : Less than"
-msgstr "< : по-малко"
+msgid "<ahelp hid=\"HID_EVT_MOUSEPRESSED\">This event takes place when the mouse button is pressed while the mouse pointer is on the control.</ahelp>"
+msgstr "<ahelp hid=\"HID_EVT_MOUSEPRESSED\">Това събитие възниква, ако бутонът на мишката бъде натиснат, докато показалецът й е върху елемента за управление.</ahelp>"
-#: 03110100.xhp
+#: 01170103.xhp
msgctxt ""
-"03110100.xhp\n"
-"par_id3146795\n"
-"11\n"
+"01170103.xhp\n"
+"hd_id3148899\n"
+"24\n"
"help.text"
-msgid "> : Greater than"
-msgstr "> : по-голямо"
+msgid "Mouse button released"
+msgstr "При отпуснат бутон на мишката"
-#: 03110100.xhp
+#: 01170103.xhp
msgctxt ""
-"03110100.xhp\n"
-"par_id3150541\n"
-"12\n"
+"01170103.xhp\n"
+"par_id3153812\n"
+"25\n"
"help.text"
-msgid "<= : Less than or equal to"
-msgstr "<= : по-малко или равно"
+msgid "<ahelp hid=\"HID_EVT_MOUSERELEASED\">This event takes place when the mouse button is released while the mouse pointer is on the control.</ahelp>"
+msgstr "<ahelp hid=\"HID_EVT_MOUSERELEASED\">Това събитие възниква, ако бутонът на мишката бъде отпуснат, докато показалецът й е върху елемента за управление.</ahelp>"
-#: 03110100.xhp
+#: 01170103.xhp
msgctxt ""
-"03110100.xhp\n"
-"par_id3150400\n"
-"13\n"
+"01170103.xhp\n"
+"hd_id3153556\n"
+"28\n"
"help.text"
-msgid ">= : Greater than or equal to"
-msgstr ">= : по-голямо или равно"
+msgid "Mouse outside"
+msgstr "Когато мишката е отвън"
-#: 03110100.xhp
+#: 01170103.xhp
msgctxt ""
-"03110100.xhp\n"
-"par_id3148797\n"
-"14\n"
+"01170103.xhp\n"
+"par_id3153013\n"
+"29\n"
"help.text"
-msgid "<> : Not equal to"
-msgstr "<> : различно"
+msgid "<ahelp hid=\"HID_EVT_MOUSEEXITED\">This event takes place when the mouse leaves the control.</ahelp>"
+msgstr "<ahelp hid=\"HID_EVT_MOUSEEXITED\">Това събитие възниква, ако показалецът на мишката напусне елемента за управление.</ahelp>"
-#: 03110100.xhp
+#: 01170103.xhp
msgctxt ""
-"03110100.xhp\n"
-"hd_id3154686\n"
-"15\n"
+"01170103.xhp\n"
+"hd_id3155759\n"
+"45\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "While adjusting"
+msgstr "При нагласяване"
-#: 03110100.xhp
+#: 01170103.xhp
msgctxt ""
-"03110100.xhp\n"
-"par_id3154909\n"
-"18\n"
+"01170103.xhp\n"
+"par_id3156364\n"
+"46\n"
"help.text"
-msgid "Dim sRoot As String ' Root directory for file in and output"
-msgstr "Dim sRoot As String ' Главна директория за файлов вход/изход"
+msgid "<ahelp hid=\"HID_EVT_MOUSEEXITED\">This event takes place when a scrollbar is being dragged.</ahelp>"
+msgstr "<ahelp hid=\"HID_EVT_MOUSEEXITED\">Това събитие възниква, когато плъзгач бъде преместен.</ahelp>"
-#: 03030303.xhp
+#: 03000000.xhp
msgctxt ""
-"03030303.xhp\n"
+"03000000.xhp\n"
"tit\n"
"help.text"
-msgid "Timer Function [Runtime]"
-msgstr "Функция Timer [динамична]"
-
-#: 03030303.xhp
-msgctxt ""
-"03030303.xhp\n"
-"bm_id3149346\n"
-"help.text"
-msgid "<bookmark_value>Timer function</bookmark_value>"
-msgstr "<bookmark_value>Timer, функция</bookmark_value>"
+msgid "Run-Time Functions"
+msgstr "Динамични функции"
-#: 03030303.xhp
+#: 03000000.xhp
msgctxt ""
-"03030303.xhp\n"
-"hd_id3149346\n"
+"03000000.xhp\n"
+"hd_id3152895\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03030303.xhp\" name=\"Timer Function [Runtime]\">Timer Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03030303.xhp\" name=\"Функция Timer [динамична]\">Функция Timer [динамична]</link>"
+msgid "<variable id=\"doc_title\"><link href=\"text/sbasic/shared/03000000.xhp\" name=\"Run-Time Functions\">Run-Time Functions</link></variable>"
+msgstr "<variable id=\"doc_title\"><link href=\"text/sbasic/shared/03000000.xhp\" name=\"Динамични функции\">Динамични функции</link></variable>"
-#: 03030303.xhp
+#: 03000000.xhp
msgctxt ""
-"03030303.xhp\n"
-"par_id3156023\n"
+"03000000.xhp\n"
+"par_id3148983\n"
"2\n"
"help.text"
-msgid "Returns a value that specifies the number of seconds that have elapsed since midnight."
-msgstr "Връща броя на секундите, изминали от полунощ."
-
-#: 03030303.xhp
-msgctxt ""
-"03030303.xhp\n"
-"par_id3156212\n"
-"3\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 "За да извикате функцията Timer, трябва първо да обявите променлива и да й присвоите типа данни Long, иначе че бъде върната стойност от тип Date."
-
-#: 03030303.xhp
-msgctxt ""
-"03030303.xhp\n"
-"hd_id3153768\n"
-"4\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
+msgid "This section describes the Runtime Functions of <item type=\"productname\">%PRODUCTNAME</item> Basic."
+msgstr "В този раздел са описани динамичните функции (runtime functions) на <item type=\"productname\">%PRODUCTNAME</item> Basic."
-#: 03030303.xhp
+#: 03010000.xhp
msgctxt ""
-"03030303.xhp\n"
-"par_id3161831\n"
-"5\n"
+"03010000.xhp\n"
+"tit\n"
"help.text"
-msgid "Timer"
-msgstr "Timer"
+msgid "Screen I/O Functions"
+msgstr "Входно-изходни функции за екрана"
-#: 03030303.xhp
+#: 03010000.xhp
msgctxt ""
-"03030303.xhp\n"
-"hd_id3146975\n"
-"6\n"
+"03010000.xhp\n"
+"hd_id3156280\n"
+"1\n"
"help.text"
-msgid "Return value:"
-msgstr "Връщана стойност:"
+msgid "<link href=\"text/sbasic/shared/03010000.xhp\" name=\"Screen I/O Functions\">Screen I/O Functions</link>"
+msgstr "<link href=\"text/sbasic/shared/03010000.xhp\" name=\"Входно-изходни функции за екрана\">Входно-изходни функции за екрана</link>"
-#: 03030303.xhp
+#: 03010000.xhp
msgctxt ""
-"03030303.xhp\n"
-"par_id3146984\n"
-"7\n"
+"03010000.xhp\n"
+"par_id3153770\n"
+"2\n"
"help.text"
-msgid "Date"
-msgstr "Date"
+msgid "This section describes the Runtime Functions used to call dialogs for the input and output of user entries."
+msgstr "В този раздел са описани функциите за показване на диалогови прозорци за въвеждане и извеждане на стойности."
-#: 03030303.xhp
+#: 03010100.xhp
msgctxt ""
-"03030303.xhp\n"
-"hd_id3156442\n"
-"8\n"
+"03010100.xhp\n"
+"tit\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "Display Functions"
+msgstr "Функции за извеждане върху екрана"
-#: 03030303.xhp
+#: 03010100.xhp
msgctxt ""
-"03030303.xhp\n"
-"par_id3145748\n"
-"12\n"
+"03010100.xhp\n"
+"hd_id3151384\n"
+"1\n"
"help.text"
-msgid "MsgBox lSec,0,\"Seconds since midnight\""
-msgstr "MsgBox lSec, 0, \"Секунди от полунощ\""
+msgid "<link href=\"text/sbasic/shared/03010100.xhp\" name=\"Display Functions\">Display Functions</link>"
+msgstr "<link href=\"text/sbasic/shared/03010100.xhp\" name=\"Функции за извеждане върху екрана\">Функции за извеждане върху екрана</link>"
-#: 03030303.xhp
+#: 03010100.xhp
msgctxt ""
-"03030303.xhp\n"
-"par_id3156283\n"
-"17\n"
+"03010100.xhp\n"
+"par_id3149346\n"
+"2\n"
"help.text"
-msgid "MsgBox Right(\"00\" & lHour , 2) & \":\"& Right(\"00\" & lMin , 2) & \":\" & Right(\"00\" & lSec , 2) ,0,\"The time is\""
-msgstr "MsgBox Right(\"00\" & lHour, 2) & \":\" & Right(\"00\" & lMin, 2) & \":\" & Right(\"00\" & lSec , 2), 0, \"Часът е\""
+msgid "This section describes Runtime functions used to output information to the screen display."
+msgstr "В този раздел са описани функции, които служат за извеждане на информация върху екрана."
-#: 03020404.xhp
+#: 03010101.xhp
msgctxt ""
-"03020404.xhp\n"
+"03010101.xhp\n"
"tit\n"
"help.text"
-msgid "Dir Function [Runtime]"
-msgstr "Функция Dir [динамична]"
+msgid "MsgBox Statement [Runtime]"
+msgstr "Оператор MsgBox [динамичен]"
-#: 03020404.xhp
+#: 03010101.xhp
msgctxt ""
-"03020404.xhp\n"
-"bm_id3154347\n"
+"03010101.xhp\n"
+"bm_id1807916\n"
"help.text"
-msgid "<bookmark_value>Dir function</bookmark_value>"
-msgstr "<bookmark_value>Dir, функция</bookmark_value>"
+msgid "<bookmark_value>MsgBox statement</bookmark_value>"
+msgstr "<bookmark_value>MsgBox, оператор</bookmark_value>"
-#: 03020404.xhp
+#: 03010101.xhp
msgctxt ""
-"03020404.xhp\n"
-"hd_id3154347\n"
+"03010101.xhp\n"
+"hd_id3154927\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020404.xhp\" name=\"Dir Function [Runtime]\">Dir Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03020404.xhp\" name=\"Функция Dir [динамична]\">Функция Dir [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03010101.xhp\">MsgBox Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03010101.xhp\">Оператор MsgBox [динамичен]</link>"
-#: 03020404.xhp
+#: 03010101.xhp
msgctxt ""
-"03020404.xhp\n"
-"par_id3153381\n"
+"03010101.xhp\n"
+"par_id3148947\n"
"2\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 "Връща името на файл, директория или всички файлове и директории в устройство или директория, които отговарят на зададения път за търсене."
+msgid "Displays a dialog box containing a message."
+msgstr "Показва диалогов прозорец със съобщение."
-#: 03020404.xhp
+#: 03010101.xhp
msgctxt ""
-"03020404.xhp\n"
-"hd_id3154365\n"
+"03010101.xhp\n"
+"hd_id3153897\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03020404.xhp
+#: 03010101.xhp
msgctxt ""
-"03020404.xhp\n"
-"par_id3156282\n"
+"03010101.xhp\n"
+"par_id3148664\n"
"4\n"
"help.text"
-msgid "Dir [(Text As String) [, Attrib As Integer]]"
-msgstr "Dir [(Text As String) [, Attrib As Integer]]"
+msgid "MsgBox Text As String [,Type As Integer [,Dialogtitle As String]] (As Statement) or MsgBox (Text As String [,Type As Integer [,Dialogtitle As String]]) (As Function)"
+msgstr "MsgBox Text As String [,Type As Integer [,Dialogtitle As String]] (As Statement) or MsgBox (Text As String [,Type As Integer [,Dialogtitle As String]]) (As Function)"
-#: 03020404.xhp
+#: 03010101.xhp
msgctxt ""
-"03020404.xhp\n"
-"hd_id3156424\n"
+"03010101.xhp\n"
+"hd_id3153361\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Връщана стойност:"
+msgid "Parameter:"
+msgstr "Параметър:"
-#: 03020404.xhp
+#: 03010101.xhp
msgctxt ""
-"03020404.xhp\n"
-"par_id3153193\n"
+"03010101.xhp\n"
+"par_id3148798\n"
"6\n"
"help.text"
-msgid "String"
-msgstr "String"
+msgid "<emph>Text</emph>: String expression displayed as a message in the dialog box. Line breaks can be inserted with Chr$(13)."
+msgstr "<emph>Text</emph>: израз – низ, показван като като съобщение в диалоговия прозорец. За преминаване на нов ред може да се използва Chr$(13)."
-#: 03020404.xhp
+#: 03010101.xhp
msgctxt ""
-"03020404.xhp\n"
-"hd_id3153770\n"
+"03010101.xhp\n"
+"par_id3150769\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "<emph>DialogTitle</emph>: String expression displayed in the title bar of the dialog. If omitted, the title bar displays the name of the respective application."
+msgstr "<emph>DialogTitle</emph>: израз от тип низ, показван в заглавната лента на диалоговия прозорец. Ако бъде пропуснат, в заглавната лента се изписва името на съответното приложение."
-#: 03020404.xhp
+#: 03010101.xhp
msgctxt ""
-"03020404.xhp\n"
-"par_id3161831\n"
+"03010101.xhp\n"
+"par_id3147228\n"
"8\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 "<emph>Text:</emph> низов израз, задаващ пътя за търсене – директория или файл. Този аргумент може да бъде зададен само при първото изикване на функцията Dir. Ако желаете, можете да въведете пътя във вид на <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL\">URL</link>."
+msgid "<emph>Type</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>Type</emph> represents a combination of bit patterns, that is, a combination of elements can be defined by adding their respective values:"
+msgstr "<emph>Type</emph>: произволен израз от тип цяло число, който задава типа на диалоговия прозорец, броя и вида на показваните бутони и вида на иконата. <emph>Type</emph> представлява комбинация от битови маски, т.е. от елементи, които могат да бъдат включени чрез прибавяне на съответните им стойности:"
-#: 03020404.xhp
+#: 03010101.xhp
msgctxt ""
-"03020404.xhp\n"
-"par_id3146974\n"
+"03010101.xhp\n"
+"par_id3161832\n"
"9\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 "<emph>Attrib:</emph> целочислен израз, задаващ битовете за атрибутите на файла. Функцията Dir връща само файлове или директории, отговарящи на зададените атрибути. Можете да комбинирате няколко атрибута, като съберете стойностите им:"
-
-#: 03020404.xhp
-msgctxt ""
-"03020404.xhp\n"
-"par_id3149666\n"
-"11\n"
-"help.text"
-msgid "0 : Normal files."
-msgstr "0: нормални файлове"
-
-#: 03020404.xhp
-msgctxt ""
-"03020404.xhp\n"
-"par_id3147427\n"
-"15\n"
-"help.text"
-msgid "16 : Returns the name of the directory only."
-msgstr "16: връща само името на директорията"
-
-#: 03020404.xhp
-msgctxt ""
-"03020404.xhp\n"
-"par_id3153952\n"
-"16\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 "Използвайте този атрибут, за да проверите дали съществува файл или директория или да намерите всички файлове и папки в определена директория."
-
-#: 03020404.xhp
-msgctxt ""
-"03020404.xhp\n"
-"par_id3159156\n"
-"17\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 "За да проверите дали файл съществува, въведете пълния път и името на файла. Ако името на файл или директория не съществува, функцията Dir връща празен низ (\"\")."
-
-#: 03020404.xhp
-msgctxt ""
-"03020404.xhp\n"
-"par_id3154012\n"
-"18\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\\*.sxw\". 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 "За да получите списък на всички съществуващи файлове в определена директория, направете следното: първо извикайте функцията Dir, като зададете пълния път за търсене на файловете, например \"D:\\Files\\*.sxw\". Ако пътят е правилен и търсенето открие поне един файл, функцията Dir връща името на първия файл, който отговаря на пътя за търсене. За да получите още имена на файлове, които отговарят на пътя, извикайте Dir отново, но без аргументи."
-
-#: 03020404.xhp
-msgctxt ""
-"03020404.xhp\n"
-"par_id3147348\n"
-"19\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 "За да получите само директориите, използвайте параметъра за атрибути. Същото важи и ако искате да откриете името на даден том (например дял от твърд диск)."
+msgid "0 : Display OK button only."
+msgstr "0: Показва се само бутон „OK“."
-#: 03020404.xhp
+#: 03010101.xhp
msgctxt ""
-"03020404.xhp\n"
-"hd_id3154942\n"
-"20\n"
+"03010101.xhp\n"
+"par_id3153726\n"
+"10\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "1 : Display OK and Cancel buttons."
+msgstr "1: Показват се бутони „OK“ и „Отказ“."
-#: 03020404.xhp
+#: 03010101.xhp
msgctxt ""
-"03020404.xhp\n"
-"par_id3148455\n"
-"22\n"
+"03010101.xhp\n"
+"par_id3149665\n"
+"11\n"
"help.text"
-msgid "' Displays all files and directories"
-msgstr "' Показва всички файлове и директории"
+msgid "2 : Display Abort, Retry, and Ignore buttons."
+msgstr "2: Показват се бутони „Прекратяване“, „Повторен опит“ и „Игнориране“."
-#: 03020404.xhp
+#: 03010101.xhp
msgctxt ""
-"03020404.xhp\n"
-"par_id3153416\n"
-"27\n"
+"03010101.xhp\n"
+"par_id3147318\n"
+"12\n"
"help.text"
-msgid "sDir=\"Directories:\""
-msgstr "sDir = \"Директории:\""
+msgid "3 : Display Yes, No and Cancel buttons."
+msgstr "3: Показват се бутони „Да“, „Не“ и „Отказ“."
-#: 03020404.xhp
+#: 03010101.xhp
msgctxt ""
-"03020404.xhp\n"
-"par_id3154253\n"
-"34\n"
+"03010101.xhp\n"
+"par_id3155412\n"
+"13\n"
"help.text"
-msgid "' Get the directories"
-msgstr "' Получаване на директориите"
+msgid "4 : Display Yes and No buttons."
+msgstr "4: Показват се бутони „Да“ и „Не“."
-#: 03070500.xhp
+#: 03010101.xhp
msgctxt ""
-"03070500.xhp\n"
-"tit\n"
+"03010101.xhp\n"
+"par_id3146119\n"
+"14\n"
"help.text"
-msgid "\"^\" Operator [Runtime]"
-msgstr "Операция „^“ [динамична]"
+msgid "5 : Display Retry and Cancel buttons."
+msgstr "5: Показват се бутони „Повторен опит“ и „Отказ“."
-#: 03070500.xhp
+#: 03010101.xhp
msgctxt ""
-"03070500.xhp\n"
-"bm_id3145315\n"
+"03010101.xhp\n"
+"par_id3159155\n"
+"15\n"
"help.text"
-msgid "<bookmark_value>\"^\" operator (mathematical)</bookmark_value>"
-msgstr "<bookmark_value>„^“, математическа операция</bookmark_value>"
+msgid "16 : Add the Stop icon to the dialog."
+msgstr "16: В диалоговия прозорец се показва икона „Стоп“."
-#: 03070500.xhp
+#: 03010101.xhp
msgctxt ""
-"03070500.xhp\n"
-"hd_id3145315\n"
-"1\n"
+"03010101.xhp\n"
+"par_id3145366\n"
+"16\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03070500.xhp\">\"^\" Operator [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03070500.xhp\">Операция „^“ [динамична]</link>"
+msgid "32 : Add the Question icon to the dialog."
+msgstr "32: В диалоговия прозорец се показва икона „Въпрос“."
-#: 03070500.xhp
+#: 03010101.xhp
msgctxt ""
-"03070500.xhp\n"
-"par_id3149670\n"
-"2\n"
+"03010101.xhp\n"
+"par_id3147350\n"
+"17\n"
"help.text"
-msgid "Raises a number to a power."
-msgstr "Повдига число на степен."
+msgid "48 : Add the Exclamation icon to the dialog."
+msgstr "48: В диалоговия прозорец се показва икона „Удивителна“."
-#: 03070500.xhp
+#: 03010101.xhp
msgctxt ""
-"03070500.xhp\n"
-"hd_id3147264\n"
-"3\n"
+"03010101.xhp\n"
+"par_id3149960\n"
+"18\n"
"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
+msgid "64 : Add the Information icon to the dialog."
+msgstr "64: В диалоговия прозорец се показва икона „Информация“."
-#: 03070500.xhp
+#: 03010101.xhp
msgctxt ""
-"03070500.xhp\n"
-"par_id3149656\n"
-"4\n"
+"03010101.xhp\n"
+"par_id3154944\n"
+"19\n"
"help.text"
-msgid "Result = Expression ^ Exponent"
-msgstr "Result = Expression ^ Exponent"
+msgid "128 : First button in the dialog as default button."
+msgstr "128: Първият бутон в диалоговия прозорец е подразбиран."
-#: 03070500.xhp
+#: 03010101.xhp
msgctxt ""
-"03070500.xhp\n"
-"hd_id3151211\n"
-"5\n"
+"03010101.xhp\n"
+"par_id3155417\n"
+"20\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "256 : Second button in the dialog as default button."
+msgstr "256: Вторият бутон в диалоговия прозорец е подразбиран."
-#: 03070500.xhp
+#: 03010101.xhp
msgctxt ""
-"03070500.xhp\n"
-"par_id3153192\n"
-"6\n"
+"03010101.xhp\n"
+"par_id3153878\n"
+"21\n"
"help.text"
-msgid "<emph>Result:</emph> Any numerical expression that contains the result of the number raised to a power."
-msgstr "<emph>Result:</emph> числов израз, който съдържа резултата от степенуването."
+msgid "512 : Third button in the dialog as default button."
+msgstr "512: Третият бутон в диалоговия прозорец е подразбиран."
-#: 03070500.xhp
+#: 03010101.xhp
msgctxt ""
-"03070500.xhp\n"
-"par_id3150448\n"
-"7\n"
+"03010101.xhp\n"
+"hd_id3150715\n"
+"22\n"
"help.text"
-msgid "<emph>Expression:</emph> Numerical value that you want to raise to a power."
-msgstr "<emph>Expression:</emph> числов израз, чиято стойност искате да степенувате."
+msgid "Example:"
+msgstr "Пример:"
-#: 03070500.xhp
+#: 03010101.xhp
msgctxt ""
-"03070500.xhp\n"
-"par_id3156422\n"
-"8\n"
+"03010101.xhp\n"
+"par_id3150327\n"
+"24\n"
"help.text"
-msgid "<emph>Exponent:</emph> The value of the power that you want to raise the expression to."
-msgstr "<emph>Exponent:</emph> степента, на която трябва да бъде повдигната стойността на израза."
+msgid "Const sText1 = \"An unexpected error occurred.\""
+msgstr "Const sText1 = \"Възникна неочаквана грешка.\""
-#: 03070500.xhp
+#: 03010101.xhp
msgctxt ""
-"03070500.xhp\n"
-"hd_id3147287\n"
-"9\n"
+"03010101.xhp\n"
+"par_id3146912\n"
+"25\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "Const sText2 = \"The program execution will continue, however.\""
+msgstr "Const sText2 = \"Изпълнението на програмата ще продължи все пак.\""
-#: 03070500.xhp
+#: 03010101.xhp
msgctxt ""
-"03070500.xhp\n"
-"par_id3146984\n"
-"12\n"
+"03010101.xhp\n"
+"par_id3154757\n"
+"26\n"
"help.text"
-msgid "Print Exp ( 23 * Log( 12.345 ) ) ' Raises by forming a logarithm"
-msgstr "Print Exp (23 * Log(12.345)) ' Степенуване чрез логаритъм"
+msgid "Const sText3 = \"Error\""
+msgstr "Const sText3 = \"Грешка\""
-#: 03080701.xhp
+#: 03010102.xhp
msgctxt ""
-"03080701.xhp\n"
+"03010102.xhp\n"
"tit\n"
"help.text"
-msgid "Sgn Function [Runtime]"
-msgstr "Функция Sgn [динамична]"
+msgid "MsgBox Function [Runtime]"
+msgstr "Функция MsgBox Function [динамична]"
-#: 03080701.xhp
+#: 03010102.xhp
msgctxt ""
-"03080701.xhp\n"
-"bm_id3148474\n"
+"03010102.xhp\n"
+"bm_id3153379\n"
"help.text"
-msgid "<bookmark_value>Sgn function</bookmark_value>"
-msgstr "<bookmark_value>Sgn, функция</bookmark_value>"
+msgid "<bookmark_value>MsgBox function</bookmark_value>"
+msgstr "<bookmark_value>MsgBox, функция</bookmark_value>"
-#: 03080701.xhp
+#: 03010102.xhp
msgctxt ""
-"03080701.xhp\n"
-"hd_id3148474\n"
+"03010102.xhp\n"
+"hd_id3153379\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080701.xhp\" name=\"Sgn Function [Runtime]\">Sgn Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03080701.xhp\" name=\"Функция Sgn [динамична]\">Функция Sgn [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03010102.xhp\" name=\"MsgBox Function [Runtime]\">MsgBox Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03010102.xhp\" name=\"Функция MsgBox Function [динамична]\">Функция MsgBox Function [динамична]</link>"
-#: 03080701.xhp
+#: 03010102.xhp
msgctxt ""
-"03080701.xhp\n"
-"par_id3148686\n"
+"03010102.xhp\n"
+"par_id3145171\n"
"2\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 "Връща цяло число между -1 и 1, което показва дали подаденото на функцията число е положително, отрицателно или нула."
+msgid "Displays a dialog box containing a message and returns a value."
+msgstr "Показва диалогов прозорец със съобщение и връща стойност."
-#: 03080701.xhp
+#: 03010102.xhp
msgctxt ""
-"03080701.xhp\n"
-"hd_id3156023\n"
+"03010102.xhp\n"
+"hd_id3156281\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03080701.xhp
+#: 03010102.xhp
msgctxt ""
-"03080701.xhp\n"
-"par_id3153897\n"
+"03010102.xhp\n"
+"par_id3154685\n"
"4\n"
"help.text"
-msgid "Sgn (Number)"
-msgstr "Sgn (Number)"
+msgid "MsgBox (Text As String [,Type As Integer [,Dialogtitle As String]])"
+msgstr "MsgBox (Text As String [,Type As Integer [,Dialogtitle As String]])"
-#: 03080701.xhp
+#: 03010102.xhp
msgctxt ""
-"03080701.xhp\n"
-"hd_id3145069\n"
+"03010102.xhp\n"
+"hd_id3153771\n"
"5\n"
"help.text"
msgid "Return value:"
msgstr "Връщана стойност:"
-#: 03080701.xhp
+#: 03010102.xhp
msgctxt ""
-"03080701.xhp\n"
-"par_id3150359\n"
+"03010102.xhp\n"
+"par_id3146985\n"
"6\n"
"help.text"
msgid "Integer"
msgstr "Integer"
-#: 03080701.xhp
+#: 03010102.xhp
msgctxt ""
-"03080701.xhp\n"
-"hd_id3150543\n"
+"03010102.xhp\n"
+"hd_id3153363\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "Parameter:"
+msgstr "Параметър:"
-#: 03080701.xhp
+#: 03010102.xhp
msgctxt ""
-"03080701.xhp\n"
-"par_id3154365\n"
+"03010102.xhp\n"
+"par_id3153727\n"
"8\n"
"help.text"
-msgid "<emph>Number:</emph> Numeric expression that determines the value that is returned by the function."
-msgstr "<emph>Number:</emph> числов израз, на който се базира резултатът от функцията."
+msgid "<emph>Text</emph>: String expression displayed as a message in the dialog box. Line breaks can be inserted with Chr$(13)."
+msgstr "<emph>Text</emph>: израз – низ, показван като като съобщение в диалоговия прозорец. За преминаване на нов ред може да се използва Chr$(13)."
-#: 03080701.xhp
+#: 03010102.xhp
msgctxt ""
-"03080701.xhp\n"
-"par_id3150767\n"
+"03010102.xhp\n"
+"par_id3147317\n"
"9\n"
"help.text"
-msgid "NumExpression"
-msgstr "Number"
+msgid "<emph>DialogTitle</emph>: String expression displayed in the title bar of the dialog. If omitted, the name of the respective application is displayed."
+msgstr "<emph>DialogTitle</emph>: израз от тип низ, показван в заглавната лента на диалоговия прозорец. Ако бъде пропуснат, се изписва името на съответното приложение."
-#: 03080701.xhp
+#: 03010102.xhp
msgctxt ""
-"03080701.xhp\n"
-"par_id3150441\n"
+"03010102.xhp\n"
+"par_id3153954\n"
"10\n"
"help.text"
-msgid "Return value"
-msgstr "Връщана стойност:"
+msgid "<emph>Type</emph>: Any integer expression that specifies the dialog type and defines the number and type of buttons or icons displayed. <emph>Type</emph> represents a combination of bit patterns (dialog elements defined by adding the respective values):"
+msgstr "<emph>Type</emph>: произволен израз от тип цяло число, който задава типа на диалоговия прозорец, броя и вида на показваните бутони или икони. <emph>Type</emph> представлява комбинация от битови маски (елементи, задавани чрез прибавяне на съответните стойности):"
-#: 03080701.xhp
+#: 03010102.xhp
msgctxt ""
-"03080701.xhp\n"
-"par_id3161833\n"
+"03010102.xhp\n"
+"par_id3154319\n"
"11\n"
"help.text"
-msgid "negative"
-msgstr "отрицателно"
+msgid "<emph>Values</emph>"
+msgstr "<emph>Стойности</emph>"
-#: 03080701.xhp
+#: 03010102.xhp
msgctxt ""
-"03080701.xhp\n"
-"par_id3155306\n"
+"03010102.xhp\n"
+"par_id3147397\n"
"12\n"
"help.text"
-msgid "Sgn returns -1."
-msgstr "Sgn връща -1."
+msgid "0 : Display OK button only."
+msgstr "0: Показва се само бутон „OK“."
-#: 03080701.xhp
+#: 03010102.xhp
msgctxt ""
-"03080701.xhp\n"
-"par_id3145271\n"
+"03010102.xhp\n"
+"par_id3145646\n"
"13\n"
"help.text"
-msgid "0"
-msgstr "0"
+msgid "1 : Display OK and Cancel buttons."
+msgstr "1: Показват се бутони „OK“ и „Отказ“."
-#: 03080701.xhp
+#: 03010102.xhp
msgctxt ""
-"03080701.xhp\n"
-"par_id3146119\n"
+"03010102.xhp\n"
+"par_id3149410\n"
"14\n"
"help.text"
-msgid "Sgn returns 0."
-msgstr "Sgn връща 0."
+msgid "2 : Display Abort, Retry, and Ignore buttons."
+msgstr "2: Показват се бутони „Прекратяване“, „Повторен опит“ и „Игнориране“."
-#: 03080701.xhp
+#: 03010102.xhp
msgctxt ""
-"03080701.xhp\n"
-"par_id3153139\n"
+"03010102.xhp\n"
+"par_id3151075\n"
"15\n"
"help.text"
-msgid "positive"
-msgstr "положително"
+msgid "3 : Display Yes, No, and Cancel buttons."
+msgstr "3: Показват се бутони „Да“, „Не“ и „Отказ“."
-#: 03080701.xhp
+#: 03010102.xhp
msgctxt ""
-"03080701.xhp\n"
-"par_id3154319\n"
+"03010102.xhp\n"
+"par_id3153878\n"
"16\n"
"help.text"
-msgid "Sgn returns 1."
-msgstr "Sgn връща 1."
+msgid "4 : Display Yes and No buttons."
+msgstr "4: Показват се бутони „Да“ и „Не“."
-#: 03080701.xhp
+#: 03010102.xhp
msgctxt ""
-"03080701.xhp\n"
-"hd_id3152576\n"
+"03010102.xhp\n"
+"par_id3155601\n"
"17\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
-
-#: 03080701.xhp
-msgctxt ""
-"03080701.xhp\n"
-"par_id3155416\n"
-"19\n"
-"help.text"
-msgid "Print sgn(-10) ' returns -1"
-msgstr "Print sgn(-10) ' връща -1"
-
-#: 03080701.xhp
-msgctxt ""
-"03080701.xhp\n"
-"par_id3154096\n"
-"20\n"
-"help.text"
-msgid "Print sgn(0) ' returns 0"
-msgstr "Print sgn(0) ' връща 0"
+msgid "5 : Display Retry and Cancel buttons."
+msgstr "5: Показват се бутони „Повторен опит“ и „Отказ“."
-#: 03080701.xhp
+#: 03010102.xhp
msgctxt ""
-"03080701.xhp\n"
-"par_id3148457\n"
-"21\n"
+"03010102.xhp\n"
+"par_id3150716\n"
+"18\n"
"help.text"
-msgid "Print sgn(10) ' returns 1"
-msgstr "Print sgn(10) ' връща 1"
+msgid "16 : Add the Stop icon to the dialog."
+msgstr "16: В диалоговия прозорец се показва икона „Стоп“."
-#: 03090400.xhp
+#: 03010102.xhp
msgctxt ""
-"03090400.xhp\n"
-"tit\n"
+"03010102.xhp\n"
+"par_id3153837\n"
+"19\n"
"help.text"
-msgid "Further Statements"
-msgstr "Други оператори"
+msgid "32 : Add the Question icon to the dialog."
+msgstr "32: В диалоговия прозорец се показва икона „Въпрос“."
-#: 03090400.xhp
+#: 03010102.xhp
msgctxt ""
-"03090400.xhp\n"
-"hd_id3145316\n"
-"1\n"
+"03010102.xhp\n"
+"par_id3150751\n"
+"20\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090400.xhp\" name=\"Further Statements\">Further Statements</link>"
-msgstr "<link href=\"text/sbasic/shared/03090400.xhp\" name=\"Други оператори\">Други оператори</link>"
+msgid "48 : Add the Exclamation Point icon to the dialog."
+msgstr "48: В диалоговия прозорец се показва икона „Удивителна“."
-#: 03090400.xhp
+#: 03010102.xhp
msgctxt ""
-"03090400.xhp\n"
-"par_id3154923\n"
-"2\n"
+"03010102.xhp\n"
+"par_id3146915\n"
+"21\n"
"help.text"
-msgid "Statements that do not belong to any of the other runtime categories are described here."
-msgstr "Тук са описани оператори, които не принадлежат към останалите категории."
+msgid "64 : Add the Information icon to the dialog."
+msgstr "64: В диалоговия прозорец се показва икона „Информация“."
-#: 03102900.xhp
+#: 03010102.xhp
msgctxt ""
-"03102900.xhp\n"
-"tit\n"
+"03010102.xhp\n"
+"par_id3145640\n"
+"22\n"
"help.text"
-msgid "LBound Function [Runtime]"
-msgstr "Функция LBound [динамична]"
+msgid "128 : First button in the dialog as default button."
+msgstr "128: Първият бутон в диалоговия прозорец е подразбиран."
-#: 03102900.xhp
+#: 03010102.xhp
msgctxt ""
-"03102900.xhp\n"
-"bm_id3156027\n"
+"03010102.xhp\n"
+"par_id3153765\n"
+"23\n"
"help.text"
-msgid "<bookmark_value>LBound function</bookmark_value>"
-msgstr "<bookmark_value>LBound, функция</bookmark_value>"
+msgid "256 : Second button in the dialog as default button."
+msgstr "256: Вторият бутон в диалоговия прозорец е подразбиран."
-#: 03102900.xhp
+#: 03010102.xhp
msgctxt ""
-"03102900.xhp\n"
-"hd_id3156027\n"
-"1\n"
+"03010102.xhp\n"
+"par_id3153715\n"
+"24\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03102900.xhp\" name=\"LBound Function [Runtime]\">LBound Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03102900.xhp\" name=\"Функция LBound [динамична]\">Функция LBound [динамична]</link>"
+msgid "512 : Third button in the dialog as default button."
+msgstr "512: Третият бутон в диалоговия прозорец е подразбиран."
-#: 03102900.xhp
+#: 03010102.xhp
msgctxt ""
-"03102900.xhp\n"
-"par_id3147226\n"
-"2\n"
+"03010102.xhp\n"
+"par_id3159267\n"
+"25\n"
"help.text"
-msgid "Returns the lower boundary of an array."
-msgstr "Връща долната граница на масив."
+msgid "<emph>Return value:</emph>"
+msgstr "<emph>Връщана стойност:</emph>"
-#: 03102900.xhp
+#: 03010102.xhp
msgctxt ""
-"03102900.xhp\n"
-"hd_id3148538\n"
-"3\n"
+"03010102.xhp\n"
+"par_id3145230\n"
+"26\n"
"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
+msgid "1 : OK"
+msgstr "1: ОК"
-#: 03102900.xhp
+#: 03010102.xhp
msgctxt ""
-"03102900.xhp\n"
-"par_id3150503\n"
-"4\n"
+"03010102.xhp\n"
+"par_id3149567\n"
+"27\n"
"help.text"
-msgid "LBound (ArrayName [, Dimension])"
-msgstr "LBound (ArrayName [, Dimension])"
+msgid "2 : Cancel"
+msgstr "2: Отказ"
-#: 03102900.xhp
+#: 03010102.xhp
msgctxt ""
-"03102900.xhp\n"
-"hd_id3150984\n"
-"5\n"
+"03010102.xhp\n"
+"par_id4056825\n"
"help.text"
-msgid "Return value:"
-msgstr "Връщана стойност:"
+msgid "3 : Abort"
+msgstr "3: Прекратяване"
-#: 03102900.xhp
+#: 03010102.xhp
msgctxt ""
-"03102900.xhp\n"
-"par_id3153126\n"
-"6\n"
+"03010102.xhp\n"
+"par_id3155335\n"
+"28\n"
"help.text"
-msgid "Integer"
-msgstr "Integer"
+msgid "4 : Retry"
+msgstr "4: Повторен опит"
-#: 03102900.xhp
+#: 03010102.xhp
msgctxt ""
-"03102900.xhp\n"
-"hd_id3144500\n"
-"7\n"
+"03010102.xhp\n"
+"par_id3146918\n"
+"29\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "5 : Ignore"
+msgstr "5: Игнориране"
-#: 03102900.xhp
+#: 03010102.xhp
msgctxt ""
-"03102900.xhp\n"
-"par_id3145069\n"
-"8\n"
+"03010102.xhp\n"
+"par_id3155961\n"
+"30\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 "<emph>ArrayName:</emph> името на масива, за който трябва да се намери горната (<emph>Ubound</emph>) или долната (<emph>LBound</emph>) граница на индексите."
+msgid "6 : Yes"
+msgstr "6: Да"
-#: 03102900.xhp
+#: 03010102.xhp
msgctxt ""
-"03102900.xhp\n"
-"par_id3149457\n"
-"9\n"
+"03010102.xhp\n"
+"par_id3148488\n"
+"31\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 "<emph>[Dimension]:</emph> цяло число, което указва за кое измерение да се намери горната (<emph>Ubound</emph>) или долната (<emph>LBound</emph>) граница. Ако не е зададена стойност, се подразбира първото измерение."
+msgid "7 : No"
+msgstr "7: Не"
-#: 03102900.xhp
+#: 03010102.xhp
msgctxt ""
-"03102900.xhp\n"
-"hd_id3145171\n"
-"10\n"
+"03010102.xhp\n"
+"hd_id3150090\n"
+"40\n"
"help.text"
msgid "Example:"
msgstr "Пример:"
-#: 03102900.xhp
-msgctxt ""
-"03102900.xhp\n"
-"par_id3145365\n"
-"18\n"
-"help.text"
-msgid "Print LBound(sVar()) ' Returns 10"
-msgstr "Print LBound(sVar()) ' Връща 10"
-
-#: 03102900.xhp
+#: 03010102.xhp
msgctxt ""
-"03102900.xhp\n"
-"par_id3150486\n"
-"19\n"
+"03010102.xhp\n"
+"par_id3151278\n"
+"43\n"
"help.text"
-msgid "Print UBound(sVar()) ' Returns 20"
-msgstr "Print UBound(sVar()) ' Връща 20"
+msgid "sVar = MsgBox(\"Las Vegas\")"
+msgstr "sVar = MsgBox(\"Лас Вегас\")"
-#: 03102900.xhp
+#: 03010102.xhp
msgctxt ""
-"03102900.xhp\n"
-"par_id3149665\n"
-"20\n"
+"03010102.xhp\n"
+"par_id3149034\n"
+"44\n"
"help.text"
-msgid "Print LBound(sVar(),2) ' Returns 5"
-msgstr "Print LBound(sVar(), 2) ' Връща 5"
+msgid "sVar = MsgBox(\"Las Vegas\",1)"
+msgstr "sVar = MsgBox(\"Лас Вегас\", 1)"
-#: 03102900.xhp
+#: 03010102.xhp
msgctxt ""
-"03102900.xhp\n"
-"par_id3159154\n"
-"21\n"
+"03010102.xhp\n"
+"par_id3166424\n"
+"45\n"
"help.text"
-msgid "Print UBound(sVar(),2) ' Returns 70"
-msgstr "Print UBound(sVar(), 2) ' Връща 70"
+msgid "sVar = MsgBox( \"Las Vegas\",256 + 16 + 2,\"Dialog title\")"
+msgstr "sVar = MsgBox(\"Лас Вегас\", 256 + 16 + 2, \"Заглавие на диалога\")"
-#: 03103000.xhp
+#: 03010103.xhp
msgctxt ""
-"03103000.xhp\n"
+"03010103.xhp\n"
"tit\n"
"help.text"
-msgid "UBound Function [Runtime]"
-msgstr "Функция UBound [динамична]"
+msgid "Print Statement [Runtime]"
+msgstr "Оператор Print [динамичен]"
-#: 03103000.xhp
+#: 03010103.xhp
msgctxt ""
-"03103000.xhp\n"
-"bm_id3148538\n"
+"03010103.xhp\n"
+"bm_id3147230\n"
"help.text"
-msgid "<bookmark_value>UBound function</bookmark_value>"
-msgstr "<bookmark_value>UBound, функция</bookmark_value>"
+msgid "<bookmark_value>Print statement</bookmark_value>"
+msgstr "<bookmark_value>Print, оператор</bookmark_value>"
-#: 03103000.xhp
+#: 03010103.xhp
msgctxt ""
-"03103000.xhp\n"
-"hd_id3148538\n"
+"03010103.xhp\n"
+"hd_id3147230\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03103000.xhp\" name=\"UBound Function [Runtime]\">UBound Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03103000.xhp\" name=\"Функция UBound [динамична]\">Функция UBound [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03010103.xhp\" name=\"Print Statement [Runtime]\">Print Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03010103.xhp\" name=\"Оператор Print [динамичен]\">Оператор Print [динамичен]</link>"
-#: 03103000.xhp
+#: 03010103.xhp
msgctxt ""
-"03103000.xhp\n"
-"par_id3147573\n"
+"03010103.xhp\n"
+"par_id3156281\n"
"2\n"
"help.text"
-msgid "Returns the upper boundary of an array."
-msgstr "Връща горната граница на масив."
+msgid "Outputs the specified strings or numeric expressions to a dialog or to a file."
+msgstr "Извежда зададените низове или числови изрази в диалогов прозорец или файл."
-#: 03103000.xhp
+#: 03010103.xhp
msgctxt ""
-"03103000.xhp\n"
-"hd_id3150984\n"
+"03010103.xhp\n"
+"hd_id3145785\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03103000.xhp
+#: 03010103.xhp
msgctxt ""
-"03103000.xhp\n"
-"par_id3149415\n"
+"03010103.xhp\n"
+"par_id3153188\n"
"4\n"
"help.text"
-msgid "UBound (ArrayName [, Dimension])"
-msgstr "UBound (ArrayName [, Dimension])"
+msgid "Print [#FileName,] Expression1[{;|,} [Spc(Number As Integer);] [Tab(pos As Integer);] [Expression2[...]]"
+msgstr "Print [#FileName,] Expression1[{;|,} [Spc(Number As Integer);] [Tab(pos As Integer);] [Expression2[...]]"
-#: 03103000.xhp
+#: 03010103.xhp
msgctxt ""
-"03103000.xhp\n"
-"hd_id3153897\n"
+"03010103.xhp\n"
+"hd_id3147348\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Връщана стойност:"
+msgid "Parameter:"
+msgstr "Параметър:"
-#: 03103000.xhp
+#: 03010103.xhp
msgctxt ""
-"03103000.xhp\n"
-"par_id3149670\n"
+"03010103.xhp\n"
+"par_id2508621\n"
+"help.text"
+msgid "<emph>FileName:</emph> Any numeric expression that contains the file number that was set by the Open statement for the respective file."
+msgstr "<emph>FileName:</emph> числов израз, задаващ номера на файл, който е получен от оператора Open за съответния файл."
+
+#: 03010103.xhp
+msgctxt ""
+"03010103.xhp\n"
+"par_id3163712\n"
"6\n"
"help.text"
-msgid "Integer"
-msgstr "Integer"
+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 "<emph>Expression</emph>: числов или низов израз, чиято стойност да бъде отпечатана. Можете да разделите няколко израза с точки и запетаи. Ако ги разделите със запетаи, стойностите ще бъдат подравнени по следващата позиция за табулация. Позициите за табулация не могат да се настройват."
-#: 03103000.xhp
+#: 03010103.xhp
msgctxt ""
-"03103000.xhp\n"
-"hd_id3154347\n"
+"03010103.xhp\n"
+"par_id3153092\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "<emph>Number</emph>: Number of spaces to be inserted by the <emph>Spc</emph> function."
+msgstr "<emph>Number</emph>: броят интервали, които да бъдат вмъкнати от функцията <emph>Spc</emph>."
-#: 03103000.xhp
+#: 03010103.xhp
msgctxt ""
-"03103000.xhp\n"
-"par_id3153381\n"
+"03010103.xhp\n"
+"par_id3145364\n"
"8\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 "<emph>ArrayName:</emph> името на масива, за който трябва да се намери горната (<emph>Ubound</emph>) или долната (<emph>LBound</emph>) граница на индексите."
+msgid "<emph>Pos</emph>: Spaces are inserted until the specified position."
+msgstr "<emph>Pos</emph>: до указаната позиция се вмъкват интервали."
-#: 03103000.xhp
+#: 03010103.xhp
msgctxt ""
-"03103000.xhp\n"
-"par_id3148797\n"
+"03010103.xhp\n"
+"par_id3154319\n"
"9\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 "<emph>[Dimension]:</emph> цяло число, което указва за кое измерение да се намери горната (<emph>Ubound</emph>) или долната (<emph>LBound</emph>) граница. Ако не е зададена стойност, се подразбира първото измерение."
+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 "Ако след последния израз за отпечатване има точка и запетая или запетая, $[officename] Basic запазва текста във вътрешен буфер и продължава изпълнението на програмата, без да печата. Когато бъде срещнат друг оператор Print, без точка и запетая или запетая в края, всичкият текст за отпечатване се отпечатва наведнъж."
-#: 03103000.xhp
+#: 03010103.xhp
msgctxt ""
-"03103000.xhp\n"
-"hd_id3153192\n"
+"03010103.xhp\n"
+"par_id3145272\n"
"10\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
-
-#: 03103000.xhp
-msgctxt ""
-"03103000.xhp\n"
-"par_id3152596\n"
-"18\n"
-"help.text"
-msgid "Print LBound(sVar()) ' Returns 10"
-msgstr "Print LBound(sVar()) ' Връща 10"
+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 "Положителните числови стойности се отпечатват с водещ интервал. Отрицателните стойности се отпечатват с водещ знак минус. Ако стойностите с плаваща запетая не попадат в определен интервал, те се отпечатват в експоненциален запис."
-#: 03103000.xhp
+#: 03010103.xhp
msgctxt ""
-"03103000.xhp\n"
-"par_id3153138\n"
-"19\n"
+"03010103.xhp\n"
+"par_id3154011\n"
+"11\n"
"help.text"
-msgid "Print UBound(sVar()) ' Returns 20"
-msgstr "Print UBound(sVar()) ' Връща 20"
+msgid "If the expression to be printed exceeds a certain length, the display will automatically wrap to the next line."
+msgstr "Ако изразът за отпечатване надхвърля определена дължина, автоматично ще се пренесе на нов ред."
-#: 03103000.xhp
+#: 03010103.xhp
msgctxt ""
-"03103000.xhp\n"
-"par_id3149665\n"
-"20\n"
+"03010103.xhp\n"
+"par_id3146969\n"
+"12\n"
"help.text"
-msgid "Print LBound(sVar(),2) ' Returns 5"
-msgstr "Print LBound(sVar(), 2) ' Връща 5"
+msgid "You can insert the Tab 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 "Можете да вмъкнете между аргументите функцията Tab, заградена с точки и запетаи, за да подравните изхода към определена позиция, или да използвате функцията <emph>Spc</emph>, за да вмъкнете зададен брой интервали."
-#: 03103000.xhp
+#: 03010103.xhp
msgctxt ""
-"03103000.xhp\n"
-"par_id3147214\n"
-"21\n"
+"03010103.xhp\n"
+"hd_id3146912\n"
+"13\n"
"help.text"
-msgid "Print UBound(sVar(),2) ' Returns 70"
-msgstr "Print UBound(sVar(), 2) ' Връща 70"
+msgid "Example:"
+msgstr "Пример:"
-#: 03103400.xhp
+#: 03010200.xhp
msgctxt ""
-"03103400.xhp\n"
+"03010200.xhp\n"
"tit\n"
"help.text"
-msgid "Public Statement [Runtime]"
-msgstr "Оператор Public [динамичен]"
-
-#: 03103400.xhp
-msgctxt ""
-"03103400.xhp\n"
-"bm_id3153311\n"
-"help.text"
-msgid "<bookmark_value>Public statement</bookmark_value>"
-msgstr "<bookmark_value>Public, оператор</bookmark_value>"
+msgid "Functions for Screen Input"
+msgstr "Функции за въвеждане с помощта на екрана"
-#: 03103400.xhp
+#: 03010200.xhp
msgctxt ""
-"03103400.xhp\n"
-"hd_id3153311\n"
+"03010200.xhp\n"
+"hd_id3149456\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03103400.xhp\" name=\"Public Statement [Runtime]\">Public Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03103400.xhp\" name=\"Оператор Public [динамичен]\">Оператор Public [динамичен]</link>"
+msgid "<link href=\"text/sbasic/shared/03010200.xhp\" name=\"Functions for Screen Input\">Functions for Screen Input</link>"
+msgstr "<link href=\"text/sbasic/shared/03010200.xhp\" name=\"Функции за въвеждане с помощта на екрана\">Функции за въвеждане с помощта на екрана</link>"
-#: 03103400.xhp
+#: 03010200.xhp
msgctxt ""
-"03103400.xhp\n"
-"par_id3150669\n"
+"03010200.xhp\n"
+"par_id3150398\n"
"2\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 "Задава размера на променлива или масив на ниво модул (т.е. не в процедура или функция), така че променливата или масивът е валиден във всички библиотеки и модули."
-
-#: 03103400.xhp
-msgctxt ""
-"03103400.xhp\n"
-"hd_id3150772\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
-
-#: 03103400.xhp
-msgctxt ""
-"03103400.xhp\n"
-"par_id3155341\n"
-"4\n"
-"help.text"
-msgid "Public VarName[(start To end)] [As VarType][, VarName2[(start To end)] [As VarType][,...]]"
-msgstr "Public VarName[(start To end)] [As VarType][, VarName2[(start To end)] [As VarType][,...]]"
-
-#: 03103400.xhp
-msgctxt ""
-"03103400.xhp\n"
-"hd_id3145315\n"
-"5\n"
-"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "This section describes Runtime functions used to control screen input."
+msgstr "В този раздел са описани функциите за управление на въвеждането с помощта на екрана."
-#: 03132300.xhp
+#: 03010201.xhp
msgctxt ""
-"03132300.xhp\n"
+"03010201.xhp\n"
"tit\n"
"help.text"
-msgid "CreateUnoValue Function [Runtime]"
-msgstr "Функция CreateUnoValue [динамична]"
+msgid "InputBox Function [Runtime]"
+msgstr "Функция InputBox [динамична]"
-#: 03132300.xhp
+#: 03010201.xhp
msgctxt ""
-"03132300.xhp\n"
-"bm_id3150682\n"
+"03010201.xhp\n"
+"bm_id3148932\n"
"help.text"
-msgid "<bookmark_value>CreateUnoValue function</bookmark_value>"
-msgstr "<bookmark_value>CreateUnoValue, функция</bookmark_value>"
+msgid "<bookmark_value>InputBox function</bookmark_value>"
+msgstr "<bookmark_value>InputBox, функция</bookmark_value>"
-#: 03132300.xhp
+#: 03010201.xhp
msgctxt ""
-"03132300.xhp\n"
-"hd_id3150682\n"
+"03010201.xhp\n"
+"hd_id3148932\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03132300.xhp\" name=\"CreateUnoValue Function [Runtime]\">CreateUnoValue Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03132300.xhp\" name=\"Функция CreateUnoValue [динамична]\">Функция CreateUnoValue [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03010201.xhp\" name=\"InputBox Function [Runtime]\">InputBox Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03010201.xhp\" name=\"Функция InputBox [динамична]\">Функция InputBox [динамична]</link>"
-#: 03132300.xhp
+#: 03010201.xhp
msgctxt ""
-"03132300.xhp\n"
-"par_id3147291\n"
+"03010201.xhp\n"
+"par_id3151262\n"
"2\n"
"help.text"
-msgid "Returns an object that represents a strictly typed value referring to the Uno type system."
-msgstr "Връща обект, който представлява стойност със строг тип, базиран на системата от типове на Uno."
+msgid "Displays a prompt in a dialog at which the user can input text. The input is assigned to a variable."
+msgstr "Показва подкана в диалогов прозорец, в който потребителят може да въвежда текст. Въведеното се присвоява на променлива."
-#: 03132300.xhp
+#: 03010201.xhp
msgctxt ""
-"03132300.xhp\n"
-"par_id3143267\n"
+"03010201.xhp\n"
+"par_id3151100\n"
"3\n"
"help.text"
-msgid "This object is automatically converted to an Any of the corresponding type when passed to Uno. The type must be specified by its fully qualified Uno type name."
-msgstr "Този обект се преобразува автоматично към тип Any от съответния тип, когато се предава към Uno. Типът трябва да бъде зададен като напълно квалифицирано тиме на тип на Uno."
+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 "Операторът <emph>InputBox</emph> е удобен начин за въвеждане на текст чрез диалогов прозорец. Потвърдете въвеждането с бутона „OK“ или клавиша Return. Въведеният текст се връща като резултат на функцията. Ако затворите диалоговия прозорец с „Отказ“, <emph>InputBox</emph> връща низ с нулева дължина (\"\")."
-#: 03132300.xhp
+#: 03010201.xhp
msgctxt ""
-"03132300.xhp\n"
-"par_id3153626\n"
+"03010201.xhp\n"
+"hd_id3152347\n"
"4\n"
"help.text"
-msgid "The $[officename] API frequently uses the Any type. It is the counterpart of the Variant type known from other environments. The Any type holds one arbitrary Uno type and is used in generic Uno interfaces."
-msgstr "Типът Any се използва често в програмния интерфейс $[officename] API. Той съответства на типа Variant, изпозлван в други среди за програмиране. Променливите от тип Any могат съдържат произволен тип на Uno и се използват в общите интерфейси на Uno."
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 03132300.xhp
+#: 03010201.xhp
msgctxt ""
-"03132300.xhp\n"
-"hd_id3147560\n"
+"03010201.xhp\n"
+"par_id3159201\n"
"5\n"
"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
+msgid "InputBox (Msg As String[, Title As String[, Default As String[, x_pos As Integer, y_pos As Integer]]]])"
+msgstr "InputBox (Msg As String[, Title As String[, Default As String[, x_pos As Integer, y_pos As Integer]]]])"
-#: 03132300.xhp
+#: 03010201.xhp
msgctxt ""
-"03132300.xhp\n"
-"par_id3154760\n"
+"03010201.xhp\n"
+"hd_id3150713\n"
"6\n"
"help.text"
-msgid "oUnoValue = CreateUnoValue( \"[]byte\", MyBasicValue ) to get a byte sequence."
-msgstr "oUnoValue = CreateUnoValue(\"[]byte\", MyBasicValue) за получаване на последователност от байтове."
+msgid "Return value:"
+msgstr "Връщана стойност:"
-#: 03132300.xhp
+#: 03010201.xhp
msgctxt ""
-"03132300.xhp\n"
-"par_id3150541\n"
+"03010201.xhp\n"
+"par_id3145090\n"
"7\n"
"help.text"
-msgid "If CreateUnoValue cannot be converted to the specified Uno type, and error occurs. For the conversion, the TypeConverter service is used."
-msgstr "Ако резултатът от CreateUnoValue не може да бъде преобразуван към зададения тип на Uno, възниква грешка. За преобразуване се използва услугата TypeConverter."
+msgid "String"
+msgstr "String"
-#: 03132300.xhp
+#: 03010201.xhp
msgctxt ""
-"03132300.xhp\n"
-"par_id3153524\n"
+"03010201.xhp\n"
+"hd_id3149346\n"
"8\n"
"help.text"
-msgid "This function is intended for use in situations where the default Basic to Uno type converting mechanism is insufficient. This can happen when you try to access generic Any based interfaces, such as XPropertySet::setPropertyValue( Name, Value ) or X???Container::insertBy???( ???, Value ), from $[officename] Basic. The Basic runtime does not recognize these types as they are only defined in the corresponding service."
-msgstr "Тази функция е предназначена за употреба в ситуации, когато подразбиранят механизъм за преобразуване на типове от Basic към Uno е недостатъчен. Това може да се случи, ако се опитате да работите от $[officename] Basic с общи, базирани на Any интерфейси като XPropertySet::setPropertyValue(Name, Value) или X???Container::insertBy???( ???, Value ). Средата за изпълнение на Basic не разпознава тези типове, тъй като те са дефинирани само в съответната услуга."
+msgid "Parameter:"
+msgstr "Параметър:"
-#: 03132300.xhp
+#: 03010201.xhp
msgctxt ""
-"03132300.xhp\n"
-"par_id3154366\n"
+"03010201.xhp\n"
+"par_id3153311\n"
"9\n"
"help.text"
-msgid "In this type of situation, $[officename] Basic chooses the best matching type for the Basic type that you want to convert. However, if the wrong type is selected, an error occurs. You use the CreateUnoValue() function to create a value for the unknown Uno type."
-msgstr "В такава ситуация $[officename] Basic избира най-точно съответстващия тип за типа от Basic, който искате да се преобразува. Ако обаче бъде избран погрешен тип, възниква грешка. Можете да използвате функцията CreateUnoValue(), за да създадете стойност за неизвестен тип на Uno."
+msgid "<emph>Msg</emph>: String expression displayed as the message in the dialog box."
+msgstr "<emph>Msg</emph>: низов израз, показван като съобщение в диалоговия прозорец."
-#: 03132300.xhp
+#: 03010201.xhp
msgctxt ""
-"03132300.xhp\n"
-"par_id3150769\n"
+"03010201.xhp\n"
+"par_id3145315\n"
"10\n"
"help.text"
-msgid "You can also use this function to pass non-Any values, but this is not recommend. If Basic already knows the target type, using the CreateUnoValue() function will only lead to additional converting operations that slow down the Basic execution."
-msgstr "Можете да използвате тази функция и за предаване на стойности не от тип Any, но това не се препоръчва. Ако Basic познава целевия тип, използването на CreateUnoValue() ще доведе до излишни преобразувания, които само ще забавят изпълнението на кода на Basic."
-
-#: 03120303.xhp
-msgctxt ""
-"03120303.xhp\n"
-"tit\n"
-"help.text"
-msgid "Left Function [Runtime]"
-msgstr "Функция Left [динамична]"
-
-#: 03120303.xhp
-msgctxt ""
-"03120303.xhp\n"
-"bm_id3149346\n"
-"help.text"
-msgid "<bookmark_value>Left function</bookmark_value>"
-msgstr "<bookmark_value>Left, функция</bookmark_value>"
-
-#: 03120303.xhp
-msgctxt ""
-"03120303.xhp\n"
-"hd_id3149346\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03120303.xhp\" name=\"Left Function [Runtime]\">Left Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120303.xhp\" name=\"Функция Left [динамична]\">Функция Left [динамична]</link>"
-
-#: 03120303.xhp
-msgctxt ""
-"03120303.xhp\n"
-"par_id3147242\n"
-"2\n"
-"help.text"
-msgid "Returns the number of leftmost characters that you specify of a string expression."
-msgstr "Връща указан брой от най-левите знаци в низ."
+msgid "<emph>Title</emph>: String expression displayed in the title bar of the dialog box."
+msgstr "<emph>Title</emph>: низов израз, показван в заглавната лента на диалоговия прозорец."
-#: 03120303.xhp
+#: 03010201.xhp
msgctxt ""
-"03120303.xhp\n"
-"hd_id3156153\n"
-"3\n"
+"03010201.xhp\n"
+"par_id3154307\n"
+"11\n"
"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
+msgid "<emph>Default</emph>: String expression displayed in the text box as default if no other input is given."
+msgstr "<emph>Default</emph>: низов израз, показван в текстовото поле като подразбирана стойност, ако не е въведено друго."
-#: 03120303.xhp
+#: 03010201.xhp
msgctxt ""
-"03120303.xhp\n"
-"par_id3150771\n"
-"4\n"
+"03010201.xhp\n"
+"par_id3147573\n"
+"12\n"
"help.text"
-msgid "Left (Text As String, n As Long)"
-msgstr "Left (Text As String, n As Long)"
+msgid "<emph>x_pos</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 the office application."
+msgstr "<emph>x_pos</emph>: целочислен израз, който задава хоризонталната позиция на диалоговия прозорец. Позицията представлява абсолютна координата и не е относителна спрямо прозореца на офис приложението."
-#: 03120303.xhp
+#: 03010201.xhp
msgctxt ""
-"03120303.xhp\n"
-"hd_id3153824\n"
-"5\n"
+"03010201.xhp\n"
+"par_id3156024\n"
+"13\n"
"help.text"
-msgid "Return value:"
-msgstr "Връщана стойност:"
+msgid "<emph>y_pos</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 the office application."
+msgstr "<emph>y_pos</emph>: целочислен израз, който задава вертикалната позиция на диалоговия прозорец. Позицията представлява абсолютна координата и не е относителна спрямо прозореца на офис приложението."
-#: 03120303.xhp
+#: 03010201.xhp
msgctxt ""
-"03120303.xhp\n"
-"par_id3147530\n"
-"6\n"
+"03010201.xhp\n"
+"par_id3153897\n"
+"14\n"
"help.text"
-msgid "String"
-msgstr "String"
+msgid "If <emph>x_pos</emph> and <emph>y_pos</emph> 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 "Ако <emph>x_pos</emph> и <emph>y_pos</emph> са пропуснати, диалоговият прозорец се центрира върху екрана. Позицията се задава в <link href=\"text/sbasic/shared/00000002.xhp#twips\" name=\"туипове\">туипове</link>."
-#: 03120303.xhp
+#: 03010201.xhp
msgctxt ""
-"03120303.xhp\n"
-"hd_id3148946\n"
-"7\n"
+"03010201.xhp\n"
+"hd_id3149456\n"
+"15\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "Example:"
+msgstr "Пример:"
-#: 03120303.xhp
+#: 03010201.xhp
msgctxt ""
-"03120303.xhp\n"
-"par_id3148552\n"
-"8\n"
+"03010201.xhp\n"
+"par_id3154367\n"
+"18\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression that you want to return the leftmost characters from."
-msgstr "<emph>Text:</emph> низов израз, от чиято стойност да се извлекат най-десните знаци."
+msgid "sText = InputBox (\"Please enter a phrase:\",\"Dear User\")"
+msgstr "sText = InputBox(\"Моля, въведете фраза:\", \"Драги потребителю\")"
-#: 03120303.xhp
+#: 03010201.xhp
msgctxt ""
-"03120303.xhp\n"
-"par_id3149456\n"
-"9\n"
+"03010201.xhp\n"
+"par_id3151042\n"
+"19\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 65535."
-msgstr "<emph>n:</emph> числов израз, който задава желания брой на знаците в резултата. Ако <emph>n</emph> = 0, се връща низ с нулева дължина. Максималната разрешена стойност е 65535."
+msgid "MsgBox ( sText , 64, \"Confirmation of phrase\")"
+msgstr "MsgBox(sText, 64, \"Потвърждение на фразата\")"
-#: 03120303.xhp
+#: 03010300.xhp
msgctxt ""
-"03120303.xhp\n"
-"par_id3150791\n"
-"10\n"
+"03010300.xhp\n"
+"tit\n"
"help.text"
-msgid "The following example converts a date in YYYY.MM.DD format to MM/DD/YYYY format."
-msgstr "Следващият пример преобразува дата от формат ГГГГ-ММ-ДД в американския формат ММ/ДД/ГГГГ."
+msgid "Color Functions"
+msgstr "Функции за цветове"
-#: 03120303.xhp
+#: 03010300.xhp
msgctxt ""
-"03120303.xhp\n"
-"hd_id3125863\n"
-"11\n"
+"03010300.xhp\n"
+"hd_id3157896\n"
+"1\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "<link href=\"text/sbasic/shared/03010300.xhp\" name=\"Color Functions\">Color Functions</link>"
+msgstr "<link href=\"text/sbasic/shared/03010300.xhp\" name=\"Функции за цветове\">Функции за цветове</link>"
-#: 03120303.xhp
+#: 03010300.xhp
msgctxt ""
-"03120303.xhp\n"
-"par_id3150448\n"
-"15\n"
+"03010300.xhp\n"
+"par_id3155555\n"
+"2\n"
"help.text"
-msgid "sInput = InputBox(\"Please input a date in the international format 'YYYY-MM-DD'\")"
-msgstr "sInput = InputBox(\"Моля, въведете дата в международния формат „ГГГГ-ММ-ДД“\")"
+msgid "This section describes Runtime functions used to define colors."
+msgstr "В този раздел са описани функциите за задаване на цветове."
-#: 03020412.xhp
+#: 03010301.xhp
msgctxt ""
-"03020412.xhp\n"
+"03010301.xhp\n"
"tit\n"
"help.text"
-msgid "Name Statement [Runtime]"
-msgstr "Оператор Name [динамичен]"
+msgid "Blue Function [Runtime]"
+msgstr "Функция Blue [динамична]"
-#: 03020412.xhp
+#: 03010301.xhp
msgctxt ""
-"03020412.xhp\n"
-"bm_id3143268\n"
+"03010301.xhp\n"
+"bm_id3149180\n"
"help.text"
-msgid "<bookmark_value>Name statement</bookmark_value>"
-msgstr "<bookmark_value>Name, оператор</bookmark_value>"
+msgid "<bookmark_value>Blue function</bookmark_value>"
+msgstr "<bookmark_value>Blue, функция</bookmark_value>"
-#: 03020412.xhp
+#: 03010301.xhp
msgctxt ""
-"03020412.xhp\n"
-"hd_id3143268\n"
+"03010301.xhp\n"
+"hd_id3149180\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020412.xhp\" name=\"Name Statement [Runtime]\">Name Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03020412.xhp\" name=\"Оператор Name [динамичен]\">Оператор Name [динамичен]</link>"
+msgid "<link href=\"text/sbasic/shared/03010301.xhp\" name=\"Blue Function [Runtime]\">Blue Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03010301.xhp\" name=\"Функция Blue [динамична]\">Функция Blue [динамична]</link>"
-#: 03020412.xhp
+#: 03010301.xhp
msgctxt ""
-"03020412.xhp\n"
-"par_id3154346\n"
+"03010301.xhp\n"
+"par_id3156343\n"
"2\n"
"help.text"
-msgid "Renames an existing file or directory."
-msgstr "Преименува съществуващ файл или директория."
+msgid "Returns the blue component of the specified color code."
+msgstr "Връща синия компонент от зададения код на цвят."
-#: 03020412.xhp
+#: 03010301.xhp
msgctxt ""
-"03020412.xhp\n"
-"hd_id3156344\n"
+"03010301.xhp\n"
+"hd_id3149670\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03020412.xhp
+#: 03010301.xhp
msgctxt ""
-"03020412.xhp\n"
-"par_id3153381\n"
+"03010301.xhp\n"
+"par_id3149457\n"
"4\n"
"help.text"
-msgid "Name OldName As String As NewName As String"
-msgstr "Name OldName As String As NewName As String"
+msgid "Blue (Color As Long)"
+msgstr "Blue (Color As Long)"
-#: 03020412.xhp
+#: 03010301.xhp
msgctxt ""
-"03020412.xhp\n"
-"hd_id3153362\n"
+"03010301.xhp\n"
+"hd_id3149656\n"
"5\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "Return value:"
+msgstr "Връщана стойност:"
-#: 03020412.xhp
+#: 03010301.xhp
msgctxt ""
-"03020412.xhp\n"
-"par_id3151210\n"
+"03010301.xhp\n"
+"par_id3154365\n"
"6\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 "<emph>OldName, NewName:</emph> низов израз – име на файл заедно с пътя. Може да са зададени във вид на <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL\">URL</link>."
+msgid "Integer"
+msgstr "Integer"
-#: 03020412.xhp
+#: 03010301.xhp
msgctxt ""
-"03020412.xhp\n"
-"hd_id3125863\n"
+"03010301.xhp\n"
+"hd_id3156423\n"
+"7\n"
+"help.text"
+msgid "Parameter:"
+msgstr "Параметър:"
+
+#: 03010301.xhp
+msgctxt ""
+"03010301.xhp\n"
+"par_id3150448\n"
"8\n"
"help.text"
+msgid "<emph>Color value</emph>: Long integer expression that specifies any <link href=\"text/sbasic/shared/00000003.xhp#farbcodes\" name=\"color code\">color code</link> for which to return the blue component."
+msgstr "<emph>Color</emph>: израз от тип long integer, задаващ <link href=\"text/sbasic/shared/00000003.xhp#farbcodes\" name=\"код на цвят\">код на цвят</link>, за който да се намери синият компонент."
+
+#: 03010301.xhp
+msgctxt ""
+"03010301.xhp\n"
+"hd_id3153091\n"
+"9\n"
+"help.text"
msgid "Example:"
msgstr "Пример:"
-#: 03020412.xhp
+#: 03010301.xhp
msgctxt ""
-"03020412.xhp\n"
-"par_id3152462\n"
+"03010301.xhp\n"
+"par_id3154012\n"
+"13\n"
+"help.text"
+msgid "MsgBox \"The color \" & lVar & \" consists of:\" & Chr(13) &_"
+msgstr "MsgBox \"Цветът \" & lVar & \" съдържа:\" & Chr(13) &_"
+
+#: 03010301.xhp
+msgctxt ""
+"03010301.xhp\n"
+"par_id3148645\n"
+"14\n"
+"help.text"
+msgid "\"red= \" & Red(lVar) & Chr(13)&_"
+msgstr "\"червено= \" & Red(lVar) & Chr(13)&_"
+
+#: 03010301.xhp
+msgctxt ""
+"03010301.xhp\n"
+"par_id3159155\n"
+"15\n"
+"help.text"
+msgid "\"green= \" & Green(lVar) & Chr(13)&_"
+msgstr "\"зелено= \" & Green(lVar) & Chr(13)&_"
+
+#: 03010301.xhp
+msgctxt ""
+"03010301.xhp\n"
+"par_id3147319\n"
"16\n"
"help.text"
-msgid "MsgBox \"File already exists\""
-msgstr "MsgBox \"Файлът вече съществува.\""
+msgid "\"blue= \" & Blue(lVar) & Chr(13) , 64,\"colors\""
+msgstr "\"синьо= \" & Blue(lVar) & Chr(13), 64, \"Цветове\""
-#: 03104600.xhp
+#: 03010302.xhp
msgctxt ""
-"03104600.xhp\n"
+"03010302.xhp\n"
"tit\n"
"help.text"
-msgid "EqualUnoObjects Function [Runtime]"
-msgstr "Функция EqualUnoObjects [динамична]"
+msgid "Green Function [Runtime]"
+msgstr "Функция Green [динамична]"
-#: 03104600.xhp
+#: 03010302.xhp
msgctxt ""
-"03104600.xhp\n"
-"bm_id3149205\n"
+"03010302.xhp\n"
+"bm_id3148947\n"
"help.text"
-msgid "<bookmark_value>EqualUnoObjects function</bookmark_value>"
-msgstr "<bookmark_value>EqualUnoObjects, функция</bookmark_value>"
+msgid "<bookmark_value>Green function</bookmark_value>"
+msgstr "<bookmark_value>Green, функция</bookmark_value>"
-#: 03104600.xhp
+#: 03010302.xhp
msgctxt ""
-"03104600.xhp\n"
-"hd_id3149205\n"
+"03010302.xhp\n"
+"hd_id3148947\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03104600.xhp\" name=\"EqualUnoObjects Function [Runtime]\">EqualUnoObjects Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03104600.xhp\" name=\"Функция EqualUnoObjects [динамична]\">Функция EqualUnoObjects [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03010302.xhp\" name=\"Green Function [Runtime]\">Green Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03010302.xhp\" name=\"Функция Green [динамична]\">Функция Green [динамична]</link>"
-#: 03104600.xhp
+#: 03010302.xhp
msgctxt ""
-"03104600.xhp\n"
-"par_id3145090\n"
+"03010302.xhp\n"
+"par_id3153361\n"
"2\n"
"help.text"
-msgid "Returns True if the two specified Basic Uno objects represent the same Uno object instance."
-msgstr "Връща True, ако два зададени обекта на Uno в Basic представят един и същ екземпляр на обект на Uno."
+msgid "Returns the Green component of the given color code."
+msgstr "Връща зеления компонент от зададения код на цвят."
-#: 03104600.xhp
+#: 03010302.xhp
msgctxt ""
-"03104600.xhp\n"
-"hd_id3148538\n"
+"03010302.xhp\n"
+"hd_id3154140\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03104600.xhp
+#: 03010302.xhp
msgctxt ""
-"03104600.xhp\n"
-"par_id3150669\n"
+"03010302.xhp\n"
+"par_id3153969\n"
"4\n"
"help.text"
-msgid "EqualUnoObjects( oObj1, oObj2 )"
-msgstr "EqualUnoObjects(oObj1, oObj2)"
+msgid "Green (Color As Long)"
+msgstr "Green (Color As Long)"
-#: 03104600.xhp
+#: 03010302.xhp
msgctxt ""
-"03104600.xhp\n"
-"hd_id3150984\n"
+"03010302.xhp\n"
+"hd_id3154124\n"
"5\n"
"help.text"
msgid "Return value:"
msgstr "Връщана стойност:"
-#: 03104600.xhp
+#: 03010302.xhp
msgctxt ""
-"03104600.xhp\n"
-"par_id3154285\n"
+"03010302.xhp\n"
+"par_id3153194\n"
"6\n"
"help.text"
-msgid "Bool"
-msgstr "Bool"
+msgid "Integer"
+msgstr "Integer"
-#: 03104600.xhp
+#: 03010302.xhp
msgctxt ""
-"03104600.xhp\n"
-"hd_id3145315\n"
+"03010302.xhp\n"
+"hd_id3154909\n"
"7\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "Parameter:"
+msgstr "Параметър:"
-#: 03104600.xhp
+#: 03010302.xhp
msgctxt ""
-"03104600.xhp\n"
-"par_id3156024\n"
+"03010302.xhp\n"
+"par_id3153770\n"
"8\n"
"help.text"
-msgid "// Copy of objects -> same instance"
-msgstr "// Копираме обекти -> един и същ екземпляр"
+msgid "<emph>Color</emph>: Long integer expression that specifies a <link href=\"text/sbasic/shared/00000003.xhp#farbcodes\" name=\"color code\">color code</link> for which to return the Green component."
+msgstr "<emph>Color</emph>: израз от тип Long integer, задаващ <link href=\"text/sbasic/shared/00000003.xhp#farbcodes\" name=\"код на цвят\">код на цвят</link>, за който да се намери зеленият компонент."
-#: 03104600.xhp
+#: 03010302.xhp
msgctxt ""
-"03104600.xhp\n"
-"par_id3154923\n"
+"03010302.xhp\n"
+"hd_id3149664\n"
"9\n"
"help.text"
-msgid "oIntrospection = CreateUnoService( \"com.sun.star.beans.Introspection\" )"
-msgstr "oIntrospection = CreateUnoService(\"com.sun.star.beans.Introspection\")"
-
-#: 03104600.xhp
-msgctxt ""
-"03104600.xhp\n"
-"par_id3147559\n"
-"10\n"
-"help.text"
-msgid "oIntro2 = oIntrospection"
-msgstr "oIntro2 = oIntrospection"
-
-#: 03104600.xhp
-msgctxt ""
-"03104600.xhp\n"
-"par_id3150541\n"
-"11\n"
-"help.text"
-msgid "print EqualUnoObjects( oIntrospection, oIntro2 )"
-msgstr "Print EqualUnoObjects(oIntrospection, oIntro2)"
-
-#: 03104600.xhp
-msgctxt ""
-"03104600.xhp\n"
-"par_id3153525\n"
-"12\n"
-"help.text"
-msgid "// Copy of structs as value -> new instance"
-msgstr "// Копираме структура по стойност -> нов екземпляр"
+msgid "Example:"
+msgstr "Пример:"
-#: 03104600.xhp
+#: 03010302.xhp
msgctxt ""
-"03104600.xhp\n"
-"par_id3154366\n"
+"03010302.xhp\n"
+"par_id3151117\n"
"13\n"
"help.text"
-msgid "Dim Struct1 as new com.sun.star.beans.Property"
-msgstr "Dim Struct1 As New com.sun.star.beans.Property"
+msgid "MsgBox \"The color \" & lVar & \" contains the components:\" & Chr(13) &_"
+msgstr "MsgBox \"Цветът \" & lVar & \" съдържа:\" & Chr(13) &_"
-#: 03104600.xhp
+#: 03010302.xhp
msgctxt ""
-"03104600.xhp\n"
-"par_id3154348\n"
+"03010302.xhp\n"
+"par_id3153951\n"
"14\n"
"help.text"
-msgid "Struct2 = Struct1"
-msgstr "Struct2 = Struct1"
+msgid "\"red = \" & red(lVar) & Chr(13)&_"
+msgstr "\"червено= \" & Red(lVar) & Chr(13)&_"
-#: 03104600.xhp
+#: 03010302.xhp
msgctxt ""
-"03104600.xhp\n"
-"par_id3154125\n"
+"03010302.xhp\n"
+"par_id3152462\n"
"15\n"
"help.text"
-msgid "print EqualUnoObjects( Struct1, Struct2 )"
-msgstr "Print EqualUnoObjects(Struct1, Struct2)"
+msgid "\"green = \" & green(lVar) & Chr(13)&_"
+msgstr "\"зелено= \" & Green(lVar) & Chr(13)&_"
-#: 03020405.xhp
+#: 03010302.xhp
msgctxt ""
-"03020405.xhp\n"
+"03010302.xhp\n"
+"par_id3154730\n"
+"16\n"
+"help.text"
+msgid "\"blue = \" & blue(lVar) & Chr(13) , 64,\"colors\""
+msgstr "\"синьо= \" & Blue(lVar) & Chr(13), 64, \"Цветове\""
+
+#: 03010303.xhp
+msgctxt ""
+"03010303.xhp\n"
"tit\n"
"help.text"
-msgid "FileAttr-Function [Runtime]"
-msgstr "Функция FileAttr [динамична]"
+msgid "Red Function [Runtime]"
+msgstr "Функция Red [динамична]"
-#: 03020405.xhp
+#: 03010303.xhp
msgctxt ""
-"03020405.xhp\n"
-"bm_id3153380\n"
+"03010303.xhp\n"
+"bm_id3148947\n"
"help.text"
-msgid "<bookmark_value>FileAttr function</bookmark_value>"
-msgstr "<bookmark_value>FileAttr, функция</bookmark_value>"
+msgid "<bookmark_value>Red function</bookmark_value>"
+msgstr "<bookmark_value>Red, функция</bookmark_value>"
-#: 03020405.xhp
+#: 03010303.xhp
msgctxt ""
-"03020405.xhp\n"
-"hd_id3153380\n"
+"03010303.xhp\n"
+"hd_id3148947\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020405.xhp\" name=\"FileAttr-Function [Runtime]\">FileAttr Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03020405.xhp\" name=\"Функция FileAttr [динамична]\">Функция FileAttr [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03010303.xhp\" name=\"Red Function [Runtime]\">Red Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03010303.xhp\" name=\"Функция Red [динамична]\">Функция Red [динамична]</link>"
-#: 03020405.xhp
+#: 03010303.xhp
msgctxt ""
-"03020405.xhp\n"
-"par_id3154366\n"
+"03010303.xhp\n"
+"par_id3149656\n"
"2\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 "Връща режима за достъп или номера за достъп до файл, отворен с оператора Open. Номерът за достъп до файл зависи от операционната система (OSH = Operating System Handle, манипулатор на операционната система)."
+msgid "Returns the Red component of the specified color code."
+msgstr "Връща червения компонент от зададения код на цвят."
-#: 03020405.xhp
+#: 03010303.xhp
msgctxt ""
-"03020405.xhp\n"
-"par_id3153364\n"
+"03010303.xhp\n"
+"hd_id3148799\n"
"3\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 "Ако работите с 32-битова операционна система, не можете да определите номера за достъп до файл с функцията FileAttr."
-
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"par_id3163713\n"
-"4\n"
-"help.text"
-msgid "See also: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>"
-msgstr "Виж също: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>"
-
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3151116\n"
-"5\n"
-"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03020405.xhp
+#: 03010303.xhp
msgctxt ""
-"03020405.xhp\n"
-"par_id3154012\n"
-"6\n"
+"03010303.xhp\n"
+"par_id3150448\n"
+"4\n"
"help.text"
-msgid "FileAttr (FileNumber As Integer, Attribute As Integer)"
-msgstr "FileAttr (FileNumber As Integer, Attribute As Integer)"
+msgid "Red (ColorNumber As Long)"
+msgstr "Red (Color As Long)"
-#: 03020405.xhp
+#: 03010303.xhp
msgctxt ""
-"03020405.xhp\n"
-"hd_id3147349\n"
-"7\n"
+"03010303.xhp\n"
+"hd_id3151042\n"
+"5\n"
"help.text"
msgid "Return value:"
msgstr "Връщана стойност:"
-#: 03020405.xhp
+#: 03010303.xhp
msgctxt ""
-"03020405.xhp\n"
-"par_id3146974\n"
-"8\n"
+"03010303.xhp\n"
+"par_id3145173\n"
+"6\n"
"help.text"
msgid "Integer"
msgstr "Integer"
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3153728\n"
-"9\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
-
-#: 03020405.xhp
+#: 03010303.xhp
msgctxt ""
-"03020405.xhp\n"
-"par_id3151074\n"
-"10\n"
+"03010303.xhp\n"
+"hd_id3154685\n"
+"7\n"
"help.text"
-msgid "<emph>FileNumber:</emph> The number of the file that was opened with the Open statement."
-msgstr "<emph>FileNumber:</emph> номерът на файла, отворен с оператора Open."
+msgid "Parameter:"
+msgstr "Параметър:"
-#: 03020405.xhp
+#: 03010303.xhp
msgctxt ""
-"03020405.xhp\n"
-"par_id3144766\n"
-"11\n"
+"03010303.xhp\n"
+"par_id3150440\n"
+"8\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 "<emph>Attribute:</emph> целочислен израз, указващ типа на търсената информация. Възможни са следните стойности:"
+msgid "<emph>ColorNumber</emph>: Long integer expression that specifies any <link href=\"text/sbasic/shared/00000003.xhp#farbcodes\" name=\"color code\">color code</link> for which to return the Red component."
+msgstr "<emph>Color</emph>: израз от тип Long integer, задаващ <link href=\"text/sbasic/shared/00000003.xhp#farbcodes\" name=\"код на цвят\">код на цвят</link>, за който да се намери червеният компонент."
-#: 03020405.xhp
+#: 03010303.xhp
msgctxt ""
-"03020405.xhp\n"
-"par_id3147396\n"
-"12\n"
+"03010303.xhp\n"
+"hd_id3148575\n"
+"9\n"
"help.text"
-msgid "1: The FileAttr-Function indicates the access mode of the file."
-msgstr "1: Функцията FileAttr намира режима на достъп до файла."
+msgid "Example:"
+msgstr "Пример:"
-#: 03020405.xhp
+#: 03010303.xhp
msgctxt ""
-"03020405.xhp\n"
-"par_id3149959\n"
+"03010303.xhp\n"
+"par_id3147435\n"
"13\n"
"help.text"
-msgid "2: The FileAttr-Function returns the file access number of the operating system."
-msgstr "2: Функцията FileAttr връща номера за достъп до файла от операционната система."
+msgid "MsgBox \"The color \" & lVar & \" consists of:\" & Chr(13) &_"
+msgstr "MsgBox \"Цветът \" & lVar & \" съдържа:\" & Chr(13) &_"
-#: 03020405.xhp
+#: 03010303.xhp
msgctxt ""
-"03020405.xhp\n"
-"par_id3154018\n"
+"03010303.xhp\n"
+"par_id3155306\n"
"14\n"
"help.text"
-msgid "If you specify a parameter attribute with a value of 1, the following return values apply:"
-msgstr "Ако зададете на параметъра за атрибут стойност 1, важат следните стойности на резултата:"
+msgid "\"red= \" & red(lVar) & Chr(13)&_"
+msgstr "\"червено= \" & Red(lVar) & Chr(13)&_"
-#: 03020405.xhp
+#: 03010303.xhp
msgctxt ""
-"03020405.xhp\n"
-"par_id3149124\n"
+"03010303.xhp\n"
+"par_id3149262\n"
"15\n"
"help.text"
-msgid "1 - INPUT (file open for input)"
-msgstr "1 – INPUT (файлът е отворен за четене)"
+msgid "\"green= \" & green(lVar) & Chr(13)&_"
+msgstr "\"зелено= \" & Green(lVar) & Chr(13)&_"
-#: 03020405.xhp
+#: 03010303.xhp
msgctxt ""
-"03020405.xhp\n"
-"par_id3156275\n"
+"03010303.xhp\n"
+"par_id3147397\n"
"16\n"
"help.text"
-msgid "2 - OUTPUT (file open for output)"
-msgstr "2 – OUTPUT (файлът е отворен за записване)"
-
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"par_id3155066\n"
-"17\n"
-"help.text"
-msgid "4 - RANDOM (file open for random access)"
-msgstr "4 – RANDOM (файлът е отворен за произволен достъп)"
+msgid "\"blue= \" & blue(lVar) & Chr(13) , 64,\"colors\""
+msgstr "\"синьо= \" & Blue(lVar) & Chr(13), 64, \"Цветове\""
-#: 03020405.xhp
+#: 03010304.xhp
msgctxt ""
-"03020405.xhp\n"
-"par_id3148406\n"
-"18\n"
+"03010304.xhp\n"
+"tit\n"
"help.text"
-msgid "8 - APPEND (file open for appending)"
-msgstr "8 – APPEND (файлът е отворен за добавяне)"
+msgid "QBColor Function [Runtime]"
+msgstr "Функция QBColor [динамична]"
-#: 03020405.xhp
+#: 03010304.xhp
msgctxt ""
-"03020405.xhp\n"
-"par_id3154757\n"
-"19\n"
+"03010304.xhp\n"
+"hd_id3149670\n"
+"1\n"
"help.text"
-msgid "32 - BINARY (file open in binary mode)."
-msgstr "32 – BINARY (файлът е отворен в двоичен режим)."
+msgid "<link href=\"text/sbasic/shared/03010304.xhp\" name=\"QBColor Function [Runtime]\">QBColor Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03010304.xhp\" name=\"Функция QBColor [динамична]\">Функция QBColor [динамична]</link>"
-#: 03020405.xhp
+#: 03010304.xhp
msgctxt ""
-"03020405.xhp\n"
-"hd_id3147339\n"
-"20\n"
+"03010304.xhp\n"
+"par_id3150359\n"
+"2\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "Returns the <link href=\"text/sbasic/shared/03010305.xhp\" name=\"RGB\">RGB</link> color code of the color passed as a color value through an older MS-DOS based programming system."
+msgstr "Връща цветовия код <link href=\"text/sbasic/shared/03010305.xhp\" name=\"RGB\">RGB</link> на цвят, зададен като цветова стойност от по-стара система за програмиране, базирана на MS-DOS."
-#: 03020405.xhp
+#: 03010304.xhp
msgctxt ""
-"03020405.xhp\n"
-"par_id3155607\n"
-"29\n"
+"03010304.xhp\n"
+"hd_id3154140\n"
+"3\n"
"help.text"
-msgid "Print #iNumber, \"This is a line of text\""
-msgstr "Print #iNumber, \"Това е ред с текст\""
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 03020405.xhp
+#: 03010304.xhp
msgctxt ""
-"03020405.xhp\n"
-"par_id3150361\n"
-"30\n"
+"03010304.xhp\n"
+"par_id3151042\n"
+"4\n"
"help.text"
-msgid "MsgBox FileAttr(#iNumber, 1 ),0,\"Access mode\""
-msgstr "MsgBox FileAttr(#iNumber, 1), 0, \"Режим на достъп\""
+msgid "QBColor (ColorNumber As Integer)"
+msgstr "QBColor (ColorNumber As Integer)"
-#: 03020405.xhp
+#: 03010304.xhp
msgctxt ""
-"03020405.xhp\n"
-"par_id3149817\n"
-"31\n"
+"03010304.xhp\n"
+"hd_id3145172\n"
+"5\n"
"help.text"
-msgid "MsgBox FileAttr(#iNumber, 2 ),0,\"File attribute\""
-msgstr "MsgBox FileAttr(#iNumber, 2), 0, \"Атрибути на файла\""
+msgid "Return value:"
+msgstr "Връщана стойност:"
-#: 03080301.xhp
+#: 03010304.xhp
msgctxt ""
-"03080301.xhp\n"
-"tit\n"
+"03010304.xhp\n"
+"par_id3154685\n"
+"6\n"
"help.text"
-msgid "Randomize Statement [Runtime]"
-msgstr "Оператор Randomize [динамичен]"
+msgid "Long"
+msgstr "Long"
-#: 03080301.xhp
+#: 03010304.xhp
msgctxt ""
-"03080301.xhp\n"
-"bm_id3150616\n"
+"03010304.xhp\n"
+"hd_id3156560\n"
+"7\n"
"help.text"
-msgid "<bookmark_value>Randomize statement</bookmark_value>"
-msgstr "<bookmark_value>Randomize, оператор</bookmark_value>"
+msgid "Parameter:"
+msgstr "Параметър:"
-#: 03080301.xhp
+#: 03010304.xhp
msgctxt ""
-"03080301.xhp\n"
-"hd_id3150616\n"
-"1\n"
+"03010304.xhp\n"
+"par_id3161832\n"
+"8\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080301.xhp\" name=\"Randomize Statement [Runtime]\">Randomize Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03080301.xhp\" name=\"Оператор Randomize [динамичен]\">Оператор Randomize [динамичен]</link>"
+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 "<emph>ColorNumber</emph>: целочислен израз, който задава цветовата стойност, подадена от по-стара система за програмиране, базирана на MS-DOS."
-#: 03080301.xhp
+#: 03010304.xhp
msgctxt ""
-"03080301.xhp\n"
-"par_id3145090\n"
-"2\n"
+"03010304.xhp\n"
+"par_id3147318\n"
+"9\n"
"help.text"
-msgid "Initializes the random-number generator."
-msgstr "Инициализира генератора на случайни числа."
+msgid "<emph>ColorNumber</emph> can be assigned the following values:"
+msgstr "<emph>ColorNumber</emph> може да има следните стойности:"
-#: 03080301.xhp
+#: 03010304.xhp
msgctxt ""
-"03080301.xhp\n"
-"hd_id3147573\n"
-"3\n"
+"03010304.xhp\n"
+"par_id3152576\n"
+"10\n"
"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
+msgid "0 : Black"
+msgstr "0: черно"
-#: 03080301.xhp
+#: 03010304.xhp
msgctxt ""
-"03080301.xhp\n"
-"par_id3145315\n"
-"4\n"
+"03010304.xhp\n"
+"par_id3146975\n"
+"11\n"
"help.text"
-msgid "Randomize [Number]"
-msgstr "Randomize (Number)"
+msgid "1 : Blue"
+msgstr "1: синьо"
-#: 03080301.xhp
+#: 03010304.xhp
msgctxt ""
-"03080301.xhp\n"
-"hd_id3152456\n"
-"5\n"
+"03010304.xhp\n"
+"par_id3151116\n"
+"12\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "2 : Green"
+msgstr "2: зелено"
-#: 03080301.xhp
+#: 03010304.xhp
msgctxt ""
-"03080301.xhp\n"
-"par_id3149670\n"
-"6\n"
+"03010304.xhp\n"
+"par_id3155412\n"
+"13\n"
"help.text"
-msgid "<emph>Number:</emph> Any integer value that initializes the random-number generator."
-msgstr "<emph>Number:</emph> произволна целочислена стойност, с която да се инициализира генераторът на случайни числа."
+msgid "3 : Cyan"
+msgstr "3: синьозелено"
-#: 03080301.xhp
+#: 03010304.xhp
msgctxt ""
-"03080301.xhp\n"
-"hd_id3149655\n"
-"7\n"
+"03010304.xhp\n"
+"par_id3155306\n"
+"14\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "4 : Red"
+msgstr "4: червено"
-#: 03080301.xhp
+#: 03010304.xhp
msgctxt ""
-"03080301.xhp\n"
-"par_id3147288\n"
-"14\n"
+"03010304.xhp\n"
+"par_id3153364\n"
+"15\n"
"help.text"
-msgid "iVar = Int((10 * Rnd) ) ' Range from 0 To 9"
-msgstr "iVar = Int((10 * Rnd)) ' Диапазон от 0 до 9"
+msgid "5 : Magenta"
+msgstr "5: пурпурно"
-#: 03080301.xhp
+#: 03010304.xhp
msgctxt ""
-"03080301.xhp\n"
-"par_id3148617\n"
-"22\n"
+"03010304.xhp\n"
+"par_id3146119\n"
+"16\n"
"help.text"
-msgid "MsgBox sText,0,\"Spectral Distribution\""
-msgstr "MsgBox sText, 0, \"Спектрално разпределение\""
+msgid "6 : Yellow"
+msgstr "6: жълто"
-#: 03104300.xhp
+#: 03010304.xhp
msgctxt ""
-"03104300.xhp\n"
-"tit\n"
+"03010304.xhp\n"
+"par_id3154730\n"
+"17\n"
"help.text"
-msgid "DimArray Function [Runtime]"
-msgstr "Функция DimArray [динамична]"
+msgid "7 : White"
+msgstr "7: бяло"
-#: 03104300.xhp
+#: 03010304.xhp
msgctxt ""
-"03104300.xhp\n"
-"bm_id3150616\n"
+"03010304.xhp\n"
+"par_id3153877\n"
+"18\n"
"help.text"
-msgid "<bookmark_value>DimArray function</bookmark_value>"
-msgstr "<bookmark_value>DimArray, функция</bookmark_value>"
+msgid "8 : Gray"
+msgstr "8: сиво"
-#: 03104300.xhp
+#: 03010304.xhp
msgctxt ""
-"03104300.xhp\n"
-"hd_id3150616\n"
-"1\n"
+"03010304.xhp\n"
+"par_id3147124\n"
+"19\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03104300.xhp\" name=\"DimArray Function [Runtime]\">DimArray Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03104300.xhp\" name=\"Функция DimArray [динамична]\">Функция DimArray [динамична]</link>"
+msgid "9 : Light Blue"
+msgstr "9: светло синьо"
-#: 03104300.xhp
+#: 03010304.xhp
msgctxt ""
-"03104300.xhp\n"
-"par_id3153527\n"
-"2\n"
+"03010304.xhp\n"
+"par_id3145646\n"
+"20\n"
"help.text"
-msgid "Returns a Variant array."
-msgstr "Връща масив от тип Variant."
+msgid "10 : Light Green"
+msgstr "10: светло зелено"
-#: 03104300.xhp
+#: 03010304.xhp
msgctxt ""
-"03104300.xhp\n"
-"hd_id3149762\n"
-"3\n"
+"03010304.xhp\n"
+"par_id3149958\n"
+"21\n"
"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
+msgid "11 : Light Cyan"
+msgstr "11: светло синьозелено"
-#: 03104300.xhp
+#: 03010304.xhp
msgctxt ""
-"03104300.xhp\n"
-"par_id3148473\n"
-"4\n"
+"03010304.xhp\n"
+"par_id3154943\n"
+"22\n"
"help.text"
-msgid "DimArray ( Argument list)"
-msgstr "DimArray ( Argument list)"
+msgid "12 : Light Red"
+msgstr "12: светло червено"
-#: 03104300.xhp
+#: 03010304.xhp
msgctxt ""
-"03104300.xhp\n"
-"par_id3154142\n"
-"5\n"
+"03010304.xhp\n"
+"par_id3150715\n"
+"23\n"
"help.text"
-msgid "See also <link href=\"text/sbasic/shared/03104200.xhp\" name=\"Array\">Array</link>"
-msgstr "Виж и <link href=\"text/sbasic/shared/03104200.xhp\" name=\"Array\">Array</link>"
+msgid "13 : Light Magenta"
+msgstr "13: светло пурпурно"
-#: 03104300.xhp
+#: 03010304.xhp
msgctxt ""
-"03104300.xhp\n"
-"par_id3156023\n"
-"6\n"
+"03010304.xhp\n"
+"par_id3146970\n"
+"24\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 "Ако не са подадени параметри, се създава празен масив (като Dim A() , което е същото като последователност с дължина 0 в Uno). Ако са зададени параметри, за всеки параметър се създава размерност."
+msgid "14 : Light Yellow"
+msgstr "14: светло жълто"
-#: 03104300.xhp
+#: 03010304.xhp
msgctxt ""
-"03104300.xhp\n"
-"hd_id3154760\n"
-"7\n"
+"03010304.xhp\n"
+"par_id3150750\n"
+"25\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "15 : Bright White"
+msgstr "15: ярко бяло"
-#: 03104300.xhp
+#: 03010304.xhp
msgctxt ""
-"03104300.xhp\n"
-"par_id3159414\n"
-"8\n"
+"03010304.xhp\n"
+"par_id3146914\n"
+"26\n"
"help.text"
-msgid "<emph>Argument list:</emph> A list of any number of arguments that are separated by commas."
-msgstr "<emph>Argument list:</emph> списък от произволен брой разделени със запетая аргументи."
+msgid "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 "Тази функция служи само за преобразуване от по-стари приложени на BASIC, базирани на MS-DOS, които използват горните цветови кодове. Функцията връща стойност от тип long integer, представяща цвета, който да бъде използван в развойната среда на $[officename]."
-#: 03104300.xhp
+#: 03010304.xhp
msgctxt ""
-"03104300.xhp\n"
-"hd_id3150358\n"
-"9\n"
+"03010304.xhp\n"
+"hd_id3148406\n"
+"27\n"
"help.text"
msgid "Example:"
msgstr "Пример:"
-#: 03104300.xhp
+#: 03010304.xhp
msgctxt ""
-"03104300.xhp\n"
-"par_id3154939\n"
-"10\n"
+"03010304.xhp\n"
+"par_id3149566\n"
+"33\n"
"help.text"
-msgid "DimArray( 2, 2, 4 ) is the same as DIM a( 2, 2, 4 )"
-msgstr "DimArray(2, 2, 4) е същото като Dim a(2, 2, 4)."
+msgid "MsgBox stext,0,\"Color \" & iColor"
+msgstr "MsgBox stext, 0, \"Цвят \" & iColor"
-#: 03103600.xhp
+#: 03010305.xhp
msgctxt ""
-"03103600.xhp\n"
+"03010305.xhp\n"
"tit\n"
"help.text"
-msgid "TypeName Function; VarType Function[Runtime]"
-msgstr "Функции TypeName и VarType [динамични]"
-
-#: 03103600.xhp
-msgctxt ""
-"03103600.xhp\n"
-"bm_id3143267\n"
-"help.text"
-msgid "<bookmark_value>TypeName function</bookmark_value><bookmark_value>VarType function</bookmark_value>"
-msgstr "<bookmark_value>TypeName, функция</bookmark_value><bookmark_value>VarType function</bookmark_value>"
+msgid "RGB Function [Runtime]"
+msgstr "Функция RGB [динамична]"
-#: 03103600.xhp
+#: 03010305.xhp
msgctxt ""
-"03103600.xhp\n"
-"hd_id3143267\n"
+"03010305.xhp\n"
+"hd_id3150792\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03103600.xhp\" name=\"TypeName Function; VarType Function[Runtime]\">TypeName Function; VarType Function[Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03103600.xhp\" name=\"Функции TypeName и VarType [динамични]\">Функции TypeName и VarType [динамични]</link>"
+msgid "<link href=\"text/sbasic/shared/03010305.xhp\" name=\"RGB Function [Runtime]\">RGB Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03010305.xhp\" name=\"Функция RGB [динамична]\">Функция RGB [динамична]</link>"
-#: 03103600.xhp
+#: 03010305.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3159157\n"
+"03010305.xhp\n"
+"par_id3150447\n"
"2\n"
"help.text"
-msgid "Returns a string (TypeName) or a numeric value (VarType) that contains information for a variable."
-msgstr "Връща низ (TypeName) или числова стойност (VarType) с информация относно променлива."
+msgid "Returns a <link href=\"text/sbasic/shared/00000003.xhp#farbcodes\" name=\"long integer color value\">long integer color value</link> consisting of red, green, and blue components."
+msgstr "Връща <link href=\"text/sbasic/shared/00000003.xhp#farbcodes\" name=\"цветова стойност от тип long integer\">цветова стойност от тип long integer</link>, съдържаща червен, зелен и син компонент."
-#: 03103600.xhp
+#: 03010305.xhp
msgctxt ""
-"03103600.xhp\n"
-"hd_id3153825\n"
+"03010305.xhp\n"
+"hd_id3147229\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03103600.xhp
+#: 03010305.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3155341\n"
+"03010305.xhp\n"
+"par_id3155132\n"
"4\n"
"help.text"
-msgid "TypeName (Variable)VarType (Variable)"
-msgstr "TypeName (Variable); VarType (Variable)"
+msgid "RGB (Red, Green, Blue)"
+msgstr "RGB (Red, Green, Blue – червено, зелено, синьо)"
-#: 03103600.xhp
+#: 03010305.xhp
msgctxt ""
-"03103600.xhp\n"
-"hd_id3145610\n"
+"03010305.xhp\n"
+"hd_id3156442\n"
"5\n"
"help.text"
msgid "Return value:"
msgstr "Връщана стойност:"
-#: 03103600.xhp
+#: 03010305.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3148947\n"
+"03010305.xhp\n"
+"par_id3159153\n"
"6\n"
"help.text"
-msgid "String; Integer"
-msgstr "String; Integer"
+msgid "Long"
+msgstr "Long"
-#: 03103600.xhp
+#: 03010305.xhp
msgctxt ""
-"03103600.xhp\n"
-"hd_id3146795\n"
+"03010305.xhp\n"
+"hd_id3154013\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "Parameter:"
+msgstr "Параметър:"
-#: 03103600.xhp
+#: 03010305.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3148664\n"
+"03010305.xhp\n"
+"par_id3152597\n"
"8\n"
"help.text"
-msgid "<emph>Variable:</emph> The variable that you want to determine the type of. You can use the following values:"
-msgstr "<emph>Variable:</emph> променливата, чийто тип да бъде определен. Може да използвате следните стойности:"
+msgid "<emph>Red</emph>: Any integer expression that represents the red component (0-255) of the composite color."
+msgstr "<emph>Red</emph>: целочислен израз, представящ червения компонент (0-255) на съставния цвят."
-#: 03103600.xhp
+#: 03010305.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3145171\n"
+"03010305.xhp\n"
+"par_id3146974\n"
"9\n"
"help.text"
-msgid "key word"
-msgstr "Ключова дума"
+msgid "<emph>Green</emph>: Any integer expression that represents the green component (0-255) of the composite color."
+msgstr "<emph>Green</emph>: целочислен израз, представящ зеления компонент (0-255) на съставния цвят."
-#: 03103600.xhp
+#: 03010305.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3156212\n"
+"03010305.xhp\n"
+"par_id3151113\n"
"10\n"
"help.text"
-msgid "VarType"
-msgstr "VarType"
+msgid "<emph>Blue</emph>: Any integer expression that represents the blue component (0-255) of the composite color."
+msgstr "<emph>Blue</emph>: целочислен израз, представящ синия компонент (0-255) на съставния цвят."
-#: 03103600.xhp
+#: 03010305.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3154684\n"
+"03010305.xhp\n"
+"hd_id3147435\n"
"11\n"
"help.text"
-msgid "Variable type"
-msgstr "Тип на променливата"
-
-#: 03103600.xhp
-msgctxt ""
-"03103600.xhp\n"
-"par_id3151041\n"
-"12\n"
-"help.text"
-msgid "Boolean"
-msgstr "Boolean"
-
-#: 03103600.xhp
-msgctxt ""
-"03103600.xhp\n"
-"par_id3153367\n"
-"13\n"
-"help.text"
-msgid "11"
-msgstr "11"
-
-#: 03103600.xhp
-msgctxt ""
-"03103600.xhp\n"
-"par_id3148645\n"
-"14\n"
-"help.text"
-msgid "Boolean variable"
-msgstr "булева"
+msgid "Example:"
+msgstr "Пример:"
-#: 03103600.xhp
+#: 03010305.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3153138\n"
+"03010305.xhp\n"
+"par_id3145647\n"
"15\n"
"help.text"
-msgid "Date"
-msgstr "Date"
+msgid "MsgBox \"The color \" & lVar & \" consists of:\" & Chr(13) &_"
+msgstr "MsgBox \"Цветът \" & lVar & \" съдържа:\" & Chr(13) &_"
-#: 03103600.xhp
+#: 03010305.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3153363\n"
+"03010305.xhp\n"
+"par_id3154491\n"
"16\n"
"help.text"
-msgid "7"
-msgstr "7"
+msgid "\"red= \" & red(lVar) & Chr(13)&_"
+msgstr "\"червено= \" & Red(lVar) & Chr(13)&_"
-#: 03103600.xhp
+#: 03010305.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3155411\n"
+"03010305.xhp\n"
+"par_id3149401\n"
"17\n"
"help.text"
-msgid "Date variable"
-msgstr "дата"
+msgid "\"green= \" & green(lVar) & Chr(13)&_"
+msgstr "\"зелено= \" & Green(lVar) & Chr(13)&_"
-#: 03103600.xhp
+#: 03010305.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3146975\n"
+"03010305.xhp\n"
+"par_id3150716\n"
"18\n"
"help.text"
-msgid "Double"
-msgstr "Double"
+msgid "\"blue= \" & blue(lVar) & Chr(13) , 64,\"colors\""
+msgstr "\"синьо= \" & Blue(lVar) & Chr(13), 64, \"Цветове\""
-#: 03103600.xhp
+#: 03020000.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3150486\n"
-"19\n"
+"03020000.xhp\n"
+"tit\n"
"help.text"
-msgid "5"
-msgstr "5"
+msgid "File I/O Functions"
+msgstr "Входно-изходни функции за файлове"
-#: 03103600.xhp
+#: 03020000.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3148616\n"
-"20\n"
+"03020000.xhp\n"
+"hd_id3156344\n"
+"1\n"
"help.text"
-msgid "Double floating point variable"
-msgstr "плаваща запетая, двойна точност"
+msgid "<link href=\"text/sbasic/shared/03020000.xhp\" name=\"File I/O Functions\">File I/O Functions</link>"
+msgstr "<link href=\"text/sbasic/shared/03020000.xhp\" name=\"Входно-изходни функции за файлове\">Входно-изходни функции за файлове</link>"
-#: 03103600.xhp
+#: 03020000.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3148457\n"
-"21\n"
+"03020000.xhp\n"
+"par_id3153360\n"
+"2\n"
"help.text"
-msgid "Integer"
-msgstr "Integer"
+msgid "Use File I/O functions to create and manage user-defined (data) files."
+msgstr "Входно-изходните функции за файлове служат за създаване и управление на дефинирани от потребителя файлове с данни."
-#: 03103600.xhp
+#: 03020000.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3145647\n"
-"22\n"
+"03020000.xhp\n"
+"par_id3150398\n"
+"3\n"
"help.text"
-msgid "2"
-msgstr "2"
+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 "Чрез тях можете да създавате файлове с произволен достъп, от които могат да се зареждат избрани записи чрез указване на поредния им номер. С файловите входно-изходни функции можете също да получавате информация за размери, пътища и дати на създаване на файлове и директории."
-#: 03103600.xhp
+#: 03020100.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3154490\n"
-"23\n"
+"03020100.xhp\n"
+"tit\n"
"help.text"
-msgid "Integer variable"
-msgstr "целочислена"
+msgid "Opening and Closing Files"
+msgstr "Отваряне и затваряне на файлове"
-#: 03103600.xhp
+#: 03020100.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3149960\n"
-"24\n"
+"03020100.xhp\n"
+"hd_id3152924\n"
+"1\n"
"help.text"
-msgid "Long"
-msgstr "Long"
+msgid "<link href=\"text/sbasic/shared/03020100.xhp\" name=\"Opening and Closing Files\">Opening and Closing Files</link>"
+msgstr "<link href=\"text/sbasic/shared/03020100.xhp\" name=\"Отваряне и затваряне на файлове\">Отваряне и затваряне на файлове</link>"
-#: 03103600.xhp
+#: 03020101.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3154513\n"
-"25\n"
+"03020101.xhp\n"
+"tit\n"
"help.text"
-msgid "3"
-msgstr "3"
+msgid "Close Statement [Runtime]"
+msgstr "Оператор Close [динамичен]"
-#: 03103600.xhp
+#: 03020101.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3151318\n"
-"26\n"
+"03020101.xhp\n"
+"bm_id3157896\n"
"help.text"
-msgid "Long integer variable"
-msgstr "дълга целочислена"
+msgid "<bookmark_value>Close statement</bookmark_value>"
+msgstr "<bookmark_value>Close, оператор</bookmark_value>"
-#: 03103600.xhp
+#: 03020101.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3146972\n"
-"27\n"
+"03020101.xhp\n"
+"hd_id3157896\n"
+"1\n"
"help.text"
-msgid "Object"
-msgstr "Обект"
+msgid "<link href=\"text/sbasic/shared/03020101.xhp\" name=\"Close Statement [Runtime]\">Close Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020101.xhp\" name=\"Оператор Close [динамичен]\">Оператор Close [динамичен]</link>"
-#: 03103600.xhp
+#: 03020101.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3154482\n"
-"28\n"
+"03020101.xhp\n"
+"par_id3147573\n"
+"2\n"
"help.text"
-msgid "9"
-msgstr "9"
+msgid "Closes a specified file that was opened with the Open statement."
+msgstr "Затваря зададен файл, който е бил отворен с оператора Open."
-#: 03103600.xhp
+#: 03020101.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3150323\n"
-"29\n"
+"03020101.xhp\n"
+"hd_id3156344\n"
+"3\n"
"help.text"
-msgid "Object variable"
-msgstr "обектна"
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 03103600.xhp
+#: 03020101.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3148405\n"
-"30\n"
+"03020101.xhp\n"
+"par_id3147265\n"
+"4\n"
"help.text"
-msgid "Single"
-msgstr "Single"
+msgid "Close FileNumber As Integer[, FileNumber2 As Integer[,...]]"
+msgstr "Close FileNumber As Integer[, FileNumber2 As Integer[,...]]"
-#: 03103600.xhp
+#: 03020101.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3149020\n"
-"31\n"
+"03020101.xhp\n"
+"hd_id3153379\n"
+"5\n"
"help.text"
-msgid "4"
-msgstr "4"
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 03103600.xhp
+#: 03020101.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3147341\n"
-"32\n"
+"03020101.xhp\n"
+"par_id3150791\n"
+"6\n"
"help.text"
-msgid "Single floating-point variable"
-msgstr "плаваща запетая, единична точност"
+msgid "<emph>FileNumber:</emph> Any integer expression that specifies the number of the data channel that was opened with the <emph>Open</emph> statement."
+msgstr "<emph>FileNumber:</emph> целочислен израз, който задава номера на канала за данни, отворен с оператора <emph>Open</emph>."
-#: 03103600.xhp
+#: 03020101.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3155901\n"
-"33\n"
+"03020101.xhp\n"
+"hd_id3153192\n"
+"7\n"
"help.text"
-msgid "String"
-msgstr "String"
+msgid "Example:"
+msgstr "Пример:"
-#: 03103600.xhp
+#: 03020101.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3155960\n"
-"34\n"
+"03020101.xhp\n"
+"par_id3153727\n"
+"16\n"
"help.text"
-msgid "8"
-msgstr "8"
+msgid "Print #iNumber, \"First line of text\""
+msgstr "Print #iNumber, \"Първият ред с текст\""
-#: 03103600.xhp
+#: 03020101.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3146313\n"
-"35\n"
+"03020101.xhp\n"
+"par_id3147350\n"
+"17\n"
"help.text"
-msgid "String variable"
-msgstr "низ"
+msgid "Print #iNumber, \"Another line of text\""
+msgstr "Print #iNumber, \"Още един ред с текст\""
-#: 03103600.xhp
+#: 03020102.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3145149\n"
-"36\n"
+"03020102.xhp\n"
+"tit\n"
"help.text"
-msgid "Variant"
-msgstr "Variant"
+msgid "FreeFile Function[Runtime]"
+msgstr "Функция FreeFile [динамична]"
-#: 03103600.xhp
+#: 03020102.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3154021\n"
-"37\n"
+"03020102.xhp\n"
+"bm_id3150400\n"
"help.text"
-msgid "12"
-msgstr "12"
+msgid "<bookmark_value>FreeFile function</bookmark_value>"
+msgstr "<bookmark_value>FreeFile, функция</bookmark_value>"
-#: 03103600.xhp
+#: 03020102.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3145789\n"
-"38\n"
+"03020102.xhp\n"
+"hd_id3150400\n"
+"1\n"
"help.text"
-msgid "Variant variable (can contain all types specified by the definition)"
-msgstr "вариантна (може да съдържа произволен тип според привоената стойност)"
+msgid "<link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function[Runtime]\">FreeFile Function[Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020102.xhp\" name=\"Функция FreeFile [динамична]\">Функция FreeFile [динамична]</link>"
-#: 03103600.xhp
+#: 03020102.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3148630\n"
-"39\n"
+"03020102.xhp\n"
+"par_id3154366\n"
+"2\n"
"help.text"
-msgid "Empty"
-msgstr "Празно"
+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 "Връща следващия достъпен файлов номер за отваряне на файл. Използвайте тази функция, за да отворите файл с файлов номер, който не е в употреба от друг отворен в момента файл."
-#: 03103600.xhp
+#: 03020102.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3152584\n"
-"40\n"
+"03020102.xhp\n"
+"hd_id3150769\n"
+"3\n"
"help.text"
-msgid "0"
-msgstr "0"
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 03103600.xhp
+#: 03020102.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3151278\n"
-"41\n"
+"03020102.xhp\n"
+"hd_id3151042\n"
+"5\n"
"help.text"
-msgid "Variable is not initialized"
-msgstr "не е инициализирана"
+msgid "Return value:"
+msgstr "Връщана стойност:"
-#: 03103600.xhp
+#: 03020102.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3154576\n"
-"42\n"
+"03020102.xhp\n"
+"par_id3150440\n"
+"6\n"
"help.text"
-msgid "Null"
-msgstr "Null"
+msgid "Integer"
+msgstr "Integer"
-#: 03103600.xhp
+#: 03020102.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3166424\n"
-"43\n"
+"03020102.xhp\n"
+"hd_id3148576\n"
+"7\n"
"help.text"
-msgid "1"
-msgstr "1"
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 03103600.xhp
+#: 03020102.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3145131\n"
-"44\n"
+"03020102.xhp\n"
+"par_id3155854\n"
+"8\n"
"help.text"
-msgid "No valid data"
-msgstr "няма валидни данни"
+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 "Тази функция може да бъде използвана само непосредствено преди оператор Open. FreeFile връща следващия достъпен файлов номер, но не го резервира."
-#: 03103600.xhp
+#: 03020102.xhp
msgctxt ""
-"03103600.xhp\n"
-"hd_id3149338\n"
-"45\n"
+"03020102.xhp\n"
+"hd_id3159153\n"
+"9\n"
"help.text"
msgid "Example:"
msgstr "Пример:"
-#: 03103600.xhp
+#: 03020102.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3148817\n"
-"58\n"
+"03020102.xhp\n"
+"par_id3155416\n"
+"18\n"
"help.text"
-msgid "TypeName(lVar) & \" \" & VarType(lVar),0,\"Some types In $[officename] Basic\""
-msgstr "TypeName(lVar) & \" \" & VarType(lVar), 0, \"Някои типове в $[officename] Basic\""
+msgid "Print #iNumber, \"First line of text\""
+msgstr "Print #iNumber, \"Първият ред с текст\""
-#: 03030201.xhp
+#: 03020102.xhp
msgctxt ""
-"03030201.xhp\n"
+"03020102.xhp\n"
+"par_id3153416\n"
+"19\n"
+"help.text"
+msgid "Print #iNumber, \"Another line of text\""
+msgstr "Print #iNumber, \"Още един ред с текст\""
+
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
"tit\n"
"help.text"
-msgid "Hour Function [Runtime]"
-msgstr "Функция Hour [динамична]"
+msgid "Open Statement[Runtime]"
+msgstr "Оператор Open [динамичен]"
-#: 03030201.xhp
+#: 03020103.xhp
msgctxt ""
-"03030201.xhp\n"
-"bm_id3156042\n"
+"03020103.xhp\n"
+"bm_id3150791\n"
"help.text"
-msgid "<bookmark_value>Hour function</bookmark_value>"
-msgstr "<bookmark_value>Hour, функция</bookmark_value>"
+msgid "<bookmark_value>Open statement</bookmark_value>"
+msgstr "<bookmark_value>Open, оператор</bookmark_value>"
-#: 03030201.xhp
+#: 03020103.xhp
msgctxt ""
-"03030201.xhp\n"
-"hd_id3156042\n"
+"03020103.xhp\n"
+"hd_id3150791\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03030201.xhp\" name=\"Hour Function [Runtime]\">Hour Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03030201.xhp\" name=\"Функция Hour [динамична]\">Функция Hour [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open Statement[Runtime]\">Open Statement[Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020103.xhp\" name=\"Оператор Open [динамичен]\">Оператор Open [динамичен]</link>"
-#: 03030201.xhp
+#: 03020103.xhp
msgctxt ""
-"03030201.xhp\n"
-"par_id3149346\n"
+"03020103.xhp\n"
+"par_id3150769\n"
"2\n"
"help.text"
-msgid "Returns the hour from a time value that is generated by the TimeSerial or the TimeValue function."
-msgstr "Връща само часа от стойност за точен час, генерирана от функцията TimeSerial или TimeValue."
+msgid "Opens a data channel."
+msgstr "Отваря канал за данни."
-#: 03030201.xhp
+#: 03020103.xhp
msgctxt ""
-"03030201.xhp\n"
-"hd_id3147574\n"
+"03020103.xhp\n"
+"hd_id3147230\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03030201.xhp
+#: 03020103.xhp
msgctxt ""
-"03030201.xhp\n"
-"par_id3147264\n"
+"03020103.xhp\n"
+"par_id3154124\n"
"4\n"
"help.text"
-msgid "Hour (Number)"
-msgstr "Hour (Number)"
+msgid "Open FileName As String [For Mode] [Access IOMode] [Protected] As [#]FileNumber As Integer [Len = DatasetLength]"
+msgstr "Open FileName As String [For Mode] [Access IOMode] [Protected] As [#]FileNumber As Integer [Len = DatasetLength]"
-#: 03030201.xhp
+#: 03020103.xhp
msgctxt ""
-"03030201.xhp\n"
-"hd_id3145069\n"
+"03020103.xhp\n"
+"hd_id3156280\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Връщана стойност:"
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 03030201.xhp
+#: 03020103.xhp
msgctxt ""
-"03030201.xhp\n"
-"par_id3149670\n"
+"03020103.xhp\n"
+"par_id3155132\n"
"6\n"
"help.text"
-msgid "Integer"
-msgstr "Integer"
+msgid "<emph>FileName: </emph>Name and path of the file that you wan 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 "<emph>FileName:</emph> име и път на файла, който желаете да отворите. Ако се опитате да четете от несъществуващ файл (Access = Read), се показва съобщение за грешка. Ако се опитате да записвате в несъществуващ файл (Access = Write), се създава нов файл."
-#: 03030201.xhp
+#: 03020103.xhp
msgctxt ""
-"03030201.xhp\n"
-"hd_id3150359\n"
+"03020103.xhp\n"
+"par_id3149262\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "<emph>Mode:</emph> Keyword that specifies the file mode. Valid values: Append (append to sequential file), Binary (data can be accessed by bytes using Get and Put), Input (opens data channel for reading), Output (opens data channel for writing), and Random (edits relative files)."
+msgstr "<emph>Mode:</emph> ключова дума, указваща режима на работа с файла. Валидните стойности са: Append (добавяне към файл с последователен достъп), Binary (данните могат да се четат и записват на ниво байт с Get и Put), Input (отваря канал за данни за четене), Output (отваря канал за данни за записване) и Random (за редактиране на файлове с произволен достъп)."
-#: 03030201.xhp
+#: 03020103.xhp
msgctxt ""
-"03030201.xhp\n"
-"par_id3154366\n"
+"03020103.xhp\n"
+"par_id3154014\n"
"8\n"
"help.text"
-msgid "<emph>Number:</emph> Numeric expression that contains the serial time value that is used to return the hour value."
-msgstr "<emph>Number:</emph> числов израз – серийна стойност за час, въз основа на която се изчислява стойността на часовете."
+msgid "<emph>IOMode:</emph> Keyword that defines the access type. Valid values: Read (read-only), Write (write-only), Read Write (both)."
+msgstr "<emph>IOMode:</emph> ключова дума, указваща вида на достъпа. Валидните стойности са: Read (само за четене), Write (само за запис), Read Write (и двете)."
-#: 03030201.xhp
+#: 03020103.xhp
msgctxt ""
-"03030201.xhp\n"
-"par_id3154909\n"
+"03020103.xhp\n"
+"par_id3150011\n"
"9\n"
"help.text"
-msgid "This function is the opposite of the <emph>TimeSerial</emph> function. It returns an integer value that represents the hour from a time value that is generated by the <emph>TimeSerial</emph> or the <emph>TimeValue </emph>function. For example, the expression"
-msgstr "Тази функция е противоположна на <emph>TimeSerial</emph>. Тя връща целочислена стойност, представяща само часовете от стойност за час, генерирана от функцията <emph>TimeSerial</emph> или<emph>TimeValue</emph>. Например изразът"
+msgid "<emph>Protected:</emph> Keyword that defines the security status of a file after opening. Valid values: Shared (file may be opened by other applications), Lock Read (file is protected against reading), Lock Write (file is protected against writing), Lock Read Write (denies file access)."
+msgstr "<emph>Protected:</emph> ключова дума за защита на файла след отварянето му. Валидните стойности са: Shared (файлът може да бъде отварян от други приложения), Lock Read (файл е защитен срещу четене), Lock Write (файлът е защитен срещу записване), Lock Read Write (дотъпът до файла се отказва)."
-#: 03030201.xhp
+#: 03020103.xhp
msgctxt ""
-"03030201.xhp\n"
-"par_id3163798\n"
+"03020103.xhp\n"
+"par_id3153190\n"
"10\n"
"help.text"
-msgid "Print Hour(TimeSerial(12,30,41))"
-msgstr "Print Hour(TimeSerial(12,30,41))"
+msgid "<emph>FileNumber:</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 "<emph>FileNumber:</emph> целочислен израз със стойност от 0 до 511, представляваща номер на свободен канал за данни. Впоследствие можете да изпращате команди към този канал за данни, за да работите с файла. Файловият номер трябва да бъде определен с функцията FreeFile непосредствено преди оператора Open."
-#: 03030201.xhp
+#: 03020103.xhp
msgctxt ""
-"03030201.xhp\n"
-"par_id3155132\n"
+"03020103.xhp\n"
+"par_id3151115\n"
"11\n"
"help.text"
-msgid "returns the value 12."
-msgstr "връща стойността 12."
+msgid "<emph>DatasetLength:</emph> For random access files, set the length of the records."
+msgstr "<emph>DatasetLength:</emph> Задава дължината на записите за файлове с произволен достъп."
-#: 03030201.xhp
+#: 03020103.xhp
msgctxt ""
-"03030201.xhp\n"
-"hd_id3147348\n"
+"03020103.xhp\n"
+"par_id3153418\n"
"12\n"
"help.text"
-msgid "Example:"
-msgstr "Примери:"
+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 "За да променяте съдържанието на файл, той трябва да е отворен с оператора Open. Ако се опитате да отворите файл, който вече е отворен, се показва съобщение за грешка."
-#: 03030201.xhp
+#: 03020103.xhp
msgctxt ""
-"03030201.xhp\n"
-"par_id3146985\n"
+"03020103.xhp\n"
+"hd_id3149123\n"
"13\n"
"help.text"
-msgid "Sub ExampleHour"
-msgstr "Sub ExampleHour"
+msgid "Example:"
+msgstr "Пример:"
-#: 03030201.xhp
+#: 03020103.xhp
msgctxt ""
-"03030201.xhp\n"
-"par_id3156441\n"
-"14\n"
+"03020103.xhp\n"
+"par_id3154705\n"
+"22\n"
"help.text"
-msgid "Print \"The current hour is \" & Hour( Now )"
-msgstr "Print \"Текущият час е \" & Hour(Now)"
+msgid "Print #iNumber, \"This is a line of text\""
+msgstr "Print #iNumber, \"Това е ред с текст\""
-#: 03030201.xhp
+#: 03020103.xhp
msgctxt ""
-"03030201.xhp\n"
-"par_id3153145\n"
-"15\n"
+"03020103.xhp\n"
+"par_id3146916\n"
+"23\n"
"help.text"
-msgid "End Sub"
-msgstr "End Sub"
+msgid "Print #iNumber, \"This is another line of text\""
+msgstr "Print #iNumber, \"Това е още един ред с текст\""
-#: 03090404.xhp
+#: 03020104.xhp
msgctxt ""
-"03090404.xhp\n"
+"03020104.xhp\n"
"tit\n"
"help.text"
-msgid "End Statement [Runtime]"
-msgstr "Оператор End [динамичен]"
+msgid "Reset Statement [Runtime]"
+msgstr "Оператор Reset [динамичен]"
-#: 03090404.xhp
+#: 03020104.xhp
msgctxt ""
-"03090404.xhp\n"
-"bm_id3150771\n"
+"03020104.xhp\n"
+"bm_id3154141\n"
"help.text"
-msgid "<bookmark_value>End statement</bookmark_value>"
-msgstr "<bookmark_value>End, оператор</bookmark_value>"
+msgid "<bookmark_value>Reset statement</bookmark_value>"
+msgstr "<bookmark_value>Reset, оператор</bookmark_value>"
-#: 03090404.xhp
+#: 03020104.xhp
msgctxt ""
-"03090404.xhp\n"
-"hd_id3150771\n"
+"03020104.xhp\n"
+"hd_id3154141\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090404.xhp\" name=\"End Statement [Runtime]\">End Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090404.xhp\" name=\"Оператор End [динамичен]\">Оператор End [динамичен]</link>"
+msgid "<link href=\"text/sbasic/shared/03020104.xhp\">Reset Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020104.xhp\">Оператор Reset [динамичен]</link>"
-#: 03090404.xhp
+#: 03020104.xhp
msgctxt ""
-"03090404.xhp\n"
-"par_id3153126\n"
+"03020104.xhp\n"
+"par_id3156423\n"
"2\n"
"help.text"
-msgid "Ends a procedure or block."
-msgstr "Завършва процедура или блок."
+msgid "Closes all open files and writes the contents of all file buffers to the harddisk."
+msgstr "Затваря всички отворени файлове и записва съдържанията на всички файлови буфери върху твърдия диск."
-#: 03090404.xhp
+#: 03020104.xhp
msgctxt ""
-"03090404.xhp\n"
-"hd_id3147264\n"
+"03020104.xhp\n"
+"hd_id3154124\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03090404.xhp
-msgctxt ""
-"03090404.xhp\n"
-"par_id3148552\n"
-"4\n"
-"help.text"
-msgid "End, End Function, End If, End Select, End Sub"
-msgstr "End, End Function, End If, End Select, End Sub"
-
-#: 03090404.xhp
+#: 03020104.xhp
msgctxt ""
-"03090404.xhp\n"
-"hd_id3149456\n"
+"03020104.xhp\n"
+"hd_id3161831\n"
"5\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
-
-#: 03090404.xhp
-msgctxt ""
-"03090404.xhp\n"
-"par_id3150398\n"
-"6\n"
-"help.text"
-msgid "Use the End statement as follows:"
-msgstr "Използвайте оператора End по следния начин:"
+msgid "Example:"
+msgstr "Пример:"
-#: 03090404.xhp
+#: 03020104.xhp
msgctxt ""
-"03090404.xhp\n"
-"hd_id3154366\n"
-"7\n"
+"03020104.xhp\n"
+"par_id3148455\n"
+"47\n"
"help.text"
-msgid "Statement"
-msgstr "Оператор"
+msgid "Print #iNumber, \"This is a new line of text\""
+msgstr "Print #iNumber, \"Това е нов ред с текст\""
-#: 03090404.xhp
+#: 03020104.xhp
msgctxt ""
-"03090404.xhp\n"
-"par_id3151043\n"
-"8\n"
+"03020104.xhp\n"
+"par_id3163805\n"
+"62\n"
"help.text"
-msgid "End: Is not required, but can be entered anywhere within a procedure to end the program execution."
-msgstr "End: не е задължително, но може да бъде поставен в подпрограма, за да прекрати изпълнението на програмата."
+msgid "MsgBox \"All files will be closed\",0,\"Error\""
+msgstr "MsgBox \"Всички файлове ще бъдат затворени\", 0, \"Грешка\""
-#: 03090404.xhp
+#: 03020200.xhp
msgctxt ""
-"03090404.xhp\n"
-"par_id3145171\n"
-"9\n"
+"03020200.xhp\n"
+"tit\n"
"help.text"
-msgid "End Function: Ends a <emph>Function</emph> statement."
-msgstr "End Function: завършва оператор <emph>Function</emph>."
+msgid "File Input/Output Functions"
+msgstr "Входно-изходни функции за файлове"
-#: 03090404.xhp
+#: 03020200.xhp
msgctxt ""
-"03090404.xhp\n"
-"par_id3153192\n"
-"10\n"
+"03020200.xhp\n"
+"hd_id3150791\n"
+"1\n"
"help.text"
-msgid "End If: Marks the end of a <emph>If...Then...Else</emph> block."
-msgstr "End If: отбелязва края на блок <emph>If…Then…Else</emph>."
+msgid "<link href=\"text/sbasic/shared/03020200.xhp\" name=\"File Input/Output Functions\">File Input/Output Functions</link>"
+msgstr "<link href=\"text/sbasic/shared/03020200.xhp\" name=\"Входно-изходни функции за файлове\">Входно-изходни функции за файлове</link>"
-#: 03090404.xhp
+#: 03020201.xhp
msgctxt ""
-"03090404.xhp\n"
-"par_id3148451\n"
-"11\n"
+"03020201.xhp\n"
+"tit\n"
"help.text"
-msgid "End Select: Marks the end of a <emph>Select Case</emph> block."
-msgstr "End Select: отбелязва края на блок <emph>Select Case</emph>."
+msgid "Get Statement [Runtime]"
+msgstr "Оператор Get [динамичен]"
-#: 03090404.xhp
+#: 03020201.xhp
msgctxt ""
-"03090404.xhp\n"
-"par_id3155131\n"
-"12\n"
+"03020201.xhp\n"
+"bm_id3154927\n"
"help.text"
-msgid "End Sub: Ends a <emph>Sub</emph> statement."
-msgstr "End Sub: завършва оператор <emph>Sub</emph>."
+msgid "<bookmark_value>Get statement</bookmark_value>"
+msgstr "<bookmark_value>Get, оператор</bookmark_value>"
-#: 03090404.xhp
+#: 03020201.xhp
msgctxt ""
-"03090404.xhp\n"
-"hd_id3146120\n"
-"13\n"
+"03020201.xhp\n"
+"hd_id3154927\n"
+"1\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "<link href=\"text/sbasic/shared/03020201.xhp\">Get Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020201.xhp\">Оператор Get [динамичен]</link>"
-#: 03090404.xhp
+#: 03020201.xhp
msgctxt ""
-"03090404.xhp\n"
-"par_id3152887\n"
-"19\n"
+"03020201.xhp\n"
+"par_id3145069\n"
+"2\n"
"help.text"
-msgid "Print \"Number from 1 to 5\""
-msgstr "Print \"Число от 1 до 5\""
+msgid "Reads a record from a relative file, or a sequence of bytes from a binary file, into a variable."
+msgstr "Прочита в променлива запис от файл с произволен достъп или последователност от байтове от двоичен файл."
-#: 03090404.xhp
+#: 03020201.xhp
msgctxt ""
-"03090404.xhp\n"
-"par_id3148618\n"
-"21\n"
+"03020201.xhp\n"
+"par_id3154346\n"
+"3\n"
"help.text"
-msgid "Print \"Number from 6 to 8\""
-msgstr "Print \"Число от 6 до 8\""
+msgid "See also: <link href=\"text/sbasic/shared/03020204.xhp\" name=\"PUT\"><item type=\"literal\">PUT</item></link> Statement"
+msgstr "Виж също: оператор <link href=\"text/sbasic/shared/03020204.xhp\" name=\"PUT\"><item type=\"literal\">PUT</item></link>"
-#: 03090404.xhp
+#: 03020201.xhp
msgctxt ""
-"03090404.xhp\n"
-"par_id3147436\n"
-"23\n"
+"03020201.xhp\n"
+"hd_id3150358\n"
+"4\n"
"help.text"
-msgid "Print \"Greater than 8\""
-msgstr "Print \"По-голямо от 8\""
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 03090404.xhp
+#: 03020201.xhp
msgctxt ""
-"03090404.xhp\n"
-"par_id3150418\n"
-"25\n"
+"03020201.xhp\n"
+"par_id3150792\n"
+"5\n"
"help.text"
-msgid "Print \"Outside range 1 to 10\""
-msgstr "Print \"Извън диапазона от 1 до 10\""
+msgid "Get [#] FileNumber As Integer, [Position], Variable"
+msgstr "Get [#] FileNumber As Integer, [Position], Variable"
-#: 03104400.xhp
+#: 03020201.xhp
msgctxt ""
-"03104400.xhp\n"
-"tit\n"
+"03020201.xhp\n"
+"hd_id3154138\n"
+"6\n"
"help.text"
-msgid "HasUnoInterfaces Function [Runtime]"
-msgstr "Функция HasUnoInterfaces [динамична]"
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 03104400.xhp
+#: 03020201.xhp
msgctxt ""
-"03104400.xhp\n"
-"bm_id3149987\n"
+"03020201.xhp\n"
+"par_id3150448\n"
+"7\n"
"help.text"
-msgid "<bookmark_value>HasUnoInterfaces function</bookmark_value>"
-msgstr "<bookmark_value>HasUnoInterfaces, функция</bookmark_value>"
+msgid "<emph>FileNumber:</emph> Any integer expression that determines the file number."
+msgstr "<emph>FileNumber:</emph> целочислен израз, който определя номера на файла."
-#: 03104400.xhp
+#: 03020201.xhp
msgctxt ""
-"03104400.xhp\n"
-"hd_id3149987\n"
-"1\n"
+"03020201.xhp\n"
+"par_id3154684\n"
+"8\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03104400.xhp\" name=\"HasUnoInterfaces Function [Runtime]\">HasUnoInterfaces Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03104400.xhp\" name=\"Функция HasUnoInterfaces [динамична]\">Функция HasUnoInterfaces [динамична]</link>"
+msgid "<emph>Position:</emph> For files opened in Random mode, <emph>Position</emph> is the number of the record that you want to read."
+msgstr "<emph>Position:</emph> за файлове, отворени в режим Random, <emph>Position</emph> е номерът на записа, който искате да прочетете."
-#: 03104400.xhp
+#: 03020201.xhp
msgctxt ""
-"03104400.xhp\n"
-"par_id3151262\n"
-"2\n"
+"03020201.xhp\n"
+"par_id3153768\n"
+"9\n"
"help.text"
-msgid "Tests if a Basic Uno object supports certain Uno interfaces."
-msgstr "Проверява дали Uno обект на Basic съдържа определени интерфейси на Uno."
+msgid "For files opened in Binary mode, <emph>Position</emph> is the byte position in the file where the reading starts."
+msgstr "За файлове, отворени в режим Binary, <emph>Position</emph> е позицията във файла на байта, от който започва четенето."
-#: 03104400.xhp
+#: 03020201.xhp
msgctxt ""
-"03104400.xhp\n"
-"par_id3154232\n"
-"3\n"
+"03020201.xhp\n"
+"par_id3147319\n"
+"10\n"
"help.text"
-msgid "Returns True, if <emph>all</emph> stated Uno interfaces are supported, otherwise False is returned."
-msgstr "Връща True, ако се поддържат <emph>всички</emph> заявени интерфейси на Uno, и False в противен случай."
+msgid "If <emph>Position</emph> is omitted, the current position or the current data record of the file is used."
+msgstr "Ако параметърът <emph>Position</emph> бъце пропуснат, ще се използва текущата позиция или текущият запис от файла."
-#: 03104400.xhp
+#: 03020201.xhp
msgctxt ""
-"03104400.xhp\n"
-"hd_id3150040\n"
-"4\n"
+"03020201.xhp\n"
+"par_id3149484\n"
+"11\n"
"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
+msgid "Variable: Name of the variable to be read. With the exception of object variables, you can use any variable type."
+msgstr "<emph>Variable</emph>: име на променливата, чиято стойност ще бъде прочетена. Можете да изберете всякакъв тип прпменлива освен обект."
-#: 03104400.xhp
+#: 03020201.xhp
msgctxt ""
-"03104400.xhp\n"
-"par_id3155555\n"
-"5\n"
+"03020201.xhp\n"
+"hd_id3153144\n"
+"12\n"
"help.text"
-msgid "HasUnoInterfaces( oTest, Uno-Interface-Name 1 [, Uno-Interface-Name 2, ...])"
-msgstr "HasUnoInterfaces(oTest, Uno-Interface-Name 1 [, Uno-Interface-Name 2, ...])"
+msgid "Example:"
+msgstr "Пример:"
-#: 03104400.xhp
+#: 03020201.xhp
msgctxt ""
-"03104400.xhp\n"
-"hd_id3153345\n"
-"6\n"
+"03020201.xhp\n"
+"par_id3155307\n"
+"15\n"
"help.text"
-msgid "Return value:"
-msgstr "Връщана стойност:"
+msgid "Dim sText As Variant ' Must be a variant"
+msgstr "Dim sText As Variant ' Трябва да бъде от тип Variant"
-#: 03104400.xhp
+#: 03020201.xhp
msgctxt ""
-"03104400.xhp\n"
-"par_id3148538\n"
-"7\n"
+"03020201.xhp\n"
+"par_id3149411\n"
+"21\n"
"help.text"
-msgid "Bool"
-msgstr "Bool"
+msgid "Seek #iNumber,1 ' Position at beginning"
+msgstr "Seek #iNumber, 1 ' Позиционираме в началото"
-#: 03104400.xhp
+#: 03020201.xhp
msgctxt ""
-"03104400.xhp\n"
-"hd_id3159157\n"
-"8\n"
+"03020201.xhp\n"
+"par_id3153158\n"
+"22\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "Put #iNumber,, \"This is the first line of text\" ' Fill line with text"
+msgstr "Put #iNumber,, \"Това е първият ред с текст\" ' Запълваме ред с текст"
-#: 03104400.xhp
+#: 03020201.xhp
msgctxt ""
-"03104400.xhp\n"
-"par_id3155419\n"
-"9\n"
+"03020201.xhp\n"
+"par_id3148457\n"
+"23\n"
"help.text"
-msgid "<emph>oTest:</emph> the Basic Uno object that you want to test."
-msgstr "<emph>oTest:</emph> Uno обектът на Basic, който да бъде проверен."
+msgid "Put #iNumber,, \"This is the second line of text\""
+msgstr "Put #iNumber,, \"Това е вторият ред с текст\""
-#: 03104400.xhp
+#: 03020201.xhp
msgctxt ""
-"03104400.xhp\n"
-"par_id3149236\n"
-"10\n"
+"03020201.xhp\n"
+"par_id3150715\n"
+"24\n"
"help.text"
-msgid "<emph>Uno-Interface-Name:</emph> list of Uno interface names."
-msgstr "<emph>Uno-Interface-Name:</emph> списък с имена на интерфейси на Uno."
+msgid "Put #iNumber,, \"This is the third line of text\""
+msgstr "Put #iNumber,, \"Това е третият ред с текст\""
-#: 03104400.xhp
+#: 03020201.xhp
msgctxt ""
-"03104400.xhp\n"
-"hd_id3147574\n"
-"11\n"
+"03020201.xhp\n"
+"par_id3155938\n"
+"33\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "Put #iNumber,,\"This is a new text\""
+msgstr "Put #iNumber,, \"Това е нов текст\""
-#: 03104400.xhp
+#: 03020201.xhp
msgctxt ""
-"03104400.xhp\n"
-"par_id3149580\n"
-"12\n"
+"03020201.xhp\n"
+"par_id3146916\n"
+"36\n"
"help.text"
-msgid "bHas = HasUnoInterfaces( oTest, \"com.sun.star.beans.XIntrospection\" )"
-msgstr "bHas = HasUnoInterfaces(oTest, \"com.sun.star.beans.XIntrospection\")"
+msgid "Put #iNumber,20,\"This is the text in record 20\""
+msgstr "Put #iNumber, 20, \"Това е текстът в запис 20\""
-#: 03090402.xhp
+#: 03020202.xhp
msgctxt ""
-"03090402.xhp\n"
+"03020202.xhp\n"
"tit\n"
"help.text"
-msgid "Choose Function [Runtime]"
-msgstr "Функция Choose [динамична]"
+msgid "Input# Statement [Runtime]"
+msgstr "Оператор Input# [динамичен]"
-#: 03090402.xhp
+#: 03020202.xhp
msgctxt ""
-"03090402.xhp\n"
-"bm_id3143271\n"
+"03020202.xhp\n"
+"bm_id3154908\n"
"help.text"
-msgid "<bookmark_value>Choose function</bookmark_value>"
-msgstr "<bookmark_value>Choose, функция</bookmark_value>"
+msgid "<bookmark_value>Input statement</bookmark_value>"
+msgstr "<bookmark_value>Input, оператор</bookmark_value>"
-#: 03090402.xhp
+#: 03020202.xhp
msgctxt ""
-"03090402.xhp\n"
-"hd_id3143271\n"
+"03020202.xhp\n"
+"hd_id3154908\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090402.xhp\" name=\"Choose Function [Runtime]\">Choose Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090402.xhp\" name=\"Функция Choose [динамична]\">Функция Choose [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement [Runtime]\">Input# Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020202.xhp\" name=\"Оператор Input# [динамичен]\">Оператор Input# [динамичен]</link>"
-#: 03090402.xhp
+#: 03020202.xhp
msgctxt ""
-"03090402.xhp\n"
-"par_id3149234\n"
+"03020202.xhp\n"
+"par_id3156424\n"
"2\n"
"help.text"
-msgid "Returns a selected value from a list of arguments."
-msgstr "Връща избрана стойност от списък с аргументи."
+msgid "Reads data from an open sequential file."
+msgstr "Чете данни от отворен файл с последователен достъп."
-#: 03090402.xhp
+#: 03020202.xhp
msgctxt ""
-"03090402.xhp\n"
-"hd_id3148943\n"
+"03020202.xhp\n"
+"hd_id3125863\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03090402.xhp
+#: 03020202.xhp
msgctxt ""
-"03090402.xhp\n"
-"par_id3147560\n"
+"03020202.xhp\n"
+"par_id3150440\n"
"4\n"
"help.text"
-msgid "Choose (Index, Selection1[, Selection2, ... [,Selection_n]])"
-msgstr "Choose (Index, Selection1[, Selection2, ... [,Selection_n]])"
+msgid "Input #FileNumber As Integer; var1[, var2[, var3[,...]]]"
+msgstr "Input #FileNumber As Integer; var1[, var2[, var3[,...]]]"
-#: 03090402.xhp
+#: 03020202.xhp
msgctxt ""
-"03090402.xhp\n"
-"hd_id3154346\n"
+"03020202.xhp\n"
+"hd_id3146121\n"
"5\n"
"help.text"
msgid "Parameters:"
msgstr "Параметри:"
-#: 03090402.xhp
+#: 03020202.xhp
msgctxt ""
-"03090402.xhp\n"
-"par_id3148664\n"
+"03020202.xhp\n"
+"par_id3145749\n"
"6\n"
"help.text"
-msgid "<emph>Index:</emph> A numeric expression that specifies the value to return."
-msgstr "<emph>Index:</emph> числов израз, определящ коя стойност да бъде върната."
+msgid "<emph>FileNumber:</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 "<emph>FileNumber:</emph> номерът на файла, съдържащ данните, които искате да бъдат прочетени. Файлът трябва да е отворен с оператора Open и ключовата дума INPUT."
-#: 03090402.xhp
+#: 03020202.xhp
msgctxt ""
-"03090402.xhp\n"
-"par_id3150791\n"
+"03020202.xhp\n"
+"par_id3150011\n"
"7\n"
"help.text"
-msgid "<emph>Selection1:</emph> Any expression that contains one of the possible choices."
-msgstr "<emph>Selection1:</emph> израз, съдържащ една от възможните алтернативи."
+msgid "<emph>var:</emph> A numeric or string variable that you assign the values read from the opened file to."
+msgstr "<emph>var:</emph> числова или низова променлива, на която се присвояват прочетените от файла стойности."
-#: 03090402.xhp
+#: 03020202.xhp
msgctxt ""
-"03090402.xhp\n"
-"par_id3151043\n"
+"03020202.xhp\n"
+"par_id3159153\n"
"8\n"
"help.text"
-msgid "The <emph>Choose</emph> function returns a value from the list of expressions based on the index value. If Index = 1, the function returns the first expression in the list, if index i= 2, it returns the second expression, and so on."
-msgstr "Функцията <emph>Choose</emph> връща стойност от списъка с изрази според индексната стойност. Ако Index = 1, функцията връща първия израз в списъка, Ако Index = 2, се връща вторият израз и т.н."
+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 "Операторът <emph>Input#</emph> чете числови стойности или низове от отворен файл и присвоява данните на една или няколко променливи. Числовите променливи се четат до срещане на знак за връщане на каретката (Asc=13), нов ред (Asc=10), интервал или запетая. Низовите променливи се четат до първия знак за връщане на каретката (Asc=13), нов ред (Asc=10) или запетая."
-#: 03090402.xhp
+#: 03020202.xhp
msgctxt ""
-"03090402.xhp\n"
-"par_id3153192\n"
+"03020202.xhp\n"
+"par_id3146984\n"
"9\n"
"help.text"
-msgid "If the index value is less than 1 or greater than the number of expressions listed, the function returns a Null value."
-msgstr "Ако индексната стойност е по-малка от 1 или по-голяма от броя на изброените изрази, функцията връща стойност Null."
+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 "Данните и типовете им в отворения файл трябва да следват в същия ред като променливите, подадени като параметър „var“. Ако присвоите нечислова стойност на числова променлива, „var“ получава стойност 0."
-#: 03090402.xhp
+#: 03020202.xhp
msgctxt ""
-"03090402.xhp\n"
-"par_id3156281\n"
+"03020202.xhp\n"
+"par_id3156442\n"
"10\n"
"help.text"
-msgid "The following example uses the <emph>Choose</emph> function to select a string from several strings that form a menu:"
-msgstr "В следващия пример функцията <emph>Choose</emph> е използвана за избиране на низ измежду няколко низа, за да се образува меню:"
+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 "Записи, разделени със запетая, не могат да бъдат присвоени на числова променлива. Кавичките (\") във файла се пропускат. Ако искате тези знаци да бъдат прочетени от файла, използвайте оператора <emph>Line Input#</emph>, за да четете ред по ред от чисти текстови файлове (файлове, съдържащи само печатаеми знаци)."
-#: 03090402.xhp
+#: 03020202.xhp
msgctxt ""
-"03090402.xhp\n"
-"hd_id3150439\n"
+"03020202.xhp\n"
+"par_id3147349\n"
"11\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 "Ако по време на четенето на елемент от данните бъде достигнат краят на файла, възниква грешка и процесът се прекратява."
+
+#: 03020202.xhp
+msgctxt ""
+"03020202.xhp\n"
+"hd_id3152578\n"
+"12\n"
+"help.text"
msgid "Example:"
msgstr "Пример:"
-#: 03090402.xhp
+#: 03020202.xhp
msgctxt ""
-"03090402.xhp\n"
-"par_id3156443\n"
-"20\n"
+"03020202.xhp\n"
+"par_id4144765\n"
"help.text"
-msgid "ChooseMenu = Choose(Index, \"Quick Format\", \"Save Format\", \"System Format\")"
-msgstr "ChooseMenu = Choose(Index, \"Quick Format\", \"Save Format\", \"System Format\")"
+msgid "' Write data ( which we will read later with Input ) to file"
+msgstr "' Записваме данни във файл (които после ще прочетем с Input)"
+
+#: 03020202.xhp
+msgctxt ""
+"03020202.xhp\n"
+"par_id4144766\n"
+"help.text"
+msgid "' Read data file using Input"
+msgstr "' Четене на файл с данни чрез Input"
#: 03020203.xhp
msgctxt ""
@@ -5005,3977 +9807,3906 @@ msgctxt ""
msgid "Print #iNumber, \"This is another line of text\""
msgstr "Print #iNumber, \"Това е още един ред с текст\""
-#: 03060600.xhp
+#: 03020204.xhp
msgctxt ""
-"03060600.xhp\n"
+"03020204.xhp\n"
"tit\n"
"help.text"
-msgid "Xor-Operator [Runtime]"
-msgstr "Операция Xor [динамична]"
+msgid "Put Statement [Runtime]"
+msgstr "Оператор Put [динамичен]"
-#: 03060600.xhp
+#: 03020204.xhp
msgctxt ""
-"03060600.xhp\n"
-"bm_id3156024\n"
+"03020204.xhp\n"
+"bm_id3150360\n"
"help.text"
-msgid "<bookmark_value>Xor operator (logical)</bookmark_value>"
-msgstr "<bookmark_value>Xor, логическа операция</bookmark_value>"
+msgid "<bookmark_value>Put statement</bookmark_value>"
+msgstr "<bookmark_value>Put, оператор</bookmark_value>"
-#: 03060600.xhp
+#: 03020204.xhp
msgctxt ""
-"03060600.xhp\n"
-"hd_id3156024\n"
+"03020204.xhp\n"
+"hd_id3150360\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03060600.xhp\" name=\"Xor-Operator [Runtime]\">Xor-Operator [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03060600.xhp\" name=\"Операция Xor [динамична]\">Операция Xor [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03020204.xhp\" name=\"Put Statement [Runtime]\">Put Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020204.xhp\" name=\"Оператор Put [динамичен]\">Оператор Put [динамичен]</link>"
-#: 03060600.xhp
+#: 03020204.xhp
msgctxt ""
-"03060600.xhp\n"
-"par_id3159414\n"
+"03020204.xhp\n"
+"par_id3154909\n"
"2\n"
"help.text"
-msgid "Performs a logical Exclusive-Or combination of two expressions."
-msgstr "Комбинира стойностите на два израза чрез изключващо „ИЛИ“."
+msgid "Writes a record to a relative file or a sequence of bytes to a binary file."
+msgstr "Записва запис във файл с произволен достъп или последователност от байтове в двоичен файл."
-#: 03060600.xhp
+#: 03020204.xhp
msgctxt ""
-"03060600.xhp\n"
-"hd_id3153381\n"
+"03020204.xhp\n"
+"par_id3156281\n"
"3\n"
"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
+msgid "See also: <link href=\"text/sbasic/shared/03020201.xhp\" name=\"Get\"><item type=\"literal\">Get</item></link> statement"
+msgstr "Виж също: оператор <link href=\"text/sbasic/shared/03020201.xhp\" name=\"Get\"><item type=\"literal\">Get</item></link>"
-#: 03060600.xhp
+#: 03020204.xhp
msgctxt ""
-"03060600.xhp\n"
-"par_id3150400\n"
+"03020204.xhp\n"
+"hd_id3125863\n"
"4\n"
"help.text"
-msgid "Result = Expression1 Xor Expression2"
-msgstr "Result = Expression1 Xor Expression2"
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 03060600.xhp
+#: 03020204.xhp
msgctxt ""
-"03060600.xhp\n"
-"hd_id3153968\n"
+"03020204.xhp\n"
+"par_id3155132\n"
"5\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "Put [#] FileNumber As Integer, [position], Variable"
+msgstr "Put [#] FileNumber As Integer, [position], Variable"
-#: 03060600.xhp
+#: 03020204.xhp
msgctxt ""
-"03060600.xhp\n"
-"par_id3150448\n"
+"03020204.xhp\n"
+"hd_id3153190\n"
"6\n"
"help.text"
-msgid "<emph>Result:</emph> Any numeric variable that contains the result of the combination."
-msgstr "<emph>Result:</emph> числова променлива, в която да се запази резултатът от операцията."
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 03060600.xhp
+#: 03020204.xhp
msgctxt ""
-"03060600.xhp\n"
-"par_id3125864\n"
+"03020204.xhp\n"
+"par_id3146120\n"
"7\n"
"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to combine."
-msgstr "<emph>Expression1, Expression2:</emph> изразите, чиито стойности искате да комбинирате."
+msgid "<emph>FileNumber:</emph> Any integer expression that defines the file that you want to write to."
+msgstr "<emph>FileNumber:</emph> целочислен израз, задаващ файла, в който желаете да записвате."
-#: 03060600.xhp
+#: 03020204.xhp
msgctxt ""
-"03060600.xhp\n"
-"par_id3150439\n"
+"03020204.xhp\n"
+"par_id3155411\n"
"8\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 "Изключващото „ИЛИ“ между два булеви израза дава в резултат True само ако стойностите им са различни помежду си."
+msgid "<emph>Position: </emph>For relative files (random access files), the number of the record that you want to write."
+msgstr "<emph>Position:</emph>за файлове с последователен достъп – номерът на записа, който желаете да запишете."
-#: 03060600.xhp
+#: 03020204.xhp
msgctxt ""
-"03060600.xhp\n"
-"par_id3153770\n"
+"03020204.xhp\n"
+"par_id3148576\n"
"9\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 "Побитовото изключващо „ИЛИ“ установява даден бит в единица ако съответният му бит е единица само в една от двете стойности."
+msgid "For binary files (binary access), the position of the byte in the file where you want to start writing."
+msgstr "За двоични файлове – позицията на байта, от който трябва да започне записването."
-#: 03060600.xhp
+#: 03020204.xhp
msgctxt ""
-"03060600.xhp\n"
-"hd_id3153366\n"
+"03020204.xhp\n"
+"par_id3153729\n"
"10\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "<emph>Variable:</emph> Name of the variable that you want to write to the file."
+msgstr "<emph>Variable:</emph> името на променливата, чиято стойност да бъде записана във файла."
-#: 03060600.xhp
+#: 03020204.xhp
msgctxt ""
-"03060600.xhp\n"
-"par_id3156442\n"
-"15\n"
+"03020204.xhp\n"
+"par_id3146974\n"
+"11\n"
"help.text"
-msgid "vOut = vA > vB Xor vB > vC ' returns 0"
-msgstr "vOut = vA > vB Xor vB > vC ' връща 0"
+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 "Забележка за файлове с произволен достъп: ако съдържанието на тази променлива не отговаря на дължината на записа, зададена в клаузата <emph>Len</emph> на оператора <emph>Open</emph>, пространството между новозаписания и следващия го запис се запълва със съществуващи данни от файла, в който записвате."
-#: 03060600.xhp
+#: 03020204.xhp
msgctxt ""
-"03060600.xhp\n"
-"par_id3153191\n"
+"03020204.xhp\n"
+"par_id3155855\n"
+"12\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 "Забележка за двоични файлове: съдържанието на променливите се записва в зададената позиция и файловият указател се поставя точно след последния байт. Между записите не се оставя място."
+
+#: 03020204.xhp
+msgctxt ""
+"03020204.xhp\n"
+"hd_id3154491\n"
+"13\n"
+"help.text"
+msgid "Example:"
+msgstr "Пример:"
+
+#: 03020204.xhp
+msgctxt ""
+"03020204.xhp\n"
+"par_id3154729\n"
"16\n"
"help.text"
-msgid "vOut = vB > vA Xor vB > vC ' returns -1"
-msgstr "vOut = vB > vA Xor vB > vC ' връща -1"
+msgid "Dim sText As Variant ' Must be a variant type"
+msgstr "Dim sText As Variant ' Трябва да бъде тип Variant"
-#: 03060600.xhp
+#: 03020204.xhp
msgctxt ""
-"03060600.xhp\n"
-"par_id3153144\n"
-"17\n"
+"03020204.xhp\n"
+"par_id3156278\n"
+"22\n"
"help.text"
-msgid "vOut = vA > vB Xor vB > vD ' returns -1"
-msgstr "vOut = vA > vB Xor vB > vD ' връща -1"
+msgid "Seek #iNumber,1 ' Position To start writing"
+msgstr "Seek #iNumber, 1 ' Позиционираме за начало на записването"
-#: 03060600.xhp
+#: 03020204.xhp
msgctxt ""
-"03060600.xhp\n"
-"par_id3154944\n"
-"18\n"
+"03020204.xhp\n"
+"par_id3153711\n"
+"23\n"
"help.text"
-msgid "vOut = (vB > vD Xor vB > vA) ' returns 0"
-msgstr "vOut = (vB > vD Xor vB > vA) ' връща 0"
+msgid "Put #iNumber,, \"This is the first line of text\" ' Fill line with text"
+msgstr "Put #iNumber,, \"Това е първият ред с текст\" ' Запълваме ред с текст"
-#: 03060600.xhp
+#: 03020204.xhp
msgctxt ""
-"03060600.xhp\n"
-"par_id3148455\n"
-"19\n"
+"03020204.xhp\n"
+"par_id3155446\n"
+"24\n"
"help.text"
-msgid "vOut = vB Xor vA ' returns 2"
-msgstr "vOut = vB Xor vA ' връща 2"
+msgid "Put #iNumber,, \"This is the second line of text\""
+msgstr "Put #iNumber,, \"Това е вторият ред с текст\""
-#: 03080600.xhp
+#: 03020204.xhp
msgctxt ""
-"03080600.xhp\n"
-"tit\n"
+"03020204.xhp\n"
+"par_id3154255\n"
+"25\n"
"help.text"
-msgid "Absolute Values"
-msgstr "Абсолютни стойности"
+msgid "Put #iNumber,, \"This is the third line of text\""
+msgstr "Put #iNumber,, \"Това е третият ред с текст\""
-#: 03080600.xhp
+#: 03020204.xhp
msgctxt ""
-"03080600.xhp\n"
-"hd_id3146958\n"
-"1\n"
+"03020204.xhp\n"
+"par_id3150940\n"
+"34\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080600.xhp\" name=\"Absolute Values\">Absolute Values</link>"
-msgstr "<link href=\"text/sbasic/shared/03080600.xhp\" name=\"Абсолютни стойности\">Абсолютни стойности</link>"
+msgid "Put #iNumber,,\"This is new text\""
+msgstr "Put #iNumber,, \"Това е нов текст\""
-#: 03080600.xhp
+#: 03020204.xhp
msgctxt ""
-"03080600.xhp\n"
-"par_id3150771\n"
-"2\n"
+"03020204.xhp\n"
+"par_id3159102\n"
+"37\n"
"help.text"
-msgid "This function returns absolute values."
-msgstr "функцията връща абсолютни стойности."
+msgid "Put #iNumber,20,\"This is the text in record 20\""
+msgstr "Put #iNumber, 20, \"Това е текстът в запис 20\""
-#: 03101600.xhp
+#: 03020205.xhp
msgctxt ""
-"03101600.xhp\n"
+"03020205.xhp\n"
"tit\n"
"help.text"
-msgid "DefLng Statement [Runtime]"
-msgstr "Оператор DefLng [динамичен]"
+msgid "Write Statement [Runtime]"
+msgstr "Оператор Write [динамичен]"
-#: 03101600.xhp
+#: 03020205.xhp
msgctxt ""
-"03101600.xhp\n"
-"bm_id3148538\n"
+"03020205.xhp\n"
+"bm_id3147229\n"
"help.text"
-msgid "<bookmark_value>DefLng statement</bookmark_value>"
-msgstr "<bookmark_value>DefLng, оператор</bookmark_value>"
+msgid "<bookmark_value>Write statement</bookmark_value>"
+msgstr "<bookmark_value>Write, оператор</bookmark_value>"
-#: 03101600.xhp
+#: 03020205.xhp
msgctxt ""
-"03101600.xhp\n"
-"hd_id3148538\n"
+"03020205.xhp\n"
+"hd_id3147229\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03101600.xhp\" name=\"DefLng Statement [Runtime]\">DefLng Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03101600.xhp\" name=\"Оператор DefLng [динамичен]\">Оператор DefLng [динамичен]</link>"
+msgid "<link href=\"text/sbasic/shared/03020205.xhp\" name=\"Write Statement [Runtime]\">Write Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020205.xhp\" name=\"Оператор Write [динамичен]\">Оператор Write [динамичен]</link>"
-#: 03101600.xhp
+#: 03020205.xhp
msgctxt ""
-"03101600.xhp\n"
-"par_id3149514\n"
+"03020205.xhp\n"
+"par_id3154685\n"
"2\n"
"help.text"
-msgid "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified."
-msgstr "Операторът DefLng установява подразбиран тип данни според диапазон от букви в случай, че не е зададена ключова дума или знак за деклариране на тип."
+msgid "Writes data to a sequential file."
+msgstr "Записва данни във файл с последователен достъп."
-#: 03101600.xhp
+#: 03020205.xhp
msgctxt ""
-"03101600.xhp\n"
-"hd_id3150504\n"
+"03020205.xhp\n"
+"hd_id3150449\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03101600.xhp
+#: 03020205.xhp
msgctxt ""
-"03101600.xhp\n"
-"par_id3145609\n"
+"03020205.xhp\n"
+"par_id3145785\n"
"4\n"
"help.text"
-msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
-msgstr "Defxxx Characterrange1[, Characterrange2[,...]]"
+msgid "Write [#FileName], [Expressionlist]"
+msgstr "Write [#FileNumber], [Expressionlist]"
-#: 03101600.xhp
+#: 03020205.xhp
msgctxt ""
-"03101600.xhp\n"
-"hd_id3154760\n"
+"03020205.xhp\n"
+"hd_id3151116\n"
"5\n"
"help.text"
msgid "Parameters:"
msgstr "Параметри:"
-#: 03101600.xhp
+#: 03020205.xhp
msgctxt ""
-"03101600.xhp\n"
-"par_id3145069\n"
+"03020205.xhp\n"
+"par_id3153728\n"
"6\n"
"help.text"
-msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set the default data type for."
-msgstr "<emph>Characterrange:</emph> букви, определящи диапазона от променливи, за които искате да зададете подразбиран тип данни."
+msgid "<emph>FileName:</emph> Any numeric expression that contains the file number that was set by the Open statement for the respective file."
+msgstr "<emph>FileName:</emph> числов израз, задаващ номера на файл, който е получен от оператора Open за съответния файл."
-#: 03101600.xhp
+#: 03020205.xhp
msgctxt ""
-"03101600.xhp\n"
-"par_id3150791\n"
+"03020205.xhp\n"
+"par_id3146120\n"
"7\n"
"help.text"
-msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
-msgstr "<emph>xxx:</emph> ключова дума, дефинираща подразбирания тип данни:"
+msgid "<emph>Expressionlist:</emph> Variables or expressions that you want to enter in a file, separated by commas."
+msgstr "<emph>ExpressionList:</emph> разделени със запетаи променливи или изрази, чиито стойности желаете да се запишат във файла."
-#: 03101600.xhp
+#: 03020205.xhp
msgctxt ""
-"03101600.xhp\n"
-"par_id3148798\n"
+"03020205.xhp\n"
+"par_id3150010\n"
"8\n"
"help.text"
-msgid "<emph>Keyword: </emph>Default variable type"
-msgstr "<emph>Ключова дума:</emph> Подразбиран тип данни"
+msgid "If the expression list is omitted, the <emph>Write</emph> statement appends an empty line to the file."
+msgstr "Ако списъкът с изрази е пропуснат, операторът <emph>Write</emph> добавя празен ред към файла."
-#: 03101600.xhp
+#: 03020205.xhp
msgctxt ""
-"03101600.xhp\n"
-"par_id3154686\n"
+"03020205.xhp\n"
+"par_id3163713\n"
"9\n"
"help.text"
-msgid "<emph>DefLng:</emph> Long"
-msgstr "<emph>DefLng:</emph> Long"
+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 "За да добавите списък от стойности на изрази към нов или съществуващ файл, файлът трябва да бъде отворен в режима <emph>Output</emph> или <emph>Append</emph>."
-#: 03101600.xhp
+#: 03020205.xhp
msgctxt ""
-"03101600.xhp\n"
-"hd_id3153192\n"
+"03020205.xhp\n"
+"par_id3147428\n"
"10\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
+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 "Низовете, които записвате, се ограждат с кавички и се разделят със запетаи. Не е необходимо да въвеждате тези разделители в списъка с изрази."
-#: 03101600.xhp
+#: 03020205.xhp
msgctxt ""
-"03101600.xhp\n"
-"par_id3154124\n"
-"12\n"
+"03020205.xhp\n"
+"par_id1002838\n"
"help.text"
-msgid "' Prefix definitions for variable types:"
-msgstr "' Дефиниране с префикс за променливи от даден тип:"
+msgid "Each <emph>Write</emph> statement outputs a line end symbol as last entry."
+msgstr "Всеки оператор <emph>Write</emph> извежда знак за край на ред като като последен елемент."
-#: 03101600.xhp
+#: 03020205.xhp
msgctxt ""
-"03101600.xhp\n"
-"par_id3145273\n"
-"22\n"
+"03020205.xhp\n"
+"par_id6618854\n"
"help.text"
-msgid "lCount=123456789 ' lCount is an implicit long integer variable"
-msgstr "lCount = 123456789 ' lCount е променлива с неявен тип Long Integer"
+msgid "Numbers with decimal delimiters are converted according to the locale settings."
+msgstr "Числата с десетични разделители се преобразуват според настройките на локала."
-#: 01020100.xhp
+#: 03020205.xhp
msgctxt ""
-"01020100.xhp\n"
+"03020205.xhp\n"
+"hd_id3151073\n"
+"11\n"
+"help.text"
+msgid "Example:"
+msgstr "Пример:"
+
+#: 03020301.xhp
+msgctxt ""
+"03020301.xhp\n"
"tit\n"
"help.text"
-msgid "Using Variables"
-msgstr "Използване на променливи"
+msgid "Eof Function [Runtime]"
+msgstr "Функция Eof [динамична]"
-#: 01020100.xhp
+#: 03020301.xhp
msgctxt ""
-"01020100.xhp\n"
-"bm_id3149346\n"
+"03020301.xhp\n"
+"bm_id3154598\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>constants</bookmark_value><bookmark_value>arrays;declaring</bookmark_value><bookmark_value>defining;constants</bookmark_value>"
-msgstr "<bookmark_value>имена на променливи</bookmark_value><bookmark_value>променливи; използване</bookmark_value><bookmark_value>типове на променливи</bookmark_value><bookmark_value>обявяване на променливи</bookmark_value><bookmark_value>деклариране на променливи</bookmark_value><bookmark_value>стойности;на променливи</bookmark_value><bookmark_value>константи</bookmark_value><bookmark_value>масиви;обявяване</bookmark_value><bookmark_value>дефиниране;константи</bookmark_value>"
+msgid "<bookmark_value>Eof function</bookmark_value>"
+msgstr "<bookmark_value>Eof, функция</bookmark_value>"
-#: 01020100.xhp
+#: 03020301.xhp
msgctxt ""
-"01020100.xhp\n"
-"hd_id3149346\n"
+"03020301.xhp\n"
+"hd_id3154598\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/01020100.xhp\" name=\"Using Variables\">Using Variables</link>"
-msgstr "<link href=\"text/sbasic/shared/01020100.xhp\" name=\"Използване на променливи\">Използване на променливи</link>"
+msgid "<link href=\"text/sbasic/shared/03020301.xhp\" name=\"Eof Function [Runtime]\">Eof Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020301.xhp\" name=\"Функция Eof [динамична]\">Функция Eof [динамична]</link>"
-#: 01020100.xhp
+#: 03020301.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3154346\n"
+"03020301.xhp\n"
+"par_id3147182\n"
+"2\n"
+"help.text"
+msgid "Determines if the file pointer has reached the end of a file."
+msgstr "Определя дали файловият указател е достигнал края на файла."
+
+#: 03020301.xhp
+msgctxt ""
+"03020301.xhp\n"
+"hd_id3149119\n"
"3\n"
"help.text"
-msgid "The following describes the basic use of variables in $[officename] Basic."
-msgstr "По-долу са описани основите на работата с променливи в $[officename] Basic."
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 01020100.xhp
+#: 03020301.xhp
msgctxt ""
-"01020100.xhp\n"
-"hd_id3153361\n"
+"03020301.xhp\n"
+"par_id3147399\n"
"4\n"
"help.text"
-msgid "Naming Conventions for Variable Identifiers"
-msgstr "Правила за съставяне идентификатори на променливи"
+msgid "Eof (intexpression As Integer)"
+msgstr "Eof (IntExpression As Integer)"
-#: 01020100.xhp
+#: 03020301.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3148797\n"
+"03020301.xhp\n"
+"hd_id3153539\n"
"5\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 "Имената на променливи не могат да надхвърлят дължина от 255 знака. Първият знак от името на променлива <emph>трябва</emph> да бъде латинска буква от A до Z или от a до z. В имената на променливи могат да се използват и цифри, но препинателни и специални знаци не се допускар, с изключение на знака долна черта (_). В $[officename] Basic идентификаторите на променливи са нечувствителни към регистъра. Имената на променливи могат да съдържат интервали, но в такъв случай трябва да са оградени с квадратни скоби."
+msgid "Return value:"
+msgstr "Връщана стойност:"
-#: 01020100.xhp
+#: 03020301.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3156422\n"
+"03020301.xhp\n"
+"par_id3156027\n"
"6\n"
"help.text"
-msgid "Examples for variable identifiers:"
-msgstr "Примери за идентификатори на променливи:"
+msgid "Bool"
+msgstr "Bool"
-#: 01020100.xhp
+#: 03020301.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3156441\n"
-"126\n"
+"03020301.xhp\n"
+"hd_id3152924\n"
+"7\n"
"help.text"
-msgid "Correct"
-msgstr "Правилно"
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 01020100.xhp
+#: 03020301.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3149664\n"
-"127\n"
+"03020301.xhp\n"
+"par_id3153990\n"
+"8\n"
"help.text"
-msgid "Correct"
-msgstr "Правилно"
+msgid "<emph>Intexpression:</emph> Any integer expression that evaluates to the number of an open file."
+msgstr "<emph>IntExpression:</emph> целочислен израз – номер на отворен файл."
-#: 01020100.xhp
+#: 03020301.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3146119\n"
-"128\n"
+"03020301.xhp\n"
+"par_id3153527\n"
+"9\n"
"help.text"
-msgid "Correct"
-msgstr "Правилно"
+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 "Използвайте EOF, за да избегнете грешки при опит за четене след края на файл. Когато четете от файл с оператора Input или Get, файловият указател нараства с броя на прочетените байтове. Когато бъде достигнат краят на файла, EOF връща стойността True (-1)."
-#: 01020100.xhp
+#: 03020301.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3153876\n"
-"11\n"
+"03020301.xhp\n"
+"hd_id3154046\n"
+"10\n"
"help.text"
-msgid "Not valid, variable with space must be enclosed in square brackets"
-msgstr "Невалиден, променлива с интервал трябва да е оградена с квадратни скоби"
+msgid "Example:"
+msgstr "Пример:"
-#: 01020100.xhp
+#: 03020301.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3154510\n"
-"15\n"
+"03020301.xhp\n"
+"par_id3153360\n"
+"19\n"
"help.text"
-msgid "Correct"
-msgstr "Правилно"
+msgid "Print #iNumber, \"First line of text\""
+msgstr "Print #iNumber, \"Първият ред с текст\""
-#: 01020100.xhp
+#: 03020301.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3150330\n"
-"129\n"
+"03020301.xhp\n"
+"par_id3148797\n"
+"20\n"
"help.text"
-msgid "Not valid, special characters are not allowed"
-msgstr "Невалиден, специални знаци не се допускат"
+msgid "Print #iNumber, \"Another line of text\""
+msgstr "Print #iNumber, \"Още един ред с текст\""
-#: 01020100.xhp
+#: 03020302.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3154254\n"
-"130\n"
+"03020302.xhp\n"
+"tit\n"
"help.text"
-msgid "Not valid, variable may not begin with a number"
-msgstr "Невалиден, променлива не може да започва с цифра"
+msgid "Loc Function [Runtime]"
+msgstr "Функция Loc [динамична]"
-#: 01020100.xhp
+#: 03020302.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3149256\n"
-"131\n"
+"03020302.xhp\n"
+"bm_id3148663\n"
"help.text"
-msgid "Not valid, punctuation marks are not allowed"
-msgstr "Невалиден, пунктуация не се допуска"
+msgid "<bookmark_value>Loc function</bookmark_value>"
+msgstr "<bookmark_value>Loc, функция</bookmark_value>"
-#: 01020100.xhp
+#: 03020302.xhp
msgctxt ""
-"01020100.xhp\n"
-"hd_id3146317\n"
-"17\n"
+"03020302.xhp\n"
+"hd_id3148663\n"
+"1\n"
"help.text"
-msgid "Declaring Variables"
-msgstr "Обявяване на променливи"
+msgid "<link href=\"text/sbasic/shared/03020302.xhp\" name=\"Loc Function [Runtime]\">Loc Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020302.xhp\" name=\"Функция Loc [динамична]\">Функция Loc [динамична]</link>"
-#: 01020100.xhp
+#: 03020302.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3150299\n"
-"18\n"
+"03020302.xhp\n"
+"par_id3154138\n"
+"2\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 "В $[officename] Basic не е задължително да декларирате изрично променливите. Обявяването на променлива се извършва с оператора <emph>Dim</emph>. Можете да декларирате няколко променливи наведнъж, като разделите имената им със запетая. За да дефинирате типа на променливата, използвайте или знак за декларация на тип след името, или съответната ключова дума."
+msgid "Returns the current position in an open file."
+msgstr "Връща текущата позиция в отворен файл."
-#: 01020100.xhp
+#: 03020302.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3154118\n"
-"140\n"
+"03020302.xhp\n"
+"hd_id3156422\n"
+"3\n"
"help.text"
-msgid "Examples for variable declarations:"
-msgstr "Примери за декларации на променливи:"
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 01020100.xhp
+#: 03020302.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3150982\n"
-"132\n"
+"03020302.xhp\n"
+"par_id3150768\n"
+"4\n"
"help.text"
-msgid "Declares the variable \"a\" as a String"
-msgstr "Обявява променливата „a“ от тип String"
+msgid "Loc(FileNumber)"
+msgstr "Loc(FileNumber)"
-#: 01020100.xhp
+#: 03020302.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3150343\n"
-"133\n"
+"03020302.xhp\n"
+"hd_id3150440\n"
+"5\n"
"help.text"
-msgid "Declares the variable \"a\" as a String"
-msgstr "Обявява променливата „a“ от тип String"
+msgid "Return value:"
+msgstr "Връщана стойност:"
-#: 01020100.xhp
+#: 03020302.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3155507\n"
-"22\n"
+"03020302.xhp\n"
+"par_id3152578\n"
+"6\n"
"help.text"
-msgid "Declares one variable as a String and one as an Integer"
-msgstr "Обявява една променлива от тип String и една от тип Integer"
+msgid "Long"
+msgstr "Long"
-#: 01020100.xhp
+#: 03020302.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_idN10859\n"
+"03020302.xhp\n"
+"hd_id3152462\n"
+"7\n"
"help.text"
-msgid "Declares c as a Boolean variable that can be TRUE or FALSE"
-msgstr "Обявява „c“ като променлива от тип Boolean, която приема стойности TRUE (истина) и FALSE (лъжа)"
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 01020100.xhp
+#: 03020302.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3150519\n"
-"23\n"
+"03020302.xhp\n"
+"par_id3153363\n"
+"8\n"
"help.text"
-msgid "It is very important when declaring variables that you use the type-declaration character each time, even if it was used in the declaration instead of a keyword. Thus the following statements are invalid:"
-msgstr "При обявяване на променливи е много важно винаги да използвате знака за деклариране на тип, дори ако е бил използван в декларацията вместо ключова дума. Затова следните оператори са невалидни:"
+msgid "<emph>FileNumber:</emph> Any numeric expression that contains the file number that is set by the Open statement for the respective file."
+msgstr "<emph>FileNumber:</emph> целочислен израз – номер на файл, отворен с оператора Open."
-#: 01020100.xhp
+#: 03020302.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3154527\n"
-"134\n"
+"03020302.xhp\n"
+"par_id3154320\n"
+"9\n"
"help.text"
-msgid "Declares \"a\" as a String"
-msgstr "Обявява променливата „a“ от тип String"
+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 "Функцията Loc се използва за отворен файл с произволен достъп и връща номера на последния запис, който е бил четен или записван."
-#: 01020100.xhp
+#: 03020302.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3153064\n"
-"135\n"
+"03020302.xhp\n"
+"par_id3151115\n"
+"10\n"
"help.text"
-msgid "Type-declaration missing: \"a$=\""
-msgstr "Липсва декларация на тип: \"a$=\""
+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 "Във файл с последователен достъп функцията Loc връща позицията във файла, разделена на 128. За двоични файлове се връща позицията на последния прочетен или записан байт."
-#: 01020100.xhp
+#: 03020303.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3144770\n"
-"26\n"
+"03020303.xhp\n"
+"tit\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 "След като сте декларирали променлива като принадлежаща на определен тип, не можете да декларирате променлива със същото име от друг тип!"
+msgid "Lof Function [Runtime]"
+msgstr "Функция Lof [динамична]"
-#: 01020100.xhp
+#: 03020303.xhp
msgctxt ""
-"01020100.xhp\n"
-"hd_id3149331\n"
-"27\n"
+"03020303.xhp\n"
+"bm_id3156024\n"
"help.text"
-msgid "Forcing Variable Declarations"
-msgstr "Форсиране на декларациите на променливи"
+msgid "<bookmark_value>Lof function</bookmark_value>"
+msgstr "<bookmark_value>Lof, функция</bookmark_value>"
-#: 01020100.xhp
+#: 03020303.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3149443\n"
-"28\n"
+"03020303.xhp\n"
+"hd_id3156024\n"
+"1\n"
"help.text"
-msgid "To force declaration of variables, use the following command:"
-msgstr "За да направите обявяването на променливите задължително, използвайте следната команда:"
+msgid "<link href=\"text/sbasic/shared/03020303.xhp\" name=\"Lof Function [Runtime]\">Lof Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020303.xhp\" name=\"Функция Lof [динамична]\">Функция Lof [динамична]</link>"
-#: 01020100.xhp
+#: 03020303.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3155072\n"
-"30\n"
+"03020303.xhp\n"
+"par_id3146794\n"
+"2\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 "Операторът <emph>OPTION EXPLICIT</emph> трябва да бъде на първия ред от модула, преди първия блок SUB. Обикновено само масивите трябва да се обявяват изрично. Всички останали променливи се декларират според знака за тип или – ако той е пропуснат – като принадлежащи на подразбирания тип <emph>Single</emph>."
+msgid "Returns the size of an open file in bytes."
+msgstr "Връща размера на отворен файл в байтове."
-#: 01020100.xhp
+#: 03020303.xhp
msgctxt ""
-"01020100.xhp\n"
-"hd_id3154614\n"
-"34\n"
+"03020303.xhp\n"
+"hd_id3153380\n"
+"3\n"
"help.text"
-msgid "Variable Types"
-msgstr "Типове на променливите"
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 01020100.xhp
+#: 03020303.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3155383\n"
-"35\n"
+"03020303.xhp\n"
+"par_id3150359\n"
+"4\n"
"help.text"
-msgid "$[officename] Basic supports four variable classes:"
-msgstr "$[officename] Basic поддържа четири вида променливи:"
+msgid "Lof (FileNumber)"
+msgstr "Lof (FileNumber)"
-#: 01020100.xhp
+#: 03020303.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3153972\n"
-"36\n"
+"03020303.xhp\n"
+"hd_id3154141\n"
+"5\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 "<emph>Числови</emph> променливи, които могат да съдържат числови стойности. Някои променливи служат за съхраняване на много големи или много малки числа, а други – за съхраняване на дробни числа или числа с плаваща запетая."
+msgid "Return value:"
+msgstr "Връщана стойност:"
-#: 01020100.xhp
+#: 03020303.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3159226\n"
-"37\n"
+"03020303.xhp\n"
+"par_id3147230\n"
+"6\n"
"help.text"
-msgid "<emph>String</emph> variables contain character strings."
-msgstr "<emph>Низови</emph> променливи, които съдържат знакови низове."
+msgid "Long"
+msgstr "Long"
-#: 01020100.xhp
+#: 03020303.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3145217\n"
-"38\n"
+"03020303.xhp\n"
+"hd_id3156281\n"
+"7\n"
"help.text"
-msgid "<emph>Boolean</emph> variables contain either the TRUE or the FALSE value."
-msgstr "<emph>Булеви</emph> променливи, съдържащи стойност TRUE или FALSE."
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 01020100.xhp
+#: 03020303.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3154762\n"
-"39\n"
+"03020303.xhp\n"
+"par_id3150869\n"
+"8\n"
"help.text"
-msgid "<emph>Object</emph> variables can store objects of various types, like tables and documents within a document."
-msgstr "<emph>Обектни</emph> променливи, съхраняващи обекти от различни типове, например таблици или документи."
+msgid "<emph>FileNumber:</emph> Any numeric expression that contains the file number that is specified in the Open statement."
+msgstr "<emph>FileNumber:</emph> целочислен израз – номер на файл, отворен с оператора Open."
-#: 01020100.xhp
+#: 03020303.xhp
msgctxt ""
-"01020100.xhp\n"
-"hd_id3153805\n"
-"40\n"
+"03020303.xhp\n"
+"par_id3147349\n"
+"9\n"
"help.text"
-msgid "Integer Variables"
-msgstr "Целочислени променливи"
+msgid "To obtain the length of a file that is not open, use the <emph>FileLen</emph> function."
+msgstr "За да намерите дължината на файл, който не е отворен, използвайте функцията <emph>FileLen</emph>."
-#: 01020100.xhp
+#: 03020303.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3146966\n"
-"41\n"
+"03020303.xhp\n"
+"hd_id3155415\n"
+"10\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 "Целочислените променливи приемат стойности от -32768 до 32767. Ако присвоите стойност с плаваща запетая на целочислена променлива, стойността ще бъде закръглена до най-близкото цяло число. С целочислените променливи се работи бързо и те са подходящи за броячи в цикли. Целочислените променливи заемат само по два байта в паметта. Техният знак за деклариране на тип е „%“."
+msgid "Example:"
+msgstr "Пример:"
-#: 01020100.xhp
+#: 03020303.xhp
msgctxt ""
-"01020100.xhp\n"
-"hd_id3147546\n"
-"45\n"
+"03020303.xhp\n"
+"par_id3154730\n"
+"13\n"
"help.text"
-msgid "Long Integer Variables"
-msgstr "Дълги целочислени променливи"
+msgid "Dim sText As Variant REM must be a Variant"
+msgstr "Dim sText As Variant REM Трябва да бъде Variant"
-#: 01020100.xhp
+#: 03020303.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3151193\n"
-"46\n"
+"03020303.xhp\n"
+"par_id3156276\n"
+"19\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 "Дългите целочислени променливи приемат стойности от -2147483648 до 2147483647. Ако присвоите стойност с плаваща запетая на дълга целочислена променлива, стойността ще бъде закръглена до най-близкото цяло число. С дългите целочислени променливи се работи бързо и те са подходящи за броячи в цикли с големи стойности. Дългите целочислени променливи заемат по четири байта в паметта. Техният знак за деклариране на тип е „&“."
+msgid "Seek #iNumber,1 REM Position at start"
+msgstr "Seek #iNumber,1 REM Позиционираме в началото"
-#: 01020100.xhp
+#: 03020303.xhp
msgctxt ""
-"01020100.xhp\n"
-"hd_id7596972\n"
+"03020303.xhp\n"
+"par_id3148405\n"
+"20\n"
"help.text"
-msgid "Decimal Variables"
-msgstr "Десетични променливи"
+msgid "Put #iNumber,, \"This is the first line of text\" REM Fill with text"
+msgstr "Put #iNumber,, \"Това е първият ред с текст\" REM Запълваме с текст"
-#: 01020100.xhp
+#: 03020303.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id2649311\n"
+"03020303.xhp\n"
+"par_id3154756\n"
+"21\n"
"help.text"
-msgid "Decimal variables can take positive or negative numbers or zero. Accuracy is up to 29 digits."
-msgstr "Десетичните променливи могат да приемат положителни, отрицателни и нулеви стойности. Точността им е до 29 цифри."
+msgid "Put #iNumber,, \"This is the second line of text\""
+msgstr "Put #iNumber,, \"Това е вторият ред с текст\""
-#: 01020100.xhp
+#: 03020303.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id7617114\n"
+"03020303.xhp\n"
+"par_id3145643\n"
+"22\n"
"help.text"
-msgid "You can use plus (+) or minus (-) signs as prefixes for decimal numbers (with or without spaces)."
-msgstr "Можете да използвате знаците плюс (+) и минус (-) като префикси за десетични числа (с или без интервал)."
+msgid "Put #iNumber,, \"This is the third line of text\""
+msgstr "Put #iNumber,, \"Това е третият ред с текст\""
-#: 01020100.xhp
+#: 03020303.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id1593676\n"
+"03020303.xhp\n"
+"par_id3150299\n"
+"31\n"
"help.text"
-msgid "If a decimal number is assigned to an integer variable, %PRODUCTNAME Basic rounds the figure up or down."
-msgstr "Ако присвоите десетично число на целочислена променлива, %PRODUCTNAME Basic ще го закръгли нагоре или надолу."
+msgid "Put #iNumber,,\"This is a new line of text\""
+msgstr "Put #iNumber,, \"Това е нов ред с текст\""
-#: 01020100.xhp
+#: 03020303.xhp
msgctxt ""
-"01020100.xhp\n"
-"hd_id3147500\n"
-"50\n"
+"03020303.xhp\n"
+"par_id3166425\n"
+"34\n"
"help.text"
-msgid "Single Variables"
-msgstr "Променливи с еднична точност"
+msgid "Put #iNumber,20,\"This is the text in record 20\""
+msgstr "Put #iNumber, 20, \"Това е текстът в запис 20\""
-#: 01020100.xhp
+#: 03020304.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3153070\n"
-"51\n"
+"03020304.xhp\n"
+"tit\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 "Променливите с единична точност приемат положителни или отрицателни стойности от 3,402823.10^38 до 1,401298.10^-45. Това са променливи с плаваща запетая, в които точността спада с удължаването на цялата част от стойността. Променливите с единична точност са подходящи за средно точни математически пресмятания. С тях се работи по-бавно, отколкото с целочислените, но по-бързо, отколкото с тези с двойна точност. Променливите с единична точност заемат по четири байта в паметта. Техният знак за деклариране на тип е „!“."
+msgid "Seek Function [Runtime]"
+msgstr "Функция Seek [динамична]"
-#: 01020100.xhp
+#: 03020304.xhp
msgctxt ""
-"01020100.xhp\n"
-"hd_id3155753\n"
-"54\n"
+"03020304.xhp\n"
+"bm_id3154367\n"
"help.text"
-msgid "Double Variables"
-msgstr "Променливи с двойна точност"
+msgid "<bookmark_value>Seek function</bookmark_value>"
+msgstr "<bookmark_value>Seek, функция</bookmark_value>"
-#: 01020100.xhp
+#: 03020304.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3150953\n"
-"55\n"
+"03020304.xhp\n"
+"hd_id3154367\n"
+"1\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 "Променливите с двойна точност приемат положителни или отрицателни стойности от 1,79769313486232.10^308 до 4,94065645841247.10^-324. Това са променливи с плаваща запетая, в които точността спада с удължаването на цялата част от стойността. Променливите с двойна точност са подходящи за точни пресмятания. С тях се работи по-бавно, отколкото с тези с единична точност. Променливите с двойна точност заемат по осем байта в паметта. Техният знак за деклариране на тип е „#“."
+msgid "<link href=\"text/sbasic/shared/03020304.xhp\" name=\"Seek Function [Runtime]\">Seek Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020304.xhp\" name=\"Функция Seek [динамична]\">Функция Seek [динамична]</link>"
-#: 01020100.xhp
+#: 03020304.xhp
msgctxt ""
-"01020100.xhp\n"
-"hd_id3155747\n"
-"95\n"
+"03020304.xhp\n"
+"par_id3156280\n"
+"2\n"
"help.text"
-msgid "Currency Variables"
-msgstr "Променливи за парични суми"
+msgid "Returns the position for the next writing or reading in a file that was opened with the open statement."
+msgstr "Връща позицията за следващото записване или четене във файл, отворен с оператора Open."
-#: 01020100.xhp
+#: 03020304.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3153337\n"
-"96\n"
+"03020304.xhp\n"
+"par_id3153194\n"
+"3\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 "Променливите за парични суми се съхраняват вътрешно като 64-битови числа (8 байта) и се изобразяват като десетични числа с фиксирана запетая, с 15-цифрена цяла и 4-цифрена дробна част. Стойностите им варират от -922337203685477,5808 до +922337203685477,5807. Тези променливи се използват за валутни изчисления с висока точност. Съответният знак за деклариране на тип е „@“."
+msgid "For random access files, the Seek function returns the number of the next record to be read."
+msgstr "За файлове с произволен достъп функцията Seek връща номера на следващия запис, който ще бъде прочетен."
-#: 01020100.xhp
+#: 03020304.xhp
msgctxt ""
-"01020100.xhp\n"
-"hd_id3148742\n"
-"58\n"
+"03020304.xhp\n"
+"par_id3161831\n"
+"4\n"
"help.text"
-msgid "String Variables"
-msgstr "Низови променливи"
+msgid "For all other files, the function returns the byte position at which the next operation is to occur."
+msgstr "За всички други файлове функцията връща позицията на байта, с който ще бъде извършена следващата операция."
-#: 01020100.xhp
+#: 03020304.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3151393\n"
-"59\n"
+"03020304.xhp\n"
+"par_id3155854\n"
+"5\n"
"help.text"
-msgid "String variables can hold character strings with up to 65,535 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 64 Kbytes. The memory required for storing string variables depends on the number of characters in the variable. The type-declaration character is \"$\"."
-msgstr "Низовите променливи могат да съдържат знакови низове с дължина до 65 535 знака. Всеки знак се съхранява като съответната стойност от Уникод. Низовите променливи са подходящи за обработка на текст в програми и за временно съхраняване на непечатни знаци с дължина до 64 КБ. Необходимата памет за съхранение на низова променлива зависи от броя знаци в нея. Знакът за деклариране на тип е „$“."
+msgid "See also: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>, <link href=\"text/sbasic/shared/03020305.xhp\" name=\"Seek\">Seek</link>."
+msgstr "Виж също: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>, <link href=\"text/sbasic/shared/03020305.xhp\" name=\"Seek\">Seek</link>."
-#: 01020100.xhp
+#: 03020304.xhp
msgctxt ""
-"01020100.xhp\n"
-"hd_id3150534\n"
-"62\n"
+"03020304.xhp\n"
+"hd_id3152460\n"
+"6\n"
"help.text"
-msgid "Boolean Variables"
-msgstr "Булеви променливи"
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 01020100.xhp
+#: 03020304.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3145632\n"
-"63\n"
+"03020304.xhp\n"
+"par_id3145365\n"
+"7\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 "Булевите променливи могат да съдържат само две стойности: TRUE (истина) или FALSE (лъжа). Числото 0 има стойност FALSE, а всички останали числа се считат за TRUE."
+msgid "Seek (FileNumber)"
+msgstr "Seek (FileNumber)"
-#: 01020100.xhp
+#: 03020304.xhp
msgctxt ""
-"01020100.xhp\n"
-"hd_id3149722\n"
-"65\n"
+"03020304.xhp\n"
+"hd_id3148575\n"
+"8\n"
"help.text"
-msgid "Date Variables"
-msgstr "Променливи за дати"
+msgid "Return value:"
+msgstr "Връщана стойност:"
-#: 01020100.xhp
+#: 03020304.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3159116\n"
-"66\n"
+"03020304.xhp\n"
+"par_id3159156\n"
+"9\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 "Променливите за дати могат да съдържат само дати и часове, съхранявани във вътрешен формат. Стойностите, присвоявани на променливите за дати с функциите <link href=\"text/sbasic/shared/03030101.xhp\" name=\"Dateserial\"><emph>Dateserial</emph></link>, <link href=\"text/sbasic/shared/03030102.xhp\" name=\"Datevalue\"><emph>Datevalue</emph></link>, <link href=\"text/sbasic/shared/03030205.xhp\" name=\"Timeserial\"><emph>Timeserial</emph></link> и <link href=\"text/sbasic/shared/03030206.xhp\" name=\"Timevalue\"><emph>Timevalue</emph></link>, автоматично се преобразуват във вътрешния формат. Променливите за дати се преобразуват в обикновени числа чрез функциите <link href=\"text/sbasic/shared/03030103.xhp\" name=\"Day\"><emph>Day</emph></link>, <link href=\"text/sbasic/shared/03030104.xhp\" name=\"Month\"><emph>Month</emph></link>, <link href=\"text/sbasic/shared/03030106.xhp\" name=\"Year\"><emph>Year</emph></link> или <link href=\"text/sbasic/shared/03030201.xhp\" name=\"Hour\"><emph>Hour</emph></link>, <link href=\"text/sbasic/shared/03030202.xhp\" name=\"Minute\"><emph>Minute</emph></link>, <link href=\"text/sbasic/shared/03030204.xhp\" name=\"Second\"><emph>Second</emph></link>. Вътрешният формат позволява сравняване на дати и часове чрез изчисляване на разликата между две числа. Тези променливи могат да се декларират само с ключовата дума <emph>Date</emph>."
+msgid "Long"
+msgstr "Long"
-#: 01020100.xhp
+#: 03020304.xhp
msgctxt ""
-"01020100.xhp\n"
-"hd_id3148732\n"
-"68\n"
+"03020304.xhp\n"
+"hd_id3149665\n"
+"10\n"
"help.text"
-msgid "Initial Variable Values"
-msgstr "Начални стойности на променливите"
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 01020100.xhp
+#: 03020304.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3154549\n"
-"69\n"
+"03020304.xhp\n"
+"par_id3148645\n"
+"11\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 "Още при декларирането на променливата автоматично й се присвоява стойността „Null“. Обърнете внимание на следните правила:"
+msgid "<emph>FileNumber:</emph> The data channel number used in the Open statement."
+msgstr "<emph>FileNumber:</emph> номерът на канал за данни, използван в оператора Open."
-#: 01020100.xhp
+#: 03020305.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3143222\n"
-"70\n"
+"03020305.xhp\n"
+"tit\n"
"help.text"
-msgid "<emph>Numeric</emph> variables are automatically assigned the value \"0\" as soon as they are declared."
-msgstr "<emph>Числовите</emph> променливи автоматично получават стойност 0 при обявяването си."
+msgid "Seek Statement [Runtime]"
+msgstr "Оператор Seek [динамичен]"
-#: 01020100.xhp
+#: 03020305.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3150693\n"
-"71\n"
+"03020305.xhp\n"
+"bm_id3159413\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 "На <emph>променливите за дати</emph> се присвоява вътрешно стойност 0. Това е еквивалентно на преобразуването на стойността до „0“ с функциите <link href=\"text/sbasic/shared/03030103.xhp\" name=\"Day\"><emph>Day</emph></link>, <link href=\"text/sbasic/shared/03030104.xhp\" name=\"Month\"><emph>Month</emph></link>, <link href=\"text/sbasic/shared/03030106.xhp\" name=\"Year\"><emph>Year</emph></link> или <link href=\"text/sbasic/shared/03030201.xhp\" name=\"Hour\"><emph>Hour</emph></link>, <link href=\"text/sbasic/shared/03030202.xhp\" name=\"Minute\"><emph>Minute</emph></link>, <link href=\"text/sbasic/shared/03030204.xhp\" name=\"Second\"><emph>Second</emph></link>."
+msgid "<bookmark_value>Seek statement</bookmark_value>"
+msgstr "<bookmark_value>Seek, оператор</bookmark_value>"
-#: 01020100.xhp
+#: 03020305.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3154807\n"
-"72\n"
+"03020305.xhp\n"
+"hd_id3159413\n"
+"1\n"
"help.text"
-msgid "<emph>String variables</emph> are assigned an empty-string (\"\") when they are declared."
-msgstr "На <emph>низовите променливи</emph> при обявяването им се присвоява празен низ (\"\")."
+msgid "<link href=\"text/sbasic/shared/03020305.xhp\" name=\"Seek Statement [Runtime]\">Seek Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020305.xhp\" name=\"Оператор Seek [динамичен]\">Оператор Seek [динамичен]</link>"
-#: 01020100.xhp
+#: 03020305.xhp
msgctxt ""
-"01020100.xhp\n"
-"hd_id3153936\n"
-"83\n"
+"03020305.xhp\n"
+"par_id3153381\n"
+"2\n"
"help.text"
-msgid "Arrays"
-msgstr "Масиви"
+msgid "Sets the position for the next writing or reading in a file that was opened with the Open statement."
+msgstr "Задава позицията за следващото записване или четене във файл, отворен с оператора Open."
-#: 01020100.xhp
+#: 03020305.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3148736\n"
-"84\n"
+"03020305.xhp\n"
+"par_id2100589\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 "$[officename] Basic поддържа едномерни и многомерни масиви, дефинирани със специален вид променлива. Масивите са подходящи за редактиране на списъци и таблици в програмите. Отделните елементи на масив могат да се адресират чрез числов индекс."
+msgid "For random access files, the Seek statement sets the number of the next record to be accessed."
+msgstr "За файлове с произволен достъп операторът Seek задава номера на следващия запис, до който ще бъде осъществен достъп."
-#: 01020100.xhp
+#: 03020305.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3149546\n"
-"85\n"
+"03020305.xhp\n"
+"par_id5444807\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 "Масивите <emph>трябва</emph> да бъдат обявени с оператора <emph>Dim</emph>. Има няколко начина за дефиниране на диапазона от индекси на масив:"
+msgid "For all other files, the Seek statement sets the byte position at which the next operation is to occur."
+msgstr "За всички други файлове операторът задава позицията на байта, с който ще бъде извършена следващата операция."
-#: 01020100.xhp
+#: 03020305.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3154567\n"
-"136\n"
+"03020305.xhp\n"
+"par_id3156280\n"
+"5\n"
"help.text"
-msgid "21 elements numbered from 0 to 20"
-msgstr "21 елемента, номерирани от 0 до 20"
+msgid "See also: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>, <link href=\"text/sbasic/shared/03020304.xhp\" name=\"Seek\">Seek</link>."
+msgstr "Виж също: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>, <link href=\"text/sbasic/shared/03020304.xhp\" name=\"Seek\">Seek</link>."
-#: 01020100.xhp
+#: 03020305.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3154397\n"
-"137\n"
+"03020305.xhp\n"
+"hd_id3145785\n"
+"6\n"
"help.text"
-msgid "30 elements (a matrix of 6 x 5 elements)"
-msgstr "30 елемента (матрица от 6 на 5 елемента)"
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 01020100.xhp
+#: 03020305.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3149690\n"
-"138\n"
+"03020305.xhp\n"
+"par_id3145273\n"
+"7\n"
"help.text"
-msgid "21 elements numbered from 5 to 25"
-msgstr "21 елемента, номерирани от 5 до 25"
+msgid "Seek[#FileNumber], Position (As Long)"
+msgstr "Seek[#FileNumber], Position (As Long)"
-#: 01020100.xhp
+#: 03020305.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3153113\n"
-"89\n"
+"03020305.xhp\n"
+"hd_id3154321\n"
+"8\n"
"help.text"
-msgid "21 elements (including 0), numbered from -15 to 5"
-msgstr "21 елемента (включително номер 0), номерирани от -15 до 5"
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 01020100.xhp
+#: 03020305.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3153005\n"
-"90\n"
+"03020305.xhp\n"
+"par_id3153952\n"
+"9\n"
"help.text"
-msgid "The index range can include positive as well as negative numbers."
-msgstr "Диапазонът от индекси може да включва както положителни, така и отрицателни числа."
+msgid "<emph>FileNumber: </emph>The data channel number used in the Open statement."
+msgstr "<emph>FileNumber:</emph> номерът на канал за данни, използван в оператора Open."
-#: 01020100.xhp
+#: 03020305.xhp
msgctxt ""
-"01020100.xhp\n"
-"hd_id3154507\n"
-"91\n"
+"03020305.xhp\n"
+"par_id3145366\n"
+"10\n"
"help.text"
-msgid "Constants"
-msgstr "Константи"
+msgid "<emph>Position: </emph>Position for the next writing or reading. Position can be a number between 1 and 2,147,483,647. According to the file type, the position indicates the number of the record (files in the Random mode) or the byte position (files in the Binary, Output, Append or Input mode). The first byte in a file is position 1, the second byte is position 2, and so on."
+msgstr "<emph>Position:</emph> позиция за следващото записване или четене. Тя може да бъде число между 1 и 2147483647. В зависимост от типа на файла, позицията означава номера на записа (файлове в режима Random) или позицията на байта (файлове в режимите Binary, Output, Append или Input). Първият байт във файла оговаря на позиция 1, вторият – на позиция 2 и т.н."
-#: 01020100.xhp
+#: 03020400.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3156357\n"
-"92\n"
+"03020400.xhp\n"
+"tit\n"
"help.text"
-msgid "Constants have a fixed value. They are only defined once in the program and cannot be redefined later:"
-msgstr "Константите имат фиксирана стойност. Те се задават само веднъж в програмата и след това не могат да се предефинират:"
+msgid "Managing Files"
+msgstr "Управление на файлове"
-#: 03101700.xhp
+#: 03020400.xhp
msgctxt ""
-"03101700.xhp\n"
+"03020400.xhp\n"
+"hd_id3145136\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03020400.xhp\" name=\"Managing Files\">Managing Files</link>"
+msgstr "<link href=\"text/sbasic/shared/03020400.xhp\" name=\"Управление на файлове\">Управление на файлове</link>"
+
+#: 03020400.xhp
+msgctxt ""
+"03020400.xhp\n"
+"par_id3147264\n"
+"2\n"
+"help.text"
+msgid "The functions and statements for managing files are described here."
+msgstr "Тук са описани функции и оператори за управление на файлове."
+
+#: 03020401.xhp
+msgctxt ""
+"03020401.xhp\n"
"tit\n"
"help.text"
-msgid "DefObj Statement [Runtime]"
-msgstr "Оператор DefObj [динамичен]"
+msgid "ChDir Statement [Runtime]"
+msgstr "Оператор ChDir [динамичен]"
-#: 03101700.xhp
+#: 03020401.xhp
msgctxt ""
-"03101700.xhp\n"
-"bm_id3149811\n"
+"03020401.xhp\n"
+"bm_id3150178\n"
"help.text"
-msgid "<bookmark_value>DefObj statement</bookmark_value>"
-msgstr "<bookmark_value>DefObj, оператор</bookmark_value>"
+msgid "<bookmark_value>ChDir statement</bookmark_value>"
+msgstr "<bookmark_value>ChDir, оператор</bookmark_value>"
-#: 03101700.xhp
+#: 03020401.xhp
msgctxt ""
-"03101700.xhp\n"
-"hd_id3149811\n"
+"03020401.xhp\n"
+"hd_id3150178\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03101700.xhp\" name=\"DefObj Statement [Runtime]\">DefObj Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03101700.xhp\" name=\"Оператор DefObj [динамичен]\">Оператор DefObj [динамичен]</link>"
+msgid "<link href=\"text/sbasic/shared/03020401.xhp\" name=\"ChDir Statement [Runtime]\">ChDir Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020401.xhp\" name=\"Оператор ChDir [динамичен]\">Оператор ChDir [динамичен]</link>"
-#: 03101700.xhp
+#: 03020401.xhp
msgctxt ""
-"03101700.xhp\n"
-"par_id3147573\n"
+"03020401.xhp\n"
+"par_id3153126\n"
"2\n"
"help.text"
-msgid "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified."
-msgstr "Операторът DefObj установява подразбиран тип данни според диапазон от букви в случай, че не е зададена ключова дума или знак за деклариране на тип."
+msgid "Changes the current directory or drive."
+msgstr "Сменя текущата директория или устройство."
-#: 03101700.xhp
+#: 03020401.xhp
msgctxt ""
-"03101700.xhp\n"
-"hd_id3150504\n"
+"03020401.xhp\n"
+"par_id9783013\n"
+"help.text"
+msgid "This runtime statement currently does not work as documented. See <link href=\"http://www.openoffice.org/issues/show_bug.cgi?id=30692\">this issue</link> for more information."
+msgstr "Този оператор в момента не работи според документацията. Вижте <link href=\"http://www.openoffice.org/issues/show_bug.cgi?id=30692\">този дефект</link> за повече информация."
+
+#: 03020401.xhp
+msgctxt ""
+"03020401.xhp\n"
+"hd_id3154347\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03101700.xhp
+#: 03020401.xhp
msgctxt ""
-"03101700.xhp\n"
-"par_id3147530\n"
+"03020401.xhp\n"
+"par_id3153897\n"
"4\n"
"help.text"
-msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
-msgstr "Defxxx Characterrange1[, Characterrange2[,...]]"
+msgid "ChDir Text As String"
+msgstr "ChDir Text As String"
-#: 03101700.xhp
+#: 03020401.xhp
msgctxt ""
-"03101700.xhp\n"
-"hd_id3153896\n"
+"03020401.xhp\n"
+"hd_id3148664\n"
"5\n"
"help.text"
msgid "Parameters:"
msgstr "Параметри:"
-#: 03101700.xhp
+#: 03020401.xhp
msgctxt ""
-"03101700.xhp\n"
-"par_id3148552\n"
+"03020401.xhp\n"
+"par_id3150543\n"
"6\n"
"help.text"
-msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set the default data type for."
-msgstr "<emph>Characterrange:</emph> букви, определящи диапазона от променливи, за които искате да зададете подразбиран тип данни."
+msgid "<emph>Text:</emph> Any string expression that specifies the directory path or drive."
+msgstr "<emph>Text:</emph> низов израз, задаващ пътя на директорията или устройството."
-#: 03101700.xhp
+#: 03020401.xhp
msgctxt ""
-"03101700.xhp\n"
-"par_id3150358\n"
+"03020401.xhp\n"
+"par_id3152598\n"
"7\n"
"help.text"
-msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
-msgstr "<emph>xxx:</emph> ключова дума, дефинираща подразбирания тип данни:"
+msgid "If you only want to change the current drive, enter the drive letter followed by a colon."
+msgstr "Ако желаете да промените само текущото устройство, въведете буква на устройство, последвана от двоеточие."
-#: 03101700.xhp
+#: 03020401.xhp
msgctxt ""
-"03101700.xhp\n"
-"par_id3148798\n"
+"03020401.xhp\n"
+"hd_id3151116\n"
"8\n"
"help.text"
-msgid "<emph>Keyword: </emph>Default variable type"
-msgstr "<emph>Ключова дума:</emph> Подразбиран тип данни"
-
-#: 03101700.xhp
-msgctxt ""
-"03101700.xhp\n"
-"par_id3150769\n"
-"9\n"
-"help.text"
-msgid "<emph>DefObj:</emph> Object"
-msgstr "<emph>DefObj:</emph> Object"
-
-#: 03101700.xhp
-msgctxt ""
-"03101700.xhp\n"
-"hd_id3156212\n"
-"10\n"
-"help.text"
msgid "Example:"
msgstr "Пример:"
-#: 03101700.xhp
-msgctxt ""
-"03101700.xhp\n"
-"par_id3153969\n"
-"12\n"
-"help.text"
-msgid "REM Prefix definitions for variable types:"
-msgstr "REM Дефиниране с префикс за променливи от даден тип:"
-
-#: 03101700.xhp
-msgctxt ""
-"03101700.xhp\n"
-"par_id3156424\n"
-"13\n"
-"help.text"
-msgid "DefBool b"
-msgstr "DefBool b"
-
-#: 03101700.xhp
-msgctxt ""
-"03101700.xhp\n"
-"par_id3159254\n"
-"14\n"
-"help.text"
-msgid "DefDate t"
-msgstr "DefDate t"
-
-#: 03101700.xhp
-msgctxt ""
-"03101700.xhp\n"
-"par_id3150440\n"
-"15\n"
-"help.text"
-msgid "DefDbL d"
-msgstr "DefDbL d"
-
-#: 03101700.xhp
-msgctxt ""
-"03101700.xhp\n"
-"par_id3161832\n"
-"16\n"
-"help.text"
-msgid "DefInt i"
-msgstr "DefInt i"
-
-#: 03101700.xhp
-msgctxt ""
-"03101700.xhp\n"
-"par_id3145365\n"
-"17\n"
-"help.text"
-msgid "DefLng l"
-msgstr "DefLng l"
-
-#: 03101700.xhp
-msgctxt ""
-"03101700.xhp\n"
-"par_id3149481\n"
-"18\n"
-"help.text"
-msgid "DefObj o"
-msgstr "DefObj o"
-
-#: 03101700.xhp
-msgctxt ""
-"03101700.xhp\n"
-"par_id3152886\n"
-"19\n"
-"help.text"
-msgid "DefVar v"
-msgstr "DefVar v"
-
-#: 03103100.xhp
+#: 03020402.xhp
msgctxt ""
-"03103100.xhp\n"
+"03020402.xhp\n"
"tit\n"
"help.text"
-msgid "Let Statement [Runtime]"
-msgstr "Оператор Let [динамичен]"
+msgid "ChDrive Statement [Runtime]"
+msgstr "Оператор ChDrive [динамичен]"
-#: 03103100.xhp
+#: 03020402.xhp
msgctxt ""
-"03103100.xhp\n"
-"bm_id3147242\n"
+"03020402.xhp\n"
+"bm_id3145068\n"
"help.text"
-msgid "<bookmark_value>Let statement</bookmark_value>"
-msgstr "<bookmark_value>Let, оператор</bookmark_value>"
+msgid "<bookmark_value>ChDrive statement</bookmark_value>"
+msgstr "<bookmark_value>ChDrive, оператор</bookmark_value>"
-#: 03103100.xhp
+#: 03020402.xhp
msgctxt ""
-"03103100.xhp\n"
-"hd_id3147242\n"
+"03020402.xhp\n"
+"hd_id3145068\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03103100.xhp\" name=\"Let Statement [Runtime]\">Let Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03103100.xhp\" name=\"Оператор Let [динамичен]\">Оператор Let [динамичен]</link>"
+msgid "<link href=\"text/sbasic/shared/03020402.xhp\" name=\"ChDrive Statement [Runtime]\">ChDrive Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020402.xhp\" name=\"Оператор ChDrive [динамичен]\">Оператор ChDrive [динамичен]</link>"
-#: 03103100.xhp
+#: 03020402.xhp
msgctxt ""
-"03103100.xhp\n"
-"par_id3149233\n"
+"03020402.xhp\n"
+"par_id3149656\n"
"2\n"
"help.text"
-msgid "Assigns a value to a variable."
-msgstr "Присвоява стойност на променлива."
+msgid "Changes the current drive."
+msgstr "Сменя текущото устройство."
-#: 03103100.xhp
+#: 03020402.xhp
msgctxt ""
-"03103100.xhp\n"
-"hd_id3153127\n"
+"03020402.xhp\n"
+"hd_id3154138\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03103100.xhp
+#: 03020402.xhp
msgctxt ""
-"03103100.xhp\n"
-"par_id3154285\n"
+"03020402.xhp\n"
+"par_id3154685\n"
"4\n"
"help.text"
-msgid "[Let] VarName=Expression"
-msgstr "[Let] VarName=Expression"
+msgid "ChDrive Text As String"
+msgstr "ChDrive Text As String"
-#: 03103100.xhp
+#: 03020402.xhp
msgctxt ""
-"03103100.xhp\n"
-"hd_id3148944\n"
+"03020402.xhp\n"
+"hd_id3156423\n"
"5\n"
"help.text"
msgid "Parameters:"
msgstr "Параметри:"
-#: 03103100.xhp
+#: 03020402.xhp
msgctxt ""
-"03103100.xhp\n"
-"par_id3147560\n"
+"03020402.xhp\n"
+"par_id3145172\n"
"6\n"
"help.text"
-msgid "<emph>VarName:</emph> Variable that you want to assign a value to. Value and variable type must be compatible."
-msgstr "<emph>VarName:</emph> променлива, на която да бъде присвоена стойност. Стойността трябва да е съвместима с типа на променливата."
+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 "<emph>Text:</emph> низов израз със стойност буквата на новото устройство. Ако желаете, можете да използвате изписване като в <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL\">URL</link>."
-#: 03103100.xhp
+#: 03020402.xhp
msgctxt ""
-"03103100.xhp\n"
-"par_id3148451\n"
+"03020402.xhp\n"
+"par_id3145785\n"
"7\n"
"help.text"
-msgid "As in most BASIC dialects, the keyword <emph>Let</emph> is optional."
-msgstr "Както е в повечето диалекти на BASIC, ключовата дума <emph>Let</emph> не е задължителна."
+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 "На устройството трябва да е присвоена главна буква. В Windows буквата, която приписвате на устройството, е ограничена от настройката в LASTDRV. Ако аргументът за устройство е низ от няколко знака, се взима само първата буква. Ако опитате достъп до несъществуващо устройство, възниква грешка, която може да бъде обработена с оператора OnError."
-#: 03103100.xhp
+#: 03020402.xhp
msgctxt ""
-"03103100.xhp\n"
-"hd_id3145785\n"
+"03020402.xhp\n"
+"hd_id3153188\n"
"8\n"
"help.text"
msgid "Example:"
msgstr "Пример:"
-#: 03103100.xhp
-msgctxt ""
-"03103100.xhp\n"
-"par_id3152939\n"
-"12\n"
-"help.text"
-msgid "MsgBox Len(sText) ' returns 9"
-msgstr "MsgBox Len(sText) ' връща 9"
-
-#: 03010000.xhp
-msgctxt ""
-"03010000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Screen I/O Functions"
-msgstr "Входно-изходни функции за екрана"
-
-#: 03010000.xhp
-msgctxt ""
-"03010000.xhp\n"
-"hd_id3156280\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03010000.xhp\" name=\"Screen I/O Functions\">Screen I/O Functions</link>"
-msgstr "<link href=\"text/sbasic/shared/03010000.xhp\" name=\"Входно-изходни функции за екрана\">Входно-изходни функции за екрана</link>"
-
-#: 03010000.xhp
+#: 03020402.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id3153770\n"
-"2\n"
+"03020402.xhp\n"
+"par_id3152576\n"
+"10\n"
"help.text"
-msgid "This section describes the Runtime Functions used to call dialogs for the input and output of user entries."
-msgstr "В този раздел са описани функциите за показване на диалогови прозорци за въвеждане и извеждане на стойности."
+msgid "ChDrive \"D\" ' Only possible if a drive 'D' exists."
+msgstr "ChDrive \"D\" ' Възможно е само ако съществува устройство „D“."
-#: 03131600.xhp
+#: 03020403.xhp
msgctxt ""
-"03131600.xhp\n"
+"03020403.xhp\n"
"tit\n"
"help.text"
-msgid "CreateUnoService Function [Runtime]"
-msgstr "Функция CreateUnoService [динамична]"
+msgid "CurDir Function [Runtime]"
+msgstr "Функция CurDir [динамична]"
-#: 03131600.xhp
+#: 03020403.xhp
msgctxt ""
-"03131600.xhp\n"
-"bm_id3150682\n"
+"03020403.xhp\n"
+"bm_id3153126\n"
"help.text"
-msgid "<bookmark_value>CreateUnoService function</bookmark_value>"
-msgstr "<bookmark_value>CreateUnoService, функция</bookmark_value>"
+msgid "<bookmark_value>CurDir function</bookmark_value>"
+msgstr "<bookmark_value>CurDir, функция</bookmark_value>"
-#: 03131600.xhp
+#: 03020403.xhp
msgctxt ""
-"03131600.xhp\n"
-"hd_id3150682\n"
+"03020403.xhp\n"
+"hd_id3153126\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03131600.xhp\" name=\"CreateUnoService Function [Runtime]\">CreateUnoService Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03131600.xhp\" name=\"Функция CreateUnoService [динамична]\">Функция CreateUnoService [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03020403.xhp\">CurDir Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020403.xhp\">Функция CurDir [динамична]</link>"
-#: 03131600.xhp
+#: 03020403.xhp
msgctxt ""
-"03131600.xhp\n"
-"par_id3152924\n"
+"03020403.xhp\n"
+"par_id3156343\n"
"2\n"
"help.text"
-msgid "Instantiates a Uno service with the ProcessServiceManager."
-msgstr "Връща екземпляр на услуга на Uno от ProcessServiceManager."
+msgid "Returns a variant string that represents the current path of the specified drive."
+msgstr "Връща вариантен низ, който представлява текущия път на зададеното устройство."
-#: 03131600.xhp
+#: 03020403.xhp
msgctxt ""
-"03131600.xhp\n"
-"hd_id3152801\n"
+"03020403.xhp\n"
+"hd_id3149457\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03131600.xhp
+#: 03020403.xhp
msgctxt ""
-"03131600.xhp\n"
-"par_id3153346\n"
+"03020403.xhp\n"
+"par_id3153381\n"
"4\n"
"help.text"
-msgid "oService = CreateUnoService( Uno service name )"
-msgstr "oService = CreateUnoService(име на услуга на Uno)"
+msgid "CurDir [(Text As String)]"
+msgstr "CurDir [(Text As String)]"
-#: 03131600.xhp
+#: 03020403.xhp
msgctxt ""
-"03131600.xhp\n"
-"par_idN1060F\n"
+"03020403.xhp\n"
+"hd_id3154366\n"
+"5\n"
"help.text"
-msgid "For a list of available services, go to: http://api.libreoffice.org/docs/common/ref/com/sun/star/module-ix.html"
-msgstr "За списък на наличните услуги вижте http://api.libreoffice.org/docs/common/ref/com/sun/star/module-ix.html"
+msgid "Return value:"
+msgstr "Връщана стойност:"
-#: 03131600.xhp
+#: 03020403.xhp
msgctxt ""
-"03131600.xhp\n"
-"hd_id3151111\n"
-"5\n"
+"03020403.xhp\n"
+"par_id3156281\n"
+"6\n"
"help.text"
-msgid "Examples:"
-msgstr "Примери:"
+msgid "String"
+msgstr "String"
-#: 03131600.xhp
+#: 03020403.xhp
msgctxt ""
-"03131600.xhp\n"
-"par_id3154046\n"
-"6\n"
+"03020403.xhp\n"
+"hd_id3156423\n"
+"7\n"
"help.text"
-msgid "oIntrospection = CreateUnoService( \"com.sun.star.beans.Introspection\" )"
-msgstr "oIntrospection = CreateUnoService( \"com.sun.star.beans.Introspection\" )"
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 03131600.xhp
+#: 03020403.xhp
msgctxt ""
-"03131600.xhp\n"
-"bm_id8334604\n"
+"03020403.xhp\n"
+"par_id3153193\n"
+"8\n"
"help.text"
-msgid "<bookmark_value>filepicker;API service</bookmark_value>"
-msgstr "<bookmark_value>избор на файл;услуга на ППИ</bookmark_value>"
+msgid "<emph>Text:</emph> Any string expression that specifies an existing drive (for example, \"C\" for the first partition of the first hard drive)."
+msgstr "<emph>Text:</emph> низов израз, задаващ съществуващо устройство (например \"C\" за първия дял на първия твърд диск)."
-#: 03131600.xhp
+#: 03020403.xhp
msgctxt ""
-"03131600.xhp\n"
-"par_idN10625\n"
+"03020403.xhp\n"
+"par_id3155133\n"
+"9\n"
"help.text"
-msgid "The following code uses a service to open a file open dialog:"
-msgstr "Следващият код използва услуга, за да покаже диалог за отваряне на файл:"
+msgid "If no drive is specified or if the drive is a zero-length string (\"\"), CurDir returns the path for the current drive. $[officename] Basic reports an error if the syntax of the drive description is incorrect, the drive does not exist, or if the drive letter occurs after the letter defined in the CONFIG.SYS with the Lastdrive statement."
+msgstr "Ако не е зададено устройство или ако е зададен низ с нулева дължина (\"\"), CurDir връща пътя за текущото устройство. $[officename] Basic докладва грешка, ако синтаксисът на описанието на устройство е неправилен, ако устройството не съществува или ако буквата на устройство е след тази, зададена в CONFIG.SYS с оператора Lastdrive."
-#: 03131600.xhp
+#: 03020403.xhp
msgctxt ""
-"03131600.xhp\n"
-"par_idN1062B\n"
+"03020403.xhp\n"
+"par_id3150010\n"
+"10\n"
"help.text"
-msgid "fName = FileOpenDialog (\"Please select a file\")"
-msgstr "fName = FileOpenDialog (\"Моля, изберете файл\")"
+msgid "This function is not case-sensitive."
+msgstr "Тази функция е нечувствителна към регистъра на буквите."
-#: 03131600.xhp
+#: 03020403.xhp
msgctxt ""
-"03131600.xhp\n"
-"par_idN10630\n"
+"03020403.xhp\n"
+"hd_id3155411\n"
+"11\n"
"help.text"
-msgid "Print \"file chosen: \"+fName"
-msgstr "Print \"Избран файл: \" + fName"
+msgid "Example:"
+msgstr "Пример:"
-#: 03030104.xhp
+#: 03020404.xhp
msgctxt ""
-"03030104.xhp\n"
+"03020404.xhp\n"
"tit\n"
"help.text"
-msgid "Month Function [Runtime]"
-msgstr "Функция Month [динамична]"
+msgid "Dir Function [Runtime]"
+msgstr "Функция Dir [динамична]"
-#: 03030104.xhp
+#: 03020404.xhp
msgctxt ""
-"03030104.xhp\n"
-"bm_id3153127\n"
+"03020404.xhp\n"
+"bm_id3154347\n"
"help.text"
-msgid "<bookmark_value>Month function</bookmark_value>"
-msgstr "<bookmark_value>Month, функция</bookmark_value>"
+msgid "<bookmark_value>Dir function</bookmark_value>"
+msgstr "<bookmark_value>Dir, функция</bookmark_value>"
-#: 03030104.xhp
+#: 03020404.xhp
msgctxt ""
-"03030104.xhp\n"
-"hd_id3153127\n"
+"03020404.xhp\n"
+"hd_id3154347\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03030104.xhp\" name=\"Month Function [Runtime]\">Month Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03030104.xhp\" name=\"Функция Month [динамична]\">Функция Month [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03020404.xhp\" name=\"Dir Function [Runtime]\">Dir Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020404.xhp\" name=\"Функция Dir [динамична]\">Функция Dir [динамична]</link>"
-#: 03030104.xhp
+#: 03020404.xhp
msgctxt ""
-"03030104.xhp\n"
-"par_id3148550\n"
+"03020404.xhp\n"
+"par_id3153381\n"
"2\n"
"help.text"
-msgid "Returns the month of a year from a serial date that is generated by the DateSerial or the DateValue function."
-msgstr "Връща месеца от годината по зададено серийно число на дата, генерирано от функцията DateSerial или DateValue."
+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 "Връща името на файл, директория или всички файлове и директории в устройство или директория, които отговарят на зададения път за търсене."
-#: 03030104.xhp
+#: 03020404.xhp
msgctxt ""
-"03030104.xhp\n"
-"hd_id3145068\n"
+"03020404.xhp\n"
+"hd_id3154365\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03030104.xhp
+#: 03020404.xhp
msgctxt ""
-"03030104.xhp\n"
-"par_id3150398\n"
+"03020404.xhp\n"
+"par_id3156282\n"
"4\n"
"help.text"
-msgid "Month (Number)"
-msgstr "Month (Number)"
+msgid "Dir [(Text As String) [, Attrib As Integer]]"
+msgstr "Dir [(Text As String) [, Attrib As Integer]]"
-#: 03030104.xhp
+#: 03020404.xhp
msgctxt ""
-"03030104.xhp\n"
-"hd_id3154366\n"
+"03020404.xhp\n"
+"hd_id3156424\n"
"5\n"
"help.text"
msgid "Return value:"
msgstr "Връщана стойност:"
-#: 03030104.xhp
+#: 03020404.xhp
msgctxt ""
-"03030104.xhp\n"
-"par_id3154125\n"
+"03020404.xhp\n"
+"par_id3153193\n"
"6\n"
"help.text"
-msgid "Integer"
-msgstr "Integer"
+msgid "String"
+msgstr "String"
-#: 03030104.xhp
+#: 03020404.xhp
msgctxt ""
-"03030104.xhp\n"
-"hd_id3150768\n"
+"03020404.xhp\n"
+"hd_id3153770\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Параметри:"
-#: 03030104.xhp
+#: 03020404.xhp
msgctxt ""
-"03030104.xhp\n"
-"par_id3156423\n"
+"03020404.xhp\n"
+"par_id3161831\n"
"8\n"
"help.text"
-msgid "<emph>Number:</emph> Numeric expression that contains the serial date number that is used to determine the month of the year."
-msgstr "<emph>Number:</emph> числов израз – серийно число на дата, за която желаете да изчислите месеца от годината."
+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 "<emph>Text:</emph> низов израз, задаващ пътя за търсене – директория или файл. Този аргумент може да бъде зададен само при първото изикване на функцията Dir. Ако желаете, можете да въведете пътя във вид на <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL\">URL</link>."
-#: 03030104.xhp
+#: 03020404.xhp
msgctxt ""
-"03030104.xhp\n"
-"par_id3153770\n"
+"03020404.xhp\n"
+"par_id3146974\n"
"9\n"
"help.text"
-msgid "This function is the opposite of the <emph>DateSerial </emph>function. It returns the month in the year that corresponds to the serial date that is generated by <emph>DateSerial</emph> or <emph>DateValue</emph>. For example, the expression"
-msgstr "Тази функция е противоположна на <emph>DateSerial</emph> и връща месеца от годината по зададено серийно число на дата, генерирано от функцията <emph>DateSerial</emph> или <emph>DateValue</emph>. Например изразът"
+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 "<emph>Attrib:</emph> целочислен израз, задаващ битовете за атрибутите на файла. Функцията Dir връща само файлове или директории, отговарящи на зададените атрибути. Можете да комбинирате няколко атрибута, като съберете стойностите им:"
-#: 03030104.xhp
+#: 03020404.xhp
msgctxt ""
-"03030104.xhp\n"
-"par_id3145366\n"
+"03020404.xhp\n"
+"par_id3149666\n"
"11\n"
"help.text"
-msgid "returns the value 12."
-msgstr "връща стойността 12."
+msgid "0 : Normal files."
+msgstr "0: нормални файлове"
-#: 03030104.xhp
+#: 03020404.xhp
msgctxt ""
-"03030104.xhp\n"
-"hd_id3146923\n"
-"12\n"
+"03020404.xhp\n"
+"par_id3147427\n"
+"15\n"
+"help.text"
+msgid "16 : Returns the name of the directory only."
+msgstr "16: връща само името на директорията"
+
+#: 03020404.xhp
+msgctxt ""
+"03020404.xhp\n"
+"par_id3153952\n"
+"16\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 "Използвайте този атрибут, за да проверите дали съществува файл или директория или да намерите всички файлове и папки в определена директория."
+
+#: 03020404.xhp
+msgctxt ""
+"03020404.xhp\n"
+"par_id3159156\n"
+"17\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 "За да проверите дали файл съществува, въведете пълния път и името на файла. Ако името на файл или директория не съществува, функцията Dir връща празен низ (\"\")."
+
+#: 03020404.xhp
+msgctxt ""
+"03020404.xhp\n"
+"par_id3154012\n"
+"18\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\\*.sxw\". 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 "За да получите списък на всички съществуващи файлове в определена директория, направете следното: първо извикайте функцията Dir, като зададете пълния път за търсене на файловете, например \"D:\\Files\\*.sxw\". Ако пътят е правилен и търсенето открие поне един файл, функцията Dir връща името на първия файл, който отговаря на пътя за търсене. За да получите още имена на файлове, които отговарят на пътя, извикайте Dir отново, но без аргументи."
+
+#: 03020404.xhp
+msgctxt ""
+"03020404.xhp\n"
+"par_id3147348\n"
+"19\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 "За да получите само директориите, използвайте параметъра за атрибути. Същото важи и ако искате да откриете името на даден том (например дял от твърд диск)."
+
+#: 03020404.xhp
+msgctxt ""
+"03020404.xhp\n"
+"hd_id3154942\n"
+"20\n"
"help.text"
msgid "Example:"
msgstr "Пример:"
-#: 03030104.xhp
+#: 03020404.xhp
msgctxt ""
-"03030104.xhp\n"
-"par_id3149664\n"
-"14\n"
+"03020404.xhp\n"
+"par_id3148455\n"
+"22\n"
"help.text"
-msgid "MsgBox \"\" & Month(Now) ,64,\"The current month\""
-msgstr "MsgBox \"\" & Month(Now), 64, \"Текущ месец\""
+msgid "' Displays all files and directories"
+msgstr "' Показва всички файлове и директории"
-#: 03090301.xhp
+#: 03020404.xhp
msgctxt ""
-"03090301.xhp\n"
+"03020404.xhp\n"
+"par_id3153416\n"
+"27\n"
+"help.text"
+msgid "sDir=\"Directories:\""
+msgstr "sDir = \"Директории:\""
+
+#: 03020404.xhp
+msgctxt ""
+"03020404.xhp\n"
+"par_id3154253\n"
+"34\n"
+"help.text"
+msgid "' Get the directories"
+msgstr "' Получаване на директориите"
+
+#: 03020405.xhp
+msgctxt ""
+"03020405.xhp\n"
"tit\n"
"help.text"
-msgid "GoSub...Return Statement [Runtime]"
-msgstr "Оператор GoSub…Return [динамичен]"
+msgid "FileAttr-Function [Runtime]"
+msgstr "Функция FileAttr [динамична]"
-#: 03090301.xhp
+#: 03020405.xhp
msgctxt ""
-"03090301.xhp\n"
-"bm_id3147242\n"
+"03020405.xhp\n"
+"bm_id3153380\n"
"help.text"
-msgid "<bookmark_value>GoSub...Return statement</bookmark_value>"
-msgstr "<bookmark_value>GoSub…Return, оператор</bookmark_value>"
+msgid "<bookmark_value>FileAttr function</bookmark_value>"
+msgstr "<bookmark_value>FileAttr, функция</bookmark_value>"
-#: 03090301.xhp
+#: 03020405.xhp
msgctxt ""
-"03090301.xhp\n"
-"hd_id3147242\n"
+"03020405.xhp\n"
+"hd_id3153380\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090301.xhp\" name=\"GoSub...Return Statement [Runtime]\">GoSub...Return Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090301.xhp\" name=\"Оператор GoSub…Return [динамичен]\">Оператор GoSub…Return [динамичен]</link>"
+msgid "<link href=\"text/sbasic/shared/03020405.xhp\" name=\"FileAttr-Function [Runtime]\">FileAttr Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020405.xhp\" name=\"Функция FileAttr [динамична]\">Функция FileAttr [динамична]</link>"
-#: 03090301.xhp
+#: 03020405.xhp
msgctxt ""
-"03090301.xhp\n"
-"par_id3145316\n"
+"03020405.xhp\n"
+"par_id3154366\n"
"2\n"
"help.text"
-msgid "Calls a subroutine that is indicated by a label from a subroutine or a function. The statements following the label are executed until the next Return statement. Afterwards, the program continues with the statement that follows the <emph>GoSub </emph>statement."
-msgstr "Извиква подпрограма, зададена с етикет на процедура или функция. Операторите, следващи етикета, се изпълняват до следващия оператор Return. След това изпълнението продължава с оператора, следващ <emph>GoSub</emph>."
+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 "Връща режима за достъп или номера за достъп до файл, отворен с оператора Open. Номерът за достъп до файл зависи от операционната система (OSH = Operating System Handle, манипулатор на операционната система)."
-#: 03090301.xhp
+#: 03020405.xhp
msgctxt ""
-"03090301.xhp\n"
-"hd_id3145609\n"
+"03020405.xhp\n"
+"par_id3153364\n"
"3\n"
"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
+msgid "If you use a 32-Bit operating system, you cannot use the FileAttr-Function to determine the file access number."
+msgstr "Ако работите с 32-битова операционна система, не можете да определите номера за достъп до файл с функцията FileAttr."
-#: 03090301.xhp
+#: 03020405.xhp
msgctxt ""
-"03090301.xhp\n"
-"par_id3145069\n"
+"03020405.xhp\n"
+"par_id3163713\n"
"4\n"
"help.text"
-msgid "see Parameters"
-msgstr "виж Параметри"
+msgid "See also: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>"
+msgstr "Виж също: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>"
-#: 03090301.xhp
+#: 03020405.xhp
msgctxt ""
-"03090301.xhp\n"
-"hd_id3147265\n"
+"03020405.xhp\n"
+"hd_id3151116\n"
"5\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 03090301.xhp
+#: 03020405.xhp
msgctxt ""
-"03090301.xhp\n"
-"par_id3148664\n"
+"03020405.xhp\n"
+"par_id3154012\n"
"6\n"
"help.text"
-msgid "Sub/Function"
-msgstr "Sub/Function"
+msgid "FileAttr (FileNumber As Integer, Attribute As Integer)"
+msgstr "FileAttr (FileNumber As Integer, Attribute As Integer)"
-#: 03090301.xhp
+#: 03020405.xhp
msgctxt ""
-"03090301.xhp\n"
-"par_id3150400\n"
+"03020405.xhp\n"
+"hd_id3147349\n"
"7\n"
"help.text"
-msgid "statement block"
-msgstr "операторен блок"
+msgid "Return value:"
+msgstr "Връщана стойност:"
-#: 03090301.xhp
+#: 03020405.xhp
msgctxt ""
-"03090301.xhp\n"
-"par_id3154140\n"
+"03020405.xhp\n"
+"par_id3146974\n"
"8\n"
"help.text"
-msgid "Label"
-msgstr "Етикет"
+msgid "Integer"
+msgstr "Integer"
-#: 03090301.xhp
+#: 03020405.xhp
msgctxt ""
-"03090301.xhp\n"
-"par_id3150869\n"
+"03020405.xhp\n"
+"hd_id3153728\n"
"9\n"
"help.text"
-msgid "statement block"
-msgstr "операторен блок"
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 03090301.xhp
+#: 03020405.xhp
msgctxt ""
-"03090301.xhp\n"
-"par_id3154909\n"
+"03020405.xhp\n"
+"par_id3151074\n"
"10\n"
"help.text"
-msgid "GoSub Label"
-msgstr "GoSub Етикет"
+msgid "<emph>FileNumber:</emph> The number of the file that was opened with the Open statement."
+msgstr "<emph>FileNumber:</emph> номерът на файла, отворен с оператора Open."
-#: 03090301.xhp
+#: 03020405.xhp
msgctxt ""
-"03090301.xhp\n"
-"par_id3153969\n"
+"03020405.xhp\n"
+"par_id3144766\n"
"11\n"
"help.text"
-msgid "Exit Sub/Function"
-msgstr "Exit Sub/Function"
+msgid "<emph>Attribute:</emph> Integer expression that indicates the type of file information that you want to return. The following values are possible:"
+msgstr "<emph>Attribute:</emph> целочислен израз, указващ типа на търсената информация. Възможни са следните стойности:"
-#: 03090301.xhp
+#: 03020405.xhp
msgctxt ""
-"03090301.xhp\n"
-"par_id3154685\n"
+"03020405.xhp\n"
+"par_id3147396\n"
"12\n"
"help.text"
-msgid "Label:"
-msgstr "Етикет:"
+msgid "1: The FileAttr-Function indicates the access mode of the file."
+msgstr "1: Функцията FileAttr намира режима на достъп до файла."
-#: 03090301.xhp
+#: 03020405.xhp
msgctxt ""
-"03090301.xhp\n"
-"par_id3145786\n"
+"03020405.xhp\n"
+"par_id3149959\n"
"13\n"
"help.text"
-msgid "statement block"
-msgstr "операторен блок"
+msgid "2: The FileAttr-Function returns the file access number of the operating system."
+msgstr "2: Функцията FileAttr връща номера за достъп до файла от операционната система."
-#: 03090301.xhp
+#: 03020405.xhp
msgctxt ""
-"03090301.xhp\n"
-"par_id3159252\n"
+"03020405.xhp\n"
+"par_id3154018\n"
"14\n"
"help.text"
-msgid "Return"
-msgstr "Return"
+msgid "If you specify a parameter attribute with a value of 1, the following return values apply:"
+msgstr "Ако зададете на параметъра за атрибут стойност 1, важат следните стойности на резултата:"
-#: 03090301.xhp
+#: 03020405.xhp
msgctxt ""
-"03090301.xhp\n"
-"par_id3154321\n"
+"03020405.xhp\n"
+"par_id3149124\n"
"15\n"
"help.text"
-msgid "End Sub/Function"
-msgstr "End Sub/Function"
+msgid "1 - INPUT (file open for input)"
+msgstr "1 – INPUT (файлът е отворен за четене)"
-#: 03090301.xhp
+#: 03020405.xhp
msgctxt ""
-"03090301.xhp\n"
-"par_id3147318\n"
+"03020405.xhp\n"
+"par_id3156275\n"
"16\n"
"help.text"
-msgid "The <emph>GoSub</emph> 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 "Операторът <emph>GoSub</emph> извиква локална подпрограма, зададена с етикет в рамките на процедура или функция. Името на етикета трябва да завършва с двоеточие (\":\")."
+msgid "2 - OUTPUT (file open for output)"
+msgstr "2 – OUTPUT (файлът е отворен за записване)"
-#: 03090301.xhp
+#: 03020405.xhp
msgctxt ""
-"03090301.xhp\n"
-"par_id3153190\n"
+"03020405.xhp\n"
+"par_id3155066\n"
"17\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 "Ако изпълнението стигне до оператор <emph>Return</emph>, който не е предшестван от <emph>GoSub</emph>, $[officename] Basic показва съобщение за грешка. Използвайте <emph>Exit Sub</emph> или <emph>Exit Function</emph>, за да гарантирате, че изпълнението ще напусне процедурата или функцията преди следващия оператор Return."
+msgid "4 - RANDOM (file open for random access)"
+msgstr "4 – RANDOM (файлът е отворен за произволен достъп)"
-#: 03090301.xhp
+#: 03020405.xhp
msgctxt ""
-"03090301.xhp\n"
-"par_id3145799\n"
+"03020405.xhp\n"
+"par_id3148406\n"
+"18\n"
+"help.text"
+msgid "8 - APPEND (file open for appending)"
+msgstr "8 – APPEND (файлът е отворен за добавяне)"
+
+#: 03020405.xhp
+msgctxt ""
+"03020405.xhp\n"
+"par_id3154757\n"
"19\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 "Следващият пример илюстрира употребата на <emph>GoSub</emph> и <emph>Return</emph>. Чрез двукратно изпълняване на част от кода програмата изчислява квадратния корен на две числа, въведени от потребителя."
+msgid "32 - BINARY (file open in binary mode)."
+msgstr "32 – BINARY (файлът е отворен в двоичен режим)."
-#: 03090301.xhp
+#: 03020405.xhp
msgctxt ""
-"03090301.xhp\n"
-"hd_id3156284\n"
+"03020405.xhp\n"
+"hd_id3147339\n"
"20\n"
"help.text"
msgid "Example:"
msgstr "Пример:"
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"par_id3146970\n"
-"25\n"
-"help.text"
-msgid "iInputa = Int(InputBox$ \"Enter the first number: \",\"NumberInput\"))"
-msgstr "iInputa = Int(InputBox$ \"Въведете първото число: \", \"Въвеждане\"))"
-
-#: 03090301.xhp
+#: 03020405.xhp
msgctxt ""
-"03090301.xhp\n"
-"par_id3150329\n"
-"26\n"
+"03020405.xhp\n"
+"par_id3155607\n"
+"29\n"
"help.text"
-msgid "iInputb = Int(InputBox$ \"Enter the second number: \",\"NumberInput\"))"
-msgstr "iInputb = Int(InputBox$ \"Въведете второто число: \", \"Въвеждане\"))"
+msgid "Print #iNumber, \"This is a line of text\""
+msgstr "Print #iNumber, \"Това е ред с текст\""
-#: 03090301.xhp
+#: 03020405.xhp
msgctxt ""
-"03090301.xhp\n"
-"par_id3154756\n"
-"29\n"
+"03020405.xhp\n"
+"par_id3150361\n"
+"30\n"
"help.text"
-msgid "Print \"The square root of\";iInputa;\" is\";iInputc"
-msgstr "Print \"Квадратният корен на\"; iInputa; \" е \"; iInputc"
+msgid "MsgBox FileAttr(#iNumber, 1 ),0,\"Access mode\""
+msgstr "MsgBox FileAttr(#iNumber, 1), 0, \"Режим на достъп\""
-#: 03090301.xhp
+#: 03020405.xhp
msgctxt ""
-"03090301.xhp\n"
-"par_id3147340\n"
-"32\n"
+"03020405.xhp\n"
+"par_id3149817\n"
+"31\n"
"help.text"
-msgid "Print \"The square root of\";iInputb;\" is\";iInputc"
-msgstr "Print \"Квадратният корен на \"; iInputb; \" е \"; iInputc"
+msgid "MsgBox FileAttr(#iNumber, 2 ),0,\"File attribute\""
+msgstr "MsgBox FileAttr(#iNumber, 2), 0, \"Атрибути на файла\""
-#: 03090408.xhp
+#: 03020406.xhp
msgctxt ""
-"03090408.xhp\n"
+"03020406.xhp\n"
"tit\n"
"help.text"
-msgid "Stop Statement [Runtime]"
-msgstr "Оператор Stop [динамичен]"
+msgid "FileCopy Statement [Runtime]"
+msgstr "Оператор FileCopy [динамичен]"
-#: 03090408.xhp
+#: 03020406.xhp
msgctxt ""
-"03090408.xhp\n"
-"bm_id3153311\n"
+"03020406.xhp\n"
+"bm_id3154840\n"
"help.text"
-msgid "<bookmark_value>Stop statement</bookmark_value>"
-msgstr "<bookmark_value>Stop, оператор</bookmark_value>"
+msgid "<bookmark_value>FileCopy statement</bookmark_value>"
+msgstr "<bookmark_value>FileCopy, оператор</bookmark_value>"
-#: 03090408.xhp
+#: 03020406.xhp
msgctxt ""
-"03090408.xhp\n"
-"hd_id3153311\n"
+"03020406.xhp\n"
+"hd_id3154840\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090408.xhp\" name=\"Stop Statement [Runtime]\">Stop Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090408.xhp\" name=\"Оператор Stop [динамичен]\">Оператор Stop [динамичен]</link>"
+msgid "<link href=\"text/sbasic/shared/03020406.xhp\" name=\"FileCopy Statement [Runtime]\">FileCopy Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020406.xhp\" name=\"Оператор FileCopy [динамичен]\">Оператор FileCopy [динамичен]</link>"
-#: 03090408.xhp
+#: 03020406.xhp
msgctxt ""
-"03090408.xhp\n"
-"par_id3154142\n"
+"03020406.xhp\n"
+"par_id3149497\n"
"2\n"
"help.text"
-msgid "Stops the execution of the Basic program."
-msgstr "Спира изпълнението на програма на Basic."
+msgid "Copies a file."
+msgstr "Копира файл."
-#: 03090408.xhp
+#: 03020406.xhp
msgctxt ""
-"03090408.xhp\n"
-"hd_id3153126\n"
+"03020406.xhp\n"
+"hd_id3147443\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03090408.xhp
+#: 03020406.xhp
msgctxt ""
-"03090408.xhp\n"
-"par_id3156023\n"
+"03020406.xhp\n"
+"par_id3146957\n"
"4\n"
"help.text"
-msgid "Stop"
-msgstr "Stop"
+msgid "FileCopy TextFrom As String, TextTo As String"
+msgstr "FileCopy TextFrom As String, TextTo As String"
-#: 03090408.xhp
+#: 03020406.xhp
msgctxt ""
-"03090408.xhp\n"
-"hd_id3156344\n"
+"03020406.xhp\n"
+"hd_id3153825\n"
"5\n"
"help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 03020406.xhp
+msgctxt ""
+"03020406.xhp\n"
+"par_id3155390\n"
+"6\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 "<emph>TextFrom:</emph> низов израз със стойност името на файла, който искате да се копира. Изразът може да включва информация за път и устройство. Ако желаете, можете да въведете пътя във вид на <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL\">URL</link>."
+
+#: 03020406.xhp
+msgctxt ""
+"03020406.xhp\n"
+"par_id3150669\n"
+"7\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 "<emph>TextTo:</emph> низов израз, който задава къде да бъде копиран файлът. Може да съдържа устройство, път и име на файл – местоназначение или път във вид на URL."
+
+#: 03020406.xhp
+msgctxt ""
+"03020406.xhp\n"
+"par_id3150791\n"
+"8\n"
+"help.text"
+msgid "You can only use the FileCopy statement to copy files that are not opened."
+msgstr "С оператора FileCopy можете да копирате само файлове, които не са отворени."
+
+#: 03020406.xhp
+msgctxt ""
+"03020406.xhp\n"
+"hd_id3125863\n"
+"9\n"
+"help.text"
msgid "Example:"
msgstr "Пример:"
-#: 03010305.xhp
+#: 03020407.xhp
msgctxt ""
-"03010305.xhp\n"
+"03020407.xhp\n"
"tit\n"
"help.text"
-msgid "RGB Function [Runtime]"
-msgstr "Функция RGB [динамична]"
+msgid "FileDateTime Function [Runtime]"
+msgstr "Функция FileDateTime [динамична]"
-#: 03010305.xhp
+#: 03020407.xhp
msgctxt ""
-"03010305.xhp\n"
-"hd_id3150792\n"
+"03020407.xhp\n"
+"bm_id3153361\n"
+"help.text"
+msgid "<bookmark_value>FileDateTime function</bookmark_value>"
+msgstr "<bookmark_value>FileDateTime, функция</bookmark_value>"
+
+#: 03020407.xhp
+msgctxt ""
+"03020407.xhp\n"
+"hd_id3153361\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03010305.xhp\" name=\"RGB Function [Runtime]\">RGB Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03010305.xhp\" name=\"Функция RGB [динамична]\">Функция RGB [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03020407.xhp\" name=\"FileDateTime Function [Runtime]\">FileDateTime Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020407.xhp\" name=\"Функция FileDateTime [динамична]\">Функция FileDateTime [динамична]</link>"
-#: 03010305.xhp
+#: 03020407.xhp
msgctxt ""
-"03010305.xhp\n"
-"par_id3150447\n"
+"03020407.xhp\n"
+"par_id3156423\n"
"2\n"
"help.text"
-msgid "Returns a <link href=\"text/sbasic/shared/00000003.xhp#farbcodes\" name=\"long integer color value\">long integer color value</link> consisting of red, green, and blue components."
-msgstr "Връща <link href=\"text/sbasic/shared/00000003.xhp#farbcodes\" name=\"цветова стойност от тип long integer\">цветова стойност от тип long integer</link>, съдържаща червен, зелен и син компонент."
+msgid "Returns a string that contains the date and the time that a file was created or last modified."
+msgstr "Връща низ, който съдържа датата и часа на създаване или последна промяна на даден файл."
-#: 03010305.xhp
+#: 03020407.xhp
msgctxt ""
-"03010305.xhp\n"
-"hd_id3147229\n"
+"03020407.xhp\n"
+"hd_id3154685\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03010305.xhp
+#: 03020407.xhp
msgctxt ""
-"03010305.xhp\n"
-"par_id3155132\n"
+"03020407.xhp\n"
+"par_id3154124\n"
"4\n"
"help.text"
-msgid "RGB (Red, Green, Blue)"
-msgstr "RGB (Red, Green, Blue – червено, зелено, синьо)"
+msgid "FileDateTime (Text As String)"
+msgstr "FileDateTime (Text As String)"
-#: 03010305.xhp
+#: 03020407.xhp
msgctxt ""
-"03010305.xhp\n"
-"hd_id3156442\n"
+"03020407.xhp\n"
+"hd_id3150448\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Връщана стойност:"
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 03010305.xhp
+#: 03020407.xhp
msgctxt ""
-"03010305.xhp\n"
+"03020407.xhp\n"
"par_id3159153\n"
"6\n"
"help.text"
-msgid "Long"
-msgstr "Long"
+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 "<emph>Text:</emph> низов израз, който еднозначно посочва файл (без заместващи знаци). Можете да зададете пътя във вид на <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL\">URL</link>."
-#: 03010305.xhp
+#: 03020407.xhp
msgctxt ""
-"03010305.xhp\n"
-"hd_id3154013\n"
+"03020407.xhp\n"
+"par_id3155306\n"
"7\n"
"help.text"
-msgid "Parameter:"
-msgstr "Параметри:"
+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 "Тази функция определя точния час на създаване или последна промяна на файл и го връща във формат „ММ.ДД.ГГГГ ЧЧ.ММ.СС“."
-#: 03010305.xhp
+#: 03020407.xhp
msgctxt ""
-"03010305.xhp\n"
-"par_id3152597\n"
+"03020407.xhp\n"
+"hd_id3146119\n"
"8\n"
"help.text"
-msgid "<emph>Red</emph>: Any integer expression that represents the red component (0-255) of the composite color."
-msgstr "<emph>Red</emph>: целочислен израз, представящ червения компонент (0-255) на съставния цвят."
-
-#: 03010305.xhp
-msgctxt ""
-"03010305.xhp\n"
-"par_id3146974\n"
-"9\n"
-"help.text"
-msgid "<emph>Green</emph>: Any integer expression that represents the green component (0-255) of the composite color."
-msgstr "<emph>Green</emph>: целочислен израз, представящ зеления компонент (0-255) на съставния цвят."
-
-#: 03010305.xhp
-msgctxt ""
-"03010305.xhp\n"
-"par_id3151113\n"
-"10\n"
-"help.text"
-msgid "<emph>Blue</emph>: Any integer expression that represents the blue component (0-255) of the composite color."
-msgstr "<emph>Blue</emph>: целочислен израз, представящ синия компонент (0-255) на съставния цвят."
-
-#: 03010305.xhp
-msgctxt ""
-"03010305.xhp\n"
-"hd_id3147435\n"
-"11\n"
-"help.text"
msgid "Example:"
msgstr "Пример:"
-#: 03010305.xhp
-msgctxt ""
-"03010305.xhp\n"
-"par_id3145647\n"
-"15\n"
-"help.text"
-msgid "MsgBox \"The color \" & lVar & \" consists of:\" & Chr(13) &_"
-msgstr "MsgBox \"Цветът \" & lVar & \" съдържа:\" & Chr(13) &_"
-
-#: 03010305.xhp
-msgctxt ""
-"03010305.xhp\n"
-"par_id3154491\n"
-"16\n"
-"help.text"
-msgid "\"red= \" & red(lVar) & Chr(13)&_"
-msgstr "\"червено= \" & Red(lVar) & Chr(13)&_"
-
-#: 03010305.xhp
-msgctxt ""
-"03010305.xhp\n"
-"par_id3149401\n"
-"17\n"
-"help.text"
-msgid "\"green= \" & green(lVar) & Chr(13)&_"
-msgstr "\"зелено= \" & Green(lVar) & Chr(13)&_"
-
-#: 03010305.xhp
-msgctxt ""
-"03010305.xhp\n"
-"par_id3150716\n"
-"18\n"
-"help.text"
-msgid "\"blue= \" & blue(lVar) & Chr(13) , 64,\"colors\""
-msgstr "\"синьо= \" & Blue(lVar) & Chr(13), 64, \"Цветове\""
-
-#: 03102600.xhp
+#: 03020408.xhp
msgctxt ""
-"03102600.xhp\n"
+"03020408.xhp\n"
"tit\n"
"help.text"
-msgid "IsNull Function [Runtime]"
-msgstr "Функция IsNull [динамична]"
+msgid "FileLen-Function [Runtime]"
+msgstr "Функция FileLen [динамична]"
-#: 03102600.xhp
+#: 03020408.xhp
msgctxt ""
-"03102600.xhp\n"
-"bm_id3155555\n"
+"03020408.xhp\n"
+"bm_id3153126\n"
"help.text"
-msgid "<bookmark_value>IsNull function</bookmark_value><bookmark_value>Null value</bookmark_value>"
-msgstr "<bookmark_value>IsNull, функция</bookmark_value><bookmark_value>Null value</bookmark_value>"
+msgid "<bookmark_value>FileLen function</bookmark_value>"
+msgstr "<bookmark_value>FileLen, функция</bookmark_value>"
-#: 03102600.xhp
+#: 03020408.xhp
msgctxt ""
-"03102600.xhp\n"
-"hd_id3155555\n"
+"03020408.xhp\n"
+"hd_id3153126\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03102600.xhp\" name=\"IsNull Function [Runtime]\">IsNull Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03102600.xhp\" name=\"Функция IsNull [динамична]\">Функция IsNull [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03020408.xhp\" name=\"FileLen-Function [Runtime]\">FileLen Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020408.xhp\" name=\"Функция FileLen [динамична]\">Функция FileLen [динамична]</link>"
-#: 03102600.xhp
+#: 03020408.xhp
msgctxt ""
-"03102600.xhp\n"
-"par_id3146957\n"
+"03020408.xhp\n"
+"par_id3145068\n"
"2\n"
"help.text"
-msgid "Tests if a Variant contains the special Null value, indicating that the variable does not contain data."
-msgstr "Проверява дали променлива от тип Variant съдържа специалната стойност Null, която означава, че променливата не съдържа данни."
+msgid "Returns the length of a file in bytes."
+msgstr "Връща дължината на файл в байтове."
-#: 03102600.xhp
+#: 03020408.xhp
msgctxt ""
-"03102600.xhp\n"
-"hd_id3150670\n"
+"03020408.xhp\n"
+"hd_id3159414\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03102600.xhp
+#: 03020408.xhp
msgctxt ""
-"03102600.xhp\n"
-"par_id3150984\n"
+"03020408.xhp\n"
+"par_id3149656\n"
"4\n"
"help.text"
-msgid "IsNull (Var)"
-msgstr "IsNull (Var)"
+msgid "FileLen (Text As String)"
+msgstr "FileLen (Text As String)"
-#: 03102600.xhp
+#: 03020408.xhp
msgctxt ""
-"03102600.xhp\n"
-"hd_id3149514\n"
+"03020408.xhp\n"
+"hd_id3148798\n"
"5\n"
"help.text"
msgid "Return value:"
msgstr "Връщана стойност:"
-#: 03102600.xhp
+#: 03020408.xhp
msgctxt ""
-"03102600.xhp\n"
-"par_id3145609\n"
+"03020408.xhp\n"
+"par_id3156282\n"
"6\n"
"help.text"
-msgid "Bool"
-msgstr "Bool"
+msgid "Long"
+msgstr "Long"
-#: 03102600.xhp
+#: 03020408.xhp
msgctxt ""
-"03102600.xhp\n"
-"hd_id3149669\n"
+"03020408.xhp\n"
+"hd_id3150768\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Параметри:"
-#: 03102600.xhp
+#: 03020408.xhp
msgctxt ""
-"03102600.xhp\n"
-"par_id3159414\n"
+"03020408.xhp\n"
+"par_id3153193\n"
"8\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 "<emph>Var:</emph> променлива, която бъде проверена. Ако променливата от типа Variant има стойност Null, функцията връща <emph>True</emph>, в противен случай – <emph>False</emph>."
+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 "<emph>Text:</emph> низов израз, който еднозначно посочва файл. Може да бъде във вид на <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL\">URL</link>."
-#: 03102600.xhp
+#: 03020408.xhp
msgctxt ""
-"03102600.xhp\n"
-"par_idN1062A\n"
+"03020408.xhp\n"
+"par_id3150439\n"
+"9\n"
"help.text"
-msgid "<emph>Null</emph> - This value is used for a variant data sub type without valid contents."
-msgstr "<emph>Null:</emph> тази стойност се използва като подтип на Variant, когато няма валидно съдържание."
+msgid "This function determines the length of a file. If the FileLen 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 Lof function."
+msgstr "Тази функция определя дължината на файл. Ако бъде извикана за отворен файл, връща дължината му отпреди отварянето. За да определите текущата дължина на отворен файл, използвайте функцията Lof."
-#: 03102600.xhp
+#: 03020408.xhp
msgctxt ""
-"03102600.xhp\n"
-"hd_id3153381\n"
-"9\n"
+"03020408.xhp\n"
+"hd_id3163710\n"
+"10\n"
"help.text"
msgid "Example:"
msgstr "Пример:"
-#: 03070300.xhp
+#: 03020409.xhp
msgctxt ""
-"03070300.xhp\n"
+"03020409.xhp\n"
"tit\n"
"help.text"
-msgid "\"+\" Operator [Runtime]"
-msgstr "Операция „+“ [динамична]"
+msgid "GetAttr Function [Runtime]"
+msgstr "Функция GetAttr [динамична]"
-#: 03070300.xhp
+#: 03020409.xhp
msgctxt ""
-"03070300.xhp\n"
-"bm_id3145316\n"
+"03020409.xhp\n"
+"bm_id3150984\n"
"help.text"
-msgid "<bookmark_value>\"+\" operator (mathematical)</bookmark_value>"
-msgstr "<bookmark_value>„+“, математическа операция</bookmark_value>"
+msgid "<bookmark_value>GetAttr function</bookmark_value>"
+msgstr "<bookmark_value>GetAttr, функция</bookmark_value>"
-#: 03070300.xhp
+#: 03020409.xhp
msgctxt ""
-"03070300.xhp\n"
-"hd_id3145316\n"
+"03020409.xhp\n"
+"hd_id3150984\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03070300.xhp\">\"+\" Operator [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03070300.xhp\">Операция „+“ [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03020409.xhp\" name=\"GetAttr Function [Runtime]\">GetAttr Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020409.xhp\" name=\"Функция GetAttr [динамична]\">Функция GetAttr [динамична]</link>"
-#: 03070300.xhp
+#: 03020409.xhp
msgctxt ""
-"03070300.xhp\n"
-"par_id3145068\n"
+"03020409.xhp\n"
+"par_id3154347\n"
"2\n"
"help.text"
-msgid "Adds or combines two expressions."
-msgstr "Събира две стойности."
+msgid "Returns a bit pattern that identifies the file type or the name of a volume or a directory."
+msgstr "Връща комбинация от битове, които отразяват типа на файла или името на том или директория."
-#: 03070300.xhp
+#: 03020409.xhp
msgctxt ""
-"03070300.xhp\n"
-"hd_id3144500\n"
+"03020409.xhp\n"
+"hd_id3149457\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03070300.xhp
+#: 03020409.xhp
msgctxt ""
-"03070300.xhp\n"
-"par_id3150358\n"
+"03020409.xhp\n"
+"par_id3150359\n"
"4\n"
"help.text"
-msgid "Result = Expression1 + Expression2"
-msgstr "Result = Expression1 + Expression2"
+msgid "GetAttr (Text As String)"
+msgstr "GetAttr (Text As String)"
-#: 03070300.xhp
+#: 03020409.xhp
msgctxt ""
-"03070300.xhp\n"
-"hd_id3150400\n"
+"03020409.xhp\n"
+"hd_id3151211\n"
"5\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "Return value:"
+msgstr "Връщана стойност:"
-#: 03070300.xhp
+#: 03020409.xhp
msgctxt ""
-"03070300.xhp\n"
-"par_id3154123\n"
+"03020409.xhp\n"
+"par_id3154909\n"
"6\n"
"help.text"
-msgid "<emph>Result:</emph> Any numerical expression that contains the result of the addition."
-msgstr "<emph>Result:</emph> числов израз, който съдържа резултата от събирането."
+msgid "Integer"
+msgstr "Integer"
-#: 03070300.xhp
+#: 03020409.xhp
msgctxt ""
-"03070300.xhp\n"
-"par_id3150870\n"
+"03020409.xhp\n"
+"hd_id3145172\n"
"7\n"
"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any numerical expressions that you want to combine or to add."
-msgstr "<emph>Expression1, Expression2:</emph> числови изрази, чиито стойности искате да съберете."
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 03070300.xhp
+#: 03020409.xhp
msgctxt ""
-"03070300.xhp\n"
-"hd_id3153969\n"
+"03020409.xhp\n"
+"par_id3151042\n"
"8\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
-
-#: 03120311.xhp
-msgctxt ""
-"03120311.xhp\n"
-"tit\n"
-"help.text"
-msgid "Trim Function [Runtime]"
-msgstr "Функция Trim [динамична]"
-
-#: 03120311.xhp
-msgctxt ""
-"03120311.xhp\n"
-"bm_id3150616\n"
-"help.text"
-msgid "<bookmark_value>Trim function</bookmark_value>"
-msgstr "<bookmark_value>Trim, функция</bookmark_value>"
+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 "<emph>Text:</emph> низов израз, който еднозначно посочва файл. Може да бъде във вид на <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL\">URL</link>."
-#: 03120311.xhp
+#: 03020409.xhp
msgctxt ""
-"03120311.xhp\n"
-"hd_id3150616\n"
-"1\n"
+"03020409.xhp\n"
+"par_id3161831\n"
+"9\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120311.xhp\" name=\"Trim Function [Runtime]\">Trim Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120311.xhp\" name=\"Функция Trim [динамична]\">Функция Trim [динамична]</link>"
+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 "Тази функция определя атрибутите на зададен файл и връща комбинация от битове, отразяваща следните атрибути:"
-#: 03120311.xhp
+#: 03020409.xhp
msgctxt ""
-"03120311.xhp\n"
-"par_id3149177\n"
-"2\n"
+"03020409.xhp\n"
+"hd_id3145364\n"
+"10\n"
"help.text"
-msgid "Removes all leading and trailing spaces from a string expression."
-msgstr "Премахва всички интервали от началото и края на низ."
+msgid "Value"
+msgstr "Стойност"
-#: 03120311.xhp
+#: 03020409.xhp
msgctxt ""
-"03120311.xhp\n"
-"hd_id3159157\n"
-"3\n"
+"03020409.xhp\n"
+"par_id3147349\n"
+"11\n"
"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
+msgid "0 : Normal files."
+msgstr "0: нормални файлове"
-#: 03120311.xhp
+#: 03020409.xhp
msgctxt ""
-"03120311.xhp\n"
-"par_id3155341\n"
-"4\n"
+"03020409.xhp\n"
+"par_id3147434\n"
+"12\n"
"help.text"
-msgid "Trim( Text As String )"
-msgstr "Trim( Text As String )"
+msgid "1 : Read-only files."
+msgstr "1: файл само за четене"
-#: 03120311.xhp
+#: 03020409.xhp
msgctxt ""
-"03120311.xhp\n"
-"hd_id3155388\n"
-"5\n"
+"03020409.xhp\n"
+"par_id3159154\n"
+"15\n"
"help.text"
-msgid "Return value:"
-msgstr "Връщана стойност:"
+msgid "8 : Returns the name of the volume"
+msgstr "8: име на том"
-#: 03120311.xhp
+#: 03020409.xhp
msgctxt ""
-"03120311.xhp\n"
-"par_id3143228\n"
-"6\n"
+"03020409.xhp\n"
+"par_id3145271\n"
+"16\n"
"help.text"
-msgid "String"
-msgstr "String"
+msgid "16 : Returns the name of the directory only."
+msgstr "16: връща само името на директорията"
-#: 03120311.xhp
+#: 03020409.xhp
msgctxt ""
-"03120311.xhp\n"
-"hd_id3145609\n"
-"7\n"
+"03020409.xhp\n"
+"par_id3153953\n"
+"17\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "32 : File was changed since last backup (Archive bit)."
+msgstr "32: файлът е бил променен след последното архивиране (бит за архивиране)"
-#: 03120311.xhp
+#: 03020409.xhp
msgctxt ""
-"03120311.xhp\n"
-"par_id3159414\n"
-"8\n"
+"03020409.xhp\n"
+"par_id3156444\n"
+"18\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression."
-msgstr "<emph>Text:</emph> израз със стойност низ."
+msgid "If you want to know if a bit of the attribute byte is set, use the following query method:"
+msgstr "Ако искате да знаете дали определен бит от байта с атрибути е единица, използвайте следния метод:"
-#: 03120311.xhp
+#: 03020409.xhp
msgctxt ""
-"03120311.xhp\n"
-"hd_id3148663\n"
-"10\n"
+"03020409.xhp\n"
+"hd_id3153094\n"
+"19\n"
"help.text"
msgid "Example:"
msgstr "Пример:"
-#: 03000000.xhp
-msgctxt ""
-"03000000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Run-Time Functions"
-msgstr "Динамични функции"
-
-#: 03000000.xhp
-msgctxt ""
-"03000000.xhp\n"
-"hd_id3152895\n"
-"1\n"
-"help.text"
-msgid "<variable id=\"doc_title\"><link href=\"text/sbasic/shared/03000000.xhp\" name=\"Run-Time Functions\">Run-Time Functions</link></variable>"
-msgstr "<variable id=\"doc_title\"><link href=\"text/sbasic/shared/03000000.xhp\" name=\"Динамични функции\">Динамични функции</link></variable>"
-
-#: 03000000.xhp
+#: 03020409.xhp
msgctxt ""
-"03000000.xhp\n"
-"par_id3148983\n"
-"2\n"
+"03020409.xhp\n"
+"par_id3155415\n"
+"21\n"
"help.text"
-msgid "This section describes the Runtime Functions of <item type=\"productname\">%PRODUCTNAME</item> Basic."
-msgstr "В този раздел са описани динамичните функции (runtime functions) на <item type=\"productname\">%PRODUCTNAME</item> Basic."
+msgid "On Error GoTo ErrorHandler ' Define target for error handler"
+msgstr "On Error Goto ErrorHandler ' Местоназначение за обработка на грешки"
-#: 03020103.xhp
+#: 03020410.xhp
msgctxt ""
-"03020103.xhp\n"
+"03020410.xhp\n"
"tit\n"
"help.text"
-msgid "Open Statement[Runtime]"
-msgstr "Оператор Open [динамичен]"
+msgid "Kill Statement [Runtime]"
+msgstr "Оператор Kill [динамичен]"
-#: 03020103.xhp
+#: 03020410.xhp
msgctxt ""
-"03020103.xhp\n"
-"bm_id3150791\n"
+"03020410.xhp\n"
+"bm_id3153360\n"
"help.text"
-msgid "<bookmark_value>Open statement</bookmark_value>"
-msgstr "<bookmark_value>Open, оператор</bookmark_value>"
+msgid "<bookmark_value>Kill statement</bookmark_value>"
+msgstr "<bookmark_value>Kill, оператор</bookmark_value>"
-#: 03020103.xhp
+#: 03020410.xhp
msgctxt ""
-"03020103.xhp\n"
-"hd_id3150791\n"
+"03020410.xhp\n"
+"hd_id3153360\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open Statement[Runtime]\">Open Statement[Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03020103.xhp\" name=\"Оператор Open [динамичен]\">Оператор Open [динамичен]</link>"
+msgid "<link href=\"text/sbasic/shared/03020410.xhp\" name=\"Kill Statement [Runtime]\">Kill Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020410.xhp\" name=\"Оператор Kill [динамичен]\">Оператор Kill [динамичен]</link>"
-#: 03020103.xhp
+#: 03020410.xhp
msgctxt ""
-"03020103.xhp\n"
-"par_id3150769\n"
+"03020410.xhp\n"
+"par_id3151211\n"
"2\n"
"help.text"
-msgid "Opens a data channel."
-msgstr "Отваря канал за данни."
+msgid "Deletes a file from a disk."
+msgstr "Изтрива файл от диск."
-#: 03020103.xhp
+#: 03020410.xhp
msgctxt ""
-"03020103.xhp\n"
-"hd_id3147230\n"
+"03020410.xhp\n"
+"hd_id3150767\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03020103.xhp
+#: 03020410.xhp
msgctxt ""
-"03020103.xhp\n"
-"par_id3154124\n"
+"03020410.xhp\n"
+"par_id3154685\n"
"4\n"
"help.text"
-msgid "Open FileName As String [For Mode] [Access IOMode] [Protected] As [#]FileNumber As Integer [Len = DatasetLength]"
-msgstr "Open FileName As String [For Mode] [Access IOMode] [Protected] As [#]FileNumber As Integer [Len = DatasetLength]"
+msgid "Kill File As String"
+msgstr "Kill File As String"
-#: 03020103.xhp
+#: 03020410.xhp
msgctxt ""
-"03020103.xhp\n"
-"hd_id3156280\n"
+"03020410.xhp\n"
+"hd_id3153194\n"
"5\n"
"help.text"
msgid "Parameters:"
msgstr "Параметри:"
-#: 03020103.xhp
+#: 03020410.xhp
msgctxt ""
-"03020103.xhp\n"
-"par_id3155132\n"
+"03020410.xhp\n"
+"par_id3150440\n"
"6\n"
"help.text"
-msgid "<emph>FileName: </emph>Name and path of the file that you wan 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 "<emph>FileName:</emph> име и път на файла, който желаете да отворите. Ако се опитате да четете от несъществуващ файл (Access = Read), се показва съобщение за грешка. Ако се опитате да записвате в несъществуващ файл (Access = Write), се създава нов файл."
+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 "<emph>File:</emph> низов израз, който еднозначно посочва файл. Може да бъде във вид на <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL\">URL</link>."
-#: 03020103.xhp
+#: 03020410.xhp
msgctxt ""
-"03020103.xhp\n"
-"par_id3149262\n"
+"03020410.xhp\n"
+"hd_id3148645\n"
"7\n"
"help.text"
-msgid "<emph>Mode:</emph> Keyword that specifies the file mode. Valid values: Append (append to sequential file), Binary (data can be accessed by bytes using Get and Put), Input (opens data channel for reading), Output (opens data channel for writing), and Random (edits relative files)."
-msgstr "<emph>Mode:</emph> ключова дума, указваща режима на работа с файла. Валидните стойности са: Append (добавяне към файл с последователен достъп), Binary (данните могат да се четат и записват на ниво байт с Get и Put), Input (отваря канал за данни за четене), Output (отваря канал за данни за записване) и Random (за редактиране на файлове с произволен достъп)."
+msgid "Example:"
+msgstr "Пример:"
-#: 03020103.xhp
+#: 03020410.xhp
msgctxt ""
-"03020103.xhp\n"
-"par_id3154014\n"
-"8\n"
+"03020410.xhp\n"
+"par_id3163710\n"
+"9\n"
"help.text"
-msgid "<emph>IOMode:</emph> Keyword that defines the access type. Valid values: Read (read-only), Write (write-only), Read Write (both)."
-msgstr "<emph>IOMode:</emph> ключова дума, указваща вида на достъпа. Валидните стойности са: Read (само за четене), Write (само за запис), Read Write (и двете)."
+msgid "Kill \"C:\\datafile.dat\" ' File must be created in advance"
+msgstr "Kill \"C:\\datafile.dat\" ' Файлът трябва предварително да е създаден"
-#: 03020103.xhp
+#: 03020411.xhp
msgctxt ""
-"03020103.xhp\n"
-"par_id3150011\n"
-"9\n"
+"03020411.xhp\n"
+"tit\n"
"help.text"
-msgid "<emph>Protected:</emph> Keyword that defines the security status of a file after opening. Valid values: Shared (file may be opened by other applications), Lock Read (file is protected against reading), Lock Write (file is protected against writing), Lock Read Write (denies file access)."
-msgstr "<emph>Protected:</emph> ключова дума за защита на файла след отварянето му. Валидните стойности са: Shared (файлът може да бъде отварян от други приложения), Lock Read (файл е защитен срещу четене), Lock Write (файлът е защитен срещу записване), Lock Read Write (дотъпът до файла се отказва)."
+msgid "MkDir Statement [Runtime]"
+msgstr "Оператор MkDir [динамичен]"
-#: 03020103.xhp
+#: 03020411.xhp
msgctxt ""
-"03020103.xhp\n"
-"par_id3153190\n"
-"10\n"
+"03020411.xhp\n"
+"bm_id3156421\n"
"help.text"
-msgid "<emph>FileNumber:</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 "<emph>FileNumber:</emph> целочислен израз със стойност от 0 до 511, представляваща номер на свободен канал за данни. Впоследствие можете да изпращате команди към този канал за данни, за да работите с файла. Файловият номер трябва да бъде определен с функцията FreeFile непосредствено преди оператора Open."
+msgid "<bookmark_value>MkDir statement</bookmark_value>"
+msgstr "<bookmark_value>MkDir, оператор</bookmark_value>"
-#: 03020103.xhp
+#: 03020411.xhp
msgctxt ""
-"03020103.xhp\n"
-"par_id3151115\n"
-"11\n"
+"03020411.xhp\n"
+"hd_id3156421\n"
+"1\n"
"help.text"
-msgid "<emph>DatasetLength:</emph> For random access files, set the length of the records."
-msgstr "<emph>DatasetLength:</emph> Задава дължината на записите за файлове с произволен достъп."
+msgid "<link href=\"text/sbasic/shared/03020411.xhp\" name=\"MkDir Statement [Runtime]\">MkDir Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020411.xhp\" name=\"MkDir Statement [Runtime]\">MkDir Statement [Runtime]</link>"
-#: 03020103.xhp
+#: 03020411.xhp
msgctxt ""
-"03020103.xhp\n"
-"par_id3153418\n"
-"12\n"
+"03020411.xhp\n"
+"par_id3147000\n"
+"2\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 "За да променяте съдържанието на файл, той трябва да е отворен с оператора Open. Ако се опитате да отворите файл, който вече е отворен, се показва съобщение за грешка."
+msgid "Creates a new directory on a data medium."
+msgstr "Създава нова директория върху носител на данни."
-#: 03020103.xhp
+#: 03020411.xhp
msgctxt ""
-"03020103.xhp\n"
-"hd_id3149123\n"
-"13\n"
+"03020411.xhp\n"
+"hd_id3148520\n"
+"3\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 03020103.xhp
+#: 03020411.xhp
msgctxt ""
-"03020103.xhp\n"
-"par_id3154705\n"
-"22\n"
+"03020411.xhp\n"
+"par_id3155150\n"
+"4\n"
"help.text"
-msgid "Print #iNumber, \"This is a line of text\""
-msgstr "Print #iNumber, \"Това е ред с текст\""
+msgid "MkDir Text As String"
+msgstr "MkDir Text As String"
-#: 03020103.xhp
+#: 03020411.xhp
msgctxt ""
-"03020103.xhp\n"
-"par_id3146916\n"
-"23\n"
+"03020411.xhp\n"
+"hd_id3156027\n"
+"5\n"
"help.text"
-msgid "Print #iNumber, \"This is another line of text\""
-msgstr "Print #iNumber, \"Това е още един ред с текст\""
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 03070200.xhp
+#: 03020411.xhp
msgctxt ""
-"03070200.xhp\n"
-"tit\n"
+"03020411.xhp\n"
+"par_id3153750\n"
+"6\n"
"help.text"
-msgid "\"*\" Operator [Runtime]"
-msgstr "Операция „*“ [динамична]"
+msgid "<emph>Text:</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 "<emph>Text:</emph> низов израз, задаващ името и пътя на създаваната директория. Може да бъде във вид на <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL\">URL</link>."
-#: 03070200.xhp
+#: 03020411.xhp
msgctxt ""
-"03070200.xhp\n"
-"bm_id3147573\n"
+"03020411.xhp\n"
+"par_id3153311\n"
+"7\n"
"help.text"
-msgid "<bookmark_value>\"*\" operator (mathematical)</bookmark_value>"
-msgstr "<bookmark_value>„*“, математическа операция</bookmark_value>"
+msgid "If the path is not determined, the directory is created in the current directory."
+msgstr "Ако пътят не е определен, директорията се създава в текущата директория."
-#: 03070200.xhp
+#: 03020411.xhp
msgctxt ""
-"03070200.xhp\n"
-"hd_id3147573\n"
-"1\n"
+"03020411.xhp\n"
+"hd_id3155388\n"
+"8\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03070200.xhp\">\"*\" Operator [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03070200.xhp\">Операция „*“ [динамична]</link>"
+msgid "Example:"
+msgstr "Пример:"
-#: 03070200.xhp
+#: 03020411.xhp
msgctxt ""
-"03070200.xhp\n"
-"par_id3154347\n"
-"2\n"
+"03020411.xhp\n"
+"par_id3149762\n"
+"10\n"
"help.text"
-msgid "Multiplies two values."
-msgstr "Умножава две стойности."
+msgid "' Example for functions of the file organization"
+msgstr "' Пример за функциите за управление на файлове"
-#: 03070200.xhp
+#: 03020411.xhp
msgctxt ""
-"03070200.xhp\n"
-"hd_id3148946\n"
-"3\n"
+"03020411.xhp\n"
+"par_id3149669\n"
+"13\n"
"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
+msgid "Const sSubDir1 As String =\"Test\""
+msgstr "Const sSubDir1 As String =\"Test\""
-#: 03070200.xhp
+#: 03020411.xhp
msgctxt ""
-"03070200.xhp\n"
-"par_id3150358\n"
-"4\n"
+"03020411.xhp\n"
+"par_id3148663\n"
+"14\n"
"help.text"
-msgid "Result = Expression1 * Expression2"
-msgstr "Result = Expression1 * Expression2"
+msgid "Const sFile2 As String = \"Copied.tmp\""
+msgstr "Const sFile2 As String = \"Copied.tmp\""
-#: 03070200.xhp
+#: 03020411.xhp
msgctxt ""
-"03070200.xhp\n"
-"hd_id3150400\n"
-"5\n"
+"03020411.xhp\n"
+"par_id3154071\n"
+"15\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "Const sFile3 As String = \"Renamed.tmp\""
+msgstr "Const sFile3 As String = \"Renamed.tmp\""
-#: 03070200.xhp
+#: 03020411.xhp
msgctxt ""
-"03070200.xhp\n"
-"par_id3154365\n"
-"6\n"
+"03020411.xhp\n"
+"par_id3154217\n"
+"19\n"
"help.text"
-msgid "<emph>Result:</emph> Any numeric expression that records the result of a multiplication."
-msgstr "<emph>Result:</emph> числов израз, който съдържа резултата от умножението."
+msgid "If Dir(sSubDir1,16)=\"\" Then ' Does the directory exist?"
+msgstr "If Dir(sSubDir1, 16) = \"\" Then ' Съществува ли директорията?"
-#: 03070200.xhp
+#: 03020411.xhp
msgctxt ""
-"03070200.xhp\n"
-"par_id3154685\n"
-"7\n"
+"03020411.xhp\n"
+"par_id3147228\n"
+"21\n"
"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to multiply."
-msgstr "<emph>Expression1, Expression2:</emph> числови изрази, чиито стойности искате да умножите."
+msgid "MsgBox sFile,0,\"Create directory\""
+msgstr "MsgBox sFile, 0, \"Създаване на директория\""
-#: 03070200.xhp
+#: 03020411.xhp
msgctxt ""
-"03070200.xhp\n"
-"hd_id3153968\n"
-"8\n"
+"03020411.xhp\n"
+"par_id3153770\n"
+"26\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "MsgBox fSysURL(CurDir()),0,\"Current directory\""
+msgstr "MsgBox fSysURL(CurDir()), 0, \"Текуща директория\""
-#: 03020000.xhp
+#: 03020411.xhp
msgctxt ""
-"03020000.xhp\n"
-"tit\n"
+"03020411.xhp\n"
+"par_id3159154\n"
+"27\n"
"help.text"
-msgid "File I/O Functions"
-msgstr "Входно-изходни функции за файлове"
+msgid "MsgBox sFile & Chr(13) & FileDateTime( sFile ),0,\"Creation time\""
+msgstr "MsgBox sFile & Chr(13) & FileDateTime(sFile), 0, \"Час на създаване\""
-#: 03020000.xhp
+#: 03020411.xhp
msgctxt ""
-"03020000.xhp\n"
-"hd_id3156344\n"
-"1\n"
+"03020411.xhp\n"
+"par_id3149484\n"
+"28\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020000.xhp\" name=\"File I/O Functions\">File I/O Functions</link>"
-msgstr "<link href=\"text/sbasic/shared/03020000.xhp\" name=\"Входно-изходни функции за файлове\">Входно-изходни функции за файлове</link>"
+msgid "MsgBox sFile & Chr(13)& FileLen( sFile ),0,\"File length\""
+msgstr "MsgBox sFile & Chr(13) & FileLen(sFile), 0, \"Дължина на файла\""
-#: 03020000.xhp
+#: 03020411.xhp
msgctxt ""
-"03020000.xhp\n"
-"par_id3153360\n"
-"2\n"
+"03020411.xhp\n"
+"par_id3152885\n"
+"29\n"
"help.text"
-msgid "Use File I/O functions to create and manage user-defined (data) files."
-msgstr "Входно-изходните функции за файлове служат за създаване и управление на дефинирани от потребителя файлове с данни."
+msgid "MsgBox sFile & Chr(13)& GetAttr( sFile ),0,\"File attributes\""
+msgstr "MsgBox sFile & Chr(13) & GetAttr(sFile), 0, \"Атрибути на файла\""
-#: 03020000.xhp
+#: 03020411.xhp
msgctxt ""
-"03020000.xhp\n"
-"par_id3150398\n"
-"3\n"
+"03020411.xhp\n"
+"par_id3153952\n"
+"31\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 "Чрез тях можете да създавате файлове с произволен достъп, от които могат да се зареждат избрани записи чрез указване на поредния им номер. С файловите входно-изходни функции можете също да получавате информация за размери, пътища и дати на създаване на файлове и директории."
+msgid "' Rename in the same directory"
+msgstr "' Преименуване в същата директория"
-#: 03101000.xhp
+#: 03020411.xhp
msgctxt ""
-"03101000.xhp\n"
+"03020411.xhp\n"
+"par_id3147426\n"
+"34\n"
+"help.text"
+msgid "SetAttr( sFile, 0 ) 'Delete all attributes"
+msgstr "SetAttr(sFile, 0) 'Изтриваме всички атрибути"
+
+#: 03020411.xhp
+msgctxt ""
+"03020411.xhp\n"
+"par_id3148647\n"
+"35\n"
+"help.text"
+msgid "MsgBox sFile & Chr(13) & GetAttr( sFile ),0,\"New file attributes\""
+msgstr "MsgBox sFile & Chr(13) & GetAttr(sFile), 0, \"Нови атрибути на файла\""
+
+#: 03020411.xhp
+msgctxt ""
+"03020411.xhp\n"
+"par_id3150092\n"
+"40\n"
+"help.text"
+msgid "' Converts a system path in URL"
+msgstr "' Преобразува системен път в URL"
+
+#: 03020411.xhp
+msgctxt ""
+"03020411.xhp\n"
+"par_id3156276\n"
+"49\n"
+"help.text"
+msgid "' the colon with DOS"
+msgstr "' Двоеточие в DOS"
+
+#: 03020412.xhp
+msgctxt ""
+"03020412.xhp\n"
"tit\n"
"help.text"
-msgid "CStr Function [Runtime]"
-msgstr "Функция CStr [динамична]"
+msgid "Name Statement [Runtime]"
+msgstr "Оператор Name [динамичен]"
-#: 03101000.xhp
+#: 03020412.xhp
msgctxt ""
-"03101000.xhp\n"
-"bm_id3146958\n"
+"03020412.xhp\n"
+"bm_id3143268\n"
"help.text"
-msgid "<bookmark_value>CStr function</bookmark_value>"
-msgstr "<bookmark_value>CStr, функция</bookmark_value>"
+msgid "<bookmark_value>Name statement</bookmark_value>"
+msgstr "<bookmark_value>Name, оператор</bookmark_value>"
-#: 03101000.xhp
+#: 03020412.xhp
msgctxt ""
-"03101000.xhp\n"
-"hd_id3146958\n"
+"03020412.xhp\n"
+"hd_id3143268\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03101000.xhp\" name=\"CStr Function [Runtime]\">CStr Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03101000.xhp\" name=\"Функция CStr [динамична]\">Функция CStr [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03020412.xhp\" name=\"Name Statement [Runtime]\">Name Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020412.xhp\" name=\"Оператор Name [динамичен]\">Оператор Name [динамичен]</link>"
-#: 03101000.xhp
+#: 03020412.xhp
msgctxt ""
-"03101000.xhp\n"
-"par_id3147574\n"
+"03020412.xhp\n"
+"par_id3154346\n"
"2\n"
"help.text"
-msgid "Converts any numeric expression to a string expression."
-msgstr "Преобразува числова стойност в низ."
+msgid "Renames an existing file or directory."
+msgstr "Преименува съществуващ файл или директория."
-#: 03101000.xhp
+#: 03020412.xhp
msgctxt ""
-"03101000.xhp\n"
-"hd_id3148473\n"
+"03020412.xhp\n"
+"hd_id3156344\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03101000.xhp
+#: 03020412.xhp
msgctxt ""
-"03101000.xhp\n"
-"par_id3145315\n"
+"03020412.xhp\n"
+"par_id3153381\n"
"4\n"
"help.text"
-msgid "CStr (Expression)"
-msgstr "CStr (Expression)"
+msgid "Name OldName As String As NewName As String"
+msgstr "Name OldName As String As NewName As String"
-#: 03101000.xhp
+#: 03020412.xhp
msgctxt ""
-"03101000.xhp\n"
-"hd_id3153062\n"
+"03020412.xhp\n"
+"hd_id3153362\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Връщана стойност:"
-
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"par_id3153897\n"
-"6\n"
-"help.text"
-msgid "String"
-msgstr "String"
-
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"hd_id3154760\n"
-"7\n"
-"help.text"
msgid "Parameters:"
msgstr "Параметри:"
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"par_id3149457\n"
-"8\n"
-"help.text"
-msgid "<emph>Expression:</emph> Any valid string or numeric expression that you want to convert."
-msgstr "<emph>Expression:</emph> валиден низов или числов израз, който да бъде преобразуван."
-
-#: 03101000.xhp
+#: 03020412.xhp
msgctxt ""
-"03101000.xhp\n"
-"hd_id3150358\n"
-"9\n"
+"03020412.xhp\n"
+"par_id3151210\n"
+"6\n"
"help.text"
-msgid "Expression Types and Conversion Returns"
-msgstr "Тип на израза и резултат от преобразуванието"
+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 "<emph>OldName, NewName:</emph> низов израз – име на файл заедно с пътя. Може да са зададени във вид на <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL\">URL</link>."
-#: 03101000.xhp
+#: 03020412.xhp
msgctxt ""
-"03101000.xhp\n"
-"par_id3153192\n"
-"10\n"
+"03020412.xhp\n"
+"hd_id3125863\n"
+"8\n"
"help.text"
-msgid "Boolean :"
-msgstr "Boolean:"
+msgid "Example:"
+msgstr "Пример:"
-#: 03101000.xhp
+#: 03020412.xhp
msgctxt ""
-"03101000.xhp\n"
-"par_id3156422\n"
-"11\n"
+"03020412.xhp\n"
+"par_id3152462\n"
+"16\n"
"help.text"
-msgid "String that evaluates to either <emph>True</emph> or <emph>False</emph>."
-msgstr "Низ със стойност <emph>True</emph> или <emph>False</emph>."
+msgid "MsgBox \"File already exists\""
+msgstr "MsgBox \"Файлът вече съществува.\""
-#: 03101000.xhp
+#: 03020413.xhp
msgctxt ""
-"03101000.xhp\n"
-"par_id3147287\n"
-"12\n"
+"03020413.xhp\n"
+"tit\n"
"help.text"
-msgid "Date :"
-msgstr "Дата:"
+msgid "RmDir Statement [Runtime]"
+msgstr "Оператор RmDir [динамичен]"
-#: 03101000.xhp
+#: 03020413.xhp
msgctxt ""
-"03101000.xhp\n"
-"par_id3155411\n"
-"13\n"
+"03020413.xhp\n"
+"bm_id3148947\n"
"help.text"
-msgid "String that contains the date and time."
-msgstr "Низ, съдържащ датата и часа."
+msgid "<bookmark_value>RmDir statement</bookmark_value>"
+msgstr "<bookmark_value>RmDir, оператор</bookmark_value>"
-#: 03101000.xhp
+#: 03020413.xhp
msgctxt ""
-"03101000.xhp\n"
-"par_id3147428\n"
-"14\n"
+"03020413.xhp\n"
+"hd_id3148947\n"
+"1\n"
"help.text"
-msgid "Null :"
-msgstr "Null:"
+msgid "<link href=\"text/sbasic/shared/03020413.xhp\" name=\"RmDir Statement [Runtime]\">RmDir Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020413.xhp\" name=\"Оператор RmDir [динамичен]\">Оператор RmDir [динамичен]</link>"
-#: 03101000.xhp
+#: 03020413.xhp
msgctxt ""
-"03101000.xhp\n"
-"par_id3150486\n"
-"15\n"
+"03020413.xhp\n"
+"par_id3149457\n"
+"2\n"
"help.text"
-msgid "Run-time error."
-msgstr "Грешка при изпълнение."
+msgid "Deletes an existing directory from a data medium."
+msgstr "Изтрива съществуваща директория от носител на данни."
-#: 03101000.xhp
+#: 03020413.xhp
msgctxt ""
-"03101000.xhp\n"
-"par_id3153953\n"
-"16\n"
+"03020413.xhp\n"
+"hd_id3153361\n"
+"3\n"
"help.text"
-msgid "Empty :"
-msgstr "Празна стойност:"
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 03101000.xhp
+#: 03020413.xhp
msgctxt ""
-"03101000.xhp\n"
-"par_id3155306\n"
-"17\n"
+"03020413.xhp\n"
+"par_id3154367\n"
+"4\n"
"help.text"
-msgid "String without any characters."
-msgstr "Низ без знаци."
+msgid "RmDir Text As String"
+msgstr "RmDir Text As String"
-#: 03101000.xhp
+#: 03020413.xhp
msgctxt ""
-"03101000.xhp\n"
-"par_id3149260\n"
-"18\n"
+"03020413.xhp\n"
+"hd_id3156281\n"
+"5\n"
"help.text"
-msgid "Any :"
-msgstr "Произволен израз:"
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 03101000.xhp
+#: 03020413.xhp
msgctxt ""
-"03101000.xhp\n"
-"par_id3152938\n"
-"19\n"
+"03020413.xhp\n"
+"par_id3151042\n"
+"6\n"
"help.text"
-msgid "Corresponding number as string."
-msgstr "Съответното число като низ."
+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 "<emph>Text:</emph> низов израз – име и път на изтриваната директория. Може да е зададен във вид на <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL\">URL</link>."
-#: 03101000.xhp
+#: 03020413.xhp
msgctxt ""
-"03101000.xhp\n"
-"par_id3155738\n"
-"20\n"
+"03020413.xhp\n"
+"par_id3153192\n"
+"7\n"
"help.text"
-msgid "Zeros at the end of a floating-point number are not included in the returned string."
-msgstr "Нулите в края на число с плаваща запетая не се включват във връщания низ."
+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 "Ако не е зададен път, оперторът <emph>RmDir</emph> търси директорията за изтриване в текущия път. Ако не бъде намерена там, се показва съобщение за грешка."
-#: 03101000.xhp
+#: 03020413.xhp
msgctxt ""
-"03101000.xhp\n"
-"hd_id3154729\n"
-"21\n"
+"03020413.xhp\n"
+"hd_id3145271\n"
+"8\n"
"help.text"
msgid "Example:"
msgstr "Пример:"
-#: 03020101.xhp
+#: 03020414.xhp
msgctxt ""
-"03020101.xhp\n"
+"03020414.xhp\n"
"tit\n"
"help.text"
-msgid "Close Statement [Runtime]"
-msgstr "Оператор Close [динамичен]"
+msgid "SetAttr Statement [Runtime]"
+msgstr "Оператор SetAttr [динамичен]"
-#: 03020101.xhp
+#: 03020414.xhp
msgctxt ""
-"03020101.xhp\n"
-"bm_id3157896\n"
+"03020414.xhp\n"
+"bm_id3147559\n"
"help.text"
-msgid "<bookmark_value>Close statement</bookmark_value>"
-msgstr "<bookmark_value>Close, оператор</bookmark_value>"
+msgid "<bookmark_value>SetAttr statement</bookmark_value>"
+msgstr "<bookmark_value>SetAttr, оператор</bookmark_value>"
-#: 03020101.xhp
+#: 03020414.xhp
msgctxt ""
-"03020101.xhp\n"
-"hd_id3157896\n"
+"03020414.xhp\n"
+"hd_id3147559\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020101.xhp\" name=\"Close Statement [Runtime]\">Close Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03020101.xhp\" name=\"Оператор Close [динамичен]\">Оператор Close [динамичен]</link>"
+msgid "<link href=\"text/sbasic/shared/03020414.xhp\" name=\"SetAttr Statement [Runtime]\">SetAttr Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020414.xhp\" name=\"Оператор SetAttr [динамичен]\">Оператор SetAttr [динамичен]</link>"
-#: 03020101.xhp
+#: 03020414.xhp
msgctxt ""
-"03020101.xhp\n"
-"par_id3147573\n"
+"03020414.xhp\n"
+"par_id3147264\n"
"2\n"
"help.text"
-msgid "Closes a specified file that was opened with the Open statement."
-msgstr "Затваря зададен файл, който е бил отворен с оператора Open."
+msgid "Sets the attribute information for a specified file."
+msgstr "Променя атрибутите на зададен файл."
-#: 03020101.xhp
+#: 03020414.xhp
msgctxt ""
-"03020101.xhp\n"
-"hd_id3156344\n"
+"03020414.xhp\n"
+"hd_id3150359\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03020101.xhp
+#: 03020414.xhp
msgctxt ""
-"03020101.xhp\n"
-"par_id3147265\n"
+"03020414.xhp\n"
+"par_id3154365\n"
"4\n"
"help.text"
-msgid "Close FileNumber As Integer[, FileNumber2 As Integer[,...]]"
-msgstr "Close FileNumber As Integer[, FileNumber2 As Integer[,...]]"
+msgid "SetAttr FileName As String, Attribute As Integer"
+msgstr "SetAttr FileName As String, Attribute As Integer"
-#: 03020101.xhp
+#: 03020414.xhp
msgctxt ""
-"03020101.xhp\n"
-"hd_id3153379\n"
+"03020414.xhp\n"
+"hd_id3125863\n"
"5\n"
"help.text"
msgid "Parameters:"
msgstr "Параметри:"
-#: 03020101.xhp
+#: 03020414.xhp
msgctxt ""
-"03020101.xhp\n"
-"par_id3150791\n"
+"03020414.xhp\n"
+"par_id3154909\n"
"6\n"
"help.text"
-msgid "<emph>FileNumber:</emph> Any integer expression that specifies the number of the data channel that was opened with the <emph>Open</emph> statement."
-msgstr "<emph>FileNumber:</emph> целочислен израз, който задава номера на канала за данни, отворен с оператора <emph>Open</emph>."
+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 "<emph>FileName:</emph> име на файла, за който се задават атрибути, включително пътя. Ако не въведете път, <emph>SetAttr</emph> търси файла в текущата директория. Пътят може да е във вид на <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL\">URL</link>."
-#: 03020101.xhp
+#: 03020414.xhp
msgctxt ""
-"03020101.xhp\n"
-"hd_id3153192\n"
+"03020414.xhp\n"
+"par_id3153192\n"
"7\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "<emph>Attribute:</emph> Bit pattern defining the attributes that you want to set or to clear:"
+msgstr "<emph>Attribute:</emph> комбинация от битове, задаваща атрибутите, които желаете да добавите или премахнете:"
-#: 03020101.xhp
+#: 03020414.xhp
msgctxt ""
-"03020101.xhp\n"
-"par_id3153727\n"
-"16\n"
+"03020414.xhp\n"
+"par_id3145786\n"
+"8\n"
"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr "Print #iNumber, \"Първият ред с текст\""
+msgid "<emph>Value</emph>"
+msgstr "<emph>Стойност</emph>"
-#: 03020101.xhp
+#: 03020414.xhp
msgctxt ""
-"03020101.xhp\n"
-"par_id3147350\n"
+"03020414.xhp\n"
+"par_id3152596\n"
+"9\n"
+"help.text"
+msgid "0 : Normal files."
+msgstr "0: нормални файлове"
+
+#: 03020414.xhp
+msgctxt ""
+"03020414.xhp\n"
+"par_id3149262\n"
+"10\n"
+"help.text"
+msgid "1 : Read-only files."
+msgstr "1: файл само за четене"
+
+#: 03020414.xhp
+msgctxt ""
+"03020414.xhp\n"
+"par_id3152576\n"
+"13\n"
+"help.text"
+msgid "32 : File was changed since last backup (Archive bit)."
+msgstr "32: файлът е бил променен след последното архивиране (бит за архивиране)"
+
+#: 03020414.xhp
+msgctxt ""
+"03020414.xhp\n"
+"par_id3153093\n"
+"14\n"
+"help.text"
+msgid "You can set multiple attributes by combining the respective values with a logic OR statement."
+msgstr "Можете да зададете няколко атрибута, комбинирайки съответните стойности с логическа операция OR."
+
+#: 03020414.xhp
+msgctxt ""
+"03020414.xhp\n"
+"hd_id3147434\n"
+"15\n"
+"help.text"
+msgid "Example:"
+msgstr "Пример:"
+
+#: 03020414.xhp
+msgctxt ""
+"03020414.xhp\n"
+"par_id3148645\n"
"17\n"
"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr "Print #iNumber, \"Още един ред с текст\""
+msgid "On Error GoTo ErrorHandler ' Define target for error handler"
+msgstr "On Error Goto ErrorHandler ' Местоназначение за обработка на грешки"
-#: 03102800.xhp
+#: 03020415.xhp
msgctxt ""
-"03102800.xhp\n"
+"03020415.xhp\n"
"tit\n"
"help.text"
-msgid "IsObject Function [Runtime]"
-msgstr "Функция IsObject [динамична]"
+msgid "FileExists Function [Runtime]"
+msgstr "Функция FileExists [динамична]"
-#: 03102800.xhp
+#: 03020415.xhp
msgctxt ""
-"03102800.xhp\n"
-"bm_id3149346\n"
+"03020415.xhp\n"
+"bm_id3148946\n"
"help.text"
-msgid "<bookmark_value>IsObject function</bookmark_value>"
-msgstr "<bookmark_value>IsObject, функция</bookmark_value>"
+msgid "<bookmark_value>FileExists function</bookmark_value>"
+msgstr "<bookmark_value>FileExists, функция</bookmark_value>"
-#: 03102800.xhp
+#: 03020415.xhp
msgctxt ""
-"03102800.xhp\n"
-"hd_id3149346\n"
+"03020415.xhp\n"
+"hd_id3148946\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03102800.xhp\" name=\"IsObject Function [Runtime]\">IsObject Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03102800.xhp\" name=\"Функция IsObject [динамична]\">Функция IsObject [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03020415.xhp\" name=\"FileExists Function [Runtime]\">FileExists Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020415.xhp\" name=\"Функция FileExists [динамична]\">Функция FileExists [динамична]</link>"
-#: 03102800.xhp
+#: 03020415.xhp
msgctxt ""
-"03102800.xhp\n"
-"par_id3148538\n"
+"03020415.xhp\n"
+"par_id3153361\n"
"2\n"
"help.text"
-msgid "Tests if an object variable is an OLE object. The function returns True if the variable is an OLE object, otherwise it returns False."
-msgstr "Проверява дали обектна променлива съдържа OLE обект. Ако е така, функцията връща True, в противен случай – False."
+msgid "Determines if a file or a directory is available on the data medium."
+msgstr "Определя дали файл или директория е налице върху носител на данни."
-#: 03102800.xhp
+#: 03020415.xhp
msgctxt ""
-"03102800.xhp\n"
-"hd_id3149234\n"
+"03020415.xhp\n"
+"hd_id3150447\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03102800.xhp
+#: 03020415.xhp
msgctxt ""
-"03102800.xhp\n"
-"par_id3154285\n"
+"03020415.xhp\n"
+"par_id3154685\n"
"4\n"
"help.text"
-msgid "IsObject (ObjectVar)"
-msgstr "IsObject (ObjectVar)"
+msgid "FileExists(FileName As String | DirectoryName As String)"
+msgstr "FileExists(FileName As String | DirectoryName As String)"
-#: 03102800.xhp
+#: 03020415.xhp
msgctxt ""
-"03102800.xhp\n"
-"hd_id3148685\n"
+"03020415.xhp\n"
+"hd_id3154126\n"
"5\n"
"help.text"
msgid "Return value:"
msgstr "Връщана стойност:"
-#: 03102800.xhp
+#: 03020415.xhp
msgctxt ""
-"03102800.xhp\n"
-"par_id3156024\n"
+"03020415.xhp\n"
+"par_id3150769\n"
"6\n"
"help.text"
msgid "Bool"
msgstr "Bool"
-#: 03102800.xhp
+#: 03020415.xhp
msgctxt ""
-"03102800.xhp\n"
-"hd_id3148947\n"
+"03020415.xhp\n"
+"hd_id3153770\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Параметри:"
-#: 03102800.xhp
+#: 03020415.xhp
msgctxt ""
-"03102800.xhp\n"
-"par_id3148552\n"
+"03020415.xhp\n"
+"par_id3147349\n"
"8\n"
"help.text"
-msgid "<emph>ObjectVar:</emph> Any variable that you want to test. If the Object variable contains an OLE object, the function returns True."
-msgstr "<emph>ObjectVar:</emph> променлива, която бъде проверена. Ако обектната променлива съдържа OLE обект, функцията връща <emph>True</emph>, в противен случай – <emph>False</emph>."
+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 "<emph>FileName | DirectoryName:</emph> низов израз, който еднозначно посочва файл. Може да е във вид на <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL\">URL</link>."
-#: 03132500.xhp
+#: 03020415.xhp
msgctxt ""
-"03132500.xhp\n"
+"03020415.xhp\n"
+"hd_id3149664\n"
+"9\n"
+"help.text"
+msgid "Example:"
+msgstr "Пример:"
+
+#: 03030000.xhp
+msgctxt ""
+"03030000.xhp\n"
"tit\n"
"help.text"
-msgid "GetDefaultContext Function [Runtime]"
-msgstr "Функция GetDefaultContext [динамична]"
+msgid "Date and Time Functions"
+msgstr "Функции за дати и часове"
-#: 03132500.xhp
+#: 03030000.xhp
msgctxt ""
-"03132500.xhp\n"
-"bm_id4761192\n"
+"03030000.xhp\n"
+"hd_id3150502\n"
+"1\n"
"help.text"
-msgid "<bookmark_value>GetDefaultContext function</bookmark_value>"
-msgstr "<bookmark_value>GetDefaultContext, функция</bookmark_value>"
+msgid "<link href=\"text/sbasic/shared/03030000.xhp\" name=\"Date and Time Functions\">Date and Time Functions</link>"
+msgstr "<link href=\"text/sbasic/shared/03030000.xhp\" name=\"Функции за дати и часове\">Функции за дати и часове</link>"
-#: 03132500.xhp
+#: 03030000.xhp
msgctxt ""
-"03132500.xhp\n"
-"par_idN10580\n"
+"03030000.xhp\n"
+"par_id3153255\n"
+"2\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03132500.xhp\">GetDefaultContext Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03132500.xhp\">Функция GetDefaultContext [динамична]</link>"
+msgid "Use the statements and functions described here to perform date and time calculations."
+msgstr "Чрез описаните тук опертори и функции можете да извършвате изчисления с дати и часове."
-#: 03132500.xhp
+#: 03030000.xhp
msgctxt ""
-"03132500.xhp\n"
-"par_idN10590\n"
+"03030000.xhp\n"
+"par_id3152363\n"
+"3\n"
"help.text"
-msgid "Returns the default context of the process service factory, if existent, else returns a null reference."
-msgstr "Връща подразбирания контекст на фабриката за услуги на процеса, ако съществува, и null в противен случай."
+msgid "<item type=\"productname\">%PRODUCTNAME</item> Basic lets you calculate time or date differences by converting the time and date values to continuous numeric values. After the difference is calculated, special functions are used to reconvert the values to the standard time or date formats."
+msgstr "<item type=\"productname\">%PRODUCTNAME</item> Basic ви позволява да пресмятате разлики между дати или часове, като ги преобразувате в числови стойности от непрекъсната скала. След изчисляването на разликата, тя може да бъде преобразувана обратно в стандартните формати за дати и часове."
-#: 03132500.xhp
+#: 03030000.xhp
msgctxt ""
-"03132500.xhp\n"
-"par_idN10593\n"
+"03030000.xhp\n"
+"par_id3151054\n"
+"4\n"
"help.text"
-msgid "This runtime 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=\"http://api.libreoffice.org\">api.libreoffice.org</link> for more information."
-msgstr "Тази функция връща подразбирания контекст на компонент, който се използва при създаване на екземпляри на услуги с XmultiServiceFactory. Вижте главата <item type=\"literal\">Professional UNO</item> в <item type=\"literal\">Developer's Guide</item> на адрес <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> за повече информация."
+msgid "You can combine date and time values into a single floating-decimal number. Dates are converted to integers, and times to decimal values. <item type=\"productname\">%PRODUCTNAME</item> Basic also supports the variable type Date, which can contain a time specification consisting of both a date and time."
+msgstr "Можете да комбинирате дата и час в единична числова стойност с плаваща запетая. Датите съответстват на цели числа, а часовете – на дроби. <item type=\"productname\">%PRODUCTNAME</item> Basic поддържа и променливи от тип Date, които могат да съдържат точно време, включващо дата и час."
-#: 03080101.xhp
+#: 03030100.xhp
msgctxt ""
-"03080101.xhp\n"
+"03030100.xhp\n"
"tit\n"
"help.text"
-msgid "Atn Function [Runtime]"
-msgstr "Функция Atn [динамична]"
+msgid "Converting Date Values"
+msgstr "Преобразуване на стойности – дати"
-#: 03080101.xhp
+#: 03030100.xhp
msgctxt ""
-"03080101.xhp\n"
-"bm_id3150616\n"
+"03030100.xhp\n"
+"hd_id3147573\n"
+"1\n"
"help.text"
-msgid "<bookmark_value>Atn function</bookmark_value>"
-msgstr "<bookmark_value>Atn, функция</bookmark_value>"
+msgid "<link href=\"text/sbasic/shared/03030100.xhp\" name=\"Converting Date Values\">Converting Date Values</link>"
+msgstr "<link href=\"text/sbasic/shared/03030100.xhp\" name=\"Преобразуване на стойности – дати\">Преобразуване на стойности – дати</link>"
-#: 03080101.xhp
+#: 03030100.xhp
msgctxt ""
-"03080101.xhp\n"
-"hd_id3150616\n"
+"03030100.xhp\n"
+"par_id3154760\n"
+"2\n"
+"help.text"
+msgid "The following functions convert date values to calculable numbers and back."
+msgstr "Следващите функции преобразуват стойности – дати към числа, с които може да се извършват изчисления, и обратно."
+
+#: 03030101.xhp
+msgctxt ""
+"03030101.xhp\n"
+"tit\n"
+"help.text"
+msgid "DateSerial Function [Runtime]"
+msgstr "Функция DateSerial [динамична]"
+
+#: 03030101.xhp
+msgctxt ""
+"03030101.xhp\n"
+"bm_id3157896\n"
+"help.text"
+msgid "<bookmark_value>DateSerial function</bookmark_value>"
+msgstr "<bookmark_value>DateSerial, функция</bookmark_value>"
+
+#: 03030101.xhp
+msgctxt ""
+"03030101.xhp\n"
+"hd_id3157896\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080101.xhp\" name=\"Atn Function [Runtime]\">Atn Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03080101.xhp\" name=\"Функция Atn [динамична]\">Функция Atn [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03030101.xhp\" name=\"DateSerial Function [Runtime]\">DateSerial Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030101.xhp\" name=\"Функция DateSerial [динамична]\">Функция DateSerial [динамична]</link>"
-#: 03080101.xhp
+#: 03030101.xhp
msgctxt ""
-"03080101.xhp\n"
-"par_id3149346\n"
+"03030101.xhp\n"
+"par_id3143267\n"
"2\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 "Тригонометрична функция, която връща аркустангенса на стойността на числов израз. Резултатът е между -Pi/2 и +Pi/2."
+msgid "Returns a <emph>Date</emph> value for a specified year, month, or day."
+msgstr "Връща стойност от тип <emph>Date</emph> за зададена година, месец или ден."
-#: 03080101.xhp
+#: 03030101.xhp
msgctxt ""
-"03080101.xhp\n"
-"par_id3143271\n"
+"03030101.xhp\n"
+"hd_id3147264\n"
"3\n"
"help.text"
-msgid "The arctangent is the inverse of the tangent function. The Atn 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 "Аркустангенсът е обратна функция на тангенса. Функцията Atn намира ъгъл в радиани по неговия тангенс. Тя също така може да намери ъгъл по съотношението на срещуположния и прилежащия катет на ъгъла в правоъгълен триъгълник."
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 03080101.xhp
+#: 03030101.xhp
msgctxt ""
-"03080101.xhp\n"
-"par_id3145315\n"
+"03030101.xhp\n"
+"par_id3149670\n"
"4\n"
"help.text"
-msgid "Atn(side opposite the angle/side adjacent to angle)= Alpha"
-msgstr "Atn(срещулежащ катет / прилежащ катет) = ъгъл"
+msgid "DateSerial (year, month, day)"
+msgstr "DateSerial (Year, Month, Day)"
-#: 03080101.xhp
+#: 03030101.xhp
msgctxt ""
-"03080101.xhp\n"
-"hd_id3149669\n"
+"03030101.xhp\n"
+"hd_id3150792\n"
"5\n"
"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
+msgid "Return value:"
+msgstr "Връщана стойност:"
-#: 03080101.xhp
+#: 03030101.xhp
msgctxt ""
-"03080101.xhp\n"
-"par_id3148947\n"
+"03030101.xhp\n"
+"par_id3150398\n"
"6\n"
"help.text"
-msgid "Atn (Number)"
-msgstr "Atn (Number)"
+msgid "Date"
+msgstr "Дата"
-#: 03080101.xhp
+#: 03030101.xhp
msgctxt ""
-"03080101.xhp\n"
-"hd_id3148664\n"
+"03030101.xhp\n"
+"hd_id3154141\n"
"7\n"
"help.text"
-msgid "Return value:"
-msgstr "Връщана стойност:"
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 03080101.xhp
+#: 03030101.xhp
msgctxt ""
-"03080101.xhp\n"
-"par_id3150359\n"
+"03030101.xhp\n"
+"par_id3147229\n"
"8\n"
"help.text"
-msgid "Double"
-msgstr "Double"
+msgid "<emph>Year:</emph> Integer expression that indicates a year. All values between 0 and 99 are interpreted as the years 1900-1999. For years that fall outside this range, you must enter all four digits."
+msgstr "<emph>Year:</emph> целочислен израз, означаващ година. Стойностите между 0 и 99 се тълкуват като годините от 1900 до 1999. За години извън този диапазон трябва да зададете и четирите цифри."
-#: 03080101.xhp
+#: 03030101.xhp
msgctxt ""
-"03080101.xhp\n"
-"hd_id3148798\n"
+"03030101.xhp\n"
+"par_id3156280\n"
"9\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "<emph>Month:</emph> Integer expression that indicates the month of the specified year. The accepted range is from 1-12."
+msgstr "<emph>Month:</emph> целочислен израз, задаващ месеца от указаната година. Допустимите стойности са от 1 до 12."
-#: 03080101.xhp
+#: 03030101.xhp
msgctxt ""
-"03080101.xhp\n"
-"par_id3156212\n"
+"03030101.xhp\n"
+"par_id3151043\n"
"10\n"
"help.text"
-msgid "<emph>Number:</emph> Any numerical expression that represents the ratio of two sides of a right triangle. The Atn function returns the corresponding angle in radians (arctangent)."
-msgstr "<emph>Number:</emph> числов израз, представляващ съотношението между два катета на правоъгълен триъгълник. Функцията Atn връща съответния ъгъл в радиани (аркустангенс)."
+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 "<emph>Day:</emph> целочислен израз, означаващ деня от указания месец. Допустимите стойности са от 1 до 31. Не се връща грешка, ако въведете несъществуващ ден за месец, по-къс от 31 дни."
-#: 03080101.xhp
+#: 03030101.xhp
msgctxt ""
-"03080101.xhp\n"
-"par_id3153192\n"
+"03030101.xhp\n"
+"par_id3161832\n"
"11\n"
"help.text"
-msgid "To convert radians to degrees, multiply radians by 180/pi."
-msgstr "За да преобразувате от радиани към градуси, умножете радианите по 180/π."
+msgid "The <emph>DateSerial function</emph> returns the number of days between December 30,1899 and the given date. You can use this function to calculate the difference between two dates."
+msgstr "Функцията <emph>DateSerial</emph> връща броя дни между 30 декември 1899 г. и дадената дата. С помощта на тази функция можете да пресметнете разликата между две дати."
-#: 03080101.xhp
+#: 03030101.xhp
msgctxt ""
-"03080101.xhp\n"
-"par_id3147230\n"
+"03030101.xhp\n"
+"par_id3155306\n"
"12\n"
"help.text"
-msgid "degree=(radian*180)/pi"
-msgstr "degrees = (radians * 180) / Pi"
+msgid "The <emph>DateSerial function</emph> returns the data type Variant with VarType 7 (Date). Internally, this value is stored as a Double value, so that when the given date is 1.1.1900, the returned value is 2. Negative values correspond to dates before December 30, 1899 (not inclusive)."
+msgstr "Функцията <emph>DateSerial</emph> връща стойности от тип Variant с VarType 7 (Date). Вътрешно стойността се съхранява като стойност от тип Double, например ако дадената дата е 1.1.1900 г., върнатата стойност е 2. Отрицателните стойности съответстват на дати преди 30 декември 1899 г. (без нея самата)."
-#: 03080101.xhp
+#: 03030101.xhp
msgctxt ""
-"03080101.xhp\n"
-"par_id3125864\n"
+"03030101.xhp\n"
+"par_id3152576\n"
"13\n"
"help.text"
-msgid "radian=(degree*pi)/180"
-msgstr "radians = (degrees * Pi) / 180"
+msgid "If a date is defined that lies outside of the accepted range, $[officename] Basic returns an error message."
+msgstr "Ако е зададена дата извън допустимия диапазон, $[officename] Basic показва съобщение за грешка."
-#: 03080101.xhp
+#: 03030101.xhp
msgctxt ""
-"03080101.xhp\n"
-"par_id3159252\n"
+"03030101.xhp\n"
+"par_id3149481\n"
"14\n"
"help.text"
-msgid "Pi is here the fixed circle constant with the rounded value 3.14159."
-msgstr "Pi (π) е съотношението между периметъра и диаметъра на кръг, приблизително 3,14159."
+msgid "Whereas you define the <emph>DateValue function</emph> as a string that contains the date, the <emph>DateSerial function</emph> evaluates each of the parameters (year, month, day) as separate numeric expressions."
+msgstr "Докато <emph>DateValue</emph> очаква низ, съдържащ датата, функцията <emph>DateSerial</emph> приема като параметри отделни числови изрази за година, месец и ден."
-#: 03080101.xhp
+#: 03030101.xhp
msgctxt ""
-"03080101.xhp\n"
-"hd_id3153142\n"
+"03030101.xhp\n"
+"hd_id3155411\n"
"15\n"
"help.text"
msgid "Example:"
msgstr "Пример:"
-#: 03080101.xhp
-msgctxt ""
-"03080101.xhp\n"
-"par_id3146985\n"
-"16\n"
-"help.text"
-msgid "' The following example calculates for a right-angled triangle"
-msgstr "' Изчисление за правоъгълен триъгълник"
-
-#: 03080101.xhp
-msgctxt ""
-"03080101.xhp\n"
-"par_id3145750\n"
-"17\n"
-"help.text"
-msgid "' the angle Alpha from the tangent of the angle Alpha:"
-msgstr "' Намираме ъгъла по тангенса му:"
-
-#: 03080101.xhp
-msgctxt ""
-"03080101.xhp\n"
-"par_id3151112\n"
-"19\n"
-"help.text"
-msgid "' rounded Pi = 3.14159 Is a predefined constant"
-msgstr "' Pi е дефинирана константа с приблизителна стойност 3,14159"
-
-#: 03080101.xhp
-msgctxt ""
-"03080101.xhp\n"
-"par_id3149262\n"
-"22\n"
-"help.text"
-msgid "d1 = InputBox$ (\"Enter the length of the side adjacent to the angle: \",\"Adjacent\")"
-msgstr "d1 = InputBox$(\"Въведете дължината на прилежащия катет: \", \"Прилежащ катет\")"
-
-#: 03080101.xhp
+#: 03030101.xhp
msgctxt ""
-"03080101.xhp\n"
-"par_id3149482\n"
-"23\n"
+"03030101.xhp\n"
+"par_id3154942\n"
"help.text"
-msgid "d2 = InputBox$ (\"Enter the length of the side opposite the angle: \",\"Opposite\")"
-msgstr "d2 = InputBox$(\"Въведете дължината на срещулежащия катет: \", \"Срещулежащ катет\")"
+msgid "MsgBox lDate ' returns 23476"
+msgstr "MsgBox lDate ' връща 23476"
-#: 03080101.xhp
+#: 03030101.xhp
msgctxt ""
-"03080101.xhp\n"
-"par_id3155415\n"
-"24\n"
+"03030101.xhp\n"
+"par_id3151074\n"
"help.text"
-msgid "Print \"The Alpha angle is\"; (atn (d2/d1) * 180 / Pi); \" degrees\""
-msgstr "Print \"Ъгълът е \"; (atn(d2 / d1) * 180 / Pi); \" градуса\""
+msgid "MsgBox sDate ' returns 04/09/1964"
+msgstr "MsgBox sDate ' връща 04/09/1964"
-#: 03080302.xhp
+#: 03030102.xhp
msgctxt ""
-"03080302.xhp\n"
+"03030102.xhp\n"
"tit\n"
"help.text"
-msgid "Rnd Function [Runtime]"
-msgstr "Функция Rnd [динамична]"
+msgid "DateValue Function [Runtime]"
+msgstr "Функция DateValue [динамична]"
-#: 03080302.xhp
+#: 03030102.xhp
msgctxt ""
-"03080302.xhp\n"
-"bm_id3148685\n"
+"03030102.xhp\n"
+"bm_id3156344\n"
"help.text"
-msgid "<bookmark_value>Rnd function</bookmark_value>"
-msgstr "<bookmark_value>Rnd function</bookmark_value>"
+msgid "<bookmark_value>DateValue function</bookmark_value>"
+msgstr "<bookmark_value>DateValue, функция</bookmark_value>"
-#: 03080302.xhp
+#: 03030102.xhp
msgctxt ""
-"03080302.xhp\n"
-"hd_id3148685\n"
+"03030102.xhp\n"
+"hd_id3156344\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080302.xhp\" name=\"Rnd Function [Runtime]\">Rnd Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03080302.xhp\" name=\"Функция Rnd [динамична]\">Функция Rnd [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03030102.xhp\" name=\"DateValue Function [Runtime]\">DateValue Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030102.xhp\" name=\"Функция DateValue [динамична]\">Функция DateValue [динамична]</link>"
-#: 03080302.xhp
+#: 03030102.xhp
msgctxt ""
-"03080302.xhp\n"
-"par_id3149669\n"
+"03030102.xhp\n"
+"par_id3150542\n"
"2\n"
"help.text"
-msgid "Returns a random number between 0 and 1."
-msgstr "Връща случайно число между 0 и 1."
+msgid "Returns a date value from a date string. The date string is a complete date in a single numeric value. You can also use this serial number to determine the difference between two dates."
+msgstr "Връща стойност – дата по зададен низ с дата. Низът с датата се преобразува до една числова стойност, която впоследствие можете да използвате за намиране на разликата между две дати."
-#: 03080302.xhp
+#: 03030102.xhp
msgctxt ""
-"03080302.xhp\n"
-"hd_id3153897\n"
+"03030102.xhp\n"
+"hd_id3148799\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03080302.xhp
+#: 03030102.xhp
msgctxt ""
-"03080302.xhp\n"
-"par_id3150543\n"
+"03030102.xhp\n"
+"par_id3154910\n"
"4\n"
"help.text"
-msgid "Rnd [(Expression)]"
-msgstr "Rnd [(Expression)]"
+msgid "DateValue [(date)]"
+msgstr "DateValue [(Date)]"
-#: 03080302.xhp
+#: 03030102.xhp
msgctxt ""
-"03080302.xhp\n"
-"hd_id3149655\n"
+"03030102.xhp\n"
+"hd_id3150870\n"
"5\n"
"help.text"
msgid "Return value:"
msgstr "Връщана стойност:"
-#: 03080302.xhp
+#: 03030102.xhp
msgctxt ""
-"03080302.xhp\n"
-"par_id3154365\n"
+"03030102.xhp\n"
+"par_id3153194\n"
"6\n"
"help.text"
-msgid "Double"
-msgstr "Double"
+msgid "Date"
+msgstr "Дата"
-#: 03080302.xhp
+#: 03030102.xhp
msgctxt ""
-"03080302.xhp\n"
-"hd_id3154909\n"
+"03030102.xhp\n"
+"hd_id3153969\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Параметри:"
-#: 03080302.xhp
+#: 03030102.xhp
msgctxt ""
-"03080302.xhp\n"
-"par_id3125864\n"
+"03030102.xhp\n"
+"par_id3153770\n"
"8\n"
"help.text"
-msgid "<emph>Expression:</emph> Any numeric expression."
-msgstr "<emph>Expression:</emph> числов израз."
+msgid "<emph>Date:</emph> String expression that contains the date that you want to calculate. The date can be specified in almost any format."
+msgstr "<emph>Date:</emph> низов израз със стойност датата, която желаете да се преобразува. Тя може да бъде зададена в почти всякакъв формат."
-#: 03080302.xhp
+#: 03030102.xhp
msgctxt ""
-"03080302.xhp\n"
-"par_id3155306\n"
-"12\n"
+"03030102.xhp\n"
+"par_id3153189\n"
+"22\n"
"help.text"
-msgid "<emph>Omitted:</emph> Returns the next random number in the sequence."
-msgstr "<emph>Пропуснат:</emph> връща се следващото случайно число от поредицата."
+msgid "You can use this function to convert a date that occurs between December 1, 1582 and December 31, 9999 into a single integer value. You can then use this value to calculate the difference between two dates. If the date argument lies outside the acceptable range, $[officename] Basic returns an error message."
+msgstr "С тази функция могат да се преобразуват дати между 1 декември 1582 г. и 31 декември 9999 г. в единични целочислени стойности. Чрез тях след това можете да пресметнете разликата между две дати. Ако аргументът – дата е извън допустимия обхват, $[officename] Basic показва съобщение за грешка."
-#: 03080302.xhp
+#: 03030102.xhp
msgctxt ""
-"03080302.xhp\n"
-"par_id3147318\n"
-"14\n"
+"03030102.xhp\n"
+"par_id3146974\n"
+"23\n"
"help.text"
-msgid "The <emph>Rnd</emph> function only returns values ranging from 0 to 1. To generate random integers in a given range, use the formula in the following example:"
-msgstr "Функцията <emph>Rnd</emph> връща само стойности от 0 до 1. За да генерирате случайни числа даден диапазон, използвайте формулата от следния пример:"
+msgid "In contrast to the DateSerial function that passes years, months, and days as separate numeric values, the DateValue function passes the date using the format \"month.[,]day.[,]year\"."
+msgstr "За разлика от функцията DateSerial, която очаква година, месец и ден като отделни числови стойности, DateValue приема дата във формат \"месец.[,]ден.[,]година\"."
-#: 03080302.xhp
+#: 03030102.xhp
msgctxt ""
-"03080302.xhp\n"
-"hd_id3151118\n"
-"15\n"
+"03030102.xhp\n"
+"hd_id3153142\n"
+"24\n"
"help.text"
msgid "Example:"
msgstr "Пример:"
-#: 03080302.xhp
-msgctxt ""
-"03080302.xhp\n"
-"par_id3147124\n"
-"21\n"
-"help.text"
-msgid "Print \"Number from 1 to 5\""
-msgstr "Print \"Число от 1 до 5\""
-
-#: 03080302.xhp
-msgctxt ""
-"03080302.xhp\n"
-"par_id3154943\n"
-"23\n"
-"help.text"
-msgid "Print \"Number from 6 to 8\""
-msgstr "Print \"Число от 6 до 8\""
-
-#: 03080302.xhp
-msgctxt ""
-"03080302.xhp\n"
-"par_id3151074\n"
-"25\n"
-"help.text"
-msgid "Print \"Greater than 8\""
-msgstr "Print \"По-голямо от 8\""
-
-#: 03080302.xhp
-msgctxt ""
-"03080302.xhp\n"
-"par_id3155602\n"
-"27\n"
-"help.text"
-msgid "Print \"Outside range 1 to 10\""
-msgstr "Print \"Извън обсега от 1 до 10\""
-
-#: 03120103.xhp
+#: 03030103.xhp
msgctxt ""
-"03120103.xhp\n"
+"03030103.xhp\n"
"tit\n"
"help.text"
-msgid "Str Function [Runtime]"
-msgstr "Функция Str [динамична]"
+msgid "Day Function [Runtime]"
+msgstr "Функция Day [динамична]"
-#: 03120103.xhp
+#: 03030103.xhp
msgctxt ""
-"03120103.xhp\n"
-"bm_id3143272\n"
+"03030103.xhp\n"
+"bm_id3153345\n"
"help.text"
-msgid "<bookmark_value>Str function</bookmark_value>"
-msgstr "<bookmark_value>Str, функция</bookmark_value>"
+msgid "<bookmark_value>Day function</bookmark_value>"
+msgstr "<bookmark_value>Day, функция</bookmark_value>"
-#: 03120103.xhp
+#: 03030103.xhp
msgctxt ""
-"03120103.xhp\n"
-"hd_id3143272\n"
+"03030103.xhp\n"
+"hd_id3153345\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120103.xhp\" name=\"Str Function [Runtime]\">Str Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120103.xhp\" name=\"Функция Str [динамична]\">Функция Str [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03030103.xhp\" name=\"Day Function [Runtime]\">Day Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030103.xhp\" name=\"Функция Day [динамична]\">Функция Day [динамична]</link>"
-#: 03120103.xhp
+#: 03030103.xhp
msgctxt ""
-"03120103.xhp\n"
-"par_id3155100\n"
+"03030103.xhp\n"
+"par_id3147560\n"
"2\n"
"help.text"
-msgid "Converts a numeric expression into a string."
-msgstr "Преобразува числова стойност в низ."
+msgid "Returns a value that represents the day of the month based on a serial date number generated by <emph>DateSerial</emph> or <emph>DateValue</emph>."
+msgstr "Намира деня от месеца по зададено серийно число на дата, генерирано от <emph>DateSerial</emph> или <emph>DateValue</emph>."
-#: 03120103.xhp
+#: 03030103.xhp
msgctxt ""
-"03120103.xhp\n"
-"hd_id3109850\n"
+"03030103.xhp\n"
+"hd_id3149456\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03120103.xhp
+#: 03030103.xhp
msgctxt ""
-"03120103.xhp\n"
-"par_id3149497\n"
+"03030103.xhp\n"
+"par_id3150358\n"
"4\n"
"help.text"
-msgid "Str (Expression)"
-msgstr "Str (Expression)"
+msgid "Day (Number)"
+msgstr "Day (Number)"
-#: 03120103.xhp
+#: 03030103.xhp
msgctxt ""
-"03120103.xhp\n"
-"hd_id3150040\n"
+"03030103.xhp\n"
+"hd_id3148798\n"
"5\n"
"help.text"
msgid "Return value:"
msgstr "Връщана стойност:"
-#: 03120103.xhp
+#: 03030103.xhp
msgctxt ""
-"03120103.xhp\n"
-"par_id3146117\n"
+"03030103.xhp\n"
+"par_id3125865\n"
"6\n"
"help.text"
-msgid "String"
-msgstr "String"
+msgid "Integer"
+msgstr "Integer"
-#: 03120103.xhp
+#: 03030103.xhp
msgctxt ""
-"03120103.xhp\n"
-"hd_id3155805\n"
+"03030103.xhp\n"
+"hd_id3150448\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Параметри:"
-#: 03120103.xhp
+#: 03030103.xhp
msgctxt ""
-"03120103.xhp\n"
-"par_id3149178\n"
+"03030103.xhp\n"
+"par_id3156423\n"
"8\n"
"help.text"
-msgid "<emph>Expression: </emph>Any numeric expression."
-msgstr "<emph>Expression:</emph> числов израз."
+msgid "<emph>Number:</emph> A numeric expression that contains a serial date number from which you can determine the day of the month."
+msgstr "<emph>Number:</emph> числов израз – серийно число на дата, за която желаете да изчислите деня от месеца."
-#: 03120103.xhp
+#: 03030103.xhp
msgctxt ""
-"03120103.xhp\n"
-"par_id3146958\n"
+"03030103.xhp\n"
+"par_id3145786\n"
"9\n"
"help.text"
-msgid "The <emph>Str</emph> function converts a numeric variable, or the result of a calculation into a string. Negative numbers are preceded by a minus sign. Positive numbers are preceded by a space (instead of the plus sign)."
-msgstr "Функцията <emph>Str</emph> преобразува стойността на числова променлива или израз в низ. Отрицателните числа се предшестват от знак минус. Положителните се предшестват от интервал (вместо знак плюс)."
+msgid "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 "Тази функция е противоположна на DateSerial и връща деня от месеца по зададено серийно число на дата, генерирано от функцията <emph>DateSerial</emph> или <emph>DateValue</emph>. Например изразът"
-#: 03120103.xhp
+#: 03030103.xhp
msgctxt ""
-"03120103.xhp\n"
-"hd_id3155419\n"
-"10\n"
+"03030103.xhp\n"
+"par_id3153190\n"
+"11\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "returns the value 20."
+msgstr "връща стойността 20."
-#: 03030300.xhp
+#: 03030103.xhp
msgctxt ""
-"03030300.xhp\n"
-"tit\n"
+"03030103.xhp\n"
+"hd_id3149481\n"
+"12\n"
"help.text"
-msgid "System Date and Time"
-msgstr "Системна дата и час"
+msgid "Example:"
+msgstr "Пример:"
-#: 03030300.xhp
+#: 03030103.xhp
msgctxt ""
-"03030300.xhp\n"
-"hd_id3154923\n"
-"1\n"
+"03030103.xhp\n"
+"par_id3149260\n"
+"14\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03030300.xhp\" name=\"System Date and Time\">System Date and Time</link>"
-msgstr "<link href=\"text/sbasic/shared/03030300.xhp\" name=\"Системна дата и час\">Системна дата и час</link>"
+msgid "Print \"Day \" & Day(DateSerial(1994, 12, 20)) & \" of the month\""
+msgstr "Print \"Ден \" & Day(DateSerial(1994, 12, 20)) & \" от месеца\""
-#: 03030300.xhp
+#: 03030104.xhp
msgctxt ""
-"03030300.xhp\n"
-"par_id3149457\n"
-"2\n"
+"03030104.xhp\n"
+"tit\n"
"help.text"
-msgid "The following functions and statements set or return the system date and time."
-msgstr "Следващите функции и оператори променят или връщат системната дата и час."
+msgid "Month Function [Runtime]"
+msgstr "Функция Month [динамична]"
-#: 03090200.xhp
+#: 03030104.xhp
msgctxt ""
-"03090200.xhp\n"
-"tit\n"
+"03030104.xhp\n"
+"bm_id3153127\n"
"help.text"
-msgid "Loops"
-msgstr "Цикли"
+msgid "<bookmark_value>Month function</bookmark_value>"
+msgstr "<bookmark_value>Month, функция</bookmark_value>"
-#: 03090200.xhp
+#: 03030104.xhp
msgctxt ""
-"03090200.xhp\n"
-"hd_id3153990\n"
+"03030104.xhp\n"
+"hd_id3153127\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090200.xhp\" name=\"Loops\">Loops</link>"
-msgstr "<link href=\"text/sbasic/shared/03090200.xhp\" name=\"Цикли\">Цикли</link>"
+msgid "<link href=\"text/sbasic/shared/03030104.xhp\" name=\"Month Function [Runtime]\">Month Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030104.xhp\" name=\"Функция Month [динамична]\">Функция Month [динамична]</link>"
-#: 03090200.xhp
+#: 03030104.xhp
msgctxt ""
-"03090200.xhp\n"
-"par_id3147226\n"
+"03030104.xhp\n"
+"par_id3148550\n"
"2\n"
"help.text"
-msgid "The following statements execute loops."
-msgstr "Следващите оператори реализират цикли."
+msgid "Returns the month of a year from a serial date that is generated by the DateSerial or the DateValue function."
+msgstr "Връща месеца от годината по зададено серийно число на дата, генерирано от функцията DateSerial или DateValue."
-#: 03070000.xhp
+#: 03030104.xhp
msgctxt ""
-"03070000.xhp\n"
-"tit\n"
+"03030104.xhp\n"
+"hd_id3145068\n"
+"3\n"
"help.text"
-msgid "Mathematical Operators"
-msgstr "Математически оператори"
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 03070000.xhp
+#: 03030104.xhp
msgctxt ""
-"03070000.xhp\n"
-"hd_id3149234\n"
-"1\n"
+"03030104.xhp\n"
+"par_id3150398\n"
+"4\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03070000.xhp\" name=\"Mathematical Operators\">Mathematical Operators</link>"
-msgstr "<link href=\"text/sbasic/shared/03070000.xhp\" name=\"Математически операции\">Математически операции</link>"
+msgid "Month (Number)"
+msgstr "Month (Number)"
-#: 03070000.xhp
+#: 03030104.xhp
msgctxt ""
-"03070000.xhp\n"
-"par_id3145068\n"
-"2\n"
+"03030104.xhp\n"
+"hd_id3154366\n"
+"5\n"
"help.text"
-msgid "The following mathematical operators are supported in $[officename] Basic."
-msgstr "Следните математически операции се поддържат в $[officename] Basic."
+msgid "Return value:"
+msgstr "Връщана стойност:"
-#: 03070000.xhp
+#: 03030104.xhp
msgctxt ""
-"03070000.xhp\n"
-"par_id3148552\n"
-"3\n"
+"03030104.xhp\n"
+"par_id3154125\n"
+"6\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 "Тази глава съдържа кратък преглед на всички аритметични операции, които може да са ви необходими за изчисления в програма."
+msgid "Integer"
+msgstr "Integer"
-#: 03090201.xhp
+#: 03030104.xhp
msgctxt ""
-"03090201.xhp\n"
-"tit\n"
+"03030104.xhp\n"
+"hd_id3150768\n"
+"7\n"
"help.text"
-msgid "Do...Loop Statement [Runtime]"
-msgstr "Оператор Do…Loop [динамичен]"
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 03090201.xhp
+#: 03030104.xhp
msgctxt ""
-"03090201.xhp\n"
-"bm_id3156116\n"
+"03030104.xhp\n"
+"par_id3156423\n"
+"8\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 "<bookmark_value>Do…Loop, оператор</bookmark_value><bookmark_value>While; Do, цикъл</bookmark_value><bookmark_value>Until</bookmark_value><bookmark_value>цикли</bookmark_value>"
+msgid "<emph>Number:</emph> Numeric expression that contains the serial date number that is used to determine the month of the year."
+msgstr "<emph>Number:</emph> числов израз – серийно число на дата, за която желаете да изчислите месеца от годината."
-#: 03090201.xhp
+#: 03030104.xhp
msgctxt ""
-"03090201.xhp\n"
-"hd_id3156116\n"
-"1\n"
+"03030104.xhp\n"
+"par_id3153770\n"
+"9\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090201.xhp\" name=\"Do...Loop Statement [Runtime]\">Do...Loop Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090201.xhp\" name=\"Оператор Do…Loop [динамичен]\">Оператор Do…Loop [динамичен]</link>"
+msgid "This function is the opposite of the <emph>DateSerial </emph>function. It returns the month in the year that corresponds to the serial date that is generated by <emph>DateSerial</emph> or <emph>DateValue</emph>. For example, the expression"
+msgstr "Тази функция е противоположна на <emph>DateSerial</emph> и връща месеца от годината по зададено серийно число на дата, генерирано от функцията <emph>DateSerial</emph> или <emph>DateValue</emph>. Например изразът"
-#: 03090201.xhp
+#: 03030104.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3109850\n"
-"2\n"
+"03030104.xhp\n"
+"par_id3145366\n"
+"11\n"
"help.text"
-msgid "Repeats the statements between the Do and the Loop statement while the condition is True or until the condition becomes True."
-msgstr "Повтаря операторите между Do и Loop, докато условието има стойност True или до момента, когато стойността му стане True."
+msgid "returns the value 12."
+msgstr "връща стойността 12."
-#: 03090201.xhp
+#: 03030104.xhp
msgctxt ""
-"03090201.xhp\n"
-"hd_id3149119\n"
-"3\n"
+"03030104.xhp\n"
+"hd_id3146923\n"
+"12\n"
"help.text"
-msgid "Syntax"
-msgstr "Синтаксис"
+msgid "Example:"
+msgstr "Пример:"
-#: 03090201.xhp
+#: 03030104.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3155150\n"
-"4\n"
+"03030104.xhp\n"
+"par_id3149664\n"
+"14\n"
"help.text"
-msgid "Do [{While | Until} condition = True]"
-msgstr "Do [{While | Until} условие = True]"
+msgid "MsgBox \"\" & Month(Now) ,64,\"The current month\""
+msgstr "MsgBox \"\" & Month(Now), 64, \"Текущ месец\""
-#: 03090201.xhp
+#: 03030105.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3154422\n"
-"5\n"
+"03030105.xhp\n"
+"tit\n"
"help.text"
-msgid "statement block"
-msgstr "операторен блок"
+msgid "WeekDay Function [Runtime]"
+msgstr "Функция WeekDay [динамична]"
-#: 03090201.xhp
+#: 03030105.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3150789\n"
-"6\n"
+"03030105.xhp\n"
+"bm_id3153127\n"
"help.text"
-msgid "[Exit Do]"
-msgstr "[Exit Do]"
+msgid "<bookmark_value>WeekDay function</bookmark_value>"
+msgstr "<bookmark_value>WeekDay, функция</bookmark_value>"
-#: 03090201.xhp
+#: 03030105.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3155805\n"
-"7\n"
+"03030105.xhp\n"
+"hd_id3153127\n"
+"1\n"
"help.text"
-msgid "statement block"
-msgstr "операторен блок"
+msgid "<link href=\"text/sbasic/shared/03030105.xhp\" name=\"WeekDay Function [Runtime]\">WeekDay Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030105.xhp\" name=\"Функция WeekDay [динамична]\">Функция WeekDay [динамична]</link>"
-#: 03090201.xhp
+#: 03030105.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3145090\n"
-"8\n"
+"03030105.xhp\n"
+"par_id3146795\n"
+"2\n"
"help.text"
-msgid "Loop"
-msgstr "Loop"
+msgid "Returns the number corresponding to the weekday represented by a serial date number that is generated by the DateSerial or the DateValue function."
+msgstr "Приема серийно число, генерирано от функцията DateSerial или DateValue и връща число, съответстващо на деня от седмицата."
-#: 03090201.xhp
+#: 03030105.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3154749\n"
-"9\n"
+"03030105.xhp\n"
+"hd_id3145068\n"
+"3\n"
"help.text"
-msgid "or"
-msgstr "или"
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 03090201.xhp
+#: 03030105.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3150503\n"
-"10\n"
+"03030105.xhp\n"
+"par_id3149655\n"
+"4\n"
"help.text"
-msgid "Do"
-msgstr "Do"
+msgid "WeekDay (Number)"
+msgstr "WeekDay (Number)"
-#: 03090201.xhp
+#: 03030105.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3149762\n"
-"11\n"
+"03030105.xhp\n"
+"hd_id3148799\n"
+"5\n"
"help.text"
-msgid "statement block"
-msgstr "операторен блок"
+msgid "Return value:"
+msgstr "Връщана стойност:"
-#: 03090201.xhp
+#: 03030105.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3150984\n"
-"12\n"
+"03030105.xhp\n"
+"par_id3154125\n"
+"6\n"
"help.text"
-msgid "[Exit Do]"
-msgstr "[Exit Do]"
+msgid "Integer"
+msgstr "Integer"
-#: 03090201.xhp
+#: 03030105.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3143228\n"
-"13\n"
+"03030105.xhp\n"
+"hd_id3150768\n"
+"7\n"
"help.text"
-msgid "statement block"
-msgstr "операторен блок"
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 03090201.xhp
+#: 03030105.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3149235\n"
-"14\n"
+"03030105.xhp\n"
+"par_id3151042\n"
+"8\n"
"help.text"
-msgid "Loop [{While | Until} condition = True]"
-msgstr "Loop [{While | Until} условие = True]"
+msgid "<emph>Number:</emph> Integer expression that contains the serial date number that is used to calculate the day of the week (1-7)."
+msgstr "<emph>Number:</emph> числов израз – серийно число на дата, за която искате да бъде изчислен денят от седмицата (1-7)."
-#: 03090201.xhp
+#: 03030105.xhp
msgctxt ""
-"03090201.xhp\n"
-"hd_id3156024\n"
-"15\n"
+"03030105.xhp\n"
+"par_id3159254\n"
+"9\n"
"help.text"
-msgid "Parameters/Elements"
-msgstr "Параметри/елементи"
+msgid "The following example determines the day of the week using the WeekDay function when you enter a date."
+msgstr "Следващият пример определя деня от седмицата чрез функцията WeekDay според въведена от вас дата."
-#: 03090201.xhp
+#: 03030105.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3156344\n"
-"16\n"
+"03030105.xhp\n"
+"hd_id3148616\n"
+"10\n"
"help.text"
-msgid "<emph>Condition:</emph> A comparison, numeric or string expression, that evaluates either True or False."
-msgstr "<emph>Условие:</emph> сравнение, числов или низов израз, чиято стойност е True или False."
+msgid "Example:"
+msgstr "Пример:"
-#: 03090201.xhp
+#: 03030105.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3149669\n"
-"17\n"
+"03030105.xhp\n"
+"par_id3148576\n"
+"13\n"
"help.text"
-msgid "<emph>Statement block:</emph> Statements that you want to repeat while or until the condition is True."
-msgstr "<emph>Операторен блок:</emph> оператори, които искате да се повтарят докато стойността на условието е True или докато стане True."
+msgid "' Return And display the day of the week"
+msgstr "' Връща и показва деня от седмицата"
-#: 03090201.xhp
+#: 03030105.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3150791\n"
-"18\n"
+"03030105.xhp\n"
+"par_id3151117\n"
+"16\n"
"help.text"
-msgid "The <emph>Do...Loop</emph> statement executes a loop as long as, or until, a certain condition is True. The condition for exiting the loop must be entered following either the <emph>Do</emph> or the <emph>Loop</emph> statement. The following examples are valid combinations:"
-msgstr "Операторът <emph>Do…Loop</emph> изпълнява цикъл, който трае докато определено условие продължава да бъде удовлетворено (или до момента, когато бъде удовлетворено). Условието за изход от цикъла трябва да бъде въведено след оператора <emph>Do</emph> или <emph>Loop</emph>. Следните примери са валидни комбинации:"
+msgid "sDay=\"Sunday\""
+msgstr "sDay=\"Неделя\""
-#: 03090201.xhp
+#: 03030105.xhp
msgctxt ""
-"03090201.xhp\n"
-"hd_id3154366\n"
-"19\n"
+"03030105.xhp\n"
+"par_id3153952\n"
+"18\n"
"help.text"
-msgid "Syntax"
-msgstr "Синтаксис"
+msgid "sDay=\"Monday\""
+msgstr "sDay=\"Понеделник\""
-#: 03090201.xhp
+#: 03030105.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3145171\n"
+"03030105.xhp\n"
+"par_id3153157\n"
"20\n"
"help.text"
-msgid "Do While condition = True"
-msgstr "Do While условие = True"
-
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3149203\n"
-"21\n"
-"help.text"
-msgid "...statement block"
-msgstr "…операторен блок"
+msgid "sDay=\"Tuesday\""
+msgstr "sDay=\"Вторник\""
-#: 03090201.xhp
+#: 03030105.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3125864\n"
+"03030105.xhp\n"
+"par_id3154942\n"
"22\n"
"help.text"
-msgid "Loop"
-msgstr "Loop"
+msgid "sDay=\"Wednesday\""
+msgstr "sDay=\"Сряда\""
-#: 03090201.xhp
+#: 03030105.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3154124\n"
+"03030105.xhp\n"
+"par_id3155416\n"
"24\n"
"help.text"
-msgid "The statement block between the Do While and the Loop statements is repeated so long as the condition is true."
-msgstr "Операторите между Do While и Loop се повтарят, докато условието има стойност True."
-
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3153968\n"
-"25\n"
-"help.text"
-msgid "Do Until condition = True"
-msgstr "Do Until условие = True"
+msgid "sDay=\"Thursday\""
+msgstr "sDay=\"Четвъртък\""
-#: 03090201.xhp
+#: 03030105.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3154909\n"
+"03030105.xhp\n"
+"par_id3154015\n"
"26\n"
"help.text"
-msgid "...statement block"
-msgstr "…операторен блок"
-
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3159151\n"
-"27\n"
-"help.text"
-msgid "Loop"
-msgstr "Loop"
+msgid "sDay=\"Friday\""
+msgstr "sDay=\"Петък\""
-#: 03090201.xhp
+#: 03030105.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3150440\n"
-"29\n"
+"03030105.xhp\n"
+"par_id3153707\n"
+"28\n"
"help.text"
-msgid "The statement block between the Do Until and the Loop statements is repeated if the condition so long as the condition is false."
-msgstr "Операторите между Do Until и Loop се повтарят, докато условието има стойност False."
+msgid "sDay=\"Saturday\""
+msgstr "sDay=\"Събота\""
-#: 03090201.xhp
+#: 03030105.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3153952\n"
+"03030105.xhp\n"
+"par_id3148993\n"
"30\n"
"help.text"
-msgid "Do"
-msgstr "Do"
+msgid "MsgBox \"\" + sDay,64,\"Today Is\""
+msgstr "MsgBox \"\" + sDay, 64, \"Днес е\""
-#: 03090201.xhp
+#: 03030106.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3147349\n"
-"31\n"
+"03030106.xhp\n"
+"tit\n"
"help.text"
-msgid "...statement block"
-msgstr "…операторен блок"
+msgid "Year Function [Runtime]"
+msgstr "Функция Year [динамична]"
-#: 03090201.xhp
+#: 03030106.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3159153\n"
-"32\n"
+"03030106.xhp\n"
+"bm_id3148664\n"
"help.text"
-msgid "Loop While condition = True"
-msgstr "Loop While условие = True"
+msgid "<bookmark_value>Year function</bookmark_value>"
+msgstr "<bookmark_value>Year, функция</bookmark_value>"
-#: 03090201.xhp
+#: 03030106.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3146985\n"
-"34\n"
+"03030106.xhp\n"
+"hd_id3148664\n"
+"1\n"
"help.text"
-msgid "The statement block between the Do and the Loop statements repeats so long as the condition is true."
-msgstr "Операторите между Do и Loop се повтарят, докато условието има стойност True."
+msgid "<link href=\"text/sbasic/shared/03030106.xhp\" name=\"Year Function [Runtime]\">Year Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030106.xhp\" name=\"Функция Year [динамична]\">Функция Year [динамична]</link>"
-#: 03090201.xhp
+#: 03030106.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3150488\n"
-"35\n"
+"03030106.xhp\n"
+"par_id3149655\n"
+"2\n"
"help.text"
-msgid "Do"
-msgstr "Do"
+msgid "Returns the year from a serial date number that is generated by the DateSerial or the DateValue function."
+msgstr "Връща годината по зададено серийно число на дата, генерирано от функцията DateSerial или DateValue."
-#: 03090201.xhp
+#: 03030106.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3153189\n"
-"36\n"
+"03030106.xhp\n"
+"hd_id3154125\n"
+"3\n"
"help.text"
-msgid "...statement block"
-msgstr "…операторен блок"
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 03090201.xhp
+#: 03030106.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3155411\n"
-"37\n"
+"03030106.xhp\n"
+"par_id3147229\n"
+"4\n"
"help.text"
-msgid "Loop Until condition = True"
-msgstr "Loop Until условие = True"
+msgid "Year (Number)"
+msgstr "Year (Number)"
-#: 03090201.xhp
+#: 03030106.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3151117\n"
-"39\n"
+"03030106.xhp\n"
+"hd_id3154685\n"
+"5\n"
"help.text"
-msgid "The statement block between the Do and the Loop statements repeats until the condition is true."
-msgstr "Операторите между Do и Loop се повтарят, докато условието има стойност False."
+msgid "Return value:"
+msgstr "Връщана стойност:"
-#: 03090201.xhp
+#: 03030106.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3149484\n"
-"41\n"
+"03030106.xhp\n"
+"par_id3153970\n"
+"6\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 "За да завършите цикъла безусловно, използвайте оператора <emph>Exit Do</emph>. Можете да го поставите където и да е в оператор <emph>Do</emph>…<emph>Loop</emph>. Освен това можете да дефинирате условие за изход със структура <emph>If…Then</emph> както следва:"
+msgid "Integer"
+msgstr "Integer"
-#: 03090201.xhp
+#: 03030106.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3149262\n"
-"42\n"
+"03030106.xhp\n"
+"hd_id3150440\n"
+"7\n"
"help.text"
-msgid "Do..."
-msgstr "Do..."
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 03090201.xhp
+#: 03030106.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3149298\n"
-"43\n"
+"03030106.xhp\n"
+"par_id3163712\n"
+"8\n"
"help.text"
-msgid "statements"
-msgstr "оператори"
+msgid "<emph>Number:</emph> Integer expression that contains the serial date number that is used to calculate the year."
+msgstr "<emph>Number:</emph> числов израз – серийно число на дата, за която желаете да изчислите годината."
-#: 03090201.xhp
+#: 03030106.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3145646\n"
-"44\n"
+"03030106.xhp\n"
+"par_id3152596\n"
+"9\n"
"help.text"
-msgid "If condition = True Then Exit Do"
-msgstr "If условие = True Then Exit Do"
+msgid "This function is the opposite of the <emph>DateSerial </emph>function, and returns the year of a serial date. For example, the expression:"
+msgstr "Тази функция е противоположна на <emph>DateSerial</emph> и връща годината по зададено серийно число на дата. Например изразът"
-#: 03090201.xhp
+#: 03030106.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3154490\n"
-"45\n"
+"03030106.xhp\n"
+"par_id3149483\n"
+"11\n"
"help.text"
-msgid "statements"
-msgstr "оператори"
+msgid "returns the value 1994."
+msgstr "връща стойността 1994."
-#: 03090201.xhp
+#: 03030106.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3153159\n"
-"46\n"
+"03030106.xhp\n"
+"hd_id3146985\n"
+"12\n"
"help.text"
-msgid "Loop..."
-msgstr "Loop…"
+msgid "Example:"
+msgstr "Пример:"
-#: 03090201.xhp
+#: 03030106.xhp
msgctxt ""
-"03090201.xhp\n"
-"hd_id3147396\n"
-"47\n"
+"03030106.xhp\n"
+"par_id3153363\n"
+"14\n"
"help.text"
-msgid "Example"
-msgstr "Пример"
+msgid "MsgBox \"\" & Year(Now) ,64,\"Current year\""
+msgstr "MsgBox \"\" & Year(Now), 64, \"Текуща година\""
-#: 03080802.xhp
+#: 03030107.xhp
msgctxt ""
-"03080802.xhp\n"
+"03030107.xhp\n"
"tit\n"
"help.text"
-msgid "Oct Function [Runtime]"
-msgstr "Функция Oct [динамична]"
+msgid "CDateToIso Function [Runtime]"
+msgstr "Функция CDateToIso [динамична]"
-#: 03080802.xhp
+#: 03030107.xhp
msgctxt ""
-"03080802.xhp\n"
-"bm_id3155420\n"
+"03030107.xhp\n"
+"bm_id3150620\n"
"help.text"
-msgid "<bookmark_value>Oct function</bookmark_value>"
-msgstr "<bookmark_value>Oct, функция</bookmark_value>"
+msgid "<bookmark_value>CdateToIso function</bookmark_value>"
+msgstr "<bookmark_value>CdateToIso, функция</bookmark_value>"
-#: 03080802.xhp
+#: 03030107.xhp
msgctxt ""
-"03080802.xhp\n"
-"hd_id3155420\n"
+"03030107.xhp\n"
+"hd_id3150620\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080802.xhp\" name=\"Oct Function [Runtime]\">Oct Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03080802.xhp\" name=\"Функция Oct [динамична]\">Функция Oct [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03030107.xhp\" name=\"CDateToIso Function [Runtime]\">CDateToIso Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030107.xhp\" name=\"Функция CDateToIso [динамична]\">Функция CDateToIso [динамична]</link>"
-#: 03080802.xhp
+#: 03030107.xhp
msgctxt ""
-"03080802.xhp\n"
-"par_id3154924\n"
+"03030107.xhp\n"
+"par_id3151097\n"
"2\n"
"help.text"
-msgid "Returns the octal value of a number."
-msgstr "Връща осмичното представяне на число."
+msgid "Returns the date in ISO format from a serial date number that is generated by the DateSerial or the DateValue function."
+msgstr "Връща дата във формата на ISO по зададено серийно число на дата, генерирано от функцията DateSerial или DateValue."
-#: 03080802.xhp
+#: 03030107.xhp
msgctxt ""
-"03080802.xhp\n"
-"hd_id3148947\n"
+"03030107.xhp\n"
+"hd_id3159224\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03080802.xhp
+#: 03030107.xhp
msgctxt ""
-"03080802.xhp\n"
-"par_id3150543\n"
+"03030107.xhp\n"
+"par_id3149497\n"
"4\n"
"help.text"
-msgid "Oct (Number)"
-msgstr "Oct (Number)"
+msgid "CDateToIso(Number)"
+msgstr "CDateToIso(Number)"
-#: 03080802.xhp
+#: 03030107.xhp
msgctxt ""
-"03080802.xhp\n"
-"hd_id3153360\n"
+"03030107.xhp\n"
+"hd_id3152347\n"
"5\n"
"help.text"
msgid "Return value:"
msgstr "Връщана стойност:"
-#: 03080802.xhp
+#: 03030107.xhp
msgctxt ""
-"03080802.xhp\n"
-"par_id3154138\n"
+"03030107.xhp\n"
+"par_id3154422\n"
"6\n"
"help.text"
msgid "String"
msgstr "String"
-#: 03080802.xhp
+#: 03030107.xhp
msgctxt ""
-"03080802.xhp\n"
-"hd_id3156422\n"
+"03030107.xhp\n"
+"hd_id3147303\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Параметри:"
-#: 03080802.xhp
+#: 03030107.xhp
msgctxt ""
-"03080802.xhp\n"
-"par_id3150768\n"
+"03030107.xhp\n"
+"par_id3145136\n"
"8\n"
"help.text"
-msgid "<emph>Number:</emph> Any numeric expression that you want to convert to an octal value."
-msgstr "<emph>Number:</emph> числов израз, чиято осмична стойност искате да намерите."
+msgid "<emph>Number:</emph> Integer that contains the serial date number."
+msgstr "<emph>Number:</emph> целочислена стойност – серийно число на дата."
-#: 03080802.xhp
+#: 03030107.xhp
msgctxt ""
-"03080802.xhp\n"
-"hd_id3148672\n"
+"03030107.xhp\n"
+"hd_id3147243\n"
"9\n"
"help.text"
msgid "Example:"
msgstr "Пример:"
-#: 03080400.xhp
-msgctxt ""
-"03080400.xhp\n"
-"tit\n"
-"help.text"
-msgid "Square Root Calculation"
-msgstr "Изчисляване на квадратен корен"
-
-#: 03080400.xhp
-msgctxt ""
-"03080400.xhp\n"
-"hd_id3148946\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03080400.xhp\" name=\"Square Root Calculation\">Square Root Calculation</link>"
-msgstr "<link href=\"text/sbasic/shared/03080400.xhp\" name=\"Изчисляване на квадратен корен\">Изчисляване на квадратен корен</link>"
-
-#: 03080400.xhp
+#: 03030107.xhp
msgctxt ""
-"03080400.xhp\n"
-"par_id3159414\n"
-"2\n"
+"03030107.xhp\n"
+"par_id3153126\n"
+"11\n"
"help.text"
-msgid "Use this function to calculate square roots."
-msgstr "Тази функция служи за изчисляване на квадратен корен."
+msgid "MsgBox \"\" & CDateToIso(Now) ,64,\"ISO Date\""
+msgstr "MsgBox \"\" & CDateToIso(Now) , 64, \"Дата по ISO\""
#: 03030108.xhp
msgctxt ""
@@ -9092,885 +13823,622 @@ msgctxt ""
msgid "returns 12/31/2002 in the date format of your system"
msgstr "връща 31.12.2002 г. във формата за дати на вашата система."
-#: 03100050.xhp
+#: 03030110.xhp
msgctxt ""
-"03100050.xhp\n"
+"03030110.xhp\n"
"tit\n"
"help.text"
-msgid "CCur Function [Runtime]"
-msgstr "Функция CCur [динамична]"
+msgid "DateAdd Function [Runtime]"
+msgstr "Функция DateAdd [динамична]"
-#: 03100050.xhp
+#: 03030110.xhp
msgctxt ""
-"03100050.xhp\n"
-"bm_id8926053\n"
+"03030110.xhp\n"
+"bm_id6269417\n"
"help.text"
-msgid "<bookmark_value>CCur function</bookmark_value>"
-msgstr "<bookmark_value>CCur, функция</bookmark_value>"
+msgid "<bookmark_value>DateAdd function</bookmark_value>"
+msgstr "<bookmark_value>DateAdd, функция</bookmark_value>"
-#: 03100050.xhp
+#: 03030110.xhp
msgctxt ""
-"03100050.xhp\n"
-"par_idN10541\n"
+"03030110.xhp\n"
+"par_idN10548\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03100050.xhp\">CCur Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03100050.xhp\">Функция CCur [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03030110.xhp\">DateAdd Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030110.xhp\">Функция DateAdd [динамична]</link>"
-#: 03100050.xhp
+#: 03030110.xhp
msgctxt ""
-"03100050.xhp\n"
-"par_idN10545\n"
+"03030110.xhp\n"
+"par_idN10558\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 "Преобразува низ или число във валутна стойност. Настройките за локал определят десетичните разделители и символите за валута."
+msgid "Adds a date interval to a given date a number of times and returns the resulting date."
+msgstr "Добавя период към дадена дата определен брой пъти и връща получената дата."
-#: 03100050.xhp
+#: 03030110.xhp
msgctxt ""
-"03100050.xhp\n"
-"par_idN10548\n"
+"03030110.xhp\n"
+"par_idN1055B\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03100050.xhp
+#: 03030110.xhp
msgctxt ""
-"03100050.xhp\n"
-"par_idN105E8\n"
+"03030110.xhp\n"
+"par_idN1055F\n"
"help.text"
-msgid "CCur(Expression)"
-msgstr "CCur(Expression)"
+msgid "DateAdd (Add, Count, Date)"
+msgstr "DateAdd (Add, Count, Date)"
-#: 03100050.xhp
+#: 03030110.xhp
msgctxt ""
-"03100050.xhp\n"
-"par_idN105EB\n"
+"03030110.xhp\n"
+"par_idN1061E\n"
"help.text"
msgid "Return value:"
msgstr "Връщана стойност:"
-#: 03100050.xhp
-msgctxt ""
-"03100050.xhp\n"
-"par_idN105EF\n"
-"help.text"
-msgid "Currency"
-msgstr "Currency"
-
-#: 03100050.xhp
-msgctxt ""
-"03100050.xhp\n"
-"par_idN105F2\n"
-"help.text"
-msgid "Parameter:"
-msgstr "Параметър:"
-
-#: 03100050.xhp
-msgctxt ""
-"03100050.xhp\n"
-"par_idN105F6\n"
-"help.text"
-msgid "Expression: Any string or numeric expression that you want to convert."
-msgstr "<emph>Expression:</emph> низов или числов израз, който да бъде преобразуван."
-
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"tit\n"
-"help.text"
-msgid "Tan Function [Runtime]"
-msgstr "Функция Tan [динамична]"
-
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"bm_id3148550\n"
-"help.text"
-msgid "<bookmark_value>Tan function</bookmark_value>"
-msgstr "<bookmark_value>Tan, функция</bookmark_value>"
-
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"hd_id3148550\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03080104.xhp\" name=\"Tan Function [Runtime]\">Tan Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03080104.xhp\" name=\"Функция Tan [динамична]\">Функция Tan [динамична]</link>"
-
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"par_id3148663\n"
-"2\n"
-"help.text"
-msgid "Determines the tangent of an angle. The angle is specified in radians."
-msgstr "Намира тангенса на ъгъл, зададен в радиани."
-
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"par_id3153379\n"
-"3\n"
-"help.text"
-msgid "Using the angle Alpha, the Tan 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 "Функцията Tan изчислява съотношението между дължините на срещулежащия и прилежащия катет на дадения ъгъл в правоъгълен триъгълник."
-
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"par_id3154366\n"
-"4\n"
-"help.text"
-msgid "Tan(Alpha) = side opposite the angle/side adjacent to angle"
-msgstr "Tan(α) = срещулежащ катет / прилежащ катет"
-
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"hd_id3145174\n"
-"5\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
-
-#: 03080104.xhp
+#: 03030110.xhp
msgctxt ""
-"03080104.xhp\n"
-"par_id3151042\n"
-"6\n"
+"03030110.xhp\n"
+"par_idN10622\n"
"help.text"
-msgid "Tan (Number)"
-msgstr "Tan (Number)"
+msgid "A Variant containing a date."
+msgstr "Стойност от тип Variant, съдържаща дата."
-#: 03080104.xhp
+#: 03030110.xhp
msgctxt ""
-"03080104.xhp\n"
-"hd_id3156214\n"
-"7\n"
+"03030110.xhp\n"
+"par_idN10625\n"
"help.text"
-msgid "Return value:"
-msgstr "Връщана стойност:"
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 03080104.xhp
+#: 03030110.xhp
msgctxt ""
-"03080104.xhp\n"
-"par_id3156281\n"
-"8\n"
+"03030110.xhp\n"
+"par_idN10629\n"
"help.text"
-msgid "Double"
-msgstr "Double"
+msgid "Add - A string expression from the following table, specifying the date interval."
+msgstr "<emph>Add:</emph> низов израз със стойност от долната таблица, който задава периода."
-#: 03080104.xhp
+#: 03030110.xhp
msgctxt ""
-"03080104.xhp\n"
-"hd_id3155132\n"
-"9\n"
+"03030110.xhp\n"
+"par_idN10636\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "Add (string value)"
+msgstr "Add (стойност – низ)"
-#: 03080104.xhp
+#: 03030110.xhp
msgctxt ""
-"03080104.xhp\n"
-"par_id3145786\n"
-"10\n"
+"03030110.xhp\n"
+"par_idN1063C\n"
"help.text"
-msgid "<emph>Number:</emph> Any numeric expression that you want to calculate the tangent for (in radians)."
-msgstr "<emph>Number:</emph> числов израз – ъгъл в радиани, чийто тангенс искате да намерите."
+msgid "Explanation"
+msgstr "Обяснение"
-#: 03080104.xhp
+#: 03030110.xhp
msgctxt ""
-"03080104.xhp\n"
-"par_id3153728\n"
-"11\n"
+"03030110.xhp\n"
+"par_idN10643\n"
"help.text"
-msgid "To convert degrees to radians, multiply by Pi/180. To convert radians to degrees, multiply by 180/Pi."
-msgstr "За да превърнете градусите в радиани, умножете ги по π/180. За да превърнете радианите в градуси, умножете ги по 180/π."
+msgid "yyyy"
+msgstr "yyyy"
-#: 03080104.xhp
+#: 03030110.xhp
msgctxt ""
-"03080104.xhp\n"
-"par_id3155414\n"
-"12\n"
+"03030110.xhp\n"
+"par_idN10649\n"
"help.text"
-msgid "degrees=(radiant*180)/Pi"
-msgstr "degrees = (radians * 180) / Pi"
+msgid "Year"
+msgstr "Година"
-#: 03080104.xhp
+#: 03030110.xhp
msgctxt ""
-"03080104.xhp\n"
-"par_id3146975\n"
-"13\n"
+"03030110.xhp\n"
+"par_idN10650\n"
"help.text"
-msgid "radiant=(degrees*Pi)/180"
-msgstr "radians = (degrees * Pi) / 180"
+msgid "q"
+msgstr ""
-#: 03080104.xhp
+#: 03030110.xhp
msgctxt ""
-"03080104.xhp\n"
-"par_id3147434\n"
-"14\n"
+"03030110.xhp\n"
+"par_idN10656\n"
"help.text"
-msgid "Pi is approximately 3.141593."
-msgstr "Pi (π) е приблизително 3,14159."
+msgid "Quarter"
+msgstr "Тримесечие"
-#: 03080104.xhp
+#: 03030110.xhp
msgctxt ""
-"03080104.xhp\n"
-"hd_id3149483\n"
-"15\n"
+"03030110.xhp\n"
+"par_idN1065D\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "m"
+msgstr ""
-#: 03080104.xhp
+#: 03030110.xhp
msgctxt ""
-"03080104.xhp\n"
-"par_id3148646\n"
-"16\n"
+"03030110.xhp\n"
+"par_idN10663\n"
"help.text"
-msgid "' In this example, the following entry is possible for a right-angled triangle:"
-msgstr "' Този пример позволява въвеждане на срещулежащия катет"
+msgid "Month"
+msgstr "Месец"
-#: 03080104.xhp
+#: 03030110.xhp
msgctxt ""
-"03080104.xhp\n"
-"par_id3150012\n"
-"17\n"
+"03030110.xhp\n"
+"par_idN1066A\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 "' и ъгъл в градуси, за да се изчисли дължината на прилежащия катет."
+msgid "y"
+msgstr ""
-#: 03080104.xhp
+#: 03030110.xhp
msgctxt ""
-"03080104.xhp\n"
-"par_id3153158\n"
-"19\n"
+"03030110.xhp\n"
+"par_idN10670\n"
"help.text"
-msgid "' Pi = 3.1415926 is a pre-defined variable"
-msgstr "' Pi = 3.1415926 е предварително дефинирана променлива"
+msgid "Day of year"
+msgstr "Ден от годината"
-#: 03080104.xhp
+#: 03030110.xhp
msgctxt ""
-"03080104.xhp\n"
-"par_id3145252\n"
-"22\n"
+"03030110.xhp\n"
+"par_idN10677\n"
"help.text"
-msgid "d1 = InputBox$ (\"Enter the length of the side opposite the angle: \",\"opposite\")"
-msgstr "d1 = InputBox$(\"Въведете дължината на срещулежащия катет: \", \"Срещулежащ катет\")"
+msgid "w"
+msgstr ""
-#: 03080104.xhp
+#: 03030110.xhp
msgctxt ""
-"03080104.xhp\n"
-"par_id3149582\n"
-"23\n"
+"03030110.xhp\n"
+"par_idN1067D\n"
"help.text"
-msgid "dAlpha = InputBox$ (\"Enter the Alpha angle (in degrees): \",\"Alpha\")"
-msgstr "dAlpha = InputBox$ (\"Въведете ъгъла в градуси: \", \"Ъгъл\")"
+msgid "Weekday"
+msgstr "Ден от седмицата"
-#: 03080104.xhp
+#: 03030110.xhp
msgctxt ""
-"03080104.xhp\n"
-"par_id3154016\n"
-"24\n"
+"03030110.xhp\n"
+"par_idN10684\n"
"help.text"
-msgid "Print \"the length of the side adjacent the angle is\"; (d1 / tan (dAlpha * Pi / 180))"
-msgstr "Print \"Дължината на прилежащия катет на ъгъла е \"; (d1 / Tan(dAlpha * Pi / 180))"
+msgid "ww"
+msgstr "ww"
-#: 03100300.xhp
+#: 03030110.xhp
msgctxt ""
-"03100300.xhp\n"
-"tit\n"
+"03030110.xhp\n"
+"par_idN1068A\n"
"help.text"
-msgid "CDate Function [Runtime]"
-msgstr "Функция CDate [динамична]"
+msgid "Week of year"
+msgstr "Седмица от годината"
-#: 03100300.xhp
+#: 03030110.xhp
msgctxt ""
-"03100300.xhp\n"
-"bm_id3150772\n"
+"03030110.xhp\n"
+"par_idN10691\n"
"help.text"
-msgid "<bookmark_value>CDate function</bookmark_value>"
-msgstr "<bookmark_value>CDate, функция</bookmark_value>"
+msgid "d"
+msgstr ""
-#: 03100300.xhp
+#: 03030110.xhp
msgctxt ""
-"03100300.xhp\n"
-"hd_id3150772\n"
-"1\n"
+"03030110.xhp\n"
+"par_idN10697\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03100300.xhp\" name=\"CDate Function [Runtime]\">CDate Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03100300.xhp\" name=\"Функция CDate [динамична]\">Функция CDate [динамична]</link>"
+msgid "Day"
+msgstr "Ден"
-#: 03100300.xhp
+#: 03030110.xhp
msgctxt ""
-"03100300.xhp\n"
-"par_id3150986\n"
-"2\n"
+"03030110.xhp\n"
+"par_idN1069E\n"
"help.text"
-msgid "Converts any string or numeric expression to a date value."
-msgstr "Преобразува низов или числов израз в стойност – дата."
+msgid "h"
+msgstr ""
-#: 03100300.xhp
+#: 03030110.xhp
msgctxt ""
-"03100300.xhp\n"
-"hd_id3148944\n"
-"3\n"
+"03030110.xhp\n"
+"par_idN106A4\n"
"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
+msgid "Hour"
+msgstr "Час"
-#: 03100300.xhp
+#: 03030110.xhp
msgctxt ""
-"03100300.xhp\n"
-"par_id3148947\n"
-"4\n"
+"03030110.xhp\n"
+"par_idN106AB\n"
"help.text"
-msgid "CDate (Expression)"
-msgstr "CDate (Expression)"
+msgid "n"
+msgstr ""
-#: 03100300.xhp
+#: 03030110.xhp
msgctxt ""
-"03100300.xhp\n"
-"hd_id3148552\n"
-"5\n"
+"03030110.xhp\n"
+"par_idN106B1\n"
"help.text"
-msgid "Return value:"
-msgstr "Връщана стойност:"
+msgid "Minute"
+msgstr "Минута"
-#: 03100300.xhp
+#: 03030110.xhp
msgctxt ""
-"03100300.xhp\n"
-"par_id3159414\n"
-"6\n"
+"03030110.xhp\n"
+"par_idN106B8\n"
"help.text"
-msgid "Date"
-msgstr "Date"
+msgid "s"
+msgstr ""
-#: 03100300.xhp
+#: 03030110.xhp
msgctxt ""
-"03100300.xhp\n"
-"hd_id3153525\n"
-"7\n"
+"03030110.xhp\n"
+"par_idN106BE\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "Second"
+msgstr "Секунда"
-#: 03100300.xhp
+#: 03030110.xhp
msgctxt ""
-"03100300.xhp\n"
-"par_id3150359\n"
-"8\n"
+"03030110.xhp\n"
+"par_idN106C1\n"
"help.text"
-msgid "<emph>Expression:</emph> Any string or numeric expression that you want to convert."
-msgstr "<emph>Expression:</emph> низ или число, което трябва да бъде преобразувано."
+msgid "Count - A numerical expression specifying how often the Add interval will be added (Count is positive) or subtracted (Count is negative)."
+msgstr "<emph>Count:</emph> числов израз, указващ колко пъти да бъде добавен (Count > 0) или изваден (Count < 0) периодът от параметъра Add."
-#: 03100300.xhp
+#: 03030110.xhp
msgctxt ""
-"03100300.xhp\n"
-"par_id3125864\n"
-"9\n"
+"03030110.xhp\n"
+"par_idN106C4\n"
"help.text"
-msgid "When you convert a string expression, the date and time must be entered in the format MM.DD.YYYY HH.MM.SS, as defined by the <emph>DateValue</emph> and <emph>TimeValue</emph> function conventions. 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 "Когато преобразувате низов израз, датата и часът трябва да са във формат ММ.ДД.ГГГГ ЧЧ.ММ.СС, както за функциите <emph>DateValue</emph> и <emph>TimeValue</emph>. В числовите изрази цялата част на стойността представя датата, броена от 31 декември 1899 г., а дробната част представя часа."
+msgid "Date - A given date or the name of a Variant variable containing a date. The Add value will be added Count times to this value."
+msgstr "<emph>Date:</emph> дата или име на променлива от тип Variant, съдържаща дата. Стойността от Add ще бъде добавена Count на брой пъти към тази стойност."
-#: 03100300.xhp
+#: 03030110.xhp
msgctxt ""
-"03100300.xhp\n"
-"hd_id3156422\n"
-"10\n"
+"03030110.xhp\n"
+"par_idN106C7\n"
"help.text"
msgid "Example:"
msgstr "Пример:"
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
+"03030120.xhp\n"
"tit\n"
"help.text"
-msgid "Events"
-msgstr "Събития"
-
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"hd_id3155506\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/01170103.xhp\" name=\"Events\">Events</link>"
-msgstr "<link href=\"text/sbasic/shared/01170103.xhp\" name=\"Събития\">Събития</link>"
+msgid "DateDiff Function [Runtime]"
+msgstr "Функция DateDiff [динамична]"
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
-"par_id3146114\n"
-"2\n"
+"03030120.xhp\n"
+"bm_id6134830\n"
"help.text"
-msgid "Define event assignments for the selected control or dialog. The available events depend on the type of control selected."
-msgstr "Задайте макросите за събитията, свързани с избраният елемент за управление или диалогов прозорец. Достъпните събития зависят от вида на избрания елемент."
+msgid "<bookmark_value>DateDiff function</bookmark_value>"
+msgstr "<bookmark_value>DateDiff, функция</bookmark_value>"
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
-"hd_id3145387\n"
-"16\n"
+"03030120.xhp\n"
+"par_idN10542\n"
"help.text"
-msgid "When receiving focus"
-msgstr "При фокусиране"
+msgid "<link href=\"text/sbasic/shared/03030120.xhp\">DateDiff Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030120.xhp\">Функция DateDiff [динамична]</link>"
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
-"par_id3155090\n"
-"17\n"
+"03030120.xhp\n"
+"par_idN10546\n"
"help.text"
-msgid "<ahelp hid=\"HID_EVT_FOCUSGAINED\">This event takes place if a control receives the focus.</ahelp>"
-msgstr "<ahelp hid=\"HID_EVT_FOCUSGAINED\">Това събитие възниква, ако елемент за управление получи фокуса.</ahelp>"
+msgid "Returns the number of date intervals between two given date values."
+msgstr "Връща броя периоди между две зададени стойности – дати."
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
-"hd_id3152892\n"
-"18\n"
+"03030120.xhp\n"
+"par_idN10549\n"
"help.text"
-msgid "When losing focus"
-msgstr "При загуба на фокуса"
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
-"par_id3153305\n"
-"19\n"
+"03030120.xhp\n"
+"par_idN10648\n"
"help.text"
-msgid "<ahelp hid=\"HID_EVT_FOCUSLOST\">This event takes place if a control loses the focus.</ahelp>"
-msgstr "<ahelp hid=\"HID_EVT_FOCUSLOST\">Това събитие възниква, ако елемент за управление загуби фокуса.</ahelp>"
+msgid "DateDiff (Add, Date1, Date2 [, Week_start [, Year_start]])"
+msgstr "DateDiff (Add, Date1, Date2 [, Week_start [, Year_start]])"
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
-"hd_id3152896\n"
-"20\n"
+"03030120.xhp\n"
+"par_idN1064B\n"
"help.text"
-msgid "Key pressed"
-msgstr "При натиснат клавиш"
+msgid "Return value:"
+msgstr "Връщана стойност:"
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
-"par_id3148837\n"
-"21\n"
+"03030120.xhp\n"
+"par_idN1064F\n"
"help.text"
-msgid "<ahelp hid=\"HID_EVT_KEYTYPED\">This event occurs when the user presses any key while the control has the focus.</ahelp>"
-msgstr "<ahelp hid=\"HID_EVT_KEYTYPED\">Това събитие възниква, ако потребителят натисне клавиш, докато фокусът е върху елемента за управление.</ahelp>"
+msgid "A number."
+msgstr "Число."
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
-"hd_id3146869\n"
-"43\n"
+"03030120.xhp\n"
+"par_idN10652\n"
"help.text"
-msgid "Key released"
-msgstr "При отпуснат клавиш"
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
-"par_id3155267\n"
-"44\n"
+"03030120.xhp\n"
+"par_idN10656\n"
"help.text"
-msgid "<ahelp hid=\"HID_EVT_KEYUP\">This event occurs when the user releases a key while the control has the focus.</ahelp>"
-msgstr "<ahelp hid=\"HID_EVT_KEYUP\">Това събитие възниква, ако потребителят отпусне клавиш, докато фокусът е върху елемента за управление.</ahelp>"
+msgid "<emph>Add</emph> - A string expression from the following table, specifying the date interval."
+msgstr "<emph>Add:</emph> низова стойност от долната таблица, задаваща периода."
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
-"hd_id3159096\n"
-"41\n"
+"03030120.xhp\n"
+"par_idN10664\n"
"help.text"
-msgid "Modified"
-msgstr "Променен"
+msgid "<emph>Date1, Date2</emph> - The two date values to be compared."
+msgstr "<emph>Date1, Date2:</emph> двете дати, чиито стойности ще се сравняват."
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
-"par_id3156019\n"
-"42\n"
+"03030120.xhp\n"
+"par_idN1066A\n"
"help.text"
-msgid "<ahelp hid=\"HID_EVT_CHANGED\">This event takes place, when the control loses the focus and the contents of the control were changed since it lost the focus.</ahelp>"
-msgstr "<ahelp hid=\"HID_EVT_CHANGED\">Това събитие възниква, когато елементът за управление загуби фокуса и съдържанието му е променено след загубата на фокуса.</ahelp>"
+msgid "<emph>Week_start</emph> - An optional parameter that specifies the starting day of a week."
+msgstr "<emph>Week_start:</emph> незадължителен параметър, който задава началния ден на седмицата."
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
-"hd_id3144508\n"
-"10\n"
+"03030120.xhp\n"
+"par_idN1067A\n"
"help.text"
-msgid "Text modified"
-msgstr "При промяна в текста"
+msgid "Week_start value"
+msgstr "Стойност на Week_start"
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
-"par_id3148608\n"
-"11\n"
+"03030120.xhp\n"
+"par_idN10680\n"
"help.text"
-msgid "<ahelp hid=\"HID_EVT_TEXTCHANGED\">This event takes place if you enter or modify a text in an input field.</ahelp>"
-msgstr "<ahelp hid=\"HID_EVT_TEXTCHANGED\">Това събитие възниква, ако въведете или промените текст във входно поле.</ahelp>"
+msgid "Explanation"
+msgstr "Обяснение"
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
-"hd_id3159207\n"
-"8\n"
+"03030120.xhp\n"
+"par_idN10687\n"
"help.text"
-msgid "Item status changed"
-msgstr "При промяна в състоянието на обекта"
+msgid "0"
+msgstr ""
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
-"par_id3155097\n"
-"9\n"
+"03030120.xhp\n"
+"par_idN1068D\n"
"help.text"
-msgid "<ahelp hid=\"HID_EVT_ITEMSTATECHANGED\">This event takes place if the status of the control field is changed, for example, from checked to unchecked.</ahelp>"
-msgstr "<ahelp hid=\"HID_EVT_ITEMSTATECHANGED\">Това събитие възниква, ако състоянието на поле бъде променено, например от отметнато на празно.</ahelp>"
+msgid "Use system default value"
+msgstr "Използване на системните настройки"
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
-"hd_id3151304\n"
-"26\n"
+"03030120.xhp\n"
+"par_idN10694\n"
"help.text"
-msgid "Mouse inside"
-msgstr "Когато мишката е вътре"
+msgid "1"
+msgstr ""
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
-"par_id3152871\n"
-"27\n"
+"03030120.xhp\n"
+"par_idN1069A\n"
"help.text"
-msgid "<ahelp hid=\"HID_EVT_MOUSEENTERED\">This event takes place when the mouse enters the control.</ahelp>"
-msgstr "<ahelp hid=\"HID_EVT_MOUSEENTERED\">Това събитие възниква, ако показалецът на мишката навлезе в елемента за управление.</ahelp>"
+msgid "Sunday (default)"
+msgstr "Неделя (по подразбиране)"
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
-"hd_id3146778\n"
-"30\n"
+"03030120.xhp\n"
+"par_idN106A1\n"
"help.text"
-msgid "Mouse moved while key pressed"
-msgstr "При местене на мишката с натиснат клавиш"
+msgid "2"
+msgstr ""
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
-"par_id3150403\n"
-"31\n"
+"03030120.xhp\n"
+"par_idN106A7\n"
"help.text"
-msgid "<ahelp hid=\"HID_EVT_MOUSEDRAGGED\">This event takes place when the mouse is dragged while a key is pressed.</ahelp>"
-msgstr "<ahelp hid=\"HID_EVT_MOUSEDRAGGED\">Това събитие възниква, ако мишката бъде плъзната с натиснат клавиш.</ahelp>"
+msgid "Monday"
+msgstr "Понеделник"
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
-"hd_id3150210\n"
-"32\n"
+"03030120.xhp\n"
+"par_idN106AE\n"
"help.text"
-msgid "Mouse moved"
-msgstr "При преместване на мишката"
+msgid "3"
+msgstr ""
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
-"par_id3149697\n"
-"33\n"
+"03030120.xhp\n"
+"par_idN106B4\n"
"help.text"
-msgid "<ahelp hid=\"HID_EVT_MOUSEMOVED\">This event takes place when the mouse moves over the control.</ahelp>"
-msgstr "<ahelp hid=\"HID_EVT_MOUSEMOVED\">Това събитие възниква, ако показалецът на мишката се премести през елемента за управление.</ahelp>"
+msgid "Tuesday"
+msgstr "Вторник"
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
-"hd_id3145216\n"
-"22\n"
+"03030120.xhp\n"
+"par_idN106BB\n"
"help.text"
-msgid "Mouse button pressed"
-msgstr "При натиснат бутон на мишката"
+msgid "4"
+msgstr ""
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
-"par_id3155914\n"
-"23\n"
+"03030120.xhp\n"
+"par_idN106C1\n"
"help.text"
-msgid "<ahelp hid=\"HID_EVT_MOUSEPRESSED\">This event takes place when the mouse button is pressed while the mouse pointer is on the control.</ahelp>"
-msgstr "<ahelp hid=\"HID_EVT_MOUSEPRESSED\">Това събитие възниква, ако бутонът на мишката бъде натиснат, докато показалецът й е върху елемента за управление.</ahelp>"
+msgid "Wednesday"
+msgstr "Сряда"
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
-"hd_id3148899\n"
-"24\n"
+"03030120.xhp\n"
+"par_idN106C8\n"
"help.text"
-msgid "Mouse button released"
-msgstr "При отпуснат бутон на мишката"
+msgid "5"
+msgstr ""
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
-"par_id3153812\n"
-"25\n"
+"03030120.xhp\n"
+"par_idN106CE\n"
"help.text"
-msgid "<ahelp hid=\"HID_EVT_MOUSERELEASED\">This event takes place when the mouse button is released while the mouse pointer is on the control.</ahelp>"
-msgstr "<ahelp hid=\"HID_EVT_MOUSERELEASED\">Това събитие възниква, ако бутонът на мишката бъде отпуснат, докато показалецът й е върху елемента за управление.</ahelp>"
+msgid "Thursday"
+msgstr "Четвъртък"
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
-"hd_id3153556\n"
-"28\n"
+"03030120.xhp\n"
+"par_idN106D5\n"
"help.text"
-msgid "Mouse outside"
-msgstr "Когато мишката е отвън"
+msgid "6"
+msgstr ""
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
-"par_id3153013\n"
-"29\n"
+"03030120.xhp\n"
+"par_idN106DB\n"
"help.text"
-msgid "<ahelp hid=\"HID_EVT_MOUSEEXITED\">This event takes place when the mouse leaves the control.</ahelp>"
-msgstr "<ahelp hid=\"HID_EVT_MOUSEEXITED\">Това събитие възниква, ако показалецът на мишката напусне елемента за управление.</ahelp>"
+msgid "Friday"
+msgstr "Петък"
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
-"hd_id3155759\n"
-"45\n"
+"03030120.xhp\n"
+"par_idN106E2\n"
"help.text"
-msgid "While adjusting"
-msgstr "При нагласяване"
+msgid "7"
+msgstr ""
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
-"par_id3156364\n"
-"46\n"
+"03030120.xhp\n"
+"par_idN106E8\n"
"help.text"
-msgid "<ahelp hid=\"HID_EVT_MOUSEEXITED\">This event takes place when a scrollbar is being dragged.</ahelp>"
-msgstr "<ahelp hid=\"HID_EVT_MOUSEEXITED\">Това събитие възниква, когато плъзгач бъде преместен.</ahelp>"
+msgid "Saturday"
+msgstr "Събота"
-#: 01050200.xhp
+#: 03030120.xhp
msgctxt ""
-"01050200.xhp\n"
-"tit\n"
+"03030120.xhp\n"
+"par_idN106EB\n"
"help.text"
-msgid "Call Stack Window (Calls)"
-msgstr "Прозорец на стека (Извиквания)"
+msgid "<emph>Year_start</emph> - An optional parameter that specifies the starting week of a year."
+msgstr "<emph>Year_start:</emph> незадължителен параметър, който задава началната седмица на годината."
-#: 01050200.xhp
+#: 03030120.xhp
msgctxt ""
-"01050200.xhp\n"
-"hd_id3146794\n"
-"1\n"
+"03030120.xhp\n"
+"par_idN106FB\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/01050200.xhp\" name=\"Call Stack Window (Calls)\">Call Stack Window (Calls)</link>"
-msgstr "<link href=\"text/sbasic/shared/01050200.xhp\" name=\"Прозорец на стека (Извиквания)\">Прозорец на стека (Извиквания)</link>"
+msgid "Year_start value"
+msgstr "Стойност на Year_start"
-#: 01050200.xhp
+#: 03030120.xhp
msgctxt ""
-"01050200.xhp\n"
-"par_id3150400\n"
-"2\n"
+"03030120.xhp\n"
+"par_idN10701\n"
"help.text"
-msgid "<ahelp hid=\"HID_BASICIDE_STACKWINDOW_LIST\" visibility=\"hidden\">Displays the sequence of procedures and functions during the execution of a program.</ahelp> The <emph>Call Stack</emph> allows you to monitor the sequence of procedures and functions during the execution of a program. The procedures are functions are displayed bottom to top with the most recent function or procedure call at the top of the list."
-msgstr "<ahelp hid=\"HID_BASICIDE_STACKWINDOW_LIST\" visibility=\"hidden\">Показва реда на изпълняваните процедури и функции при изпълнението на програма.</ahelp> <emph>Стекът на извикванията</emph> ви позволява да следите реда на изпълняване на процедури и функции по време на изпълнението на програма. Процедурите и функциите се показват отдолу нагоре, като най-скоро извиканата функция или процедура е в началото на списъка."
+msgid "Explanation"
+msgstr "Обяснение"
-#: 03131400.xhp
+#: 03030120.xhp
msgctxt ""
-"03131400.xhp\n"
-"tit\n"
+"03030120.xhp\n"
+"par_idN10708\n"
"help.text"
-msgid "TwipsPerPixelY Function [Runtime]"
-msgstr "Функция TwipsPerPixelY [динамична]"
+msgid "0"
+msgstr ""
-#: 03131400.xhp
+#: 03030120.xhp
msgctxt ""
-"03131400.xhp\n"
-"bm_id3150040\n"
+"03030120.xhp\n"
+"par_idN1070E\n"
"help.text"
-msgid "<bookmark_value>TwipsPerPixelY function</bookmark_value>"
-msgstr "<bookmark_value>TwipsPerPixelY, функция</bookmark_value>"
+msgid "Use system default value"
+msgstr "Използване на системните настройки"
-#: 03131400.xhp
+#: 03030120.xhp
msgctxt ""
-"03131400.xhp\n"
-"hd_id3150040\n"
-"1\n"
+"03030120.xhp\n"
+"par_idN10715\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03131400.xhp\" name=\"TwipsPerPixelY Function [Runtime]\">TwipsPerPixelY Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03131400.xhp\" name=\"Функция TwipsPerPixelY [динамична]\">Функция TwipsPerPixelY [динамична]</link>"
+msgid "1"
+msgstr ""
-#: 03131400.xhp
+#: 03030120.xhp
msgctxt ""
-"03131400.xhp\n"
-"par_id3154186\n"
-"2\n"
+"03030120.xhp\n"
+"par_idN1071B\n"
"help.text"
-msgid "Returns the number of twips that represent the height of a pixel."
-msgstr "Връща броя туипове, съответстващ на височината на един пиксел."
+msgid "Week 1 is the week with January, 1st (default)"
+msgstr "Седмица 1 е седмицата, съдъжаща 1 януари (по подразбиране)."
-#: 03131400.xhp
+#: 03030120.xhp
msgctxt ""
-"03131400.xhp\n"
-"hd_id3145090\n"
-"3\n"
+"03030120.xhp\n"
+"par_idN10722\n"
"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
+msgid "2"
+msgstr ""
-#: 03131400.xhp
+#: 03030120.xhp
msgctxt ""
-"03131400.xhp\n"
-"par_id3153681\n"
-"4\n"
+"03030120.xhp\n"
+"par_idN10728\n"
"help.text"
-msgid "n = TwipsPerPixelY"
-msgstr "n = TwipsPerPixelY"
+msgid "Week 1 is the first week containing four or more days of that year"
+msgstr "Седмица 1 е първата седмица, съдържаща четири или повече дни от съответната година."
-#: 03131400.xhp
+#: 03030120.xhp
msgctxt ""
-"03131400.xhp\n"
-"hd_id3148473\n"
-"5\n"
+"03030120.xhp\n"
+"par_idN1072F\n"
"help.text"
-msgid "Return value:"
-msgstr "Връщана стойност:"
+msgid "3"
+msgstr ""
-#: 03131400.xhp
+#: 03030120.xhp
msgctxt ""
-"03131400.xhp\n"
-"par_id3154306\n"
-"6\n"
+"03030120.xhp\n"
+"par_idN10735\n"
"help.text"
-msgid "Integer"
-msgstr "Integer"
+msgid "Week 1 is the first week containing only days of the new year"
+msgstr "Седмица 1 е първата седмица, съдържаща само дни от новата година."
-#: 03131400.xhp
+#: 03030120.xhp
msgctxt ""
-"03131400.xhp\n"
-"hd_id3149235\n"
-"7\n"
+"03030120.xhp\n"
+"par_idN10738\n"
"help.text"
msgid "Example:"
msgstr "Пример:"
-#: 03131400.xhp
-msgctxt ""
-"03131400.xhp\n"
-"par_id3154142\n"
-"9\n"
-"help.text"
-msgid "MsgBox \"\" & TwipsPerPixelX() & \" Twips * \" & TwipsPerPixelY() & \" Twips\",0,\"Pixel size\""
-msgstr "MsgBox \"\" & TwipsPerPixelX() & \" туипа * \" & TwipsPerPixelY() & \" туипа\", 0, \"Размер на пиксела\""
-
-#: 03120100.xhp
-msgctxt ""
-"03120100.xhp\n"
-"tit\n"
-"help.text"
-msgid "ASCII/ANSI Conversion in Strings"
-msgstr "Преобазуване на код ASCII/ANSI в низове"
-
-#: 03120100.xhp
-msgctxt ""
-"03120100.xhp\n"
-"hd_id3147443\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03120100.xhp\" name=\"ASCII/ANSI Conversion in Strings\">ASCII/ANSI Conversion in Strings</link>"
-msgstr "<link href=\"text/sbasic/shared/03120100.xhp\" name=\"Преобазуване на код ASCII/ANSI в низове\">Преобазуване на код ASCII/ANSI в низове</link>"
-
-#: 03120100.xhp
-msgctxt ""
-"03120100.xhp\n"
-"par_id3159201\n"
-"2\n"
-"help.text"
-msgid "The following functions convert strings to and from ASCII or ANSI code."
-msgstr "Следващите функции преобразуват низове от и към код ASCII или ANSI."
-
-#: 03090411.xhp
-msgctxt ""
-"03090411.xhp\n"
-"tit\n"
-"help.text"
-msgid "With Statement [Runtime]"
-msgstr "Оператор With [динамичен]"
-
-#: 03090411.xhp
-msgctxt ""
-"03090411.xhp\n"
-"bm_id3153311\n"
-"help.text"
-msgid "<bookmark_value>With statement</bookmark_value>"
-msgstr "<bookmark_value>With, оператор</bookmark_value>"
-
-#: 03090411.xhp
-msgctxt ""
-"03090411.xhp\n"
-"hd_id3153311\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"With Statement [Runtime]\">With Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"Оператор With [динамичен]\">Оператор With [динамичен]</link>"
-
-#: 03090411.xhp
-msgctxt ""
-"03090411.xhp\n"
-"par_id3159158\n"
-"2\n"
-"help.text"
-msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the End With statement is reached."
-msgstr "Задава обект като обект по подразбиране. Освен ако бъде декларирано друго име на обект, всички свойства и методи се отнасят за подразбирания обект до срещането на оператор End With."
-
-#: 03090411.xhp
-msgctxt ""
-"03090411.xhp\n"
-"hd_id3156153\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
-
-#: 03090411.xhp
-msgctxt ""
-"03090411.xhp\n"
-"par_id3145609\n"
-"4\n"
-"help.text"
-msgid "With Object Statement block End With"
-msgstr "With Object Statement block End With"
-
-#: 03090411.xhp
-msgctxt ""
-"03090411.xhp\n"
-"hd_id3154924\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
-
-#: 03090411.xhp
-msgctxt ""
-"03090411.xhp\n"
-"par_id3147560\n"
-"6\n"
-"help.text"
-msgid "Use <emph>With</emph> and <emph>End With</emph> if you have several properties or methods for a single object."
-msgstr "Използвайте <emph>With</emph> и <emph>End With</emph>, ако искате да се обърнете към няколко свойства или методи на един и същ обект."
-
#: 03030130.xhp
msgctxt ""
"03030130.xhp\n"
@@ -10067,886 +14535,1033 @@ msgctxt ""
msgid "Example:"
msgstr "Пример:"
-#: 03101130.xhp
+#: 03030200.xhp
msgctxt ""
-"03101130.xhp\n"
+"03030200.xhp\n"
"tit\n"
"help.text"
-msgid "DefSng Statement [Runtime]"
-msgstr "Оператор DefSng [динамичен]"
+msgid "Converting Time Values"
+msgstr "Преобразуване на стойности – часове"
-#: 03101130.xhp
+#: 03030200.xhp
msgctxt ""
-"03101130.xhp\n"
-"bm_id2445142\n"
+"03030200.xhp\n"
+"hd_id3147226\n"
+"1\n"
"help.text"
-msgid "<bookmark_value>DefSng statement</bookmark_value>"
-msgstr "<bookmark_value>DefSng, оператор</bookmark_value>"
+msgid "<link href=\"text/sbasic/shared/03030200.xhp\" name=\"Converting Time Values\">Converting Time Values</link>"
+msgstr "<link href=\"text/sbasic/shared/03030200.xhp\" name=\"Преобразуване на стойности – часове\">Преобразуване на стойности – часове</link>"
-#: 03101130.xhp
+#: 03030200.xhp
msgctxt ""
-"03101130.xhp\n"
-"par_idN10577\n"
+"03030200.xhp\n"
+"par_id3149415\n"
+"2\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03101130.xhp\">DefSng Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03101130.xhp\">Оператор DefSng [динамичен]</link>"
+msgid "The following functions convert time values to calculable numbers."
+msgstr "Следващите функции преобразуват стойности – часове към числа, с които могат да се извършват изчисления."
-#: 03101130.xhp
+#: 03030201.xhp
msgctxt ""
-"03101130.xhp\n"
-"par_idN10587\n"
+"03030201.xhp\n"
+"tit\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 "Операторът DefSng установява подразбиран тип данни според диапазон от букви в случай, че не е зададена ключова дума или знак за деклариране на тип."
+msgid "Hour Function [Runtime]"
+msgstr "Функция Hour [динамична]"
-#: 03101130.xhp
+#: 03030201.xhp
msgctxt ""
-"03101130.xhp\n"
-"par_idN1058A\n"
+"03030201.xhp\n"
+"bm_id3156042\n"
+"help.text"
+msgid "<bookmark_value>Hour function</bookmark_value>"
+msgstr "<bookmark_value>Hour, функция</bookmark_value>"
+
+#: 03030201.xhp
+msgctxt ""
+"03030201.xhp\n"
+"hd_id3156042\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03030201.xhp\" name=\"Hour Function [Runtime]\">Hour Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030201.xhp\" name=\"Функция Hour [динамична]\">Функция Hour [динамична]</link>"
+
+#: 03030201.xhp
+msgctxt ""
+"03030201.xhp\n"
+"par_id3149346\n"
+"2\n"
+"help.text"
+msgid "Returns the hour from a time value that is generated by the TimeSerial or the TimeValue function."
+msgstr "Връща само часа от стойност за точен час, генерирана от функцията TimeSerial или TimeValue."
+
+#: 03030201.xhp
+msgctxt ""
+"03030201.xhp\n"
+"hd_id3147574\n"
+"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03101130.xhp
+#: 03030201.xhp
msgctxt ""
-"03101130.xhp\n"
-"par_idN1058E\n"
+"03030201.xhp\n"
+"par_id3147264\n"
+"4\n"
"help.text"
-msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
-msgstr "Defxxx Characterrange1[, Characterrange2[,...]]"
+msgid "Hour (Number)"
+msgstr "Hour (Number)"
-#: 03101130.xhp
+#: 03030201.xhp
msgctxt ""
-"03101130.xhp\n"
-"par_idN10591\n"
+"03030201.xhp\n"
+"hd_id3145069\n"
+"5\n"
+"help.text"
+msgid "Return value:"
+msgstr "Връщана стойност:"
+
+#: 03030201.xhp
+msgctxt ""
+"03030201.xhp\n"
+"par_id3149670\n"
+"6\n"
+"help.text"
+msgid "Integer"
+msgstr "Integer"
+
+#: 03030201.xhp
+msgctxt ""
+"03030201.xhp\n"
+"hd_id3150359\n"
+"7\n"
"help.text"
msgid "Parameters:"
msgstr "Параметри:"
-#: 03101130.xhp
+#: 03030201.xhp
msgctxt ""
-"03101130.xhp\n"
-"par_idN10595\n"
+"03030201.xhp\n"
+"par_id3154366\n"
+"8\n"
"help.text"
-msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set a default data type for."
-msgstr "<emph>Characterrange:</emph> букви, определящи диапазона от променливи, за които искате да зададете подразбиран тип данни."
+msgid "<emph>Number:</emph> Numeric expression that contains the serial time value that is used to return the hour value."
+msgstr "<emph>Number:</emph> числов израз – серийна стойност за час, въз основа на която се изчислява стойността на часовете."
-#: 03101130.xhp
+#: 03030201.xhp
msgctxt ""
-"03101130.xhp\n"
-"par_idN1059C\n"
+"03030201.xhp\n"
+"par_id3154909\n"
+"9\n"
"help.text"
-msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
-msgstr "<emph>xxx:</emph> ключова дума, дефинираща подразбирания тип данни:"
+msgid "This function is the opposite of the <emph>TimeSerial</emph> function. It returns an integer value that represents the hour from a time value that is generated by the <emph>TimeSerial</emph> or the <emph>TimeValue </emph>function. For example, the expression"
+msgstr "Тази функция е противоположна на <emph>TimeSerial</emph>. Тя връща целочислена стойност, представяща само часовете от стойност за час, генерирана от функцията <emph>TimeSerial</emph> или<emph>TimeValue</emph>. Например изразът"
-#: 03101130.xhp
+#: 03030201.xhp
msgctxt ""
-"03101130.xhp\n"
-"par_idN105A3\n"
+"03030201.xhp\n"
+"par_id3163798\n"
+"10\n"
"help.text"
-msgid "<emph>Keyword:</emph> Default variable type"
-msgstr "<emph>Ключова дума:</emph> Подразбиран тип данни"
+msgid "Print Hour(TimeSerial(12,30,41))"
+msgstr "Print Hour(TimeSerial(12,30,41))"
-#: 03101130.xhp
+#: 03030201.xhp
msgctxt ""
-"03101130.xhp\n"
-"par_idN105AA\n"
+"03030201.xhp\n"
+"par_id3155132\n"
+"11\n"
"help.text"
-msgid "<emph>DefSng:</emph> Single"
-msgstr "<emph>DefSng:</emph> Single"
+msgid "returns the value 12."
+msgstr "връща стойността 12."
-#: 03101130.xhp
+#: 03030201.xhp
msgctxt ""
-"03101130.xhp\n"
-"par_idN105B1\n"
+"03030201.xhp\n"
+"hd_id3147348\n"
+"12\n"
"help.text"
msgid "Example:"
msgstr "Пример:"
-#: 03101130.xhp
+#: 03030201.xhp
msgctxt ""
-"03101130.xhp\n"
-"par_idN105B5\n"
+"03030201.xhp\n"
+"par_id3146985\n"
+"13\n"
"help.text"
-msgid "' Prefix definitions for variable types:"
-msgstr "' Дефиниране с префикс за променливи от даден тип:"
+msgid "Sub ExampleHour"
+msgstr "Sub ExampleHour"
-#: 03101130.xhp
+#: 03030201.xhp
msgctxt ""
-"03101130.xhp\n"
-"par_idN105D3\n"
+"03030201.xhp\n"
+"par_id3156441\n"
+"14\n"
"help.text"
-msgid "sSng=Single ' sSng is an implicit single variable"
-msgstr "sSng = Single ' sSng е променлива с неявен тип Single"
+msgid "Print \"The current hour is \" & Hour( Now )"
+msgstr "Print \"Текущият час е \" & Hour(Now)"
-#: 03120305.xhp
+#: 03030201.xhp
msgctxt ""
-"03120305.xhp\n"
+"03030201.xhp\n"
+"par_id3153145\n"
+"15\n"
+"help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03030202.xhp
+msgctxt ""
+"03030202.xhp\n"
"tit\n"
"help.text"
-msgid "LTrim Function [Runtime]"
-msgstr "Функция LTrim [динамична]"
+msgid "Minute Function [Runtime]"
+msgstr "Функция Minute [динамична]"
-#: 03120305.xhp
+#: 03030202.xhp
msgctxt ""
-"03120305.xhp\n"
-"bm_id3147574\n"
+"03030202.xhp\n"
+"bm_id3155419\n"
"help.text"
-msgid "<bookmark_value>LTrim function</bookmark_value>"
-msgstr "<bookmark_value>LTrim, функция</bookmark_value>"
+msgid "<bookmark_value>Minute function</bookmark_value>"
+msgstr "<bookmark_value>Minute, функция</bookmark_value>"
-#: 03120305.xhp
+#: 03030202.xhp
msgctxt ""
-"03120305.xhp\n"
-"hd_id3147574\n"
+"03030202.xhp\n"
+"hd_id3155419\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120305.xhp\" name=\"LTrim Function [Runtime]\">LTrim Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120305.xhp\" name=\"Функция LTrim [динамична]\">Функция LTrim [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03030202.xhp\" name=\"Minute Function [Runtime]\">Minute Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030202.xhp\" name=\"Функция Minute [динамична]\">Функция Minute [динамична]</link>"
-#: 03120305.xhp
+#: 03030202.xhp
msgctxt ""
-"03120305.xhp\n"
-"par_id3145316\n"
+"03030202.xhp\n"
+"par_id3156344\n"
"2\n"
"help.text"
-msgid "Removes all leading spaces at the start of a string expression."
-msgstr "Премахва водещите интервали в началото на низ."
+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 "Връща минутата от часа, която съответства на серийна стойност за час, генерирана от функцията TimeSerial или TimeValue."
-#: 03120305.xhp
+#: 03030202.xhp
msgctxt ""
-"03120305.xhp\n"
-"hd_id3154924\n"
+"03030202.xhp\n"
+"hd_id3154758\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03120305.xhp
+#: 03030202.xhp
msgctxt ""
-"03120305.xhp\n"
-"par_id3148552\n"
+"03030202.xhp\n"
+"par_id3149656\n"
"4\n"
"help.text"
-msgid "LTrim (Text As String)"
-msgstr "LTrim (Text As String)"
+msgid "Minute (Number)"
+msgstr "Minute (Number)"
-#: 03120305.xhp
+#: 03030202.xhp
msgctxt ""
-"03120305.xhp\n"
-"hd_id3156344\n"
+"03030202.xhp\n"
+"hd_id3148798\n"
"5\n"
"help.text"
msgid "Return value:"
msgstr "Връщана стойност:"
-#: 03120305.xhp
+#: 03030202.xhp
msgctxt ""
-"03120305.xhp\n"
-"par_id3151056\n"
+"03030202.xhp\n"
+"par_id3150449\n"
"6\n"
"help.text"
-msgid "String"
-msgstr "String"
+msgid "Integer"
+msgstr "Integer"
-#: 03120305.xhp
+#: 03030202.xhp
msgctxt ""
-"03120305.xhp\n"
-"hd_id3150543\n"
+"03030202.xhp\n"
+"hd_id3153193\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Параметри:"
-#: 03120305.xhp
+#: 03030202.xhp
msgctxt ""
-"03120305.xhp\n"
-"par_id3150792\n"
+"03030202.xhp\n"
+"par_id3153969\n"
"8\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression."
-msgstr "<emph>Text:</emph> израз със стойност низ."
+msgid "<emph>Number:</emph> Numeric expression that contains the serial time value that is used to return the minute value."
+msgstr "<emph>Number:</emph> числов израз – серийната стойност за точен час, от която се изчислява стойността на минутите."
-#: 03120305.xhp
+#: 03030202.xhp
msgctxt ""
-"03120305.xhp\n"
-"par_id3125863\n"
+"03030202.xhp\n"
+"par_id3150869\n"
"9\n"
"help.text"
-msgid "Use this function to remove spaces at the beginning of a string expression."
-msgstr "Използвайте тази функция, за да премахнете интервалите от началото на низ."
+msgid "This function is the opposite of the <emph>TimeSerial </emph>function. It returns the minute of the serial time value that is generated by the <emph>TimeSerial</emph> or the <emph>TimeValue </emph>function. For example, the expression:"
+msgstr "Тази функция е противоположна на <emph>TimeSerial</emph>. Тя връща минутите от стойност за час, генерирана от функцията <emph>TimeSerial</emph> или<emph>TimeValue</emph>. Например изразът"
-#: 03120305.xhp
+#: 03030202.xhp
msgctxt ""
-"03120305.xhp\n"
-"hd_id3145419\n"
+"03030202.xhp\n"
+"par_id3149262\n"
"10\n"
"help.text"
+msgid "Print Minute(TimeSerial(12,30,41))"
+msgstr "Print Minute(TimeSerial(12,30,41))"
+
+#: 03030202.xhp
+msgctxt ""
+"03030202.xhp\n"
+"par_id3148576\n"
+"11\n"
+"help.text"
+msgid "returns the value 30."
+msgstr "връща стойността 30."
+
+#: 03030202.xhp
+msgctxt ""
+"03030202.xhp\n"
+"hd_id3150010\n"
+"12\n"
+"help.text"
msgid "Example:"
msgstr "Пример:"
-#: 03010103.xhp
+#: 03030202.xhp
msgctxt ""
-"03010103.xhp\n"
+"03030202.xhp\n"
+"par_id3159154\n"
+"13\n"
+"help.text"
+msgid "Sub ExampleMinute"
+msgstr "Sub ExampleMinute"
+
+#: 03030202.xhp
+msgctxt ""
+"03030202.xhp\n"
+"par_id3146119\n"
+"14\n"
+"help.text"
+msgid "MsgBox \"The current minute is \"& Minute(Now)& \".\""
+msgstr "MsgBox \"Текущата минута е \" & Minute(Now) & \".\""
+
+#: 03030202.xhp
+msgctxt ""
+"03030202.xhp\n"
+"par_id3153726\n"
+"15\n"
+"help.text"
+msgid "end sub"
+msgstr "End Sub"
+
+#: 03030203.xhp
+msgctxt ""
+"03030203.xhp\n"
"tit\n"
"help.text"
-msgid "Print Statement [Runtime]"
-msgstr "Оператор Print [динамичен]"
+msgid "Now Function [Runtime]"
+msgstr "Функция Now [динамична]"
-#: 03010103.xhp
+#: 03030203.xhp
msgctxt ""
-"03010103.xhp\n"
-"bm_id3147230\n"
+"03030203.xhp\n"
+"bm_id3149416\n"
"help.text"
-msgid "<bookmark_value>Print statement</bookmark_value>"
-msgstr "<bookmark_value>Print, оператор</bookmark_value>"
+msgid "<bookmark_value>Now function</bookmark_value>"
+msgstr "<bookmark_value>Now, функция</bookmark_value>"
-#: 03010103.xhp
+#: 03030203.xhp
msgctxt ""
-"03010103.xhp\n"
-"hd_id3147230\n"
+"03030203.xhp\n"
+"hd_id3149416\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03010103.xhp\" name=\"Print Statement [Runtime]\">Print Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03010103.xhp\" name=\"Оператор Print [динамичен]\">Оператор Print [динамичен]</link>"
+msgid "<link href=\"text/sbasic/shared/03030203.xhp\" name=\"Now Function [Runtime]\">Now Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030203.xhp\" name=\"Функция Now [динамична]\">Функция Now [динамична]</link>"
-#: 03010103.xhp
+#: 03030203.xhp
msgctxt ""
-"03010103.xhp\n"
-"par_id3156281\n"
+"03030203.xhp\n"
+"par_id3149670\n"
"2\n"
"help.text"
-msgid "Outputs the specified strings or numeric expressions to a dialog or to a file."
-msgstr "Извежда зададените низове или числови изрази в диалогов прозорец или файл."
+msgid "Returns the current system date and time as a <emph>Date</emph> value."
+msgstr "Връща текущата системна дата и час като стойност от тип <emph>Date</emph>."
-#: 03010103.xhp
+#: 03030203.xhp
msgctxt ""
-"03010103.xhp\n"
-"hd_id3145785\n"
+"03030203.xhp\n"
+"hd_id3149456\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03010103.xhp
+#: 03030203.xhp
msgctxt ""
-"03010103.xhp\n"
-"par_id3153188\n"
+"03030203.xhp\n"
+"par_id3149655\n"
"4\n"
"help.text"
-msgid "Print [#FileName,] Expression1[{;|,} [Spc(Number As Integer);] [Tab(pos As Integer);] [Expression2[...]]"
-msgstr "Print [#FileName,] Expression1[{;|,} [Spc(Number As Integer);] [Tab(pos As Integer);] [Expression2[...]]"
+msgid "Now"
+msgstr "Now"
-#: 03010103.xhp
+#: 03030203.xhp
msgctxt ""
-"03010103.xhp\n"
-"hd_id3147348\n"
+"03030203.xhp\n"
+"hd_id3154366\n"
"5\n"
"help.text"
-msgid "Parameter:"
-msgstr "Параметър:"
-
-#: 03010103.xhp
-msgctxt ""
-"03010103.xhp\n"
-"par_id2508621\n"
-"help.text"
-msgid "<emph>FileName:</emph> Any numeric expression that contains the file number that was set by the Open statement for the respective file."
-msgstr "<emph>FileName:</emph> числов израз, задаващ номера на файл, който е получен от оператора Open за съответния файл."
+msgid "Return value:"
+msgstr "Връщана стойност:"
-#: 03010103.xhp
+#: 03030203.xhp
msgctxt ""
-"03010103.xhp\n"
-"par_id3163712\n"
+"03030203.xhp\n"
+"par_id3154909\n"
"6\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 "<emph>Expression</emph>: числов или низов израз, чиято стойност да бъде отпечатана. Можете да разделите няколко израза с точки и запетаи. Ако ги разделите със запетаи, стойностите ще бъдат подравнени по следващата позиция за табулация. Позициите за табулация не могат да се настройват."
+msgid "Date"
+msgstr "Дата"
-#: 03010103.xhp
+#: 03030203.xhp
msgctxt ""
-"03010103.xhp\n"
-"par_id3153092\n"
+"03030203.xhp\n"
+"hd_id3147229\n"
"7\n"
"help.text"
-msgid "<emph>Number</emph>: Number of spaces to be inserted by the <emph>Spc</emph> function."
-msgstr "<emph>Number</emph>: броят интервали, които да бъдат вмъкнати от функцията <emph>Spc</emph>."
+msgid "Example:"
+msgstr "Пример:"
-#: 03010103.xhp
+#: 03030203.xhp
msgctxt ""
-"03010103.xhp\n"
-"par_id3145364\n"
-"8\n"
+"03030203.xhp\n"
+"par_id3150870\n"
+"9\n"
"help.text"
-msgid "<emph>Pos</emph>: Spaces are inserted until the specified position."
-msgstr "<emph>Pos</emph>: до указаната позиция се вмъкват интервали."
+msgid "MsgBox \"It is now \" & Now"
+msgstr "MsgBox \"В момента е \" & Now"
-#: 03010103.xhp
+#: 03030204.xhp
msgctxt ""
-"03010103.xhp\n"
-"par_id3154319\n"
-"9\n"
+"03030204.xhp\n"
+"tit\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 "Ако след последния израз за отпечатване има точка и запетая или запетая, $[officename] Basic запазва текста във вътрешен буфер и продължава изпълнението на програмата, без да печата. Когато бъде срещнат друг оператор Print, без точка и запетая или запетая в края, всичкият текст за отпечатване се отпечатва наведнъж."
+msgid "Second Function [Runtime]"
+msgstr "Функция Second [динамична]"
-#: 03010103.xhp
+#: 03030204.xhp
msgctxt ""
-"03010103.xhp\n"
-"par_id3145272\n"
-"10\n"
+"03030204.xhp\n"
+"bm_id3153346\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 "Положителните числови стойности се отпечатват с водещ интервал. Отрицателните стойности се отпечатват с водещ знак минус. Ако стойностите с плаваща запетая не попадат в определен интервал, те се отпечатват в експоненциален запис."
+msgid "<bookmark_value>Second function</bookmark_value>"
+msgstr "<bookmark_value>Second, функция</bookmark_value>"
-#: 03010103.xhp
+#: 03030204.xhp
msgctxt ""
-"03010103.xhp\n"
-"par_id3154011\n"
-"11\n"
+"03030204.xhp\n"
+"hd_id3153346\n"
+"1\n"
"help.text"
-msgid "If the expression to be printed exceeds a certain length, the display will automatically wrap to the next line."
-msgstr "Ако изразът за отпечатване надхвърля определена дължина, автоматично ще се пренесе на нов ред."
+msgid "<link href=\"text/sbasic/shared/03030204.xhp\" name=\"Second Function [Runtime]\">Second Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030204.xhp\" name=\"Функция Second [динамична]\">Функция Second [динамична]</link>"
-#: 03010103.xhp
+#: 03030204.xhp
msgctxt ""
-"03010103.xhp\n"
-"par_id3146969\n"
-"12\n"
+"03030204.xhp\n"
+"par_id3156023\n"
+"2\n"
"help.text"
-msgid "You can insert the Tab 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 "Можете да вмъкнете между аргументите функцията Tab, заградена с точки и запетаи, за да подравните изхода към определена позиция, или да използвате функцията <emph>Spc</emph>, за да вмъкнете зададен брой интервали."
+msgid "Returns an integer that represents the seconds of the serial time number that is generated by the TimeSerial or the TimeValue function."
+msgstr "Връща секундите от серийна стойност за час, генерирана от функцията TimeSerial или TimeValue."
-#: 03010103.xhp
+#: 03030204.xhp
msgctxt ""
-"03010103.xhp\n"
-"hd_id3146912\n"
-"13\n"
+"03030204.xhp\n"
+"hd_id3147264\n"
+"3\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 01170100.xhp
+#: 03030204.xhp
msgctxt ""
-"01170100.xhp\n"
-"tit\n"
+"03030204.xhp\n"
+"par_id3146795\n"
+"4\n"
"help.text"
-msgid "Control and Dialog Properties"
-msgstr "Свойства на елементи за управление и диалогови прозорци"
+msgid "Second (Number)"
+msgstr "Second (Number)"
-#: 01170100.xhp
+#: 03030204.xhp
msgctxt ""
-"01170100.xhp\n"
-"bm_id3153379\n"
+"03030204.xhp\n"
+"hd_id3150792\n"
+"5\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 "<bookmark_value>елементи за управление; свойства</bookmark_value><bookmark_value>свойства; елементи за управление и диалогови прозорци</bookmark_value><bookmark_value>диалогови прозорци; свойства</bookmark_value>"
+msgid "Return value:"
+msgstr "Връщана стойност:"
-#: 01170100.xhp
+#: 03030204.xhp
msgctxt ""
-"01170100.xhp\n"
-"hd_id3153379\n"
-"1\n"
+"03030204.xhp\n"
+"par_id3154140\n"
+"6\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/01170100.xhp\" name=\"Control and Dialog Properties\">Control and Dialog Properties</link>"
-msgstr "<link href=\"text/sbasic/shared/01170100.xhp\" name=\"Свойства на елементи за управление и диалогови прозорци\">Свойства на елементи за управление и диалогови прозорци</link>"
+msgid "Integer"
+msgstr "Integer"
-#: 01170100.xhp
+#: 03030204.xhp
msgctxt ""
-"01170100.xhp\n"
-"par_id3156280\n"
-"2\n"
+"03030204.xhp\n"
+"hd_id3156280\n"
+"7\n"
"help.text"
-msgid "<ahelp hid=\".\">Specifies the properties of the selected dialog or control.</ahelp> You must be in the design mode to be able to use this command."
-msgstr "<ahelp hid=\".\">Задава свойствата на избрания диалогов прозорец или елемент за управление.</ahelp> За да използвате тази команда, трябва да работите в режим на проектиране."
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 01170100.xhp
+#: 03030204.xhp
msgctxt ""
-"01170100.xhp\n"
-"hd_id3151043\n"
-"20\n"
+"03030204.xhp\n"
+"par_id3154124\n"
+"8\n"
"help.text"
-msgid "Entering Data in the Properties Dialog"
-msgstr "Въвеждане на данни в диалоговия прозорец Свойства"
+msgid "<emph>Number:</emph> Numeric expression that contains the serial time number that is used to calculate the number of seconds."
+msgstr "<emph>Number:</emph> числов израз – серийната стойност за точен час, от която се изчислява стойността на секундите."
-#: 01170100.xhp
+#: 03030204.xhp
msgctxt ""
-"01170100.xhp\n"
-"par_id3153771\n"
-"3\n"
+"03030204.xhp\n"
+"par_id3125864\n"
+"9\n"
"help.text"
-msgid "The following key combinations apply to enter data in multiline fields or combo boxes of the <emph>Properties</emph> dialog:"
-msgstr "Следните комбинации от клавиши са приложими при въвеждане на данни в полета с няколко реда или комбинирани полета в диалоговия прозорец <emph>Свойства</emph>:"
+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 "Тази функция е противоположна на <emph>TimeSerial</emph>. Тя връща секундите от стойност за час, генерирана от функцията <emph>TimeSerial</emph> или<emph>TimeValue</emph>. Например изразът"
-#: 01170100.xhp
+#: 03030204.xhp
msgctxt ""
-"01170100.xhp\n"
-"par_id3150010\n"
-"18\n"
+"03030204.xhp\n"
+"par_id3153951\n"
+"10\n"
"help.text"
-msgid "Keys"
-msgstr "Клавиши"
+msgid "Print Second(TimeSerial(12,30,41))"
+msgstr "Print Second(TimeSerial(12, 30, 41))"
-#: 01170100.xhp
+#: 03030204.xhp
msgctxt ""
-"01170100.xhp\n"
-"par_id3147317\n"
-"19\n"
+"03030204.xhp\n"
+"par_id3151117\n"
+"11\n"
"help.text"
-msgid "Effects"
-msgstr "Действие"
+msgid "returns the value 41."
+msgstr "връща стойността 41."
-#: 01170100.xhp
+#: 03030204.xhp
msgctxt ""
-"01170100.xhp\n"
-"par_id3146121\n"
-"4\n"
+"03030204.xhp\n"
+"hd_id3147426\n"
+"12\n"
"help.text"
-msgid "Alt+Down Arrow"
-msgstr "Alt+стрелка надолу"
+msgid "Example:"
+msgstr "Пример:"
-#: 01170100.xhp
+#: 03030204.xhp
msgctxt ""
-"01170100.xhp\n"
-"par_id3149581\n"
-"5\n"
+"03030204.xhp\n"
+"par_id3156441\n"
+"14\n"
"help.text"
-msgid "Opens a combo box"
-msgstr "Отваря списъка на комбинираното поле"
+msgid "MsgBox \"The exact second of the current time is \"& Second( Now )"
+msgstr "MsgBox \"Точната секунда на текущия час е \" & Second(Now)"
-#: 01170100.xhp
+#: 03030205.xhp
msgctxt ""
-"01170100.xhp\n"
-"par_id3147394\n"
-"6\n"
+"03030205.xhp\n"
+"tit\n"
"help.text"
-msgid "Alt+Up Arrow"
-msgstr "Alt+стрелка нагоре"
+msgid "TimeSerial Function [Runtime]"
+msgstr "Функция TimeSerial [динамична]"
-#: 01170100.xhp
+#: 03030205.xhp
msgctxt ""
-"01170100.xhp\n"
-"par_id3148455\n"
-"7\n"
+"03030205.xhp\n"
+"bm_id3143271\n"
"help.text"
-msgid "Closes a combo box"
-msgstr "Затваря списъка на комбинираното поле"
+msgid "<bookmark_value>TimeSerial function</bookmark_value>"
+msgstr "<bookmark_value>TimeSerial, функция</bookmark_value>"
-#: 01170100.xhp
+#: 03030205.xhp
msgctxt ""
-"01170100.xhp\n"
-"par_id3154511\n"
-"8\n"
+"03030205.xhp\n"
+"hd_id3143271\n"
+"1\n"
"help.text"
-msgid "Shift+Enter"
-msgstr "Shift+Enter"
+msgid "<link href=\"text/sbasic/shared/03030205.xhp\" name=\"TimeSerial Function [Runtime]\">TimeSerial Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030205.xhp\" name=\"Функция TimeSerial [динамична]\">Функция TimeSerial [динамична]</link>"
-#: 01170100.xhp
+#: 03030205.xhp
msgctxt ""
-"01170100.xhp\n"
-"par_id3146971\n"
-"9\n"
+"03030205.xhp\n"
+"par_id3156344\n"
+"2\n"
"help.text"
-msgid "Inserts a line break in multiline fields."
-msgstr "Вмъква нов ред в поле с няколко реда."
+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 "Изчислява серийна стойност за час от зададени числови параметри – час, минута и секунда. Впоследствие можете да я използвате, за да пресмятате разлики между часове."
-#: 01170100.xhp
+#: 03030205.xhp
msgctxt ""
-"01170100.xhp\n"
-"par_id3146914\n"
-"10\n"
+"03030205.xhp\n"
+"hd_id3146794\n"
+"4\n"
"help.text"
-msgid "(UpArrow)"
-msgstr "(Стрелка нагоре)"
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 01170100.xhp
+#: 03030205.xhp
msgctxt ""
-"01170100.xhp\n"
-"par_id3153714\n"
-"11\n"
+"03030205.xhp\n"
+"par_id3150792\n"
+"5\n"
"help.text"
-msgid "Goes to the previous line."
-msgstr "Преминава към предишния ред."
+msgid "TimeSerial (hour, minute, second)"
+msgstr "TimeSerial (Hour, Minute, Second)"
-#: 01170100.xhp
+#: 03030205.xhp
msgctxt ""
-"01170100.xhp\n"
-"par_id3159266\n"
-"12\n"
+"03030205.xhp\n"
+"hd_id3148797\n"
+"6\n"
"help.text"
-msgid "(DownArrow)"
-msgstr "(Стрелка надолу)"
+msgid "Return value:"
+msgstr "Връщана стойност:"
-#: 01170100.xhp
+#: 03030205.xhp
msgctxt ""
-"01170100.xhp\n"
-"par_id3146314\n"
-"13\n"
+"03030205.xhp\n"
+"par_id3154908\n"
+"7\n"
"help.text"
-msgid "Goes to the next line."
-msgstr "Преминава към следващия ред."
+msgid "Date"
+msgstr "Дата"
-#: 01170100.xhp
+#: 03030205.xhp
msgctxt ""
-"01170100.xhp\n"
-"par_id3149255\n"
-"14\n"
+"03030205.xhp\n"
+"hd_id3154124\n"
+"8\n"
"help.text"
-msgid "Enter"
-msgstr "Enter"
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 01170100.xhp
+#: 03030205.xhp
msgctxt ""
-"01170100.xhp\n"
-"par_id3149566\n"
-"15\n"
+"03030205.xhp\n"
+"par_id3153193\n"
+"9\n"
"help.text"
-msgid "Applies the changes made to a field and places the cursor into the next field."
-msgstr "Прилага промените, нанесени в полето, и поставя курсора в следващото поле."
+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 "<emph>Hour:</emph> числов израз, указващ часовете за серийната стойност. Валидни стойности: 0-23."
-#: 03080100.xhp
+#: 03030205.xhp
msgctxt ""
-"03080100.xhp\n"
-"tit\n"
+"03030205.xhp\n"
+"par_id3159252\n"
+"10\n"
"help.text"
-msgid "Trigonometric Functions"
-msgstr "Тригонометрични функции"
+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 "<emph>Minute:</emph> числов израз, указващ часовете за серийната стойност. Най-често бихте използвали стойности между 0 и 59. Можете обаче да задавате и стойности извън този обхват – тогава броят минути ще повлияе на стойността на часовете."
-#: 03080100.xhp
+#: 03030205.xhp
msgctxt ""
-"03080100.xhp\n"
-"hd_id3159201\n"
-"1\n"
+"03030205.xhp\n"
+"par_id3161831\n"
+"11\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080100.xhp\" name=\"Trigonometric Functions\">Trigonometric Functions</link>"
-msgstr "<link href=\"text/sbasic/shared/03080100.xhp\" name=\"Тригонометрични функции\">Тригонометрични функции</link>"
+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 "<emph>Second:</emph> числов израз, указващ секундите за серийната стойност. Можете да използвате стойности между 0 и 59, но можете да задавате и стойности извън този обхват – тогава броят секунди ще повлияе на стойността на минутите."
-#: 03080100.xhp
+#: 03030205.xhp
msgctxt ""
-"03080100.xhp\n"
-"par_id3149180\n"
-"2\n"
+"03030205.xhp\n"
+"par_id3155854\n"
+"12\n"
"help.text"
-msgid "The following are the trigonometric functions that are supported in $[officename] Basic."
-msgstr "Следните тригонометрични функции се поддържат в $[officename] Basic."
+msgid "<emph>Examples:</emph>"
+msgstr "<emph>Примери:</emph>"
-#: 03100080.xhp
+#: 03030205.xhp
msgctxt ""
-"03100080.xhp\n"
-"tit\n"
+"03030205.xhp\n"
+"par_id3153952\n"
+"13\n"
"help.text"
-msgid "CVErr Function [Runtime]"
-msgstr "Функция CVErr [динамична]"
+msgid "12, -5, 45 corresponds to 11, 55, 45"
+msgstr "12, -5, 45 отговаря на 11, 55, 45"
-#: 03100080.xhp
+#: 03030205.xhp
msgctxt ""
-"03100080.xhp\n"
-"bm_id531022\n"
+"03030205.xhp\n"
+"par_id3147349\n"
+"14\n"
"help.text"
-msgid "<bookmark_value>CVErr function</bookmark_value>"
-msgstr "<bookmark_value>CVErr function</bookmark_value>"
+msgid "12, 61, 45 corresponds to 13, 2, 45"
+msgstr "12, 61, 45 отговаря на 13, 2, 45"
-#: 03100080.xhp
+#: 03030205.xhp
msgctxt ""
-"03100080.xhp\n"
-"par_idN1054B\n"
+"03030205.xhp\n"
+"par_id3147426\n"
+"15\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03100080.xhp\">CVErr Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03100080.xhp\">Функция CVErr [динамична]</link>"
+msgid "12, 20, -2 corresponds to 12, 19, 58"
+msgstr "12, 20, -2 отговаря на 12, 19, 58"
-#: 03100080.xhp
+#: 03030205.xhp
msgctxt ""
-"03100080.xhp\n"
-"par_idN1055B\n"
+"03030205.xhp\n"
+"par_id3153365\n"
+"16\n"
"help.text"
-msgid "Converts a string expression or numeric expression to a variant expression of the sub type \"Error\"."
-msgstr "Преобразува низ или число към стойност от типa вариант, подтип „Error“."
+msgid "12, 20, 63 corresponds to 12, 21, 4"
+msgstr "12, 20, 63 отговаря на 12, 21, 4"
-#: 03100080.xhp
+#: 03030205.xhp
msgctxt ""
-"03100080.xhp\n"
-"par_idN1055E\n"
+"03030205.xhp\n"
+"par_id3146985\n"
+"17\n"
"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
+msgid "You can use the TimeSerial function to convert any time into a single value that you can use to calculate time differences."
+msgstr "С функцията TimeSerial можете да преобразувате точен час в единична стойност, с чиято помощ да изчислявате разлики между часове."
-#: 03100080.xhp
+#: 03030205.xhp
msgctxt ""
-"03100080.xhp\n"
-"par_idN10562\n"
+"03030205.xhp\n"
+"par_id3155308\n"
+"18\n"
"help.text"
-msgid "CVErr(Expression)"
-msgstr "CVErr(Expression)"
+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 "Функцията TimeValue връща стойност от типа Variant с VarType 7 (Date) и съхранява вътрешно стойността като число с двойна точност между 0 и 0,9999999999. За разлика от функциите DateSerial и DateValue, при които серийните стойности за дати съответстват на относителен резултат в дни спрямо фиксирана дата, с резултатите от функцията TimeValue можете да извършвате изчисления, но не можете да ги преобразувате обратно."
-#: 03100080.xhp
+#: 03030205.xhp
msgctxt ""
-"03100080.xhp\n"
-"par_idN10565\n"
+"03030205.xhp\n"
+"par_id3149482\n"
+"19\n"
"help.text"
-msgid "Return value:"
-msgstr "Връщана стойност:"
+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 "Функцията TimeValue очаква един параметър – низ, съдържащ часа. Функцията TimeSerial от друга страна приема отделни числови параметри за час, минута и секунда."
-#: 03100080.xhp
+#: 03030205.xhp
msgctxt ""
-"03100080.xhp\n"
-"par_idN10569\n"
+"03030205.xhp\n"
+"hd_id3154790\n"
+"20\n"
"help.text"
-msgid "Variant."
-msgstr "Variant"
+msgid "Example:"
+msgstr "Пример:"
-#: 03100080.xhp
+#: 03030205.xhp
msgctxt ""
-"03100080.xhp\n"
-"par_idN1056C\n"
+"03030205.xhp\n"
+"par_id3155600\n"
+"25\n"
"help.text"
-msgid "Parameter:"
-msgstr "Параметър:"
+msgid "MsgBox dDate,64,\"Time as a number\""
+msgstr "MsgBox dDate, 64, \"Час като число\""
-#: 03100080.xhp
+#: 03030205.xhp
msgctxt ""
-"03100080.xhp\n"
-"par_idN10570\n"
+"03030205.xhp\n"
+"par_id3153417\n"
+"26\n"
"help.text"
-msgid "Expression: Any string or numeric expression that you want to convert."
-msgstr "<emph>Expression:</emph> низов или числов израз, който да бъде преобразуван."
+msgid "MsgBox sDate,64,\"Formatted time\""
+msgstr "MsgBox sDate, 64, \"Форматиран час\""
-#: 03080501.xhp
+#: 03030206.xhp
msgctxt ""
-"03080501.xhp\n"
+"03030206.xhp\n"
"tit\n"
"help.text"
-msgid "Fix Function [Runtime]"
-msgstr "Функция Fix [динамична]"
+msgid "TimeValue Function [Runtime]"
+msgstr "Функция TimeValue [динамична]"
-#: 03080501.xhp
+#: 03030206.xhp
msgctxt ""
-"03080501.xhp\n"
-"bm_id3159201\n"
+"03030206.xhp\n"
+"bm_id3149670\n"
"help.text"
-msgid "<bookmark_value>Fix function</bookmark_value>"
-msgstr "<bookmark_value>Fix, функция</bookmark_value>"
+msgid "<bookmark_value>TimeValue function</bookmark_value>"
+msgstr "<bookmark_value>TimeValue, функция</bookmark_value>"
-#: 03080501.xhp
+#: 03030206.xhp
msgctxt ""
-"03080501.xhp\n"
-"hd_id3159201\n"
+"03030206.xhp\n"
+"hd_id3149670\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080501.xhp\" name=\"Fix Function [Runtime]\">Fix Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03080501.xhp\" name=\"Функция Fix [динамична]\">Функция Fix [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03030206.xhp\" name=\"TimeValue Function [Runtime]\">TimeValue Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030206.xhp\" name=\"Функция TimeValue [динамична]\">Функция TimeValue [динамична]</link>"
-#: 03080501.xhp
+#: 03030206.xhp
msgctxt ""
-"03080501.xhp\n"
-"par_id3149346\n"
+"03030206.xhp\n"
+"par_id3153361\n"
"2\n"
"help.text"
-msgid "Returns the integer value of a numeric expression by removing the fractional part of the number."
-msgstr "Връща цялата част на от стойността на числов израз, премахвайки дробната част."
+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 "Изчислява серийна стойност за час по зададени като низове час, минута и секунда. Стойността представя часа като едно единствено число. Тя може да се използва за изчисляване на разлики между часове."
-#: 03080501.xhp
+#: 03030206.xhp
msgctxt ""
-"03080501.xhp\n"
-"hd_id3155419\n"
+"03030206.xhp\n"
+"hd_id3154138\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03080501.xhp
+#: 03030206.xhp
msgctxt ""
-"03080501.xhp\n"
-"par_id3156152\n"
+"03030206.xhp\n"
+"par_id3156282\n"
"4\n"
"help.text"
-msgid "Fix (Expression)"
-msgstr "Fix (Expression)"
+msgid "TimeValue (Text As String)"
+msgstr "TimeValue (Text As String)"
-#: 03080501.xhp
+#: 03030206.xhp
msgctxt ""
-"03080501.xhp\n"
-"hd_id3154923\n"
+"03030206.xhp\n"
+"hd_id3153969\n"
"5\n"
"help.text"
msgid "Return value:"
msgstr "Връщана стойност:"
-#: 03080501.xhp
+#: 03030206.xhp
msgctxt ""
-"03080501.xhp\n"
-"par_id3148947\n"
+"03030206.xhp\n"
+"par_id3156424\n"
"6\n"
"help.text"
-msgid "Double"
-msgstr "Double"
+msgid "Date"
+msgstr "Дата"
-#: 03080501.xhp
+#: 03030206.xhp
msgctxt ""
-"03080501.xhp\n"
-"hd_id3154760\n"
+"03030206.xhp\n"
+"hd_id3145172\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Параметри:"
-#: 03080501.xhp
+#: 03030206.xhp
msgctxt ""
-"03080501.xhp\n"
-"par_id3149457\n"
+"03030206.xhp\n"
+"par_id3145786\n"
"8\n"
"help.text"
-msgid "<emph>Expression:</emph> Numeric expression that you want to return the integer value for."
-msgstr "<emph>Expression:</emph> числов израз, чиято цяла част искате да намерите."
+msgid "<emph>Text:</emph> Any string expression that contains the time that you want to calculate in the format \"HH:MM:SS\"."
+msgstr "<emph>Text:</emph> низов израз, съдържащ часа във формат „ЧЧ:ММ:СС“."
-#: 03080501.xhp
+#: 03030206.xhp
msgctxt ""
-"03080501.xhp\n"
-"hd_id3150447\n"
+"03030206.xhp\n"
+"par_id3152578\n"
"9\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "Use the TimeValue function to convert any time into a single value, so that you can calculate time differences."
+msgstr "С функцията TimeValue можете да преобразувате произволен точен час в числова стойност, за да изчислявате разлики между моменти във времето."
-#: 03080501.xhp
+#: 03030206.xhp
msgctxt ""
-"03080501.xhp\n"
-"par_id3156214\n"
+"03030206.xhp\n"
+"par_id3163710\n"
+"10\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 "Функцията TimeValue връща стойност от типа Variant с VarType 7 (Date) и съхранява вътрешно стойността като число с двойна точност между 0 и 0,9999999999."
+
+#: 03030206.xhp
+msgctxt ""
+"03030206.xhp\n"
+"par_id3151117\n"
"11\n"
"help.text"
-msgid "Print Fix(3.14159) ' returns 3."
-msgstr "Print Fix(3.14159) ' връща 3."
+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 "За разлика от функциите DateSerial и DateValue, при които серийните стойности за дати съответстват на относителен резултат в дни спрямо фиксирана дата, с резултатите от функцията TimeValue можете да извършвате изчисления, но не можете да ги преобразувате обратно."
-#: 03080501.xhp
+#: 03030206.xhp
msgctxt ""
-"03080501.xhp\n"
-"par_id3154217\n"
+"03030206.xhp\n"
+"par_id3147426\n"
"12\n"
"help.text"
-msgid "Print Fix(0) ' returns 0."
-msgstr "Print Fix(0) ' връща 0."
+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 "При фукцията TimeSerial можете да подадете отделните параметри (час, минута и секунда) като отделни числови изрази. При TimeValue можете да подадете параметър низ, съдържащ желания час."
-#: 03080501.xhp
+#: 03030206.xhp
msgctxt ""
-"03080501.xhp\n"
-"par_id3145786\n"
+"03030206.xhp\n"
+"hd_id3145271\n"
"13\n"
"help.text"
-msgid "Print Fix(-3.14159) ' returns -3."
-msgstr "Print Fix(-3.14159) ' връща -3."
+msgid "Example:"
+msgstr "Пример:"
-#: 03090300.xhp
+#: 03030206.xhp
msgctxt ""
-"03090300.xhp\n"
+"03030206.xhp\n"
+"par_id3149378\n"
+"33\n"
+"help.text"
+msgid "a1 = \"start time\""
+msgstr "a1 = \"начален час\""
+
+#: 03030206.xhp
+msgctxt ""
+"03030206.xhp\n"
+"par_id3145800\n"
+"34\n"
+"help.text"
+msgid "b1 = \"end time\""
+msgstr "b1 = \"краен час\""
+
+#: 03030206.xhp
+msgctxt ""
+"03030206.xhp\n"
+"par_id3151074\n"
+"35\n"
+"help.text"
+msgid "c1 = \"total time\""
+msgstr "c1 = \"общо време\""
+
+#: 03030300.xhp
+msgctxt ""
+"03030300.xhp\n"
"tit\n"
"help.text"
-msgid "Jumps"
-msgstr "Преходи"
+msgid "System Date and Time"
+msgstr "Системна дата и час"
-#: 03090300.xhp
+#: 03030300.xhp
msgctxt ""
-"03090300.xhp\n"
-"hd_id3151262\n"
+"03030300.xhp\n"
+"hd_id3154923\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090300.xhp\" name=\"Jumps\">Jumps</link>"
-msgstr "<link href=\"text/sbasic/shared/03090300.xhp\" name=\"Преходи\">Преходи</link>"
+msgid "<link href=\"text/sbasic/shared/03030300.xhp\" name=\"System Date and Time\">System Date and Time</link>"
+msgstr "<link href=\"text/sbasic/shared/03030300.xhp\" name=\"Системна дата и час\">Системна дата и час</link>"
-#: 03090300.xhp
+#: 03030300.xhp
msgctxt ""
-"03090300.xhp\n"
-"par_id3148983\n"
+"03030300.xhp\n"
+"par_id3149457\n"
"2\n"
"help.text"
-msgid "The following statements execute jumps."
-msgstr "Следващите оператори служат за организиране на преходи."
+msgid "The following functions and statements set or return the system date and time."
+msgstr "Следващите функции и оператори променят или връщат системната дата и час."
-#: 03131500.xhp
+#: 03030301.xhp
msgctxt ""
-"03131500.xhp\n"
+"03030301.xhp\n"
"tit\n"
"help.text"
-msgid "CreateUnoStruct Function [Runtime]"
-msgstr "Функция CreateUnoStruct [динамична]"
+msgid "Date Statement [Runtime]"
+msgstr "Оператор Date [динамичен]"
-#: 03131500.xhp
+#: 03030301.xhp
msgctxt ""
-"03131500.xhp\n"
-"bm_id3150499\n"
+"03030301.xhp\n"
+"bm_id3156027\n"
"help.text"
-msgid "<bookmark_value>CreateUnoStruct function</bookmark_value>"
-msgstr "<bookmark_value>CreateUnoStruct, функция</bookmark_value>"
+msgid "<bookmark_value>Date statement</bookmark_value>"
+msgstr "<bookmark_value>Date, оператор</bookmark_value>"
-#: 03131500.xhp
+#: 03030301.xhp
msgctxt ""
-"03131500.xhp\n"
-"hd_id3150499\n"
+"03030301.xhp\n"
+"hd_id3156027\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03131500.xhp\" name=\"CreateUnoStruct Function [Runtime]\">CreateUnoStruct Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03131500.xhp\" name=\"Функция CreateUnoStruct [динамична]\">Функция CreateUnoStruct [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03030301.xhp\" name=\"Date Statement [Runtime]\">Date Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030301.xhp\" name=\"Оператор Date [динамичен]\">Оператор Date [динамичен]</link>"
-#: 03131500.xhp
+#: 03030301.xhp
msgctxt ""
-"03131500.xhp\n"
-"par_id3150713\n"
+"03030301.xhp\n"
+"par_id3147291\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".\">Creates an instance of a Uno structure type.</ahelp>"
-msgstr "<ahelp hid=\".\">Създава екземпляр от структурен тип на Uno.</ahelp>"
+msgid "Returns the current system date as a string, or resets the date. The date format depends on your local system settings."
+msgstr "Връща текущата системна дата като низ или я променя. Форматът на датата зависи от системните настройки за локал."
-#: 03131500.xhp
+#: 03030301.xhp
msgctxt ""
-"03131500.xhp\n"
-"par_id3147226\n"
+"03030301.xhp\n"
+"hd_id3148686\n"
"3\n"
"help.text"
-msgid "Use the following structure for your statement:"
-msgstr "Използвайте следната структура за оператора:"
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 03131500.xhp
+#: 03030301.xhp
msgctxt ""
-"03131500.xhp\n"
-"par_id3149177\n"
+"03030301.xhp\n"
+"par_id3146794\n"
"4\n"
"help.text"
-msgid "Dim oStruct as new com.sun.star.beans.Property"
-msgstr "Dim oStruct as new com.sun.star.beans.Property"
+msgid "Date ; Date = Text As String"
+msgstr "Date ; Date = Text As String"
-#: 03131500.xhp
+#: 03030301.xhp
msgctxt ""
-"03131500.xhp\n"
-"hd_id3156153\n"
+"03030301.xhp\n"
+"hd_id3154347\n"
"5\n"
"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 03131500.xhp
+#: 03030301.xhp
msgctxt ""
-"03131500.xhp\n"
-"par_id3155341\n"
+"03030301.xhp\n"
+"par_id3145069\n"
"6\n"
"help.text"
-msgid "oStruct = CreateUnoStruct( Uno type name )"
-msgstr "oStruct = CreateUnoStruct(име на тип на Uno)"
+msgid "<emph>Text:</emph> Only required in order to reset the system date. In this case, the string expression must correspond to the date format defined in your local settings."
+msgstr "<emph>Text:</emph> необходим е само ако искате да промените системната дата. В този случай изразът със стойност низ трябва да съответства на формата, зададен в настройките за локал."
-#: 03131500.xhp
+#: 03030301.xhp
msgctxt ""
-"03131500.xhp\n"
-"hd_id3145316\n"
+"03030301.xhp\n"
+"hd_id3150793\n"
"7\n"
"help.text"
msgid "Example:"
msgstr "Пример:"
-#: 03131500.xhp
+#: 03030301.xhp
msgctxt ""
-"03131500.xhp\n"
-"par_id3149762\n"
-"8\n"
+"03030301.xhp\n"
+"par_id3156424\n"
+"9\n"
"help.text"
-msgid "oStruct = CreateUnoStruct( \"com.sun.star.beans.Property\" )"
-msgstr "oStruct = CreateUnoStruct( \"com.sun.star.beans.Property\" )"
+msgid "MsgBox \"The date is \" & Date"
+msgstr "MsgBox \"Датата е \" & Date"
#: 03030302.xhp
msgctxt ""
@@ -11036,1012 +15651,659 @@ msgctxt ""
msgid "MsgBox Time,0,\"The time is\""
msgstr "MsgBox Time, 0, \"Часът е\""
-#: 03131800.xhp
+#: 03030303.xhp
msgctxt ""
-"03131800.xhp\n"
+"03030303.xhp\n"
"tit\n"
"help.text"
-msgid "CreateUnoDialog Function [Runtime]"
-msgstr "Функция CreateUnoDialog [динамична]"
+msgid "Timer Function [Runtime]"
+msgstr "Функция Timer [динамична]"
-#: 03131800.xhp
+#: 03030303.xhp
msgctxt ""
-"03131800.xhp\n"
-"bm_id3150040\n"
+"03030303.xhp\n"
+"bm_id3149346\n"
"help.text"
-msgid "<bookmark_value>CreateUnoDialog function</bookmark_value>"
-msgstr "<bookmark_value>CreateUnoDialog, функция</bookmark_value>"
+msgid "<bookmark_value>Timer function</bookmark_value>"
+msgstr "<bookmark_value>Timer, функция</bookmark_value>"
-#: 03131800.xhp
+#: 03030303.xhp
msgctxt ""
-"03131800.xhp\n"
-"hd_id3150040\n"
+"03030303.xhp\n"
+"hd_id3149346\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03131800.xhp\" name=\"CreateUnoDialog Function [Runtime]\">CreateUnoDialog Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03131800.xhp\" name=\"Функция CreateUnoDialog [динамична]\">Функция CreateUnoDialog [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03030303.xhp\" name=\"Timer Function [Runtime]\">Timer Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030303.xhp\" name=\"Функция Timer [динамична]\">Функция Timer [динамична]</link>"
-#: 03131800.xhp
+#: 03030303.xhp
msgctxt ""
-"03131800.xhp\n"
-"par_id3154186\n"
+"03030303.xhp\n"
+"par_id3156023\n"
"2\n"
"help.text"
-msgid "Creates a Basic Uno object that represents a Uno dialog control during Basic runtime."
-msgstr "Създава Uno обект на Basic, който представя диалогов прозорец на Uno по време на изпълнението на програма на Basic."
+msgid "Returns a value that specifies the number of seconds that have elapsed since midnight."
+msgstr "Връща броя на секундите, изминали от полунощ."
-#: 03131800.xhp
+#: 03030303.xhp
msgctxt ""
-"03131800.xhp\n"
-"par_id3153750\n"
+"03030303.xhp\n"
+"par_id3156212\n"
"3\n"
"help.text"
-msgid "Dialogs are defined in the dialog libraries. To display a dialog, a \"live\" dialog must be created from the library."
-msgstr "Диалоговите прозорци са дефинирани в библиотеки. За да покажете диалогов прозорец, от библиотеката трябва да се създаде „жив“ („live“) прозорец."
+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 "За да извикате функцията Timer, трябва първо да обявите променлива и да й присвоите типа данни Long, иначе че бъде върната стойност от тип Date."
-#: 03131800.xhp
+#: 03030303.xhp
msgctxt ""
-"03131800.xhp\n"
-"par_id3153681\n"
+"03030303.xhp\n"
+"hd_id3153768\n"
"4\n"
"help.text"
-msgid "See <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Examples\">Examples</link>."
-msgstr "Вижте <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Примери\">Примери</link>."
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 03131800.xhp
+#: 03030303.xhp
msgctxt ""
-"03131800.xhp\n"
-"hd_id3154286\n"
+"03030303.xhp\n"
+"par_id3161831\n"
"5\n"
"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
+msgid "Timer"
+msgstr "Timer"
-#: 03131800.xhp
+#: 03030303.xhp
msgctxt ""
-"03131800.xhp\n"
-"par_id3159176\n"
+"03030303.xhp\n"
+"hd_id3146975\n"
"6\n"
"help.text"
-msgid "CreateUnoDialog( oDlgDesc )"
-msgstr "CreateUnoDialog(oDlgDesc)"
+msgid "Return value:"
+msgstr "Връщана стойност:"
-#: 03131800.xhp
+#: 03030303.xhp
msgctxt ""
-"03131800.xhp\n"
-"hd_id3143270\n"
+"03030303.xhp\n"
+"par_id3146984\n"
"7\n"
"help.text"
+msgid "Date"
+msgstr "Дата"
+
+#: 03030303.xhp
+msgctxt ""
+"03030303.xhp\n"
+"hd_id3156442\n"
+"8\n"
+"help.text"
msgid "Example:"
msgstr "Пример:"
-#: 03131800.xhp
+#: 03030303.xhp
msgctxt ""
-"03131800.xhp\n"
-"par_id3159157\n"
-"8\n"
+"03030303.xhp\n"
+"par_id3145748\n"
+"12\n"
"help.text"
-msgid "' Get dialog description from the dialog library"
-msgstr "' Извличаме описание на диалоговия прозорец от библиотеката"
+msgid "MsgBox lSec,0,\"Seconds since midnight\""
+msgstr "MsgBox lSec, 0, \"Секунди от полунощ\""
-#: 03131800.xhp
+#: 03030303.xhp
msgctxt ""
-"03131800.xhp\n"
-"par_id3149234\n"
-"9\n"
+"03030303.xhp\n"
+"par_id3156283\n"
+"17\n"
"help.text"
-msgid "oDlgDesc = DialogLibraries.Standard.Dialog1"
-msgstr "oDlgDesc = DialogLibraries.Standard.Dialog1"
+msgid "MsgBox Right(\"00\" & lHour , 2) & \":\"& Right(\"00\" & lMin , 2) & \":\" & Right(\"00\" & lSec , 2) ,0,\"The time is\""
+msgstr "MsgBox Right(\"00\" & lHour, 2) & \":\" & Right(\"00\" & lMin, 2) & \":\" & Right(\"00\" & lSec , 2), 0, \"Часът е\""
-#: 03131800.xhp
+#: 03050000.xhp
msgctxt ""
-"03131800.xhp\n"
-"par_id3154923\n"
-"10\n"
+"03050000.xhp\n"
+"tit\n"
"help.text"
-msgid "' generate \"live\" dialog"
-msgstr "' Създаваме „жив“ диалогов прозорец"
+msgid "Error-Handling Functions"
+msgstr "Функции за обработка на грешки"
-#: 03131800.xhp
+#: 03050000.xhp
msgctxt ""
-"03131800.xhp\n"
-"par_id3149670\n"
-"11\n"
+"03050000.xhp\n"
+"hd_id3143271\n"
+"1\n"
"help.text"
-msgid "oDlgControl = CreateUnoDialog( oDlgDesc )"
-msgstr "oDlgControl = CreateUnoDialog(oDlgDesc)"
+msgid "<link href=\"text/sbasic/shared/03050000.xhp\" name=\"Error-Handling Functions\">Error-Handling Functions</link>"
+msgstr "<link href=\"text/sbasic/shared/03050000.xhp\" name=\"Функции за обработка на грешки\">Функции за обработка на грешки</link>"
-#: 03131800.xhp
+#: 03050000.xhp
msgctxt ""
-"03131800.xhp\n"
-"par_id3148550\n"
-"12\n"
+"03050000.xhp\n"
+"par_id3145068\n"
+"2\n"
"help.text"
-msgid "' display \"live\" dialog"
-msgstr "' Показваме „живия“ диалогов прозорец"
+msgid "Use the following statements and functions to define the way $[officename] Basic reacts to run-time errors."
+msgstr "Чрез следващите оператори и функции можете да задавате как $[officename] Basic да реагира на грешки по време на изпълнение."
-#: 03131800.xhp
+#: 03050000.xhp
msgctxt ""
-"03131800.xhp\n"
-"par_id3154072\n"
-"13\n"
+"03050000.xhp\n"
+"par_id3148946\n"
+"3\n"
"help.text"
-msgid "oDlgControl.execute"
-msgstr "oDlgControl.execute"
+msgid "$[officename] Basic offers several methods to prevent the termination of a program when a run-time error occurs."
+msgstr "$[officename] Basic предлага няколко начина да се предотврати прекратяването на програма при възникване на грешка."
-#: 03102400.xhp
+#: 03050100.xhp
msgctxt ""
-"03102400.xhp\n"
+"03050100.xhp\n"
"tit\n"
"help.text"
-msgid "IsEmpty Function [Runtime]"
-msgstr "Функция IsEmpty [динамична]"
+msgid "Erl Function [Runtime]"
+msgstr "Функция Erl [динамична]"
-#: 03102400.xhp
+#: 03050100.xhp
msgctxt ""
-"03102400.xhp\n"
-"bm_id3153394\n"
+"03050100.xhp\n"
+"bm_id3157896\n"
"help.text"
-msgid "<bookmark_value>IsEmpty function</bookmark_value>"
-msgstr "<bookmark_value>IsEmpty, функция</bookmark_value>"
+msgid "<bookmark_value>Erl function</bookmark_value>"
+msgstr "<bookmark_value>Erl, функция</bookmark_value>"
-#: 03102400.xhp
+#: 03050100.xhp
msgctxt ""
-"03102400.xhp\n"
-"hd_id3153394\n"
+"03050100.xhp\n"
+"hd_id3157896\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03102400.xhp\" name=\"IsEmpty Function [Runtime]\">IsEmpty Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03102400.xhp\" name=\"Функция IsEmpty [динамична]\">Функция IsEmpty [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03050100.xhp\" name=\"Erl Function [Runtime]\">Erl Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03050100.xhp\" name=\"Функция Erl [динамична]\">Функция Erl [динамична]</link>"
-#: 03102400.xhp
+#: 03050100.xhp
msgctxt ""
-"03102400.xhp\n"
-"par_id3163045\n"
+"03050100.xhp\n"
+"par_id3153394\n"
"2\n"
"help.text"
-msgid "Tests if a Variant variable contains the Empty value. The Empty value indicates that the variable is not initialized."
-msgstr "Проверява дали променлива от типа Variant съдържа празна стойност (Empty). Тя показва, че променливата не е инициализирана."
+msgid "Returns the line number where an error occurred during program execution."
+msgstr "Връща номера на реда, на който е възникнала грешка по време на изпълнение на програмата."
-#: 03102400.xhp
+#: 03050100.xhp
msgctxt ""
-"03102400.xhp\n"
-"hd_id3159158\n"
+"03050100.xhp\n"
+"hd_id3147574\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03102400.xhp
+#: 03050100.xhp
msgctxt ""
-"03102400.xhp\n"
-"par_id3153126\n"
+"03050100.xhp\n"
+"par_id3146795\n"
"4\n"
"help.text"
-msgid "IsEmpty (Var)"
-msgstr "IsEmpty (Var)"
+msgid "Erl"
+msgstr "Erl"
-#: 03102400.xhp
+#: 03050100.xhp
msgctxt ""
-"03102400.xhp\n"
-"hd_id3148685\n"
+"03050100.xhp\n"
+"hd_id3147265\n"
"5\n"
"help.text"
msgid "Return value:"
msgstr "Връщана стойност:"
-#: 03102400.xhp
+#: 03050100.xhp
msgctxt ""
-"03102400.xhp\n"
-"par_id3156344\n"
+"03050100.xhp\n"
+"par_id3154924\n"
"6\n"
"help.text"
-msgid "Bool"
-msgstr "Bool"
+msgid "Integer"
+msgstr "Integer"
-#: 03102400.xhp
+#: 03050100.xhp
msgctxt ""
-"03102400.xhp\n"
-"hd_id3148947\n"
+"03050100.xhp\n"
+"hd_id3150792\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Параметри:"
-#: 03102400.xhp
+#: 03050100.xhp
msgctxt ""
-"03102400.xhp\n"
-"par_id3154347\n"
+"03050100.xhp\n"
+"par_id3153771\n"
"8\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 "<emph>Var:</emph> променлива, която бъде проверена. Ако променливата от типа Variant съдържа стойността Empty, функцията връща <emph>True</emph>, в противен случай – <emph>False</emph>."
+msgid "The Erl function only returns a line number, and not a line label."
+msgstr "Функцията Erl връща само номер на ред, не и етикет на ред."
-#: 03102400.xhp
+#: 03050100.xhp
msgctxt ""
-"03102400.xhp\n"
-"hd_id3154138\n"
+"03050100.xhp\n"
+"hd_id3146921\n"
"9\n"
"help.text"
msgid "Example:"
msgstr "Пример:"
-#: 03102400.xhp
-msgctxt ""
-"03102400.xhp\n"
-"par_id3154863\n"
-"13\n"
-"help.text"
-msgid "Print IsEmpty(sVar) ' Returns True"
-msgstr "Print IsEmpty(sVar) ' Връща True"
-
-#: 03030200.xhp
+#: 03050100.xhp
msgctxt ""
-"03030200.xhp\n"
-"tit\n"
+"03050100.xhp\n"
+"par_id3150010\n"
+"11\n"
"help.text"
-msgid "Converting Time Values"
-msgstr "Преобразуване на стойности – часове"
+msgid "On Error GoTo ErrorHandler ' Set up error handler"
+msgstr "On Error Goto ErrorHandler ' Настройка на обработката на грешки"
-#: 03030200.xhp
+#: 03050100.xhp
msgctxt ""
-"03030200.xhp\n"
-"hd_id3147226\n"
-"1\n"
+"03050100.xhp\n"
+"par_id3153188\n"
+"14\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03030200.xhp\" name=\"Converting Time Values\">Converting Time Values</link>"
-msgstr "<link href=\"text/sbasic/shared/03030200.xhp\" name=\"Преобразуване на стойности – часове\">Преобразуване на стойности – часове</link>"
+msgid "' Error caused by non-existent file"
+msgstr "' Грешка заради несъществуващ файл"
-#: 03030200.xhp
+#: 03050100.xhp
msgctxt ""
-"03030200.xhp\n"
-"par_id3149415\n"
-"2\n"
+"03050100.xhp\n"
+"par_id3155416\n"
+"21\n"
"help.text"
-msgid "The following functions convert time values to calculable numbers."
-msgstr "Следващите функции преобразуват стойности – часове към числа, с които могат да се извършват изчисления."
+msgid "MsgBox \"Error \" & err & \": \" & Error$ + chr(13) + \"In Line : \" + Erl + chr(13) + Now , 16 ,\"An error occurred\""
+msgstr "MsgBox \"Грешка \" & Err & \": \" & Error$ + Chr(13) + \"Ред: \" + Erl + Chr(13) + Now, 16, \"Възникна грешка\""
-#: 03100600.xhp
+#: 03050200.xhp
msgctxt ""
-"03100600.xhp\n"
+"03050200.xhp\n"
"tit\n"
"help.text"
-msgid "CLng Function [Runtime]"
-msgstr "Функция CLng [динамична]"
+msgid "Err Function [Runtime]"
+msgstr "Функция Err [динамична]"
-#: 03100600.xhp
+#: 03050200.xhp
msgctxt ""
-"03100600.xhp\n"
-"bm_id3153311\n"
+"03050200.xhp\n"
+"bm_id3156343\n"
"help.text"
-msgid "<bookmark_value>CLng function</bookmark_value>"
-msgstr "<bookmark_value>CLng, функция</bookmark_value>"
+msgid "<bookmark_value>Err function</bookmark_value>"
+msgstr "<bookmark_value>Err, функция</bookmark_value>"
-#: 03100600.xhp
+#: 03050200.xhp
msgctxt ""
-"03100600.xhp\n"
-"hd_id3153311\n"
+"03050200.xhp\n"
+"hd_id3156343\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03100600.xhp\" name=\"CLng Function [Runtime]\">CLng Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03100600.xhp\" name=\"Функция CLng [динамична]\">Функция CLng [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03050200.xhp\" name=\"Err Function [Runtime]\">Err Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03050200.xhp\" name=\"Функция Err [динамична]\">Функция Err [динамична]</link>"
-#: 03100600.xhp
+#: 03050200.xhp
msgctxt ""
-"03100600.xhp\n"
-"par_id3148686\n"
+"03050200.xhp\n"
+"par_id3150541\n"
"2\n"
"help.text"
-msgid "Converts any string or numeric expression to a long integer."
-msgstr "Преобразува низ или число в стойност от типа Long Integer."
+msgid "Returns an error code that identifies the error that occurred during program execution."
+msgstr "Връща кода на грешката, възникнала по време на изпълнение на програмата."
-#: 03100600.xhp
+#: 03050200.xhp
msgctxt ""
-"03100600.xhp\n"
-"hd_id3145315\n"
+"03050200.xhp\n"
+"hd_id3149656\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03100600.xhp
+#: 03050200.xhp
msgctxt ""
-"03100600.xhp\n"
-"par_id3147573\n"
+"03050200.xhp\n"
+"par_id3154123\n"
"4\n"
"help.text"
-msgid "CLng (Expression)"
-msgstr "CLng (Expression)"
+msgid "Err"
+msgstr "Err"
-#: 03100600.xhp
+#: 03050200.xhp
msgctxt ""
-"03100600.xhp\n"
-"hd_id3145610\n"
+"03050200.xhp\n"
+"hd_id3147229\n"
"5\n"
"help.text"
msgid "Return value:"
msgstr "Връщана стойност:"
-#: 03100600.xhp
+#: 03050200.xhp
msgctxt ""
-"03100600.xhp\n"
-"par_id3153897\n"
+"03050200.xhp\n"
+"par_id3150869\n"
"6\n"
"help.text"
-msgid "Long"
-msgstr "Long"
+msgid "Integer"
+msgstr "Integer"
-#: 03100600.xhp
+#: 03050200.xhp
msgctxt ""
-"03100600.xhp\n"
-"hd_id3154760\n"
+"03050200.xhp\n"
+"hd_id3153193\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Параметри:"
-#: 03100600.xhp
+#: 03050200.xhp
msgctxt ""
-"03100600.xhp\n"
-"par_id3159414\n"
+"03050200.xhp\n"
+"par_id3149561\n"
"8\n"
"help.text"
-msgid "<emph>Expression:</emph> Any numerical expression that you want to convert. If the <emph>Expression</emph> lies outside the valid long integer range between -2.147.483.648 and 2.147.483.647, $[officename] Basic returns an overflow error. To convert a string expression, the number must be entered as normal text (\"123.5\") using the default number format of your operating system."
-msgstr "<emph>Expression:</emph> низов или числов израз, който да бъде преобразуван. Ако стойността на <emph>Expression</emph> е извън диапазона за Long Integer -2147483648…2147483647, $[officename] Basic докладва грешка – препълване. За да преобразувате низов израз, числото трябва да е въведено като обикновен текст (\"123.5\") с подразбирания формат за числа на операционната система."
+msgid "The Err function is used in error-handling routines to determine the error and the corrective action."
+msgstr "Функцията Err се използва в подпрограмите за обработка на грешки, за да се определи грешката и действието за коригирането й."
-#: 03100600.xhp
+#: 03050200.xhp
msgctxt ""
-"03100600.xhp\n"
-"par_id3150358\n"
+"03050200.xhp\n"
+"hd_id3147317\n"
"9\n"
"help.text"
-msgid "This function always rounds the fractional part of a number to the nearest integer."
-msgstr "Тази функция винаги закръглява числата с дробна част към най-близкото цяло число."
-
-#: 03100600.xhp
-msgctxt ""
-"03100600.xhp\n"
-"hd_id3154216\n"
-"10\n"
-"help.text"
msgid "Example:"
-msgstr "Примери:"
-
-#: main0211.xhp
-msgctxt ""
-"main0211.xhp\n"
-"tit\n"
-"help.text"
-msgid "Macro Toolbar"
-msgstr "Лента с инструменти Макрос"
+msgstr "Пример:"
-#: main0211.xhp
+#: 03050200.xhp
msgctxt ""
-"main0211.xhp\n"
-"bm_id3150543\n"
+"03050200.xhp\n"
+"par_id3147426\n"
+"11\n"
"help.text"
-msgid "<bookmark_value>toolbars; Basic IDE</bookmark_value><bookmark_value>macro toolbar</bookmark_value>"
-msgstr "<bookmark_value>ленти с инструменти; в развойната среда на Basic</bookmark_value><bookmark_value>Макрос, лента с инструменти</bookmark_value>"
+msgid "On Error Goto ErrorHandler REM Set up error handler"
+msgstr "On Error Goto ErrorHandler ' Настройка на обработката на грешки"
-#: main0211.xhp
+#: 03050200.xhp
msgctxt ""
-"main0211.xhp\n"
-"hd_id3150543\n"
-"1\n"
+"03050200.xhp\n"
+"par_id3149481\n"
+"14\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/main0211.xhp\" name=\"Macro Toolbar\">Macro Toolbar</link>"
-msgstr "<link href=\"text/sbasic/shared/main0211.xhp\" name=\"Лента с инструменти Макрос\">Лента с инструменти Макрос</link>"
+msgid "REM Error occurs due to non-existent file"
+msgstr "REM Грешка заради несъществуващ файл"
-#: main0211.xhp
+#: 03050200.xhp
msgctxt ""
-"main0211.xhp\n"
-"par_id3147288\n"
-"2\n"
+"03050200.xhp\n"
+"par_id3145646\n"
+"21\n"
"help.text"
-msgid "<ahelp visibility=\"visible\" hid=\".uno:MacroBarVisible\">The <emph>Macro Toolbar </emph>contains commands to create, edit, and run macros.</ahelp>"
-msgstr "<ahelp visibility=\"visible\" hid=\".uno:MacroBarVisible\">Лентата с инструменти <emph>Макрос</emph> съдържа команди за създаване, редактиране и изпълнение на макроси.</ahelp>"
+msgid "MsgBox \"Error \" & Err & \": \" & Error$ + chr(13) + \"At line : \" + Erl + chr(13) + Now , 16 ,\"an error occurred\""
+msgstr "MsgBox \"Грешка \" & Err & \": \" & Error$ + Chr(13) + \"Ред: \" + Erl + Chr(13) + Now, 16, \"Възникна грешка\""
-#: 03070100.xhp
+#: 03050300.xhp
msgctxt ""
-"03070100.xhp\n"
+"03050300.xhp\n"
"tit\n"
"help.text"
-msgid "\"-\" Operator [Runtime]"
-msgstr "Операция „-“ [динамична]"
+msgid "Error Function [Runtime]"
+msgstr "Функция Error [динамична]"
-#: 03070100.xhp
+#: 03050300.xhp
msgctxt ""
-"03070100.xhp\n"
-"bm_id3156042\n"
+"03050300.xhp\n"
+"bm_id3159413\n"
"help.text"
-msgid "<bookmark_value>\"-\" operator (mathematical)</bookmark_value>"
-msgstr "<bookmark_value>„-“, математическа операция</bookmark_value>"
+msgid "<bookmark_value>Error function</bookmark_value>"
+msgstr "<bookmark_value>Error, функция</bookmark_value>"
-#: 03070100.xhp
+#: 03050300.xhp
msgctxt ""
-"03070100.xhp\n"
-"hd_id3156042\n"
+"03050300.xhp\n"
+"hd_id3159413\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03070100.xhp\">\"-\" Operator [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03070100.xhp\">Операция „-“ [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03050300.xhp\" name=\"Error Function [Runtime]\">Error Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03050300.xhp\" name=\"Функция Error [динамична]\">Функция Error [динамична]</link>"
-#: 03070100.xhp
+#: 03050300.xhp
msgctxt ""
-"03070100.xhp\n"
-"par_id3153345\n"
+"03050300.xhp\n"
+"par_id3148663\n"
"2\n"
"help.text"
-msgid "Subtracts two values."
-msgstr "Изважда две стойности."
+msgid "Returns the error message that corresponds to a given error code."
+msgstr "Връща съобщението за грешка, съответстващо на даден код на грешка."
-#: 03070100.xhp
+#: 03050300.xhp
msgctxt ""
-"03070100.xhp\n"
-"hd_id3149416\n"
+"03050300.xhp\n"
+"hd_id3153379\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03070100.xhp
-msgctxt ""
-"03070100.xhp\n"
-"par_id3156023\n"
-"4\n"
-"help.text"
-msgid "Result = Expression1 - Expression2"
-msgstr "Result = Expression1 - Expression2"
-
-#: 03070100.xhp
-msgctxt ""
-"03070100.xhp\n"
-"hd_id3154760\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
-
-#: 03070100.xhp
-msgctxt ""
-"03070100.xhp\n"
-"par_id3147560\n"
-"6\n"
-"help.text"
-msgid "<emph>Result:</emph> Any numerical expression that contains the result of the subtraction."
-msgstr "<emph>Result:</emph> числов израз, който съдържа резултата от изваждането."
-
-#: 03070100.xhp
-msgctxt ""
-"03070100.xhp\n"
-"par_id3150398\n"
-"7\n"
-"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any numerical expressions that you want to subtract."
-msgstr "<emph>Expression1, Expression2:</emph> числови изрази, чиито стойности искате да извадите."
-
-#: 03070100.xhp
-msgctxt ""
-"03070100.xhp\n"
-"hd_id3154366\n"
-"8\n"
-"help.text"
-msgid "Example:"
-msgstr "Пример:"
-
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"tit\n"
-"help.text"
-msgid "TimeSerial Function [Runtime]"
-msgstr "Функция TimeSerial [динамична]"
-
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"bm_id3143271\n"
-"help.text"
-msgid "<bookmark_value>TimeSerial function</bookmark_value>"
-msgstr "<bookmark_value>TimeSerial, функция</bookmark_value>"
-
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"hd_id3143271\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03030205.xhp\" name=\"TimeSerial Function [Runtime]\">TimeSerial Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03030205.xhp\" name=\"Функция TimeSerial [динамична]\">Функция TimeSerial [динамична]</link>"
-
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"par_id3156344\n"
-"2\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 "Изчислява серийна стойност за час от зададени числови параметри – час, минута и секунда. Впоследствие можете да я използвате, за да пресмятате разлики между часове."
-
-#: 03030205.xhp
+#: 03050300.xhp
msgctxt ""
-"03030205.xhp\n"
-"hd_id3146794\n"
+"03050300.xhp\n"
+"par_id3154366\n"
"4\n"
"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
+msgid "Error (Expression)"
+msgstr "Error (Expression)"
-#: 03030205.xhp
+#: 03050300.xhp
msgctxt ""
-"03030205.xhp\n"
-"par_id3150792\n"
+"03050300.xhp\n"
+"hd_id3145173\n"
"5\n"
"help.text"
-msgid "TimeSerial (hour, minute, second)"
-msgstr "TimeSerial (Hour, Minute, Second)"
-
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"hd_id3148797\n"
-"6\n"
-"help.text"
msgid "Return value:"
msgstr "Връщана стойност:"
-#: 03030205.xhp
+#: 03050300.xhp
msgctxt ""
-"03030205.xhp\n"
-"par_id3154908\n"
-"7\n"
+"03050300.xhp\n"
+"par_id3154125\n"
+"6\n"
"help.text"
-msgid "Date"
-msgstr "Date"
+msgid "String"
+msgstr "String"
-#: 03030205.xhp
+#: 03050300.xhp
msgctxt ""
-"03030205.xhp\n"
-"hd_id3154124\n"
-"8\n"
+"03050300.xhp\n"
+"hd_id3150869\n"
+"7\n"
"help.text"
msgid "Parameters:"
msgstr "Параметри:"
-#: 03030205.xhp
+#: 03050300.xhp
msgctxt ""
-"03030205.xhp\n"
+"03050300.xhp\n"
"par_id3153193\n"
-"9\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 "<emph>Hour:</emph> числов израз, указващ часовете за серийната стойност. Валидни стойности: 0-23."
-
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"par_id3159252\n"
-"10\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 "<emph>Minute:</emph> числов израз, указващ часовете за серийната стойност. Най-често бихте използвали стойности между 0 и 59. Можете обаче да задавате и стойности извън този обхват – тогава броят минути ще повлияе на стойността на часовете."
-
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"par_id3161831\n"
-"11\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 "<emph>Second:</emph> числов израз, указващ секундите за серийната стойност. Можете да използвате стойности между 0 и 59, но можете да задавате и стойности извън този обхват – тогава броят секунди ще повлияе на стойността на минутите."
-
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"par_id3155854\n"
-"12\n"
-"help.text"
-msgid "<emph>Examples:</emph>"
-msgstr "<emph>Примери:</emph>"
-
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"par_id3153952\n"
-"13\n"
-"help.text"
-msgid "12, -5, 45 corresponds to 11, 55, 45"
-msgstr "12, -5, 45 отговаря на 11, 55, 45"
-
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"par_id3147349\n"
-"14\n"
-"help.text"
-msgid "12, 61, 45 corresponds to 13, 2, 45"
-msgstr "12, 61, 45 отговаря на 13, 2, 45"
-
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"par_id3147426\n"
-"15\n"
-"help.text"
-msgid "12, 20, -2 corresponds to 12, 19, 58"
-msgstr "12, 20, -2 отговаря на 12, 19, 58"
-
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"par_id3153365\n"
-"16\n"
-"help.text"
-msgid "12, 20, 63 corresponds to 12, 21, 4"
-msgstr "12, 20, 63 отговаря на 12, 21, 4"
-
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"par_id3146985\n"
-"17\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 "С функцията TimeSerial можете да преобразувате точен час в единична стойност, с чиято помощ да изчислявате разлики между часове."
-
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"par_id3155308\n"
-"18\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 "Функцията TimeValue връща стойност от типа Variant с VarType 7 (Date) и съхранява вътрешно стойността като число с двойна точност между 0 и 0,9999999999. За разлика от функциите DateSerial и DateValue, при които серийните стойности за дати съответстват на относителен резултат в дни спрямо фиксирана дата, с резултатите от функцията TimeValue можете да извършвате изчисления, но не можете да ги преобразувате обратно."
-
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"par_id3149482\n"
-"19\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 "Функцията TimeValue очаква един параметър – низ, съдържащ часа. Функцията TimeSerial от друга страна приема отделни числови параметри за час, минута и секунда."
-
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"hd_id3154790\n"
-"20\n"
-"help.text"
-msgid "Example:"
-msgstr "Пример:"
-
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"par_id3155600\n"
-"25\n"
-"help.text"
-msgid "MsgBox dDate,64,\"Time as a number\""
-msgstr "MsgBox dDate, 64, \"Час като число\""
-
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"par_id3153417\n"
-"26\n"
-"help.text"
-msgid "MsgBox sDate,64,\"Formatted time\""
-msgstr "MsgBox sDate, 64, \"Форматиран час\""
-
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Comparison Operators"
-msgstr "Операции за сравнение"
-
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"hd_id3155555\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Comparison Operators\">Comparison Operators</link>"
-msgstr "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Операции за сравнение\">Операции за сравнение</link>"
-
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"par_id3153528\n"
-"2\n"
-"help.text"
-msgid "The available comparison operators are described here."
-msgstr "Тук са описани наличните операции за сравнение."
-
-#: 03090100.xhp
-msgctxt ""
-"03090100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Condition Statements"
-msgstr "Условни оператори"
-
-#: 03090100.xhp
-msgctxt ""
-"03090100.xhp\n"
-"hd_id3154422\n"
-"1\n"
+"8\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090100.xhp\" name=\"Condition Statements\">Condition Statements</link>"
-msgstr "<link href=\"text/sbasic/shared/03090100.xhp\" name=\"Условни оператори\">Условни оператори</link>"
+msgid "<emph>Expression:</emph> Any numeric expression that contains the error code of the error message that you want to return."
+msgstr "<emph>Expression:</emph> числов израз със стойност кода на грешката, чието съобщение искате да получите."
-#: 03090100.xhp
+#: 03050300.xhp
msgctxt ""
-"03090100.xhp\n"
-"par_id3153750\n"
-"2\n"
+"03050300.xhp\n"
+"par_id3159254\n"
+"9\n"
"help.text"
-msgid "The following statements are based on conditions."
-msgstr "Следните оператори се базират на условия."
+msgid "If no parameters are passed, the Error function returns the error message of the most recent error that occurred during program execution."
+msgstr "Ако не е подаден параметър, функцията Error връща съобщението за грешка на най-скоро възникналата грешка при изпълнението на програмата."
-#: 03120105.xhp
+#: 03050500.xhp
msgctxt ""
-"03120105.xhp\n"
+"03050500.xhp\n"
"tit\n"
"help.text"
-msgid "CByte Function [Runtime]"
-msgstr "Функция CByte [динамична]"
+msgid "On Error GoTo ... Resume Statement [Runtime]"
+msgstr "Оператор On Error GoTo … Resume [динамичен]"
-#: 03120105.xhp
+#: 03050500.xhp
msgctxt ""
-"03120105.xhp\n"
-"bm_id3156027\n"
+"03050500.xhp\n"
+"bm_id3146795\n"
"help.text"
-msgid "<bookmark_value>CByte function</bookmark_value>"
-msgstr "<bookmark_value>CByte, функция</bookmark_value>"
+msgid "<bookmark_value>Resume Next parameter</bookmark_value><bookmark_value>On Error GoTo ... Resume statement</bookmark_value>"
+msgstr "<bookmark_value>Resume Next, параметър</bookmark_value><bookmark_value>On Error GoTo ... Resume, оператор</bookmark_value>"
-#: 03120105.xhp
+#: 03050500.xhp
msgctxt ""
-"03120105.xhp\n"
-"hd_id3156027\n"
+"03050500.xhp\n"
+"hd_id3146795\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120105.xhp\" name=\"CByte Function [Runtime]\">CByte Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120105.xhp\" name=\"Функция CByte [динамична]\">Функция CByte [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03050500.xhp\" name=\"On Error GoTo ... Resume Statement [Runtime]\">On Error GoTo ... Resume Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03050500.xhp\" name=\"Оператор On Error GoTo … Resume [динамичен]\">Оператор On Error GoTo … Resume [динамичен]</link>"
-#: 03120105.xhp
+#: 03050500.xhp
msgctxt ""
-"03120105.xhp\n"
-"par_id3143267\n"
+"03050500.xhp\n"
+"par_id3150358\n"
"2\n"
"help.text"
-msgid "Converts a string or a numeric expression to the type Byte."
-msgstr "Преобразува низ или число към типа Byte."
+msgid "Enables an error-handling routine after an error occurs, or resumes program execution."
+msgstr "Служи за задаване на подпрограма за обработка на грешки и продължаване на изпълнението на програмата."
-#: 03120105.xhp
+#: 03050500.xhp
msgctxt ""
-"03120105.xhp\n"
-"hd_id3149811\n"
+"03050500.xhp\n"
+"hd_id3151212\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03120105.xhp
+#: 03050500.xhp
msgctxt ""
-"03120105.xhp\n"
-"par_id3147573\n"
+"03050500.xhp\n"
+"par_id3145173\n"
"4\n"
"help.text"
-msgid "Cbyte( expression )"
-msgstr "CByte (Expression)"
+msgid "On {[Local] Error GoTo Labelname | GoTo 0 | Resume Next}"
+msgstr "On {[Local] Error GoTo Labelname | GoTo 0 | Resume Next}"
-#: 03120105.xhp
+#: 03050500.xhp
msgctxt ""
-"03120105.xhp\n"
-"hd_id3145315\n"
+"03050500.xhp\n"
+"hd_id3154125\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Връщана стойност:"
-
-#: 03120105.xhp
-msgctxt ""
-"03120105.xhp\n"
-"par_id3148473\n"
-"6\n"
-"help.text"
-msgid "Byte"
-msgstr "Byte"
-
-#: 03120105.xhp
-msgctxt ""
-"03120105.xhp\n"
-"hd_id3147530\n"
-"7\n"
-"help.text"
msgid "Parameters:"
msgstr "Параметри:"
-#: 03120105.xhp
-msgctxt ""
-"03120105.xhp\n"
-"par_id3145068\n"
-"8\n"
-"help.text"
-msgid "<emph>Expression:</emph> A string or a numeric expression."
-msgstr "<emph>Expression:</emph> низов или числов израз."
-
-#: 03010201.xhp
-msgctxt ""
-"03010201.xhp\n"
-"tit\n"
-"help.text"
-msgid "InputBox Function [Runtime]"
-msgstr "Функция InputBox [динамична]"
-
-#: 03010201.xhp
-msgctxt ""
-"03010201.xhp\n"
-"bm_id3148932\n"
-"help.text"
-msgid "<bookmark_value>InputBox function</bookmark_value>"
-msgstr "<bookmark_value>InputBox, функция</bookmark_value>"
-
-#: 03010201.xhp
-msgctxt ""
-"03010201.xhp\n"
-"hd_id3148932\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03010201.xhp\" name=\"InputBox Function [Runtime]\">InputBox Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03010201.xhp\" name=\"Функция InputBox [динамична]\">Функция InputBox [динамична]</link>"
-
-#: 03010201.xhp
-msgctxt ""
-"03010201.xhp\n"
-"par_id3151262\n"
-"2\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 "Показва подкана в диалогов прозорец, в който потребителят може да въвежда текст. Въведеното се присвоява на променлива."
-
-#: 03010201.xhp
-msgctxt ""
-"03010201.xhp\n"
-"par_id3151100\n"
-"3\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 "Операторът <emph>InputBox</emph> е удобен начин за въвеждане на текст чрез диалогов прозорец. Потвърдете въвеждането с бутона „OK“ или клавиша Return. Въведеният текст се връща като резултат на функцията. Ако затворите диалоговия прозорец с „Отказ“, <emph>InputBox</emph> връща низ с нулева дължина (\"\")."
-
-#: 03010201.xhp
-msgctxt ""
-"03010201.xhp\n"
-"hd_id3152347\n"
-"4\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
-
-#: 03010201.xhp
-msgctxt ""
-"03010201.xhp\n"
-"par_id3159201\n"
-"5\n"
-"help.text"
-msgid "InputBox (Msg As String[, Title As String[, Default As String[, x_pos As Integer, y_pos As Integer]]]])"
-msgstr "InputBox (Msg As String[, Title As String[, Default As String[, x_pos As Integer, y_pos As Integer]]]])"
-
-#: 03010201.xhp
+#: 03050500.xhp
msgctxt ""
-"03010201.xhp\n"
-"hd_id3150713\n"
-"6\n"
+"03050500.xhp\n"
+"par_id3150869\n"
+"7\n"
"help.text"
-msgid "Return value:"
-msgstr "Връщана стойност:"
+msgid "<emph>GoTo Labelname:</emph> If an error occurs, enables the error-handling routine that starts at the line \"Labelname\"."
+msgstr "<emph>GoTo Labelname:</emph> ако възникне грешка, управлението ще бъде предадено на подпрограмата за обработка на грешки, започваща от ред Labelname."
-#: 03010201.xhp
+#: 03050500.xhp
msgctxt ""
-"03010201.xhp\n"
-"par_id3145090\n"
-"7\n"
+"03050500.xhp\n"
+"par_id3150439\n"
+"8\n"
"help.text"
-msgid "String"
-msgstr "String"
+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 "<emph>Resume Next:</emph> ако възникне грешка, изпълнението на програмата продължава от реда след оператора, в който е възникнала грешката."
-#: 03010201.xhp
+#: 03050500.xhp
msgctxt ""
-"03010201.xhp\n"
-"hd_id3149346\n"
-"8\n"
+"03050500.xhp\n"
+"par_id3149482\n"
+"9\n"
"help.text"
-msgid "Parameter:"
-msgstr "Параметър:"
+msgid "<emph>GoTo 0:</emph> Disables the error handler in the current procedure."
+msgstr "<emph>GoTo 0:</emph> забранява обработката на грешки в текущата процедура."
-#: 03010201.xhp
+#: 03050500.xhp
msgctxt ""
-"03010201.xhp\n"
-"par_id3153311\n"
+"03050500.xhp\n"
+"par_id3149483\n"
"9\n"
"help.text"
-msgid "<emph>Msg</emph>: String expression displayed as the message in the dialog box."
-msgstr "<emph>Msg</emph>: низов израз, показван като съобщение в диалоговия прозорец."
+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 "<emph>Local:</emph> Операторът „On error“ има глобален обхват и остава активен, докато не бъде отменен от друг оператор „On error“. „On Local error“ е локален за подпрограмата, в която е използван. Локалната обработка на грешки има предимство пред всякаква зададена преди това глобална настройка. При изход от подпрограмата локалната обработка на грешки се отменя автоматично и се възстановява предишната глобална настройка, ако има такава."
-#: 03010201.xhp
+#: 03050500.xhp
msgctxt ""
-"03010201.xhp\n"
-"par_id3145315\n"
+"03050500.xhp\n"
+"par_id3148619\n"
"10\n"
"help.text"
-msgid "<emph>Title</emph>: String expression displayed in the title bar of the dialog box."
-msgstr "<emph>Title</emph>: низов израз, показван в заглавната лента на диалоговия прозорец."
+msgid "The On Error GoTo statement is used to react to errors that occur in a macro."
+msgstr "Операторът On Error GoTo служи за обработка на грешките, които възникват в даден макрос."
-#: 03010201.xhp
+#: 03050500.xhp
msgctxt ""
-"03010201.xhp\n"
-"par_id3154307\n"
+"03050500.xhp\n"
+"hd_id3146985\n"
"11\n"
"help.text"
-msgid "<emph>Default</emph>: String expression displayed in the text box as default if no other input is given."
-msgstr "<emph>Default</emph>: низов израз, показван в текстовото поле като подразбирана стойност, ако не е въведено друго."
+msgid "Example:"
+msgstr "Пример:"
-#: 03010201.xhp
+#: 03050500.xhp
msgctxt ""
-"03010201.xhp\n"
-"par_id3147573\n"
-"12\n"
+"03050500.xhp\n"
+"par_id3153876\n"
+"52\n"
"help.text"
-msgid "<emph>x_pos</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 the office application."
-msgstr "<emph>x_pos</emph>: целочислен израз, който задава хоризонталната позиция на диалоговия прозорец. Позицията представлява абсолютна координата и не е относителна спрямо прозореца на офис приложението."
+msgid "Print #iNumber, \"This is a line of text\""
+msgstr "Print #iNumber, \"Това е ред с текст\""
-#: 03010201.xhp
+#: 03050500.xhp
msgctxt ""
-"03010201.xhp\n"
-"par_id3156024\n"
-"13\n"
+"03050500.xhp\n"
+"par_id3146916\n"
+"67\n"
"help.text"
-msgid "<emph>y_pos</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 the office application."
-msgstr "<emph>y_pos</emph>: целочислен израз, който задава вертикалната позиция на диалоговия прозорец. Позицията представлява абсолютна координата и не е относителна спрямо прозореца на офис приложението."
+msgid "MsgBox \"All files will be closed\",0,\"Error\""
+msgstr "MsgBox \"Всички файлове ще бъдат затворени\", 0, \"Грешка\""
-#: 03010201.xhp
+#: 03060000.xhp
msgctxt ""
-"03010201.xhp\n"
-"par_id3153897\n"
-"14\n"
+"03060000.xhp\n"
+"tit\n"
"help.text"
-msgid "If <emph>x_pos</emph> and <emph>y_pos</emph> 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 "Ако <emph>x_pos</emph> и <emph>y_pos</emph> са пропуснати, диалоговият прозорец се центрира върху екрана. Позицията се задава в <link href=\"text/sbasic/shared/00000002.xhp#twips\" name=\"туипове\">туипове</link>."
+msgid "Logical Operators"
+msgstr "Логически операции"
-#: 03010201.xhp
+#: 03060000.xhp
msgctxt ""
-"03010201.xhp\n"
-"hd_id3149456\n"
-"15\n"
+"03060000.xhp\n"
+"hd_id3147559\n"
+"1\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "<link href=\"text/sbasic/shared/03060000.xhp\" name=\"Logical Operators\">Logical Operators</link>"
+msgstr "<link href=\"text/sbasic/shared/03060000.xhp\" name=\"Логически операции\">Логически операции</link>"
-#: 03010201.xhp
+#: 03060000.xhp
msgctxt ""
-"03010201.xhp\n"
-"par_id3154367\n"
-"18\n"
+"03060000.xhp\n"
+"par_id3153379\n"
+"2\n"
"help.text"
-msgid "sText = InputBox (\"Please enter a phrase:\",\"Dear User\")"
-msgstr "sText = InputBox(\"Моля, въведете фраза:\", \"Драги потребителю\")"
+msgid "The following logical operators are supported by $[officename] Basic."
+msgstr "$[officename] Basic поддържа изброените по-долу логически операции."
-#: 03010201.xhp
+#: 03060000.xhp
msgctxt ""
-"03010201.xhp\n"
-"par_id3151042\n"
-"19\n"
+"03060000.xhp\n"
+"par_id3154138\n"
+"3\n"
"help.text"
-msgid "MsgBox ( sText , 64, \"Confirmation of phrase\")"
-msgstr "MsgBox(sText, 64, \"Потвърждение на фразата\")"
+msgid "Logical operators combine (bitwise) the contents of two expressions or variables, for example, to test if specific bits are set or not."
+msgstr "Логическите операции комбинират (бит по бит) съдържанието на две стойности, например с цел проверка дали дадени битове са установени в единица, или не."
#: 03060100.xhp
msgctxt ""
@@ -12203,198 +16465,449 @@ msgctxt ""
msgid "vVarOut = B And A ' returns 8 due to the bitwise And combination of both arguments"
msgstr "vVarOut = B And A ' връща 8 като резултат от побитовата конюнкция на аргументите"
-#: 01000000.xhp
+#: 03060200.xhp
msgctxt ""
-"01000000.xhp\n"
+"03060200.xhp\n"
"tit\n"
"help.text"
-msgid "Programming with $[officename] Basic"
-msgstr "Програмиране с $[officename] Basic"
+msgid "Eqv Operator [Runtime]"
+msgstr "Операция Eqv [динамична]"
-#: 01000000.xhp
+#: 03060200.xhp
msgctxt ""
-"01000000.xhp\n"
-"hd_id3156027\n"
+"03060200.xhp\n"
+"bm_id3156344\n"
+"help.text"
+msgid "<bookmark_value>Eqv operator (logical)</bookmark_value>"
+msgstr "<bookmark_value>Eqv, логическа операция</bookmark_value>"
+
+#: 03060200.xhp
+msgctxt ""
+"03060200.xhp\n"
+"hd_id3156344\n"
"1\n"
"help.text"
-msgid "<variable id=\"doc_title\"><link href=\"text/sbasic/shared/01000000.xhp\" name=\"Programming with $[officename] Basic \">Programming with $[officename] Basic </link></variable>"
-msgstr "<variable id=\"doc_title\"><link href=\"text/sbasic/shared/01000000.xhp\" name=\"Програмиране с $[officename] Basic \">Програмиране с $[officename] Basic </link></variable>"
+msgid "<link href=\"text/sbasic/shared/03060200.xhp\" name=\"Eqv Operator [Runtime]\">Eqv Operator [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03060200.xhp\" name=\"Операция Eqv [динамична]\">Операция Eqv [динамична]</link>"
-#: 01000000.xhp
+#: 03060200.xhp
msgctxt ""
-"01000000.xhp\n"
-"par_id3153708\n"
+"03060200.xhp\n"
+"par_id3149656\n"
"2\n"
"help.text"
-msgid "This is where you find general information about working with macros and $[officename] Basic."
-msgstr "Тук ще намерите обща информация относно работата с макроси и с $[officename] Basic."
+msgid "Calculates the logical equivalence of two expressions."
+msgstr "Изчислява логическата еквивалентност на два израза."
-#: 03090403.xhp
+#: 03060200.xhp
msgctxt ""
-"03090403.xhp\n"
-"tit\n"
+"03060200.xhp\n"
+"hd_id3154367\n"
+"3\n"
"help.text"
-msgid "Declare Statement [Runtime]"
-msgstr "Оператор Declare [динамичен]"
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 03090403.xhp
+#: 03060200.xhp
msgctxt ""
-"03090403.xhp\n"
-"bm_id3148473\n"
+"03060200.xhp\n"
+"par_id3154910\n"
+"4\n"
"help.text"
-msgid "<bookmark_value>Declare statement</bookmark_value>"
-msgstr "<bookmark_value>Declare, оператор</bookmark_value>"
+msgid "Result = Expression1 Eqv Expression2"
+msgstr "Result = Expression1 Eqv Expression2"
-#: 03090403.xhp
+#: 03060200.xhp
msgctxt ""
-"03090403.xhp\n"
-"hd_id3148473\n"
-"1\n"
+"03060200.xhp\n"
+"hd_id3151043\n"
+"5\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090403.xhp\" name=\"Declare Statement [Runtime]\">Declare Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090403.xhp\" name=\"Оператор Declare [динамичен]\">Оператор Declare [динамичен]</link>"
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 03090403.xhp
+#: 03060200.xhp
msgctxt ""
-"03090403.xhp\n"
-"bm_id3145316\n"
+"03060200.xhp\n"
+"par_id3150869\n"
+"6\n"
"help.text"
-msgid "<bookmark_value>DLL (Dynamic Link Library)</bookmark_value>"
-msgstr "<bookmark_value>DLL (Dynamic Link Library, библиотека за динамично свързване)</bookmark_value>"
+msgid "<emph>Result:</emph> Any numeric variable that contains the result of the comparison."
+msgstr "<emph>Result:</emph> числова променлива, в която да се запази резултатът от сравняването."
-#: 03090403.xhp
+#: 03060200.xhp
msgctxt ""
-"03090403.xhp\n"
-"par_id3145316\n"
+"03060200.xhp\n"
+"par_id3150448\n"
+"7\n"
+"help.text"
+msgid "<emph>Expression1, Expression2:</emph> Any expressions that you want to compare."
+msgstr "<emph>Expression1, Expression2:</emph> изразите, чиито стойности искате да сравните."
+
+#: 03060200.xhp
+msgctxt ""
+"03060200.xhp\n"
+"par_id3149562\n"
+"8\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 "При проверка за еквивалентност между булеви изрази, резултатът е <emph>True</emph>, ако и двата израза са със стойност <emph>True</emph> или и двата са със стойност <emph>False</emph>."
+
+#: 03060200.xhp
+msgctxt ""
+"03060200.xhp\n"
+"par_id3154319\n"
+"9\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 "При сравняване бит по бит операцията Eqv установява в единица даден бит от резултата само ако съответните битове в аргументите са едновременно 1 или едновременно 0."
+
+#: 03060200.xhp
+msgctxt ""
+"03060200.xhp\n"
+"hd_id3159154\n"
+"10\n"
+"help.text"
+msgid "Example:"
+msgstr "Пример:"
+
+#: 03060200.xhp
+msgctxt ""
+"03060200.xhp\n"
+"par_id3152462\n"
+"15\n"
+"help.text"
+msgid "vOut = A > B Eqv B > C ' returns -1"
+msgstr "vOut = A > B Eqv B > C ' връща -1"
+
+#: 03060200.xhp
+msgctxt ""
+"03060200.xhp\n"
+"par_id3153191\n"
+"16\n"
+"help.text"
+msgid "vOut = B > A Eqv B > C ' returns 0"
+msgstr "vOut = B > A Eqv B > C ' връща 0"
+
+#: 03060200.xhp
+msgctxt ""
+"03060200.xhp\n"
+"par_id3145799\n"
+"17\n"
+"help.text"
+msgid "vOut = A > B Eqv B > D ' returns 0"
+msgstr "vOut = A > B Eqv B > D ' връща 0"
+
+#: 03060200.xhp
+msgctxt ""
+"03060200.xhp\n"
+"par_id3149412\n"
+"18\n"
+"help.text"
+msgid "vOut = (B > D Eqv B > A) ' returns -1"
+msgstr "vOut = (B > D Eqv B > A) ' връща -1"
+
+#: 03060200.xhp
+msgctxt ""
+"03060200.xhp\n"
+"par_id3149959\n"
+"19\n"
+"help.text"
+msgid "vOut = B Eqv A ' returns -3"
+msgstr "vOut = B Eqv A ' връща -3"
+
+#: 03060300.xhp
+msgctxt ""
+"03060300.xhp\n"
+"tit\n"
+"help.text"
+msgid "Imp-Operator [Runtime]"
+msgstr "Операция Imp [динамична]"
+
+#: 03060300.xhp
+msgctxt ""
+"03060300.xhp\n"
+"bm_id3156024\n"
+"help.text"
+msgid "<bookmark_value>Imp operator (logical)</bookmark_value>"
+msgstr "<bookmark_value>Imp, логическа операция</bookmark_value>"
+
+#: 03060300.xhp
+msgctxt ""
+"03060300.xhp\n"
+"hd_id3156024\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03060300.xhp\" name=\"Imp-Operator [Runtime]\">Imp Operator [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03060300.xhp\" name=\"Операция Imp [динамична]\">Операция Imp [динамична]</link>"
+
+#: 03060300.xhp
+msgctxt ""
+"03060300.xhp\n"
+"par_id3148947\n"
"2\n"
"help.text"
-msgid "Declares and defines a subroutine in a DLL file that you want to execute from $[officename] Basic."
-msgstr "Декларира и дефинира подпрограма в DLL файл, която искате да се изпълнява от $[officename] Basic."
+msgid "Performs a logical implication on two expressions."
+msgstr "Изчислява логическа импликация на две стойности."
-#: 03090403.xhp
+#: 03060300.xhp
msgctxt ""
-"03090403.xhp\n"
-"par_id3146795\n"
+"03060300.xhp\n"
+"hd_id3148664\n"
"3\n"
"help.text"
-msgid "See also: <link href=\"text/sbasic/shared/03090405.xhp\" name=\"FreeLibrary\">FreeLibrary</link>"
-msgstr "Вижте също: <link href=\"text/sbasic/shared/03090405.xhp\" name=\"FreeLibrary\">FreeLibrary</link>"
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 03090403.xhp
+#: 03060300.xhp
msgctxt ""
-"03090403.xhp\n"
-"hd_id3156344\n"
+"03060300.xhp\n"
+"par_id3149656\n"
"4\n"
"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
+msgid "Result = Expression1 Imp Expression2"
+msgstr "Result = Expression1 Imp Expression2"
-#: 03090403.xhp
+#: 03060300.xhp
msgctxt ""
-"03090403.xhp\n"
-"par_id3148664\n"
+"03060300.xhp\n"
+"hd_id3151212\n"
"5\n"
"help.text"
-msgid "Declare {Sub | Function} Name Lib \"Libname\" [Alias \"Aliasname\"] [Parameter] [As Type]"
-msgstr "Declare {Sub | Function} Name Lib \"Libname\" [Alias \"Aliasname\"] [Parameters] [As Type]"
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 03090403.xhp
+#: 03060300.xhp
msgctxt ""
-"03090403.xhp\n"
-"hd_id3153360\n"
+"03060300.xhp\n"
+"par_id3154910\n"
"6\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "<emph>Result:</emph> Any numeric variable that contains the result of the implication."
+msgstr "<emph>Result:</emph> числова променлива, в която да се запази резултатът от импликацията."
-#: 03090403.xhp
+#: 03060300.xhp
msgctxt ""
-"03090403.xhp\n"
-"par_id3154140\n"
+"03060300.xhp\n"
+"par_id3156281\n"
+"7\n"
+"help.text"
+msgid "<emph>Expression1, Expression2:</emph> Any expressions that you want to evaluate with the Imp operator."
+msgstr "<emph>Expression1, Expression2:</emph> изразите, чиито стойности искате да комбинирате чрез импликация."
+
+#: 03060300.xhp
+msgctxt ""
+"03060300.xhp\n"
+"par_id3150440\n"
"8\n"
"help.text"
-msgid "<emph>Name:</emph> A different name than defined in the DLL, to call the subroutine from $[officename] Basic."
-msgstr "<emph>Name:</emph> име, различно от дефинираното в DLL файла – служи за извикване на подпрограмата от $[officename] Basic."
+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 "Ако използвате оператора Imp с булеви изрази, резултатът е False само ако първият израз има стойност True, а вторият – False."
-#: 03090403.xhp
+#: 03060300.xhp
msgctxt ""
-"03090403.xhp\n"
-"par_id3150870\n"
+"03060300.xhp\n"
+"par_id3163710\n"
"9\n"
"help.text"
-msgid "<emph>Aliasname</emph>: Name of the subroutine as defined in the DLL."
-msgstr "<emph>Aliasname</emph>: име на подпрограмата както е дефинирано в DLL файла."
+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 "Ако използвате операцията Imp бит по бит, битовете в резултата се нулират само ако съответният им бит е единица в първата стойност и нула във втората."
-#: 03090403.xhp
+#: 03060300.xhp
msgctxt ""
-"03090403.xhp\n"
-"par_id3154684\n"
+"03060300.xhp\n"
+"hd_id3147318\n"
"10\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 "<emph>Libname:</emph> файлово или системно име на DLL файл. Библиотеката се зарежда автоматично при първото използване на функцията."
+msgid "Example:"
+msgstr "Пример:"
-#: 03090403.xhp
+#: 03060300.xhp
msgctxt ""
-"03090403.xhp\n"
-"par_id3148452\n"
-"11\n"
+"03060300.xhp\n"
+"par_id3145750\n"
+"15\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 "<emph>Parameters:</emph> списък от параметри, които ще се подават на подпрограмата при извикването й. Типовете и броят им зависят от изпълняваната подпрограма."
+msgid "vOut = A > B Imp B > C ' returns -1"
+msgstr "vOut = A > B Imp B > C ' връща -1"
-#: 03090403.xhp
+#: 03060300.xhp
msgctxt ""
-"03090403.xhp\n"
-"par_id3147289\n"
-"12\n"
+"03060300.xhp\n"
+"par_id3156441\n"
+"16\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 "<emph>Type:</emph> определя типа на стойността, връщана от подпрограмата. Можете да пропуснете този параметър, ако след името има знак за деклариране на тип."
+msgid "vOut = B > A Imp B > C ' returns -1"
+msgstr "vOut = B > A Imp B > C ' връща -1"
-#: 03090403.xhp
+#: 03060300.xhp
msgctxt ""
-"03090403.xhp\n"
-"par_id3146922\n"
-"13\n"
+"03060300.xhp\n"
+"par_id3152596\n"
+"17\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 "За да предадете параметър на подпрограма като стойност вместо по адрес, той трябва да бъде обозначен с ключовата дума <emph>ByVal</emph>."
+msgid "vOut = A > B Imp B > D ' returns 0"
+msgstr "vOut = A > B Imp B > D ' връща 0"
-#: 03090403.xhp
+#: 03060300.xhp
msgctxt ""
-"03090403.xhp\n"
-"hd_id3153951\n"
-"14\n"
+"03060300.xhp\n"
+"par_id3154942\n"
+"18\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "vOut = (B > D Imp B > A) ' returns -1"
+msgstr "vOut = (B > D Imp B > A) ' връща -1"
-#: 03120400.xhp
+#: 03060300.xhp
msgctxt ""
-"03120400.xhp\n"
+"03060300.xhp\n"
+"par_id3154492\n"
+"19\n"
+"help.text"
+msgid "vOut = B Imp A ' returns -1"
+msgstr "vOut = B Imp A ' връща -1"
+
+#: 03060400.xhp
+msgctxt ""
+"03060400.xhp\n"
"tit\n"
"help.text"
-msgid "Editing String Length"
-msgstr "Редактиране на дължината на низове"
+msgid "Not-Operator [Runtime]"
+msgstr "Операция Not [динамична]"
-#: 03120400.xhp
+#: 03060400.xhp
msgctxt ""
-"03120400.xhp\n"
-"hd_id3155150\n"
+"03060400.xhp\n"
+"bm_id3156024\n"
+"help.text"
+msgid "<bookmark_value>Not operator (logical)</bookmark_value>"
+msgstr "<bookmark_value>Not, логическа операция</bookmark_value>"
+
+#: 03060400.xhp
+msgctxt ""
+"03060400.xhp\n"
+"hd_id3156024\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120400.xhp\" name=\"Editing String Length\">Editing String Length</link>"
-msgstr "<link href=\"text/sbasic/shared/03120400.xhp\" name=\"Редактиране на дължината на низове\">Редактиране на дължината на низове</link>"
+msgid "<link href=\"text/sbasic/shared/03060400.xhp\" name=\"Not-Operator [Runtime]\">Not-Operator [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03060400.xhp\" name=\"Операция Not [динамична]\">Операция Not [динамична]</link>"
-#: 03120400.xhp
+#: 03060400.xhp
msgctxt ""
-"03120400.xhp\n"
-"par_id3159201\n"
+"03060400.xhp\n"
+"par_id3159414\n"
"2\n"
"help.text"
-msgid "The following functions determine string lengths and compare strings."
-msgstr "Следващите функции определят дължини на низове и сравняват низове."
+msgid "Negates an expression by inverting the bit values."
+msgstr "Обръща стойността на израз, като инвертира стойностите на битовете."
+
+#: 03060400.xhp
+msgctxt ""
+"03060400.xhp\n"
+"hd_id3149457\n"
+"3\n"
+"help.text"
+msgid "Syntax:"
+msgstr "Синтаксис:"
+
+#: 03060400.xhp
+msgctxt ""
+"03060400.xhp\n"
+"par_id3150360\n"
+"4\n"
+"help.text"
+msgid "Result = Not Expression"
+msgstr "Result = Not Expression"
+
+#: 03060400.xhp
+msgctxt ""
+"03060400.xhp\n"
+"hd_id3151211\n"
+"5\n"
+"help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 03060400.xhp
+msgctxt ""
+"03060400.xhp\n"
+"par_id3147228\n"
+"6\n"
+"help.text"
+msgid "<emph>Result:</emph> Any numeric variable that contains the result of the negation."
+msgstr "<emph>Result:</emph> числова променлива, в която да се запази резултатът от отрицанието."
+
+#: 03060400.xhp
+msgctxt ""
+"03060400.xhp\n"
+"par_id3154124\n"
+"7\n"
+"help.text"
+msgid "<emph>Expression:</emph> Any expression that you want to negate."
+msgstr "<emph>Expression:</emph> израз, чиято стойност искате да обърнете."
+
+#: 03060400.xhp
+msgctxt ""
+"03060400.xhp\n"
+"par_id3150868\n"
+"8\n"
+"help.text"
+msgid "When a Boolean expression is negated, the value True changes to False, and the value False changes to True."
+msgstr "При отрицание на булева стойност стойността True се превръща във False и обратно."
+
+#: 03060400.xhp
+msgctxt ""
+"03060400.xhp\n"
+"par_id3145785\n"
+"9\n"
+"help.text"
+msgid "In a bitwise negation each individual bit is inverted."
+msgstr "При отрицание бит по бит се обръща всеки отделен бит."
+
+#: 03060400.xhp
+msgctxt ""
+"03060400.xhp\n"
+"hd_id3153093\n"
+"10\n"
+"help.text"
+msgid "Example:"
+msgstr "Пример:"
+
+#: 03060400.xhp
+msgctxt ""
+"03060400.xhp\n"
+"par_id3145749\n"
+"15\n"
+"help.text"
+msgid "vOut = Not vA ' Returns -11"
+msgstr "vOut = Not vA ' връща -11"
+
+#: 03060400.xhp
+msgctxt ""
+"03060400.xhp\n"
+"par_id3148645\n"
+"16\n"
+"help.text"
+msgid "vOut = Not(vC > vD) ' Returns -1"
+msgstr "vOut = Not(vC > vD) ' връща -1"
+
+#: 03060400.xhp
+msgctxt ""
+"03060400.xhp\n"
+"par_id3156441\n"
+"17\n"
+"help.text"
+msgid "vOut = Not(vB > vA) ' Returns -1"
+msgstr "vOut = Not(vB > vA) ' връща -1"
+
+#: 03060400.xhp
+msgctxt ""
+"03060400.xhp\n"
+"par_id3152596\n"
+"18\n"
+"help.text"
+msgid "vOut = Not(vA > vB) ' Returns 0"
+msgstr "vOut = Not(vA > vB) ' връща 0"
#: 03060500.xhp
msgctxt ""
@@ -12502,7911 +17015,6809 @@ msgctxt ""
msgid "Example:"
msgstr "Пример:"
-#: 03120301.xhp
+#: 03060600.xhp
msgctxt ""
-"03120301.xhp\n"
+"03060600.xhp\n"
"tit\n"
"help.text"
-msgid "Format Function [Runtime]"
-msgstr "Функция Format [динамична]"
+msgid "Xor-Operator [Runtime]"
+msgstr "Операция Xor [динамична]"
-#: 03120301.xhp
+#: 03060600.xhp
msgctxt ""
-"03120301.xhp\n"
-"bm_id3153539\n"
+"03060600.xhp\n"
+"bm_id3156024\n"
"help.text"
-msgid "<bookmark_value>Format function</bookmark_value>"
-msgstr "<bookmark_value>Format, функция</bookmark_value>"
+msgid "<bookmark_value>Xor operator (logical)</bookmark_value>"
+msgstr "<bookmark_value>Xor, логическа операция</bookmark_value>"
-#: 03120301.xhp
+#: 03060600.xhp
msgctxt ""
-"03120301.xhp\n"
-"hd_id3153539\n"
+"03060600.xhp\n"
+"hd_id3156024\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120301.xhp\" name=\"Format Function [Runtime]\">Format Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120301.xhp\" name=\"Функция Format [динамична]\">Функция Format [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03060600.xhp\" name=\"Xor-Operator [Runtime]\">Xor-Operator [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03060600.xhp\" name=\"Операция Xor [динамична]\">Операция Xor [динамична]</link>"
-#: 03120301.xhp
+#: 03060600.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3156042\n"
+"03060600.xhp\n"
+"par_id3159414\n"
"2\n"
"help.text"
-msgid "Converts a number to a string, and then formats it according to the format that you specify."
-msgstr "Преобразува число в низ и го форматира по зададен от вас начин."
+msgid "Performs a logical Exclusive-Or combination of two expressions."
+msgstr "Комбинира стойностите на два израза чрез изключващо „ИЛИ“."
-#: 03120301.xhp
+#: 03060600.xhp
msgctxt ""
-"03120301.xhp\n"
-"hd_id3145090\n"
-"4\n"
+"03060600.xhp\n"
+"hd_id3153381\n"
+"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03120301.xhp
+#: 03060600.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3153527\n"
+"03060600.xhp\n"
+"par_id3150400\n"
+"4\n"
+"help.text"
+msgid "Result = Expression1 Xor Expression2"
+msgstr "Result = Expression1 Xor Expression2"
+
+#: 03060600.xhp
+msgctxt ""
+"03060600.xhp\n"
+"hd_id3153968\n"
"5\n"
"help.text"
-msgid "Format (Number [, Format As String])"
-msgstr "Format (Number [, Format As String])"
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 03120301.xhp
+#: 03060600.xhp
msgctxt ""
-"03120301.xhp\n"
-"hd_id3149178\n"
+"03060600.xhp\n"
+"par_id3150448\n"
"6\n"
"help.text"
-msgid "Return value:"
-msgstr "Връщана стойност:"
+msgid "<emph>Result:</emph> Any numeric variable that contains the result of the combination."
+msgstr "<emph>Result:</emph> числова променлива, в която да се запази резултатът от операцията."
-#: 03120301.xhp
+#: 03060600.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3148474\n"
+"03060600.xhp\n"
+"par_id3125864\n"
"7\n"
"help.text"
-msgid "String"
-msgstr "String"
+msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to combine."
+msgstr "<emph>Expression1, Expression2:</emph> изразите, чиито стойности искате да комбинирате."
-#: 03120301.xhp
+#: 03060600.xhp
msgctxt ""
-"03120301.xhp\n"
-"hd_id3159176\n"
+"03060600.xhp\n"
+"par_id3150439\n"
"8\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "A logical Exclusive-Or conjunction of two Boolean expressions returns the value True only if both expressions are different from each other."
+msgstr "Изключващото „ИЛИ“ между два булеви израза дава в резултат True само ако стойностите им са различни помежду си."
-#: 03120301.xhp
+#: 03060600.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3149415\n"
+"03060600.xhp\n"
+"par_id3153770\n"
"9\n"
"help.text"
-msgid "<emph>Number:</emph> Numeric expression that you want to convert to a formatted string."
-msgstr "<emph>Number:</emph> числов израз, чиято стойност да се преобразува във форматиран низ."
+msgid "A bitwise Exclusive-Or conjunction returns a bit if the corresponding bit is set in only one of the two expressions."
+msgstr "Побитовото изключващо „ИЛИ“ установява даден бит в единица ако съответният му бит е единица само в една от двете стойности."
-#: 03120301.xhp
+#: 03060600.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3147531\n"
+"03060600.xhp\n"
+"hd_id3153366\n"
"10\n"
"help.text"
-msgid "<emph>Format:</emph> String that specifies the format code for the number. If <emph>Format</emph> is omitted, the Format function works like the <emph>Str</emph> function."
-msgstr "<emph>Format:</emph> низ – форматиращ код за числото. Ако параметърът <emph>Format</emph> е пропуснат, функцията Format работи като <emph>Str</emph>."
-
-#: 03120301.xhp
-msgctxt ""
-"03120301.xhp\n"
-"hd_id3147561\n"
-"47\n"
-"help.text"
-msgid "Formatting Codes"
-msgstr "Кодове за форматиране"
+msgid "Example:"
+msgstr "Пример:"
-#: 03120301.xhp
+#: 03060600.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3147265\n"
-"11\n"
+"03060600.xhp\n"
+"par_id3156442\n"
+"15\n"
"help.text"
-msgid "The following list describes the codes that you can use for formatting a number:"
-msgstr "Следващият списък описва кодовете, които можете да използвате за форматиране на число:"
+msgid "vOut = vA > vB Xor vB > vC ' returns 0"
+msgstr "vOut = vA > vB Xor vB > vC ' връща 0"
-#: 03120301.xhp
+#: 03060600.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3153380\n"
-"12\n"
+"03060600.xhp\n"
+"par_id3153191\n"
+"16\n"
"help.text"
-msgid "<emph>0:</emph> If <emph>Number</emph> has a digit at the position of the 0 in the format code, the digit is displayed, otherwise a zero is displayed."
-msgstr "<emph>0:</emph> ако <emph>Number</emph> съдържа цифра в позицията на 0 във форматиращия код, се показва цифрата, а в противен случай се показва нула."
+msgid "vOut = vB > vA Xor vB > vC ' returns -1"
+msgstr "vOut = vB > vA Xor vB > vC ' връща -1"
-#: 03120301.xhp
+#: 03060600.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3151210\n"
-"13\n"
+"03060600.xhp\n"
+"par_id3153144\n"
+"17\n"
"help.text"
-msgid "If <emph>Number</emph> has fewer digits than the number of zeros in the format code, (on either side of the decimal), leading or trailing zeros are displayed. If the number has more digits to the left of the decimal separator than the amount of zeros in the format code, the additional digits are displayed without formatting."
-msgstr "Ако <emph>Number</emph> съдържа по-малко цифри от броя нули във форматиращия код (в цялата и/или дробната част), се показват водещи или завършващи нули. Ако числото съдържа повече цифри в цялата си част, отколкото са нулите във форматиращия код, допълнителните цифри се показват без форматиране."
+msgid "vOut = vA > vB Xor vB > vD ' returns -1"
+msgstr "vOut = vA > vB Xor vB > vD ' връща -1"
-#: 03120301.xhp
+#: 03060600.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3151176\n"
-"14\n"
+"03060600.xhp\n"
+"par_id3154944\n"
+"18\n"
"help.text"
-msgid "Decimal places in the number are rounded according to the number of zeros that appear after the decimal separator in the <emph>Format </emph>code."
-msgstr "Дробната част в числото се закръглява според броя нули вдясно от десетичния разделител в параметъра <emph>Format</emph>."
+msgid "vOut = (vB > vD Xor vB > vA) ' returns 0"
+msgstr "vOut = (vB > vD Xor vB > vA) ' връща 0"
-#: 03120301.xhp
+#: 03060600.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3154123\n"
-"15\n"
+"03060600.xhp\n"
+"par_id3148455\n"
+"19\n"
"help.text"
-msgid "<emph>#:</emph> If <emph>Number</emph> contains a digit at the position of the # placeholder in the <emph>Format</emph> code, the digit is displayed, otherwise nothing is displayed at this position."
-msgstr "<emph>#:</emph> ако <emph>Number</emph> съдържа цифра в позицията на заместителя # в параметъра <emph>Format</emph>, се показва цифрата, иначе в тази позиция не се показва нищо."
+msgid "vOut = vB Xor vA ' returns 2"
+msgstr "vOut = vB Xor vA ' връща 2"
-#: 03120301.xhp
+#: 03070000.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3148452\n"
-"16\n"
+"03070000.xhp\n"
+"tit\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 format code than digits in the number. Only the relevant digits of the number are displayed."
-msgstr "Този знак работи като 0, но ако знаците # са повече от цифрите в числото, не се показват водещи или завъшващи нули. Включват се само значещите цифри от числото."
+msgid "Mathematical Operators"
+msgstr "Математически оператори"
-#: 03120301.xhp
+#: 03070000.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3159150\n"
-"17\n"
+"03070000.xhp\n"
+"hd_id3149234\n"
+"1\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 "<emph>.:</emph> десетичният разделител определя броя на цифрите в цялата и дробната част на форматираното число."
+msgid "<link href=\"text/sbasic/shared/03070000.xhp\" name=\"Mathematical Operators\">Mathematical Operators</link>"
+msgstr "<link href=\"text/sbasic/shared/03070000.xhp\" name=\"Математически операции\">Математически операции</link>"
-#: 03120301.xhp
+#: 03070000.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3159252\n"
-"18\n"
+"03070000.xhp\n"
+"par_id3145068\n"
+"2\n"
"help.text"
-msgid "If the format 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 "Ако форматиращият код съдържа само знаци # вляво от десетичния разделител, числата, по-малки от 1, започват с десетичен разделител. За да се показва винаги 0 в началото на дробни числа, използвайте 0 за първата цифра вляво от десетичния разделител."
+msgid "The following mathematical operators are supported in $[officename] Basic."
+msgstr "Следните математически операции се поддържат в $[officename] Basic."
-#: 03120301.xhp
+#: 03070000.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3153368\n"
-"19\n"
+"03070000.xhp\n"
+"par_id3148552\n"
+"3\n"
"help.text"
-msgid "<emph>%:</emph> Multiplies the number by 100 and inserts the percent sign (%) where the number appears in the format code."
-msgstr "<emph>%:</emph> умножава числото по 100 и вмъква знак за проценти (%) там, където се намира във форматиращия код."
+msgid "This chapter provides a short overview of all of the arithmetical operators that you may need for calculations within a program."
+msgstr "Тази глава съдържа кратък преглед на всички аритметични операции, които може да са ви необходими за изчисления в програма."
-#: 03120301.xhp
+#: 03070100.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3149481\n"
-"20\n"
+"03070100.xhp\n"
+"tit\n"
"help.text"
-msgid "<emph>E- E+ e- e+ :</emph> If the format code contains at least one digit placeholder (0 or #) to the right of the symbol E-, E+, e-, or e+, the number 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 "<emph>E- E+ e- e+:</emph> ако форматиращият код съдържа поне един заместител за цифра (0 или #) вдясно от символа E-, E+, e- или e+, числото се форматира в експоненциален запис. Буквата E или e се вмъква между числото и експонентата. Броят заместващи знаци за цифри вдясно от символа определя броя на цифрите в експонентата."
+msgid "\"-\" Operator [Runtime]"
+msgstr "Операция „-“ [динамична]"
-#: 03120301.xhp
+#: 03070100.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3149262\n"
-"21\n"
+"03070100.xhp\n"
+"bm_id3156042\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 "Ако експонентата е отрицателна, точно преди нея се показва минус при E-, E+, e- и e+. Ако експонентата е положителна, при нея се показва знак плюс само при E+ или e+."
+msgid "<bookmark_value>\"-\" operator (mathematical)</bookmark_value>"
+msgstr "<bookmark_value>„-“, математическа операция</bookmark_value>"
-#: 03120301.xhp
+#: 03070100.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3148617\n"
-"23\n"
+"03070100.xhp\n"
+"hd_id3156042\n"
+"1\n"
"help.text"
-msgid "The thousands delimiter is displayed if the format code contains the delimiter enclosed by digit placeholders (0 or #)."
-msgstr "Разделителят на хилядите се показва ако се съдържа във форматиращия код, ограден от заместващи знаци за цифри (0 или #)."
+msgid "<link href=\"text/sbasic/shared/03070100.xhp\">\"-\" Operator [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03070100.xhp\">Операция „-“ [динамична]</link>"
-#: 03120301.xhp
+#: 03070100.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3163713\n"
-"29\n"
+"03070100.xhp\n"
+"par_id3153345\n"
+"2\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 "Употребата на точка като разделител на хилядите или на дробната част зависи от регионалните настройки. Когато въвеждате число направо в кода на Basic, винаги използвайте точка за разделител на дробната част. Знакът, който се показва на екрана като десетичен разделител, зависи от формата за числа в системните настройки."
+msgid "Subtracts two values."
+msgstr "Изважда две стойности."
-#: 03120301.xhp
+#: 03070100.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3152887\n"
-"24\n"
+"03070100.xhp\n"
+"hd_id3149416\n"
+"3\n"
"help.text"
-msgid "<emph>- + $ ( ) space:</emph> A plus (+), minus (-), dollar ($), space, or brackets entered directly in the format code is displayed as a literal character."
-msgstr "<emph>- + $ ( ) интервал:</emph> плюс (+), минус (-), долар ($), интервал или скоби, включени във форматиращия кода, се показват точно както са въведени."
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 03120301.xhp
+#: 03070100.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3148576\n"
-"25\n"
+"03070100.xhp\n"
+"par_id3156023\n"
+"4\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 "За да включите други знаци освен изброените, трябва да поставите пред тях обратна наклонена черта (\\) или да ги оградите с кавички (\" \")."
+msgid "Result = Expression1 - Expression2"
+msgstr "Result = Expression1 - Expression2"
-#: 03120301.xhp
+#: 03070100.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3153139\n"
-"26\n"
+"03070100.xhp\n"
+"hd_id3154760\n"
+"5\n"
"help.text"
-msgid "\\ : The backslash displays the next character in the format code."
-msgstr "\\: обратно наклонената черта предизвиква показване на следващия знак от форматиращия код."
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 03120301.xhp
+#: 03070100.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3153366\n"
-"27\n"
+"03070100.xhp\n"
+"par_id3147560\n"
+"6\n"
"help.text"
-msgid "Characters in the format 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 "Знаците във форматиращия код, които имат специално значение, могат да се показват буквално само ако са предшествани от обратна наклонена черта. Самата тя не се показва, освен ако я въведете два пъти във форматиращия код (\\\\)."
+msgid "<emph>Result:</emph> Any numerical expression that contains the result of the subtraction."
+msgstr "<emph>Result:</emph> числов израз, който съдържа резултата от изваждането."
-#: 03120301.xhp
+#: 03070100.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3155411\n"
-"28\n"
+"03070100.xhp\n"
+"par_id3150398\n"
+"7\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 "Знаците, пред които трябва да има обратно наклонена черта във форматиращия код, за да се покажат буквално, са тези за форматиране на дати и часове (a, c, d, h, m, n, p, q, s, t, w, y, /, :), за форматиране на числа (#, 0, %, E, e, запетая, точка) и за форматиране на низове (@, &, <, >, !)."
+msgid "<emph>Expression1, Expression2:</emph> Any numerical expressions that you want to subtract."
+msgstr "<emph>Expression1, Expression2:</emph> числови изрази, чиито стойности искате да извадите."
-#: 03120301.xhp
+#: 03070100.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3145749\n"
-"30\n"
+"03070100.xhp\n"
+"hd_id3154366\n"
+"8\n"
"help.text"
-msgid "You can also use the following predefined number formats. Except for \"General Number\", all of the predefined format codes return the number as a decimal number with two decimal places."
-msgstr "Можете да използвате и изброените по-долу предварително дефинирани числови формати. С изключение на „General Number“ всички те връщат десетично число с две дробни позиции."
+msgid "Example:"
+msgstr "Пример:"
-#: 03120301.xhp
+#: 03070200.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3150113\n"
-"31\n"
+"03070200.xhp\n"
+"tit\n"
"help.text"
-msgid "If you use predefined formats, the name of the format must be enclosed in quotation marks."
-msgstr "Ако използвате предварително дефинирани формати, името на формата трябва да е оградено в кавички."
+msgid "\"*\" Operator [Runtime]"
+msgstr "Операция „*“ [динамична]"
-#: 03120301.xhp
+#: 03070200.xhp
msgctxt ""
-"03120301.xhp\n"
-"hd_id3149377\n"
-"32\n"
+"03070200.xhp\n"
+"bm_id3147573\n"
"help.text"
-msgid "Predefined format"
-msgstr "Предварително дефиниран формат"
+msgid "<bookmark_value>\"*\" operator (mathematical)</bookmark_value>"
+msgstr "<bookmark_value>„*“, математическа операция</bookmark_value>"
-#: 03120301.xhp
+#: 03070200.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3154730\n"
-"33\n"
+"03070200.xhp\n"
+"hd_id3147573\n"
+"1\n"
"help.text"
-msgid "<emph>General Number:</emph> Numbers are displayed as entered."
-msgstr "<emph>General Number:</emph> числата се показват както се въвеждат."
+msgid "<link href=\"text/sbasic/shared/03070200.xhp\">\"*\" Operator [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03070200.xhp\">Операция „*“ [динамична]</link>"
-#: 03120301.xhp
+#: 03070200.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3153158\n"
-"34\n"
+"03070200.xhp\n"
+"par_id3154347\n"
+"2\n"
"help.text"
-msgid "<emph>Currency:</emph> Inserts a dollar sign in front of the number and encloses negative numbers in brackets."
-msgstr "<emph>Currency:</emph> вмъква знак за долар пред числото и огражда отрицателните числа в скоби."
+msgid "Multiplies two values."
+msgstr "Умножава две стойности."
-#: 03120301.xhp
+#: 03070200.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3154490\n"
-"35\n"
+"03070200.xhp\n"
+"hd_id3148946\n"
+"3\n"
"help.text"
-msgid "<emph>Fixed:</emph> Displays at least one digit in front of the decimal separator."
-msgstr "<emph>Fixed:</emph> показва поне една цифра пред десетичния разделител."
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 03120301.xhp
+#: 03070200.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3153415\n"
-"36\n"
+"03070200.xhp\n"
+"par_id3150358\n"
+"4\n"
"help.text"
-msgid "<emph>Standard:</emph> Displays numbers with a thousands separator."
-msgstr "<emph>Standard:</emph> показва числата с разделител на хилядите."
+msgid "Result = Expression1 * Expression2"
+msgstr "Result = Expression1 * Expression2"
-#: 03120301.xhp
+#: 03070200.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3150715\n"
-"37\n"
+"03070200.xhp\n"
+"hd_id3150400\n"
+"5\n"
"help.text"
-msgid "<emph>Percent:</emph> Multiplies the number by 100 and appends a percent sign to the number."
-msgstr "<emph>Percent:</emph> умножава числото по 100 и добавя знак за проценти."
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 03120301.xhp
+#: 03070200.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3153836\n"
-"38\n"
+"03070200.xhp\n"
+"par_id3154365\n"
+"6\n"
"help.text"
-msgid "<emph>Scientific:</emph> Displays numbers in scientific format (for example, 1.00E+03 for 1000)."
-msgstr "<emph>Scientific:</emph> показва числото в експоненциален запис (например 1.00E+03 за 1000)."
+msgid "<emph>Result:</emph> Any numeric expression that records the result of a multiplication."
+msgstr "<emph>Result:</emph> числов израз, който съдържа резултата от умножението."
-#: 03120301.xhp
+#: 03070200.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3153707\n"
-"39\n"
+"03070200.xhp\n"
+"par_id3154685\n"
+"7\n"
"help.text"
-msgid "A format 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 format code, it applies to all numbers."
-msgstr "Форматиращият код може да бъде разделен на три части с точки и запетаи. Първата част задава формата за положителни стойности, втората – за отрицателни и третата – за нули. Ако зададете само един форматиращ код, той важи за всякакви числа."
+msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to multiply."
+msgstr "<emph>Expression1, Expression2:</emph> числови изрази, чиито стойности искате да умножите."
-#: 03120301.xhp
+#: 03070200.xhp
msgctxt ""
-"03120301.xhp\n"
-"hd_id3149019\n"
-"40\n"
+"03070200.xhp\n"
+"hd_id3153968\n"
+"8\n"
"help.text"
msgid "Example:"
msgstr "Пример:"
-#: 03120301.xhp
+#: 03070300.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_idN107A2\n"
+"03070300.xhp\n"
+"tit\n"
"help.text"
-msgid "' always use a period as decimal delimiter when you enter numbers in Basic source code."
-msgstr "' В изходен код на Basic винаги използвайте точка за отделяне на дробната част на число."
+msgid "\"+\" Operator [Runtime]"
+msgstr "Операция „+“ [динамична]"
-#: 03120301.xhp
+#: 03070300.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3147339\n"
-"46\n"
+"03070300.xhp\n"
+"bm_id3145316\n"
"help.text"
-msgid "' displays for example 6,328.20 in English locale, 6.328,20 in German locale."
-msgstr "' В английски локал показва 6,328.20, в немски – 6.328,20."
+msgid "<bookmark_value>\"+\" operator (mathematical)</bookmark_value>"
+msgstr "<bookmark_value>„+“, математическа операция</bookmark_value>"
-#: 01050000.xhp
+#: 03070300.xhp
msgctxt ""
-"01050000.xhp\n"
-"tit\n"
+"03070300.xhp\n"
+"hd_id3145316\n"
+"1\n"
"help.text"
-msgid "$[officename] Basic IDE"
-msgstr "Развойна среда на $[officename] Basic"
+msgid "<link href=\"text/sbasic/shared/03070300.xhp\">\"+\" Operator [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03070300.xhp\">Операция „+“ [динамична]</link>"
-#: 01050000.xhp
+#: 03070300.xhp
msgctxt ""
-"01050000.xhp\n"
-"hd_id3154422\n"
-"1\n"
+"03070300.xhp\n"
+"par_id3145068\n"
+"2\n"
"help.text"
-msgid "<variable id=\"01050000\"><link href=\"text/sbasic/shared/01050000.xhp\" name=\"$[officename] Basic IDE\">$[officename] Basic IDE</link></variable>"
-msgstr "<variable id=\"01050000\"><link href=\"text/sbasic/shared/01050000.xhp\" name=\"Развойна среда на $[officename] Basic\">Развойна среда на $[officename] Basic</link></variable>"
+msgid "Adds or combines two expressions."
+msgstr "Събира две стойности."
-#: 01050000.xhp
+#: 03070300.xhp
msgctxt ""
-"01050000.xhp\n"
-"par_id3153142\n"
-"2\n"
+"03070300.xhp\n"
+"hd_id3144500\n"
+"3\n"
"help.text"
-msgid "This section describes the structure of the Basic IDE."
-msgstr "В настоящия раздел е описана структурата на развойната среда на Basic."
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 01050000.xhp
+#: 03070300.xhp
msgctxt ""
-"01050000.xhp\n"
-"par_idN105C9\n"
+"03070300.xhp\n"
+"par_id3150358\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the Basic IDE where you can write and edit macros.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Отваря развойната среда на Basic, в която можете да пишете и редактирате макроси.</ahelp>"
+msgid "Result = Expression1 + Expression2"
+msgstr "Result = Expression1 + Expression2"
-#: 01050000.xhp
+#: 03070300.xhp
msgctxt ""
-"01050000.xhp\n"
-"hd_id3153188\n"
+"03070300.xhp\n"
+"hd_id3150400\n"
"5\n"
"help.text"
-msgid "Commands From the Context menu of the Module Tabs"
-msgstr "Команди от контекстното меню на разделите с модули"
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 01050000.xhp
+#: 03070300.xhp
msgctxt ""
-"01050000.xhp\n"
-"hd_id3154731\n"
+"03070300.xhp\n"
+"par_id3154123\n"
"6\n"
"help.text"
-msgid "Insert"
-msgstr "Вмъкване"
+msgid "<emph>Result:</emph> Any numerical expression that contains the result of the addition."
+msgstr "<emph>Result:</emph> числов израз, който съдържа резултата от събирането."
-#: 01050000.xhp
+#: 03070300.xhp
msgctxt ""
-"01050000.xhp\n"
-"hd_id3151074\n"
-"8\n"
+"03070300.xhp\n"
+"par_id3150870\n"
+"7\n"
"help.text"
-msgid "Module"
-msgstr "Модул"
+msgid "<emph>Expression1, Expression2:</emph> Any numerical expressions that you want to combine or to add."
+msgstr "<emph>Expression1, Expression2:</emph> числови изрази, чиито стойности искате да съберете."
-#: 01050000.xhp
+#: 03070300.xhp
msgctxt ""
-"01050000.xhp\n"
-"par_id3149581\n"
-"9\n"
+"03070300.xhp\n"
+"hd_id3153969\n"
+"8\n"
"help.text"
-msgid "<ahelp hid=\".uno:NewModule\">Inserts a new module into the current library.</ahelp>"
-msgstr "<ahelp hid=\".uno:NewModule\">Вмъква нов модул в текущата библиотека.</ahelp>"
+msgid "Example:"
+msgstr "Пример:"
-#: 01050000.xhp
+#: 03070400.xhp
msgctxt ""
-"01050000.xhp\n"
-"hd_id3147397\n"
-"10\n"
+"03070400.xhp\n"
+"tit\n"
"help.text"
-msgid "Dialog"
-msgstr "Диалогов прозорец"
+msgid "\"/\" Operator [Runtime]"
+msgstr "Операция „/“ [динамична]"
-#: 01050000.xhp
+#: 03070400.xhp
msgctxt ""
-"01050000.xhp\n"
-"par_id3144335\n"
-"11\n"
+"03070400.xhp\n"
+"bm_id3150669\n"
"help.text"
-msgid "<ahelp hid=\".uno:NewDialog\">Inserts a new dialog into the current library.</ahelp>"
-msgstr "<ahelp hid=\".uno:NewDialog\">Вмъква нов диалогов прозорец в текущата библиотека.</ahelp>"
+msgid "<bookmark_value>\"/\" operator (mathematical)</bookmark_value>"
+msgstr "<bookmark_value>„/“, математическа операция</bookmark_value>"
-#: 01050000.xhp
+#: 03070400.xhp
msgctxt ""
-"01050000.xhp\n"
-"hd_id3155602\n"
-"12\n"
+"03070400.xhp\n"
+"hd_id3150669\n"
+"1\n"
"help.text"
-msgid "Delete"
-msgstr "Изтриване"
+msgid "<link href=\"text/sbasic/shared/03070400.xhp\">\"/\" Operator [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03070400.xhp\">Операция „/“ [динамична]</link>"
-#: 01050000.xhp
+#: 03070400.xhp
msgctxt ""
-"01050000.xhp\n"
-"par_id3155064\n"
-"13\n"
+"03070400.xhp\n"
+"par_id3149670\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:DeleteCurrent\">Deletes the selected module.</ahelp>"
-msgstr "<ahelp hid=\".uno:DeleteCurrent\">изтрива избрания модул.</ahelp>"
+msgid "Divides two values."
+msgstr "Разделя две стойности."
-#: 01050000.xhp
+#: 03070400.xhp
msgctxt ""
-"01050000.xhp\n"
-"hd_id3149018\n"
-"14\n"
+"03070400.xhp\n"
+"hd_id3148946\n"
+"3\n"
"help.text"
-msgid "Rename"
-msgstr "Преименуване"
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 01050000.xhp
+#: 03070400.xhp
msgctxt ""
-"01050000.xhp\n"
-"par_id3154754\n"
-"15\n"
+"03070400.xhp\n"
+"par_id3153360\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\".uno:RenameCurrent\">Renames the current module in place.</ahelp>"
-msgstr "<ahelp hid=\".uno:RenameCurrent\">Преименува текущия модул на място.</ahelp>"
+msgid "Result = Expression1 / Expression2"
+msgstr "Result = Expression1 / Expression2"
-#: 01050000.xhp
+#: 03070400.xhp
msgctxt ""
-"01050000.xhp\n"
-"hd_id3150043\n"
-"16\n"
+"03070400.xhp\n"
+"hd_id3150359\n"
+"5\n"
"help.text"
-msgid "Hide"
-msgstr "Скриване"
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 01050000.xhp
+#: 03070400.xhp
msgctxt ""
-"01050000.xhp\n"
-"par_id3145147\n"
-"17\n"
+"03070400.xhp\n"
+"par_id3154141\n"
+"6\n"
"help.text"
-msgid "<ahelp hid=\".uno:HideCurPage\">Hides the current module.</ahelp>"
-msgstr "<ahelp hid=\".uno:HideCurPage\">Скрива текущия модул.</ahelp>"
+msgid "<emph>Result:</emph> Any numerical value that contains the result of the division."
+msgstr "<emph>Result:</emph> числов израз, който съдържа резултата от делението."
-#: 01050000.xhp
+#: 03070400.xhp
msgctxt ""
-"01050000.xhp\n"
-"hd_id3163805\n"
-"18\n"
+"03070400.xhp\n"
+"par_id3150448\n"
+"7\n"
"help.text"
-msgid "Modules"
-msgstr "Модули"
+msgid "<emph>Expression1, Expression2:</emph> Any numerical expressions that you want to divide."
+msgstr "<emph>Expression1, Expression2:</emph> числови изрази, чиито стойности искате да разделите."
-#: 01050000.xhp
+#: 03070400.xhp
msgctxt ""
-"01050000.xhp\n"
-"par_id3153965\n"
-"19\n"
+"03070400.xhp\n"
+"hd_id3154684\n"
+"8\n"
"help.text"
-msgid "Opens the <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Macro Organizer\"><emph>Macro Organizer</emph></link> dialog."
-msgstr "Opens the <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Организиране на макроси\"><emph>Организиране на макроси</emph></link> dialog."
+msgid "Example:"
+msgstr "Пример:"
-#: 03030120.xhp
+#: 03070500.xhp
msgctxt ""
-"03030120.xhp\n"
+"03070500.xhp\n"
"tit\n"
"help.text"
-msgid "DateDiff Function [Runtime]"
-msgstr "Функция DateDiff [динамична]"
+msgid "\"^\" Operator [Runtime]"
+msgstr "Операция „^“ [динамична]"
-#: 03030120.xhp
+#: 03070500.xhp
msgctxt ""
-"03030120.xhp\n"
-"bm_id6134830\n"
+"03070500.xhp\n"
+"bm_id3145315\n"
"help.text"
-msgid "<bookmark_value>DateDiff function</bookmark_value>"
-msgstr "<bookmark_value>DateDiff, функция</bookmark_value>"
+msgid "<bookmark_value>\"^\" operator (mathematical)</bookmark_value>"
+msgstr "<bookmark_value>„^“, математическа операция</bookmark_value>"
-#: 03030120.xhp
+#: 03070500.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN10542\n"
+"03070500.xhp\n"
+"hd_id3145315\n"
+"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03030120.xhp\">DateDiff Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03030120.xhp\">Функция DateDiff [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03070500.xhp\">\"^\" Operator [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03070500.xhp\">Операция „^“ [динамична]</link>"
-#: 03030120.xhp
+#: 03070500.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN10546\n"
+"03070500.xhp\n"
+"par_id3149670\n"
+"2\n"
"help.text"
-msgid "Returns the number of date intervals between two given date values."
-msgstr "Връща броя периоди между две зададени стойности – дати."
+msgid "Raises a number to a power."
+msgstr "Повдига число на степен."
-#: 03030120.xhp
+#: 03070500.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN10549\n"
+"03070500.xhp\n"
+"hd_id3147264\n"
+"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN10648\n"
-"help.text"
-msgid "DateDiff (Add, Date1, Date2 [, Week_start [, Year_start]])"
-msgstr "DateDiff (Add, Date1, Date2 [, Week_start [, Year_start]])"
-
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN1064B\n"
-"help.text"
-msgid "Return value:"
-msgstr "Връщана стойност:"
-
-#: 03030120.xhp
+#: 03070500.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN1064F\n"
+"03070500.xhp\n"
+"par_id3149656\n"
+"4\n"
"help.text"
-msgid "A number."
-msgstr "Число."
+msgid "Result = Expression ^ Exponent"
+msgstr "Result = Expression ^ Exponent"
-#: 03030120.xhp
+#: 03070500.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN10652\n"
+"03070500.xhp\n"
+"hd_id3151211\n"
+"5\n"
"help.text"
msgid "Parameters:"
msgstr "Параметри:"
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN10656\n"
-"help.text"
-msgid "<emph>Add</emph> - A string expression from the following table, specifying the date interval."
-msgstr "<emph>Add:</emph> низов израз със стойност от следващата таблица, който задава периода."
-
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN10664\n"
-"help.text"
-msgid "<emph>Date1, Date2</emph> - The two date values to be compared."
-msgstr "<emph>Date1, Date2:</emph> двете дати, чиито стойности ще се сравняват."
-
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN1066A\n"
-"help.text"
-msgid "<emph>Week_start</emph> - An optional parameter that specifies the starting day of a week."
-msgstr "<emph>Week_start:</emph> незадължителен параметър, който задава началния ден на седмицата."
-
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN1067A\n"
-"help.text"
-msgid "Week_start value"
-msgstr "Стойност на Week_start"
-
-#: 03030120.xhp
+#: 03070500.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN10680\n"
+"03070500.xhp\n"
+"par_id3153192\n"
+"6\n"
"help.text"
-msgid "Explanation"
-msgstr "Обяснение"
+msgid "<emph>Result:</emph> Any numerical expression that contains the result of the number raised to a power."
+msgstr "<emph>Result:</emph> числов израз, който съдържа резултата от степенуването."
-#: 03030120.xhp
+#: 03070500.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN10687\n"
+"03070500.xhp\n"
+"par_id3150448\n"
+"7\n"
"help.text"
-msgid "0"
-msgstr "0"
+msgid "<emph>Expression:</emph> Numerical value that you want to raise to a power."
+msgstr "<emph>Expression:</emph> числов израз, чиято стойност искате да степенувате."
-#: 03030120.xhp
+#: 03070500.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN1068D\n"
+"03070500.xhp\n"
+"par_id3156422\n"
+"8\n"
"help.text"
-msgid "Use system default value"
-msgstr "Използване на системните настройки"
+msgid "<emph>Exponent:</emph> The value of the power that you want to raise the expression to."
+msgstr "<emph>Exponent:</emph> степента, на която трябва да бъде повдигната стойността на израза."
-#: 03030120.xhp
+#: 03070500.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN10694\n"
+"03070500.xhp\n"
+"hd_id3147287\n"
+"9\n"
"help.text"
-msgid "1"
-msgstr "1"
+msgid "Example:"
+msgstr "Пример:"
-#: 03030120.xhp
+#: 03070500.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN1069A\n"
+"03070500.xhp\n"
+"par_id3146984\n"
+"12\n"
"help.text"
-msgid "Sunday (default)"
-msgstr "Неделя (по подразбиране)"
+msgid "Print Exp ( 23 * Log( 12.345 ) ) ' Raises by forming a logarithm"
+msgstr "Print Exp (23 * Log(12.345)) ' Степенуване чрез логаритъм"
-#: 03030120.xhp
+#: 03070600.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN106A1\n"
+"03070600.xhp\n"
+"tit\n"
"help.text"
-msgid "2"
-msgstr "2"
+msgid "Mod-Operator [Runtime]"
+msgstr "Операция Mod [динамична]"
-#: 03030120.xhp
+#: 03070600.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN106A7\n"
+"03070600.xhp\n"
+"bm_id3150669\n"
"help.text"
-msgid "Monday"
-msgstr "Понеделник"
+msgid "<bookmark_value>MOD operator (mathematical)</bookmark_value>"
+msgstr "<bookmark_value>Mod, математическа операция</bookmark_value>"
-#: 03030120.xhp
+#: 03070600.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN106AE\n"
+"03070600.xhp\n"
+"hd_id3150669\n"
+"1\n"
"help.text"
-msgid "3"
-msgstr "3"
+msgid "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod-Operator [Runtime]\">Mod Operator [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Операция Mod [динамична]\">Операция Mod [динамична]</link>"
-#: 03030120.xhp
+#: 03070600.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN106B4\n"
+"03070600.xhp\n"
+"par_id3148686\n"
+"2\n"
"help.text"
-msgid "Tuesday"
-msgstr "Вторник"
+msgid "Returns the integer remainder of a division."
+msgstr "Връща целочисления остатък от деление."
-#: 03030120.xhp
+#: 03070600.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN106BB\n"
+"03070600.xhp\n"
+"hd_id3146795\n"
+"3\n"
"help.text"
-msgid "4"
-msgstr "4"
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 03030120.xhp
+#: 03070600.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN106C1\n"
+"03070600.xhp\n"
+"par_id3147560\n"
+"4\n"
"help.text"
-msgid "Wednesday"
-msgstr "Сряда"
+msgid "Result = Expression1 MOD Expression2"
+msgstr "Result = Expression1 Mod Expression2"
-#: 03030120.xhp
+#: 03070600.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN106C8\n"
+"03070600.xhp\n"
+"hd_id3149657\n"
+"5\n"
"help.text"
-msgid "5"
-msgstr "5"
+msgid "Return value:"
+msgstr "Връщана стойност:"
-#: 03030120.xhp
+#: 03070600.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN106CE\n"
+"03070600.xhp\n"
+"par_id3153380\n"
+"6\n"
"help.text"
-msgid "Thursday"
-msgstr "Четвъртък"
+msgid "Integer"
+msgstr "Integer"
-#: 03030120.xhp
+#: 03070600.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN106D5\n"
+"03070600.xhp\n"
+"hd_id3154365\n"
+"7\n"
"help.text"
-msgid "6"
-msgstr "6"
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 03030120.xhp
+#: 03070600.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN106DB\n"
+"03070600.xhp\n"
+"par_id3145172\n"
+"8\n"
"help.text"
-msgid "Friday"
-msgstr "Петък"
+msgid "<emph>Result:</emph> Any numeric variable that contains the result of the MOD operation."
+msgstr "<emph>Result:</emph> числов израз, който съдържа остатъка от делението."
-#: 03030120.xhp
+#: 03070600.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN106E2\n"
+"03070600.xhp\n"
+"par_id3151042\n"
+"9\n"
"help.text"
-msgid "7"
-msgstr "7"
+msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to divide."
+msgstr "<emph>Expression1, Expression2:</emph> числовите изрази, чиито стойности искате да разделите."
-#: 03030120.xhp
+#: 03070600.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN106E8\n"
+"03070600.xhp\n"
+"hd_id3147287\n"
+"10\n"
"help.text"
-msgid "Saturday"
-msgstr "Събота"
+msgid "Example:"
+msgstr "Пример:"
-#: 03030120.xhp
+#: 03070600.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN106EB\n"
+"03070600.xhp\n"
+"par_id3161832\n"
+"12\n"
"help.text"
-msgid "<emph>Year_start</emph> - An optional parameter that specifies the starting week of a year."
-msgstr "<emph>Year_start:</emph> незадължителен параметър, който задава началната седмица на годината."
+msgid "Print 10 Mod 2.5 ' returns 0"
+msgstr "Print 10 Mod 2.5 ' връща 0"
-#: 03030120.xhp
+#: 03070600.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN106FB\n"
+"03070600.xhp\n"
+"par_id3146922\n"
+"13\n"
"help.text"
-msgid "Year_start value"
-msgstr "Стойност на Year_start"
+msgid "Print 10 / 2.5 ' returns 4"
+msgstr "Print 10 / 2.5 ' връща 4"
-#: 03030120.xhp
+#: 03070600.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN10701\n"
+"03070600.xhp\n"
+"par_id3145273\n"
+"14\n"
"help.text"
-msgid "Explanation"
-msgstr "Обяснение"
+msgid "Print 10 Mod 5 ' returns 0"
+msgstr "Print 10 Mod 5 ' връща 0"
-#: 03030120.xhp
+#: 03070600.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN10708\n"
+"03070600.xhp\n"
+"par_id3150011\n"
+"15\n"
"help.text"
-msgid "0"
-msgstr "0"
+msgid "Print 10 / 5 ' returns 2"
+msgstr "Print 10 / 5 ' връща 2"
-#: 03030120.xhp
+#: 03070600.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN1070E\n"
+"03070600.xhp\n"
+"par_id3149483\n"
+"16\n"
"help.text"
-msgid "Use system default value"
-msgstr "Използване на системните настройки"
+msgid "Print 5 Mod 10 ' returns 5"
+msgstr "Print 5 Mod 10 ' връща 5"
-#: 03030120.xhp
+#: 03070600.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN10715\n"
+"03070600.xhp\n"
+"par_id3151114\n"
+"17\n"
"help.text"
-msgid "1"
-msgstr "1"
+msgid "Print 5 / 10 ' returns 0.5"
+msgstr "Print 5 / 10 ' връща 0.5"
-#: 03030120.xhp
+#: 03080000.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN1071B\n"
+"03080000.xhp\n"
+"tit\n"
"help.text"
-msgid "Week 1 is the week with January, 1st (default)"
-msgstr "Седмица 1 е седмицата, съдъжаща 1 януари (по подразбиране)."
+msgid "Numeric Functions"
+msgstr "Числови функции"
-#: 03030120.xhp
+#: 03080000.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN10722\n"
+"03080000.xhp\n"
+"hd_id3153127\n"
+"1\n"
"help.text"
-msgid "2"
-msgstr "2"
+msgid "<link href=\"text/sbasic/shared/03080000.xhp\" name=\"Numeric Functions\">Numeric Functions</link>"
+msgstr "<link href=\"text/sbasic/shared/03080000.xhp\" name=\"Числови функции\">Числови функции</link>"
-#: 03030120.xhp
+#: 03080000.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN10728\n"
+"03080000.xhp\n"
+"par_id3148550\n"
+"2\n"
"help.text"
-msgid "Week 1 is the first week containing four or more days of that year"
-msgstr "Седмица 1 е първата седмица, съдържаща четири или повече дни от съответната година."
+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 "Следват числовите функции за извършване на изчисления. Математическите и булевите (логически) операции са описани в отделен раздел. Функциите се различават от операциите по това, че приемат аргументи и връщат резултат, а операциите формират резултата чрез комбиниране на два числови израза."
-#: 03030120.xhp
+#: 03080100.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN1072F\n"
+"03080100.xhp\n"
+"tit\n"
"help.text"
-msgid "3"
-msgstr "3"
+msgid "Trigonometric Functions"
+msgstr "Тригонометрични функции"
-#: 03030120.xhp
+#: 03080100.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN10735\n"
+"03080100.xhp\n"
+"hd_id3159201\n"
+"1\n"
"help.text"
-msgid "Week 1 is the first week containing only days of the new year"
-msgstr "Седмица 1 е първата седмица, съдържаща само дни от новата година."
+msgid "<link href=\"text/sbasic/shared/03080100.xhp\" name=\"Trigonometric Functions\">Trigonometric Functions</link>"
+msgstr "<link href=\"text/sbasic/shared/03080100.xhp\" name=\"Тригонометрични функции\">Тригонометрични функции</link>"
-#: 03030120.xhp
+#: 03080100.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN10738\n"
+"03080100.xhp\n"
+"par_id3149180\n"
+"2\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "The following are the trigonometric functions that are supported in $[officename] Basic."
+msgstr "Следните тригонометрични функции се поддържат в $[officename] Basic."
-#: 03090203.xhp
+#: 03080101.xhp
msgctxt ""
-"03090203.xhp\n"
+"03080101.xhp\n"
"tit\n"
"help.text"
-msgid "While...Wend Statement[Runtime]"
-msgstr "Оператор While…Wend [динамичен]"
+msgid "Atn Function [Runtime]"
+msgstr "Функция Atn [динамична]"
-#: 03090203.xhp
+#: 03080101.xhp
msgctxt ""
-"03090203.xhp\n"
-"bm_id3150400\n"
+"03080101.xhp\n"
+"bm_id3150616\n"
"help.text"
-msgid "<bookmark_value>While;While...Wend loop</bookmark_value>"
-msgstr "<bookmark_value>While;While…Wend, цикъл</bookmark_value>"
+msgid "<bookmark_value>Atn function</bookmark_value>"
+msgstr "<bookmark_value>Atn, функция</bookmark_value>"
-#: 03090203.xhp
+#: 03080101.xhp
msgctxt ""
-"03090203.xhp\n"
-"hd_id3150400\n"
+"03080101.xhp\n"
+"hd_id3150616\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090203.xhp\" name=\"While...Wend Statement[Runtime]\">While...Wend Statement[Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090203.xhp\" name=\"Оператор While…Wend [динамичен]\">Оператор While…Wend [динамичен]</link>"
+msgid "<link href=\"text/sbasic/shared/03080101.xhp\" name=\"Atn Function [Runtime]\">Atn Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03080101.xhp\" name=\"Функция Atn [динамична]\">Функция Atn [динамична]</link>"
-#: 03090203.xhp
+#: 03080101.xhp
msgctxt ""
-"03090203.xhp\n"
-"par_id3151211\n"
+"03080101.xhp\n"
+"par_id3149346\n"
"2\n"
"help.text"
-msgid "When a program encounters a While statement, it tests the condition. If the condition is False, the program continues directly following the Wend statement. If the condition is True, the loop is executed until the program finds Wend and then jumps back to the<emph> While </emph>statement. If the condition is still True, the loop is executed again."
-msgstr "Когато изпълнението на програмата стигне до оператор While, условието се проверява. Ако има стойност False, изпълнението продължава директно след оператора Wend. Ако условието има стойност True, цикълът се изпълнява до Wend, след което управлението се връща на оператора <emph>While</emph>. Ако условието още е True, цикълът се изпълнява отново."
+msgid "Trigonometric function that returns the arctangent of a numeric expression. The return value is in the range -Pi/2 to +Pi/2."
+msgstr "Тригонометрична функция, която връща аркустангенса на стойността на числов израз. Резултатът е между -Pi/2 и +Pi/2."
-#: 03090203.xhp
+#: 03080101.xhp
msgctxt ""
-"03090203.xhp\n"
-"par_id3151041\n"
+"03080101.xhp\n"
+"par_id3143271\n"
"3\n"
"help.text"
-msgid "Unlike the <link href=\"text/sbasic/shared/03090201.xhp\" name=\"Do...Loop\">Do...Loop</link> statement, you cannot cancel a <emph>While...Wend</emph> loop with <link href=\"text/sbasic/shared/03090412.xhp\" name=\"Exit\">Exit</link>. Never exit a While...Wend loop with <link href=\"text/sbasic/shared/03090302.xhp\" name=\"GoTo\">GoTo</link>, since this can cause a run-time error."
-msgstr "За разлика от оператора <link href=\"text/sbasic/shared/03090201.xhp\" name=\"Do…Loop\">Do…Loop</link>, цикълът <emph>While…Wend</emph> не може да бъде прекъснат с <link href=\"text/sbasic/shared/03090412.xhp\" name=\"Exit\">Exit</link>. Никога не прекъсвайте цикъл While…Wend с <link href=\"text/sbasic/shared/03090302.xhp\" name=\"GoTo\">GoTo</link>, тъй като това може да предизвика грешка по време на изпълнение."
+msgid "The arctangent is the inverse of the tangent function. The Atn 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 "Аркустангенсът е обратна функция на тангенса. Функцията Atn намира ъгъл в радиани по неговия тангенс. Тя също така може да намери ъгъл по съотношението на срещуположния и прилежащия катет на ъгъла в правоъгълен триъгълник."
-#: 03090203.xhp
+#: 03080101.xhp
msgctxt ""
-"03090203.xhp\n"
-"par_id3145172\n"
+"03080101.xhp\n"
+"par_id3145315\n"
"4\n"
"help.text"
-msgid "A Do...Loop is more flexible than a While...Wend."
-msgstr "Циклите Do…Loop са по-гъвкави от While…Wend."
+msgid "Atn(side opposite the angle/side adjacent to angle)= Alpha"
+msgstr "Atn(срещулежащ катет / прилежащ катет) = ъгъл"
-#: 03090203.xhp
+#: 03080101.xhp
msgctxt ""
-"03090203.xhp\n"
-"hd_id3155133\n"
+"03080101.xhp\n"
+"hd_id3149669\n"
"5\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03090203.xhp
+#: 03080101.xhp
msgctxt ""
-"03090203.xhp\n"
-"par_id3147288\n"
+"03080101.xhp\n"
+"par_id3148947\n"
"6\n"
"help.text"
-msgid "While Condition [Statement] Wend"
-msgstr "While условие [оператор] Wend"
+msgid "Atn (Number)"
+msgstr "Atn (Number)"
-#: 03090203.xhp
+#: 03080101.xhp
msgctxt ""
-"03090203.xhp\n"
-"hd_id3153139\n"
+"03080101.xhp\n"
+"hd_id3148664\n"
"7\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "Return value:"
+msgstr "Връщана стойност:"
-#: 03090203.xhp
+#: 03080101.xhp
msgctxt ""
-"03090203.xhp\n"
-"par_id3159153\n"
+"03080101.xhp\n"
+"par_id3150359\n"
"8\n"
"help.text"
-msgid "Sub ExampleWhileWend"
-msgstr "Sub ExampleWhileWend"
+msgid "Double"
+msgstr "Double"
-#: 03090203.xhp
+#: 03080101.xhp
msgctxt ""
-"03090203.xhp\n"
-"par_id3151114\n"
+"03080101.xhp\n"
+"hd_id3148798\n"
"9\n"
"help.text"
-msgid "Dim stext As String"
-msgstr "Dim stext As String"
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 03090203.xhp
+#: 03080101.xhp
msgctxt ""
-"03090203.xhp\n"
-"par_id3153143\n"
+"03080101.xhp\n"
+"par_id3156212\n"
"10\n"
"help.text"
-msgid "Dim iRun As Integer"
-msgstr "Dim iRun As Integer"
+msgid "<emph>Number:</emph> Any numerical expression that represents the ratio of two sides of a right triangle. The Atn function returns the corresponding angle in radians (arctangent)."
+msgstr "<emph>Number:</emph> числов израз, представляващ съотношението между два катета на правоъгълен триъгълник. Функцията Atn връща съответния ъгъл в радиани (аркустангенс)."
-#: 03090203.xhp
+#: 03080101.xhp
msgctxt ""
-"03090203.xhp\n"
-"par_id3155306\n"
+"03080101.xhp\n"
+"par_id3153192\n"
"11\n"
"help.text"
-msgid "sText =\"This Is a short text\""
-msgstr "sText = \"Това е къс текст\""
+msgid "To convert radians to degrees, multiply radians by 180/pi."
+msgstr "За да преобразувате от радиани към градуси, умножете радианите по 180/π."
-#: 03090203.xhp
+#: 03080101.xhp
msgctxt ""
-"03090203.xhp\n"
-"par_id3154011\n"
+"03080101.xhp\n"
+"par_id3147230\n"
"12\n"
"help.text"
-msgid "iRun = 1"
-msgstr "iRun = 1"
+msgid "degree=(radian*180)/pi"
+msgstr "degrees = (radians * 180) / Pi"
-#: 03090203.xhp
+#: 03080101.xhp
msgctxt ""
-"03090203.xhp\n"
-"par_id3147215\n"
+"03080101.xhp\n"
+"par_id3125864\n"
"13\n"
"help.text"
-msgid "While iRun < Len(sText)"
-msgstr "While iRun < Len(sText)"
+msgid "radian=(degree*pi)/180"
+msgstr "radians = (degrees * Pi) / 180"
-#: 03090203.xhp
+#: 03080101.xhp
msgctxt ""
-"03090203.xhp\n"
-"par_id3147427\n"
+"03080101.xhp\n"
+"par_id3159252\n"
"14\n"
"help.text"
-msgid "If Mid(sText,iRun,1 )<> \" \" Then Mid( sText ,iRun, 1, Chr( 1 + Asc( Mid(sText,iRun,1 )) )"
-msgstr "If Mid(sText, iRun, 1) <> \" \" Then Mid(sText, iRun, 1, Chr(1 + Asc(Mid(sText, iRun, 1)))"
+msgid "Pi is here the fixed circle constant with the rounded value 3.14159."
+msgstr "Pi (π) е съотношението между периметъра и диаметъра на кръг, приблизително 3,14159."
-#: 03090203.xhp
+#: 03080101.xhp
msgctxt ""
-"03090203.xhp\n"
-"par_id3149665\n"
+"03080101.xhp\n"
+"hd_id3153142\n"
"15\n"
"help.text"
-msgid "iRun = iRun + 1"
-msgstr "iRun = iRun + 1"
+msgid "Example:"
+msgstr "Пример:"
-#: 03090203.xhp
+#: 03080101.xhp
msgctxt ""
-"03090203.xhp\n"
-"par_id3152939\n"
+"03080101.xhp\n"
+"par_id3146985\n"
"16\n"
"help.text"
-msgid "Wend"
-msgstr "Wend"
+msgid "' The following example calculates for a right-angled triangle"
+msgstr "' Изчисление за правоъгълен триъгълник"
-#: 03090203.xhp
+#: 03080101.xhp
msgctxt ""
-"03090203.xhp\n"
-"par_id3153189\n"
+"03080101.xhp\n"
+"par_id3145750\n"
"17\n"
"help.text"
-msgid "MsgBox sText,0,\"Text encoded\""
-msgstr "MsgBox sText, 0, \"Кодиран текст\""
-
-#: 03090203.xhp
-msgctxt ""
-"03090203.xhp\n"
-"par_id3145251\n"
-"18\n"
-"help.text"
-msgid "End Sub"
-msgstr "End Sub"
-
-#: 03103450.xhp
-msgctxt ""
-"03103450.xhp\n"
-"tit\n"
-"help.text"
-msgid "Global Statement [Runtime]"
-msgstr "Оператор Global [динамичен]"
-
-#: 03103450.xhp
-msgctxt ""
-"03103450.xhp\n"
-"bm_id3159201\n"
-"help.text"
-msgid "<bookmark_value>Global statement</bookmark_value>"
-msgstr "<bookmark_value>Global, оператор</bookmark_value>"
-
-#: 03103450.xhp
-msgctxt ""
-"03103450.xhp\n"
-"hd_id3159201\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03103450.xhp\" name=\"Global Statement [Runtime]\">Global Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03103450.xhp\" name=\"Оператор Global [динамичен]\">Оператор Global [динамичен]</link>"
+msgid "' the angle Alpha from the tangent of the angle Alpha:"
+msgstr "' Намираме ъгъла по тангенса му:"
-#: 03103450.xhp
+#: 03080101.xhp
msgctxt ""
-"03103450.xhp\n"
-"par_id3149177\n"
-"2\n"
+"03080101.xhp\n"
+"par_id3151112\n"
+"19\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 "Задава размера на променлива или масив на глобално ниво (т.е. не в процедура или функция), така че променливата или масивът е валиден във всички библиотеки и модули за текущата сесия."
+msgid "' rounded Pi = 3.14159 Is a predefined constant"
+msgstr "' Pi е дефинирана константа с приблизителна стойност 3,14159"
-#: 03103450.xhp
+#: 03080101.xhp
msgctxt ""
-"03103450.xhp\n"
-"hd_id3143270\n"
-"3\n"
+"03080101.xhp\n"
+"par_id3149262\n"
+"22\n"
"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
+msgid "d1 = InputBox$ (\"Enter the length of the side adjacent to the angle: \",\"Adjacent\")"
+msgstr "d1 = InputBox$(\"Въведете дължината на прилежащия катет: \", \"Прилежащ катет\")"
-#: 03103450.xhp
+#: 03080101.xhp
msgctxt ""
-"03103450.xhp\n"
-"par_id3150771\n"
-"4\n"
+"03080101.xhp\n"
+"par_id3149482\n"
+"23\n"
"help.text"
-msgid "Global VarName[(start To end)] [As VarType][, VarName2[(start To end)] [As VarType][,...]]"
-msgstr "Global VarName[(start To end)] [As VarType][, VarName2[(start To end)] [As VarType][,...]]"
+msgid "d2 = InputBox$ (\"Enter the length of the side opposite the angle: \",\"Opposite\")"
+msgstr "d2 = InputBox$(\"Въведете дължината на срещулежащия катет: \", \"Срещулежащ катет\")"
-#: 03103450.xhp
+#: 03080101.xhp
msgctxt ""
-"03103450.xhp\n"
-"hd_id3156152\n"
-"5\n"
+"03080101.xhp\n"
+"par_id3155415\n"
+"24\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "Print \"The Alpha angle is\"; (atn (d2/d1) * 180 / Pi); \" degrees\""
+msgstr "Print \"Ъгълът е \"; (atn(d2 / d1) * 180 / Pi); \" градуса\""
-#: 03100700.xhp
+#: 03080102.xhp
msgctxt ""
-"03100700.xhp\n"
+"03080102.xhp\n"
"tit\n"
"help.text"
-msgid "Const Statement [Runtime]"
-msgstr "Оператор Const [динамичен]"
+msgid "Cos Function [Runtime]"
+msgstr "Функция Cos [динамична]"
-#: 03100700.xhp
+#: 03080102.xhp
msgctxt ""
-"03100700.xhp\n"
-"bm_id3146958\n"
+"03080102.xhp\n"
+"bm_id3154923\n"
"help.text"
-msgid "<bookmark_value>Const statement</bookmark_value>"
-msgstr "<bookmark_value>Const, оператор</bookmark_value>"
+msgid "<bookmark_value>Cos function</bookmark_value>"
+msgstr "<bookmark_value>Cos, функция</bookmark_value>"
-#: 03100700.xhp
+#: 03080102.xhp
msgctxt ""
-"03100700.xhp\n"
-"hd_id3146958\n"
+"03080102.xhp\n"
+"hd_id3154923\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03100700.xhp\" name=\"Const Statement [Runtime]\">Const Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03100700.xhp\" name=\"Оператор Const [динамичен]\">Оператор Const [динамичен]</link>"
+msgid "<link href=\"text/sbasic/shared/03080102.xhp\" name=\"Cos Function [Runtime]\">Cos Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03080102.xhp\" name=\"Функция Cos [динамична]\">Функция Cos [динамична]</link>"
-#: 03100700.xhp
+#: 03080102.xhp
msgctxt ""
-"03100700.xhp\n"
-"par_id3154143\n"
+"03080102.xhp\n"
+"par_id3159413\n"
"2\n"
"help.text"
-msgid "Defines a string as a constant."
-msgstr "Дефинира величина като константа."
+msgid "Calculates the cosine of an angle. The angle is specified in radians. The result lies between -1 and 1."
+msgstr "Изчислява косинуса на ъгъл, зададен в радиани. Резултатът е между -1 и 1."
-#: 03100700.xhp
+#: 03080102.xhp
msgctxt ""
-"03100700.xhp\n"
-"hd_id3150670\n"
+"03080102.xhp\n"
+"par_id3150358\n"
"3\n"
"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
+msgid "Using the angle Alpha, the Cos-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 "Функцията Cos изчислява съотношението на дължините на прилежащия катет на ъгъла и хипотенузата в правоъгълен триъгълник."
-#: 03100700.xhp
+#: 03080102.xhp
msgctxt ""
-"03100700.xhp\n"
-"par_id3150984\n"
+"03080102.xhp\n"
+"par_id3154141\n"
"4\n"
"help.text"
-msgid "Const Text = Expression"
-msgstr "Const Text = Expression"
+msgid "Cos(Alpha) = Adjacent/Hypotenuse"
+msgstr "Cos(α) = прилежащ катет / хипотенуза"
-#: 03100700.xhp
+#: 03080102.xhp
msgctxt ""
-"03100700.xhp\n"
-"hd_id3147530\n"
+"03080102.xhp\n"
+"hd_id3154125\n"
"5\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 03100700.xhp
+#: 03080102.xhp
msgctxt ""
-"03100700.xhp\n"
-"par_id3153897\n"
+"03080102.xhp\n"
+"par_id3145172\n"
"6\n"
"help.text"
-msgid "<emph>Text:</emph> Any constant name that follows the standard variable naming conventions."
-msgstr "<emph>Text:</emph> име на константа, отговарящ на стандартните правила за име на променлива."
+msgid "Cos (Number)"
+msgstr "Cos (Number)"
-#: 03100700.xhp
+#: 03080102.xhp
msgctxt ""
-"03100700.xhp\n"
-"par_id3147264\n"
+"03080102.xhp\n"
+"hd_id3156214\n"
"7\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. Use the following statement to define a constant:"
-msgstr "Константата е променлива, подобряваща четливостта на програмата. Константите не са променливи от определен тип, а просто се използват като заместители в кода. Те се дефинират еднократно и не могат да бъдат променяни. За да дефинирате константа, използвайте следния оператор:"
+msgid "Return value:"
+msgstr "Връщана стойност:"
-#: 03100700.xhp
+#: 03080102.xhp
msgctxt ""
-"03100700.xhp\n"
-"par_id3150542\n"
+"03080102.xhp\n"
+"par_id3150449\n"
"8\n"
"help.text"
-msgid "CONST ConstName=Expression"
-msgstr "CONST ИмеНаКонстанта = Израз"
+msgid "Double"
+msgstr "Double"
-#: 03100700.xhp
+#: 03080102.xhp
msgctxt ""
-"03100700.xhp\n"
-"par_id3150400\n"
+"03080102.xhp\n"
+"hd_id3153969\n"
"9\n"
"help.text"
-msgid "The type of expression is irrelevant. If a program is started, $[officename] Basic converts the program code internally so that each time a constant is used, the defined expression replaces it."
-msgstr "Типът на израза не е от значение. Ако стартирате програмата, $[officename] Basic преобразува програмния код така, че при всяко използване на константа тя се замества със зададения израз."
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 03100700.xhp
+#: 03080102.xhp
msgctxt ""
-"03100700.xhp\n"
-"hd_id3154366\n"
+"03080102.xhp\n"
+"par_id3153770\n"
"10\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "<emph>Number:</emph> Numeric expression that specifies an angle in radians that you want to calculate the cosine for."
+msgstr "<emph>Number:</emph> числов израз – ъгълът в радиани, чийто косинус искате да изчислите."
-#: 03100700.xhp
+#: 03080102.xhp
msgctxt ""
-"03100700.xhp\n"
-"par_id3153969\n"
+"03080102.xhp\n"
+"par_id3145749\n"
+"11\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 "За да превърнете градусите в радиани, умножете ги по π/180. За да превърнете радианите в градуси, умножете ги по 180/π."
+
+#: 03080102.xhp
+msgctxt ""
+"03080102.xhp\n"
+"par_id3149664\n"
+"12\n"
+"help.text"
+msgid "degree=(radian*180)/pi"
+msgstr "degrees = (radians * 180) / Pi"
+
+#: 03080102.xhp
+msgctxt ""
+"03080102.xhp\n"
+"par_id3146985\n"
+"13\n"
+"help.text"
+msgid "radian=(degree*pi)/180"
+msgstr "radians = (degrees * Pi) / 180"
+
+#: 03080102.xhp
+msgctxt ""
+"03080102.xhp\n"
+"par_id3152885\n"
"14\n"
"help.text"
-msgid "Const sVar = \"Program\", dVar As Double = 1.00"
-msgstr "Const sVar = \"Program\", dVar As Double = 1.00"
+msgid "Pi is here the fixed circle constant with the rounded value 3.14159..."
+msgstr "Pi (π) е съотношението между периметъра и диаметъра на кръг, приблизително 3,14159."
-#: 01020200.xhp
+#: 03080102.xhp
msgctxt ""
-"01020200.xhp\n"
-"tit\n"
+"03080102.xhp\n"
+"hd_id3153951\n"
+"15\n"
"help.text"
-msgid "Using Objects"
-msgstr "Използване на обекти"
+msgid "Example:"
+msgstr "Пример:"
-#: 01020200.xhp
+#: 03080102.xhp
msgctxt ""
-"01020200.xhp\n"
-"hd_id3145645\n"
-"1\n"
+"03080102.xhp\n"
+"par_id3155855\n"
+"16\n"
"help.text"
-msgid "<variable id=\"01020200\"><link href=\"text/sbasic/shared/01020200.xhp\">Using the Object Catalog</link></variable>"
-msgstr "<variable id=\"01020200\"><link href=\"text/sbasic/shared/01020200.xhp\">Работа с каталога на обектите</link></variable>"
+msgid "' The following example allows for a right-angled triangle the input of"
+msgstr "' Този пример позволява въвеждане на дължината на прилежащ"
-#: 01020200.xhp
+#: 03080102.xhp
msgctxt ""
-"01020200.xhp\n"
-"par_id3153707\n"
-"76\n"
+"03080102.xhp\n"
+"par_id3149484\n"
+"17\n"
"help.text"
-msgid "The object catalog provides an overview of all modules and dialogs you have created in $[officename]."
-msgstr "Каталогът на обектите позволява общ преглед на всички модули и диалози, създадени от вас в $[officename]."
+msgid "' secant and angle (in degrees) and calculates the length of the hypotenuse:"
+msgstr "' катет и ъгъл в градуси и изчислява дължината на хипотенузата:"
-#: 01020200.xhp
+#: 03080102.xhp
msgctxt ""
-"01020200.xhp\n"
-"par_id3147346\n"
-"78\n"
+"03080102.xhp\n"
+"par_id3150010\n"
+"19\n"
"help.text"
-msgid "Click the <emph>Object Catalog</emph> icon <image id=\"img_id3147341\" src=\"cmd/sc_objectcatalog.png\" width=\"0.564cm\" height=\"0.564cm\"><alt id=\"alt_id3147341\">Icon</alt></image> in the Macro toolbar to display the object catalog."
-msgstr "За да видите каталога на обектите, щракнете върху иконата <emph>Каталог на обектите</emph> <image id=\"img_id3147341\" src=\"cmd/sc_objectcatalog.png\" width=\"0.564cm\" height=\"0.564cm\"><alt id=\"alt_id3147341\">Икона</alt></image> в лентата „Макрос“."
+msgid "' rounded Pi = 3.14159"
+msgstr "' Pi е приблизително 3,14159"
-#: 01020200.xhp
+#: 03080102.xhp
msgctxt ""
-"01020200.xhp\n"
-"par_id3155114\n"
-"79\n"
+"03080102.xhp\n"
+"par_id3144764\n"
+"21\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 "Диалоговият прозорец показва йерархичен списък на всички съществуващи обекти. Щракнете двукратно върху елемент от списъка, за да видите подчинените му обекти."
+msgid "d1 = InputBox$ (\"\"Enter the length of the adjacent side: \",\"Adjacent\")"
+msgstr "d1 = InputBox$(\"Въведете дължината на прилежащия катет: \", \"Прилежащ катет\")"
-#: 01020200.xhp
+#: 03080102.xhp
msgctxt ""
-"01020200.xhp\n"
-"par_id3150786\n"
-"83\n"
+"03080102.xhp\n"
+"par_id3154491\n"
+"22\n"
"help.text"
-msgid "To display a certain module in the Editor or to position the cursor in a selected SUB or FUNCTION, select the corresponding entry and click the <emph>Show</emph> icon <image id=\"img_id3149527\" src=\"basctl/res/im01.png\" width=\"0.564cm\" height=\"0.564cm\"><alt id=\"alt_id3149527\">Icon</alt></image>."
-msgstr "За да видите даден модул в редактора или да преместите курсора в избрана подпрограма от тип SUB или FUNCTION, изберете съответния елемент и щракнете върху иконата <emph>Показване</emph> icon <image id=\"img_id3149527\" src=\"basctl/res/im01.png\" width=\"0.564cm\" height=\"0.564cm\"><alt id=\"alt_id3149527\">Икона</alt></image>."
+msgid "dAngle = InputBox$ (\"Enter the angle Alpha (in degrees): \",\"Alpha\")"
+msgstr "dAngle = InputBox$(\"Въведете ъгъла в градуси: \", \"Ъгъл\")"
-#: 01020200.xhp
+#: 03080102.xhp
msgctxt ""
-"01020200.xhp\n"
-"par_id3153266\n"
-"81\n"
+"03080102.xhp\n"
+"par_id3151074\n"
+"23\n"
"help.text"
-msgid "Click the (X) icon in the title bar to close the object catalog."
-msgstr "За да затворите каталога на обектите, щракнете върху иконата „X“ в заглавната лента."
+msgid "Print \"The length of the hypothenuse is\"; (d1 / cos (dAngle * Pi / 180))"
+msgstr "Print \"Дължината на хипотенузата е \"; (d1 / Cos (dAngle * Pi / 180))"
-#: 03090405.xhp
+#: 03080103.xhp
msgctxt ""
-"03090405.xhp\n"
+"03080103.xhp\n"
"tit\n"
"help.text"
-msgid "FreeLibrary Function [Runtime]"
-msgstr "Функция FreeLibrary [динамична]"
+msgid "Sin Function [Runtime]"
+msgstr "Функция Sin [динамична]"
-#: 03090405.xhp
+#: 03080103.xhp
msgctxt ""
-"03090405.xhp\n"
-"bm_id3143270\n"
+"03080103.xhp\n"
+"bm_id3153896\n"
"help.text"
-msgid "<bookmark_value>FreeLibrary function</bookmark_value>"
-msgstr "<bookmark_value>FreeLibrary, функция</bookmark_value>"
+msgid "<bookmark_value>Sin function</bookmark_value>"
+msgstr "<bookmark_value>Sin, функция</bookmark_value>"
-#: 03090405.xhp
+#: 03080103.xhp
msgctxt ""
-"03090405.xhp\n"
-"hd_id3143270\n"
+"03080103.xhp\n"
+"hd_id3153896\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090405.xhp\" name=\"FreeLibrary Function [Runtime]\">FreeLibrary Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090405.xhp\" name=\"Функция FreeLibrary [динамична]\">Функция FreeLibrary [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03080103.xhp\" name=\"Sin Function [Runtime]\">Sin Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03080103.xhp\" name=\"Функция Sin [динамична]\">Функция Sin [динамична]</link>"
-#: 03090405.xhp
+#: 03080103.xhp
msgctxt ""
-"03090405.xhp\n"
-"par_id3147559\n"
+"03080103.xhp\n"
+"par_id3149456\n"
"2\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 "Освобождава DLL файловете, заредени от оператор Declare. Освободеният DLL файл автоматично се презарежда при извикване на някоя от функциите му. Виж също: <link href=\"text/sbasic/shared/03090403.xhp\" name=\"Declare\">Declare</link>."
+msgid "Returns the sine of an angle. The angle is specified in radians. The result lies between -1 and 1."
+msgstr "Връща синуса на ъгъл, зададен в радиани. Резултатът е между -1 и 1."
-#: 03090405.xhp
+#: 03080103.xhp
msgctxt ""
-"03090405.xhp\n"
-"hd_id3148550\n"
+"03080103.xhp\n"
+"par_id3153379\n"
"3\n"
"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
+msgid "Using the angle Alpha, the Sin 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 "Функцията Sin намира съотношението на дължините на срещулежащия катет на дадения ъгъл и хипотенузата в правоъгълен триъгълник."
-#: 03090405.xhp
+#: 03080103.xhp
msgctxt ""
-"03090405.xhp\n"
-"par_id3153361\n"
+"03080103.xhp\n"
+"par_id3148798\n"
"4\n"
"help.text"
-msgid "FreeLibrary (LibName As String)"
-msgstr "FreeLibrary (LibName As String)"
+msgid "Sin(Alpha) = side opposite the angle/hypotenuse"
+msgstr "Sin(α) = срещулежащ катет / хипотенуза"
-#: 03090405.xhp
+#: 03080103.xhp
msgctxt ""
-"03090405.xhp\n"
-"hd_id3153380\n"
+"03080103.xhp\n"
+"hd_id3147230\n"
"5\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 03090405.xhp
+#: 03080103.xhp
msgctxt ""
-"03090405.xhp\n"
-"par_id3154138\n"
+"03080103.xhp\n"
+"par_id3154909\n"
"6\n"
"help.text"
-msgid "<emph>LibName:</emph> String expression that specifies the name of the DLL."
-msgstr "<emph>LibName:</emph> низов израз – име на DLL файла."
+msgid "Sin (Number)"
+msgstr "Sin (Number)"
-#: 03090405.xhp
+#: 03080103.xhp
msgctxt ""
-"03090405.xhp\n"
-"par_id3146923\n"
+"03080103.xhp\n"
+"hd_id3156214\n"
"7\n"
"help.text"
-msgid "FreeLibrary can only release DLLs that are loaded during Basic runtime."
-msgstr "FreeLibrary може да освобождава само DLL файлове, заредени по време на изпълнението на програма на Basic."
+msgid "Return value:"
+msgstr "Връщана стойност:"
-#: 03090405.xhp
+#: 03080103.xhp
msgctxt ""
-"03090405.xhp\n"
-"hd_id3153363\n"
+"03080103.xhp\n"
+"par_id3150870\n"
"8\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "Double"
+msgstr "Double"
-#: 03103500.xhp
+#: 03080103.xhp
msgctxt ""
-"03103500.xhp\n"
-"tit\n"
+"03080103.xhp\n"
+"hd_id3155132\n"
+"9\n"
"help.text"
-msgid "Static Statement [Runtime]"
-msgstr "Оператор Static [динамичен]"
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 03103500.xhp
+#: 03080103.xhp
msgctxt ""
-"03103500.xhp\n"
-"bm_id3149798\n"
+"03080103.xhp\n"
+"par_id3145786\n"
+"10\n"
"help.text"
-msgid "<bookmark_value>Static statement</bookmark_value>"
-msgstr "<bookmark_value>Static, оператор</bookmark_value>"
+msgid "<emph>Number:</emph> Numeric expression that defines the angle in radians that you want to calculate the sine for."
+msgstr "<emph>Number:</emph> числов израз – ъгъл в радиани, чиито синус искате да намерите."
-#: 03103500.xhp
+#: 03080103.xhp
msgctxt ""
-"03103500.xhp\n"
-"hd_id3149798\n"
-"1\n"
+"03080103.xhp\n"
+"par_id3155413\n"
+"11\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03103500.xhp\" name=\"Static Statement [Runtime]\">Static Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03103500.xhp\" name=\"Оператор Static [динамичен]\">Оператор Static [динамичен]</link>"
+msgid "To convert degrees to radians, multiply degrees by Pi/180, and to convert radians to degrees, multiply radians by 180/Pi."
+msgstr "За да превърнете градусите в радиани, умножете ги по π/180. За да превърнете радианите в градуси, умножете ги по 180/π."
-#: 03103500.xhp
+#: 03080103.xhp
msgctxt ""
-"03103500.xhp\n"
-"par_id3153311\n"
-"2\n"
+"03080103.xhp\n"
+"par_id3149664\n"
+"12\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 "Декларира променлива или масив на ниво подпрограма (процедура или функция), така че стойностите на променливата или масива да се запазват след изход от подпрограмата. Важат и правилата за оператора Dim."
+msgid "grad=(radiant*180)/pi"
+msgstr "degrees = (radiant * 180) / Pi"
-#: 03103500.xhp
+#: 03080103.xhp
msgctxt ""
-"03103500.xhp\n"
-"par_id3147264\n"
-"3\n"
+"03080103.xhp\n"
+"par_id3153143\n"
+"13\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 "Операторът <emph>Static</emph> не може да се използва за дефиниране на масиви с променлива размер. Размерът на масивите трябва да е фиксиран."
+msgid "radiant=(grad*pi)/180"
+msgstr "radians = (degrees * Pi) / 180"
-#: 03103500.xhp
+#: 03080103.xhp
msgctxt ""
-"03103500.xhp\n"
-"hd_id3149657\n"
-"4\n"
+"03080103.xhp\n"
+"par_id3151112\n"
+"14\n"
"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
+msgid "Pi is approximately 3.141593."
+msgstr "Pi (π) е приблизително 3,14159."
-#: 03103500.xhp
+#: 03080103.xhp
msgctxt ""
-"03103500.xhp\n"
-"par_id3150400\n"
-"5\n"
+"03080103.xhp\n"
+"hd_id3163712\n"
+"15\n"
"help.text"
-msgid "Static VarName[(start To end)] [As VarType], VarName2[(start To end)] [As VarType], ..."
-msgstr "Static VarName[(start To end)] [As VarType], VarName2[(start To end)] [As VarType], ..."
+msgid "Example:"
+msgstr "Пример:"
-#: 03103500.xhp
+#: 03080103.xhp
msgctxt ""
-"03103500.xhp\n"
-"hd_id3148452\n"
-"6\n"
+"03080103.xhp\n"
+"par_id3149482\n"
+"16\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "' In this example, the following entry is possible for a right-angled triangle:"
+msgstr "' Този пример позволява въвеждане на срещулежащия катет"
-#: 03103500.xhp
+#: 03080103.xhp
msgctxt ""
-"03103500.xhp\n"
-"par_id3150870\n"
-"11\n"
+"03080103.xhp\n"
+"par_id3148577\n"
+"17\n"
"help.text"
-msgid "MsgBox iResult,0,\"The answer is\""
-msgstr "MsgBox iResult, 0, \"Резултатът е\""
+msgid "' The side opposite the angle and the angle (in degrees) to calculate the length of the hypotenuse:"
+msgstr "' и ъгъл в градуси, за да се изчисли дължината на хипотенузата."
-#: 03103500.xhp
+#: 03080103.xhp
msgctxt ""
-"03103500.xhp\n"
-"par_id3151115\n"
-"15\n"
+"03080103.xhp\n"
+"par_id3150011\n"
+"19\n"
"help.text"
-msgid "' Function for initialization of the static variable"
-msgstr "' Функция за инициализиране на статичната променлива"
+msgid "' Pi = 3.1415926 is a predefined variable"
+msgstr "' Pi = 3.1415926 е предварително дефинирана променлива"
-#: 03103500.xhp
+#: 03080103.xhp
msgctxt ""
-"03103500.xhp\n"
-"par_id1057161\n"
+"03080103.xhp\n"
+"par_id3145251\n"
+"22\n"
"help.text"
-msgid "Const iMinimum As Integer = 40 ' minimum return value of this function"
-msgstr "Const iMinimum As Integer = 40 ' минимален резултат на функцията"
+msgid "d1 = InputBox$ (\"Enter the length of the opposite side: \",\"Opposite Side\")"
+msgstr "d1 = InputBox$(\"Въведете дължината на срещулежащия катет: \", \"Срещулежащ катет\")"
-#: 03103500.xhp
+#: 03080103.xhp
msgctxt ""
-"03103500.xhp\n"
-"par_id580462\n"
+"03080103.xhp\n"
+"par_id3148456\n"
+"23\n"
"help.text"
-msgid "If iInit = 0 Then ' check if initialized"
-msgstr "If iInit = 0 Then ' проверка дали е инициализирана"
+msgid "dAlpha = InputBox$ (\"Enter the angle Alpha (in degrees): \",\"Alpha\")"
+msgstr "dAlpha = InputBox$(\"Въведете ъгъла в градуси: \", \"Ъгъл\")"
-#: 03090202.xhp
+#: 03080103.xhp
msgctxt ""
-"03090202.xhp\n"
+"03080103.xhp\n"
+"par_id3153877\n"
+"24\n"
+"help.text"
+msgid "Print \"The length of the hypotenuse is\"; (d1 / sin (dAlpha * Pi / 180))"
+msgstr "Print \"Дължината на хипотенузата е \"; (d1 / Sin(dAlpha * Pi / 180))"
+
+#: 03080104.xhp
+msgctxt ""
+"03080104.xhp\n"
"tit\n"
"help.text"
-msgid "For...Next Statement [Runtime]"
-msgstr "Оператор For…Next [динамичен]"
+msgid "Tan Function [Runtime]"
+msgstr "Функция Tan [динамична]"
-#: 03090202.xhp
+#: 03080104.xhp
msgctxt ""
-"03090202.xhp\n"
-"bm_id3149205\n"
+"03080104.xhp\n"
+"bm_id3148550\n"
"help.text"
-msgid "<bookmark_value>For statement</bookmark_value><bookmark_value>To statement</bookmark_value><bookmark_value>Step statement</bookmark_value><bookmark_value>Next statement</bookmark_value>"
-msgstr "<bookmark_value>For, оператор</bookmark_value><bookmark_value>To, оператор</bookmark_value><bookmark_value>Step, оператор</bookmark_value><bookmark_value>Next, оператор</bookmark_value>"
+msgid "<bookmark_value>Tan function</bookmark_value>"
+msgstr "<bookmark_value>Tan, функция</bookmark_value>"
-#: 03090202.xhp
+#: 03080104.xhp
msgctxt ""
-"03090202.xhp\n"
-"hd_id3149205\n"
+"03080104.xhp\n"
+"hd_id3148550\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090202.xhp\" name=\"For...Next Statement [Runtime]\">For...Next Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090202.xhp\" name=\"Оператор For…Next [динамичен]\">Оператор For…Next [динамичен]</link>"
+msgid "<link href=\"text/sbasic/shared/03080104.xhp\" name=\"Tan Function [Runtime]\">Tan Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03080104.xhp\" name=\"Функция Tan [динамична]\">Функция Tan [динамична]</link>"
-#: 03090202.xhp
+#: 03080104.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3143267\n"
+"03080104.xhp\n"
+"par_id3148663\n"
"2\n"
"help.text"
-msgid "Repeats the statements between the For...Next block a specified number of times."
-msgstr "Повтаря операторите в блока For…Next зададен брой пъти."
+msgid "Determines the tangent of an angle. The angle is specified in radians."
+msgstr "Намира тангенса на ъгъл, зададен в радиани."
-#: 03090202.xhp
+#: 03080104.xhp
msgctxt ""
-"03090202.xhp\n"
-"hd_id3156153\n"
+"03080104.xhp\n"
+"par_id3153379\n"
"3\n"
"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
+msgid "Using the angle Alpha, the Tan 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 "Функцията Tan изчислява съотношението между дължините на срещулежащия и прилежащия катет на дадения ъгъл в правоъгълен триъгълник."
-#: 03090202.xhp
+#: 03080104.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3148473\n"
+"03080104.xhp\n"
+"par_id3154366\n"
"4\n"
"help.text"
-msgid "For counter=start To end [Step step]"
-msgstr "For брояч = начало To край [Step стъпка]"
+msgid "Tan(Alpha) = side opposite the angle/side adjacent to angle"
+msgstr "Tan(α) = срещулежащ катет / прилежащ катет"
-#: 03090202.xhp
+#: 03080104.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3156024\n"
+"03080104.xhp\n"
+"hd_id3145174\n"
"5\n"
"help.text"
-msgid "statement block"
-msgstr "операторен блок"
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 03090202.xhp
+#: 03080104.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3146796\n"
+"03080104.xhp\n"
+"par_id3151042\n"
"6\n"
"help.text"
-msgid "[Exit For]"
-msgstr "[Exit For]"
+msgid "Tan (Number)"
+msgstr "Tan (Number)"
-#: 03090202.xhp
+#: 03080104.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3159414\n"
+"03080104.xhp\n"
+"hd_id3156214\n"
"7\n"
"help.text"
-msgid "statement block"
-msgstr "операторен блок"
+msgid "Return value:"
+msgstr "Връщана стойност:"
-#: 03090202.xhp
+#: 03080104.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3153897\n"
+"03080104.xhp\n"
+"par_id3156281\n"
"8\n"
"help.text"
-msgid "Next [counter]"
-msgstr "Next [брояч]"
+msgid "Double"
+msgstr "Double"
-#: 03090202.xhp
+#: 03080104.xhp
msgctxt ""
-"03090202.xhp\n"
-"hd_id3150400\n"
+"03080104.xhp\n"
+"hd_id3155132\n"
"9\n"
"help.text"
-msgid "Variables:"
-msgstr "Променливи:"
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 03090202.xhp
+#: 03080104.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3150358\n"
+"03080104.xhp\n"
+"par_id3145786\n"
"10\n"
"help.text"
-msgid "<emph>Counter:</emph> Loop counter initially assigned the value to the right of the equal sign (start). Only numeric variables are valid. The loop counter increases or decreases according to the variable Step until End is passed."
-msgstr "<emph>Брояч:</emph> брояч на цикъла, който в началото получава стойността вдясно от знака за равенство (начало). Допустими са само числови стойности. Броячът на цикъла се увеличава или намалява според стойността за стъпка, докато бъде премината крайната стъпка."
+msgid "<emph>Number:</emph> Any numeric expression that you want to calculate the tangent for (in radians)."
+msgstr "<emph>Number:</emph> числов израз – ъгъл в радиани, чийто тангенс искате да намерите."
-#: 03090202.xhp
+#: 03080104.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3152455\n"
+"03080104.xhp\n"
+"par_id3153728\n"
"11\n"
"help.text"
-msgid "<emph>Start:</emph> Numeric variable that defines the initial value at the beginning of the loop."
-msgstr "<emph>Начало:</emph> числова стойност, указваща началната стойност за цикъла."
+msgid "To convert degrees to radians, multiply by Pi/180. To convert radians to degrees, multiply by 180/Pi."
+msgstr "За да превърнете градусите в радиани, умножете ги по π/180. За да превърнете радианите в градуси, умножете ги по 180/π."
-#: 03090202.xhp
+#: 03080104.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3151043\n"
+"03080104.xhp\n"
+"par_id3155414\n"
"12\n"
"help.text"
-msgid "<emph>End:</emph> Numeric variable that defines the final value at the end of the loop."
-msgstr "<emph>Край:</emph> числова стойност, указваща крайната стойност за цикъла."
+msgid "degrees=(radiant*180)/Pi"
+msgstr "degrees = (radians * 180) / Pi"
-#: 03090202.xhp
+#: 03080104.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3156281\n"
+"03080104.xhp\n"
+"par_id3146975\n"
"13\n"
"help.text"
-msgid "<emph>Step:</emph> Sets the value by which to increase or decrease the loop counter. If Step is not specified, the loop counter is incremented by 1. In this case, End must be greater than Start. If you want to decrease Counter, End must be less than Start, and Step must be assigned a negative value."
-msgstr "<emph>Стъпка:</emph> указва стойността, с която да нараства или намалява броячът на цикъла. Ако не е зададена стъпка, броячът нараства с 1. В този случай крайната стойност трябва да е по-голяма от началната. Ако искате да намалявате брояча, крайната стойност трябва да е по-малка от началната, а стъпката трябва да е отрицателна."
+msgid "radiant=(degrees*Pi)/180"
+msgstr "radians = (degrees * Pi) / 180"
-#: 03090202.xhp
+#: 03080104.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3154684\n"
+"03080104.xhp\n"
+"par_id3147434\n"
"14\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 "Цикълът <emph>For…Next</emph> повтаря всички оператори в тялото си толкова пъти, колкото е указано чрез параметрите."
+msgid "Pi is approximately 3.141593."
+msgstr "Pi (π) е приблизително 3,14159."
-#: 03090202.xhp
+#: 03080104.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3147287\n"
+"03080104.xhp\n"
+"hd_id3149483\n"
"15\n"
"help.text"
-msgid "As the counter variable is decreased, $[officename] Basic checks if the end value has been reached. As soon as the counter passes the end value, the loop automatically ends."
-msgstr "При намаляване стойността на брояча $[officename] Basic проверява дали е достигната крайната стойност. Когато броячът подмине крайната стойност, цикълът завършва автоматично."
+msgid "Example:"
+msgstr "Пример:"
-#: 03090202.xhp
+#: 03080104.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3159154\n"
+"03080104.xhp\n"
+"par_id3148646\n"
"16\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 "Операторите <emph>For…Next</emph> могат да се влагат един в друг. Ако не зададете променлива след оператора <emph>Next</emph>, <emph>Next</emph> автоматично се отнася за най-близкия оператор <emph>For</emph>."
+msgid "' In this example, the following entry is possible for a right-angled triangle:"
+msgstr "' Този пример позволява въвеждане на срещулежащия катет"
-#: 03090202.xhp
+#: 03080104.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3155306\n"
+"03080104.xhp\n"
+"par_id3150012\n"
"17\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 "Ако зададете стъпка 0, операторите между <emph>For</emph> и <emph>Next</emph> ще се повтарят постоянно."
+msgid "' The side opposite the angle and the angle (in degrees) to calculate the length of the side adjacent to the angle:"
+msgstr "' и ъгъл в градуси, за да се изчисли дължината на прилежащия катет."
-#: 03090202.xhp
+#: 03080104.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3155854\n"
-"18\n"
+"03080104.xhp\n"
+"par_id3153158\n"
+"19\n"
"help.text"
-msgid "When counting down the counter variable, $[officename] Basic checks for overflow or underflow. The loop ends when Counter exceeds End (positive Step value) or is less than End (negative Step value)."
-msgstr "Когато променя стойността на променливата – брояч, $[officename] Basic проверява за препълване отгоре или отдолу. Цикълът приключва, когато броячът надхвърли крайната стойност (при положителна стъпка) или стане по-малък от нея (при отрицателна стъпка)."
+msgid "' Pi = 3.1415926 is a pre-defined variable"
+msgstr "' Pi = 3.1415926 е предварително дефинирана променлива"
-#: 03090202.xhp
+#: 03080104.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3145273\n"
-"19\n"
+"03080104.xhp\n"
+"par_id3145252\n"
+"22\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 "За да завършите цикъла безусловно, използвайте оператора <emph>Exit For</emph>. Можете да го поставите където и да е в цикъла <emph>For…Next</emph>. Можете да дефинирате условие за изход със структура <emph>If…Then</emph> както следва:"
+msgid "d1 = InputBox$ (\"Enter the length of the side opposite the angle: \",\"opposite\")"
+msgstr "d1 = InputBox$(\"Въведете дължината на срещулежащия катет: \", \"Срещулежащ катет\")"
-#: 03090202.xhp
+#: 03080104.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3153190\n"
-"20\n"
+"03080104.xhp\n"
+"par_id3149582\n"
+"23\n"
"help.text"
-msgid "For..."
-msgstr "For..."
+msgid "dAlpha = InputBox$ (\"Enter the Alpha angle (in degrees): \",\"Alpha\")"
+msgstr "dAlpha = InputBox$ (\"Въведете ъгъла в градуси: \", \"Ъгъл\")"
-#: 03090202.xhp
+#: 03080104.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3149482\n"
-"21\n"
+"03080104.xhp\n"
+"par_id3154016\n"
+"24\n"
"help.text"
-msgid "statements"
-msgstr "оператори"
+msgid "Print \"the length of the side adjacent the angle is\"; (d1 / tan (dAlpha * Pi / 180))"
+msgstr "Print \"Дължината на прилежащия катет на ъгъла е \"; (d1 / Tan(dAlpha * Pi / 180))"
-#: 03090202.xhp
+#: 03080200.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3147124\n"
-"22\n"
+"03080200.xhp\n"
+"tit\n"
"help.text"
-msgid "If condition = True Then Exit For"
-msgstr "If условие = True Then Exit For"
+msgid "Exponential and Logarithmic Functions"
+msgstr "Експоненциални и логаритмични функции"
-#: 03090202.xhp
+#: 03080200.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3153159\n"
-"23\n"
+"03080200.xhp\n"
+"hd_id3154758\n"
+"1\n"
"help.text"
-msgid "statements"
-msgstr "оператори"
+msgid "<link href=\"text/sbasic/shared/03080200.xhp\" name=\"Exponential and Logarithmic Functions\">Exponential and Logarithmic Functions</link>"
+msgstr "<link href=\"text/sbasic/shared/03080200.xhp\" name=\"Експоненциални и логаритмични функции\">Експоненциални и логаритмични функции</link>"
-#: 03090202.xhp
+#: 03080200.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3154096\n"
-"24\n"
+"03080200.xhp\n"
+"par_id3148550\n"
+"2\n"
"help.text"
-msgid "Next"
-msgstr "Напред"
+msgid "$[officename] Basic supports the following exponential and logarithmic functions."
+msgstr "$[officename] Basic поддържа следните експоненциални и логаритмични функции."
-#: 03090202.xhp
+#: 03080201.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3156286\n"
-"25\n"
+"03080201.xhp\n"
+"tit\n"
"help.text"
-msgid "Note: In nested <emph>For...Next</emph> loops, if you exit a loop unconditionally with <emph>Exit For</emph>, only one loop is exited."
-msgstr "Бележка: При вложени цикли <emph>For…Next</emph> безусловният изход <emph>Exit For</emph> напуска само един цикъл."
+msgid "Exp Function [Runtime]"
+msgstr "Функция Exp [динамична]"
-#: 03090202.xhp
+#: 03080201.xhp
msgctxt ""
-"03090202.xhp\n"
-"hd_id3148457\n"
-"26\n"
+"03080201.xhp\n"
+"bm_id3150616\n"
"help.text"
-msgid "Example"
-msgstr "Пример"
+msgid "<bookmark_value>Exp function</bookmark_value>"
+msgstr "<bookmark_value>Exp, функция</bookmark_value>"
-#: 03090202.xhp
+#: 03080201.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3151074\n"
-"27\n"
+"03080201.xhp\n"
+"hd_id3150616\n"
+"1\n"
"help.text"
-msgid "The following example uses two nested loops to sort a string array with 10 elements ( sEntry() ), that are first filled with various contents:"
-msgstr "В следващия пример са използвани два вложени цикъла, за да се сортира масив с 10 елемента (sEntry()), които първо се запълват с различни стойности:"
+msgid "<link href=\"text/sbasic/shared/03080201.xhp\" name=\"Exp Function [Runtime]\">Exp Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03080201.xhp\" name=\"Функция Exp [динамична]\">Функция Exp [динамична]</link>"
-#: 03090202.xhp
+#: 03080201.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3155767\n"
-"42\n"
+"03080201.xhp\n"
+"par_id3155555\n"
+"2\n"
"help.text"
-msgid "sEntry(0) = \"Jerry\""
-msgstr "sEntry(0) = \"Йордан\""
+msgid "Returns the base of the natural logarithm (e = 2.718282) raised to a power."
+msgstr "Връща основата на натуралния логаритъм (e = 2,718282…), повдигната на зададена степен."
-#: 03090202.xhp
+#: 03080201.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3153711\n"
-"33\n"
+"03080201.xhp\n"
+"hd_id3150984\n"
+"3\n"
"help.text"
-msgid "sEntry(1) = \"Patty\""
-msgstr "sEntry(1) = \"Петя\""
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 03090202.xhp
+#: 03080201.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3148993\n"
-"34\n"
+"03080201.xhp\n"
+"par_id3145315\n"
+"4\n"
"help.text"
-msgid "sEntry(2) = \"Kurt\""
-msgstr "sEntry(2) = \"Камен\""
+msgid "Exp (Number)"
+msgstr "Exp (Number)"
-#: 03090202.xhp
+#: 03080201.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3156382\n"
-"35\n"
+"03080201.xhp\n"
+"hd_id3154347\n"
+"5\n"
"help.text"
-msgid "sEntry(3) = \"Thomas\""
-msgstr "sEntry(3) = \"Тома\""
+msgid "Return value:"
+msgstr "Връщана стойност:"
-#: 03090202.xhp
+#: 03080201.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3155174\n"
-"36\n"
+"03080201.xhp\n"
+"par_id3149670\n"
+"6\n"
"help.text"
-msgid "sEntry(4) = \"Michael\""
-msgstr "sEntry(4) = \"Михаил\""
+msgid "Double"
+msgstr "Double"
-#: 03090202.xhp
+#: 03080201.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3166448\n"
-"37\n"
+"03080201.xhp\n"
+"hd_id3154760\n"
+"7\n"
"help.text"
-msgid "sEntry(5) = \"David\""
-msgstr "sEntry(5) = \"Деян\""
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 03090202.xhp
+#: 03080201.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3149255\n"
-"38\n"
+"03080201.xhp\n"
+"par_id3150793\n"
+"8\n"
"help.text"
-msgid "sEntry(6) = \"Cathy\""
-msgstr "sEntry(6) = \"Катя\""
+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 "<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."
-#: 03090202.xhp
+#: 03080201.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3149565\n"
-"39\n"
+"03080201.xhp\n"
+"hd_id3156280\n"
+"9\n"
"help.text"
-msgid "sEntry(7) = \"Susie\""
-msgstr "sEntry(7) = \"Силвия\""
+msgid "Example:"
+msgstr "Пример:"
-#: 03090202.xhp
+#: 03080201.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3145148\n"
-"40\n"
+"03080201.xhp\n"
+"par_id3159254\n"
+"13\n"
"help.text"
-msgid "sEntry(8) = \"Edward\""
-msgstr "sEntry(8) = \"Емил\""
+msgid "Const b2=1.345e34"
+msgstr "Const b2 = 1.345e34"
-#: 03090202.xhp
+#: 03080201.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3145229\n"
-"41\n"
+"03080201.xhp\n"
+"par_id3161832\n"
+"15\n"
"help.text"
-msgid "sEntry(9) = \"Christine\""
-msgstr "sEntry(9) = \"Христина\""
+msgid "MsgBox \"\" & dValue & chr(13) & (b1*b2) ,0,\"Multiplication by logarithm\""
+msgstr "MsgBox \"\" & dValue & Chr(13) & (b1 * b2), 0, \"Умножение чрез логаритъм\""
-#: 03020401.xhp
+#: 03080202.xhp
msgctxt ""
-"03020401.xhp\n"
+"03080202.xhp\n"
"tit\n"
"help.text"
-msgid "ChDir Statement [Runtime]"
-msgstr "Оператор ChDir [динамичен]"
+msgid "Log Function [Runtime]"
+msgstr "Функция Log [динамична]"
-#: 03020401.xhp
+#: 03080202.xhp
msgctxt ""
-"03020401.xhp\n"
-"bm_id3150178\n"
+"03080202.xhp\n"
+"bm_id3149416\n"
"help.text"
-msgid "<bookmark_value>ChDir statement</bookmark_value>"
-msgstr "<bookmark_value>ChDir, оператор</bookmark_value>"
+msgid "<bookmark_value>Log function</bookmark_value>"
+msgstr "<bookmark_value>Log, функция</bookmark_value>"
-#: 03020401.xhp
+#: 03080202.xhp
msgctxt ""
-"03020401.xhp\n"
-"hd_id3150178\n"
+"03080202.xhp\n"
+"hd_id3149416\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020401.xhp\" name=\"ChDir Statement [Runtime]\">ChDir Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03020401.xhp\" name=\"Оператор ChDir [динамичен]\">Оператор ChDir [динамичен]</link>"
+msgid "<link href=\"text/sbasic/shared/03080202.xhp\" name=\"Log Function [Runtime]\">Log Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03080202.xhp\" name=\"Функция Log [динамична]\">Функция Log [динамична]</link>"
-#: 03020401.xhp
+#: 03080202.xhp
msgctxt ""
-"03020401.xhp\n"
-"par_id3153126\n"
+"03080202.xhp\n"
+"par_id3145066\n"
"2\n"
"help.text"
-msgid "Changes the current directory or drive."
-msgstr "Сменя текущата директория или устройство."
-
-#: 03020401.xhp
-msgctxt ""
-"03020401.xhp\n"
-"par_id9783013\n"
-"help.text"
-msgid "This runtime statement currently does not work as documented. See <link href=\"http://www.openoffice.org/issues/show_bug.cgi?id=30692\">this issue</link> for more information."
-msgstr "Този оператор в момента не работи според документацията. Вижте <link href=\"http://www.openoffice.org/issues/show_bug.cgi?id=30692\">този дефект</link> за повече информация."
+msgid "Returns the natural logarithm of a number."
+msgstr "Връща натуралния логаритъм на число."
-#: 03020401.xhp
+#: 03080202.xhp
msgctxt ""
-"03020401.xhp\n"
-"hd_id3154347\n"
+"03080202.xhp\n"
+"hd_id3159414\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03020401.xhp
+#: 03080202.xhp
msgctxt ""
-"03020401.xhp\n"
-"par_id3153897\n"
+"03080202.xhp\n"
+"par_id3154760\n"
"4\n"
"help.text"
-msgid "ChDir Text As String"
-msgstr "ChDir Text As String"
+msgid "Log (Number)"
+msgstr "Log (Number)"
-#: 03020401.xhp
+#: 03080202.xhp
msgctxt ""
-"03020401.xhp\n"
-"hd_id3148664\n"
+"03080202.xhp\n"
+"hd_id3149457\n"
"5\n"
"help.text"
-msgid "Parameters:"
-msgstr "Примери:"
+msgid "Return value:"
+msgstr "Връщана стойност:"
-#: 03020401.xhp
+#: 03080202.xhp
msgctxt ""
-"03020401.xhp\n"
-"par_id3150543\n"
+"03080202.xhp\n"
+"par_id3150791\n"
"6\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression that specifies the directory path or drive."
-msgstr "<emph>Text:</emph> низов израз, задаващ пътя на директорията или устройството."
+msgid "Double"
+msgstr "Double"
-#: 03020401.xhp
+#: 03080202.xhp
msgctxt ""
-"03020401.xhp\n"
-"par_id3152598\n"
+"03080202.xhp\n"
+"hd_id3151211\n"
"7\n"
"help.text"
-msgid "If you only want to change the current drive, enter the drive letter followed by a colon."
-msgstr "Ако желаете да промените само текущото устройство, въведете буква на устройство, последвана от двоеточие."
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 03020401.xhp
+#: 03080202.xhp
msgctxt ""
-"03020401.xhp\n"
-"hd_id3151116\n"
+"03080202.xhp\n"
+"par_id3151041\n"
"8\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
-
-#: 03130000.xhp
-msgctxt ""
-"03130000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Other Commands"
-msgstr "Други команди"
-
-#: 03130000.xhp
-msgctxt ""
-"03130000.xhp\n"
-"hd_id3156027\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03130000.xhp\" name=\"Other Commands\">Other Commands</link>"
-msgstr "<link href=\"text/sbasic/shared/03130000.xhp\" name=\"Други команди\">Други команди</link>"
-
-#: 03130000.xhp
-msgctxt ""
-"03130000.xhp\n"
-"par_id3153312\n"
-"2\n"
-"help.text"
-msgid "This is a list of the functions and the statements that are not included in the other categories."
-msgstr "Това е списък на функциите и операторите, които не са включени в останалите категории."
-
-#: 03030301.xhp
-msgctxt ""
-"03030301.xhp\n"
-"tit\n"
-"help.text"
-msgid "Date Statement [Runtime]"
-msgstr "Оператор Date [динамичен]"
-
-#: 03030301.xhp
-msgctxt ""
-"03030301.xhp\n"
-"bm_id3156027\n"
-"help.text"
-msgid "<bookmark_value>Date statement</bookmark_value>"
-msgstr "<bookmark_value>Date, оператор</bookmark_value>"
+msgid "<emph>Number:</emph> Any numeric expression that you want to calculate the natural logarithm for."
+msgstr "<emph>Number:</emph> числов израз, чийто натурален логаритъм искате да изчислите."
-#: 03030301.xhp
+#: 03080202.xhp
msgctxt ""
-"03030301.xhp\n"
-"hd_id3156027\n"
-"1\n"
+"03080202.xhp\n"
+"par_id3150869\n"
+"9\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03030301.xhp\" name=\"Date Statement [Runtime]\">Date Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03030301.xhp\" name=\"Оператор Date [динамичен]\">Оператор Date [динамичен]</link>"
+msgid "The natural logarithm is the logarithm to the base e. Base e is a constant with an approximate value of 2.718282..."
+msgstr "Натуралният логаритъм е логаритъм с основа e. Това е константа с приближителна стойност 2,718282…"
-#: 03030301.xhp
+#: 03080202.xhp
msgctxt ""
-"03030301.xhp\n"
-"par_id3147291\n"
-"2\n"
+"03080202.xhp\n"
+"par_id3153968\n"
+"10\n"
"help.text"
-msgid "Returns the current system date as a string, or resets the date. The date format depends on your local system settings."
-msgstr "Връща текущата системна дата като низ или я променя. Форматът на датата зависи от системните настройки за локал."
+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 "Можете да пресмятате логаритми с всякаква основа n за всяко число x, като разделите натуралния логаритъм на x на натуралния логаритъм на n, както следва:"
-#: 03030301.xhp
+#: 03080202.xhp
msgctxt ""
-"03030301.xhp\n"
-"hd_id3148686\n"
-"3\n"
+"03080202.xhp\n"
+"par_id3145420\n"
+"11\n"
"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
+msgid "Log n(x) = Log(x) / Log(n)"
+msgstr "Log n(x) = Log(x) / Log(n)"
-#: 03030301.xhp
+#: 03080202.xhp
msgctxt ""
-"03030301.xhp\n"
-"par_id3146794\n"
-"4\n"
+"03080202.xhp\n"
+"hd_id3155131\n"
+"12\n"
"help.text"
-msgid "Date ; Date = Text As String"
-msgstr "Date ; Date = Text As String"
+msgid "Example:"
+msgstr "Пример:"
-#: 03030301.xhp
+#: 03080202.xhp
msgctxt ""
-"03030301.xhp\n"
-"hd_id3154347\n"
-"5\n"
+"03080202.xhp\n"
+"par_id3149262\n"
+"18\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "MsgBox \"\" & a & chr(13) & (b1*b2) ,0,\"Multiplication by logarithm function\""
+msgstr "MsgBox \"\" & a & Chr(13) & (b1 * b2), 0, \"Умножение чрез логаритъм\""
-#: 03030301.xhp
+#: 03080300.xhp
msgctxt ""
-"03030301.xhp\n"
-"par_id3145069\n"
-"6\n"
+"03080300.xhp\n"
+"tit\n"
"help.text"
-msgid "<emph>Text:</emph> Only required in order to reset the system date. In this case, the string expression must correspond to the date format defined in your local settings."
-msgstr "<emph>Text:</emph> необходим е само ако искате да промените системната дата. В този случай изразът със стойност низ трябва да съответства на формата, зададен в настройките за локал."
+msgid "Generating Random Numbers"
+msgstr "Генериране на случайни числа"
-#: 03030301.xhp
+#: 03080300.xhp
msgctxt ""
-"03030301.xhp\n"
-"hd_id3150793\n"
-"7\n"
+"03080300.xhp\n"
+"hd_id3143270\n"
+"1\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "<link href=\"text/sbasic/shared/03080300.xhp\" name=\"Generating Random Numbers\">Generating Random Numbers</link>"
+msgstr "<link href=\"text/sbasic/shared/03080300.xhp\" name=\"Генериране на случайни числа\">Генериране на случайни числа</link>"
-#: 03030301.xhp
+#: 03080300.xhp
msgctxt ""
-"03030301.xhp\n"
-"par_id3156424\n"
-"9\n"
+"03080300.xhp\n"
+"par_id3154347\n"
+"2\n"
"help.text"
-msgid "MsgBox \"The date is \" & Date"
-msgstr "MsgBox \"Датата е \" & Date"
+msgid "The following statements and functions generate random numbers."
+msgstr "Следващите оператори и функции генерират случайни числа."
-#: 03120304.xhp
+#: 03080301.xhp
msgctxt ""
-"03120304.xhp\n"
+"03080301.xhp\n"
"tit\n"
"help.text"
-msgid "LSet Statement [Runtime]"
-msgstr "Оператор LSet [динамичен]"
+msgid "Randomize Statement [Runtime]"
+msgstr "Оператор Randomize [динамичен]"
-#: 03120304.xhp
+#: 03080301.xhp
msgctxt ""
-"03120304.xhp\n"
-"bm_id3143268\n"
+"03080301.xhp\n"
+"bm_id3150616\n"
"help.text"
-msgid "<bookmark_value>LSet statement</bookmark_value>"
-msgstr "<bookmark_value>LSet, оператор</bookmark_value>"
+msgid "<bookmark_value>Randomize statement</bookmark_value>"
+msgstr "<bookmark_value>Randomize, оператор</bookmark_value>"
-#: 03120304.xhp
+#: 03080301.xhp
msgctxt ""
-"03120304.xhp\n"
-"hd_id3143268\n"
+"03080301.xhp\n"
+"hd_id3150616\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120304.xhp\" name=\"LSet Statement [Runtime]\">LSet Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120304.xhp\" name=\"Оператор LSet [динамичен]\">Оператор LSet [динамичен]</link>"
+msgid "<link href=\"text/sbasic/shared/03080301.xhp\" name=\"Randomize Statement [Runtime]\">Randomize Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03080301.xhp\" name=\"Оператор Randomize [динамичен]\">Оператор Randomize [динамичен]</link>"
-#: 03120304.xhp
+#: 03080301.xhp
msgctxt ""
-"03120304.xhp\n"
-"par_id3155419\n"
+"03080301.xhp\n"
+"par_id3145090\n"
"2\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 "Подравнява низ от лявата страна или копира стойност от потребителски тип в друга променлива от друг потребителски тип."
+msgid "Initializes the random-number generator."
+msgstr "Инициализира генератора на случайни числа."
-#: 03120304.xhp
+#: 03080301.xhp
msgctxt ""
-"03120304.xhp\n"
-"hd_id3145317\n"
+"03080301.xhp\n"
+"hd_id3147573\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03120304.xhp
+#: 03080301.xhp
msgctxt ""
-"03120304.xhp\n"
-"par_id3150984\n"
+"03080301.xhp\n"
+"par_id3145315\n"
"4\n"
"help.text"
-msgid "LSet Var As String = Text or LSet Var1 = Var2"
-msgstr "LSet Var As String = Text или LSet Var1 = Var2"
+msgid "Randomize [Number]"
+msgstr "Randomize (Number)"
-#: 03120304.xhp
+#: 03080301.xhp
msgctxt ""
-"03120304.xhp\n"
-"hd_id3143271\n"
+"03080301.xhp\n"
+"hd_id3152456\n"
"5\n"
"help.text"
msgid "Parameters:"
msgstr "Параметри:"
-#: 03120304.xhp
+#: 03080301.xhp
msgctxt ""
-"03120304.xhp\n"
-"par_id3145610\n"
+"03080301.xhp\n"
+"par_id3149670\n"
"6\n"
"help.text"
-msgid "<emph>Var:</emph> Any String variable that contains the string that you want align to the left."
-msgstr "<emph>Var:</emph> низова променлива, която да приеме подравнения резултат."
+msgid "<emph>Number:</emph> Any integer value that initializes the random-number generator."
+msgstr "<emph>Number:</emph> произволна целочислена стойност, с която да се инициализира генераторът на случайни числа."
-#: 03120304.xhp
+#: 03080301.xhp
msgctxt ""
-"03120304.xhp\n"
-"par_id3154346\n"
+"03080301.xhp\n"
+"hd_id3149655\n"
"7\n"
"help.text"
-msgid "<emph>Text:</emph> String that you want to align to the left of the string variable."
-msgstr "<emph>Text:</emph> низ, който искате да подравните наляво."
-
-#: 03120304.xhp
-msgctxt ""
-"03120304.xhp\n"
-"par_id3151054\n"
-"8\n"
-"help.text"
-msgid "<emph>Var1:</emph> Name of the user-defined type variable that you want to copy to."
-msgstr "<emph>Var1:</emph> име на променлива от потребителски тип, в която искате да копирате."
-
-#: 03120304.xhp
-msgctxt ""
-"03120304.xhp\n"
-"par_id3153361\n"
-"9\n"
-"help.text"
-msgid "<emph>Var2:</emph> Name of the user-defined type variable that you want to copy from."
-msgstr "<emph>Var2:</emph> име на променлива от потребителски тип, от която искате да копирате."
-
-#: 03120304.xhp
-msgctxt ""
-"03120304.xhp\n"
-"par_id3154686\n"
-"10\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 "Ако низът е по-къс от низовата променлива, <emph>LSet</emph> го подравнява наляво в нея. Останалите позиции в променливата се заместват с интервали. Ако низът е по-дълъг от променливата, се копират само най-левите му знаци до дължината на променливата. С оператора <emph>LSet</emph> можете също така да копирате стойността на променлива от потребителски тип в друга променлива от такъв тип."
-
-#: 03120304.xhp
-msgctxt ""
-"03120304.xhp\n"
-"hd_id3156282\n"
-"11\n"
-"help.text"
msgid "Example:"
msgstr "Пример:"
-#: 03120304.xhp
-msgctxt ""
-"03120304.xhp\n"
-"par_id3152940\n"
-"18\n"
-"help.text"
-msgid "' Align \"SBX\" within the 40-character reference string"
-msgstr "' Подравняваме „SBX“ в 40-знаков низ"
-
-#: 03120304.xhp
+#: 03080301.xhp
msgctxt ""
-"03120304.xhp\n"
-"par_id3148647\n"
-"19\n"
+"03080301.xhp\n"
+"par_id3147288\n"
+"14\n"
"help.text"
-msgid "' Replace asterisks with spaces"
-msgstr "' Заменяме звездичките с интервали"
+msgid "iVar = Int((10 * Rnd) ) ' Range from 0 To 9"
+msgstr "iVar = Int((10 * Rnd)) ' Диапазон от 0 до 9"
-#: 03120304.xhp
+#: 03080301.xhp
msgctxt ""
-"03120304.xhp\n"
-"par_id3151075\n"
-"30\n"
+"03080301.xhp\n"
+"par_id3148617\n"
+"22\n"
"help.text"
-msgid "' Left-align \"SBX\" within the 40-character reference string"
-msgstr "' Подравняваме наляво „SBX“ в 40-знаков низ"
+msgid "MsgBox sText,0,\"Spectral Distribution\""
+msgstr "MsgBox sText, 0, \"Спектрално разпределение\""
-#: 03030107.xhp
+#: 03080302.xhp
msgctxt ""
-"03030107.xhp\n"
+"03080302.xhp\n"
"tit\n"
"help.text"
-msgid "CDateToIso Function [Runtime]"
-msgstr "Функция CDateToIso [динамична]"
+msgid "Rnd Function [Runtime]"
+msgstr "Функция Rnd [динамична]"
-#: 03030107.xhp
+#: 03080302.xhp
msgctxt ""
-"03030107.xhp\n"
-"bm_id3150620\n"
+"03080302.xhp\n"
+"bm_id3148685\n"
"help.text"
-msgid "<bookmark_value>CdateToIso function</bookmark_value>"
-msgstr "<bookmark_value>CdateToIso, функция</bookmark_value>"
+msgid "<bookmark_value>Rnd function</bookmark_value>"
+msgstr "<bookmark_value>Rnd function</bookmark_value>"
-#: 03030107.xhp
+#: 03080302.xhp
msgctxt ""
-"03030107.xhp\n"
-"hd_id3150620\n"
+"03080302.xhp\n"
+"hd_id3148685\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03030107.xhp\" name=\"CDateToIso Function [Runtime]\">CDateToIso Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03030107.xhp\" name=\"Функция CDateToIso [динамична]\">Функция CDateToIso [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03080302.xhp\" name=\"Rnd Function [Runtime]\">Rnd Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03080302.xhp\" name=\"Функция Rnd [динамична]\">Функция Rnd [динамична]</link>"
-#: 03030107.xhp
+#: 03080302.xhp
msgctxt ""
-"03030107.xhp\n"
-"par_id3151097\n"
+"03080302.xhp\n"
+"par_id3149669\n"
"2\n"
"help.text"
-msgid "Returns the date in ISO format from a serial date number that is generated by the DateSerial or the DateValue function."
-msgstr "Връща дата във формата на ISO по зададено серийно число на дата, генерирано от функцията DateSerial или DateValue."
+msgid "Returns a random number between 0 and 1."
+msgstr "Връща случайно число между 0 и 1."
-#: 03030107.xhp
+#: 03080302.xhp
msgctxt ""
-"03030107.xhp\n"
-"hd_id3159224\n"
+"03080302.xhp\n"
+"hd_id3153897\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03030107.xhp
+#: 03080302.xhp
msgctxt ""
-"03030107.xhp\n"
-"par_id3149497\n"
+"03080302.xhp\n"
+"par_id3150543\n"
"4\n"
"help.text"
-msgid "CDateToIso(Number)"
-msgstr "CDateToIso(Number)"
+msgid "Rnd [(Expression)]"
+msgstr "Rnd [(Expression)]"
-#: 03030107.xhp
+#: 03080302.xhp
msgctxt ""
-"03030107.xhp\n"
-"hd_id3152347\n"
+"03080302.xhp\n"
+"hd_id3149655\n"
"5\n"
"help.text"
msgid "Return value:"
msgstr "Връщана стойност:"
-#: 03030107.xhp
+#: 03080302.xhp
msgctxt ""
-"03030107.xhp\n"
-"par_id3154422\n"
+"03080302.xhp\n"
+"par_id3154365\n"
"6\n"
"help.text"
-msgid "String"
-msgstr "String"
+msgid "Double"
+msgstr "Double"
-#: 03030107.xhp
+#: 03080302.xhp
msgctxt ""
-"03030107.xhp\n"
-"hd_id3147303\n"
+"03080302.xhp\n"
+"hd_id3154909\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Параметри:"
-#: 03030107.xhp
+#: 03080302.xhp
msgctxt ""
-"03030107.xhp\n"
-"par_id3145136\n"
+"03080302.xhp\n"
+"par_id3125864\n"
"8\n"
"help.text"
-msgid "<emph>Number:</emph> Integer that contains the serial date number."
-msgstr "<emph>Number:</emph> целочислена стойност – серийно число на дата."
-
-#: 03030107.xhp
-msgctxt ""
-"03030107.xhp\n"
-"hd_id3147243\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr "Пример:"
-
-#: 03030107.xhp
-msgctxt ""
-"03030107.xhp\n"
-"par_id3153126\n"
-"11\n"
-"help.text"
-msgid "MsgBox \"\" & CDateToIso(Now) ,64,\"ISO Date\""
-msgstr "MsgBox \"\" & CDateToIso(Now) , 64, \"Дата по ISO\""
-
-#: 03130500.xhp
-msgctxt ""
-"03130500.xhp\n"
-"tit\n"
-"help.text"
-msgid "Shell Function [Runtime]"
-msgstr "Функция Shell [динамична]"
-
-#: 03130500.xhp
-msgctxt ""
-"03130500.xhp\n"
-"bm_id3150040\n"
-"help.text"
-msgid "<bookmark_value>Shell function</bookmark_value>"
-msgstr "<bookmark_value>Shell, функция</bookmark_value>"
-
-#: 03130500.xhp
-msgctxt ""
-"03130500.xhp\n"
-"hd_id3150040\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03130500.xhp\" name=\"Shell Function [Runtime]\">Shell Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03130500.xhp\" name=\"Функция Shell [динамична]\">Функция Shell [динамична]</link>"
+msgid "<emph>Expression:</emph> Any numeric expression."
+msgstr "<emph>Expression:</emph> числов израз."
-#: 03130500.xhp
+#: 03080302.xhp
msgctxt ""
-"03130500.xhp\n"
-"par_id3153394\n"
-"2\n"
+"03080302.xhp\n"
+"par_id3155306\n"
+"12\n"
"help.text"
-msgid "Starts another application and defines the respective window style, if necessary."
-msgstr "Стартира друго приложение и ако е необходимо определя съответния стил на прозорец."
+msgid "<emph>Omitted:</emph> Returns the next random number in the sequence."
+msgstr "<emph>Пропуснат:</emph> връща се следващото случайно число от поредицата."
-#: 03130500.xhp
+#: 03080302.xhp
msgctxt ""
-"03130500.xhp\n"
-"hd_id3153345\n"
-"4\n"
+"03080302.xhp\n"
+"par_id3147318\n"
+"14\n"
"help.text"
-msgid "Syntax"
-msgstr "Синтаксис"
+msgid "The <emph>Rnd</emph> function only returns values ranging from 0 to 1. To generate random integers in a given range, use the formula in the following example:"
+msgstr "Функцията <emph>Rnd</emph> връща само стойности от 0 до 1. За да генерирате случайни числа даден диапазон, използвайте формулата от следния пример:"
-#: 03130500.xhp
+#: 03080302.xhp
msgctxt ""
-"03130500.xhp\n"
-"par_id3147576\n"
-"5\n"
+"03080302.xhp\n"
+"hd_id3151118\n"
+"15\n"
"help.text"
-msgid "Shell (Pathname As String[, Windowstyle As Integer][, Param As String][, bSync])"
-msgstr "Shell (Pathname As String[, Windowstyle As Integer][, Param As String][, bSync])"
+msgid "Example:"
+msgstr "Пример:"
-#: 03130500.xhp
+#: 03080302.xhp
msgctxt ""
-"03130500.xhp\n"
-"hd_id3149235\n"
-"6\n"
+"03080302.xhp\n"
+"par_id3147124\n"
+"21\n"
"help.text"
-msgid "Parameter"
-msgstr "Параметър"
+msgid "Print \"Number from 1 to 5\""
+msgstr "Print \"Число от 1 до 5\""
-#: 03130500.xhp
+#: 03080302.xhp
msgctxt ""
-"03130500.xhp\n"
-"hd_id3154306\n"
+"03080302.xhp\n"
+"par_id3154943\n"
"23\n"
"help.text"
-msgid "Pathname"
-msgstr "Pathname"
-
-#: 03130500.xhp
-msgctxt ""
-"03130500.xhp\n"
-"par_id3155419\n"
-"7\n"
-"help.text"
-msgid "Complete path and program name of the program that you want to start."
-msgstr "Пълен път и име на програмата, която да бъде стартирана."
-
-#: 03130500.xhp
-msgctxt ""
-"03130500.xhp\n"
-"hd_id3150771\n"
-"24\n"
-"help.text"
-msgid "Windowstyle"
-msgstr "Windowstyle"
+msgid "Print \"Number from 6 to 8\""
+msgstr "Print \"Число от 6 до 8\""
-#: 03130500.xhp
+#: 03080302.xhp
msgctxt ""
-"03130500.xhp\n"
-"par_id3145609\n"
-"8\n"
+"03080302.xhp\n"
+"par_id3151074\n"
+"25\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 "Незадължителен целочислен параметър – стил на прозореца, в който се изпълнява програмата. Възможни са следните стойности:"
+msgid "Print \"Greater than 8\""
+msgstr "Print \"По-голямо от 8\""
-#: 03130500.xhp
+#: 03080302.xhp
msgctxt ""
-"03130500.xhp\n"
-"par_id3148663\n"
-"25\n"
+"03080302.xhp\n"
+"par_id3155602\n"
+"27\n"
"help.text"
-msgid "0"
-msgstr "0"
+msgid "Print \"Outside range 1 to 10\""
+msgstr "Print \"Извън диапазона от 1 до 10\""
-#: 03130500.xhp
+#: 03080400.xhp
msgctxt ""
-"03130500.xhp\n"
-"par_id3153360\n"
-"10\n"
+"03080400.xhp\n"
+"tit\n"
"help.text"
-msgid "The focus is on the hidden program window."
-msgstr "Фокусът е върху скрития прозорец на програмата."
+msgid "Square Root Calculation"
+msgstr "Изчисляване на квадратен корен"
-#: 03130500.xhp
+#: 03080400.xhp
msgctxt ""
-"03130500.xhp\n"
-"par_id3154123\n"
-"26\n"
+"03080400.xhp\n"
+"hd_id3148946\n"
+"1\n"
"help.text"
-msgid "1"
-msgstr "1"
+msgid "<link href=\"text/sbasic/shared/03080400.xhp\" name=\"Square Root Calculation\">Square Root Calculation</link>"
+msgstr "<link href=\"text/sbasic/shared/03080400.xhp\" name=\"Изчисляване на квадратен корен\">Изчисляване на квадратен корен</link>"
-#: 03130500.xhp
+#: 03080400.xhp
msgctxt ""
-"03130500.xhp\n"
-"par_id3144760\n"
-"11\n"
+"03080400.xhp\n"
+"par_id3159414\n"
+"2\n"
"help.text"
-msgid "The focus is on the program window in standard size."
-msgstr "Фокусът е върху прозорец на програмата с нормален размер."
+msgid "Use this function to calculate square roots."
+msgstr "Тази функция служи за изчисляване на квадратен корен."
-#: 03130500.xhp
+#: 03080401.xhp
msgctxt ""
-"03130500.xhp\n"
-"par_id3156422\n"
-"27\n"
+"03080401.xhp\n"
+"tit\n"
"help.text"
-msgid "2"
-msgstr "2"
+msgid "Sqr Function [Runtime]"
+msgstr "Функция Sqr [динамична]"
-#: 03130500.xhp
+#: 03080401.xhp
msgctxt ""
-"03130500.xhp\n"
-"par_id3148451\n"
-"12\n"
+"03080401.xhp\n"
+"bm_id3156027\n"
"help.text"
-msgid "The focus is on the minimized program window."
-msgstr "Фокусът е върху минимизиран прозорец на програмата."
+msgid "<bookmark_value>Sqr function</bookmark_value>"
+msgstr "<bookmark_value>Sqr, функция</bookmark_value>"
-#: 03130500.xhp
+#: 03080401.xhp
msgctxt ""
-"03130500.xhp\n"
-"par_id3149561\n"
-"28\n"
+"03080401.xhp\n"
+"hd_id3156027\n"
+"1\n"
"help.text"
-msgid "3"
-msgstr "3"
+msgid "<link href=\"text/sbasic/shared/03080401.xhp\" name=\"Sqr Function [Runtime]\">Sqr Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03080401.xhp\" name=\"Функция Sqr [динамична]\">Функция Sqr [динамична]</link>"
-#: 03130500.xhp
+#: 03080401.xhp
msgctxt ""
-"03130500.xhp\n"
-"par_id3146921\n"
-"13\n"
+"03080401.xhp\n"
+"par_id3147226\n"
+"2\n"
"help.text"
-msgid "focus is on the maximized program window."
-msgstr "Докусът е върху максимизирания прозорец на програмата."
+msgid "Calculates the square root of a numeric expression."
+msgstr "Изчислява квадратния корен на числов израз."
-#: 03130500.xhp
+#: 03080401.xhp
msgctxt ""
-"03130500.xhp\n"
-"par_id3149481\n"
-"29\n"
+"03080401.xhp\n"
+"hd_id3143267\n"
+"3\n"
"help.text"
-msgid "4"
-msgstr "4"
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 03130500.xhp
+#: 03080401.xhp
msgctxt ""
-"03130500.xhp\n"
-"par_id3155854\n"
-"14\n"
+"03080401.xhp\n"
+"par_id3149415\n"
+"4\n"
"help.text"
-msgid "Standard size program window, without focus."
-msgstr "Прозорец на програмата със стандартен размер, без фокус."
+msgid "Sqr (Number)"
+msgstr "Sqr (Number)"
-#: 03130500.xhp
+#: 03080401.xhp
msgctxt ""
-"03130500.xhp\n"
-"par_id3145271\n"
-"30\n"
+"03080401.xhp\n"
+"hd_id3156023\n"
+"5\n"
"help.text"
-msgid "6"
-msgstr "6"
+msgid "Return value:"
+msgstr "Връщана стойност:"
-#: 03130500.xhp
+#: 03080401.xhp
msgctxt ""
-"03130500.xhp\n"
-"par_id3152938\n"
-"15\n"
+"03080401.xhp\n"
+"par_id3156343\n"
+"6\n"
"help.text"
-msgid "Minimized program window, focus remains on the active window."
-msgstr "Минимизиран прозорец на програмата, фокусът остава в текущия прозорец."
+msgid "Double"
+msgstr "Double"
-#: 03130500.xhp
+#: 03080401.xhp
msgctxt ""
-"03130500.xhp\n"
-"par_id3146119\n"
-"31\n"
+"03080401.xhp\n"
+"hd_id3147265\n"
+"7\n"
"help.text"
-msgid "10"
-msgstr "10"
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 03130500.xhp
+#: 03080401.xhp
msgctxt ""
-"03130500.xhp\n"
-"par_id3151112\n"
-"16\n"
+"03080401.xhp\n"
+"par_id3149457\n"
+"8\n"
"help.text"
-msgid "Full-screen display."
-msgstr "Показване върху целия екран."
+msgid "<emph>Number:</emph> Any numeric expression that you want to calculate the square root for."
+msgstr "<emph>Number:</emph> числов израз, чийто квадратен корен искате да намерите."
-#: 03130500.xhp
+#: 03080401.xhp
msgctxt ""
-"03130500.xhp\n"
-"hd_id3150419\n"
-"33\n"
+"03080401.xhp\n"
+"par_id3154365\n"
+"9\n"
"help.text"
-msgid "Param"
-msgstr "Param"
+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 "Квадратният корен е число, което, умножено по себе си, дава друго число, например квадратният корен на 36 е 6."
-#: 03130500.xhp
+#: 03080401.xhp
msgctxt ""
-"03130500.xhp\n"
-"par_id3149412\n"
-"17\n"
+"03080401.xhp\n"
+"hd_id3153192\n"
+"10\n"
"help.text"
-msgid "Any string expression that specifies the command line that want to pass."
-msgstr "Израз със стойност низ, съдържащ командния ред за програмата."
+msgid "Example:"
+msgstr "Пример:"
-#: 03130500.xhp
+#: 03080500.xhp
msgctxt ""
-"03130500.xhp\n"
-"hd_id3148456\n"
-"32\n"
+"03080500.xhp\n"
+"tit\n"
"help.text"
-msgid "bSync"
-msgstr "bSync"
+msgid "Integers"
+msgstr "Цели числа"
-#: 03130500.xhp
+#: 03080500.xhp
msgctxt ""
-"03130500.xhp\n"
-"par_id3154096\n"
-"18\n"
+"03080500.xhp\n"
+"hd_id3153345\n"
+"1\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 "Ако тази стойност е <emph>True</emph>, командата<emph>Shell</emph> и всички задачи на $[officename] ще чакат завършването на процеса. Ако стойността е <emph>False</emph>, управлението се връща директно. Подразбираната стойност е <emph>False</emph>."
+msgid "<link href=\"text/sbasic/shared/03080500.xhp\" name=\"Integers\">Integers</link>"
+msgstr "<link href=\"text/sbasic/shared/03080500.xhp\" name=\"Цели числа\">Цели числа</link>"
-#: 03130500.xhp
+#: 03080500.xhp
msgctxt ""
-"03130500.xhp\n"
-"hd_id3154270\n"
-"19\n"
+"03080500.xhp\n"
+"par_id3156152\n"
+"2\n"
"help.text"
-msgid "Example"
-msgstr "Пример"
+msgid "The following functions round values to integers."
+msgstr "Следващите функции закръгляват дробни числа до цели."
-#: 03131300.xhp
+#: 03080501.xhp
msgctxt ""
-"03131300.xhp\n"
+"03080501.xhp\n"
"tit\n"
"help.text"
-msgid "TwipsPerPixelX Function [Runtime]"
-msgstr "Функция TwipsPerPixelX [динамична]"
+msgid "Fix Function [Runtime]"
+msgstr "Функция Fix [динамична]"
-#: 03131300.xhp
+#: 03080501.xhp
msgctxt ""
-"03131300.xhp\n"
-"bm_id3153539\n"
+"03080501.xhp\n"
+"bm_id3159201\n"
"help.text"
-msgid "<bookmark_value>TwipsPerPixelX function</bookmark_value>"
-msgstr "<bookmark_value>TwipsPerPixelX, функция</bookmark_value>"
+msgid "<bookmark_value>Fix function</bookmark_value>"
+msgstr "<bookmark_value>Fix, функция</bookmark_value>"
-#: 03131300.xhp
+#: 03080501.xhp
msgctxt ""
-"03131300.xhp\n"
-"hd_id3153539\n"
+"03080501.xhp\n"
+"hd_id3159201\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03131300.xhp\" name=\"TwipsPerPixelX Function [Runtime]\">TwipsPerPixelX Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03131300.xhp\" name=\"Функция TwipsPerPixelX [динамична]\">Функция TwipsPerPixelX [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03080501.xhp\" name=\"Fix Function [Runtime]\">Fix Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03080501.xhp\" name=\"Функция Fix [динамична]\">Функция Fix [динамична]</link>"
-#: 03131300.xhp
+#: 03080501.xhp
msgctxt ""
-"03131300.xhp\n"
-"par_id3153394\n"
+"03080501.xhp\n"
+"par_id3149346\n"
"2\n"
"help.text"
-msgid "Returns the number of twips that represent the width of a pixel."
-msgstr "Връща броя туипове, съответстващ на ширината на един пиксел."
+msgid "Returns the integer value of a numeric expression by removing the fractional part of the number."
+msgstr "Връща цялата част на от стойността на числов израз, премахвайки дробната част."
-#: 03131300.xhp
+#: 03080501.xhp
msgctxt ""
-"03131300.xhp\n"
-"hd_id3153527\n"
+"03080501.xhp\n"
+"hd_id3155419\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03131300.xhp
+#: 03080501.xhp
msgctxt ""
-"03131300.xhp\n"
-"par_id3151110\n"
+"03080501.xhp\n"
+"par_id3156152\n"
"4\n"
"help.text"
-msgid "n = TwipsPerPixelX"
-msgstr "n = TwipsPerPixelX"
+msgid "Fix (Expression)"
+msgstr "Fix (Expression)"
-#: 03131300.xhp
+#: 03080501.xhp
msgctxt ""
-"03131300.xhp\n"
-"hd_id3150669\n"
+"03080501.xhp\n"
+"hd_id3154923\n"
"5\n"
"help.text"
msgid "Return value:"
msgstr "Връщана стойност:"
-#: 03131300.xhp
+#: 03080501.xhp
msgctxt ""
-"03131300.xhp\n"
-"par_id3150503\n"
+"03080501.xhp\n"
+"par_id3148947\n"
"6\n"
"help.text"
-msgid "Integer"
-msgstr "Integer"
+msgid "Double"
+msgstr "Double"
-#: 03131300.xhp
+#: 03080501.xhp
msgctxt ""
-"03131300.xhp\n"
-"hd_id3159176\n"
+"03080501.xhp\n"
+"hd_id3154760\n"
"7\n"
"help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 03080501.xhp
+msgctxt ""
+"03080501.xhp\n"
+"par_id3149457\n"
+"8\n"
+"help.text"
+msgid "<emph>Expression:</emph> Numeric expression that you want to return the integer value for."
+msgstr "<emph>Expression:</emph> числов израз, чиято цяла част искате да намерите."
+
+#: 03080501.xhp
+msgctxt ""
+"03080501.xhp\n"
+"hd_id3150447\n"
+"9\n"
+"help.text"
msgid "Example:"
msgstr "Пример:"
-#: 03131300.xhp
+#: 03080501.xhp
msgctxt ""
-"03131300.xhp\n"
-"par_id3153061\n"
-"9\n"
+"03080501.xhp\n"
+"par_id3156214\n"
+"11\n"
"help.text"
-msgid "MsgBox \"\" & TwipsPerPixelX() & \" Twips * \" & TwipsPerPixelY() & \" Twips\",0,\"Pixel size\""
-msgstr "MsgBox \"\" & TwipsPerPixelX() & \" туипа * \" & TwipsPerPixelY() & \" туипа\", 0, \"Размер на пиксела\""
+msgid "Print Fix(3.14159) ' returns 3."
+msgstr "Print Fix(3.14159) ' връща 3."
-#: 03100500.xhp
+#: 03080501.xhp
msgctxt ""
-"03100500.xhp\n"
+"03080501.xhp\n"
+"par_id3154217\n"
+"12\n"
+"help.text"
+msgid "Print Fix(0) ' returns 0."
+msgstr "Print Fix(0) ' връща 0."
+
+#: 03080501.xhp
+msgctxt ""
+"03080501.xhp\n"
+"par_id3145786\n"
+"13\n"
+"help.text"
+msgid "Print Fix(-3.14159) ' returns -3."
+msgstr "Print Fix(-3.14159) ' връща -3."
+
+#: 03080502.xhp
+msgctxt ""
+"03080502.xhp\n"
"tit\n"
"help.text"
-msgid "CInt Function [Runtime]"
-msgstr "Функция CInt [динамична]"
+msgid "Int Function [Runtime]"
+msgstr "Функция Int [динамична]"
-#: 03100500.xhp
+#: 03080502.xhp
msgctxt ""
-"03100500.xhp\n"
-"bm_id3149346\n"
+"03080502.xhp\n"
+"bm_id3153345\n"
"help.text"
-msgid "<bookmark_value>CInt function</bookmark_value>"
-msgstr "<bookmark_value>CInt, функция</bookmark_value>"
+msgid "<bookmark_value>Int function</bookmark_value>"
+msgstr "<bookmark_value>Int, функция</bookmark_value>"
-#: 03100500.xhp
+#: 03080502.xhp
msgctxt ""
-"03100500.xhp\n"
-"hd_id3149346\n"
+"03080502.xhp\n"
+"hd_id3153345\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03100500.xhp\" name=\"CInt Function [Runtime]\">CInt Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03100500.xhp\" name=\"Функция CInt [динамична]\">Функция CInt [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03080502.xhp\" name=\"Int Function [Runtime]\">Int Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03080502.xhp\" name=\"Функция Int [динамична]\">Функция Int [динамична]</link>"
-#: 03100500.xhp
+#: 03080502.xhp
msgctxt ""
-"03100500.xhp\n"
-"par_id3155419\n"
+"03080502.xhp\n"
+"par_id3155420\n"
"2\n"
"help.text"
-msgid "Converts any string or numeric expression to an integer."
-msgstr "Преобразува низ или число в стойност от типа Integer."
+msgid "Returns the integer portion of a number."
+msgstr "Връща цялата част на число."
-#: 03100500.xhp
+#: 03080502.xhp
msgctxt ""
-"03100500.xhp\n"
-"hd_id3147573\n"
+"03080502.xhp\n"
+"hd_id3147559\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03100500.xhp
+#: 03080502.xhp
msgctxt ""
-"03100500.xhp\n"
-"par_id3154142\n"
+"03080502.xhp\n"
+"par_id3146795\n"
"4\n"
"help.text"
-msgid "CInt (Expression)"
-msgstr "CInt (Expression)"
+msgid "Int (Number)"
+msgstr "Int (Number)"
-#: 03100500.xhp
+#: 03080502.xhp
msgctxt ""
-"03100500.xhp\n"
-"hd_id3147531\n"
+"03080502.xhp\n"
+"hd_id3149670\n"
"5\n"
"help.text"
msgid "Return value:"
msgstr "Връщана стойност:"
-#: 03100500.xhp
+#: 03080502.xhp
msgctxt ""
-"03100500.xhp\n"
-"par_id3147560\n"
+"03080502.xhp\n"
+"par_id3150400\n"
"6\n"
"help.text"
-msgid "Integer"
-msgstr "Integer"
+msgid "Double"
+msgstr "Double"
-#: 03100500.xhp
+#: 03080502.xhp
msgctxt ""
-"03100500.xhp\n"
-"hd_id3145069\n"
+"03080502.xhp\n"
+"hd_id3149656\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Параметри:"
-#: 03100500.xhp
+#: 03080502.xhp
msgctxt ""
-"03100500.xhp\n"
-"par_id3159414\n"
+"03080502.xhp\n"
+"par_id3148797\n"
"8\n"
"help.text"
-msgid "<emph>Expression:</emph> Any numeric expression that you want to convert. If the <emph>Expression</emph> exceeds the value range between -32768 and 32767, $[officename] Basic reports an overflow error. To convert a string expression, the number must be entered as normal text (\"123.5\") using the default number format of your operating system."
-msgstr "<emph>Expression:</emph> низов или числов израз, който да бъде преобразуван. Ако стойността на <emph>Expression</emph> е извън диапазона -32768…32767, $[officename] Basic докладва грешка – препълване. За да преобразувате низов израз, числото трябва да е въведено като обикновен текст (\"123.5\") с подразбирания формат за числа на операционната система."
+msgid "<emph>Number:</emph> Any valid numeric expression."
+msgstr "<emph>Number:</emph> произволен валиден числов израз."
-#: 03100500.xhp
+#: 03080502.xhp
msgctxt ""
-"03100500.xhp\n"
-"par_id3150358\n"
+"03080502.xhp\n"
+"hd_id3148672\n"
"9\n"
"help.text"
-msgid "This function always rounds the fractional part of a number to the nearest integer."
-msgstr "Тази функция винаги закръглява числата с дробна част към най-близкото цяло число."
-
-#: 03100500.xhp
-msgctxt ""
-"03100500.xhp\n"
-"hd_id3145419\n"
-"10\n"
-"help.text"
msgid "Example:"
msgstr "Пример:"
-#: 03030110.xhp
+#: 03080502.xhp
msgctxt ""
-"03030110.xhp\n"
-"tit\n"
+"03080502.xhp\n"
+"par_id3125864\n"
+"11\n"
"help.text"
-msgid "DateAdd Function [Runtime]"
-msgstr "Функция DateAdd [динамична]"
+msgid "Print Int(3.99) ' returns the value 3"
+msgstr "Print Int(3.99) ' връща стойност 3"
-#: 03030110.xhp
+#: 03080502.xhp
msgctxt ""
-"03030110.xhp\n"
-"bm_id6269417\n"
+"03080502.xhp\n"
+"par_id3145787\n"
+"12\n"
"help.text"
-msgid "<bookmark_value>DateAdd function</bookmark_value>"
-msgstr "<bookmark_value>DateAdd, функция</bookmark_value>"
+msgid "Print Int(0) ' returns the value 0"
+msgstr "Print Int(0) ' връща стойност 0"
-#: 03030110.xhp
+#: 03080502.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN10548\n"
+"03080502.xhp\n"
+"par_id3153143\n"
+"13\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03030110.xhp\">DateAdd Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03030110.xhp\">Функция DateAdd [динамична]</link>"
+msgid "Print Int(-3.14159) ' returns the value -4"
+msgstr "Print Int(-3.14159) ' връща стойност -4"
-#: 03030110.xhp
+#: 03080600.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN10558\n"
+"03080600.xhp\n"
+"tit\n"
"help.text"
-msgid "Adds a date interval to a given date a number of times and returns the resulting date."
-msgstr "Добавя период към дадена дата определен брой пъти и връща получената дата."
+msgid "Absolute Values"
+msgstr "Абсолютни стойности"
-#: 03030110.xhp
+#: 03080600.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN1055B\n"
+"03080600.xhp\n"
+"hd_id3146958\n"
+"1\n"
"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
+msgid "<link href=\"text/sbasic/shared/03080600.xhp\" name=\"Absolute Values\">Absolute Values</link>"
+msgstr "<link href=\"text/sbasic/shared/03080600.xhp\" name=\"Абсолютни стойности\">Абсолютни стойности</link>"
-#: 03030110.xhp
+#: 03080600.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN1055F\n"
+"03080600.xhp\n"
+"par_id3150771\n"
+"2\n"
"help.text"
-msgid "DateAdd (Add, Count, Date)"
-msgstr "DateAdd (Add, Count, Date)"
+msgid "This function returns absolute values."
+msgstr "функцията връща абсолютни стойности."
-#: 03030110.xhp
+#: 03080601.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN1061E\n"
+"03080601.xhp\n"
+"tit\n"
"help.text"
-msgid "Return value:"
-msgstr "Връщана стойност:"
+msgid "Abs Function [Runtime]"
+msgstr "Функция Abs [динамична]"
-#: 03030110.xhp
+#: 03080601.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN10622\n"
+"03080601.xhp\n"
+"bm_id3159201\n"
"help.text"
-msgid "A Variant containing a date."
-msgstr "Стойност от тип Variant, съдържаща дата."
+msgid "<bookmark_value>Abs function</bookmark_value>"
+msgstr "<bookmark_value>Abs function</bookmark_value>"
-#: 03030110.xhp
+#: 03080601.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN10625\n"
+"03080601.xhp\n"
+"hd_id3159201\n"
+"1\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "<link href=\"text/sbasic/shared/03080601.xhp\" name=\"Abs Function [Runtime]\">Abs Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03080601.xhp\" name=\"Функция Abs [динамична]\">Функция Abs [динамична]</link>"
-#: 03030110.xhp
+#: 03080601.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN10629\n"
+"03080601.xhp\n"
+"par_id3153394\n"
+"2\n"
"help.text"
-msgid "Add - A string expression from the following table, specifying the date interval."
-msgstr "<emph>Add:</emph> низов израз със стойност от долната таблица, който задава периода."
+msgid "Returns the absolute value of a numeric expression."
+msgstr "Връща абсолютната стойност на числов израз."
-#: 03030110.xhp
+#: 03080601.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN10636\n"
+"03080601.xhp\n"
+"hd_id3149233\n"
+"3\n"
"help.text"
-msgid "Add (string value)"
-msgstr "Add (стойност – низ)"
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 03030110.xhp
+#: 03080601.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN1063C\n"
+"03080601.xhp\n"
+"par_id3147573\n"
+"4\n"
"help.text"
-msgid "Explanation"
-msgstr "Обяснение"
+msgid "Abs (Number)"
+msgstr "Abs (Number)"
-#: 03030110.xhp
+#: 03080601.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN10643\n"
+"03080601.xhp\n"
+"hd_id3156152\n"
+"5\n"
"help.text"
-msgid "yyyy"
-msgstr "yyyy"
+msgid "Return value:"
+msgstr "Връщана стойност:"
-#: 03030110.xhp
+#: 03080601.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN10649\n"
+"03080601.xhp\n"
+"par_id3149670\n"
+"6\n"
"help.text"
-msgid "Year"
-msgstr "Година"
+msgid "Double"
+msgstr "Double"
-#: 03030110.xhp
+#: 03080601.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN10650\n"
+"03080601.xhp\n"
+"hd_id3154924\n"
+"7\n"
"help.text"
-msgid "q"
-msgstr "q"
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 03030110.xhp
+#: 03080601.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN10656\n"
+"03080601.xhp\n"
+"par_id3154347\n"
+"8\n"
"help.text"
-msgid "Quarter"
-msgstr "Тримесечие"
+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 "<emph>Number:</emph> числов израз, чиято абсолютна стойност искате да намерите. Положителните числа и 0 не се променят, а отрицателните се превръщат в положителни."
-#: 03030110.xhp
+#: 03080601.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN1065D\n"
+"03080601.xhp\n"
+"par_id3153381\n"
+"9\n"
"help.text"
-msgid "m"
-msgstr "m"
+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 "В следващия пример функцията Abs се използва за изчисляване на разликата между двете стойности. Редът на въвеждането не е от значение."
-#: 03030110.xhp
+#: 03080601.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN10663\n"
+"03080601.xhp\n"
+"hd_id3148451\n"
+"10\n"
"help.text"
-msgid "Month"
-msgstr "Месец"
+msgid "Example:"
+msgstr "Пример:"
-#: 03030110.xhp
+#: 03080601.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN1066A\n"
+"03080601.xhp\n"
+"par_id3145786\n"
+"14\n"
"help.text"
-msgid "y"
-msgstr "y"
+msgid "siW1 = Int(InputBox$ (\"Please enter the first amount\",\"Value Input\"))"
+msgstr "siW1 = Int(InputBox$ (\"Моля, въведете първото количество\",\"Входна стойност\"))"
-#: 03030110.xhp
+#: 03080601.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN10670\n"
+"03080601.xhp\n"
+"par_id3149561\n"
+"15\n"
"help.text"
-msgid "Day of year"
-msgstr "Ден от годината"
+msgid "siW2 = Int(InputBox$ (\"Please enter the second amount\",\"Value Input\"))"
+msgstr "siW2 = Int(InputBox$ (\"Моля, въведете второто количество\",\"Входна стойност\"))"
-#: 03030110.xhp
+#: 03080601.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN10677\n"
+"03080601.xhp\n"
+"par_id3145750\n"
+"16\n"
"help.text"
-msgid "w"
-msgstr "w"
+msgid "Print \"The difference is \"; Abs(siW1 - siW2)"
+msgstr "Print \"Разликата е \"; Abs(siW1 - siW2)"
-#: 03030110.xhp
+#: 03080700.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN1067D\n"
+"03080700.xhp\n"
+"tit\n"
"help.text"
-msgid "Weekday"
-msgstr "Ден от седмицата"
+msgid "Expression Signs"
+msgstr "Знаци на стойности"
-#: 03030110.xhp
+#: 03080700.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN10684\n"
+"03080700.xhp\n"
+"hd_id3150702\n"
+"1\n"
"help.text"
-msgid "ww"
-msgstr "ww"
+msgid "<link href=\"text/sbasic/shared/03080700.xhp\" name=\"Expression Signs\">Expression Signs</link>"
+msgstr "<link href=\"text/sbasic/shared/03080700.xhp\" name=\"Знаци на стойности\">Знаци на стойности</link>"
-#: 03030110.xhp
+#: 03080700.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN1068A\n"
+"03080700.xhp\n"
+"par_id3148668\n"
+"2\n"
"help.text"
-msgid "Week of year"
-msgstr "Седмица от годината"
+msgid "This function returns the algebraic sign of a numeric expression."
+msgstr "Тази функция връща алгебричния знак на стойността на числов израз."
-#: 03030110.xhp
+#: 03080701.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN10691\n"
+"03080701.xhp\n"
+"tit\n"
"help.text"
-msgid "d"
-msgstr "d"
+msgid "Sgn Function [Runtime]"
+msgstr "Функция Sgn [динамична]"
-#: 03030110.xhp
+#: 03080701.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN10697\n"
+"03080701.xhp\n"
+"bm_id3148474\n"
"help.text"
-msgid "Day"
-msgstr "Ден"
+msgid "<bookmark_value>Sgn function</bookmark_value>"
+msgstr "<bookmark_value>Sgn, функция</bookmark_value>"
-#: 03030110.xhp
+#: 03080701.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN1069E\n"
+"03080701.xhp\n"
+"hd_id3148474\n"
+"1\n"
"help.text"
-msgid "h"
-msgstr "h"
+msgid "<link href=\"text/sbasic/shared/03080701.xhp\" name=\"Sgn Function [Runtime]\">Sgn Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03080701.xhp\" name=\"Функция Sgn [динамична]\">Функция Sgn [динамична]</link>"
-#: 03030110.xhp
+#: 03080701.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN106A4\n"
+"03080701.xhp\n"
+"par_id3148686\n"
+"2\n"
"help.text"
-msgid "Hour"
-msgstr "Час"
+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 "Връща цяло число между -1 и 1, което показва дали подаденото на функцията число е положително, отрицателно или нула."
-#: 03030110.xhp
+#: 03080701.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN106AB\n"
+"03080701.xhp\n"
+"hd_id3156023\n"
+"3\n"
"help.text"
-msgid "n"
-msgstr "n"
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 03030110.xhp
+#: 03080701.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN106B1\n"
+"03080701.xhp\n"
+"par_id3153897\n"
+"4\n"
"help.text"
-msgid "Minute"
-msgstr "Минута"
+msgid "Sgn (Number)"
+msgstr "Sgn (Number)"
-#: 03030110.xhp
+#: 03080701.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN106B8\n"
+"03080701.xhp\n"
+"hd_id3145069\n"
+"5\n"
"help.text"
-msgid "s"
-msgstr "s"
+msgid "Return value:"
+msgstr "Връщана стойност:"
-#: 03030110.xhp
+#: 03080701.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN106BE\n"
+"03080701.xhp\n"
+"par_id3150359\n"
+"6\n"
"help.text"
-msgid "Second"
-msgstr "Секунда"
+msgid "Integer"
+msgstr "Integer"
-#: 03030110.xhp
+#: 03080701.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN106C1\n"
+"03080701.xhp\n"
+"hd_id3150543\n"
+"7\n"
"help.text"
-msgid "Count - A numerical expression specifying how often the Add interval will be added (Count is positive) or subtracted (Count is negative)."
-msgstr "<emph>Count:</emph> числов израз, указващ колко пъти да бъде добавен (Count > 0) или изваден (Count < 0) периодът от параметъра Add."
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 03030110.xhp
+#: 03080701.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN106C4\n"
+"03080701.xhp\n"
+"par_id3154365\n"
+"8\n"
"help.text"
-msgid "Date - A given date or the name of a Variant variable containing a date. The Add value will be added Count times to this value."
-msgstr "<emph>Date:</emph> дата или име на променлива от тип Variant, съдържаща дата. Стойността от Add ще бъде добавена Count на брой пъти към тази стойност."
+msgid "<emph>Number:</emph> Numeric expression that determines the value that is returned by the function."
+msgstr "<emph>Number:</emph> числов израз, на който се базира резултатът от функцията."
-#: 03030110.xhp
+#: 03080701.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN106C7\n"
+"03080701.xhp\n"
+"par_id3150767\n"
+"9\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "NumExpression"
+msgstr "Number"
-#: 03101100.xhp
+#: 03080701.xhp
msgctxt ""
-"03101100.xhp\n"
-"tit\n"
+"03080701.xhp\n"
+"par_id3150441\n"
+"10\n"
"help.text"
-msgid "DefBool Statement [Runtime]"
-msgstr "Оператор DefBool [динамичен]"
+msgid "Return value"
+msgstr "Връщана стойност:"
-#: 03101100.xhp
+#: 03080701.xhp
msgctxt ""
-"03101100.xhp\n"
-"bm_id3145759\n"
+"03080701.xhp\n"
+"par_id3161833\n"
+"11\n"
"help.text"
-msgid "<bookmark_value>DefBool statement</bookmark_value>"
-msgstr "<bookmark_value>DefBool, оператор</bookmark_value>"
+msgid "negative"
+msgstr "отрицателно"
-#: 03101100.xhp
+#: 03080701.xhp
msgctxt ""
-"03101100.xhp\n"
-"hd_id3145759\n"
-"1\n"
+"03080701.xhp\n"
+"par_id3155306\n"
+"12\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03101100.xhp\" name=\"DefBool Statement [Runtime]\">DefBool Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03101100.xhp\" name=\"Оператор DefBool [динамичен]\">Оператор DefBool [динамичен]</link>"
+msgid "Sgn returns -1."
+msgstr "Sgn връща -1."
-#: 03101100.xhp
+#: 03080701.xhp
msgctxt ""
-"03101100.xhp\n"
-"par_id3153089\n"
-"2\n"
+"03080701.xhp\n"
+"par_id3145271\n"
+"13\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 "Операторът DefBool установява подразбиран тип данни според диапазон от букви в случай, че не е зададена ключова дума или знак за деклариране на тип."
+msgid "0"
+msgstr ""
-#: 03101100.xhp
+#: 03080701.xhp
msgctxt ""
-"03101100.xhp\n"
-"hd_id3149495\n"
-"3\n"
+"03080701.xhp\n"
+"par_id3146119\n"
+"14\n"
"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
+msgid "Sgn returns 0."
+msgstr "Sgn връща 0."
-#: 03101100.xhp
+#: 03080701.xhp
msgctxt ""
-"03101100.xhp\n"
-"par_id3150682\n"
-"4\n"
+"03080701.xhp\n"
+"par_id3153139\n"
+"15\n"
"help.text"
-msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
-msgstr "Defxxx Characterrange1[, Characterrange2[,...]]"
+msgid "positive"
+msgstr "положително"
-#: 03101100.xhp
+#: 03080701.xhp
msgctxt ""
-"03101100.xhp\n"
-"hd_id3159201\n"
-"5\n"
+"03080701.xhp\n"
+"par_id3154319\n"
+"16\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "Sgn returns 1."
+msgstr "Sgn връща 1."
-#: 03101100.xhp
+#: 03080701.xhp
msgctxt ""
-"03101100.xhp\n"
-"par_id3147226\n"
-"6\n"
+"03080701.xhp\n"
+"hd_id3152576\n"
+"17\n"
"help.text"
-msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set the default data type for."
-msgstr "<emph>Characterrange:</emph> букви, определящи диапазона от променливи, за които искате да зададете подразбиран тип данни."
+msgid "Example:"
+msgstr "Пример:"
-#: 03101100.xhp
+#: 03080701.xhp
msgctxt ""
-"03101100.xhp\n"
-"par_id3149178\n"
-"7\n"
+"03080701.xhp\n"
+"par_id3155416\n"
+"19\n"
"help.text"
-msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
-msgstr "<emph>xxx:</emph> ключова дума, дефинираща подразбирания тип данни:"
+msgid "Print sgn(-10) ' returns -1"
+msgstr "Print sgn(-10) ' връща -1"
-#: 03101100.xhp
+#: 03080701.xhp
msgctxt ""
-"03101100.xhp\n"
-"par_id3150669\n"
-"8\n"
+"03080701.xhp\n"
+"par_id3154096\n"
+"20\n"
"help.text"
-msgid "<emph>Keyword: </emph>Default variable type"
-msgstr "<emph>Ключова дума:</emph> Подразбиран тип данни"
+msgid "Print sgn(0) ' returns 0"
+msgstr "Print sgn(0) ' връща 0"
-#: 03101100.xhp
+#: 03080701.xhp
msgctxt ""
-"03101100.xhp\n"
-"par_id3149233\n"
-"9\n"
+"03080701.xhp\n"
+"par_id3148457\n"
+"21\n"
"help.text"
-msgid "<emph>DefBool:</emph> Boolean"
-msgstr "<emph>DefBool:</emph> Boolean"
+msgid "Print sgn(10) ' returns 1"
+msgstr "Print sgn(10) ' връща 1"
-#: 03101100.xhp
+#: 03080800.xhp
msgctxt ""
-"03101100.xhp\n"
-"hd_id3149762\n"
-"10\n"
+"03080800.xhp\n"
+"tit\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "Converting Numbers"
+msgstr "Преобразуване на числа"
-#: 03101100.xhp
+#: 03080800.xhp
msgctxt ""
-"03101100.xhp\n"
-"par_id3156152\n"
-"12\n"
+"03080800.xhp\n"
+"hd_id3145315\n"
+"1\n"
"help.text"
-msgid "' Prefix definition for variable types:"
-msgstr "' Дефиниране с префикс за променливи от даден тип:"
+msgid "<link href=\"text/sbasic/shared/03080800.xhp\" name=\"Converting Numbers\">Converting Numbers</link>"
+msgstr "<link href=\"text/sbasic/shared/03080800.xhp\" name=\"Преобразуване на числа\">Преобразуване на числа</link>"
-#: 03101100.xhp
+#: 03080800.xhp
msgctxt ""
-"03101100.xhp\n"
-"par_id3151381\n"
-"22\n"
+"03080800.xhp\n"
+"par_id3154760\n"
+"2\n"
"help.text"
-msgid "bOK=TRUE ' bOK is an implicit boolean variable"
-msgstr "bOK = True ' bOK е неявна променлива от тип Boolean"
+msgid "The following functions convert numbers from one number format to another."
+msgstr "Следващите функции преобразуват числа от една бройна система в друга."
-#: 03020414.xhp
+#: 03080801.xhp
msgctxt ""
-"03020414.xhp\n"
+"03080801.xhp\n"
"tit\n"
"help.text"
-msgid "SetAttr Statement [Runtime]"
-msgstr "Оператор SetAttr [динамичен]"
+msgid "Hex Function [Runtime]"
+msgstr "Функция Hex [динамична]"
-#: 03020414.xhp
+#: 03080801.xhp
msgctxt ""
-"03020414.xhp\n"
-"bm_id3147559\n"
+"03080801.xhp\n"
+"bm_id3150616\n"
"help.text"
-msgid "<bookmark_value>SetAttr statement</bookmark_value>"
-msgstr "<bookmark_value>SetAttr, оператор</bookmark_value>"
+msgid "<bookmark_value>Hex function</bookmark_value>"
+msgstr "<bookmark_value>Hex, функция</bookmark_value>"
-#: 03020414.xhp
+#: 03080801.xhp
msgctxt ""
-"03020414.xhp\n"
-"hd_id3147559\n"
+"03080801.xhp\n"
+"hd_id3150616\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020414.xhp\" name=\"SetAttr Statement [Runtime]\">SetAttr Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03020414.xhp\" name=\"Оператор SetAttr [динамичен]\">Оператор SetAttr [динамичен]</link>"
+msgid "<link href=\"text/sbasic/shared/03080801.xhp\" name=\"Hex Function [Runtime]\">Hex Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03080801.xhp\" name=\"Функция Hex [динамична]\">Функция Hex [динамична]</link>"
-#: 03020414.xhp
+#: 03080801.xhp
msgctxt ""
-"03020414.xhp\n"
-"par_id3147264\n"
+"03080801.xhp\n"
+"par_id3145136\n"
"2\n"
"help.text"
-msgid "Sets the attribute information for a specified file."
-msgstr "Променя атрибутите на зададен файл."
+msgid "Returns a string that represents the hexadecimal value of a number."
+msgstr "Връща низ с шестнайсетичното представяне на число."
-#: 03020414.xhp
+#: 03080801.xhp
msgctxt ""
-"03020414.xhp\n"
-"hd_id3150359\n"
+"03080801.xhp\n"
+"hd_id3147573\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03020414.xhp
+#: 03080801.xhp
msgctxt ""
-"03020414.xhp\n"
-"par_id3154365\n"
+"03080801.xhp\n"
+"par_id3150771\n"
"4\n"
"help.text"
-msgid "SetAttr FileName As String, Attribute As Integer"
-msgstr "SetAttr FileName As String, Attribute As Integer"
+msgid "Hex (Number)"
+msgstr "Hex (Number)"
-#: 03020414.xhp
+#: 03080801.xhp
msgctxt ""
-"03020414.xhp\n"
-"hd_id3125863\n"
+"03080801.xhp\n"
+"hd_id3147530\n"
"5\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "Return value:"
+msgstr "Връщана стойност:"
-#: 03020414.xhp
+#: 03080801.xhp
msgctxt ""
-"03020414.xhp\n"
-"par_id3154909\n"
+"03080801.xhp\n"
+"par_id3159414\n"
"6\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 "<emph>FileName:</emph> име на файла, за който се задават атрибути, включително пътя. Ако не въведете път, <emph>SetAttr</emph> търси файла в текущата директория. Пътят може да е във вид на <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL\">URL</link>."
+msgid "String"
+msgstr "String"
-#: 03020414.xhp
+#: 03080801.xhp
msgctxt ""
-"03020414.xhp\n"
-"par_id3153192\n"
+"03080801.xhp\n"
+"hd_id3156344\n"
"7\n"
"help.text"
-msgid "<emph>Attribute:</emph> Bit pattern defining the attributes that you want to set or to clear:"
-msgstr "<emph>Attribute:</emph> комбинация от битове, задаваща атрибутите, които желаете да добавите или премахнете:"
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 03020414.xhp
+#: 03080801.xhp
msgctxt ""
-"03020414.xhp\n"
-"par_id3145786\n"
+"03080801.xhp\n"
+"par_id3148947\n"
"8\n"
"help.text"
-msgid "<emph>Value</emph>"
-msgstr "<emph>Стойност</emph>"
+msgid "<emph>Number:</emph> Any numeric expression that you want to convert to a hexadecimal number."
+msgstr "<emph>Number:</emph> числов израз, който искате да превърнете в шестнайсетично число."
-#: 03020414.xhp
+#: 03080801.xhp
msgctxt ""
-"03020414.xhp\n"
-"par_id3152596\n"
+"03080801.xhp\n"
+"hd_id3154365\n"
"9\n"
"help.text"
-msgid "0 : Normal files."
-msgstr "0: обикновен файл"
-
-#: 03020414.xhp
-msgctxt ""
-"03020414.xhp\n"
-"par_id3149262\n"
-"10\n"
-"help.text"
-msgid "1 : Read-only files."
-msgstr "1: файл само за четене"
-
-#: 03020414.xhp
-msgctxt ""
-"03020414.xhp\n"
-"par_id3152576\n"
-"13\n"
-"help.text"
-msgid "32 : File was changed since last backup (Archive bit)."
-msgstr "32: файлът е бил променен след последното архивиране (бит за архивиране)"
+msgid "Example:"
+msgstr "Пример:"
-#: 03020414.xhp
+#: 03080801.xhp
msgctxt ""
-"03020414.xhp\n"
-"par_id3153093\n"
-"14\n"
+"03080801.xhp\n"
+"par_id3156214\n"
+"30\n"
"help.text"
-msgid "You can set multiple attributes by combining the respective values with a logic OR statement."
-msgstr "Можете да зададете няколко атрибута, комбинирайки съответните стойности с логическа операция OR."
+msgid "' uses BasicFormulas in $[officename] Calc"
+msgstr "' Използва BasicFormulas в $[officename] Calc"
-#: 03020414.xhp
+#: 03080801.xhp
msgctxt ""
-"03020414.xhp\n"
-"hd_id3147434\n"
-"15\n"
+"03080801.xhp\n"
+"par_id3149262\n"
+"20\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "' Returns a long integer from a hexadecimal value."
+msgstr "' Приема шестнайсетично число и връща стойност от тип Long Integer."
-#: 03020414.xhp
+#: 03080801.xhp
msgctxt ""
-"03020414.xhp\n"
-"par_id3148645\n"
-"17\n"
+"03080801.xhp\n"
+"par_id3147215\n"
+"25\n"
"help.text"
-msgid "On Error GoTo ErrorHandler ' Define target for error handler"
-msgstr "On Error Goto ErrorHandler ' Местоназначение за обработка на грешки"
+msgid "' Calculates a hexadecimal value in integer."
+msgstr "' Изчислява шестнайсетичното представяне на цяло число."
-#: 03090302.xhp
+#: 03080802.xhp
msgctxt ""
-"03090302.xhp\n"
+"03080802.xhp\n"
"tit\n"
"help.text"
-msgid "GoTo Statement [Runtime]"
-msgstr "GoTo Statement [Runtime]"
+msgid "Oct Function [Runtime]"
+msgstr "Функция Oct [динамична]"
-#: 03090302.xhp
+#: 03080802.xhp
msgctxt ""
-"03090302.xhp\n"
-"bm_id3159413\n"
+"03080802.xhp\n"
+"bm_id3155420\n"
"help.text"
-msgid "<bookmark_value>GoTo statement</bookmark_value>"
-msgstr "<bookmark_value>GoTo, оператор</bookmark_value>"
+msgid "<bookmark_value>Oct function</bookmark_value>"
+msgstr "<bookmark_value>Oct, функция</bookmark_value>"
-#: 03090302.xhp
+#: 03080802.xhp
msgctxt ""
-"03090302.xhp\n"
-"hd_id3159413\n"
+"03080802.xhp\n"
+"hd_id3155420\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090302.xhp\" name=\"GoTo Statement [Runtime]\">GoTo Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090302.xhp\" name=\"Оператор GoTo [динамичен]\">Оператор GoTo [динамичен]</link>"
+msgid "<link href=\"text/sbasic/shared/03080802.xhp\" name=\"Oct Function [Runtime]\">Oct Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03080802.xhp\" name=\"Функция Oct [динамична]\">Функция Oct [динамична]</link>"
-#: 03090302.xhp
+#: 03080802.xhp
msgctxt ""
-"03090302.xhp\n"
-"par_id3153379\n"
+"03080802.xhp\n"
+"par_id3154924\n"
"2\n"
"help.text"
-msgid "Continues program execution within a Sub or Function at the procedure line indicated by a label."
-msgstr "Продължава изпълнението на програма в процедура или функция от реда, указан чрез етикет."
+msgid "Returns the octal value of a number."
+msgstr "Връща осмичното представяне на число."
-#: 03090302.xhp
+#: 03080802.xhp
msgctxt ""
-"03090302.xhp\n"
-"hd_id3149656\n"
+"03080802.xhp\n"
+"hd_id3148947\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03090302.xhp
+#: 03080802.xhp
msgctxt ""
-"03090302.xhp\n"
-"par_id3154367\n"
+"03080802.xhp\n"
+"par_id3150543\n"
"4\n"
"help.text"
-msgid "see Parameters"
-msgstr "виж Параметри"
+msgid "Oct (Number)"
+msgstr "Oct (Number)"
-#: 03090302.xhp
+#: 03080802.xhp
msgctxt ""
-"03090302.xhp\n"
-"hd_id3150870\n"
+"03080802.xhp\n"
+"hd_id3153360\n"
"5\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "Return value:"
+msgstr "Връщана стойност:"
-#: 03090302.xhp
+#: 03080802.xhp
msgctxt ""
-"03090302.xhp\n"
-"par_id3156214\n"
+"03080802.xhp\n"
+"par_id3154138\n"
"6\n"
"help.text"
-msgid "Sub/Function"
-msgstr "Sub/Function"
+msgid "String"
+msgstr "String"
-#: 03090302.xhp
+#: 03080802.xhp
msgctxt ""
-"03090302.xhp\n"
-"par_id3156424\n"
+"03080802.xhp\n"
+"hd_id3156422\n"
"7\n"
"help.text"
-msgid "statement block"
-msgstr "операторен блок"
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 03090302.xhp
+#: 03080802.xhp
msgctxt ""
-"03090302.xhp\n"
-"par_id3154685\n"
+"03080802.xhp\n"
+"par_id3150768\n"
"8\n"
"help.text"
-msgid "Label1"
-msgstr "Етикет1"
+msgid "<emph>Number:</emph> Any numeric expression that you want to convert to an octal value."
+msgstr "<emph>Number:</emph> числов израз, чиято осмична стойност искате да намерите."
-#: 03090302.xhp
+#: 03080802.xhp
msgctxt ""
-"03090302.xhp\n"
-"par_id3145786\n"
+"03080802.xhp\n"
+"hd_id3148672\n"
"9\n"
"help.text"
-msgid "<emph>Label2:</emph>"
-msgstr "<emph>Етикет2:</emph>"
-
-#: 03090302.xhp
-msgctxt ""
-"03090302.xhp\n"
-"par_id3161832\n"
-"10\n"
-"help.text"
-msgid "statement block"
-msgstr "операторен блок"
-
-#: 03090302.xhp
-msgctxt ""
-"03090302.xhp\n"
-"par_id3146120\n"
-"11\n"
-"help.text"
-msgid "Exit Sub"
-msgstr "Exit Sub"
-
-#: 03090302.xhp
-msgctxt ""
-"03090302.xhp\n"
-"par_id3150010\n"
-"12\n"
-"help.text"
-msgid "<emph>Label1:</emph>"
-msgstr "<emph>Етикет1:</emph>"
-
-#: 03090302.xhp
-msgctxt ""
-"03090302.xhp\n"
-"par_id3152462\n"
-"13\n"
-"help.text"
-msgid "statement block"
-msgstr "операторен блок"
-
-#: 03090302.xhp
-msgctxt ""
-"03090302.xhp\n"
-"par_id3149664\n"
-"14\n"
-"help.text"
-msgid "GoTo Label2"
-msgstr "GoTo Етикет2"
-
-#: 03090302.xhp
-msgctxt ""
-"03090302.xhp\n"
-"par_id3152886\n"
-"15\n"
-"help.text"
-msgid "End Sub/Function"
-msgstr "End Sub/Function"
+msgid "Example:"
+msgstr "Пример:"
-#: 03090302.xhp
+#: 03090000.xhp
msgctxt ""
-"03090302.xhp\n"
-"par_id3152596\n"
-"16\n"
+"03090000.xhp\n"
+"tit\n"
"help.text"
-msgid "Use the GoTo statement to instruct $[officename] Basic to continue program execution at another place within the procedure. The position must be indicated by a label. To set a label, assign a name, and then and end it with a colon (\":\")."
-msgstr "Чрез оператора GoTo можете да укажете на $[officename] Basic да продължи изпълнението на програмата на друго място в текущата процедура. Позицията трябва да е обозначена с етикет. За да зададете етикет, напишете име и го завършете с двоеточие (\":\")."
+msgid "Controlling Program Execution"
+msgstr "Управление на изпълнението на програмата"
-#: 03090302.xhp
+#: 03090000.xhp
msgctxt ""
-"03090302.xhp\n"
-"par_id3155416\n"
-"17\n"
+"03090000.xhp\n"
+"hd_id3145136\n"
+"1\n"
"help.text"
-msgid "You cannot use the GoTo statement to jump out of a Sub or Function."
-msgstr "Чрез оператора GoTo не можете да осъществите преход навън от процедура или функция."
+msgid "<link href=\"text/sbasic/shared/03090000.xhp\" name=\"Controlling Program Execution\">Controlling Program Execution</link>"
+msgstr "<link href=\"text/sbasic/shared/03090000.xhp\" name=\"Управление на изпълнението на програмата\">Управление на изпълнението на програмата</link>"
-#: 03090302.xhp
+#: 03090000.xhp
msgctxt ""
-"03090302.xhp\n"
-"hd_id3154731\n"
-"19\n"
+"03090000.xhp\n"
+"par_id3143268\n"
+"2\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "The following statements control the execution of a program."
+msgstr "Следващите оператори управляват изпълнението на програмата."
-#: 03090302.xhp
+#: 03090000.xhp
msgctxt ""
-"03090302.xhp\n"
-"par_id6967035\n"
+"03090000.xhp\n"
+"par_id3156152\n"
+"3\n"
"help.text"
-msgid "see Parameters"
-msgstr "виж Параметри"
+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 "Програмите обикновено се изпълняват от първия ред код към последния. Можете също така да извикате определени процедури в програма според зададени условия или да повторите част от програмата в рамките на процедура или функция. Чрез циклите можете да повтаряте части от програмата колкото пъти е необходимо или докато се изпълни дадено условие. Управляващите оператори се класифицират като условни оператори, оператори за цикъл и оператори за преход."
-#: 03080700.xhp
+#: 03090100.xhp
msgctxt ""
-"03080700.xhp\n"
+"03090100.xhp\n"
"tit\n"
"help.text"
-msgid "Expression Signs"
-msgstr "Знаци на стойности"
+msgid "Condition Statements"
+msgstr "Условни оператори"
-#: 03080700.xhp
+#: 03090100.xhp
msgctxt ""
-"03080700.xhp\n"
-"hd_id3150702\n"
+"03090100.xhp\n"
+"hd_id3154422\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080700.xhp\" name=\"Expression Signs\">Expression Signs</link>"
-msgstr "<link href=\"text/sbasic/shared/03080700.xhp\" name=\"Знаци на стойности\">Знаци на стойности</link>"
+msgid "<link href=\"text/sbasic/shared/03090100.xhp\" name=\"Condition Statements\">Condition Statements</link>"
+msgstr "<link href=\"text/sbasic/shared/03090100.xhp\" name=\"Условни оператори\">Условни оператори</link>"
-#: 03080700.xhp
+#: 03090100.xhp
msgctxt ""
-"03080700.xhp\n"
-"par_id3148668\n"
+"03090100.xhp\n"
+"par_id3153750\n"
"2\n"
"help.text"
-msgid "This function returns the algebraic sign of a numeric expression."
-msgstr "Тази функция връща алгебричния знак на стойността на числов израз."
+msgid "The following statements are based on conditions."
+msgstr "Следните оператори се базират на условия."
-#: 03120308.xhp
+#: 03090101.xhp
msgctxt ""
-"03120308.xhp\n"
+"03090101.xhp\n"
"tit\n"
"help.text"
-msgid "RSet Statement [Runtime]"
-msgstr "Оператор RSet [динамичен]"
+msgid "If...Then...Else Statement [Runtime]"
+msgstr "Оператор If…Then…Else [динамичен]"
-#: 03120308.xhp
+#: 03090101.xhp
msgctxt ""
-"03120308.xhp\n"
-"bm_id3153345\n"
+"03090101.xhp\n"
+"bm_id3154422\n"
"help.text"
-msgid "<bookmark_value>RSet statement</bookmark_value>"
-msgstr "<bookmark_value>RSet, оператор</bookmark_value>"
+msgid "<bookmark_value>If statement</bookmark_value>"
+msgstr "<bookmark_value>If, оператор</bookmark_value>"
-#: 03120308.xhp
+#: 03090101.xhp
msgctxt ""
-"03120308.xhp\n"
-"hd_id3153345\n"
+"03090101.xhp\n"
+"hd_id3154422\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120308.xhp\" name=\"RSet Statement [Runtime]\">RSet Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120308.xhp\" name=\"Оператор RSet [динамичен]\">Оператор RSet [динамичен]</link>"
+msgid "<link href=\"text/sbasic/shared/03090101.xhp\" name=\"If...Then...Else Statement [Runtime]\">If...Then...Else Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090101.xhp\" name=\"Оператор If…Then…Else [динамичен]\">Оператор If…Then…Else [динамичен]</link>"
-#: 03120308.xhp
+#: 03090101.xhp
msgctxt ""
-"03120308.xhp\n"
-"par_id3150503\n"
+"03090101.xhp\n"
+"par_id3155555\n"
"2\n"
"help.text"
-msgid "Right-aligns a string within a string variable, or copies a user-defined variable type into another."
-msgstr "Подравнява низ от лявата страна или копира стойност от потребителски тип в друга променлива от друг потребителски тип."
+msgid "Defines one or more statement blocks that you only want to execute if a given condition is True."
+msgstr "Определя един или повече операторни блока, които да се изпълнят само ако дадено условие е удовлетворено."
-#: 03120308.xhp
+#: 03090101.xhp
msgctxt ""
-"03120308.xhp\n"
-"hd_id3149234\n"
+"03090101.xhp\n"
+"hd_id3146957\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03120308.xhp
+#: 03090101.xhp
msgctxt ""
-"03120308.xhp\n"
-"par_id3150669\n"
+"03090101.xhp\n"
+"par_id3153126\n"
"4\n"
"help.text"
-msgid "RSet Text As String = Text or RSet Variable1 = Variable2"
-msgstr "RSet Text As String = Text или RSet Variable1 = Variable2"
+msgid "If condition=true Then Statement block [ElseIf condition=true Then] Statement block [Else] Statement block EndIf"
+msgstr "If условие=true Then Операторен блок [ElseIf условие=true Then] Операторен блок [Else] Операторен блок EndIf"
-#: 03120308.xhp
+#: 03090101.xhp
msgctxt ""
-"03120308.xhp\n"
-"hd_id3156024\n"
+"03090101.xhp\n"
+"par_id3123476\n"
+"help.text"
+msgid "Instead of Else If you can write ElseIf, instead of End If you can write EndIf."
+msgstr "Вместо Else If можете да пишете ElseIf и вместо End If – EndIf."
+
+#: 03090101.xhp
+msgctxt ""
+"03090101.xhp\n"
+"hd_id3155419\n"
"5\n"
"help.text"
msgid "Parameters:"
msgstr "Параметри:"
-#: 03120308.xhp
+#: 03090101.xhp
msgctxt ""
-"03120308.xhp\n"
-"par_id3148552\n"
+"03090101.xhp\n"
+"par_id3153062\n"
"6\n"
"help.text"
-msgid "<emph>Text:</emph> Any string variable."
-msgstr "<emph>Text:</emph> низова променлива."
+msgid "The <emph>If...Then</emph> statement executes program blocks depending on given conditions. When $[officename] Basic encounters an <emph>If</emph> statement, the condition is tested. If the condition is True, all subsequent statements up to the next <emph>Else</emph> or <emph>ElseIf</emph> statement are executed. If the condition is False, and an <emph>ElseIf</emph> statement follows, $[officename] Basic tests the next condition and executes the following statements if the condition is True. If False, 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 True. After all conditions are evaluated, and the corresponding statements executed, the program continues with the statement following <emph>EndIf</emph>."
+msgstr "Операторът <emph>If…Then</emph> изпълнява блокове от програмата в зависимост от дадено условие. Когато $[officename] Basic срещне оператор <emph>If</emph>, се проверява условието му. Ако то е удовлетворено (True), се изпълняват всички оператори до следващия оператор <emph>Else</emph> или <emph>ElseIf</emph>. В противен случай (при стойност False) и ако има оператор <emph>ElseIf</emph>, $[officename] Basic проверява следващото условие и изпълнява следващите оператори, ако то има стойност True. Ако стойността е False, изпълнението продължава със следващия оператор <emph>ElseIf</emph> или <emph>Else</emph>. Операторите, следващи <emph>Else</emph>, се изпълняват само ако никое от проверените условия не е било удовлетворено. След като са проверени всички условия и са изпълнени съответните оператори, изпълнението на програмата продължава с оператора след <emph>EndIf</emph>."
-#: 03120308.xhp
+#: 03090101.xhp
msgctxt ""
-"03120308.xhp\n"
-"par_id3154924\n"
+"03090101.xhp\n"
+"par_id3153192\n"
"7\n"
"help.text"
-msgid "<emph>Text</emph>: String that you want to right-align in the string variable."
-msgstr "<emph>Text:</emph> низ, който искате да подравните надясно."
+msgid "You can nest multiple <emph>If...Then</emph> statements."
+msgstr "Можете да влагате операторите <emph>If…Then</emph> един в друг."
-#: 03120308.xhp
+#: 03090101.xhp
msgctxt ""
-"03120308.xhp\n"
-"par_id3149456\n"
+"03090101.xhp\n"
+"par_id3154684\n"
"8\n"
"help.text"
-msgid "<emph>Variable1:</emph> User-defined variable that is the target for the copied variable."
-msgstr "<emph>Variable1:</emph> име на променлива от потребителски тип, в която искате да копирате."
+msgid "<emph>Else</emph> and <emph>ElseIf</emph> statements are optional."
+msgstr "Операторите <emph>Else</emph> и <emph>ElseIf</emph> не са задължителни."
-#: 03120308.xhp
+#: 03090101.xhp
msgctxt ""
-"03120308.xhp\n"
-"par_id3153381\n"
+"03090101.xhp\n"
+"par_id3152939\n"
"9\n"
"help.text"
-msgid "<emph>Variable2:</emph> User-defined variable that you want to copy to another variable."
-msgstr "<emph>Variable2:</emph> име на променлива от потребителски тип, от която искате да копирате."
+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 "Чрез операторите <emph>GoTo</emph> и <emph>GoSub</emph> можете да организирате преход навън от блок <emph>If…Then</emph>, но не и преход отвън към вътрешността на структура <emph>If…Then</emph>."
-#: 03120308.xhp
+#: 03090101.xhp
msgctxt ""
-"03120308.xhp\n"
-"par_id3154140\n"
+"03090101.xhp\n"
+"par_id3153951\n"
"10\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 "Ако низът е по-къс от низовата променлива, <emph>LSet</emph> го подравнява надясно в нея. Останалите позиции в променливата се заместват с интервали. Ако низът е по-дълъг от променливата, излишните знаци се отрязват и само останалите се подравняват надясно в променливата."
+msgid "The following example enables you to enter the expiration date of a product, and determines if the expiration date has passed."
+msgstr "Следващият пример ви позволява да въведете крайната дата на срока на годност на продукт и определя дали срокът е изтекъл."
-#: 03120308.xhp
+#: 03090101.xhp
msgctxt ""
-"03120308.xhp\n"
-"par_id3149202\n"
+"03090101.xhp\n"
+"hd_id3152576\n"
"11\n"
"help.text"
-msgid "You can also use the <emph>RSet statement</emph> to assign variables of one user-defined type to another."
-msgstr "С оператора <emph>RSet</emph> можете също така да копирате стойността на променлива от потребителски тип в друга."
-
-#: 03120308.xhp
-msgctxt ""
-"03120308.xhp\n"
-"par_id3151042\n"
-"12\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 "В следващия пример операторите <emph>RSet</emph> и <emph>LSet</emph> са използвани за промяна на подравняването на низ."
-
-#: 03120308.xhp
-msgctxt ""
-"03120308.xhp\n"
-"hd_id3154909\n"
-"13\n"
-"help.text"
msgid "Example:"
msgstr "Пример:"
-#: 03120308.xhp
+#: 03090101.xhp
msgctxt ""
-"03120308.xhp\n"
-"par_id3155856\n"
-"20\n"
+"03090101.xhp\n"
+"par_id3154490\n"
+"16\n"
"help.text"
-msgid "' Right-align \"SBX\" in a 40-character string"
-msgstr "' Подравняваме надясно „SBX“ в 40-знаков низ"
+msgid "sDate = InputBox(\"Enter the expiration date (MM.DD.YYYY)\")"
+msgstr "sDate = InputBox(\"Въведете датата на изтичане на срока (ММ.ДД.ГГГГ)\")"
-#: 03120308.xhp
+#: 03090101.xhp
msgctxt ""
-"03120308.xhp\n"
-"par_id3152577\n"
+"03090101.xhp\n"
+"par_id3155601\n"
"21\n"
"help.text"
-msgid "' Replace asterisks with spaces"
-msgstr "' Заменяме звездичките с интервали"
-
-#: 03120308.xhp
-msgctxt ""
-"03120308.xhp\n"
-"par_id3145801\n"
-"32\n"
-"help.text"
-msgid "' Left-align \"SBX\" in a 40-character string"
-msgstr "' Подравняваме наляво „SBX“ в 40-знаков низ"
-
-#: 03080200.xhp
-msgctxt ""
-"03080200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Exponential and Logarithmic Functions"
-msgstr "Експоненциални и логаритмични функции"
+msgid "MsgBox \"The expiration date has passed\""
+msgstr "MsgBox \"Срокът е изтекъл.\""
-#: 03080200.xhp
+#: 03090101.xhp
msgctxt ""
-"03080200.xhp\n"
-"hd_id3154758\n"
-"1\n"
+"03090101.xhp\n"
+"par_id3146912\n"
+"23\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080200.xhp\" name=\"Exponential and Logarithmic Functions\">Exponential and Logarithmic Functions</link>"
-msgstr "<link href=\"text/sbasic/shared/03080200.xhp\" name=\"Експоненциални и логаритмични функции\">Експоненциални и логаритмични функции</link>"
+msgid "MsgBox \"The expiration date has not yet passed\""
+msgstr "MsgBox \"Срокът още не е изтекъл.\""
-#: 03080200.xhp
+#: 03090101.xhp
msgctxt ""
-"03080200.xhp\n"
-"par_id3148550\n"
-"2\n"
+"03090101.xhp\n"
+"par_id3154754\n"
+"25\n"
"help.text"
-msgid "$[officename] Basic supports the following exponential and logarithmic functions."
-msgstr "$[officename] Basic поддържа следните експоненциални и логаритмични функции."
+msgid "MsgBox \"The expiration date is today\""
+msgstr "MsgBox \"Срокът изтича днес\""
-#: 01030200.xhp
+#: 03090102.xhp
msgctxt ""
-"01030200.xhp\n"
+"03090102.xhp\n"
"tit\n"
"help.text"
-msgid "The Basic Editor"
-msgstr "Редакторът на Basic"
+msgid "Select...Case Statement [Runtime]"
+msgstr "Оператор Select…Case [динамичен]"
-#: 01030200.xhp
+#: 03090102.xhp
msgctxt ""
-"01030200.xhp\n"
-"bm_id3148647\n"
+"03090102.xhp\n"
+"bm_id3149416\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 "<bookmark_value>съхраняване;код на Basic</bookmark_value><bookmark_value>запазване;код на Basic</bookmark_value><bookmark_value>зареждане;код на Basic</bookmark_value><bookmark_value>редактор на Basic</bookmark_value><bookmark_value>навигация;в проекти на Basic</bookmark_value><bookmark_value>дълги редове;в редактора на Basic</bookmark_value><bookmark_value>редове в текст;в редактора на Basic</bookmark_value><bookmark_value>продължаване;дълги редове в редактор</bookmark_value>"
+msgid "<bookmark_value>Select...Case statement</bookmark_value><bookmark_value>Case statement</bookmark_value>"
+msgstr "<bookmark_value>Select…Case, оператор</bookmark_value><bookmark_value>Case, оператор</bookmark_value>"
-#: 01030200.xhp
+#: 03090102.xhp
msgctxt ""
-"01030200.xhp\n"
-"hd_id3147264\n"
+"03090102.xhp\n"
+"hd_id3149416\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/01030200.xhp\" name=\"The Basic Editor\">The Basic Editor</link>"
-msgstr "<link href=\"text/sbasic/shared/01030200.xhp\" name=\"Редакторът на Basic\">Редакторът на Basic</link>"
-
-#: 01030200.xhp
-msgctxt ""
-"01030200.xhp\n"
-"par_id3145069\n"
-"3\n"
-"help.text"
-msgid "The Basic Editor provides the standard editing functions you are familiar with when working in a text document. It supports the functions of the <emph>Edit</emph> menu (Cut, Delete, Paste), the ability to select text with the Shift key, as well as cursor positioning functions (for example, moving from word to word with <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> and the arrow keys)."
-msgstr "Редакторът на Basic предлага стандартните функции за редактиране, които са ви познати от работата с текстови документи. Той поддържа функциите на менюто <emph>Редактиране</emph> (Изрязване, Изтриване, Поставяне), възможност за избиране на текст с клавиша Shift, както и функции за позициониране на курсора (например преминаване от дума на дума с <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline> и клавишите със стрелки)."
+msgid "<link href=\"text/sbasic/shared/03090102.xhp\" name=\"Select...Case Statement [Runtime]\">Select...Case Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090102.xhp\" name=\"Оператор Select…Case [динамичен]\">Оператор Select…Case [динамичен]</link>"
-#: 01030200.xhp
+#: 03090102.xhp
msgctxt ""
-"01030200.xhp\n"
-"par_id3154686\n"
-"31\n"
+"03090102.xhp\n"
+"par_id3153896\n"
+"2\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 "Дългите редове могат да бъдат разделяни на няколко части чрез завършване на ред с интервал и долна черта (_). Ред, завършен по този начин, се свързва със следващия в един цял логически ред. (Ако същият модул на Basic съдържа оператор „Option Compatible“, продължаването на редове важи и за редовете – коментари.)"
+msgid "Defines one or more statement blocks depending on the value of an expression."
+msgstr "Изпълнява един или повече операторни блока според стойността на израз."
-#: 01030200.xhp
+#: 03090102.xhp
msgctxt ""
-"01030200.xhp\n"
-"par_id3151042\n"
-"32\n"
+"03090102.xhp\n"
+"hd_id3147265\n"
+"3\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 "Ако щракнете върху иконата <emph>Стартиране на BASIC</emph> в лентата <emph>Макрос</emph>, изпълнението на програмата започва от първия ред в редактора на Basic. Изпълнява се първата процедура или функция, след което изпълнението на програмата спира. Процедурата „Sub Main“ няма предимство при изпълнение."
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 01030200.xhp
+#: 03090102.xhp
msgctxt ""
-"01030200.xhp\n"
-"par_id59816\n"
+"03090102.xhp\n"
+"par_id3150400\n"
+"4\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 "Вмъкнете кода на Basic между редовете Sub Main и End Sub, които ще видите, когато отворите развойната среда. Можете също така да изтриете всички редове и да въведете изцяло ваш собствен код на Basic."
+msgid "Select Case condition Case expression Statement Block [Case expression2 Statement Block][Case Else] Statement Block End Select"
+msgstr "Select Case условие Case израз операторен блок [Case израз2 операторен блок][Case Else] операторен блок End Select"
-#: 01030200.xhp
+#: 03090102.xhp
msgctxt ""
-"01030200.xhp\n"
-"hd_id3125863\n"
-"4\n"
+"03090102.xhp\n"
+"hd_id3150767\n"
+"5\n"
"help.text"
-msgid "Navigating in a Project"
-msgstr "Навигация в проект"
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 01030200.xhp
+#: 03090102.xhp
msgctxt ""
-"01030200.xhp\n"
-"hd_id3145785\n"
+"03090102.xhp\n"
+"par_id3156281\n"
"6\n"
"help.text"
-msgid "The Library List"
-msgstr "Списъкът с библиотеки"
+msgid "<emph>Condition:</emph> Any expression that controls if the statement block that follows the respective Case clause is executed."
+msgstr "<emph>Условие:</emph> израз, който определя дали ще се изпълни операторният блок, следващ съответната клауза Case."
-#: 01030200.xhp
+#: 03090102.xhp
msgctxt ""
-"01030200.xhp\n"
-"par_id3146120\n"
+"03090102.xhp\n"
+"par_id3150448\n"
"7\n"
"help.text"
-msgid "Select a library from the <emph>Library</emph> list at the left of the toolbar to load the library in the editor. The first module of the selected library will be displayed."
-msgstr "За да заредите библиотека в редактира, изберете я в списъка <emph>Библиотека</emph> вляво от лентата с инструменти. Ще бъде показан първият модул от избраната бибиотека."
+msgid "<emph>Expression:</emph> Any expression that is compatible with the Condition type expression. The statement block that follows the Case clause is executed if <emph>Condition</emph> matches <emph>Expression</emph>."
+msgstr "<emph>Израз:</emph> израз, съвместим с типа на израза <emph>Условие</emph>. Операторният блок, следващ клаузата Case, се изпълнява ако <emph>Условие</emph> отговаря на <emph>Израз</emph>."
-#: 01030200.xhp
+#: 03090102.xhp
msgctxt ""
-"01030200.xhp\n"
-"hd_id3153190\n"
+"03090102.xhp\n"
+"hd_id3153768\n"
"8\n"
"help.text"
-msgid "The Object Catalog"
-msgstr "Каталог на обектите"
+msgid "Example:"
+msgstr "Пример:"
-#: 01030200.xhp
+#: 03090102.xhp
msgctxt ""
-"01030200.xhp\n"
-"hd_id3148647\n"
-"15\n"
+"03090102.xhp\n"
+"par_id3152597\n"
+"14\n"
"help.text"
-msgid "Saving and Loading Basic Source Code"
-msgstr "Съхраняване и зареждане на код на Basic"
+msgid "Print \"Number from 1 to 5\""
+msgstr "Print \"Число от 1 до 5\""
-#: 01030200.xhp
+#: 03090102.xhp
msgctxt ""
-"01030200.xhp\n"
-"par_id3154320\n"
+"03090102.xhp\n"
+"par_id3147349\n"
"16\n"
"help.text"
-msgid "You can save Basic code in a text file for saving and importing in other programming systems."
-msgstr "Можете да запазвате код на Basic в текстов файл за съхраняване и импортиране в други среди за програмиране."
-
-#: 01030200.xhp
-msgctxt ""
-"01030200.xhp\n"
-"par_id3149959\n"
-"25\n"
-"help.text"
-msgid "You cannot save Basic dialogs to a text file."
-msgstr "Не можете да записвате диалози на Basic в текстови файлове."
-
-#: 01030200.xhp
-msgctxt ""
-"01030200.xhp\n"
-"hd_id3149403\n"
-"17\n"
-"help.text"
-msgid "Saving Source Code to a Text File"
-msgstr "Съхраняване на изходен код в текстов файл"
+msgid "Print \"Number from 6 to 8\""
+msgstr "Print \"Число от 6 до 8\""
-#: 01030200.xhp
+#: 03090102.xhp
msgctxt ""
-"01030200.xhp\n"
-"par_id3150327\n"
+"03090102.xhp\n"
+"par_id3152886\n"
"18\n"
"help.text"
-msgid "Select the module that you want to export as text from the object catalog."
-msgstr "Изберете от каталога на обектите модула, който желаете да експортиране като текст."
-
-#: 01030200.xhp
-msgctxt ""
-"01030200.xhp\n"
-"par_id3150752\n"
-"19\n"
-"help.text"
-msgid "Click the <emph>Save Source As</emph> icon in the Macro toolbar."
-msgstr "Щракнете върху иконата <emph>Съхраняване на код на BASIC</emph> в лентата с инструменти „Макрос“."
+msgid "Print \"Greater than 8\""
+msgstr "Print \"По-голямо от 8\""
-#: 01030200.xhp
+#: 03090102.xhp
msgctxt ""
-"01030200.xhp\n"
-"par_id3154754\n"
+"03090102.xhp\n"
+"par_id3146975\n"
"20\n"
"help.text"
-msgid "Select a file name and click <emph>OK</emph> to save the file."
-msgstr "Изберете име на файл и щракнете върху <emph>OK</emph>, за да запазите файла."
-
-#: 01030200.xhp
-msgctxt ""
-"01030200.xhp\n"
-"hd_id3159264\n"
-"21\n"
-"help.text"
-msgid "Loading Source Code From a Text File"
-msgstr "Зареждане на изходен код от текстов файл"
-
-#: 01030200.xhp
-msgctxt ""
-"01030200.xhp\n"
-"par_id3147343\n"
-"22\n"
-"help.text"
-msgid "Select the module where you want to import the source code from the object catalog."
-msgstr "Изберете от каталога на обектите модула, в който желаете да импортирате изходния код."
-
-#: 01030200.xhp
-msgctxt ""
-"01030200.xhp\n"
-"par_id3145230\n"
-"23\n"
-"help.text"
-msgid "Position the cursor where you want to insert the program code."
-msgstr "Поставете курсора там, където искате да вмъкнете програмния код."
-
-#: 01030200.xhp
-msgctxt ""
-"01030200.xhp\n"
-"par_id3149565\n"
-"24\n"
-"help.text"
-msgid "Click the <emph>Insert Source Text</emph> icon in the Macro toolbar."
-msgstr "Щракнете върху иконата <emph>Вмъкване на код на BASIC</emph> в лентата с инструменти „Макрос“."
-
-#: 01030200.xhp
-msgctxt ""
-"01030200.xhp\n"
-"par_id3154020\n"
-"33\n"
-"help.text"
-msgid "Select the text file containing the source code and click <emph>OK</emph>."
-msgstr "Изберете текстовия файл, който съдържа изходния код, и натиснете <emph>OK</emph>."
-
-#: 01030200.xhp
-msgctxt ""
-"01030200.xhp\n"
-"par_id3153198\n"
-"29\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/01050000.xhp\" name=\"Basic IDE\">Basic IDE</link>"
-msgstr "<link href=\"text/sbasic/shared/01050000.xhp\" name=\"Интегрирана развойна среда на Basic\">Интегрирана развойна среда на Basic</link>"
+msgid "Print \"Out of range 1 to 10\""
+msgstr "Print \"Извън диапазона от 1 до 10\""
-#: 03102000.xhp
+#: 03090103.xhp
msgctxt ""
-"03102000.xhp\n"
+"03090103.xhp\n"
"tit\n"
"help.text"
-msgid "DefVar Statement [Runtime]"
-msgstr "Оператор DefVar [динамичен]"
+msgid "IIf Statement [Runtime]"
+msgstr "Оператор IIf [динамичен]"
-#: 03102000.xhp
+#: 03090103.xhp
msgctxt ""
-"03102000.xhp\n"
-"bm_id3143267\n"
+"03090103.xhp\n"
+"bm_id3155420\n"
"help.text"
-msgid "<bookmark_value>DefVar statement</bookmark_value>"
-msgstr "<bookmark_value>DefVar, оператор</bookmark_value>"
+msgid "<bookmark_value>IIf statement</bookmark_value>"
+msgstr "<bookmark_value>IIf statement</bookmark_value>"
-#: 03102000.xhp
+#: 03090103.xhp
msgctxt ""
-"03102000.xhp\n"
-"hd_id3143267\n"
+"03090103.xhp\n"
+"hd_id3155420\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03102000.xhp\" name=\"DefVar Statement [Runtime]\">DefVar Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03102000.xhp\" name=\"Оператор DefVar [динамичен]\">Оператор DefVar [динамичен]</link>"
+msgid "<link href=\"text/sbasic/shared/03090103.xhp\" name=\"IIf Statement [Runtime]\">IIf Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090103.xhp\" name=\"Оператор IIf [динамичен]\">Оператор IIf [динамичен]</link>"
-#: 03102000.xhp
+#: 03090103.xhp
msgctxt ""
-"03102000.xhp\n"
-"par_id3153825\n"
+"03090103.xhp\n"
+"par_id3145610\n"
"2\n"
"help.text"
-msgid "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified."
-msgstr "Операторът DefVar установява подразбиран тип данни според диапазон от букви в случай, че не е зададена ключова дума или знак за деклариране на тип."
+msgid "Returns one of two possible function results, depending on the logical value of the evaluated expression."
+msgstr "Връща един от два възможни резултата според логическата стойност на оценяван израз."
-#: 03102000.xhp
+#: 03090103.xhp
msgctxt ""
-"03102000.xhp\n"
-"hd_id3154143\n"
+"03090103.xhp\n"
+"hd_id3159413\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03102000.xhp
+#: 03090103.xhp
msgctxt ""
-"03102000.xhp\n"
-"par_id3149514\n"
+"03090103.xhp\n"
+"par_id3147560\n"
"4\n"
"help.text"
-msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
-msgstr "Defxxx Characterrange1[, Characterrange2[,...]]"
+msgid "IIf (Expression, ExpressionTrue, ExpressionFalse)"
+msgstr "IIf (Expression, ExpressionTrue, ExpressionFalse)"
-#: 03102000.xhp
+#: 03090103.xhp
msgctxt ""
-"03102000.xhp\n"
-"hd_id3156024\n"
+"03090103.xhp\n"
+"hd_id3150541\n"
"5\n"
"help.text"
msgid "Parameters:"
msgstr "Параметри:"
-#: 03102000.xhp
+#: 03090103.xhp
msgctxt ""
-"03102000.xhp\n"
-"par_id3147560\n"
+"03090103.xhp\n"
+"par_id3153381\n"
"6\n"
"help.text"
-msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set the default data type for."
-msgstr "<emph>Characterrange:</emph> букви, определящи диапазона от променливи, за които искате да зададете подразбиран тип данни."
+msgid "<emph>Expression:</emph> Any expression that you want to evaluate. If the expression evaluates to <emph>True</emph>, the function returns the result of ExpressionTrue, otherwise it returns the result of ExpressionFalse."
+msgstr "<emph>Expression:</emph> израз – условие. Ако стойността му е <emph>True</emph>, функцията връща резултата от изчисляването на ExpressionTrue, в противен случай – от това на ExpressionFalse."
-#: 03102000.xhp
+#: 03090103.xhp
msgctxt ""
-"03102000.xhp\n"
-"par_id3148552\n"
+"03090103.xhp\n"
+"par_id3150870\n"
"7\n"
"help.text"
-msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
-msgstr "<emph>xxx:</emph> ключова дума, дефинираща подразбирания тип данни:"
-
-#: 03102000.xhp
-msgctxt ""
-"03102000.xhp\n"
-"par_id3153524\n"
-"8\n"
-"help.text"
-msgid "<emph>Keyword: </emph>Default variable type"
-msgstr "<emph>Ключова дума:</emph> Подразбиран тип данни"
-
-#: 03102000.xhp
-msgctxt ""
-"03102000.xhp\n"
-"par_id3150767\n"
-"9\n"
-"help.text"
-msgid "<emph>DefVar:</emph> Variant"
-msgstr "<emph>DefVar:</emph> Variant"
-
-#: 03102000.xhp
-msgctxt ""
-"03102000.xhp\n"
-"hd_id3151041\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "<emph>ExpressionTrue, ExpressionFalse:</emph> Any expression, one of which will be returned as the function result, depending on the logical evaluation."
+msgstr "<emph>ExpressionTrue, ExpressionFalse:</emph> изрази, една от чиито стойности ще бъде върната според резултата от оценката на логическото условие."
-#: 03102000.xhp
+#: 03090200.xhp
msgctxt ""
-"03102000.xhp\n"
-"par_id3156214\n"
-"11\n"
+"03090200.xhp\n"
+"tit\n"
"help.text"
-msgid "' Prefix definitions for variable types:"
-msgstr "' Дефиниране с префикс за променливи от даден тип:"
+msgid "Loops"
+msgstr "Цикли"
-#: 03102000.xhp
+#: 03090200.xhp
msgctxt ""
-"03102000.xhp\n"
-"par_id3154012\n"
-"21\n"
+"03090200.xhp\n"
+"hd_id3153990\n"
+"1\n"
"help.text"
-msgid "vDiv=99 ' vDiv is an implicit variant"
-msgstr "vDiv = 99 ' vDiv е променлива с неявен тип Variant"
+msgid "<link href=\"text/sbasic/shared/03090200.xhp\" name=\"Loops\">Loops</link>"
+msgstr "<link href=\"text/sbasic/shared/03090200.xhp\" name=\"Цикли\">Цикли</link>"
-#: 03102000.xhp
+#: 03090200.xhp
msgctxt ""
-"03102000.xhp\n"
-"par_id3146121\n"
-"22\n"
+"03090200.xhp\n"
+"par_id3147226\n"
+"2\n"
"help.text"
-msgid "vDiv=\"Hello world\""
-msgstr "vDiv = \"Здравей, свят!\""
+msgid "The following statements execute loops."
+msgstr "Следващите оператори реализират цикли."
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
+"03090201.xhp\n"
"tit\n"
"help.text"
-msgid "Information"
-msgstr "Информация"
-
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"hd_id3148550\n"
-"1\n"
-"help.text"
-msgid "Information"
-msgstr "Информация"
+msgid "Do...Loop Statement [Runtime]"
+msgstr "Оператор Do…Loop [динамичен]"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3153381\n"
-"102\n"
+"03090201.xhp\n"
+"bm_id3156116\n"
"help.text"
-msgid "You can set the locale used for controlling the formatting numbers, dates and currencies in $[officename] Basic in <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - 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 "Можете да задавате локала, използван за форматиране на числа, дати и парични суми в $[officename] Basic, в <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Свойства</caseinline><defaultinline>Инструменти - Настройки</defaultinline></switchinline> - Езикови настройки - Езици</emph>. Във форматиращите кодове на Basic десетичната точка(<emph>.</emph>) винаги се използва като <emph>заместител</emph> за дробния разделител от локала и се замества автоматично със съответния знак."
+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 "<bookmark_value>Do…Loop, оператор</bookmark_value><bookmark_value>While; Do, цикъл</bookmark_value><bookmark_value>Until</bookmark_value><bookmark_value>цикли</bookmark_value>"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3150870\n"
-"103\n"
+"03090201.xhp\n"
+"hd_id3156116\n"
+"1\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 "Същото важи за настройките за формат на дата, час и валута от локала. Кодът на формат в Basic ще бъде интерпретиран и изписан според настройките на локала."
+msgid "<link href=\"text/sbasic/shared/03090201.xhp\" name=\"Do...Loop Statement [Runtime]\">Do...Loop Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090201.xhp\" name=\"Оператор Do…Loop [динамичен]\">Оператор Do…Loop [динамичен]</link>"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3156424\n"
+"03090201.xhp\n"
+"par_id3109850\n"
"2\n"
"help.text"
-msgid "The color values of the 16 basic colors are as follows:"
-msgstr "Стойностите за шестнайсетте основни цвята са както следва:"
+msgid "Repeats the statements between the Do and the Loop statement while the condition is True or until the condition becomes True."
+msgstr "Повтаря операторите между Do и Loop, докато условието има стойност True или до момента, когато стойността му стане True."
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3153091\n"
+"03090201.xhp\n"
+"hd_id3149119\n"
"3\n"
"help.text"
-msgid "<emph>Color Value</emph>"
-msgstr "<emph>Стойност на цвят</emph>"
+msgid "Syntax"
+msgstr "Синтаксис"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3154319\n"
+"03090201.xhp\n"
+"par_id3155150\n"
"4\n"
"help.text"
-msgid "<emph>Color Name</emph>"
-msgstr "<emph>Име на цвят</emph>"
+msgid "Do [{While | Until} condition = True]"
+msgstr "Do [{While | Until} условие = True]"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3151112\n"
+"03090201.xhp\n"
+"par_id3154422\n"
"5\n"
"help.text"
-msgid "0"
-msgstr "0"
+msgid "statement block"
+msgstr "операторен блок"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3155854\n"
+"03090201.xhp\n"
+"par_id3150789\n"
"6\n"
"help.text"
-msgid "Black"
-msgstr "Черно"
+msgid "[Exit Do]"
+msgstr "[Exit Do]"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3154942\n"
+"03090201.xhp\n"
+"par_id3155805\n"
"7\n"
"help.text"
-msgid "128"
-msgstr "128"
+msgid "statement block"
+msgstr "операторен блок"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3154731\n"
+"03090201.xhp\n"
+"par_id3145090\n"
"8\n"
"help.text"
-msgid "Blue"
-msgstr "Синьо"
+msgid "Loop"
+msgstr "Loop"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3145645\n"
+"03090201.xhp\n"
+"par_id3154749\n"
"9\n"
"help.text"
-msgid "32768"
-msgstr "32768"
+msgid "or"
+msgstr "или"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3149400\n"
+"03090201.xhp\n"
+"par_id3150503\n"
"10\n"
"help.text"
-msgid "Green"
-msgstr "Зелено"
+msgid "Do"
+msgstr "Do"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3150753\n"
+"03090201.xhp\n"
+"par_id3149762\n"
"11\n"
"help.text"
-msgid "32896"
-msgstr "32896"
+msgid "statement block"
+msgstr "операторен блок"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3153765\n"
+"03090201.xhp\n"
+"par_id3150984\n"
"12\n"
"help.text"
-msgid "Cyan"
-msgstr "Синьозелено"
+msgid "[Exit Do]"
+msgstr "[Exit Do]"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3154756\n"
+"03090201.xhp\n"
+"par_id3143228\n"
"13\n"
"help.text"
-msgid "8388608"
-msgstr "8388608"
+msgid "statement block"
+msgstr "операторен блок"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3159266\n"
+"03090201.xhp\n"
+"par_id3149235\n"
"14\n"
"help.text"
-msgid "Red"
-msgstr "Червено"
+msgid "Loop [{While | Until} condition = True]"
+msgstr "Loop [{While | Until} условие = True]"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3163807\n"
+"03090201.xhp\n"
+"hd_id3156024\n"
"15\n"
"help.text"
-msgid "8388736"
-msgstr "8388736"
+msgid "Parameters/Elements"
+msgstr "Параметри/елементи"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3145150\n"
+"03090201.xhp\n"
+"par_id3156344\n"
"16\n"
"help.text"
-msgid "Magenta"
-msgstr "Пурпурно"
+msgid "<emph>Condition:</emph> A comparison, numeric or string expression, that evaluates either True or False."
+msgstr "<emph>Условие:</emph> сравнение, числов или низов израз, чиято стойност е True или False."
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3147002\n"
+"03090201.xhp\n"
+"par_id3149669\n"
"17\n"
"help.text"
-msgid "8421376"
-msgstr "8421376"
+msgid "<emph>Statement block:</emph> Statements that you want to repeat while or until the condition is True."
+msgstr "<emph>Операторен блок:</emph> оператори, които искате да се повтарят докато стойността на условието е True или докато стане True."
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3152778\n"
+"03090201.xhp\n"
+"par_id3150791\n"
"18\n"
"help.text"
-msgid "Yellow"
-msgstr "Жълто"
+msgid "The <emph>Do...Loop</emph> statement executes a loop as long as, or until, a certain condition is True. The condition for exiting the loop must be entered following either the <emph>Do</emph> or the <emph>Loop</emph> statement. The following examples are valid combinations:"
+msgstr "Операторът <emph>Do…Loop</emph> изпълнява цикъл, който трае докато определено условие продължава да бъде удовлетворено (или до момента, когато бъде удовлетворено). Условието за изход от цикъла трябва да бъде въведено след оператора <emph>Do</emph> или <emph>Loop</emph>. Следните примери са валидни комбинации:"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3150088\n"
+"03090201.xhp\n"
+"hd_id3154366\n"
"19\n"
"help.text"
-msgid "8421504"
-msgstr "8421504"
+msgid "Syntax"
+msgstr "Синтаксис"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3159239\n"
+"03090201.xhp\n"
+"par_id3145171\n"
"20\n"
"help.text"
-msgid "White"
-msgstr "Бяло"
+msgid "Do While condition = True"
+msgstr "Do While условие = True"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3150206\n"
+"03090201.xhp\n"
+"par_id3149203\n"
"21\n"
"help.text"
-msgid "12632256"
-msgstr "12632256"
+msgid "...statement block"
+msgstr "…операторен блок"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3149817\n"
+"03090201.xhp\n"
+"par_id3125864\n"
"22\n"
"help.text"
-msgid "Gray"
-msgstr "Сиво"
-
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3150363\n"
-"23\n"
-"help.text"
-msgid "255"
-msgstr "255"
+msgid "Loop"
+msgstr "Loop"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3154576\n"
+"03090201.xhp\n"
+"par_id3154124\n"
"24\n"
"help.text"
-msgid "Light blue"
-msgstr "Светло синьо"
+msgid "The statement block between the Do While and the Loop statements is repeated so long as the condition is true."
+msgstr "Операторите между Do While и Loop се повтарят, докато условието има стойност True."
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3150367\n"
+"03090201.xhp\n"
+"par_id3153968\n"
"25\n"
"help.text"
-msgid "65280"
-msgstr "65280"
+msgid "Do Until condition = True"
+msgstr "Do Until условие = True"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3150202\n"
+"03090201.xhp\n"
+"par_id3154909\n"
"26\n"
"help.text"
-msgid "Light green"
-msgstr "Светло зелено"
+msgid "...statement block"
+msgstr "…операторен блок"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3154487\n"
+"03090201.xhp\n"
+"par_id3159151\n"
"27\n"
"help.text"
-msgid "65535"
-msgstr "65535"
-
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3151332\n"
-"28\n"
-"help.text"
-msgid "Light cyan"
-msgstr "Светло синьозелено"
+msgid "Loop"
+msgstr "Loop"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3148702\n"
+"03090201.xhp\n"
+"par_id3150440\n"
"29\n"
"help.text"
-msgid "16711680"
-msgstr "16711680"
+msgid "The statement block between the Do Until and the Loop statements is repeated if the condition so long as the condition is false."
+msgstr "Операторите между Do Until и Loop се повтарят, докато условието има стойност False."
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3153067\n"
+"03090201.xhp\n"
+"par_id3153952\n"
"30\n"
"help.text"
-msgid "Light red"
-msgstr "Светло червено"
+msgid "Do"
+msgstr "Do"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3153912\n"
+"03090201.xhp\n"
+"par_id3147349\n"
"31\n"
"help.text"
-msgid "16711935"
-msgstr "16711935"
+msgid "...statement block"
+msgstr "…операторен блок"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3159097\n"
+"03090201.xhp\n"
+"par_id3159153\n"
"32\n"
"help.text"
-msgid "Light magenta"
-msgstr "Светло пурпурно"
-
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3155266\n"
-"33\n"
-"help.text"
-msgid "16776960"
-msgstr "16776960"
+msgid "Loop While condition = True"
+msgstr "Loop While условие = True"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3157978\n"
+"03090201.xhp\n"
+"par_id3146985\n"
"34\n"
"help.text"
-msgid "Light yellow"
-msgstr "Светло жълто"
+msgid "The statement block between the Do and the Loop statements repeats so long as the condition is true."
+msgstr "Операторите между Do и Loop се повтарят, докато условието има стойност True."
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3153286\n"
+"03090201.xhp\n"
+"par_id3150488\n"
"35\n"
"help.text"
-msgid "16777215"
-msgstr "16777215"
+msgid "Do"
+msgstr "Do"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3151302\n"
+"03090201.xhp\n"
+"par_id3153189\n"
"36\n"
"help.text"
-msgid "Transparent white"
-msgstr "Прозрачно бяло"
+msgid "...statement block"
+msgstr "…операторен блок"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"hd_id3152869\n"
+"03090201.xhp\n"
+"par_id3155411\n"
"37\n"
"help.text"
-msgid "<variable id=\"errorcode\">Error Codes</variable>"
-msgstr "<variable id=\"errorcode\">Кодове за грешка</variable>"
-
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id315509599\n"
-"help.text"
-msgid "<variable id=\"err1\">1 An exception occurred</variable>"
-msgstr "<variable id=\"err1\">1 Възникнало е изключение</variable>"
-
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3155095\n"
-"38\n"
-"help.text"
-msgid "<variable id=\"err2\">2 Syntax error</variable>"
-msgstr "<variable id=\"err2\">2 Синтактична грешка</variable>"
+msgid "Loop Until condition = True"
+msgstr "Loop Until условие = True"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3149126\n"
+"03090201.xhp\n"
+"par_id3151117\n"
"39\n"
"help.text"
-msgid "<variable id=\"err3\">3 Return without Gosub</variable>"
-msgstr "<variable id=\"err3\">3 Return без Gosub</variable>"
-
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3153976\n"
-"40\n"
-"help.text"
-msgid "<variable id=\"err4\">4 Incorrect entry; please retry</variable>"
-msgstr "<variable id=\"err4\">4 Неправилни входни данни, опитайте отново</variable>"
+msgid "The statement block between the Do and the Loop statements repeats until the condition is true."
+msgstr "Операторите между Do и Loop се повтарят, докато условието има стойност False."
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3150891\n"
+"03090201.xhp\n"
+"par_id3149484\n"
"41\n"
"help.text"
-msgid "<variable id=\"err5\">5 Invalid procedure call</variable>"
-msgstr "<variable id=\"err5\">5 Невалидно извикване на процедура</variable>"
+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 "За да завършите цикъла безусловно, използвайте оператора <emph>Exit Do</emph>. Можете да го поставите където и да е в оператор <emph>Do</emph>…<emph>Loop</emph>. Освен това можете да дефинирате условие за изход със структура <emph>If…Then</emph> както следва:"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3159227\n"
+"03090201.xhp\n"
+"par_id3149262\n"
"42\n"
"help.text"
-msgid "<variable id=\"err6\">6 Overflow</variable>"
-msgstr "<variable id=\"err6\">6 Препълване</variable>"
+msgid "Do..."
+msgstr "Do..."
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3154649\n"
+"03090201.xhp\n"
+"par_id3149298\n"
"43\n"
"help.text"
-msgid "<variable id=\"err7\">7 Not enough memory</variable>"
-msgstr "<variable id=\"err7\">7 Недостиг на памет</variable>"
+msgid "statements"
+msgstr "оператори"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3150050\n"
+"03090201.xhp\n"
+"par_id3145646\n"
"44\n"
"help.text"
-msgid "<variable id=\"err8\">8 Array already dimensioned</variable>"
-msgstr "<variable id=\"err8\">8 Масивът вече е оразмерен</variable>"
+msgid "If condition = True Then Exit Do"
+msgstr "If условие = True Then Exit Do"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3148900\n"
+"03090201.xhp\n"
+"par_id3154490\n"
"45\n"
"help.text"
-msgid "<variable id=\"err9\">9 Index out of defined range</variable>"
-msgstr "<variable id=\"err9\">9 Индекс извън дефинирания обхват</variable>"
+msgid "statements"
+msgstr "оператори"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3153806\n"
+"03090201.xhp\n"
+"par_id3153159\n"
"46\n"
"help.text"
-msgid "<variable id=\"err10\">10 Duplicate definition</variable>"
-msgstr "<variable id=\"err10\">10 Дублирана дефиниция</variable>"
+msgid "Loop..."
+msgstr "Loop…"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3146963\n"
+"03090201.xhp\n"
+"hd_id3147396\n"
"47\n"
"help.text"
-msgid "<variable id=\"err11\">11 Division by zero</variable>"
-msgstr "<variable id=\"err11\">11 Деление на нула</variable>"
-
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3153013\n"
-"48\n"
-"help.text"
-msgid "<variable id=\"err12\">12 Variable not defined</variable>"
-msgstr "<variable id=\"err12\">12 Променливата не е дефинирана</variable>"
-
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3155593\n"
-"49\n"
-"help.text"
-msgid "<variable id=\"err13\">13 Data type mismatch</variable>"
-msgstr "<variable id=\"err13\">13 Несъответствие на типовете</variable>"
-
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3151197\n"
-"50\n"
-"help.text"
-msgid "<variable id=\"err14\">14 Invalid parameter</variable>"
-msgstr "<variable id=\"err14\">14 Невалиден параметър</variable>"
-
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3154710\n"
-"51\n"
-"help.text"
-msgid "<variable id=\"err18\">18 Process interrupted by user</variable>"
-msgstr "<variable id=\"err18\">18 Процесът е прекъснат от потребителя </variable>"
-
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3147504\n"
-"52\n"
-"help.text"
-msgid "<variable id=\"err20\">20 Resume without error</variable>"
-msgstr "<variable id=\"err20\">20 Продължаване без грешка</variable>"
-
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3145319\n"
-"53\n"
-"help.text"
-msgid "<variable id=\"err28\">28 Not enough stack memory</variable>"
-msgstr "<variable id=\"err28\">28 Няма повече памет за стек</variable>"
-
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3146110\n"
-"54\n"
-"help.text"
-msgid "<variable id=\"err35\">35 Sub-procedure or function procedure not defined</variable>"
-msgstr "<variable id=\"err35\">35 Процедурата или функцията не е дефинирана</variable>"
-
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3147246\n"
-"55\n"
-"help.text"
-msgid "<variable id=\"err48\">48 Error loading DLL file</variable>"
-msgstr "<variable id=\"err48\">48 Грешка при зареждане на DLL</variable>"
-
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3146101\n"
-"56\n"
-"help.text"
-msgid "<variable id=\"err49\">49 Wrong DLL call convention</variable>"
-msgstr "<variable id=\"err49\">49 Неправилна конвенция за обръщение към DLL</variable>"
-
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3153957\n"
-"57\n"
-"help.text"
-msgid "<variable id=\"err51\">51 Internal error</variable>"
-msgstr "<variable id=\"err51\">51 Вътрешна грешка</variable>"
-
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3154404\n"
-"58\n"
-"help.text"
-msgid "<variable id=\"err52\">52 Invalid file name or file number</variable>"
-msgstr "<variable id=\"err52\">52 Лошо име или номер на файл</variable>"
-
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3151338\n"
-"59\n"
-"help.text"
-msgid "<variable id=\"err53\">53 File not found</variable>"
-msgstr "<variable id=\"err53\">53 Файлът не е намерен</variable>"
-
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3147298\n"
-"60\n"
-"help.text"
-msgid "<variable id=\"err54\">54 Incorrect file mode</variable>"
-msgstr "<variable id=\"err54\">54 Неправилен режим на файл</variable>"
-
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3148747\n"
-"61\n"
-"help.text"
-msgid "<variable id=\"err55\">55 File already open</variable>"
-msgstr "<variable id=\"err55\">55 Файлът вече е отворен</variable>"
-
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3145233\n"
-"62\n"
-"help.text"
-msgid "<variable id=\"err57\">57 Device I/O error</variable>"
-msgstr "<variable id=\"err57\">57 Входно-изходна грешка на устройство</variable>"
-
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3156399\n"
-"63\n"
-"help.text"
-msgid "<variable id=\"err58\">58 File already exists</variable>"
-msgstr "<variable id=\"err58\">58 Файлът вече съществува</variable>"
-
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3149324\n"
-"64\n"
-"help.text"
-msgid "<variable id=\"err59\">59 Incorrect record length</variable>"
-msgstr "<variable id=\"err59\">59 Неправилна дължина на запис</variable>"
-
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3147409\n"
-"65\n"
-"help.text"
-msgid "<variable id=\"err61\">61 Disk or hard drive full</variable>"
-msgstr "<variable id=\"err61\">61 Дискът е пълен</variable>"
-
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3149146\n"
-"66\n"
-"help.text"
-msgid "<variable id=\"err62\">62 Reading exceeds EOF</variable>"
-msgstr "<variable id=\"err62\">62 Четене след EOF</variable>"
-
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3150456\n"
-"67\n"
-"help.text"
-msgid "<variable id=\"err63\">63 Incorrect record number</variable>"
-msgstr "<variable id=\"err63\">63 Неправилен номер на запис</variable>"
-
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3146883\n"
-"68\n"
-"help.text"
-msgid "<variable id=\"err67\">67 Too many files</variable>"
-msgstr "<variable id=\"err67\">67 Твърде много файлове</variable>"
-
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3146818\n"
-"69\n"
-"help.text"
-msgid "<variable id=\"err68\">68 Device not available</variable>"
-msgstr "<variable id=\"err68\">68 Устройството не е налично</variable>"
-
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3145225\n"
-"70\n"
-"help.text"
-msgid "<variable id=\"err70\">70 Access denied</variable>"
-msgstr "<variable id=\"err70\">70 Отказан достъп</variable>"
+msgid "Example"
+msgstr "Пример"
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3150372\n"
-"71\n"
+"03090202.xhp\n"
+"tit\n"
"help.text"
-msgid "<variable id=\"err71\">71 Disk not ready</variable>"
-msgstr "<variable id=\"err71\">71 Дискът не е готов</variable>"
+msgid "For...Next Statement [Runtime]"
+msgstr "Оператор For…Next [динамичен]"
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3148894\n"
-"72\n"
+"03090202.xhp\n"
+"bm_id3149205\n"
"help.text"
-msgid "<variable id=\"err73\">73 Not implemented</variable>"
-msgstr "<variable id=\"err73\">73 Не е реализирано</variable>"
+msgid "<bookmark_value>For statement</bookmark_value><bookmark_value>To statement</bookmark_value><bookmark_value>Step statement</bookmark_value><bookmark_value>Next statement</bookmark_value>"
+msgstr "<bookmark_value>For, оператор</bookmark_value><bookmark_value>To, оператор</bookmark_value><bookmark_value>Step, оператор</bookmark_value><bookmark_value>Next, оператор</bookmark_value>"
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3152981\n"
-"73\n"
+"03090202.xhp\n"
+"hd_id3149205\n"
+"1\n"
"help.text"
-msgid "<variable id=\"err74\">74 Renaming on different drives impossible</variable>"
-msgstr "<variable id=\"err74\">74 Преименуване към друго устройство не е възможно</variable>"
+msgid "<link href=\"text/sbasic/shared/03090202.xhp\" name=\"For...Next Statement [Runtime]\">For...Next Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090202.xhp\" name=\"Оператор For…Next [динамичен]\">Оператор For…Next [динамичен]</link>"
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3149355\n"
-"74\n"
+"03090202.xhp\n"
+"par_id3143267\n"
+"2\n"
"help.text"
-msgid "<variable id=\"err75\">75 Path/file access error</variable>"
-msgstr "<variable id=\"err75\">75 Грешка при достъп до път/файл</variable>"
+msgid "Repeats the statements between the For...Next block a specified number of times."
+msgstr "Повтаря операторите в блока For…Next зададен брой пъти."
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3150477\n"
-"75\n"
+"03090202.xhp\n"
+"hd_id3156153\n"
+"3\n"
"help.text"
-msgid "<variable id=\"err76\">76 Path not found</variable>"
-msgstr "<variable id=\"err76\">76 Пътят не е намерен</variable>"
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3154678\n"
-"76\n"
+"03090202.xhp\n"
+"par_id3148473\n"
+"4\n"
"help.text"
-msgid "<variable id=\"err91\">91 Object variable not set</variable>"
-msgstr "<variable id=\"err91\">91 Обектна променлива без стойност</variable>"
+msgid "For counter=start To end [Step step]"
+msgstr "For брояч = начало To край [Step стъпка]"
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3149890\n"
-"77\n"
+"03090202.xhp\n"
+"par_id3156024\n"
+"5\n"
"help.text"
-msgid "<variable id=\"err93\">93 Invalid string pattern</variable>"
-msgstr "<variable id=\"err93\">93 Невалиден низ за шаблон</variable>"
+msgid "statement block"
+msgstr "операторен блок"
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3146942\n"
-"78\n"
+"03090202.xhp\n"
+"par_id3146796\n"
+"6\n"
"help.text"
-msgid "<variable id=\"err94\">94 Use of zero not permitted</variable>"
-msgstr "<variable id=\"err94\">94 Не е разрешено използване на нула</variable>"
+msgid "[Exit For]"
+msgstr "[Exit For]"
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469429\n"
+"03090202.xhp\n"
+"par_id3159414\n"
+"7\n"
"help.text"
-msgid "<variable id=\"err250\">250 DDE Error</variable>"
-msgstr "<variable id=\"err250\">250 Грешка в DDE</variable>"
+msgid "statement block"
+msgstr "операторен блок"
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469428\n"
+"03090202.xhp\n"
+"par_id3153897\n"
+"8\n"
"help.text"
-msgid "<variable id=\"err280\">280 Awaiting response to DDE connection</variable>"
-msgstr "<variable id=\"err280\">280 Очаква се отговор на DDE връзка</variable>"
+msgid "Next [counter]"
+msgstr "Next [брояч]"
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469427\n"
+"03090202.xhp\n"
+"hd_id3150400\n"
+"9\n"
"help.text"
-msgid "<variable id=\"err281\">281 No DDE channels available</variable>"
-msgstr "<variable id=\"err281\">281 Няма достъпни канали за DDE</variable>"
+msgid "Variables:"
+msgstr "Променливи:"
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469426\n"
+"03090202.xhp\n"
+"par_id3150358\n"
+"10\n"
"help.text"
-msgid "<variable id=\"err282\">282 No application responded to DDE connect initiation</variable>"
-msgstr "<variable id=\"err282\">282 Никое приложение не е отговорило на опита за връзка през DDE</variable>"
+msgid "<emph>Counter:</emph> Loop counter initially assigned the value to the right of the equal sign (start). Only numeric variables are valid. The loop counter increases or decreases according to the variable Step until End is passed."
+msgstr "<emph>Брояч:</emph> брояч на цикъла, който в началото получава стойността вдясно от знака за равенство (начало). Допустими са само числови стойности. Броячът на цикъла се увеличава или намалява според стойността за стъпка, докато бъде премината крайната стъпка."
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469425\n"
+"03090202.xhp\n"
+"par_id3152455\n"
+"11\n"
"help.text"
-msgid "<variable id=\"err283\">283 Too many applications responded to DDE connect initiation</variable>"
-msgstr "<variable id=\"err283\">283 Твърде много приложения са отговорили на опита за връзка през DDE</variable>"
+msgid "<emph>Start:</emph> Numeric variable that defines the initial value at the beginning of the loop."
+msgstr "<emph>Начало:</emph> числова стойност, указваща началната стойност за цикъла."
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469424\n"
+"03090202.xhp\n"
+"par_id3151043\n"
+"12\n"
"help.text"
-msgid "<variable id=\"err284\">284 DDE channel locked</variable>"
-msgstr "<variable id=\"err284\">284 DDE каналът е заключен</variable>"
+msgid "<emph>End:</emph> Numeric variable that defines the final value at the end of the loop."
+msgstr "<emph>Край:</emph> числова стойност, указваща крайната стойност за цикъла."
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469423\n"
+"03090202.xhp\n"
+"par_id3156281\n"
+"13\n"
"help.text"
-msgid "<variable id=\"err285\">285 External application cannot execute DDE operation</variable>"
-msgstr "<variable id=\"err285\">285 Външно приложение не може да изпълни операция на DDE</variable>"
+msgid "<emph>Step:</emph> Sets the value by which to increase or decrease the loop counter. If Step is not specified, the loop counter is incremented by 1. In this case, End must be greater than Start. If you want to decrease Counter, End must be less than Start, and Step must be assigned a negative value."
+msgstr "<emph>Стъпка:</emph> указва стойността, с която да нараства или намалява броячът на цикъла. Ако не е зададена стъпка, броячът нараства с 1. В този случай крайната стойност трябва да е по-голяма от началната. Ако искате да намалявате брояча, крайната стойност трябва да е по-малка от началната, а стъпката трябва да е отрицателна."
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469422\n"
+"03090202.xhp\n"
+"par_id3154684\n"
+"14\n"
"help.text"
-msgid "<variable id=\"err286\">286 Timeout while waiting for DDE response</variable>"
-msgstr "<variable id=\"err286\">286 Изтече времето за изчакване на отговор от DDE</variable>"
+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 "Цикълът <emph>For…Next</emph> повтаря всички оператори в тялото си толкова пъти, колкото е указано чрез параметрите."
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469421\n"
+"03090202.xhp\n"
+"par_id3147287\n"
+"15\n"
"help.text"
-msgid "<variable id=\"err287\">287 user pressed ESCAPE during DDE operation</variable>"
-msgstr "<variable id=\"err287\">287 Потребителят е натиснал ESCAPE по време на DDE</variable>"
+msgid "As the counter variable is decreased, $[officename] Basic checks if the end value has been reached. As soon as the counter passes the end value, the loop automatically ends."
+msgstr "При намаляване стойността на брояча $[officename] Basic проверява дали е достигната крайната стойност. Когато броячът подмине крайната стойност, цикълът завършва автоматично."
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469420\n"
+"03090202.xhp\n"
+"par_id3159154\n"
+"16\n"
"help.text"
-msgid "<variable id=\"err288\">288 External application busy</variable>"
-msgstr "<variable id=\"err288\">288 Външното приложение е заето</variable>"
+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 "Операторите <emph>For…Next</emph> могат да се влагат един в друг. Ако не зададете променлива след оператора <emph>Next</emph>, <emph>Next</emph> автоматично се отнася за най-близкия оператор <emph>For</emph>."
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469419\n"
+"03090202.xhp\n"
+"par_id3155306\n"
+"17\n"
"help.text"
-msgid "<variable id=\"err289\">289 DDE operation without data</variable>"
-msgstr "<variable id=\"err289\">289 DDE операция без данни</variable>"
+msgid "If you specify an increment of 0, the statements between <emph>For</emph> and <emph>Next</emph> are repeated continuously."
+msgstr "Ако зададете стъпка 0, операторите между <emph>For</emph> и <emph>Next</emph> ще се повтарят постоянно."
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469418\n"
+"03090202.xhp\n"
+"par_id3155854\n"
+"18\n"
"help.text"
-msgid "<variable id=\"err290\">290 Data are in wrong format</variable>"
-msgstr "<variable id=\"err290\">290 Данните са в неправилен формат</variable>"
+msgid "When counting down the counter variable, $[officename] Basic checks for overflow or underflow. The loop ends when Counter exceeds End (positive Step value) or is less than End (negative Step value)."
+msgstr "Когато променя стойността на променливата – брояч, $[officename] Basic проверява за препълване отгоре или отдолу. Цикълът приключва, когато броячът надхвърли крайната стойност (при положителна стъпка) или стане по-малък от нея (при отрицателна стъпка)."
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469417\n"
+"03090202.xhp\n"
+"par_id3145273\n"
+"19\n"
"help.text"
-msgid "<variable id=\"err291\">291 External application has been terminated</variable>"
-msgstr "<variable id=\"err291\">291 Външното приложение е било прекратено</variable>"
+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 "За да завършите цикъла безусловно, използвайте оператора <emph>Exit For</emph>. Можете да го поставите където и да е в цикъла <emph>For…Next</emph>. Можете да дефинирате условие за изход със структура <emph>If…Then</emph> както следва:"
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469416\n"
+"03090202.xhp\n"
+"par_id3153190\n"
+"20\n"
"help.text"
-msgid "<variable id=\"err292\">292 DDE connection interrupted or modified</variable>"
-msgstr "<variable id=\"err292\">292 DDE връзката е била прекъсната или променена</variable>"
+msgid "For..."
+msgstr "For..."
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469415\n"
+"03090202.xhp\n"
+"par_id3149482\n"
+"21\n"
"help.text"
-msgid "<variable id=\"err293\">293 DDE method invoked with no channel open</variable>"
-msgstr "<variable id=\"err293\">293 Извикан е метод на DDE без отворен канал</variable>"
+msgid "statements"
+msgstr "оператори"
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469414\n"
+"03090202.xhp\n"
+"par_id3147124\n"
+"22\n"
"help.text"
-msgid "<variable id=\"err294\">294 Invalid DDE link format</variable>"
-msgstr "<variable id=\"err294\">294 Невалиден формат на DDE връзка</variable>"
+msgid "If condition = True Then Exit For"
+msgstr "If условие = True Then Exit For"
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469413\n"
+"03090202.xhp\n"
+"par_id3153159\n"
+"23\n"
"help.text"
-msgid "<variable id=\"err295\">295 DDE message has been lost</variable>"
-msgstr "<variable id=\"err295\">295 Изгубено съобщение на DDE</variable>"
+msgid "statements"
+msgstr "оператори"
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469412\n"
+"03090202.xhp\n"
+"par_id3154096\n"
+"24\n"
"help.text"
-msgid "<variable id=\"err296\">296 Paste link already performed</variable>"
-msgstr "<variable id=\"err296\">296 Поставянето на връзката вече е извършено</variable>"
+msgid "Next"
+msgstr "Напред"
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469411\n"
+"03090202.xhp\n"
+"par_id3156286\n"
+"25\n"
"help.text"
-msgid "<variable id=\"err297\">297 Link mode cannot be set due to invalid link topic</variable>"
-msgstr "<variable id=\"err297\">297 Не може да се зададе режим на връзката заради невалидна тема</variable>"
+msgid "Note: In nested <emph>For...Next</emph> loops, if you exit a loop unconditionally with <emph>Exit For</emph>, only one loop is exited."
+msgstr "Бележка: При вложени цикли <emph>For…Next</emph> безусловният изход <emph>Exit For</emph> напуска само един цикъл."
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469410\n"
+"03090202.xhp\n"
+"hd_id3148457\n"
+"26\n"
"help.text"
-msgid "<variable id=\"err298\">298 DDE requires the DDEML.DLL file</variable>"
-msgstr "<variable id=\"err298\">298 DDE изисква файла DDEML.DLL</variable>"
+msgid "Example"
+msgstr "Пример"
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3150028\n"
-"79\n"
+"03090202.xhp\n"
+"par_id3151074\n"
+"27\n"
"help.text"
-msgid "<variable id=\"err323\">323 Module cannot be loaded; invalid format</variable>"
-msgstr "<variable id=\"err323\">323 Модулът не може да бъде зареден, невалиден формат</variable>"
+msgid "The following example uses two nested loops to sort a string array with 10 elements ( sEntry() ), that are first filled with various contents:"
+msgstr "В следващия пример са използвани два вложени цикъла, за да се сортира масив с 10 елемента (sEntry()), които първо се запълват с различни стойности:"
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3148434\n"
-"80\n"
+"03090202.xhp\n"
+"par_id3155767\n"
+"42\n"
"help.text"
-msgid "<variable id=\"err341\">341 Invalid object index</variable>"
-msgstr "<variable id=\"err341\">341 Невалиден индекс на обект</variable>"
+msgid "sEntry(0) = \"Jerry\""
+msgstr "sEntry(0) = \"Йордан\""
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3143219\n"
-"81\n"
+"03090202.xhp\n"
+"par_id3153711\n"
+"33\n"
"help.text"
-msgid "<variable id=\"err366\">366 Object is not available</variable>"
-msgstr "<variable id=\"err366\">366 Обектът не е наличен</variable>"
+msgid "sEntry(1) = \"Patty\""
+msgstr "sEntry(1) = \"Петя\""
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3144744\n"
-"82\n"
+"03090202.xhp\n"
+"par_id3148993\n"
+"34\n"
"help.text"
-msgid "<variable id=\"err380\">380 Incorrect property value</variable>"
-msgstr "<variable id=\"err380\">380 Неправилна стойност на свойство</variable>"
+msgid "sEntry(2) = \"Kurt\""
+msgstr "sEntry(2) = \"Камен\""
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3147420\n"
-"83\n"
+"03090202.xhp\n"
+"par_id3156382\n"
+"35\n"
"help.text"
-msgid "<variable id=\"err382\">382 This property is read-only</variable>"
-msgstr "<variable id=\"err382\">382 Свойството е само за четене</variable>"
+msgid "sEntry(3) = \"Thomas\""
+msgstr "sEntry(3) = \"Тома\""
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3147472\n"
-"84\n"
+"03090202.xhp\n"
+"par_id3155174\n"
+"36\n"
"help.text"
-msgid "<variable id=\"err394\">394 This property is write-only</variable>"
-msgstr "<variable id=\"err394\">394 Свойството е само за писане</variable>"
+msgid "sEntry(4) = \"Michael\""
+msgstr "sEntry(4) = \"Михаил\""
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3148583\n"
-"85\n"
+"03090202.xhp\n"
+"par_id3166448\n"
+"37\n"
"help.text"
-msgid "<variable id=\"err420\">420 Invalid object reference</variable>"
-msgstr "<variable id=\"err420\">420 Невалидно обръщение към обект</variable>"
+msgid "sEntry(5) = \"David\""
+msgstr "sEntry(5) = \"Деян\""
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3153329\n"
-"86\n"
+"03090202.xhp\n"
+"par_id3149255\n"
+"38\n"
"help.text"
-msgid "<variable id=\"err423\">423 Property or method not found</variable>"
-msgstr "<variable id=\"err423\">423 Свойството или методът не е намерен</variable>"
+msgid "sEntry(6) = \"Cathy\""
+msgstr "sEntry(6) = \"Катя\""
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3148738\n"
-"87\n"
+"03090202.xhp\n"
+"par_id3149565\n"
+"39\n"
"help.text"
-msgid "<variable id=\"err424\">424 Object required</variable>"
-msgstr "<variable id=\"err424\">424 Изисква се обект</variable>"
+msgid "sEntry(7) = \"Susie\""
+msgstr "sEntry(7) = \"Силвия\""
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3159084\n"
-"88\n"
+"03090202.xhp\n"
+"par_id3145148\n"
+"40\n"
"help.text"
-msgid "<variable id=\"err425\">425 Invalid use of an object</variable>"
-msgstr "<variable id=\"err425\">425 Невалидна употреба на обект</variable>"
+msgid "sEntry(8) = \"Edward\""
+msgstr "sEntry(8) = \"Емил\""
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3146806\n"
-"89\n"
+"03090202.xhp\n"
+"par_id3145229\n"
+"41\n"
"help.text"
-msgid "<variable id=\"err430\">430 OLE Automation is not supported by this object</variable>"
-msgstr "<variable id=\"err430\">430 Обектът не поддържа OLE Automation</variable>"
+msgid "sEntry(9) = \"Christine\""
+msgstr "sEntry(9) = \"Христина\""
-#: 00000003.xhp
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3146130\n"
-"90\n"
+"03090203.xhp\n"
+"tit\n"
"help.text"
-msgid "<variable id=\"err438\">438 This property or method is not supported by the object</variable>"
-msgstr "<variable id=\"err438\">438 Обектът не поддържа това свойство или метод</variable>"
+msgid "While...Wend Statement[Runtime]"
+msgstr "Оператор While…Wend [динамичен]"
-#: 00000003.xhp
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3154374\n"
-"91\n"
+"03090203.xhp\n"
+"bm_id3150400\n"
"help.text"
-msgid "<variable id=\"err440\">440 OLE automation error</variable>"
-msgstr "<variable id=\"err440\">440 Грешка в OLE Automation</variable>"
+msgid "<bookmark_value>While;While...Wend loop</bookmark_value>"
+msgstr "<bookmark_value>While;While…Wend, цикъл</bookmark_value>"
-#: 00000003.xhp
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3149685\n"
-"92\n"
+"03090203.xhp\n"
+"hd_id3150400\n"
+"1\n"
"help.text"
-msgid "<variable id=\"err445\">445 This action is not supported by given object</variable>"
-msgstr "<variable id=\"err445\">445 Обектът не поддържа това действие</variable>"
+msgid "<link href=\"text/sbasic/shared/03090203.xhp\" name=\"While...Wend Statement[Runtime]\">While...Wend Statement[Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090203.xhp\" name=\"Оператор While…Wend [динамичен]\">Оператор While…Wend [динамичен]</link>"
-#: 00000003.xhp
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3150282\n"
-"93\n"
+"03090203.xhp\n"
+"par_id3151211\n"
+"2\n"
"help.text"
-msgid "<variable id=\"err446\">446 Named arguments are not supported by given object</variable>"
-msgstr "<variable id=\"err446\">446 Обектът не поддържа наименувани аргументи</variable>"
+msgid "When a program encounters a While statement, it tests the condition. If the condition is False, the program continues directly following the Wend statement. If the condition is True, the loop is executed until the program finds Wend and then jumps back to the<emph> While </emph>statement. If the condition is still True, the loop is executed again."
+msgstr "Когато изпълнението на програмата стигне до оператор While, условието се проверява. Ако има стойност False, изпълнението продължава директно след оператора Wend. Ако условието има стойност True, цикълът се изпълнява до Wend, след което управлението се връща на оператора <emph>While</emph>. Ако условието още е True, цикълът се изпълнява отново."
-#: 00000003.xhp
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3150142\n"
-"94\n"
+"03090203.xhp\n"
+"par_id3151041\n"
+"3\n"
"help.text"
-msgid "<variable id=\"err447\">447 The current locale setting is not supported by the given object</variable>"
-msgstr "<variable id=\"err447\">447 Обектът не поддържа текущата настройка за локал</variable>"
+msgid "Unlike the <link href=\"text/sbasic/shared/03090201.xhp\" name=\"Do...Loop\">Do...Loop</link> statement, you cannot cancel a <emph>While...Wend</emph> loop with <link href=\"text/sbasic/shared/03090412.xhp\" name=\"Exit\">Exit</link>. Never exit a While...Wend loop with <link href=\"text/sbasic/shared/03090302.xhp\" name=\"GoTo\">GoTo</link>, since this can cause a run-time error."
+msgstr "За разлика от оператора <link href=\"text/sbasic/shared/03090201.xhp\" name=\"Do…Loop\">Do…Loop</link>, цикълът <emph>While…Wend</emph> не може да бъде прекъснат с <link href=\"text/sbasic/shared/03090412.xhp\" name=\"Exit\">Exit</link>. Никога не прекъсвайте цикъл While…Wend с <link href=\"text/sbasic/shared/03090302.xhp\" name=\"GoTo\">GoTo</link>, тъй като това може да предизвика грешка по време на изпълнение."
-#: 00000003.xhp
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3152771\n"
-"95\n"
+"03090203.xhp\n"
+"par_id3145172\n"
+"4\n"
"help.text"
-msgid "<variable id=\"err448\">448 Named argument not found</variable>"
-msgstr "<variable id=\"err448\">448 Наименуваният аргумент не е намерен</variable>"
+msgid "A Do...Loop is more flexible than a While...Wend."
+msgstr "Циклите Do…Loop са по-гъвкави от While…Wend."
-#: 00000003.xhp
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3145145\n"
-"96\n"
+"03090203.xhp\n"
+"hd_id3155133\n"
+"5\n"
"help.text"
-msgid "<variable id=\"err449\">449 Argument is not optional</variable>"
-msgstr "<variable id=\"err449\">449 Аргументът е задължителен</variable>"
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 00000003.xhp
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3154399\n"
-"97\n"
+"03090203.xhp\n"
+"par_id3147288\n"
+"6\n"
"help.text"
-msgid "<variable id=\"err450\">450 Invalid number of arguments</variable>"
-msgstr "<variable id=\"err450\">450 Грешен брой аргументи</variable>"
+msgid "While Condition [Statement] Wend"
+msgstr "While условие [оператор] Wend"
-#: 00000003.xhp
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3146137\n"
-"98\n"
+"03090203.xhp\n"
+"hd_id3153139\n"
+"7\n"
"help.text"
-msgid "<variable id=\"err451\">451 Object is not a list</variable>"
-msgstr "<variable id=\"err451\">451 Обектът не е списък</variable>"
+msgid "Example:"
+msgstr "Пример:"
-#: 00000003.xhp
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3149507\n"
-"99\n"
+"03090203.xhp\n"
+"par_id3159153\n"
+"8\n"
"help.text"
-msgid "<variable id=\"err452\">452 Invalid ordinal number</variable>"
-msgstr "<variable id=\"err452\">452 Невалиден пореден номер</variable>"
+msgid "Sub ExampleWhileWend"
+msgstr "Sub ExampleWhileWend"
-#: 00000003.xhp
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3154566\n"
-"100\n"
+"03090203.xhp\n"
+"par_id3151114\n"
+"9\n"
"help.text"
-msgid "<variable id=\"err453\">453 Specified DLL function not found</variable>"
-msgstr "<variable id=\"err453\">453 Указаната функция в DLL не е намерена</variable>"
+msgid "Dim stext As String"
+msgstr "Dim stext As String"
-#: 00000003.xhp
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3145595\n"
-"101\n"
+"03090203.xhp\n"
+"par_id3153143\n"
+"10\n"
"help.text"
-msgid "<variable id=\"err460\">460 Invalid clipboard format</variable>"
-msgstr "<variable id=\"err460\">460 Невалиден формат на клипборда</variable>"
+msgid "Dim iRun As Integer"
+msgstr "Dim iRun As Integer"
-#: 00000003.xhp
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455951\n"
+"03090203.xhp\n"
+"par_id3155306\n"
+"11\n"
"help.text"
-msgid "<variable id=\"err951\">951 Unexpected symbol:</variable>"
-msgstr "<variable id=\"err951\">951 Неочакван символ:</variable>"
+msgid "sText =\"This Is a short text\""
+msgstr "sText = \"Това е къс текст\""
-#: 00000003.xhp
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455952\n"
+"03090203.xhp\n"
+"par_id3154011\n"
+"12\n"
"help.text"
-msgid "<variable id=\"err952\">952 Expected:</variable>"
-msgstr "<variable id=\"err952\">952 Очаква се:</variable>"
+msgid "iRun = 1"
+msgstr "iRun = 1"
-#: 00000003.xhp
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455953\n"
+"03090203.xhp\n"
+"par_id3147215\n"
+"13\n"
"help.text"
-msgid "<variable id=\"err953\">953 Symbol expected</variable>"
-msgstr "<variable id=\"err953\">953 Очаква се символ</variable>"
+msgid "While iRun < Len(sText)"
+msgstr "While iRun < Len(sText)"
-#: 00000003.xhp
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455954\n"
+"03090203.xhp\n"
+"par_id3147427\n"
+"14\n"
"help.text"
-msgid "<variable id=\"err954\">954 Variable expected</variable>"
-msgstr "<variable id=\"err954\">954 Очаква се променлива</variable>"
+msgid "If Mid(sText,iRun,1 )<> \" \" Then Mid( sText ,iRun, 1, Chr( 1 + Asc( Mid(sText,iRun,1 )) )"
+msgstr "If Mid(sText, iRun, 1) <> \" \" Then Mid(sText, iRun, 1, Chr(1 + Asc(Mid(sText, iRun, 1)))"
-#: 00000003.xhp
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455955\n"
+"03090203.xhp\n"
+"par_id3149665\n"
+"15\n"
"help.text"
-msgid "<variable id=\"err955\">955 Label expected</variable>"
-msgstr "<variable id=\"err955\">955 Очаква се етикет</variable>"
+msgid "iRun = iRun + 1"
+msgstr "iRun = iRun + 1"
-#: 00000003.xhp
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455956\n"
+"03090203.xhp\n"
+"par_id3152939\n"
+"16\n"
"help.text"
-msgid "<variable id=\"err956\">956 Value cannot be applied</variable>"
-msgstr "<variable id=\"err956\">956 Стойността не може да бъде приложена</variable>"
+msgid "Wend"
+msgstr "Wend"
-#: 00000003.xhp
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455957\n"
+"03090203.xhp\n"
+"par_id3153189\n"
+"17\n"
"help.text"
-msgid "<variable id=\"err957\">957 Variable already defined</variable>"
-msgstr "<variable id=\"err957\">957 Променливата вече е дефинирана</variable>"
+msgid "MsgBox sText,0,\"Text encoded\""
+msgstr "MsgBox sText, 0, \"Кодиран текст\""
-#: 00000003.xhp
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455958\n"
+"03090203.xhp\n"
+"par_id3145251\n"
+"18\n"
"help.text"
-msgid "<variable id=\"err958\">958 Sub procedure or function procedure already defined</variable>"
-msgstr "<variable id=\"err958\">958 Подпрограмата или функцията вече е дефинирана</variable>"
+msgid "End Sub"
+msgstr "End Sub"
-#: 00000003.xhp
+#: 03090300.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455959\n"
+"03090300.xhp\n"
+"tit\n"
"help.text"
-msgid "<variable id=\"err959\">959 Label already defined</variable>"
-msgstr "<variable id=\"err959\">959 Етикетът вече е дефиниран</variable>"
+msgid "Jumps"
+msgstr "Преходи"
-#: 00000003.xhp
+#: 03090300.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455960\n"
+"03090300.xhp\n"
+"hd_id3151262\n"
+"1\n"
"help.text"
-msgid "<variable id=\"err960\">960 Variable not found</variable>"
-msgstr "<variable id=\"err960\">960 Променливата не е намерена</variable>"
+msgid "<link href=\"text/sbasic/shared/03090300.xhp\" name=\"Jumps\">Jumps</link>"
+msgstr "<link href=\"text/sbasic/shared/03090300.xhp\" name=\"Преходи\">Преходи</link>"
-#: 00000003.xhp
+#: 03090300.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455961\n"
+"03090300.xhp\n"
+"par_id3148983\n"
+"2\n"
"help.text"
-msgid "<variable id=\"err961\">961 Array or procedure not found</variable>"
-msgstr "<variable id=\"err961\">961 Масивът или процедурата не е намерена</variable>"
+msgid "The following statements execute jumps."
+msgstr "Следващите оператори служат за организиране на преходи."
-#: 00000003.xhp
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455962\n"
+"03090301.xhp\n"
+"tit\n"
"help.text"
-msgid "<variable id=\"err962\">962 Procedure not found</variable>"
-msgstr "<variable id=\"err962\">962 Процедурата не е намерена</variable>"
+msgid "GoSub...Return Statement [Runtime]"
+msgstr "Оператор GoSub…Return [динамичен]"
-#: 00000003.xhp
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455963\n"
+"03090301.xhp\n"
+"bm_id3147242\n"
"help.text"
-msgid "<variable id=\"err963\">963 Label undefined</variable>"
-msgstr "<variable id=\"err963\">963 Етикетът не е дефиниран</variable>"
+msgid "<bookmark_value>GoSub...Return statement</bookmark_value>"
+msgstr "<bookmark_value>GoSub…Return, оператор</bookmark_value>"
-#: 00000003.xhp
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455964\n"
+"03090301.xhp\n"
+"hd_id3147242\n"
+"1\n"
"help.text"
-msgid "<variable id=\"err964\">964 Unknown data type</variable>"
-msgstr "<variable id=\"err964\">964 Неизвестен тип на данните</variable>"
+msgid "<link href=\"text/sbasic/shared/03090301.xhp\" name=\"GoSub...Return Statement [Runtime]\">GoSub...Return Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090301.xhp\" name=\"Оператор GoSub…Return [динамичен]\">Оператор GoSub…Return [динамичен]</link>"
-#: 00000003.xhp
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455965\n"
+"03090301.xhp\n"
+"par_id3145316\n"
+"2\n"
"help.text"
-msgid "<variable id=\"err965\">965 Exit expected</variable>"
-msgstr "<variable id=\"err965\">965 Очаква се Exit</variable>"
+msgid "Calls a subroutine that is indicated by a label from a subroutine or a function. The statements following the label are executed until the next Return statement. Afterwards, the program continues with the statement that follows the <emph>GoSub </emph>statement."
+msgstr "Извиква подпрограма, зададена с етикет на процедура или функция. Операторите, следващи етикета, се изпълняват до следващия оператор Return. След това изпълнението продължава с оператора, следващ <emph>GoSub</emph>."
-#: 00000003.xhp
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455966\n"
+"03090301.xhp\n"
+"hd_id3145609\n"
+"3\n"
"help.text"
-msgid "<variable id=\"err966\">966 Statement block still open: missing</variable>"
-msgstr "<variable id=\"err966\">966 Все още е отворен блок на оператор: липсва</variable>"
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 00000003.xhp
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455967\n"
+"03090301.xhp\n"
+"par_id3145069\n"
+"4\n"
"help.text"
-msgid "<variable id=\"err967\">967 Parentheses do not match</variable>"
-msgstr "<variable id=\"err967\">967 Скобите не си съответстват</variable>"
+msgid "see Parameters"
+msgstr "виж Параметри"
-#: 00000003.xhp
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455968\n"
+"03090301.xhp\n"
+"hd_id3147265\n"
+"5\n"
"help.text"
-msgid "<variable id=\"err968\">968 Symbol already defined differently</variable>"
-msgstr "<variable id=\"err968\">968 Символът вече е дефиниран различно</variable>"
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 00000003.xhp
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455969\n"
+"03090301.xhp\n"
+"par_id3148664\n"
+"6\n"
"help.text"
-msgid "<variable id=\"err969\">969 Parameters do not correspond to procedure</variable>"
-msgstr "<variable id=\"err969\">969 Параметрите не отговарят на процедурата</variable>"
+msgid "Sub/Function"
+msgstr "Sub/Function"
-#: 00000003.xhp
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455970\n"
+"03090301.xhp\n"
+"par_id3150400\n"
+"7\n"
"help.text"
-msgid "<variable id=\"err970\">970 Invalid character in number</variable>"
-msgstr "<variable id=\"err970\">970 Невалиден знак в число</variable>"
+msgid "statement block"
+msgstr "операторен блок"
-#: 00000003.xhp
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455971\n"
+"03090301.xhp\n"
+"par_id3154140\n"
+"8\n"
"help.text"
-msgid "<variable id=\"err971\">971 Array must be dimensioned</variable>"
-msgstr "<variable id=\"err971\">971 Масивът трябва да бъде оразмерен</variable>"
+msgid "Label"
+msgstr "Надпис"
-#: 00000003.xhp
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455972\n"
+"03090301.xhp\n"
+"par_id3150869\n"
+"9\n"
"help.text"
-msgid "<variable id=\"err972\">972 Else/Endif without If</variable>"
-msgstr "<variable id=\"err972\">972 Else/Endif без If</variable>"
+msgid "statement block"
+msgstr "операторен блок"
-#: 00000003.xhp
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455973\n"
+"03090301.xhp\n"
+"par_id3154909\n"
+"10\n"
"help.text"
-msgid "<variable id=\"err973\">973 not allowed within a procedure</variable>"
-msgstr "<variable id=\"err973\">973 не се допуска в процедура</variable>"
+msgid "GoSub Label"
+msgstr "GoSub Етикет"
-#: 00000003.xhp
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455974\n"
+"03090301.xhp\n"
+"par_id3153969\n"
+"11\n"
"help.text"
-msgid "<variable id=\"err974\">974 not allowed outside a procedure</variable>"
-msgstr "<variable id=\"err974\">974 не се допуска извън процедура</variable>"
+msgid "Exit Sub/Function"
+msgstr "Exit Sub/Function"
-#: 00000003.xhp
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455975\n"
+"03090301.xhp\n"
+"par_id3154685\n"
+"12\n"
"help.text"
-msgid "<variable id=\"err975\">975 Dimension specifications do not match</variable>"
-msgstr "<variable id=\"err975\">975 Спецификациите за размерност не си съответстват</variable>"
+msgid "Label:"
+msgstr "Етикет:"
-#: 00000003.xhp
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455976\n"
+"03090301.xhp\n"
+"par_id3145786\n"
+"13\n"
"help.text"
-msgid "<variable id=\"err976\">976 Unknown option:</variable>"
-msgstr "<variable id=\"err976\">976 Непозната настройка:</variable>"
+msgid "statement block"
+msgstr "операторен блок"
-#: 00000003.xhp
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455977\n"
+"03090301.xhp\n"
+"par_id3159252\n"
+"14\n"
"help.text"
-msgid "<variable id=\"err977\">977 Constant redefined</variable>"
-msgstr "<variable id=\"err977\">977 Повторно дефинирана константа</variable>"
+msgid "Return"
+msgstr "Return"
-#: 00000003.xhp
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455978\n"
+"03090301.xhp\n"
+"par_id3154321\n"
+"15\n"
"help.text"
-msgid "<variable id=\"err978\">978 Program too large</variable>"
-msgstr "<variable id=\"err978\">978 Програмата е твърде голяма</variable>"
+msgid "End Sub/Function"
+msgstr "End Sub/Function"
-#: 00000003.xhp
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455979\n"
+"03090301.xhp\n"
+"par_id3147318\n"
+"16\n"
"help.text"
-msgid "<variable id=\"err979\">979 Strings or arrays not permitted</variable>"
-msgstr "<variable id=\"err979\">979 Не са разрешени низове и масиви</variable>"
+msgid "The <emph>GoSub</emph> 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 "Операторът <emph>GoSub</emph> извиква локална подпрограма, зададена с етикет в рамките на процедура или функция. Името на етикета трябва да завършва с двоеточие (\":\")."
-#: 00000003.xhp
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455980\n"
+"03090301.xhp\n"
+"par_id3153190\n"
+"17\n"
"help.text"
-msgid "<variable id=\"err1000\">1000 Object does not have this property</variable>"
-msgstr "<variable id=\"err1000\">1000 Обектът няма такова свойство</variable>"
+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 "Ако изпълнението стигне до оператор <emph>Return</emph>, който не е предшестван от <emph>GoSub</emph>, $[officename] Basic показва съобщение за грешка. Използвайте <emph>Exit Sub</emph> или <emph>Exit Function</emph>, за да гарантирате, че изпълнението ще напусне процедурата или функцията преди следващия оператор Return."
-#: 00000003.xhp
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455981\n"
+"03090301.xhp\n"
+"par_id3145799\n"
+"19\n"
"help.text"
-msgid "<variable id=\"err1001\">1001 Object does not have this method</variable>"
-msgstr "<variable id=\"err1001\">1001 Обектът няма такъв метод</variable>"
+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 "Следващият пример илюстрира употребата на <emph>GoSub</emph> и <emph>Return</emph>. Чрез двукратно изпълняване на част от кода програмата изчислява квадратния корен на две числа, въведени от потребителя."
-#: 00000003.xhp
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455982\n"
+"03090301.xhp\n"
+"hd_id3156284\n"
+"20\n"
"help.text"
-msgid "<variable id=\"err1002\">1002 Required argument lacking</variable>"
-msgstr "<variable id=\"err1002\">1002 Пропуснат е задължителен аргумент</variable>"
+msgid "Example:"
+msgstr "Пример:"
-#: 00000003.xhp
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455983\n"
+"03090301.xhp\n"
+"par_id3146970\n"
+"25\n"
"help.text"
-msgid "<variable id=\"err1003\">1003 Invalid number of arguments</variable>"
-msgstr "<variable id=\"err1003\">1003 Грешен брой аргументи</variable>"
+msgid "iInputa = Int(InputBox$ \"Enter the first number: \",\"NumberInput\"))"
+msgstr "iInputa = Int(InputBox$ \"Въведете първото число: \", \"Въвеждане\"))"
-#: 00000003.xhp
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455984\n"
+"03090301.xhp\n"
+"par_id3150329\n"
+"26\n"
"help.text"
-msgid "<variable id=\"err1004\">1004 Error executing a method</variable>"
-msgstr "<variable id=\"err1004\">1004 Грешка при изпълнение на метод</variable>"
+msgid "iInputb = Int(InputBox$ \"Enter the second number: \",\"NumberInput\"))"
+msgstr "iInputb = Int(InputBox$ \"Въведете второто число: \", \"Въвеждане\"))"
-#: 00000003.xhp
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455985\n"
+"03090301.xhp\n"
+"par_id3154756\n"
+"29\n"
"help.text"
-msgid "<variable id=\"err1005\">1005 Unable to set property</variable>"
-msgstr "<variable id=\"err1005\">1005 Не е възможно да се зададе свойство</variable>"
+msgid "Print \"The square root of\";iInputa;\" is\";iInputc"
+msgstr "Print \"Квадратният корен на\"; iInputa; \" е \"; iInputc"
-#: 00000003.xhp
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455986\n"
+"03090301.xhp\n"
+"par_id3147340\n"
+"32\n"
"help.text"
-msgid "<variable id=\"err1006\">1006 Unable to determine property</variable>"
-msgstr "<variable id=\"err1006\">1006 Не е възможно да се определи свойство</variable>"
+msgid "Print \"The square root of\";iInputb;\" is\";iInputc"
+msgstr "Print \"Квадратният корен на \"; iInputb; \" е \"; iInputc"
-#: 03120306.xhp
+#: 03090302.xhp
msgctxt ""
-"03120306.xhp\n"
+"03090302.xhp\n"
"tit\n"
"help.text"
-msgid "Mid Function, Mid Statement [Runtime]"
-msgstr "Функция Mid и оператор Mid [динамични]"
+msgid "GoTo Statement [Runtime]"
+msgstr "GoTo Statement [Runtime]"
-#: 03120306.xhp
+#: 03090302.xhp
msgctxt ""
-"03120306.xhp\n"
-"bm_id3143268\n"
+"03090302.xhp\n"
+"bm_id3159413\n"
"help.text"
-msgid "<bookmark_value>Mid function</bookmark_value><bookmark_value>Mid statement</bookmark_value>"
-msgstr "<bookmark_value>Mid, функция</bookmark_value><bookmark_value>Mid, оператор</bookmark_value>"
+msgid "<bookmark_value>GoTo statement</bookmark_value>"
+msgstr "<bookmark_value>GoTo, оператор</bookmark_value>"
-#: 03120306.xhp
+#: 03090302.xhp
msgctxt ""
-"03120306.xhp\n"
-"hd_id3143268\n"
+"03090302.xhp\n"
+"hd_id3159413\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120306.xhp\" name=\"Mid Function, Mid Statement [Runtime]\">Mid Function, Mid Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120306.xhp\" name=\"Функция Mid и оператор Mid [динамични]\">Функция Mid и оператор Mid [динамични]</link>"
+msgid "<link href=\"text/sbasic/shared/03090302.xhp\" name=\"GoTo Statement [Runtime]\">GoTo Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090302.xhp\" name=\"Оператор GoTo [динамичен]\">Оператор GoTo [динамичен]</link>"
-#: 03120306.xhp
+#: 03090302.xhp
msgctxt ""
-"03120306.xhp\n"
-"par_id3148473\n"
+"03090302.xhp\n"
+"par_id3153379\n"
"2\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 "Връща указаната част от стойност – низ (<emph>функция Mid</emph>) или заменя част от низ с друг низ (<emph>оператор Mid</emph>)."
+msgid "Continues program execution within a Sub or Function at the procedure line indicated by a label."
+msgstr "Продължава изпълнението на програма в процедура или функция от реда, указан чрез етикет."
-#: 03120306.xhp
+#: 03090302.xhp
msgctxt ""
-"03120306.xhp\n"
-"hd_id3154285\n"
+"03090302.xhp\n"
+"hd_id3149656\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03120306.xhp
+#: 03090302.xhp
msgctxt ""
-"03120306.xhp\n"
-"par_id3147530\n"
+"03090302.xhp\n"
+"par_id3154367\n"
"4\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 "Mid (Text As String, Start As Long [, Length As Long]) или Mid (Text As String, Start As Long, Length As Long, Text As String)"
+msgid "see Parameters"
+msgstr "виж Параметри"
-#: 03120306.xhp
+#: 03090302.xhp
msgctxt ""
-"03120306.xhp\n"
-"hd_id3145068\n"
+"03090302.xhp\n"
+"hd_id3150870\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Връщана стройност:"
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 03120306.xhp
+#: 03090302.xhp
msgctxt ""
-"03120306.xhp\n"
-"par_id3149295\n"
+"03090302.xhp\n"
+"par_id3156214\n"
"6\n"
"help.text"
-msgid "String (only by Function)"
-msgstr "String (само то функция)"
+msgid "Sub/Function"
+msgstr "Sub/Function"
-#: 03120306.xhp
+#: 03090302.xhp
msgctxt ""
-"03120306.xhp\n"
-"hd_id3154347\n"
+"03090302.xhp\n"
+"par_id3156424\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "statement block"
+msgstr "операторен блок"
-#: 03120306.xhp
+#: 03090302.xhp
msgctxt ""
-"03120306.xhp\n"
-"par_id3148664\n"
+"03090302.xhp\n"
+"par_id3154685\n"
"8\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression that you want to modify."
-msgstr "<emph>Text:</emph> низов израз, чиято стойност да бъде променена."
+msgid "Label1"
+msgstr "Етикет1"
-#: 03120306.xhp
+#: 03090302.xhp
msgctxt ""
-"03120306.xhp\n"
-"par_id3150359\n"
+"03090302.xhp\n"
+"par_id3145786\n"
"9\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 maximum allowed value is 65535."
-msgstr "<emph>Start:</emph> числов израз, който задава началната позиция за замяна на текст или за извличане на резултат. Максималната разрешена стойност е 65535."
+msgid "<emph>Label2:</emph>"
+msgstr "<emph>Етикет2:</emph>"
-#: 03120306.xhp
+#: 03090302.xhp
msgctxt ""
-"03120306.xhp\n"
-"par_id3148451\n"
+"03090302.xhp\n"
+"par_id3161832\n"
"10\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 65535."
-msgstr "<emph>Length:</emph> числов израз, който задава желания брой на знаците в резултата. Максималната разрешена стойност е 65535."
+msgid "statement block"
+msgstr "операторен блок"
-#: 03120306.xhp
+#: 03090302.xhp
msgctxt ""
-"03120306.xhp\n"
-"par_id3125864\n"
+"03090302.xhp\n"
+"par_id3146120\n"
"11\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 "Ако параметърът Length бъде пропуснат във <emph>функцията Mid</emph>, се връщат всички знаци от началната позиция до края на низа."
+msgid "Exit Sub"
+msgstr "Exit Sub"
-#: 03120306.xhp
+#: 03090302.xhp
msgctxt ""
-"03120306.xhp\n"
-"par_id3144762\n"
+"03090302.xhp\n"
+"par_id3150010\n"
"12\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 "Ако параметърът Length в <emph>оператора Mid</emph> е по-малък от дължината на текста, който трябва да бъде заменен, текстът се скъсява до зададената дължина."
+msgid "<emph>Label1:</emph>"
+msgstr "<emph>Етикет1:</emph>"
-#: 03120306.xhp
+#: 03090302.xhp
msgctxt ""
-"03120306.xhp\n"
-"par_id3150769\n"
+"03090302.xhp\n"
+"par_id3152462\n"
"13\n"
"help.text"
-msgid "<emph>Text:</emph> The string to replace the string expression (<emph>Mid statement</emph>)."
-msgstr "<emph>Text:</emph> низът, с който да се замести указаната част от стойността (<emph>оператор Mid</emph>)."
+msgid "statement block"
+msgstr "операторен блок"
-#: 03120306.xhp
+#: 03090302.xhp
msgctxt ""
-"03120306.xhp\n"
-"hd_id3149560\n"
+"03090302.xhp\n"
+"par_id3149664\n"
"14\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
-
-#: 03120306.xhp
-msgctxt ""
-"03120306.xhp\n"
-"par_id3153189\n"
-"18\n"
-"help.text"
-msgid "sInput = InputBox(\"Please input a date in the international format 'YYYY-MM-DD'\")"
-msgstr "sInput = InputBox(\"Моля, въведете дата в международния формат „ГГГГ-ММ-ДД“\")"
-
-#: 03030106.xhp
-msgctxt ""
-"03030106.xhp\n"
-"tit\n"
-"help.text"
-msgid "Year Function [Runtime]"
-msgstr "Функция Year [динамична]"
-
-#: 03030106.xhp
-msgctxt ""
-"03030106.xhp\n"
-"bm_id3148664\n"
-"help.text"
-msgid "<bookmark_value>Year function</bookmark_value>"
-msgstr "<bookmark_value>Year, функция</bookmark_value>"
-
-#: 03030106.xhp
-msgctxt ""
-"03030106.xhp\n"
-"hd_id3148664\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03030106.xhp\" name=\"Year Function [Runtime]\">Year Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03030106.xhp\" name=\"Функция Year [динамична]\">Функция Year [динамична]</link>"
-
-#: 03030106.xhp
-msgctxt ""
-"03030106.xhp\n"
-"par_id3149655\n"
-"2\n"
-"help.text"
-msgid "Returns the year from a serial date number that is generated by the DateSerial or the DateValue function."
-msgstr "Връща годината по зададено серийно число на дата, генерирано от функцията DateSerial или DateValue."
-
-#: 03030106.xhp
-msgctxt ""
-"03030106.xhp\n"
-"hd_id3154125\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
-
-#: 03030106.xhp
-msgctxt ""
-"03030106.xhp\n"
-"par_id3147229\n"
-"4\n"
-"help.text"
-msgid "Year (Number)"
-msgstr "Year (Number)"
-
-#: 03030106.xhp
-msgctxt ""
-"03030106.xhp\n"
-"hd_id3154685\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Връщана стойност:"
-
-#: 03030106.xhp
-msgctxt ""
-"03030106.xhp\n"
-"par_id3153970\n"
-"6\n"
-"help.text"
-msgid "Integer"
-msgstr "Integer"
-
-#: 03030106.xhp
-msgctxt ""
-"03030106.xhp\n"
-"hd_id3150440\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "GoTo Label2"
+msgstr "GoTo Етикет2"
-#: 03030106.xhp
+#: 03090302.xhp
msgctxt ""
-"03030106.xhp\n"
-"par_id3163712\n"
-"8\n"
+"03090302.xhp\n"
+"par_id3152886\n"
+"15\n"
"help.text"
-msgid "<emph>Number:</emph> Integer expression that contains the serial date number that is used to calculate the year."
-msgstr "<emph>Number:</emph> числов израз – серийно число на дата, за която желаете да изчислите годината."
+msgid "End Sub/Function"
+msgstr "End Sub/Function"
-#: 03030106.xhp
+#: 03090302.xhp
msgctxt ""
-"03030106.xhp\n"
+"03090302.xhp\n"
"par_id3152596\n"
-"9\n"
+"16\n"
"help.text"
-msgid "This function is the opposite of the <emph>DateSerial </emph>function, and returns the year of a serial date. For example, the expression:"
-msgstr "Тази функция е противоположна на <emph>DateSerial</emph> и връща годината по зададено серийно число на дата. Например изразът"
+msgid "Use the GoTo statement to instruct $[officename] Basic to continue program execution at another place within the procedure. The position must be indicated by a label. To set a label, assign a name, and then and end it with a colon (\":\")."
+msgstr "Чрез оператора GoTo можете да укажете на $[officename] Basic да продължи изпълнението на програмата на друго място в текущата процедура. Позицията трябва да е обозначена с етикет. За да зададете етикет, напишете име и го завършете с двоеточие (\":\")."
-#: 03030106.xhp
+#: 03090302.xhp
msgctxt ""
-"03030106.xhp\n"
-"par_id3149483\n"
-"11\n"
+"03090302.xhp\n"
+"par_id3155416\n"
+"17\n"
"help.text"
-msgid "returns the value 1994."
-msgstr "връща стойността 1994."
+msgid "You cannot use the GoTo statement to jump out of a Sub or Function."
+msgstr "Чрез оператора GoTo не можете да осъществите преход навън от процедура или функция."
-#: 03030106.xhp
+#: 03090302.xhp
msgctxt ""
-"03030106.xhp\n"
-"hd_id3146985\n"
-"12\n"
+"03090302.xhp\n"
+"hd_id3154731\n"
+"19\n"
"help.text"
msgid "Example:"
msgstr "Пример:"
-#: 03030106.xhp
+#: 03090302.xhp
msgctxt ""
-"03030106.xhp\n"
-"par_id3153363\n"
-"14\n"
+"03090302.xhp\n"
+"par_id6967035\n"
"help.text"
-msgid "MsgBox \"\" & Year(Now) ,64,\"Current year\""
-msgstr "MsgBox \"\" & Year(Now), 64, \"Текуща година\""
+msgid "see Parameters"
+msgstr "виж Параметри"
-#: 03080601.xhp
+#: 03090303.xhp
msgctxt ""
-"03080601.xhp\n"
+"03090303.xhp\n"
"tit\n"
"help.text"
-msgid "Abs Function [Runtime]"
-msgstr "Функция Abs [динамична]"
+msgid "On...GoSub Statement; On...GoTo Statement [Runtime]"
+msgstr "Оператори On…GoSub и On…GoTo [динамични]"
-#: 03080601.xhp
+#: 03090303.xhp
msgctxt ""
-"03080601.xhp\n"
-"bm_id3159201\n"
+"03090303.xhp\n"
+"bm_id3153897\n"
"help.text"
-msgid "<bookmark_value>Abs function</bookmark_value>"
-msgstr "<bookmark_value>Abs function</bookmark_value>"
+msgid "<bookmark_value>On...GoSub statement</bookmark_value><bookmark_value>On...GoTo statement</bookmark_value>"
+msgstr "<bookmark_value>On…GoSub, оператор</bookmark_value><bookmark_value>On…GoTo, оператор</bookmark_value>"
-#: 03080601.xhp
+#: 03090303.xhp
msgctxt ""
-"03080601.xhp\n"
-"hd_id3159201\n"
+"03090303.xhp\n"
+"hd_id3153897\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080601.xhp\" name=\"Abs Function [Runtime]\">Abs Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03080601.xhp\" name=\"Функция Abs [динамична]\">Функция Abs [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03090303.xhp\" name=\"On...GoSub Statement; On...GoTo Statement [Runtime]\">On...GoSub Statement; On...GoTo Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090303.xhp\" name=\"Оператори On…GoSub и On…GoTo [динамични]\">Оператори On…GoSub и On…GoTo [динамични]</link>"
-#: 03080601.xhp
+#: 03090303.xhp
msgctxt ""
-"03080601.xhp\n"
-"par_id3153394\n"
+"03090303.xhp\n"
+"par_id3150359\n"
"2\n"
"help.text"
-msgid "Returns the absolute value of a numeric expression."
-msgstr "Връща абсолютната стойност на числов израз."
+msgid "Branches to one of several specified lines in the program code, depending on the value of a numeric expression."
+msgstr "Извършва преход към един от няколко зададени реда от програмния код според стойността на числов израз."
-#: 03080601.xhp
+#: 03090303.xhp
msgctxt ""
-"03080601.xhp\n"
-"hd_id3149233\n"
+"03090303.xhp\n"
+"hd_id3148798\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03080601.xhp
+#: 03090303.xhp
msgctxt ""
-"03080601.xhp\n"
-"par_id3147573\n"
+"03090303.xhp\n"
+"par_id3154366\n"
"4\n"
"help.text"
-msgid "Abs (Number)"
-msgstr "Abs (Number)"
+msgid "On N GoSub Label1[, Label2[, Label3[,...]]]"
+msgstr "On NumExpression GoSub Label1[, Label2[, Label3[,...]]]"
-#: 03080601.xhp
+#: 03090303.xhp
msgctxt ""
-"03080601.xhp\n"
-"hd_id3156152\n"
+"03090303.xhp\n"
+"par_id3150769\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Връщана стойност:"
+msgid "On NumExpression GoTo Label1[, Label2[, Label3[,...]]]"
+msgstr "On NumExpression GoTo Label1[, Label2[, Label3[,...]]]"
-#: 03080601.xhp
+#: 03090303.xhp
msgctxt ""
-"03080601.xhp\n"
-"par_id3149670\n"
+"03090303.xhp\n"
+"hd_id3156215\n"
"6\n"
"help.text"
-msgid "Double"
-msgstr "Double"
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 03080601.xhp
+#: 03090303.xhp
msgctxt ""
-"03080601.xhp\n"
-"hd_id3154924\n"
+"03090303.xhp\n"
+"par_id3148673\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "<emph>NumExpression:</emph> Any numeric expression between 0 and 255 that determines which of the lines the program branches to. If NumExpression is 0, the statement is not executed. If NumExpression 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 "<emph>NumExpression:</emph> числов израз със стойност между 0 и 255, който определя към кой ред да се извърши преход. Ако NumExpression е 0, операторът не се изпълнява. Ако NumExpression е по-голям от 0, управлението преминава към етикета, чиято позиция съответства на стойността (1 = първи етикет; 2 = втори етикет)."
-#: 03080601.xhp
+#: 03090303.xhp
msgctxt ""
-"03080601.xhp\n"
-"par_id3154347\n"
+"03090303.xhp\n"
+"par_id3153194\n"
"8\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 "<emph>Number:</emph> числов израз, чиято абсолютна стойност искате да намерите. Положителните числа и 0 не се променят, а отрицателните се превръщат в положителни."
+msgid "<emph>Label:</emph> Target line according to<emph> GoTo </emph>or <emph>GoSub</emph> structure."
+msgstr "<emph>Label:</emph> ред – местоназначение според структурата на <emph>GoTo</emph> или <emph>GoSub</emph>."
-#: 03080601.xhp
+#: 03090303.xhp
msgctxt ""
-"03080601.xhp\n"
-"par_id3153381\n"
+"03090303.xhp\n"
+"par_id3156442\n"
"9\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 "В следващия пример функцията Abs се използва за изчисляване на разликата между двете стойности. Редът на въвеждането не е от значение."
+msgid "The <emph>GoTo</emph> or <emph>GoSub </emph>conventions are valid."
+msgstr "Важат правилата за <emph>GoTo</emph> или <emph>GoSub</emph>."
-#: 03080601.xhp
+#: 03090303.xhp
msgctxt ""
-"03080601.xhp\n"
-"hd_id3148451\n"
+"03090303.xhp\n"
+"hd_id3148645\n"
"10\n"
"help.text"
msgid "Example:"
msgstr "Пример:"
-#: 03080601.xhp
+#: 03090303.xhp
msgctxt ""
-"03080601.xhp\n"
-"par_id3145786\n"
-"14\n"
+"03090303.xhp\n"
+"par_id3153948\n"
+"21\n"
"help.text"
-msgid "siW1 = Int(InputBox$ (\"Please enter the first amount\",\"Value Input\"))"
-msgstr "siW1 = Int(InputBox$ (\"Моля, въведете първото количество\",\"Входна стойност\"))"
+msgid "sVar =sVar & \" From Sub 1 to\" : Return"
+msgstr "sVar =sVar & \" From Sub 1 to \" : Return"
-#: 03080601.xhp
+#: 03090303.xhp
msgctxt ""
-"03080601.xhp\n"
-"par_id3149561\n"
-"15\n"
+"03090303.xhp\n"
+"par_id3153708\n"
+"23\n"
"help.text"
-msgid "siW2 = Int(InputBox$ (\"Please enter the second amount\",\"Value Input\"))"
-msgstr "siW2 = Int(InputBox$ (\"Моля, въведете второто количество\",\"Входна стойност\"))"
+msgid "sVar =sVar & \" From Sub 2 to\" : Return"
+msgstr "sVar = sVar & \" From Sub 2 to \" : Return"
-#: 03080601.xhp
+#: 03090303.xhp
msgctxt ""
-"03080601.xhp\n"
-"par_id3145750\n"
-"16\n"
+"03090303.xhp\n"
+"par_id3150321\n"
+"25\n"
"help.text"
-msgid "Print \"The difference is \"; Abs(siW1 - siW2)"
-msgstr "Print \"Разликата е \"; Abs(siW1 - siW2)"
+msgid "sVar =sVar & \" Label 1\" : GoTo Ende"
+msgstr "sVar = sVar & \" Label 1\" : GoTo Ende"
-#: 03104000.xhp
+#: 03090303.xhp
msgctxt ""
-"03104000.xhp\n"
-"tit\n"
+"03090303.xhp\n"
+"par_id3155764\n"
+"27\n"
"help.text"
-msgid "IsMissing function [Runtime]"
-msgstr "Функция IsMissing [динамична]"
+msgid "sVar =sVar & \" Label 2\""
+msgstr "sVar = sVar & \" Label 2\""
-#: 03104000.xhp
+#: 03090400.xhp
msgctxt ""
-"03104000.xhp\n"
-"bm_id3153527\n"
+"03090400.xhp\n"
+"tit\n"
"help.text"
-msgid "<bookmark_value>IsMissing function</bookmark_value>"
-msgstr "<bookmark_value>IsMissing, функция</bookmark_value>"
+msgid "Further Statements"
+msgstr "Други оператори"
-#: 03104000.xhp
+#: 03090400.xhp
msgctxt ""
-"03104000.xhp\n"
-"hd_id3153527\n"
+"03090400.xhp\n"
+"hd_id3145316\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03104000.xhp\" name=\"IsMissing function [Runtime]\">IsMissing function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03104000.xhp\" name=\"Функция IsMissing [динамична]\">Функция IsMissing [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03090400.xhp\" name=\"Further Statements\">Further Statements</link>"
+msgstr "<link href=\"text/sbasic/shared/03090400.xhp\" name=\"Други оператори\">Други оператори</link>"
-#: 03104000.xhp
+#: 03090400.xhp
msgctxt ""
-"03104000.xhp\n"
-"par_id3153825\n"
+"03090400.xhp\n"
+"par_id3154923\n"
"2\n"
"help.text"
-msgid "Tests if a function is called with an optional parameter."
-msgstr "Проверява дали функция е извикана с незадължителен параметър."
-
-#: 03104000.xhp
-msgctxt ""
-"03104000.xhp\n"
-"par_id3150669\n"
-"3\n"
-"help.text"
-msgid "See also: <link href=\"text/sbasic/shared/03104100.xhp\" name=\"Optional\">Optional</link>"
-msgstr "Виж също: <link href=\"text/sbasic/shared/03104100.xhp\" name=\"Optional\">Optional</link>"
+msgid "Statements that do not belong to any of the other runtime categories are described here."
+msgstr "Тук са описани оператори, които не принадлежат към останалите категории."
-#: 03104000.xhp
+#: 03090401.xhp
msgctxt ""
-"03104000.xhp\n"
-"hd_id3145611\n"
-"4\n"
+"03090401.xhp\n"
+"tit\n"
"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
+msgid "Call Statement [Runtime]"
+msgstr "Оператор Call [динамичен]"
-#: 03104000.xhp
+#: 03090401.xhp
msgctxt ""
-"03104000.xhp\n"
-"par_id3154924\n"
-"5\n"
+"03090401.xhp\n"
+"bm_id3154422\n"
"help.text"
-msgid "IsMissing( ArgumentName )"
-msgstr "IsMissing(ArgumentName)"
+msgid "<bookmark_value>Call statement</bookmark_value>"
+msgstr "<bookmark_value>Call, оператор</bookmark_value>"
-#: 03104000.xhp
+#: 03090401.xhp
msgctxt ""
-"03104000.xhp\n"
-"hd_id3145069\n"
-"6\n"
+"03090401.xhp\n"
+"hd_id3154422\n"
+"1\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "<link href=\"text/sbasic/shared/03090401.xhp\" name=\"Call Statement [Runtime]\">Call Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090401.xhp\" name=\"Оператор Call [динамичен]\">Оператор Call [динамичен]</link>"
-#: 03104000.xhp
+#: 03090401.xhp
msgctxt ""
-"03104000.xhp\n"
-"par_id3149457\n"
-"7\n"
+"03090401.xhp\n"
+"par_id3153394\n"
+"2\n"
"help.text"
-msgid "<emph>ArgumentName:</emph> the name of an optional argument."
-msgstr "<emph>ArgumentName:</emph> името на незадължителен аргумент."
+msgid "Transfers the control of the program to a subroutine, a function, or a DLL procedure."
+msgstr "Прехвърля управлението към процедура, функция или процедура от DLL."
-#: 03104000.xhp
+#: 03090401.xhp
msgctxt ""
-"03104000.xhp\n"
-"par_id3150398\n"
-"8\n"
+"03090401.xhp\n"
+"hd_id3153345\n"
+"3\n"
"help.text"
-msgid "If the IsMissing function is called by the ArgumentName, then True is returned."
-msgstr "Ако функцията IsMissing бъде извикана за параметър, чиято стойност не е била подадена, тя връща стойност True."
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 03104000.xhp
+#: 03090401.xhp
msgctxt ""
-"03104000.xhp\n"
-"par_id3148798\n"
-"9\n"
+"03090401.xhp\n"
+"par_id3150984\n"
+"4\n"
"help.text"
-msgid "See also <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Examples\">Examples</link>."
-msgstr "Виж също <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Примери\">Примери</link>."
+msgid "[Call] Name [Parameter]"
+msgstr "[Call] Name [Parameter]"
-#: main0601.xhp
+#: 03090401.xhp
msgctxt ""
-"main0601.xhp\n"
-"tit\n"
+"03090401.xhp\n"
+"hd_id3150771\n"
+"5\n"
"help.text"
-msgid "$[officename] Basic Help"
-msgstr "Помощ за $[officename] Basic"
+msgid "Parameters:"
+msgstr "Параметри:"
-#: main0601.xhp
+#: 03090401.xhp
msgctxt ""
-"main0601.xhp\n"
-"hd_id3154232\n"
-"1\n"
+"03090401.xhp\n"
+"par_id3148473\n"
+"6\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link>"
-msgstr "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"Помощ за $[officename] Basic\">Помощ за %PRODUCTNAME Basic</link>"
+msgid "<emph>Name:</emph> Name of the subroutine, the function, or the DLL that you want to call"
+msgstr "<emph>Name:</emph> име на процедурата, функцията или подпрограмата от DLL файл."
-#: main0601.xhp
+#: 03090401.xhp
msgctxt ""
-"main0601.xhp\n"
-"par_id3153894\n"
-"4\n"
+"03090401.xhp\n"
+"par_id3148946\n"
+"7\n"
"help.text"
-msgid "%PRODUCTNAME %PRODUCTVERSION provides an Application Programming Interface (API) that allows controlling the $[officename] components with different programming languages by using the $[officename] Software Development Kit (SDK). For more information about the $[officename] API and the Software Development Kit, visit <link href=\"http://api.libreoffice.org/\" name=\"http://api.libreoffice.org\">http://api.libreoffice.org</link>"
-msgstr "%PRODUCTNAME %PRODUCTVERSION предлага приложен програмен интерфейс (Application Programming Interface, API), който позволява управление на компонентите на $[officename] чрез различни езици за програмиране с помощта на развойния комплект на $[officename] ($[officename] Software Development Kit, SDK). За повече информация относно интерфейса за приложно програмиране и развойния комплект на $[officename] посетете сайта на адрес <link href=\"http://api.libreoffice.org/\" name=\"http://api.libreoffice.org\">http://api.libreoffice.org</link>"
+msgid "<emph>Parameter:</emph> Parameters to pass to the procedure. The type and number of parameters is dependent on the routine that is executing."
+msgstr "<emph>Parameter:</emph> параметри, които да бъдат подадени на подпрограмата. Броят и типовете им зависят от извикваната подпрограма."
-#: main0601.xhp
+#: 03090401.xhp
msgctxt ""
-"main0601.xhp\n"
-"par_id3147226\n"
-"10\n"
+"03090401.xhp\n"
+"par_id3154216\n"
+"8\n"
"help.text"
-msgid "This help section explains the most common runtime functions of %PRODUCTNAME Basic. For more in-depth information please refer to the <link href=\"http://wiki.documentfoundation.org/Documentation/BASIC_Guide\">OpenOffice.org BASIC Programming Guide</link> on the Wiki."
-msgstr "Този раздел от помощта обяснява най-често използваните динамични (runtime) функции на %PRODUCTNAME Basic. За по-подробна информация вижте ръководството <link href=\"http://wiki.documentfoundation.org/Documentation/BASIC_Guide\">OpenOffice.org BASIC Programming Guide</link> в уикисайта."
+msgid "A keyword is optional when you call a procedure. If a function is executed as an expression, the parameters must be enclosed by brackets in the statement. If a DLL is called, it must first be specified in the <emph>Declare-Statement</emph>."
+msgstr "Когато извиквате процедура, ключовата дума не е задължителна. Ако функция се изпълнява като израз, параметрите трябва да са заградени в скоби в оператора. При извикване към DLL е необходима предварителна декларация с оператора <emph>Declare</emph>."
-#: main0601.xhp
+#: 03090401.xhp
msgctxt ""
-"main0601.xhp\n"
-"hd_id3146957\n"
+"03090401.xhp\n"
+"hd_id3125865\n"
"9\n"
"help.text"
-msgid "Working with %PRODUCTNAME Basic"
-msgstr "Работа с %PRODUCTNAME Basic"
-
-#: main0601.xhp
-msgctxt ""
-"main0601.xhp\n"
-"hd_id3148473\n"
-"7\n"
-"help.text"
-msgid "Help about the Help"
-msgstr "Помощ за помощта"
+msgid "Example:"
+msgstr "Пример:"
-#: 03090407.xhp
+#: 03090402.xhp
msgctxt ""
-"03090407.xhp\n"
+"03090402.xhp\n"
"tit\n"
"help.text"
-msgid "Rem Statement [Runtime]"
-msgstr "Оператор Rem [динамичен]"
+msgid "Choose Function [Runtime]"
+msgstr "Функция Choose [динамична]"
-#: 03090407.xhp
+#: 03090402.xhp
msgctxt ""
-"03090407.xhp\n"
-"bm_id3154347\n"
+"03090402.xhp\n"
+"bm_id3143271\n"
"help.text"
-msgid "<bookmark_value>Rem statement</bookmark_value><bookmark_value>comments;Rem statement</bookmark_value>"
-msgstr "<bookmark_value>Rem, оператор</bookmark_value><bookmark_value>comments;Rem statement</bookmark_value>"
+msgid "<bookmark_value>Choose function</bookmark_value>"
+msgstr "<bookmark_value>Choose, функция</bookmark_value>"
-#: 03090407.xhp
+#: 03090402.xhp
msgctxt ""
-"03090407.xhp\n"
-"hd_id3154347\n"
+"03090402.xhp\n"
+"hd_id3143271\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090407.xhp\" name=\"Rem Statement [Runtime]\">Rem Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090407.xhp\" name=\"Оператор Rem [динамичен]\">Оператор Rem [динамичен]</link>"
+msgid "<link href=\"text/sbasic/shared/03090402.xhp\" name=\"Choose Function [Runtime]\">Choose Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090402.xhp\" name=\"Функция Choose [динамична]\">Функция Choose [динамична]</link>"
-#: 03090407.xhp
+#: 03090402.xhp
msgctxt ""
-"03090407.xhp\n"
-"par_id3153525\n"
+"03090402.xhp\n"
+"par_id3149234\n"
"2\n"
"help.text"
-msgid "Specifies that a program line is a comment."
-msgstr "Указва, че ред от програмата представлява коментар."
+msgid "Returns a selected value from a list of arguments."
+msgstr "Връща избрана стойност от списък с аргументи."
-#: 03090407.xhp
+#: 03090402.xhp
msgctxt ""
-"03090407.xhp\n"
-"hd_id3153360\n"
+"03090402.xhp\n"
+"hd_id3148943\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03090407.xhp
+#: 03090402.xhp
msgctxt ""
-"03090407.xhp\n"
-"par_id3154141\n"
+"03090402.xhp\n"
+"par_id3147560\n"
"4\n"
"help.text"
-msgid "Rem Text"
-msgstr "Rem Text"
+msgid "Choose (Index, Selection1[, Selection2, ... [,Selection_n]])"
+msgstr "Choose (Index, Selection1[, Selection2, ... [,Selection_n]])"
-#: 03090407.xhp
+#: 03090402.xhp
msgctxt ""
-"03090407.xhp\n"
-"hd_id3151042\n"
+"03090402.xhp\n"
+"hd_id3154346\n"
"5\n"
"help.text"
msgid "Parameters:"
msgstr "Параметри:"
-#: 03090407.xhp
+#: 03090402.xhp
msgctxt ""
-"03090407.xhp\n"
-"par_id3150869\n"
+"03090402.xhp\n"
+"par_id3148664\n"
"6\n"
"help.text"
-msgid "<emph>Text:</emph> Any text that serves as a comment."
-msgstr "<emph>Text:</emph> текст – коментар."
+msgid "<emph>Index:</emph> A numeric expression that specifies the value to return."
+msgstr "<emph>Index:</emph> числов израз, определящ коя стойност да бъде върната."
-#: 03090407.xhp
+#: 03090402.xhp
msgctxt ""
-"03090407.xhp\n"
-"par_id3147318\n"
+"03090402.xhp\n"
+"par_id3150791\n"
"7\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 "Вместо ключовата дума Rem можете да използвате единична кавичка, за д аукажете, че текстът на реда е коментар. Този знак може да бъде поставен директно вдясно от програмнич код, последван от коментар."
+msgid "<emph>Selection1:</emph> Any expression that contains one of the possible choices."
+msgstr "<emph>Selection1:</emph> израз, съдържащ една от възможните алтернативи."
-#: 03090407.xhp
+#: 03090402.xhp
msgctxt ""
-"03090407.xhp\n"
-"par_id6187017\n"
+"03090402.xhp\n"
+"par_id3151043\n"
+"8\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 "Можете да поставите в края на ред интервал, последван от знака _ (долна черта), за да продължите логическия ред на следващия ред. За да продължите ред с интервал, трябва да включите „Option Compatible“ в същия модул на Basic."
+msgid "The <emph>Choose</emph> function returns a value from the list of expressions based on the index value. If Index = 1, the function returns the first expression in the list, if index i= 2, it returns the second expression, and so on."
+msgstr "Функцията <emph>Choose</emph> връща стойност от списъка с изрази според индексната стойност. Ако Index = 1, функцията връща първия израз в списъка, Ако Index = 2, се връща вторият израз и т.н."
-#: 03090407.xhp
+#: 03090402.xhp
msgctxt ""
-"03090407.xhp\n"
-"hd_id3150012\n"
-"8\n"
+"03090402.xhp\n"
+"par_id3153192\n"
+"9\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "If the index value is less than 1 or greater than the number of expressions listed, the function returns a Null value."
+msgstr "Ако индексната стойност е по-малка от 1 или по-голяма от броя на изброените изрази, функцията връща стойност Null."
-#: 03090407.xhp
+#: 03090402.xhp
msgctxt ""
-"03090407.xhp\n"
-"par_id3153140\n"
-"13\n"
+"03090402.xhp\n"
+"par_id3156281\n"
+"10\n"
"help.text"
-msgid "' Nothing occurs here"
-msgstr "' Тук не се случва нищо"
+msgid "The following example uses the <emph>Choose</emph> function to select a string from several strings that form a menu:"
+msgstr "В следващия пример функцията <emph>Choose</emph> е използвана за избиране на низ измежду няколко низа, за да се образува меню:"
-#: 03101140.xhp
+#: 03090402.xhp
msgctxt ""
-"03101140.xhp\n"
-"tit\n"
+"03090402.xhp\n"
+"hd_id3150439\n"
+"11\n"
"help.text"
-msgid "DefStr Statement [Runtime]"
-msgstr "Оператор DefStr [динамичен]"
+msgid "Example:"
+msgstr "Пример:"
-#: 03101140.xhp
+#: 03090402.xhp
msgctxt ""
-"03101140.xhp\n"
-"bm_id6161381\n"
+"03090402.xhp\n"
+"par_id3156443\n"
+"20\n"
"help.text"
-msgid "<bookmark_value>DefStr statement</bookmark_value>"
-msgstr "<bookmark_value>DefStr, оператор</bookmark_value>"
+msgid "ChooseMenu = Choose(Index, \"Quick Format\", \"Save Format\", \"System Format\")"
+msgstr "ChooseMenu = Choose(Index, \"Quick Format\", \"Save Format\", \"System Format\")"
-#: 03101140.xhp
+#: 03090403.xhp
msgctxt ""
-"03101140.xhp\n"
-"par_idN10577\n"
+"03090403.xhp\n"
+"tit\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03101140.xhp\">DefStr Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03101140.xhp\">Оператор DefStr [динамичен]</link>"
+msgid "Declare Statement [Runtime]"
+msgstr "Оператор Declare [динамичен]"
-#: 03101140.xhp
+#: 03090403.xhp
msgctxt ""
-"03101140.xhp\n"
-"par_idN10587\n"
+"03090403.xhp\n"
+"bm_id3148473\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 "Операторът DefStr установява подразбиран тип данни според диапазон от букви в случай, че не е зададена ключова дума или знак за деклариране на тип."
+msgid "<bookmark_value>Declare statement</bookmark_value>"
+msgstr "<bookmark_value>Declare, оператор</bookmark_value>"
-#: 03101140.xhp
+#: 03090403.xhp
msgctxt ""
-"03101140.xhp\n"
-"par_idN1058A\n"
+"03090403.xhp\n"
+"hd_id3148473\n"
+"1\n"
"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
+msgid "<link href=\"text/sbasic/shared/03090403.xhp\" name=\"Declare Statement [Runtime]\">Declare Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090403.xhp\" name=\"Оператор Declare [динамичен]\">Оператор Declare [динамичен]</link>"
-#: 03101140.xhp
+#: 03090403.xhp
msgctxt ""
-"03101140.xhp\n"
-"par_idN1058E\n"
+"03090403.xhp\n"
+"bm_id3145316\n"
"help.text"
-msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
-msgstr "Defxxx Characterrange1[, Characterrange2[,...]]"
+msgid "<bookmark_value>DLL (Dynamic Link Library)</bookmark_value>"
+msgstr "<bookmark_value>DLL (Dynamic Link Library, библиотека за динамично свързване)</bookmark_value>"
-#: 03101140.xhp
+#: 03090403.xhp
msgctxt ""
-"03101140.xhp\n"
-"par_idN10591\n"
+"03090403.xhp\n"
+"par_id3145316\n"
+"2\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "Declares and defines a subroutine in a DLL file that you want to execute from $[officename] Basic."
+msgstr "Декларира и дефинира подпрограма в DLL файл, която искате да се изпълнява от $[officename] Basic."
-#: 03101140.xhp
+#: 03090403.xhp
msgctxt ""
-"03101140.xhp\n"
-"par_idN10595\n"
+"03090403.xhp\n"
+"par_id3146795\n"
+"3\n"
"help.text"
-msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set a default data type for."
-msgstr "<emph>Characterrange:</emph> букви, определящи диапазона от променливи, за които искате да зададете подразбиран тип данни."
+msgid "See also: <link href=\"text/sbasic/shared/03090405.xhp\" name=\"FreeLibrary\">FreeLibrary</link>"
+msgstr "Вижте също: <link href=\"text/sbasic/shared/03090405.xhp\" name=\"FreeLibrary\">FreeLibrary</link>"
-#: 03101140.xhp
+#: 03090403.xhp
msgctxt ""
-"03101140.xhp\n"
-"par_idN1059C\n"
+"03090403.xhp\n"
+"hd_id3156344\n"
+"4\n"
"help.text"
-msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
-msgstr "<emph>xxx:</emph> ключова дума, дефинираща подразбирания тип данни:"
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 03101140.xhp
+#: 03090403.xhp
msgctxt ""
-"03101140.xhp\n"
-"par_idN105A3\n"
+"03090403.xhp\n"
+"par_id3148664\n"
+"5\n"
"help.text"
-msgid "<emph>Keyword:</emph> Default variable type"
-msgstr "<emph>Ключова дума:</emph> Подразбиран тип данни"
+msgid "Declare {Sub | Function} Name Lib \"Libname\" [Alias \"Aliasname\"] [Parameter] [As Type]"
+msgstr "Declare {Sub | Function} Name Lib \"Libname\" [Alias \"Aliasname\"] [Parameters] [As Type]"
-#: 03101140.xhp
+#: 03090403.xhp
msgctxt ""
-"03101140.xhp\n"
-"par_idN105AA\n"
+"03090403.xhp\n"
+"hd_id3153360\n"
+"6\n"
"help.text"
-msgid "<emph>DefStr:</emph> String"
-msgstr "<emph>DefStr:</emph> String"
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 03101140.xhp
+#: 03090403.xhp
msgctxt ""
-"03101140.xhp\n"
-"par_idN105B1\n"
+"03090403.xhp\n"
+"par_id3154140\n"
+"8\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "<emph>Name:</emph> A different name than defined in the DLL, to call the subroutine from $[officename] Basic."
+msgstr "<emph>Name:</emph> име, различно от дефинираното в DLL файла – служи за извикване на подпрограмата от $[officename] Basic."
-#: 03101140.xhp
+#: 03090403.xhp
msgctxt ""
-"03101140.xhp\n"
-"par_idN105B5\n"
+"03090403.xhp\n"
+"par_id3150870\n"
+"9\n"
"help.text"
-msgid "' Prefix definitions for variable types:"
-msgstr "' Дефиниране с префикс за променливи от даден тип:"
+msgid "<emph>Aliasname</emph>: Name of the subroutine as defined in the DLL."
+msgstr "<emph>Aliasname</emph>: име на подпрограмата както е дефинирано в DLL файла."
-#: 03101140.xhp
+#: 03090403.xhp
msgctxt ""
-"03101140.xhp\n"
-"par_idN105D3\n"
+"03090403.xhp\n"
+"par_id3154684\n"
+"10\n"
"help.text"
-msgid "sStr=String ' sStr is an implicit string variable"
-msgstr "sStr = String ' sStr е променлива с неявен тип String"
+msgid "<emph>Libname:</emph> File or system name of the DLL. This library is automatically loaded the first time the function is used."
+msgstr "<emph>Libname:</emph> файлово или системно име на DLL файл. Библиотеката се зарежда автоматично при първото използване на функцията."
-#: 03060000.xhp
+#: 03090403.xhp
msgctxt ""
-"03060000.xhp\n"
-"tit\n"
+"03090403.xhp\n"
+"par_id3148452\n"
+"11\n"
"help.text"
-msgid "Logical Operators"
-msgstr "Логически операции"
+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 "<emph>Parameters:</emph> списък от параметри, които ще се подават на подпрограмата при извикването й. Типовете и броят им зависят от изпълняваната подпрограма."
-#: 03060000.xhp
+#: 03090403.xhp
msgctxt ""
-"03060000.xhp\n"
-"hd_id3147559\n"
-"1\n"
+"03090403.xhp\n"
+"par_id3147289\n"
+"12\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03060000.xhp\" name=\"Logical Operators\">Logical Operators</link>"
-msgstr "<link href=\"text/sbasic/shared/03060000.xhp\" name=\"Логически операции\">Логически операции</link>"
+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 "<emph>Type:</emph> определя типа на стойността, връщана от подпрограмата. Можете да пропуснете този параметър, ако след името има знак за деклариране на тип."
-#: 03060000.xhp
+#: 03090403.xhp
msgctxt ""
-"03060000.xhp\n"
-"par_id3153379\n"
-"2\n"
+"03090403.xhp\n"
+"par_id3146922\n"
+"13\n"
"help.text"
-msgid "The following logical operators are supported by $[officename] Basic."
-msgstr "$[officename] Basic поддържа изброените по-долу логически операции."
+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 "За да предадете параметър на подпрограма като стойност вместо по адрес, той трябва да бъде обозначен с ключовата дума <emph>ByVal</emph>."
-#: 03060000.xhp
+#: 03090403.xhp
msgctxt ""
-"03060000.xhp\n"
-"par_id3154138\n"
-"3\n"
+"03090403.xhp\n"
+"hd_id3153951\n"
+"14\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 "Логическите операции комбинират (бит по бит) съдържанието на две стойности, например с цел проверка дали дадени битове са установени в единица, или не."
+msgid "Example:"
+msgstr "Пример:"
-#: 03131900.xhp
+#: 03090404.xhp
msgctxt ""
-"03131900.xhp\n"
+"03090404.xhp\n"
"tit\n"
"help.text"
-msgid "GlobalScope [Runtime]"
-msgstr "Функция GlobalScope [динамична]"
+msgid "End Statement [Runtime]"
+msgstr "Оператор End [динамичен]"
-#: 03131900.xhp
+#: 03090404.xhp
msgctxt ""
-"03131900.xhp\n"
-"bm_id3150682\n"
+"03090404.xhp\n"
+"bm_id3150771\n"
"help.text"
-msgid "<bookmark_value>GlobalScope function</bookmark_value><bookmark_value>library systems</bookmark_value><bookmark_value>LibraryContainer</bookmark_value><bookmark_value>BasicLibraries (LibraryContainer)</bookmark_value><bookmark_value>DialogLibraries (LibraryContainer)</bookmark_value>"
-msgstr "<bookmark_value>GlobalScope, функция</bookmark_value><bookmark_value>библиотеки, системи от</bookmark_value><bookmark_value>LibraryContainer</bookmark_value><bookmark_value>BasicLibraries (LibraryContainer)</bookmark_value><bookmark_value>DialogLibraries (LibraryContainer)</bookmark_value>"
+msgid "<bookmark_value>End statement</bookmark_value>"
+msgstr "<bookmark_value>End, оператор</bookmark_value>"
-#: 03131900.xhp
+#: 03090404.xhp
msgctxt ""
-"03131900.xhp\n"
-"hd_id3150682\n"
+"03090404.xhp\n"
+"hd_id3150771\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03131900.xhp\" name=\"GlobalScope [Runtime]\">GlobalScope [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03131900.xhp\" name=\"Функция GlobalScope [динамична]\">Функция GlobalScope [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03090404.xhp\" name=\"End Statement [Runtime]\">End Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090404.xhp\" name=\"Оператор End [динамичен]\">Оператор End [динамичен]</link>"
-#: 03131900.xhp
+#: 03090404.xhp
msgctxt ""
-"03131900.xhp\n"
-"par_id3153345\n"
+"03090404.xhp\n"
+"par_id3153126\n"
"2\n"
"help.text"
-msgid "Basic source code and dialogs are organized in a library system."
-msgstr "Изходният код и диалоговите прозорци на Basic са организирани в система от библиотеки."
+msgid "Ends a procedure or block."
+msgstr "Завършва процедура или блок."
-#: 03131900.xhp
+#: 03090404.xhp
msgctxt ""
-"03131900.xhp\n"
-"par_id3145315\n"
+"03090404.xhp\n"
+"hd_id3147264\n"
"3\n"
"help.text"
-msgid "The LibraryContainer contains libraries"
-msgstr "Контейнерът LibraryContainer съдържа библиотеки."
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 03131900.xhp
+#: 03090404.xhp
msgctxt ""
-"03131900.xhp\n"
-"par_id3149514\n"
+"03090404.xhp\n"
+"par_id3148552\n"
"4\n"
"help.text"
-msgid "Libraries can contain modules and dialogs"
-msgstr "Библиотеките могат да съдържат модули и диалогови прозорци."
+msgid "End, End Function, End If, End Select, End Sub"
+msgstr "End, End Function, End If, End Select, End Sub"
-#: 03131900.xhp
+#: 03090404.xhp
msgctxt ""
-"03131900.xhp\n"
-"hd_id3143271\n"
+"03090404.xhp\n"
+"hd_id3149456\n"
"5\n"
"help.text"
-msgid "In Basic:"
-msgstr "В Basic:"
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 03131900.xhp
+#: 03090404.xhp
msgctxt ""
-"03131900.xhp\n"
-"par_id3153061\n"
+"03090404.xhp\n"
+"par_id3150398\n"
"6\n"
"help.text"
-msgid "The LibraryContainer is called <emph>BasicLibraries</emph>."
-msgstr "Контейнерът LibraryContainer се нарича <emph>BasicLibraries</emph>."
+msgid "Use the End statement as follows:"
+msgstr "Използвайте оператора End по следния начин:"
-#: 03131900.xhp
+#: 03090404.xhp
msgctxt ""
-"03131900.xhp\n"
-"hd_id3154346\n"
+"03090404.xhp\n"
+"hd_id3154366\n"
"7\n"
"help.text"
-msgid "In dialogs:"
-msgstr "В диалогови прозорци:"
+msgid "Statement"
+msgstr "Оператор"
-#: 03131900.xhp
+#: 03090404.xhp
msgctxt ""
-"03131900.xhp\n"
-"par_id3148663\n"
+"03090404.xhp\n"
+"par_id3151043\n"
"8\n"
"help.text"
-msgid "The LibraryContainer is called <emph>DialogLibraries</emph>."
-msgstr "Контейнерът LibraryContainer се нарича <emph>DialogLibraries</emph>."
+msgid "End: Is not required, but can be entered anywhere within a procedure to end the program execution."
+msgstr "End: не е задължително, но може да бъде поставен в подпрограма, за да прекрати изпълнението на програмата."
-#: 03131900.xhp
+#: 03090404.xhp
msgctxt ""
-"03131900.xhp\n"
-"par_id3150543\n"
+"03090404.xhp\n"
+"par_id3145171\n"
"9\n"
"help.text"
-msgid "Both LibraryContainers exist in an application level and within every document. In the document Basic, the document's LibraryContainers are called automatically. If you want to call the global LibraryContainers from within a document, you must use the keyword <emph>GlobalScope</emph>."
-msgstr "И двата вида контейнери съществуват на ниво приложенив и във всеки документ. В Basic на документа автоматично се използват контейнерите на документа. Ако искате да осъществите достъп до глобалните контейнери от документ, трябва да използвате ключовата дума <emph>GlobalScope</emph>."
+msgid "End Function: Ends a <emph>Function</emph> statement."
+msgstr "End Function: завършва оператор <emph>Function</emph>."
-#: 03131900.xhp
+#: 03090404.xhp
msgctxt ""
-"03131900.xhp\n"
-"hd_id3148920\n"
+"03090404.xhp\n"
+"par_id3153192\n"
"10\n"
"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
+msgid "End If: Marks the end of a <emph>If...Then...Else</emph> block."
+msgstr "End If: отбелязва края на блок <emph>If…Then…Else</emph>."
-#: 03131900.xhp
+#: 03090404.xhp
msgctxt ""
-"03131900.xhp\n"
-"par_id3149203\n"
+"03090404.xhp\n"
+"par_id3148451\n"
"11\n"
"help.text"
-msgid "GlobalScope"
-msgstr "GlobalScope"
+msgid "End Select: Marks the end of a <emph>Select Case</emph> block."
+msgstr "End Select: отбелязва края на блок <emph>Select Case</emph>."
-#: 03131900.xhp
+#: 03090404.xhp
msgctxt ""
-"03131900.xhp\n"
-"hd_id3154685\n"
+"03090404.xhp\n"
+"par_id3155131\n"
"12\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "End Sub: Ends a <emph>Sub</emph> statement."
+msgstr "End Sub: завършва оператор <emph>Sub</emph>."
-#: 03131900.xhp
+#: 03090404.xhp
msgctxt ""
-"03131900.xhp\n"
-"par_id3154124\n"
+"03090404.xhp\n"
+"hd_id3146120\n"
"13\n"
"help.text"
-msgid "Example in the document Basic"
-msgstr "Пример в Basic на документ"
+msgid "Example:"
+msgstr "Пример:"
-#: 03131900.xhp
+#: 03090404.xhp
msgctxt ""
-"03131900.xhp\n"
-"par_id3158408\n"
-"14\n"
+"03090404.xhp\n"
+"par_id3152887\n"
+"19\n"
"help.text"
-msgid "' calling Dialog1 in the document library Standard"
-msgstr "' Извикване на Dialog1 в библиотеката на документ Standard"
+msgid "Print \"Number from 1 to 5\""
+msgstr "Print \"Число от 1 до 5\""
-#: 03131900.xhp
+#: 03090404.xhp
msgctxt ""
-"03131900.xhp\n"
-"par_id3125865\n"
-"15\n"
+"03090404.xhp\n"
+"par_id3148618\n"
+"21\n"
"help.text"
-msgid "oDlgDesc = DialogLibraries.Standard.Dialog1"
-msgstr "oDlgDesc = DialogLibraries.Standard.Dialog1"
+msgid "Print \"Number from 6 to 8\""
+msgstr "Print \"Число от 6 до 8\""
-#: 03131900.xhp
+#: 03090404.xhp
msgctxt ""
-"03131900.xhp\n"
-"par_id3154910\n"
-"16\n"
+"03090404.xhp\n"
+"par_id3147436\n"
+"23\n"
"help.text"
-msgid "' calling Dialog2 in the application library Library1"
-msgstr "' Извикване на Dialog2 в библиотеката на приложение Library1"
+msgid "Print \"Greater than 8\""
+msgstr "Print \"По-голямо от 8\""
-#: 03131900.xhp
+#: 03090404.xhp
msgctxt ""
-"03131900.xhp\n"
-"par_id3156424\n"
-"17\n"
+"03090404.xhp\n"
+"par_id3150418\n"
+"25\n"
"help.text"
-msgid "oDlgDesc = GlobalScope.DialogLibraries.Library1.Dialog2"
-msgstr "oDlgDesc = GlobalScope.DialogLibraries.Library1.Dialog2"
+msgid "Print \"Outside range 1 to 10\""
+msgstr "Print \"Извън диапазона от 1 до 10\""
-#: 03030203.xhp
+#: 03090405.xhp
msgctxt ""
-"03030203.xhp\n"
+"03090405.xhp\n"
"tit\n"
"help.text"
-msgid "Now Function [Runtime]"
-msgstr "Функция Now [динамична]"
+msgid "FreeLibrary Function [Runtime]"
+msgstr "Функция FreeLibrary [динамична]"
-#: 03030203.xhp
+#: 03090405.xhp
msgctxt ""
-"03030203.xhp\n"
-"bm_id3149416\n"
+"03090405.xhp\n"
+"bm_id3143270\n"
"help.text"
-msgid "<bookmark_value>Now function</bookmark_value>"
-msgstr "<bookmark_value>Now, функция</bookmark_value>"
+msgid "<bookmark_value>FreeLibrary function</bookmark_value>"
+msgstr "<bookmark_value>FreeLibrary, функция</bookmark_value>"
-#: 03030203.xhp
+#: 03090405.xhp
msgctxt ""
-"03030203.xhp\n"
-"hd_id3149416\n"
+"03090405.xhp\n"
+"hd_id3143270\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03030203.xhp\" name=\"Now Function [Runtime]\">Now Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03030203.xhp\" name=\"Функция Now [динамична]\">Функция Now [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03090405.xhp\" name=\"FreeLibrary Function [Runtime]\">FreeLibrary Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090405.xhp\" name=\"Функция FreeLibrary [динамична]\">Функция FreeLibrary [динамична]</link>"
-#: 03030203.xhp
+#: 03090405.xhp
msgctxt ""
-"03030203.xhp\n"
-"par_id3149670\n"
+"03090405.xhp\n"
+"par_id3147559\n"
"2\n"
"help.text"
-msgid "Returns the current system date and time as a <emph>Date</emph> value."
-msgstr "Връща текущата системна дата и час като стойност от тип <emph>Date</emph>."
+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 "Освобождава DLL файловете, заредени от оператор Declare. Освободеният DLL файл автоматично се презарежда при извикване на някоя от функциите му. Виж също: <link href=\"text/sbasic/shared/03090403.xhp\" name=\"Declare\">Declare</link>."
-#: 03030203.xhp
+#: 03090405.xhp
msgctxt ""
-"03030203.xhp\n"
-"hd_id3149456\n"
+"03090405.xhp\n"
+"hd_id3148550\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03030203.xhp
+#: 03090405.xhp
msgctxt ""
-"03030203.xhp\n"
-"par_id3149655\n"
+"03090405.xhp\n"
+"par_id3153361\n"
"4\n"
"help.text"
-msgid "Now"
-msgstr "Now"
+msgid "FreeLibrary (LibName As String)"
+msgstr "FreeLibrary (LibName As String)"
-#: 03030203.xhp
+#: 03090405.xhp
msgctxt ""
-"03030203.xhp\n"
-"hd_id3154366\n"
+"03090405.xhp\n"
+"hd_id3153380\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Връщана стойност:"
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 03030203.xhp
+#: 03090405.xhp
msgctxt ""
-"03030203.xhp\n"
-"par_id3154909\n"
+"03090405.xhp\n"
+"par_id3154138\n"
"6\n"
"help.text"
-msgid "Date"
-msgstr "Date"
+msgid "<emph>LibName:</emph> String expression that specifies the name of the DLL."
+msgstr "<emph>LibName:</emph> низов израз – име на DLL файла."
-#: 03030203.xhp
+#: 03090405.xhp
msgctxt ""
-"03030203.xhp\n"
-"hd_id3147229\n"
+"03090405.xhp\n"
+"par_id3146923\n"
"7\n"
"help.text"
-msgid "Example:"
-msgstr "Примери:"
-
-#: 03030203.xhp
-msgctxt ""
-"03030203.xhp\n"
-"par_id3150870\n"
-"9\n"
-"help.text"
-msgid "MsgBox \"It is now \" & Now"
-msgstr "MsgBox \"В момента е \" & Now"
-
-#: 03100000.xhp
-msgctxt ""
-"03100000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Variables"
-msgstr "Променливи"
-
-#: 03100000.xhp
-msgctxt ""
-"03100000.xhp\n"
-"hd_id3149669\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03100000.xhp\" name=\"Variables\">Variables</link>"
-msgstr "<link href=\"text/sbasic/shared/03100000.xhp\" name=\"Променливи\">Променливи</link>"
+msgid "FreeLibrary can only release DLLs that are loaded during Basic runtime."
+msgstr "FreeLibrary може да освобождава само DLL файлове, заредени по време на изпълнението на програма на Basic."
-#: 03100000.xhp
+#: 03090405.xhp
msgctxt ""
-"03100000.xhp\n"
-"par_id3147265\n"
-"2\n"
+"03090405.xhp\n"
+"hd_id3153363\n"
+"8\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 "Следващите оператори и функции са за работа с променливи. Чрез тях можете да декларирате или дефинирате променливи, да преобразувате стойности от един тип в друг и да намирате типа на променлива."
+msgid "Example:"
+msgstr "Пример:"
-#: 03080103.xhp
+#: 03090406.xhp
msgctxt ""
-"03080103.xhp\n"
+"03090406.xhp\n"
"tit\n"
"help.text"
-msgid "Sin Function [Runtime]"
-msgstr "Функция Sin [динамична]"
+msgid "Function Statement [Runtime]"
+msgstr "Оператор Function [динамичен]"
-#: 03080103.xhp
+#: 03090406.xhp
msgctxt ""
-"03080103.xhp\n"
-"bm_id3153896\n"
+"03090406.xhp\n"
+"bm_id3153346\n"
"help.text"
-msgid "<bookmark_value>Sin function</bookmark_value>"
-msgstr "<bookmark_value>Sin, функция</bookmark_value>"
+msgid "<bookmark_value>Function statement</bookmark_value>"
+msgstr "<bookmark_value>Function, оператор</bookmark_value>"
-#: 03080103.xhp
+#: 03090406.xhp
msgctxt ""
-"03080103.xhp\n"
-"hd_id3153896\n"
+"03090406.xhp\n"
+"hd_id3153346\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080103.xhp\" name=\"Sin Function [Runtime]\">Sin Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03080103.xhp\" name=\"Функция Sin [динамична]\">Функция Sin [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03090406.xhp\" name=\"Function Statement [Runtime]\">Function Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090406.xhp\" name=\"Оператор Function [динамичен]\">Оператор Function [динамичен]</link>"
-#: 03080103.xhp
+#: 03090406.xhp
msgctxt ""
-"03080103.xhp\n"
-"par_id3149456\n"
+"03090406.xhp\n"
+"par_id3159158\n"
"2\n"
"help.text"
-msgid "Returns the sine of an angle. The angle is specified in radians. The result lies between -1 and 1."
-msgstr "Връща синуса на ъгъл, зададен в радиани. Резултатът е между -1 и 1."
+msgid "Defines a subroutine that can be used as an expression to determine a return type."
+msgstr "Дефинира подпрограма, която може да бъде използвана като израз, определяйки и типа на връщаната стойност."
-#: 03080103.xhp
+#: 03090406.xhp
msgctxt ""
-"03080103.xhp\n"
-"par_id3153379\n"
+"03090406.xhp\n"
+"hd_id3145316\n"
"3\n"
"help.text"
-msgid "Using the angle Alpha, the Sin 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 "Функцията Sin намира съотношението на дължините на срещулежащия катет на дадения ъгъл и хипотенузата в правоъгълен триъгълник."
+msgid "Syntax"
+msgstr "Синтаксис"
-#: 03080103.xhp
+#: 03090406.xhp
msgctxt ""
-"03080103.xhp\n"
-"par_id3148798\n"
+"03090406.xhp\n"
+"par_id3148944\n"
"4\n"
"help.text"
-msgid "Sin(Alpha) = side opposite the angle/hypotenuse"
-msgstr "Sin(α) = срещулежащ катет / хипотенуза"
+msgid "see Parameter"
+msgstr "виж Параметри"
-#: 03080103.xhp
+#: 03090406.xhp
msgctxt ""
-"03080103.xhp\n"
-"hd_id3147230\n"
+"03090406.xhp\n"
+"hd_id3154760\n"
"5\n"
"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 03080103.xhp
+#: 03090406.xhp
msgctxt ""
-"03080103.xhp\n"
-"par_id3154909\n"
+"03090406.xhp\n"
+"par_id3156344\n"
"6\n"
"help.text"
-msgid "Sin (Number)"
-msgstr "Sin (Number)"
+msgid "Syntax"
+msgstr "Синтаксис"
-#: 03080103.xhp
+#: 03090406.xhp
msgctxt ""
-"03080103.xhp\n"
-"hd_id3156214\n"
+"03090406.xhp\n"
+"par_id3149457\n"
"7\n"
"help.text"
-msgid "Return value:"
-msgstr "Връщана стойност:"
+msgid "Function Name[(VarName1 [As Type][, VarName2 [As Type][,...]]]) [As Type]"
+msgstr "Function Name[(VarName1 [As Type][, VarName2 [As Type][,...]]]) [As Type]"
-#: 03080103.xhp
+#: 03090406.xhp
msgctxt ""
-"03080103.xhp\n"
-"par_id3150870\n"
+"03090406.xhp\n"
+"par_id3153360\n"
"8\n"
"help.text"
-msgid "Double"
-msgstr "Double"
+msgid "statement block"
+msgstr "операторен блок"
-#: 03080103.xhp
+#: 03090406.xhp
msgctxt ""
-"03080103.xhp\n"
-"hd_id3155132\n"
+"03090406.xhp\n"
+"par_id3148797\n"
"9\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "[Exit Function]"
+msgstr "[Exit Function]"
-#: 03080103.xhp
+#: 03090406.xhp
msgctxt ""
-"03080103.xhp\n"
-"par_id3145786\n"
+"03090406.xhp\n"
+"par_id3145419\n"
"10\n"
"help.text"
-msgid "<emph>Number:</emph> Numeric expression that defines the angle in radians that you want to calculate the sine for."
-msgstr "<emph>Number:</emph> числов израз – ъгъл в радиани, чиито синус искате да намерите."
+msgid "statement block"
+msgstr "операторен блок"
-#: 03080103.xhp
+#: 03090406.xhp
msgctxt ""
-"03080103.xhp\n"
-"par_id3155413\n"
+"03090406.xhp\n"
+"par_id3150449\n"
"11\n"
"help.text"
-msgid "To convert degrees to radians, multiply degrees by Pi/180, and to convert radians to degrees, multiply radians by 180/Pi."
-msgstr "За да превърнете градусите в радиани, умножете ги по π/180. За да превърнете радианите в градуси, умножете ги по 180/π."
+msgid "End Function"
+msgstr "End Function"
-#: 03080103.xhp
+#: 03090406.xhp
msgctxt ""
-"03080103.xhp\n"
-"par_id3149664\n"
+"03090406.xhp\n"
+"par_id3156281\n"
"12\n"
"help.text"
-msgid "grad=(radiant*180)/pi"
-msgstr "degrees = (radiant * 180) / Pi"
+msgid "Parameter"
+msgstr "Параметър"
-#: 03080103.xhp
+#: 03090406.xhp
msgctxt ""
-"03080103.xhp\n"
-"par_id3153143\n"
+"03090406.xhp\n"
+"par_id3153193\n"
"13\n"
"help.text"
-msgid "radiant=(grad*pi)/180"
-msgstr "radians = (degrees * Pi) / 180"
+msgid "<emph>Name:</emph> Name of the subroutine to contain the value returned by the function."
+msgstr "<emph>Name:</emph> името на подпрограмата, която връща описаната стойност."
-#: 03080103.xhp
+#: 03090406.xhp
msgctxt ""
-"03080103.xhp\n"
-"par_id3151112\n"
+"03090406.xhp\n"
+"par_id3147229\n"
"14\n"
"help.text"
-msgid "Pi is approximately 3.141593."
-msgstr "Pi (π) е приблизително 3,14159."
+msgid "<emph>VarName:</emph> Parameter to be passed to the subroutine."
+msgstr "<emph>VarName:</emph> параметър, който се подава на подпрограмата."
-#: 03080103.xhp
+#: 03090406.xhp
msgctxt ""
-"03080103.xhp\n"
-"hd_id3163712\n"
+"03090406.xhp\n"
+"par_id3147287\n"
"15\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "<emph>Type:</emph> Type-declaration keyword."
+msgstr "<emph>Type:</emph> ключова дума за обявяване на тип."
-#: 03080103.xhp
+#: 03090406.xhp
msgctxt ""
-"03080103.xhp\n"
-"par_id3149482\n"
+"03090406.xhp\n"
+"hd_id3163710\n"
"16\n"
"help.text"
-msgid "' In this example, the following entry is possible for a right-angled triangle:"
-msgstr "' Този пример позволява въвеждане на срещулежащия катет"
-
-#: 03080103.xhp
-msgctxt ""
-"03080103.xhp\n"
-"par_id3148577\n"
-"17\n"
-"help.text"
-msgid "' The side opposite the angle and the angle (in degrees) to calculate the length of the hypotenuse:"
-msgstr "' и ъгъл в градуси, за да се изчисли дължината на хипотенузата."
-
-#: 03080103.xhp
-msgctxt ""
-"03080103.xhp\n"
-"par_id3150011\n"
-"19\n"
-"help.text"
-msgid "' Pi = 3.1415926 is a predefined variable"
-msgstr "' Pi = 3.1415926 е предварително дефинирана променлива"
-
-#: 03080103.xhp
-msgctxt ""
-"03080103.xhp\n"
-"par_id3145251\n"
-"22\n"
-"help.text"
-msgid "d1 = InputBox$ (\"Enter the length of the opposite side: \",\"Opposite Side\")"
-msgstr "d1 = InputBox$(\"Въведете дължината на срещулежащия катет: \", \"Срещулежащ катет\")"
-
-#: 03080103.xhp
-msgctxt ""
-"03080103.xhp\n"
-"par_id3148456\n"
-"23\n"
-"help.text"
-msgid "dAlpha = InputBox$ (\"Enter the angle Alpha (in degrees): \",\"Alpha\")"
-msgstr "dAlpha = InputBox$(\"Въведете ъгъла в градуси: \", \"Ъгъл\")"
-
-#: 03080103.xhp
-msgctxt ""
-"03080103.xhp\n"
-"par_id3153877\n"
-"24\n"
-"help.text"
-msgid "Print \"The length of the hypotenuse is\"; (d1 / sin (dAlpha * Pi / 180))"
-msgstr "Print \"Дължината на хипотенузата е \"; (d1 / Sin(dAlpha * Pi / 180))"
+msgid "Example:"
+msgstr "Пример:"
-#: 03050000.xhp
+#: 03090406.xhp
msgctxt ""
-"03050000.xhp\n"
-"tit\n"
+"03090406.xhp\n"
+"par_id3152939\n"
+"21\n"
"help.text"
-msgid "Error-Handling Functions"
-msgstr "Функции за обработка на грешки"
+msgid "For siStep = 0 To 10 ' Fill array with test data"
+msgstr "For siStep = 0 To 10 ' Запълваме масива с тестови данни"
-#: 03050000.xhp
+#: 03090406.xhp
msgctxt ""
-"03050000.xhp\n"
-"hd_id3143271\n"
-"1\n"
+"03090406.xhp\n"
+"par_id3154943\n"
+"32\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03050000.xhp\" name=\"Error-Handling Functions\">Error-Handling Functions</link>"
-msgstr "<link href=\"text/sbasic/shared/03050000.xhp\" name=\"Функции за обработка на грешки\">Функции за обработка на грешки</link>"
+msgid "' Linsearch searches a TextArray:sList() for a TextEntry:"
+msgstr "' Linsearch претърсва TextArray:sList() за TextEntry:"
-#: 03050000.xhp
+#: 03090406.xhp
msgctxt ""
-"03050000.xhp\n"
-"par_id3145068\n"
-"2\n"
+"03090406.xhp\n"
+"par_id3155601\n"
+"33\n"
"help.text"
-msgid "Use the following statements and functions to define the way $[officename] Basic reacts to run-time errors."
-msgstr "Чрез следващите оператори и функции можете да задавате как $[officename] Basic да реагира на грешки по време на изпълнение."
+msgid "' Return value Is the index of the entry Or 0 (Null)"
+msgstr "' Връщаната стойност е индексът на елемента или 0 (Null)"
-#: 03050000.xhp
+#: 03090406.xhp
msgctxt ""
-"03050000.xhp\n"
-"par_id3148946\n"
-"3\n"
+"03090406.xhp\n"
+"par_id3153707\n"
+"36\n"
"help.text"
-msgid "$[officename] Basic offers several methods to prevent the termination of a program when a run-time error occurs."
-msgstr "$[officename] Basic предлага няколко начина да се предотврати прекратяването на програма при възникване на грешка."
+msgid "Exit For ' sItem found"
+msgstr "Exit For ' sItem е намерен"
-#: 03102100.xhp
+#: 03090407.xhp
msgctxt ""
-"03102100.xhp\n"
+"03090407.xhp\n"
"tit\n"
"help.text"
-msgid "Dim Statement [Runtime]"
-msgstr "Оператор Dim [динамичен]"
+msgid "Rem Statement [Runtime]"
+msgstr "Оператор Rem [динамичен]"
-#: 03102100.xhp
+#: 03090407.xhp
msgctxt ""
-"03102100.xhp\n"
-"bm_id3149812\n"
+"03090407.xhp\n"
+"bm_id3154347\n"
"help.text"
-msgid "<bookmark_value>Dim statement</bookmark_value><bookmark_value>arrays; dimensioning</bookmark_value><bookmark_value>dimensioning arrays</bookmark_value>"
-msgstr "<bookmark_value>Dim, оператор</bookmark_value><bookmark_value>масиви; обявяване</bookmark_value><bookmark_value>обявяване на масиви</bookmark_value><bookmark_value>деклариране на масиви</bookmark_value>"
+msgid "<bookmark_value>Rem statement</bookmark_value><bookmark_value>comments;Rem statement</bookmark_value>"
+msgstr "<bookmark_value>Rem, оператор</bookmark_value><bookmark_value>comments;Rem statement</bookmark_value>"
-#: 03102100.xhp
+#: 03090407.xhp
msgctxt ""
-"03102100.xhp\n"
-"hd_id3149812\n"
+"03090407.xhp\n"
+"hd_id3154347\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03102100.xhp\" name=\"Dim Statement [Runtime]\">Dim Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03102100.xhp\" name=\"Оператор Dim [динамичен]\">Оператор Dim [динамичен]</link>"
+msgid "<link href=\"text/sbasic/shared/03090407.xhp\" name=\"Rem Statement [Runtime]\">Rem Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090407.xhp\" name=\"Оператор Rem [динамичен]\">Оператор Rem [динамичен]</link>"
-#: 03102100.xhp
+#: 03090407.xhp
msgctxt ""
-"03102100.xhp\n"
-"par_id3143271\n"
+"03090407.xhp\n"
+"par_id3153525\n"
"2\n"
"help.text"
-msgid "Declares a variable or an array."
-msgstr "Декларира променлива или масив."
+msgid "Specifies that a program line is a comment."
+msgstr "Указва, че ред от програмата представлява коментар."
-#: 03102100.xhp
+#: 03090407.xhp
msgctxt ""
-"03102100.xhp\n"
-"par_id3154686\n"
+"03090407.xhp\n"
+"hd_id3153360\n"
"3\n"
"help.text"
-msgid "If the variables are separated by commas (for example, DIM sPar1, sPar2, sPar3 AS STRING), only Variant variables can be defined. Use a separate definition line for each variable."
-msgstr "Ако променливите са разделени със запетаи (например Dim sPar1, sPar2, sPar3 As String), могат да се дефинират само променливи от тип Variant. Използвайте отделен ред с дефиниция за всяка променлива."
-
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3152576\n"
-"7\n"
-"help.text"
-msgid "Dim declares local variables within subroutines. Global variables are declared with the PUBLIC or the PRIVATE statement."
-msgstr "Dim декларира локални променливи в подпрограми. Глобални променливи се декларират с оператора Public или Private."
-
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"hd_id3156443\n"
-"8\n"
-"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03102100.xhp
+#: 03090407.xhp
msgctxt ""
-"03102100.xhp\n"
-"par_id3149412\n"
-"9\n"
+"03090407.xhp\n"
+"par_id3154141\n"
+"4\n"
"help.text"
-msgid "[ReDim]Dim VarName [(start To end)] [As VarType][, VarName2 [(start To end)] [As VarType][,...]]"
-msgstr "[ReDim]Dim VarName [(start To end)] [As VarType][, VarName2 [(start To end)] [As VarType][,...]]"
+msgid "Rem Text"
+msgstr "Rem Text"
-#: 03102100.xhp
+#: 03090407.xhp
msgctxt ""
-"03102100.xhp\n"
-"hd_id3147397\n"
-"10\n"
+"03090407.xhp\n"
+"hd_id3151042\n"
+"5\n"
"help.text"
msgid "Parameters:"
msgstr "Параметри:"
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3154730\n"
-"11\n"
-"help.text"
-msgid "<emph>VarName:</emph> Any variable or array name."
-msgstr "<emph>VarName:</emph> име на променилива или масив."
-
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3147125\n"
-"12\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 "<emph>Start, End:</emph> числови стойности или константи, задаващи броя елементи ((End - Start) + 1) и диапазона за индексиране."
-
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3153877\n"
-"13\n"
-"help.text"
-msgid "Start and End can be numerical expressions if ReDim is applied at the procedure level."
-msgstr "Start и End могат да са числови изрази, ако бъде използван ReDim на ниво процедура."
-
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3153510\n"
-"14\n"
-"help.text"
-msgid "<emph>VarType:</emph> Key word that declares the data type of a variable."
-msgstr "<emph>VarType:</emph> ключова дума, определяща типа данни на променливата."
-
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3154015\n"
-"15\n"
-"help.text"
-msgid "<emph>Keyword:</emph> Variable type"
-msgstr "<emph>Ключова дума:</emph> Тип на променливата"
-
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3153949\n"
-"16\n"
-"help.text"
-msgid "<emph>Bool:</emph> Boolean variable (True, False)"
-msgstr "<emph>Bool:</emph> булева променлива (True, False)"
-
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3156275\n"
-"17\n"
-"help.text"
-msgid "<emph>Currency:</emph> Currency-Variable (Currency with 4 Decimal places)"
-msgstr "<emph>Currency:</emph> променлива за валута (с 4 дробни разреда)"
-
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3156057\n"
-"18\n"
-"help.text"
-msgid "<emph>Date:</emph> Date variable"
-msgstr "<emph>Date:</emph> променлива за дата"
-
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3148405\n"
-"19\n"
-"help.text"
-msgid "<emph>Double:</emph> Double-precision floating-point variable (1,79769313486232 x 10E308 - 4,94065645841247 x 10E-324)"
-msgstr "<emph>Double:</emph> променлива с плаваща запетая с двойна точност (1,79769313486232.10^308…4,94065645841247.10^-324)"
-
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3148916\n"
-"20\n"
-"help.text"
-msgid "<emph>Integer:</emph> Integer variable (-32768 - 32767)"
-msgstr "<emph>Integer:</emph> целочислена променлива (-32768…32767)"
-
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3150045\n"
-"21\n"
-"help.text"
-msgid "<emph>Long:</emph> Long integer variable (-2.147.483.648 - 2.147.483.647)"
-msgstr "<emph>Long:</emph> дълга целочислена променлива (-2147483648…2147483647)"
-
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3149255\n"
-"22\n"
-"help.text"
-msgid "<emph>Object:</emph> Object variable (Note: this variable can only subsequently be defined with Set!)"
-msgstr "<emph>Object:</emph> обектна променлива (Бележка: тази променлива впоследствие може да бъде дефинирана само със Set!)"
-
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3155937\n"
-"23\n"
-"help.text"
-msgid "<emph>Single:</emph> Single-precision floating-point variable (3,402823 x 10E38 - 1,401298 x 10E-45)."
-msgstr "<emph>Single:</emph> променлива с плаваща запетая с единична точност (3,402823.10^38…1,401298.10^-45)."
-
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3151251\n"
-"24\n"
-"help.text"
-msgid "<emph>String:</emph> String variable consisting of a maximum of 64,000 ASCII characters."
-msgstr "<emph>String:</emph> низова променлива, съдържаща най-много 64000 знаква в код ASCII."
-
-#: 03102100.xhp
+#: 03090407.xhp
msgctxt ""
-"03102100.xhp\n"
-"par_id3154704\n"
-"25\n"
+"03090407.xhp\n"
+"par_id3150869\n"
+"6\n"
"help.text"
-msgid "<emph>[Variant]:</emph> Variant variable type (contains all types, specified by definition). If a key word is not specified, variables are automatically defined as Variant Type, unless a statement from DefBool to DefVar is used."
-msgstr "<emph>[Variant]:</emph> вариантна променлива (може да съдържа всякакъв тип данни, зададен чрез присвояване). Ако не е зададена ключова дума, променливите автоматично се дефинират като тип Variant, освен ако е използван оператор от типа на DefBool и DefVar."
+msgid "<emph>Text:</emph> Any text that serves as a comment."
+msgstr "<emph>Text:</emph> текст – коментар."
-#: 03102100.xhp
+#: 03090407.xhp
msgctxt ""
-"03102100.xhp\n"
-"par_id3146316\n"
-"26\n"
+"03090407.xhp\n"
+"par_id3147318\n"
+"7\n"
"help.text"
-msgid "In $[officename] Basic, you do not need to declare variables explicitly. However, you need to declare an array before you can use them. You can declare a variable with the Dim statement, using commas to separate multiple declarations. To declare a variable type, enter a type-declaration character following the name or use a corresponding key word."
-msgstr "В $[officename] Basic не е необходимо да обявявате променливите явно. Масивите обаче трябва да бъдат обявени преди използването им. Можете да обявите променлива с оператора Dim, използвайки запетаи, за да разделите няколко декларации. За да декларирате типа на променлива, въведете знак за деклариране на тип след името или използвайте съответната ключова дума."
+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 "Вместо ключовата дума Rem можете да използвате единична кавичка, за д аукажете, че текстът на реда е коментар. Този знак може да бъде поставен директно вдясно от програмнич код, последван от коментар."
-#: 03102100.xhp
+#: 03090407.xhp
msgctxt ""
-"03102100.xhp\n"
-"par_id3149924\n"
-"27\n"
+"03090407.xhp\n"
+"par_id6187017\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 "$[officename] Basic поддържа едномерни и многомерни масиви, дефинирани като специален вид променливи. Масивите са подходящи за работа със списъци или таблици в програмите. Предимството им е, че отделните елементи се адресират чрез индекси, които могат да бъдат задавани като числови изрази или променливи."
+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 "Можете да поставите в края на ред интервал, последван от знака _ (долна черта), за да продължите логическия ред на следващия ред. За да продължите ред с интервал, трябва да включите „Option Compatible“ в същия модул на Basic."
-#: 03102100.xhp
+#: 03090407.xhp
msgctxt ""
-"03102100.xhp\n"
-"par_id3148488\n"
-"28\n"
+"03090407.xhp\n"
+"hd_id3150012\n"
+"8\n"
"help.text"
-msgid "Arrays are declared with the Dim statement. There are two methods to define the index range:"
-msgstr "Масивите се обявяват с оператора Dim. Има два начина за задаване на диапазона за индексиране:"
+msgid "Example:"
+msgstr "Пример:"
-#: 03102100.xhp
+#: 03090407.xhp
msgctxt ""
-"03102100.xhp\n"
-"par_id3154662\n"
-"29\n"
+"03090407.xhp\n"
+"par_id3153140\n"
+"13\n"
"help.text"
-msgid "DIM text(20) as String REM 21 elements numbered from 0 to 20"
-msgstr "Dim text(20) As String REM 21 елемента с номера от 0 до 20"
+msgid "' Nothing occurs here"
+msgstr "' Тук не се случва нищо"
-#: 03102100.xhp
+#: 03090408.xhp
msgctxt ""
-"03102100.xhp\n"
-"par_id3155604\n"
-"30\n"
+"03090408.xhp\n"
+"tit\n"
"help.text"
-msgid "DIM text(5 to 25) as String REM 21 elements numbered from 5 to 25"
-msgstr "Dim text(5 To 25) As String REM 21 елемента с номера от 5 до 25"
+msgid "Stop Statement [Runtime]"
+msgstr "Оператор Stop [динамичен]"
-#: 03102100.xhp
+#: 03090408.xhp
msgctxt ""
-"03102100.xhp\n"
-"par_id3151274\n"
-"31\n"
+"03090408.xhp\n"
+"bm_id3153311\n"
"help.text"
-msgid "DIM text(-15 to 5) as String REM 21 elements (including 0)"
-msgstr "Dim text(-15 To 5) As String REM 21 елемента (включително 0)"
+msgid "<bookmark_value>Stop statement</bookmark_value>"
+msgstr "<bookmark_value>Stop, оператор</bookmark_value>"
-#: 03102100.xhp
+#: 03090408.xhp
msgctxt ""
-"03102100.xhp\n"
-"par_id3152774\n"
-"32\n"
+"03090408.xhp\n"
+"hd_id3153311\n"
+"1\n"
"help.text"
-msgid "REM numbered from -15 to 5"
-msgstr "REM с номера от -15 до 5"
+msgid "<link href=\"text/sbasic/shared/03090408.xhp\" name=\"Stop Statement [Runtime]\">Stop Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090408.xhp\" name=\"Оператор Stop [динамичен]\">Оператор Stop [динамичен]</link>"
-#: 03102100.xhp
+#: 03090408.xhp
msgctxt ""
-"03102100.xhp\n"
-"par_id3150829\n"
-"33\n"
+"03090408.xhp\n"
+"par_id3154142\n"
+"2\n"
"help.text"
-msgid "Two-dimensional data field"
-msgstr "Двуизмерен масив"
+msgid "Stops the execution of the Basic program."
+msgstr "Спира изпълнението на програма на Basic."
-#: 03102100.xhp
+#: 03090408.xhp
msgctxt ""
-"03102100.xhp\n"
-"par_id3149529\n"
-"34\n"
+"03090408.xhp\n"
+"hd_id3153126\n"
+"3\n"
"help.text"
-msgid "DIM text(20,2) as String REM 63 elements; form 0 to 20 level 1, from 0 to 20 level 2 and from 0 to 20 level 3."
-msgstr "Dim text(20, 2) As String REM 63 елемента; от 0 до 20 на ниво 1, от 0 до 20 на ниво 2 и от 0 до 20 на ниво 3."
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 03102100.xhp
+#: 03090408.xhp
msgctxt ""
-"03102100.xhp\n"
-"par_id3159239\n"
-"35\n"
+"03090408.xhp\n"
+"par_id3156023\n"
+"4\n"
"help.text"
-msgid "You can declare an array types as dynamic if a ReDim statement defines the number of dimensions in the subroutine or the function that contains the array. Generally, you can only define an array dimension once, and you cannot modify it. Within a subroutine, you can declare an array with ReDim. You can only define dimensions with numeric expressions. This ensures that the fields are only as large as necessary."
-msgstr "Можете да декларирате масив като динамичен, ако операторът ReDim е използван в подпрограмата, съдържаща масива, за да се зададе броят измерения. По правило размерността на масива се декларира само веднъж и не можете да я променяте. В подпрограма можете да декларирате масив с ReDim. Размерностите се задават само с числови изрази. По този начин полетата винаги са с минималния необходим размер."
+msgid "Stop"
+msgstr "Stop"
-#: 03102100.xhp
+#: 03090408.xhp
msgctxt ""
-"03102100.xhp\n"
-"hd_id3150344\n"
-"36\n"
+"03090408.xhp\n"
+"hd_id3156344\n"
+"5\n"
"help.text"
msgid "Example:"
msgstr "Пример:"
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3154657\n"
-"40\n"
-"help.text"
-msgid "sVar = \"Office\""
-msgstr "sVar = \"Офис\""
-
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3149036\n"
-"44\n"
-"help.text"
-msgid "' Two-dimensional data field"
-msgstr "' Двуизмерна матрица от данни"
-
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3153782\n"
-"46\n"
-"help.text"
-msgid "Const sDim As String = \" Dimension:\""
-msgstr "Const sDim Аs String = \" Размерност:\""
-
-#: 03020102.xhp
+#: 03090409.xhp
msgctxt ""
-"03020102.xhp\n"
+"03090409.xhp\n"
"tit\n"
"help.text"
-msgid "FreeFile Function[Runtime]"
-msgstr "Функция FreeFile [динамична]"
+msgid "Sub Statement [Runtime]"
+msgstr "Оператор Sub [динамичен]"
-#: 03020102.xhp
+#: 03090409.xhp
msgctxt ""
-"03020102.xhp\n"
-"bm_id3150400\n"
+"03090409.xhp\n"
+"bm_id3147226\n"
"help.text"
-msgid "<bookmark_value>FreeFile function</bookmark_value>"
-msgstr "<bookmark_value>FreeFile, функция</bookmark_value>"
+msgid "<bookmark_value>Sub statement</bookmark_value>"
+msgstr "<bookmark_value>Sub, оператор</bookmark_value>"
-#: 03020102.xhp
+#: 03090409.xhp
msgctxt ""
-"03020102.xhp\n"
-"hd_id3150400\n"
+"03090409.xhp\n"
+"hd_id3147226\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function[Runtime]\">FreeFile Function[Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03020102.xhp\" name=\"Функция FreeFile [динамична]\">Функция FreeFile [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03090409.xhp\" name=\"Sub Statement [Runtime]\">Sub Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090409.xhp\" name=\"Оператор Sub [динамичен]\">Оператор Sub [динамичен]</link>"
-#: 03020102.xhp
+#: 03090409.xhp
msgctxt ""
-"03020102.xhp\n"
-"par_id3154366\n"
+"03090409.xhp\n"
+"par_id3153311\n"
"2\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 "Връща следващия достъпен файлов номер за отваряне на файл. Използвайте тази функция, за да отворите файл с файлов номер, който не е в употреба от друг отворен в момента файл."
+msgid "Defines a subroutine."
+msgstr "Дефинира подпрограма."
-#: 03020102.xhp
+#: 03090409.xhp
msgctxt ""
-"03020102.xhp\n"
-"hd_id3150769\n"
+"03090409.xhp\n"
+"hd_id3149416\n"
"3\n"
"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
+msgid "Syntax"
+msgstr "Синтаксис"
-#: 03020102.xhp
+#: 03090409.xhp
msgctxt ""
-"03020102.xhp\n"
-"hd_id3151042\n"
+"03090409.xhp\n"
+"par_id3147530\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Връщана стойност:"
+msgid "statement block"
+msgstr "операторен блок"
-#: 03020102.xhp
+#: 03090409.xhp
msgctxt ""
-"03020102.xhp\n"
-"par_id3150440\n"
-"6\n"
+"03090409.xhp\n"
+"hd_id3153525\n"
+"9\n"
"help.text"
-msgid "Integer"
-msgstr "Integer"
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 03020102.xhp
+#: 03090409.xhp
msgctxt ""
-"03020102.xhp\n"
-"hd_id3148576\n"
-"7\n"
+"03090409.xhp\n"
+"par_id3150792\n"
+"10\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "<emph>Name:</emph> Name of the subroutine ."
+msgstr "<emph>Name:</emph> име на подпрограмата."
-#: 03020102.xhp
+#: 03090409.xhp
msgctxt ""
-"03020102.xhp\n"
-"par_id3155854\n"
-"8\n"
+"03090409.xhp\n"
+"par_id3154138\n"
+"11\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 "Тази функция може да бъде използвана само непосредствено преди оператор Open. FreeFile връща следващия достъпен файлов номер, но не го резервира."
+msgid "<emph>VarName: </emph>Parameter that you want to pass to the subroutine."
+msgstr "<emph>VarName:</emph> параметър, който ще бъде подаван на подпрограмата."
-#: 03020102.xhp
+#: 03090409.xhp
msgctxt ""
-"03020102.xhp\n"
-"hd_id3159153\n"
-"9\n"
+"03090409.xhp\n"
+"par_id3154908\n"
+"12\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "<emph>Type:</emph> Type-declaration key word."
+msgstr "<emph>Type:</emph> ключова дума за обявяване на тип."
-#: 03020102.xhp
+#: 03090409.xhp
msgctxt ""
-"03020102.xhp\n"
-"par_id3155416\n"
-"18\n"
+"03090409.xhp\n"
+"hd_id3153770\n"
+"16\n"
"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr "Print #iNumber, \"Първият ред с текст\""
+msgid "Example:"
+msgstr "Пример:"
-#: 03020102.xhp
+#: 03090409.xhp
msgctxt ""
-"03020102.xhp\n"
-"par_id3153416\n"
-"19\n"
+"03090409.xhp\n"
+"par_idN1063F\n"
"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr "Print #iNumber, \"Още един ред с текст\""
+msgid "' some statements"
+msgstr "' Оператори"
-#: 03120312.xhp
+#: 03090410.xhp
msgctxt ""
-"03120312.xhp\n"
+"03090410.xhp\n"
"tit\n"
"help.text"
-msgid "ConvertToURL Function [Runtime]"
-msgstr "Функция ConvertToURL [динамична]"
+msgid "Switch Function [Runtime]"
+msgstr "Функция Switch [динамична]"
-#: 03120312.xhp
+#: 03090410.xhp
msgctxt ""
-"03120312.xhp\n"
-"bm_id3152801\n"
+"03090410.xhp\n"
+"bm_id3148554\n"
"help.text"
-msgid "<bookmark_value>ConvertToURL function</bookmark_value>"
-msgstr "<bookmark_value>ConvertToURL, функция</bookmark_value>"
+msgid "<bookmark_value>Switch function</bookmark_value>"
+msgstr "<bookmark_value>Switch, функция</bookmark_value>"
-#: 03120312.xhp
+#: 03090410.xhp
msgctxt ""
-"03120312.xhp\n"
-"hd_id3152801\n"
+"03090410.xhp\n"
+"hd_id3148554\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120312.xhp\" name=\"ConvertToURL Function [Runtime]\">ConvertToURL Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120312.xhp\" name=\"Функция ConvertToURL [динамична]\">Функция ConvertToURL [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03090410.xhp\" name=\"Switch Function [Runtime]\">Switch Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090410.xhp\" name=\"Функция Switch [динамична]\">Функция Switch [динамична]</link>"
-#: 03120312.xhp
+#: 03090410.xhp
msgctxt ""
-"03120312.xhp\n"
-"par_id3148538\n"
+"03090410.xhp\n"
+"par_id3148522\n"
"2\n"
"help.text"
-msgid "Converts a system file name to a file URL."
-msgstr "Преобразува системно файлово име в URL."
+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 "Оценява списък от аргументи, състоящ се от изрази, последвани от стойности. Функцията Switch връща стойността, свързана със израза, който има стойност True."
-#: 03120312.xhp
+#: 03090410.xhp
msgctxt ""
-"03120312.xhp\n"
-"hd_id3150669\n"
+"03090410.xhp\n"
+"hd_id3154863\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03120312.xhp
+#: 03090410.xhp
msgctxt ""
-"03120312.xhp\n"
-"par_id3154285\n"
+"03090410.xhp\n"
+"par_id3155934\n"
"4\n"
"help.text"
-msgid "ConvertToURL(filename)"
-msgstr "ConvertToURL(Filename)"
+msgid "Switch (Expression1, Value1[, Expression2, Value2[..., Expression_n, Value_n]])"
+msgstr "Switch (Expression1, Value1[, Expression2, Value2[..., Expression_n, Value_n]])"
-#: 03120312.xhp
+#: 03090410.xhp
msgctxt ""
-"03120312.xhp\n"
-"hd_id3150984\n"
+"03090410.xhp\n"
+"hd_id3149119\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Връщана стойност:"
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 03120312.xhp
+#: 03090410.xhp
msgctxt ""
-"03120312.xhp\n"
-"par_id3147530\n"
+"03090410.xhp\n"
+"par_id3153894\n"
"6\n"
"help.text"
-msgid "String"
-msgstr "String"
+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 "Функцията <emph>Switch</emph> оценява всички параметри отляво надясно и връща стойността, свързана с първия израз, който има стойност True. Ако не са дадени израз и стойност като двойка, възниква грешка при изпълнение."
-#: 03120312.xhp
+#: 03090410.xhp
msgctxt ""
-"03120312.xhp\n"
-"hd_id3148550\n"
+"03090410.xhp\n"
+"par_id3153990\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "<emph>Expression:</emph> The expression that you want to evaluate."
+msgstr "<emph>Expression:</emph> изразът, който трябва да бъде изчислен."
-#: 03120312.xhp
+#: 03090410.xhp
msgctxt ""
-"03120312.xhp\n"
-"par_id3148947\n"
+"03090410.xhp\n"
+"par_id3153394\n"
"8\n"
"help.text"
-msgid "<emph>Filename:</emph> A file name as string."
-msgstr "<emph>Filename:</emph> низ – име на файл."
+msgid "<emph>Value:</emph> The value that you want to return if the expression is True."
+msgstr "<emph>Value:</emph> стойността, която трябва да се върне, ако изразът има стойност True."
-#: 03120312.xhp
+#: 03090410.xhp
msgctxt ""
-"03120312.xhp\n"
-"hd_id3153361\n"
+"03090410.xhp\n"
+"par_id3153346\n"
"9\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "In the following example, the <emph>Switch</emph> function assigns the appropriate gender to the name that is passed to the function:"
+msgstr "В следващия пример функцията <emph>Switch</emph> приписва правилния пол на името, което е подадено:"
-#: 03120312.xhp
+#: 03090410.xhp
msgctxt ""
-"03120312.xhp\n"
-"par_id3150792\n"
+"03090410.xhp\n"
+"hd_id3159157\n"
"10\n"
"help.text"
-msgid "systemFile$ = \"c:\\folder\\mytext.txt\""
-msgstr "systemFile$ = \"c:\\folder\\mytext.txt\""
-
-#: 03120312.xhp
-msgctxt ""
-"03120312.xhp\n"
-"par_id3154365\n"
-"11\n"
-"help.text"
-msgid "url$ = ConvertToURL( systemFile$ )"
-msgstr "url$ = ConvertToURL(systemFile$)"
-
-#: 03120312.xhp
-msgctxt ""
-"03120312.xhp\n"
-"par_id3151042\n"
-"12\n"
-"help.text"
-msgid "print url$"
-msgstr "print url$"
+msgid "Example:"
+msgstr "Пример:"
-#: 03120312.xhp
+#: 03090410.xhp
msgctxt ""
-"03120312.xhp\n"
-"par_id3154909\n"
+"03090410.xhp\n"
+"par_id3149579\n"
"13\n"
"help.text"
-msgid "systemFileAgain$ = ConvertFromURL( url$ )"
-msgstr "systemFileAgain$ = ConvertFromURL(url$)"
+msgid "sGender = GetGenderIndex( \"John\" )"
+msgstr "sGender = GetGenderIndex( \"Иван\" )"
-#: 03120312.xhp
+#: 03090410.xhp
msgctxt ""
-"03120312.xhp\n"
-"par_id3144762\n"
-"14\n"
+"03090410.xhp\n"
+"par_id3153361\n"
+"18\n"
"help.text"
-msgid "print systemFileAgain$"
-msgstr "print systemFileAgain$"
+msgid "GetGenderIndex = Switch(sName = \"Jane\", \"female\", sName = \"John\", \"male\")"
+msgstr "GetGenderIndex = Switch(sName = \"Петя\", \"жена\", sName = \"Иван\", \"мъж\")"
-#: 03103700.xhp
+#: 03090411.xhp
msgctxt ""
-"03103700.xhp\n"
+"03090411.xhp\n"
"tit\n"
"help.text"
-msgid "Set Statement[Runtime]"
-msgstr "Оператор Set [динамичен]"
+msgid "With Statement [Runtime]"
+msgstr "Оператор With [динамичен]"
-#: 03103700.xhp
+#: 03090411.xhp
msgctxt ""
-"03103700.xhp\n"
-"bm_id3154422\n"
+"03090411.xhp\n"
+"bm_id3153311\n"
"help.text"
-msgid "<bookmark_value>Set statement</bookmark_value><bookmark_value>Nothing object</bookmark_value>"
-msgstr "<bookmark_value>Set, оператор</bookmark_value><bookmark_value>Nothing, обект</bookmark_value>"
+msgid "<bookmark_value>With statement</bookmark_value>"
+msgstr "<bookmark_value>With, оператор</bookmark_value>"
-#: 03103700.xhp
+#: 03090411.xhp
msgctxt ""
-"03103700.xhp\n"
-"hd_id3154422\n"
+"03090411.xhp\n"
+"hd_id3153311\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03103700.xhp\" name=\"Set Statement[Runtime]\">Set Statement[Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03103700.xhp\" name=\"Оператор Set [динамичен]\">Оператор Set [динамичен]</link>"
+msgid "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"With Statement [Runtime]\">With Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"Оператор With [динамичен]\">Оператор With [динамичен]</link>"
-#: 03103700.xhp
+#: 03090411.xhp
msgctxt ""
-"03103700.xhp\n"
-"par_id3159149\n"
+"03090411.xhp\n"
+"par_id3159158\n"
"2\n"
"help.text"
-msgid "Sets an object reference on a variable or a Property."
-msgstr "Присвоява обръщение към обект на променлива или свойство."
+msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the End With statement is reached."
+msgstr "Задава обект като обект по подразбиране. Освен ако бъде декларирано друго име на обект, всички свойства и методи се отнасят за подразбирания обект до срещането на оператор End With."
-#: 03103700.xhp
+#: 03090411.xhp
msgctxt ""
-"03103700.xhp\n"
-"hd_id3153105\n"
+"03090411.xhp\n"
+"hd_id3156153\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03103700.xhp
+#: 03090411.xhp
msgctxt ""
-"03103700.xhp\n"
-"par_id3154217\n"
+"03090411.xhp\n"
+"par_id3145609\n"
"4\n"
"help.text"
-msgid "Set ObjectVar = Object"
-msgstr "Set ObjectVar = Object"
+msgid "With Object Statement block End With"
+msgstr "With Object Statement block End With"
-#: 03103700.xhp
+#: 03090411.xhp
msgctxt ""
-"03103700.xhp\n"
-"hd_id3154685\n"
+"03090411.xhp\n"
+"hd_id3154924\n"
"5\n"
"help.text"
msgid "Parameters:"
msgstr "Параметри:"
-#: 03103700.xhp
+#: 03090411.xhp
msgctxt ""
-"03103700.xhp\n"
-"par_id3156281\n"
+"03090411.xhp\n"
+"par_id3147560\n"
"6\n"
"help.text"
-msgid "<emph>ObjectVar:</emph> a variable or a property that requires an object reference."
-msgstr "<emph>ObjectVar:</emph> променлива или свойство, което изисква обръщение към обект."
-
-#: 03103700.xhp
-msgctxt ""
-"03103700.xhp\n"
-"par_id3159252\n"
-"7\n"
-"help.text"
-msgid "<emph>Object:</emph> Object that the variable or the property refers to."
-msgstr "<emph>Object:</emph> обектът, който да бъде присвоен на променливата или свойството."
-
-#: 03103700.xhp
-msgctxt ""
-"03103700.xhp\n"
-"par_idN10623\n"
-"help.text"
-msgid "<emph>Nothing</emph> - Assign the <emph>Nothing</emph> object to a variable to remove a previous assignment."
-msgstr "<emph>Nothing:</emph> присвойте на променлива обекта <emph>Nothing</emph>, за да отмените предишно присвояване."
-
-#: 03103700.xhp
-msgctxt ""
-"03103700.xhp\n"
-"hd_id3159153\n"
-"8\n"
-"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "Use <emph>With</emph> and <emph>End With</emph> if you have several properties or methods for a single object."
+msgstr "Използвайте <emph>With</emph> и <emph>End With</emph>, ако искате да се обърнете към няколко свойства или методи на един и същ обект."
-#: 03101300.xhp
+#: 03090412.xhp
msgctxt ""
-"03101300.xhp\n"
+"03090412.xhp\n"
"tit\n"
"help.text"
-msgid "DefDate Statement [Runtime]"
-msgstr "Оператор DefDate [динамичен]"
+msgid "Exit Statement [Runtime]"
+msgstr "Оператор Exit [динамичен]"
-#: 03101300.xhp
+#: 03090412.xhp
msgctxt ""
-"03101300.xhp\n"
-"bm_id3150504\n"
+"03090412.xhp\n"
+"bm_id3152924\n"
"help.text"
-msgid "<bookmark_value>DefDate statement</bookmark_value>"
-msgstr "<bookmark_value>DefDate, оператор</bookmark_value>"
+msgid "<bookmark_value>Exit statement</bookmark_value>"
+msgstr "<bookmark_value>Exit, оператор</bookmark_value>"
-#: 03101300.xhp
+#: 03090412.xhp
msgctxt ""
-"03101300.xhp\n"
-"hd_id3150504\n"
+"03090412.xhp\n"
+"hd_id3152924\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03101300.xhp\" name=\"DefDate Statement [Runtime]\">DefDate Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03101300.xhp\" name=\"Оператор DefDate [динамичен]\">Оператор DefDate [динамичен]</link>"
+msgid "<link href=\"text/sbasic/shared/03090412.xhp\" name=\"Exit Statement [Runtime]\">Exit Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090412.xhp\" name=\"Оператор Exit [динамичен]\">Оператор Exit [динамичен]</link>"
-#: 03101300.xhp
+#: 03090412.xhp
msgctxt ""
-"03101300.xhp\n"
-"par_id3145069\n"
+"03090412.xhp\n"
+"par_id3153394\n"
"2\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 "Операторът DefDate установява подразбиран тип данни според диапазон от букви в случай, че не е зададена ключова дума или знак за деклариране на тип."
+msgid "Exits a <emph>Do...Loop</emph>, <emph>For...Next</emph>, a function, or a subroutine."
+msgstr "Прекъсва <emph>Do…Loop</emph>, <emph>For…Next</emph>, функция или процедура."
-#: 03101300.xhp
+#: 03090412.xhp
msgctxt ""
-"03101300.xhp\n"
-"hd_id3154758\n"
+"03090412.xhp\n"
+"hd_id3149763\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03101300.xhp
+#: 03090412.xhp
msgctxt ""
-"03101300.xhp\n"
-"par_id3148664\n"
+"03090412.xhp\n"
+"par_id3159157\n"
"4\n"
"help.text"
-msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
-msgstr "Defxxx Characterrange1[, Characterrange2[,...]]"
+msgid "see Parameters"
+msgstr "виж Параметри"
-#: 03101300.xhp
+#: 03090412.xhp
msgctxt ""
-"03101300.xhp\n"
-"hd_id3150541\n"
+"03090412.xhp\n"
+"hd_id3148943\n"
"5\n"
"help.text"
msgid "Parameters:"
msgstr "Параметри:"
-#: 03101300.xhp
+#: 03090412.xhp
msgctxt ""
-"03101300.xhp\n"
-"par_id3156709\n"
+"03090412.xhp\n"
+"par_id3154760\n"
"6\n"
"help.text"
-msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set a default data type for."
-msgstr "<emph>Characterrange:</emph> букви, определящи диапазона от променливи, за които искате да зададете подразбиран тип данни."
+msgid "<emph>Exit Do</emph>"
+msgstr "<emph>Exit Do</emph>"
-#: 03101300.xhp
+#: 03090412.xhp
msgctxt ""
-"03101300.xhp\n"
-"par_id3150869\n"
+"03090412.xhp\n"
+"par_id3147559\n"
"7\n"
"help.text"
-msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
-msgstr "<emph>xxx:</emph> ключова дума, дефинираща подразбирания тип данни:"
+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 "Валиден е само за напускане на цикъла в оператор <emph>Do…Loop</emph>. Изпълнението на програмата продължава от оператора след Loop. Ако операторите <emph>Do…Loop</emph> са вложени, управлението се предава на следващото по-външно ниво."
-#: 03101300.xhp
+#: 03090412.xhp
msgctxt ""
-"03101300.xhp\n"
-"par_id3145171\n"
+"03090412.xhp\n"
+"par_id3150398\n"
"8\n"
"help.text"
-msgid "<emph>Keyword:</emph> Default variable type"
-msgstr "<emph>Ключова дума:</emph> Подразбиран тип данни"
+msgid "<emph>Exit For</emph>"
+msgstr "<emph>Exit For</emph>"
-#: 03101300.xhp
+#: 03090412.xhp
msgctxt ""
-"03101300.xhp\n"
-"par_id3150767\n"
+"03090412.xhp\n"
+"par_id3148797\n"
"9\n"
"help.text"
-msgid "<emph>DefDate:</emph> Date"
-msgstr "<emph>DefDate:</emph> Date"
+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 "Валиден е само за напускане на цикъла в оператор <emph>Do…Next</emph>. Изпълнението на програмата продължава от оператора след Loop. Ако операторите <emph>Do…Next</emph> са вложени, управлението се предава на следващото по-външно ниво."
-#: 03101300.xhp
+#: 03090412.xhp
msgctxt ""
-"03101300.xhp\n"
-"hd_id3153768\n"
+"03090412.xhp\n"
+"par_id3147229\n"
"10\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
-
-#: 03101300.xhp
-msgctxt ""
-"03101300.xhp\n"
-"par_id3145785\n"
-"12\n"
-"help.text"
-msgid "' Prefix definitions for variable types:"
-msgstr "' Дефиниране с префикс за променливи от даден тип:"
-
-#: 03101300.xhp
-msgctxt ""
-"03101300.xhp\n"
-"par_id3152462\n"
-"22\n"
-"help.text"
-msgid "tDate=Date ' tDate is an implicit date variable"
-msgstr "tDate = Date ' tDate е променлива с неявен тип Date"
-
-#: 01020500.xhp
-msgctxt ""
-"01020500.xhp\n"
-"tit\n"
-"help.text"
-msgid "Libraries, Modules and Dialogs"
-msgstr "Библиотеки, модули и диалогови прозорци"
-
-#: 01020500.xhp
-msgctxt ""
-"01020500.xhp\n"
-"hd_id3147317\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/01020500.xhp\" name=\"Libraries, Modules and Dialogs\">Libraries, Modules and Dialogs</link>"
-msgstr "<link href=\"text/sbasic/shared/01020500.xhp\" name=\"Библиотеки, модули и диалогови прозорци\">Библиотеки, модули и диалогови прозорци</link>"
-
-#: 01020500.xhp
-msgctxt ""
-"01020500.xhp\n"
-"par_id3147427\n"
-"2\n"
-"help.text"
-msgid "The following describes the basic use of libraries, modules and dialogs in $[officename] Basic."
-msgstr "Следва основна информация за работата с библиотеки, модули и диалози в $[officename] Basic."
-
-#: 01020500.xhp
-msgctxt ""
-"01020500.xhp\n"
-"par_id3146120\n"
-"3\n"
-"help.text"
-msgid "$[officename] Basic provides tools to help you structuring your projects. It supports various \"units\" which enable you to group individual SUBS and FUNCTIONS in a Basic project."
-msgstr "$[officename] Basic предлага средства за структуриране на проектите. Той поддържа различни подразделения, в които да групирате отделните процедури и функции на проекта си."
-
-#: 01020500.xhp
-msgctxt ""
-"01020500.xhp\n"
-"hd_id3148575\n"
-"5\n"
-"help.text"
-msgid "Libraries"
-msgstr "Библиотеки"
-
-#: 01020500.xhp
-msgctxt ""
-"01020500.xhp\n"
-"par_id3150011\n"
-"6\n"
-"help.text"
-msgid "Libraries serve as a tool for organizing modules, and can either be attached to a document or a template. When the document or a template is saved, all modules contained in the library are automatically saved as well."
-msgstr "Библиотеките служат за организиране на модули и могат да бъдат прикрепени или към документ, или към шаблон. Когато документът и шаблонът дбъде съхранен, автоматично се запазват и всички модули от библиотеката."
-
-#: 01020500.xhp
-msgctxt ""
-"01020500.xhp\n"
-"par_id3151112\n"
-"7\n"
-"help.text"
-msgid "A library can contain up to 16,000 modules."
-msgstr "Всяка библиотека може да съдържа до 16 000 модула."
-
-#: 01020500.xhp
-msgctxt ""
-"01020500.xhp\n"
-"hd_id3149262\n"
-"8\n"
-"help.text"
-msgid "Modules"
-msgstr "Модули"
-
-#: 01020500.xhp
-msgctxt ""
-"01020500.xhp\n"
-"par_id3156441\n"
-"9\n"
-"help.text"
-msgid "A module contains SUBS and FUNCTIONS along with variable declarations. The length of the program that can be saved in a module is limited to 64 KB. If more space is required you can divide a $[officename] Basic project among several modules, and then save them in a single library."
-msgstr "Модулите съдържат процедури, функции и декларации на променливи. Дължината на програмата, която може да се съхранява в един модул, е ограничена до 64 КБ. Ако е необходимо повече пространство, можете да разделите проекта на $[officename] Basic на няколко модула и да ги запишете в една обща библиотека."
+msgid "<emph>Exit Function</emph>"
+msgstr "<emph>Exit Function</emph>"
-#: 01020500.xhp
+#: 03090412.xhp
msgctxt ""
-"01020500.xhp\n"
-"hd_id3152577\n"
+"03090412.xhp\n"
+"par_id3154685\n"
"11\n"
"help.text"
-msgid "Dialog Modules"
-msgstr "Диалогови модули"
+msgid "Exits the <emph>Function</emph> procedure immediately. Program execution continues with the statement that follows the <emph>Function</emph> call."
+msgstr "Прекратява незабавно изпълнението на функцията. Изпълнението на програмата продължава от оператора след извикването на функцията."
-#: 01020500.xhp
+#: 03090412.xhp
msgctxt ""
-"01020500.xhp\n"
-"par_id3149377\n"
+"03090412.xhp\n"
+"par_id3155132\n"
"12\n"
"help.text"
-msgid "Dialog modules contain dialog definitions, including the dialog box properties, the properties of each dialog element and the events assigned. Since a dialog module can only contain a single dialog, they are often referred to as \"dialogs\"."
-msgstr "Диалоговите модули съдържат дефиниции на диалози, включително свойствата на диалоговия прозорец и на всеки елемент от диалога, както и зададените събития. Тъй като диалоговите модули могат да съдържат само по един диалог, често се наричат просто диалози."
-
-#: 03030000.xhp
-msgctxt ""
-"03030000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Date and Time Functions"
-msgstr "Функции за дати и часове"
-
-#: 03030000.xhp
-msgctxt ""
-"03030000.xhp\n"
-"hd_id3150502\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03030000.xhp\" name=\"Date and Time Functions\">Date and Time Functions</link>"
-msgstr "<link href=\"text/sbasic/shared/03030000.xhp\" name=\"Функции за дати и часове\">Функции за дати и часове</link>"
+msgid "<emph>Exit Sub</emph>"
+msgstr "<emph>Exit Sub</emph>"
-#: 03030000.xhp
+#: 03090412.xhp
msgctxt ""
-"03030000.xhp\n"
-"par_id3153255\n"
-"2\n"
+"03090412.xhp\n"
+"par_id3149561\n"
+"13\n"
"help.text"
-msgid "Use the statements and functions described here to perform date and time calculations."
-msgstr "Чрез описаните тук опертори и функции можете да извършвате изчисления с дати и часове."
+msgid "Exits the subroutine immediately. Program execution continues with the statement that follows the <emph>Sub</emph> call."
+msgstr "Предизвиква незабавен изход от процедура. Изпълнението на програмата продължава от оператора, непосредствено следващ извикването на процедурата."
-#: 03030000.xhp
+#: 03090412.xhp
msgctxt ""
-"03030000.xhp\n"
-"par_id3152363\n"
-"3\n"
+"03090412.xhp\n"
+"par_id3153143\n"
+"14\n"
"help.text"
-msgid "<item type=\"productname\">%PRODUCTNAME</item> Basic lets you calculate time or date differences by converting the time and date values to continuous numeric values. After the difference is calculated, special functions are used to reconvert the values to the standard time or date formats."
-msgstr "<item type=\"productname\">%PRODUCTNAME</item> Basic ви позволява да пресмятате разлики между дати или часове, като ги преобразувате в числови стойности от непрекъсната скала. След изчисляването на разликата, тя може да бъде преобразувана обратно в стандартните формати за дати и часове."
+msgid "The Exit statement does not define the end of a structure, and must not be confused with the End statement."
+msgstr "Операторът Exit не обозначава края на структура и не трябва да се бърка с End."
-#: 03030000.xhp
+#: 03090412.xhp
msgctxt ""
-"03030000.xhp\n"
-"par_id3151054\n"
-"4\n"
+"03090412.xhp\n"
+"hd_id3147348\n"
+"15\n"
"help.text"
-msgid "You can combine date and time values into a single floating-decimal number. Dates are converted to integers, and times to decimal values. <item type=\"productname\">%PRODUCTNAME</item> Basic also supports the variable type Date, which can contain a time specification consisting of both a date and time."
-msgstr "Можете да комбинирате дата и час в единична числова стойност с плаваща запетая. Датите съответстват на цели числа, а часовете – на дроби. <item type=\"productname\">%PRODUCTNAME</item> Basic поддържа и променливи от тип Date, които могат да съдържат точно време, включващо дата и час."
+msgid "Example:"
+msgstr "Пример:"
-#: 03090000.xhp
+#: 03090412.xhp
msgctxt ""
-"03090000.xhp\n"
-"tit\n"
+"03090412.xhp\n"
+"par_id3153158\n"
+"20\n"
"help.text"
-msgid "Controlling Program Execution"
-msgstr "Управление на изпълнението на програмата"
+msgid "For siStep = 0 To 10 ' Fill array with test data"
+msgstr "For siStep = 0 To 10 ' Запълваме масива с тестови данни"
-#: 03090000.xhp
+#: 03090412.xhp
msgctxt ""
-"03090000.xhp\n"
-"hd_id3145136\n"
-"1\n"
+"03090412.xhp\n"
+"par_id3153764\n"
+"31\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090000.xhp\" name=\"Controlling Program Execution\">Controlling Program Execution</link>"
-msgstr "<link href=\"text/sbasic/shared/03090000.xhp\" name=\"Управление на изпълнението на програмата\">Управление на изпълнението на програмата</link>"
+msgid "' LinSearch searches a TextArray:sList() for a TextEntry:"
+msgstr "' LinSearch претърсва TextArray:sList() за TextEntry:"
-#: 03090000.xhp
+#: 03090412.xhp
msgctxt ""
-"03090000.xhp\n"
-"par_id3143268\n"
-"2\n"
+"03090412.xhp\n"
+"par_id3148995\n"
+"32\n"
"help.text"
-msgid "The following statements control the execution of a program."
-msgstr "Следващите оператори управляват изпълнението на програмата."
+msgid "' Returns the index of the entry or 0 (Null)"
+msgstr "' Връща индекса на елемента или 0 (Null)"
-#: 03090000.xhp
+#: 03090412.xhp
msgctxt ""
-"03090000.xhp\n"
-"par_id3156152\n"
-"3\n"
+"03090412.xhp\n"
+"par_id3149567\n"
+"35\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 "Програмите обикновено се изпълняват от първия ред код към последния. Можете също така да извикате определени процедури в програма според зададени условия или да повторите част от програмата в рамките на процедура или функция. Чрез циклите можете да повтаряте части от програмата колкото пъти е необходимо или докато се изпълни дадено условие. Управляващите оператори се класифицират като условни оператори, оператори за цикъл и оператори за преход."
+msgid "Exit For ' sItem found"
+msgstr "Exit For ' sItem е намерен"
-#: 03080000.xhp
+#: 03100000.xhp
msgctxt ""
-"03080000.xhp\n"
+"03100000.xhp\n"
"tit\n"
"help.text"
-msgid "Numeric Functions"
-msgstr "Числови функции"
+msgid "Variables"
+msgstr "Променливи"
-#: 03080000.xhp
+#: 03100000.xhp
msgctxt ""
-"03080000.xhp\n"
-"hd_id3153127\n"
+"03100000.xhp\n"
+"hd_id3149669\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080000.xhp\" name=\"Numeric Functions\">Numeric Functions</link>"
-msgstr "<link href=\"text/sbasic/shared/03080000.xhp\" name=\"Числови функции\">Числови функции</link>"
+msgid "<link href=\"text/sbasic/shared/03100000.xhp\" name=\"Variables\">Variables</link>"
+msgstr "<link href=\"text/sbasic/shared/03100000.xhp\" name=\"Променливи\">Променливи</link>"
-#: 03080000.xhp
+#: 03100000.xhp
msgctxt ""
-"03080000.xhp\n"
-"par_id3148550\n"
+"03100000.xhp\n"
+"par_id3147265\n"
"2\n"
"help.text"
-msgid "The following numeric functions perform calculations. Mathematical and Boolean operators are described in a separate section. Functions differ from operators in that functions pass arguments and return a result, instead of operators that return a result by combining two numeric expressions."
-msgstr "Следват числовите функции за извършване на изчисления. Математическите и булевите (логически) операции са описани в отделен раздел. Функциите се различават от операциите по това, че приемат аргументи и връщат резултат, а операциите формират резултата чрез комбиниране на два числови израза."
+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 "Следващите оператори и функции са за работа с променливи. Чрез тях можете да декларирате или дефинирате променливи, да преобразувате стойности от един тип в друг и да намирате типа на променлива."
-#: 03120310.xhp
+#: 03100050.xhp
msgctxt ""
-"03120310.xhp\n"
+"03100050.xhp\n"
"tit\n"
"help.text"
-msgid "UCase Function [Runtime]"
-msgstr "Функция UCase [динамична]"
-
-#: 03120310.xhp
-msgctxt ""
-"03120310.xhp\n"
-"bm_id3153527\n"
-"help.text"
-msgid "<bookmark_value>UCase function</bookmark_value>"
-msgstr "<bookmark_value>UCase, функция</bookmark_value>"
+msgid "CCur Function [Runtime]"
+msgstr "Функция CCur [динамична]"
-#: 03120310.xhp
+#: 03100050.xhp
msgctxt ""
-"03120310.xhp\n"
-"hd_id3153527\n"
-"1\n"
+"03100050.xhp\n"
+"bm_id8926053\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase Function [Runtime]\">UCase Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120310.xhp\" name=\"Функция UCase [динамична]\">Функция UCase [динамична]</link>"
+msgid "<bookmark_value>CCur function</bookmark_value>"
+msgstr "<bookmark_value>CCur, функция</bookmark_value>"
-#: 03120310.xhp
+#: 03100050.xhp
msgctxt ""
-"03120310.xhp\n"
-"par_id3155420\n"
-"2\n"
+"03100050.xhp\n"
+"par_idN10541\n"
"help.text"
-msgid "Converts lowercase characters in a string to uppercase."
-msgstr "Преобразува малките букви в низ в главни."
+msgid "<link href=\"text/sbasic/shared/03100050.xhp\">CCur Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03100050.xhp\">Функция CCur [динамична]</link>"
-#: 03120310.xhp
+#: 03100050.xhp
msgctxt ""
-"03120310.xhp\n"
-"par_id3150771\n"
-"3\n"
+"03100050.xhp\n"
+"par_idN10545\n"
"help.text"
-msgid "See also: <link href=\"text/sbasic/shared/03120302.xhp\" name=\"LCase Function\">LCase Function</link>"
-msgstr "Виж също: функция <link href=\"text/sbasic/shared/03120302.xhp\" name=\"LCase\">LCase</link>"
+msgid "Converts a string expression or numeric expression to a currency expression. The locale settings are used for decimal separators and currency symbols."
+msgstr "Преобразува низ или число във валутна стойност. Настройките за локал определят десетичните разделители и символите за валута."
-#: 03120310.xhp
+#: 03100050.xhp
msgctxt ""
-"03120310.xhp\n"
-"par_id3149233\n"
-"4\n"
+"03100050.xhp\n"
+"par_idN10548\n"
"help.text"
-msgid "<emph>Syntax</emph>:"
-msgstr "<emph>Синтаксис</emph>:"
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 03120310.xhp
+#: 03100050.xhp
msgctxt ""
-"03120310.xhp\n"
-"par_id3153061\n"
-"5\n"
+"03100050.xhp\n"
+"par_idN105E8\n"
"help.text"
-msgid "UCase (Text As String)"
-msgstr "UCase (Text As String)"
+msgid "CCur(Expression)"
+msgstr "CCur(Expression)"
-#: 03120310.xhp
+#: 03100050.xhp
msgctxt ""
-"03120310.xhp\n"
-"par_id3159414\n"
-"6\n"
+"03100050.xhp\n"
+"par_idN105EB\n"
"help.text"
-msgid "<emph>Return value</emph>:"
+msgid "Return value:"
msgstr "Връщана стойност:"
-#: 03120310.xhp
-msgctxt ""
-"03120310.xhp\n"
-"par_id3146795\n"
-"7\n"
-"help.text"
-msgid "String"
-msgstr "String"
-
-#: 03120310.xhp
-msgctxt ""
-"03120310.xhp\n"
-"hd_id3149457\n"
-"8\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
-
-#: 03120310.xhp
-msgctxt ""
-"03120310.xhp\n"
-"par_id3150791\n"
-"9\n"
-"help.text"
-msgid "<emph>Text:</emph> Any string expression that you want to convert."
-msgstr "<emph>Text:</emph> низов израз, чиято стойност да бъде преобразувана."
-
-#: 03120310.xhp
+#: 03100050.xhp
msgctxt ""
-"03120310.xhp\n"
-"hd_id3154125\n"
-"10\n"
+"03100050.xhp\n"
+"par_idN105EF\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "Currency"
+msgstr "Currency"
-#: 03120310.xhp
+#: 03100050.xhp
msgctxt ""
-"03120310.xhp\n"
-"par_id3149204\n"
-"14\n"
+"03100050.xhp\n"
+"par_idN105F2\n"
"help.text"
-msgid "Print LCase(sVar) ' returns \"las vegas\""
-msgstr "Print LCase(sVar) ' връща \"лас вегас\""
+msgid "Parameter:"
+msgstr "Параметър:"
-#: 03120310.xhp
+#: 03100050.xhp
msgctxt ""
-"03120310.xhp\n"
-"par_id3156280\n"
-"15\n"
+"03100050.xhp\n"
+"par_idN105F6\n"
"help.text"
-msgid "Print UCase(sVar) ' returns \"LAS VEGAS\""
-msgstr "Print UCase(sVar) ' връща \"ЛАС ВЕГАС\""
+msgid "Expression: Any string or numeric expression that you want to convert."
+msgstr "<emph>Expression:</emph> низов или числов израз, който да бъде преобразуван."
#: 03100060.xhp
msgctxt ""
@@ -20488,1004 +23899,873 @@ msgctxt ""
msgid "Expression: Any string or numeric expression that you want to convert."
msgstr "<emph>Expression:</emph> низов или числов израз, който да бъде преобразуван."
-#: 01040000.xhp
+#: 03100070.xhp
msgctxt ""
-"01040000.xhp\n"
+"03100070.xhp\n"
"tit\n"
"help.text"
-msgid "Event-Driven Macros"
-msgstr "Макроси, задействани от събития"
+msgid "CVar Function [Runtime]"
+msgstr "Функция CVar [динамична]"
-#: 01040000.xhp
+#: 03100070.xhp
msgctxt ""
-"01040000.xhp\n"
-"bm_id3154581\n"
+"03100070.xhp\n"
+"bm_id2338633\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>events; assigning macros</bookmark_value>"
-msgstr "<bookmark_value>изтриване; макрос, зададен за събитие</bookmark_value><bookmark_value>макроси; задаване за събития</bookmark_value><bookmark_value>задаване на макроси за събития</bookmark_value><bookmark_value>събития; задаване на макроси</bookmark_value>"
+msgid "<bookmark_value>CVar function</bookmark_value>"
+msgstr "<bookmark_value>CVar, функция</bookmark_value>"
-#: 01040000.xhp
+#: 03100070.xhp
msgctxt ""
-"01040000.xhp\n"
-"hd_id3147348\n"
-"1\n"
+"03100070.xhp\n"
+"par_idN1054B\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/01040000.xhp\" name=\"Event-Driven Macros\">Event-Driven Macros</link>"
-msgstr "<link href=\"text/sbasic/shared/01040000.xhp\" name=\"Макроси, задействани от събития\">Макроси, задействани от събития</link>"
+msgid "<link href=\"text/sbasic/shared/03100070.xhp\">CVar Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03100070.xhp\">Функция CVar [динамична]</link>"
-#: 01040000.xhp
+#: 03100070.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3146120\n"
-"2\n"
+"03100070.xhp\n"
+"par_idN1055B\n"
"help.text"
-msgid "This section describes how to assign Basic programs to program events."
-msgstr "В този раздел е показано как се приписват програми на Basic на програмни събития."
+msgid "Converts a string expression or numeric expression to a variant expression."
+msgstr "Преобразува низ или число към стойност от тип Variant."
-#: 01040000.xhp
+#: 03100070.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3149263\n"
-"4\n"
+"03100070.xhp\n"
+"par_idN1055E\n"
"help.text"
-msgid "You can automatically execute a macro when a specified software event occurs by assigning the desired macro to the event. The following table provides an overview of program events and at what point an assigned macro is executed."
-msgstr "Когато припишете макрос на дадено събитие, той ще се изпълнява автоматично при възникване на събитието. Вижте следващата таблица за общ преглед на програмните събития и моментите, в които се изпълняват зададените макроси."
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 01040000.xhp
+#: 03100070.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3148455\n"
-"5\n"
+"03100070.xhp\n"
+"par_idN10562\n"
"help.text"
-msgid "Event"
-msgstr "Събитие"
+msgid "CVar(Expression)"
+msgstr "CVar(Expression)"
-#: 01040000.xhp
+#: 03100070.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3145799\n"
-"6\n"
+"03100070.xhp\n"
+"par_idN10565\n"
"help.text"
-msgid "An assigned macro is executed..."
-msgstr "Приписаният макрос се изпълнява…"
+msgid "Return value:"
+msgstr "Връщана стойност:"
-#: 01040000.xhp
+#: 03100070.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3149379\n"
-"7\n"
+"03100070.xhp\n"
+"par_idN10569\n"
"help.text"
-msgid "Program Start"
-msgstr "При стартиране на приложение"
+msgid "Variant."
+msgstr "Variant"
-#: 01040000.xhp
+#: 03100070.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3150715\n"
-"8\n"
+"03100070.xhp\n"
+"par_idN1056C\n"
"help.text"
-msgid "... after a $[officename] application is started."
-msgstr "…след като бъде стартирано приложение на $[officename]."
+msgid "Parameter:"
+msgstr "Параметър:"
-#: 01040000.xhp
+#: 03100070.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3146914\n"
-"9\n"
+"03100070.xhp\n"
+"par_idN10570\n"
"help.text"
-msgid "Program End"
-msgstr "При затваряне на приложение"
+msgid "Expression: Any string or numeric expression that you want to convert."
+msgstr "<emph>Expression:</emph> низов или числов израз, който да бъде преобразуван."
-#: 01040000.xhp
+#: 03100080.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3153765\n"
-"10\n"
+"03100080.xhp\n"
+"tit\n"
"help.text"
-msgid "...before a $[officename] application is terminated."
-msgstr "…преди да се спре приложение на $[officename]."
+msgid "CVErr Function [Runtime]"
+msgstr "Функция CVErr [динамична]"
-#: 01040000.xhp
+#: 03100080.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3145150\n"
-"11\n"
+"03100080.xhp\n"
+"bm_id531022\n"
"help.text"
-msgid "Create Document"
-msgstr "При създаване на документ"
+msgid "<bookmark_value>CVErr function</bookmark_value>"
+msgstr "<bookmark_value>CVErr function</bookmark_value>"
-#: 01040000.xhp
+#: 03100080.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3163808\n"
-"12\n"
+"03100080.xhp\n"
+"par_idN1054B\n"
"help.text"
-msgid "...after a new document is created with <emph>File - New</emph> or with the <emph>New</emph> icon."
-msgstr "…след като бъде създаден нов документ с <emph>Файл - Нов</emph> или с иконата <emph>Нов</emph>."
+msgid "<link href=\"text/sbasic/shared/03100080.xhp\">CVErr Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03100080.xhp\">Функция CVErr [динамична]</link>"
-#: 01040000.xhp
+#: 03100080.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3145790\n"
-"13\n"
+"03100080.xhp\n"
+"par_idN1055B\n"
"help.text"
-msgid "Open Document"
-msgstr "При отваряне на документ"
+msgid "Converts a string expression or numeric expression to a variant expression of the sub type \"Error\"."
+msgstr "Преобразува низ или число към стойност от типa вариант, подтип „Error“."
-#: 01040000.xhp
+#: 03100080.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3154572\n"
-"14\n"
+"03100080.xhp\n"
+"par_idN1055E\n"
"help.text"
-msgid "...after a document is opened with <emph>File - Open</emph> or with the <emph>Open</emph> icon."
-msgstr "…след като бъде отворен документ с <emph>Файл - Отваряне</emph> или с иконата <emph>Отваряне</emph>."
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 01040000.xhp
+#: 03100080.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3153266\n"
-"15\n"
+"03100080.xhp\n"
+"par_idN10562\n"
"help.text"
-msgid "Save Document As"
-msgstr "При съхраняване на документ като"
+msgid "CVErr(Expression)"
+msgstr "CVErr(Expression)"
-#: 01040000.xhp
+#: 03100080.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3150208\n"
-"16\n"
+"03100080.xhp\n"
+"par_idN10565\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 "…преди документ да бъде запазен под зададено име (с <emph>Файл - Съхраняване като</emph> или с <emph>Файл - Съхраняване</emph> или иконата <emph>Файл - Съхраняване</emph>, ако на файла още не е зададено име)."
+msgid "Return value:"
+msgstr "Връщана стойност:"
-#: 01040000.xhp
+#: 03100080.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3158215\n"
-"43\n"
+"03100080.xhp\n"
+"par_idN10569\n"
"help.text"
-msgid "Document has been saved as"
-msgstr "След съхраняване на документ като"
+msgid "Variant."
+msgstr "Variant"
-#: 01040000.xhp
+#: 03100080.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3150980\n"
-"44\n"
+"03100080.xhp\n"
+"par_idN1056C\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 "…след като документ бъде запазен под зададено име (с <emph>Файл - Съхраняване като</emph> или с <emph>Файл - Съхраняване</emph> или иконата <emph>Съхраняване</emph>, ако на файла още не е зададено име)."
+msgid "Parameter:"
+msgstr "Параметър:"
-#: 01040000.xhp
+#: 03100080.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3150519\n"
-"17\n"
+"03100080.xhp\n"
+"par_idN10570\n"
"help.text"
-msgid "Save Document"
-msgstr "При съхраняване на документ"
+msgid "Expression: Any string or numeric expression that you want to convert."
+msgstr "<emph>Expression:</emph> низов или числов израз, който да бъде преобразуван."
-#: 01040000.xhp
+#: 03100100.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3155529\n"
-"18\n"
+"03100100.xhp\n"
+"tit\n"
"help.text"
-msgid "...before a document is saved with <emph>File - Save</emph> or the <emph>Save</emph> icon, provided that a document name has already been specified."
-msgstr "…преди документ да бъде запазен с <emph>Файл - Съхраняване</emph> или иконата <emph>Съхраняване</emph>, ако вече му е зададено име."
+msgid "CBool Function [Runtime]"
+msgstr "Функция CBool [динамична]"
-#: 01040000.xhp
+#: 03100100.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3149404\n"
-"45\n"
+"03100100.xhp\n"
+"bm_id3150616\n"
"help.text"
-msgid "Document has been saved"
-msgstr "След съхраняване на документ"
+msgid "<bookmark_value>CBool function</bookmark_value>"
+msgstr "<bookmark_value>CBool, функция</bookmark_value>"
-#: 01040000.xhp
+#: 03100100.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3151332\n"
-"46\n"
+"03100100.xhp\n"
+"hd_id3150616\n"
+"1\n"
"help.text"
-msgid "...after a document is saved with <emph>File - Save</emph> or the <emph>Save</emph> icon, provided that a document name has already been specified."
-msgstr "…след като документ бъде запазен с <emph>Файл - Съхраняване</emph> или иконата <emph>Съхраняване</emph>, ако вече му е зададено име."
+msgid "<link href=\"text/sbasic/shared/03100100.xhp\" name=\"CBool Function [Runtime]\">CBool Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03100100.xhp\" name=\"Функция CBool [динамична]\">Функция CBool [динамична]</link>"
-#: 01040000.xhp
+#: 03100100.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3159171\n"
-"19\n"
+"03100100.xhp\n"
+"par_id3145136\n"
+"2\n"
"help.text"
-msgid "Document is closing"
-msgstr "Документът се затваря"
+msgid "Converts a string comparison or numeric comparison to a Boolean expression, or converts a single numeric expression to a Boolean expression."
+msgstr "Преобразува низово или числово сравнение или единичен числов израз към стойност от тип Boolean."
-#: 01040000.xhp
+#: 03100100.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3146868\n"
-"20\n"
+"03100100.xhp\n"
+"hd_id3153345\n"
+"3\n"
"help.text"
-msgid "...before a document is closed."
-msgstr "…преди да бъде затворен документ."
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 01040000.xhp
+#: 03100100.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3159097\n"
-"47\n"
+"03100100.xhp\n"
+"par_id3149514\n"
+"4\n"
"help.text"
-msgid "Document closed"
-msgstr "Документът е затворен"
+msgid "CBool (Expression1 {= | <> | < | > | <= | >=} Expression2) or CBool (Number)"
+msgstr "CBool (Expression1 {= | <> | < | > | <= | >=} Expression2) или CBool (Number)"
-#: 01040000.xhp
+#: 03100100.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3148606\n"
-"48\n"
+"03100100.xhp\n"
+"hd_id3156152\n"
+"5\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 "…след като е бил затворен документ. Забележете, че събитието „При съхраняване на документ“ може да възникне когато документът се запазва преди затваряне."
+msgid "Return value:"
+msgstr "Връщана стойност:"
-#: 01040000.xhp
+#: 03100100.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3144772\n"
-"21\n"
+"03100100.xhp\n"
+"par_id3155419\n"
+"6\n"
"help.text"
-msgid "Activate Document"
-msgstr "При активиране на документ"
+msgid "Bool"
+msgstr "Bool"
-#: 01040000.xhp
+#: 03100100.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3149442\n"
-"22\n"
+"03100100.xhp\n"
+"hd_id3147530\n"
+"7\n"
"help.text"
-msgid "...after a document is brought to the foreground."
-msgstr "…след като документ бъде изнесен на преден план."
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 01040000.xhp
+#: 03100100.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3150888\n"
-"23\n"
+"03100100.xhp\n"
+"par_id3156344\n"
+"8\n"
"help.text"
-msgid "Deactivate Document"
-msgstr "При деактивиране на документ"
+msgid "<emph>Expression1, Expression2:</emph> Any string or numeric expressions that you want to compare. If the expressions match, the <emph>CBool</emph> function returns <emph>True</emph>, otherwise <emph>False</emph> is returned."
+msgstr "<emph>Expression1, Expression2:</emph> низови или числови, които искате да бъдат сравнени. Ако си съответстват, функцията <emph>CBool</emph> връща <emph>True</emph>, в противен случай – <emph>False</emph>."
-#: 01040000.xhp
+#: 03100100.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3154060\n"
-"24\n"
+"03100100.xhp\n"
+"par_id3149655\n"
+"9\n"
"help.text"
-msgid "...after another document is brought to the foreground."
-msgstr "…след като друг документ бъде изнесен на преден план."
+msgid "<emph>Number:</emph> Any numeric expression that you want to convert. If the expression equals 0, <emph>False</emph> is returned, otherwise <emph>True</emph> is returned."
+msgstr "<emph>Number:</emph> числов израз, който да бъде преобразуван. Ако стойността му е 0, се връща <emph>False</emph>, в противен случай – <emph>True</emph>."
-#: 01040000.xhp
+#: 03100100.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3152384\n"
-"25\n"
+"03100100.xhp\n"
+"par_id3145171\n"
+"10\n"
"help.text"
-msgid "Print Document"
-msgstr "При печатане на документ"
+msgid "The following example uses the <emph>CBool</emph> function to evaluate the value that is returned by the <emph>Instr</emph> function. The function checks if the word \"and\" is found in the sentence that was entered by the user."
+msgstr "В следващия пример с функцията <emph>CBool</emph> се оценява стойността, върната от функцията <emph>Instr</emph>. Функцията проверява дали е открита думата „пет“ в изречение, въведено от потребителя."
-#: 01040000.xhp
+#: 03100100.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3152873\n"
-"26\n"
+"03100100.xhp\n"
+"hd_id3156212\n"
+"11\n"
"help.text"
-msgid "...after the <emph>Print</emph> dialog is closed, but before the actual print process begins."
-msgstr "…след като бъде затворен диалоговият прозорец <emph>Печат</emph>, но преди началото на действителното отпечатване."
+msgid "Example:"
+msgstr "Пример:"
-#: 01040000.xhp
+#: 03100100.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3159227\n"
-"49\n"
+"03100100.xhp\n"
+"par_id3155132\n"
+"14\n"
"help.text"
-msgid "JavaScript run-time error"
-msgstr "Грешка при изпълнение на JavaScript"
+msgid "sText = InputBox(\"Please enter a short sentence:\")"
+msgstr "sText = InputBox(\"Моля, въведете кратко изречение:\")"
-#: 01040000.xhp
+#: 03100100.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3145362\n"
-"50\n"
+"03100100.xhp\n"
+"par_id3155855\n"
+"15\n"
"help.text"
-msgid "...when a JavaScript run-time error occurs."
-msgstr "…когато възникне грешка по време на изпълнение на JavaScript."
+msgid "' Proof if the word »and« appears in the sentence."
+msgstr "' Проверяваме дали думата \"пет\" се съдържа в изречението."
-#: 01040000.xhp
+#: 03100100.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3154767\n"
-"27\n"
+"03100100.xhp\n"
+"par_id3146984\n"
+"16\n"
"help.text"
-msgid "Print Mail Merge"
-msgstr "При печат на типови писма"
+msgid "' Instead of the command line"
+msgstr "' Вместо реда"
-#: 01040000.xhp
+#: 03100100.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3153555\n"
-"28\n"
+"03100100.xhp\n"
+"par_id3148576\n"
+"17\n"
"help.text"
-msgid "...after the <emph>Print</emph> dialog is closed, but before the actual print process begins. This event occurs for each copy printed."
-msgstr "…след като бъде затворен диалоговият прозорец <emph>Печат</emph>, но преди началото на действителното отпечатване. Това събитие възниква при отпечатването на всяко копие."
+msgid "' If Instr(Input, \"and\")<>0 Then..."
+msgstr "' If Instr(Input, \"пет\")<>0 Then…"
-#: 01040000.xhp
+#: 03100100.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3156366\n"
-"51\n"
+"03100100.xhp\n"
+"par_id3154014\n"
+"18\n"
"help.text"
-msgid "Change of the page count"
-msgstr "При промяна в броя на страниците"
+msgid "' the CBool function is applied as follows:"
+msgstr "' прилагаме функцията CBool както следва:"
-#: 01040000.xhp
+#: 03100100.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3154627\n"
-"52\n"
+"03100100.xhp\n"
+"par_id3155413\n"
+"19\n"
"help.text"
-msgid "...when the page count changes."
-msgstr "…когато броят на страниците се промени."
+msgid "If CBool(Instr(sText, \"and\")) Then"
+msgstr "If CBool(Instr(sText, \"пет\")) Then"
-#: 01040000.xhp
+#: 03100100.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3154737\n"
-"53\n"
+"03100100.xhp\n"
+"par_id3152940\n"
+"20\n"
"help.text"
-msgid "Message received"
-msgstr "При получаване на съобщение"
+msgid "MsgBox \"The word »and« appears in the sentence you entered!\""
+msgstr "MsgBox \"Думата „пет“ се среща във въведеното от вас изречение!\""
-#: 01040000.xhp
+#: 03100300.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3150952\n"
-"54\n"
+"03100300.xhp\n"
+"tit\n"
"help.text"
-msgid "...if a message was received."
-msgstr "…ако бъде получено съобщение."
+msgid "CDate Function [Runtime]"
+msgstr "Функция CDate [динамична]"
-#: 01040000.xhp
+#: 03100300.xhp
msgctxt ""
-"01040000.xhp\n"
-"hd_id3153299\n"
-"30\n"
+"03100300.xhp\n"
+"bm_id3150772\n"
"help.text"
-msgid "Assigning a Macro to an Event"
-msgstr "Приписване на макрос на събитие"
+msgid "<bookmark_value>CDate function</bookmark_value>"
+msgstr "<bookmark_value>CDate, функция</bookmark_value>"
-#: 01040000.xhp
+#: 03100300.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3147244\n"
-"31\n"
+"03100300.xhp\n"
+"hd_id3150772\n"
+"1\n"
"help.text"
-msgid "Choose <emph>Tools - Customize</emph> and click the <emph>Events</emph> tab."
-msgstr "Изберете <emph>Инструменти - Персонализиране</emph> и щракнете върху раздела <emph>Събития</emph>."
+msgid "<link href=\"text/sbasic/shared/03100300.xhp\" name=\"CDate Function [Runtime]\">CDate Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03100300.xhp\" name=\"Функция CDate [динамична]\">Функция CDate [динамична]</link>"
-#: 01040000.xhp
+#: 03100300.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3146098\n"
-"55\n"
+"03100300.xhp\n"
+"par_id3150986\n"
+"2\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 "Посочете дали желаете приписването на макрос да важи глобално или само в текущия документ чрез списъчното поле <emph>Съхраняване в</emph>."
+msgid "Converts any string or numeric expression to a date value."
+msgstr "Преобразува низов или числов израз в стойност – дата."
-#: 01040000.xhp
+#: 03100300.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3150431\n"
-"32\n"
+"03100300.xhp\n"
+"hd_id3148944\n"
+"3\n"
"help.text"
-msgid "Select the event from the <emph>Event</emph> list."
-msgstr "Изберете събитието от списъка <emph>Събитие</emph>."
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 01040000.xhp
+#: 03100300.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3148742\n"
-"33\n"
+"03100300.xhp\n"
+"par_id3148947\n"
+"4\n"
"help.text"
-msgid "Click <emph>Macro</emph> and select the macro to be assigned to the selected event."
-msgstr "Щракнете върху <emph>Макрос</emph> и изберете макроса, който да бъде приписан на избраното събитие."
+msgid "CDate (Expression)"
+msgstr "CDate (Expression)"
-#: 01040000.xhp
+#: 03100300.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3146321\n"
-"35\n"
+"03100300.xhp\n"
+"hd_id3148552\n"
+"5\n"
"help.text"
-msgid "Click <emph>OK</emph> to assign the macro."
-msgstr "Щракнете върху <emph>OK</emph>, за да припишете макроса."
+msgid "Return value:"
+msgstr "Връщана стойност:"
-#: 01040000.xhp
+#: 03100300.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3147414\n"
-"56\n"
+"03100300.xhp\n"
+"par_id3159414\n"
+"6\n"
"help.text"
-msgid "Click <emph>OK</emph> to close the dialog."
-msgstr "Щракнете върху <emph>OK</emph>, за да затворите диалоговия прозорец."
+msgid "Date"
+msgstr "Дата"
-#: 01040000.xhp
+#: 03100300.xhp
msgctxt ""
-"01040000.xhp\n"
-"hd_id3154581\n"
-"36\n"
+"03100300.xhp\n"
+"hd_id3153525\n"
+"7\n"
"help.text"
-msgid "Removing the Assignment of a Macro to an Event"
-msgstr "Отмяна на приписването на макрос на събитие"
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 01040000.xhp
+#: 03100300.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3146883\n"
-"57\n"
+"03100300.xhp\n"
+"par_id3150359\n"
+"8\n"
"help.text"
-msgid "Choose <emph>Tools - Customize</emph> and click the <emph>Events</emph> tab."
-msgstr "Изберете <emph>Инструменти - Персонализиране</emph> и щракнете върху раздела <emph>Събития</emph>."
+msgid "<emph>Expression:</emph> Any string or numeric expression that you want to convert."
+msgstr "<emph>Expression:</emph> низ или число, което трябва да бъде преобразувано."
-#: 01040000.xhp
+#: 03100300.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3155909\n"
-"58\n"
+"03100300.xhp\n"
+"par_id3125864\n"
+"9\n"
"help.text"
-msgid "Select whether you want to remove a global assignment or an assignment that is just valid in the current document by selecting the option in the <emph>Save In</emph> listbox."
-msgstr "Посочете дали желаете да премахнете глобално приписване на макрос или такова в текущия документ чрез списъчното поле <emph>Съхраняване в</emph>."
+msgid "When you convert a string expression, the date and time must be entered in the format MM.DD.YYYY HH.MM.SS, as defined by the <emph>DateValue</emph> and <emph>TimeValue</emph> function conventions. 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 "Когато преобразувате низов израз, датата и часът трябва да са във формат ММ.ДД.ГГГГ ЧЧ.ММ.СС, както за функциите <emph>DateValue</emph> и <emph>TimeValue</emph>. В числовите изрази цялата част на стойността представя датата, броена от 31 декември 1899 г., а дробната част представя часа."
-#: 01040000.xhp
+#: 03100300.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3159129\n"
-"59\n"
+"03100300.xhp\n"
+"hd_id3156422\n"
+"10\n"
"help.text"
-msgid "Select the event that contains the assignment to be removed from the <emph>Event</emph> list."
-msgstr "Изберете събитието, на което е приписан макросът, от списъка <emph>Събитие</emph>."
+msgid "Example:"
+msgstr "Пример:"
-#: 01040000.xhp
+#: 03100400.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3149143\n"
-"37\n"
+"03100400.xhp\n"
+"tit\n"
"help.text"
-msgid "Click <emph>Remove</emph>."
-msgstr "Щракнете върху <emph>Премахване</emph>."
+msgid "CDbl Function [Runtime]"
+msgstr "Функция CDbl [динамична]"
-#: 01040000.xhp
+#: 03100400.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3149351\n"
-"60\n"
+"03100400.xhp\n"
+"bm_id3153750\n"
"help.text"
-msgid "Click <emph>OK</emph> to close the dialog."
-msgstr "Щракнете върху <emph>OK</emph>, за да затворите диалоговия прозорец."
+msgid "<bookmark_value>CDbl function</bookmark_value>"
+msgstr "<bookmark_value>CDbl, функция</bookmark_value>"
-#: 01030300.xhp
+#: 03100400.xhp
msgctxt ""
-"01030300.xhp\n"
-"tit\n"
+"03100400.xhp\n"
+"hd_id3153750\n"
+"1\n"
"help.text"
-msgid "Debugging a Basic Program"
-msgstr "Отстраняване на грешки в програма на Basic"
+msgid "<link href=\"text/sbasic/shared/03100400.xhp\" name=\"CDbl Function [Runtime]\">CDbl Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03100400.xhp\" name=\"Функция CDbl [динамична]\">Функция CDbl [динамична]</link>"
-#: 01030300.xhp
+#: 03100400.xhp
msgctxt ""
-"01030300.xhp\n"
-"bm_id3153344\n"
+"03100400.xhp\n"
+"par_id3149233\n"
+"2\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 "<bookmark_value>трасиране на програми на Basic</bookmark_value><bookmark_value>променливи; следене на стойности</bookmark_value><bookmark_value>следене на променливи</bookmark_value><bookmark_value>грешки при изпълнение в Basic</bookmark_value><bookmark_value>кодове за грешки в Basic</bookmark_value><bookmark_value>точки на прекъсване</bookmark_value><bookmark_value>стек, прозорец за</bookmark_value>"
+msgid "Converts any numerical expression or string expression to a double type."
+msgstr "Преобразува числов или низов израз в стойност от тип Dоuble."
-#: 01030300.xhp
+#: 03100400.xhp
msgctxt ""
-"01030300.xhp\n"
-"hd_id3153344\n"
-"1\n"
+"03100400.xhp\n"
+"hd_id3149516\n"
+"3\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/01030300.xhp\">Debugging a Basic Program</link>"
-msgstr "<link href=\"text/sbasic/shared/01030300.xhp\">Отстраняване на грешки в програма на Basic</link>"
+msgid "Syntax"
+msgstr "Синтаксис"
-#: 01030300.xhp
+#: 03100400.xhp
msgctxt ""
-"01030300.xhp\n"
-"hd_id3159224\n"
+"03100400.xhp\n"
+"par_id3156152\n"
"4\n"
"help.text"
-msgid "Breakpoints and Single Step Execution"
-msgstr "Точки на прекъсване и постъпково изпълнение"
+msgid "CDbl (Expression)"
+msgstr "CDbl (Expression)"
-#: 01030300.xhp
+#: 03100400.xhp
msgctxt ""
-"01030300.xhp\n"
-"par_id3150682\n"
+"03100400.xhp\n"
+"hd_id3153061\n"
"5\n"
"help.text"
-msgid "You can check each line in your Basic program for errors using single step execution. Errors are easily traced since you can immediately see the result of each step. A pointer in the breakpoint column of the Editor indicates the current line. You can also set a breakpoint if you want to force the program to be interrupted at a specific position."
-msgstr "Чрез постъпковото изпълнение можете да проверите за грешки всеки ред от програма на Basic. Грешките се забелязват лесно, тъй като незабавно виждате резултата от всяка стъпка. Текущият ред е обозначен с показалец в колоната за точки на прекъсване. Освен това, ако искате програмата да бъде прекъсната на определено място, можете да зададете точка на прекъсване."
+msgid "Return value"
+msgstr "Връщана стойност:"
-#: 01030300.xhp
+#: 03100400.xhp
msgctxt ""
-"01030300.xhp\n"
-"par_id3147303\n"
-"7\n"
+"03100400.xhp\n"
+"par_id3145068\n"
+"6\n"
"help.text"
-msgid "Double-click in the <emph>breakpoint</emph> column at the left of the Editor window to toggle a breakpoint at the corresponding line. When the program reaches a breakpoint, the program execution is interrupted."
-msgstr "За да поставите или премахнете точка на прекъсване на даден ред, щракнете двукратно пред него в колоната за <emph>точки на прекъсване</emph>. Когато изпълнението на програмата достигне до такъв ред, то се прекъсва."
+msgid "Double"
+msgstr "Double"
-#: 01030300.xhp
+#: 03100400.xhp
msgctxt ""
-"01030300.xhp\n"
-"par_id3155805\n"
-"8\n"
+"03100400.xhp\n"
+"hd_id3154760\n"
+"7\n"
"help.text"
-msgid "The <emph>single step </emph>execution using the <emph>Single Step</emph> icon causes the program to branch into procedures and functions."
-msgstr "<emph>Постъпковото</emph> изпълнение чрез иконата <emph>Стъпка навътре</emph> позволява проследяване на изпълнението на извикваните процедури и функции."
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 01030300.xhp
+#: 03100400.xhp
msgctxt ""
-"01030300.xhp\n"
-"par_id3151110\n"
-"25\n"
+"03100400.xhp\n"
+"par_id3153897\n"
+"8\n"
"help.text"
-msgid "The procedure step execution using the <emph>Procedure Step</emph> icon causes the program to skip over procedures and functions as a single step."
-msgstr "При изпълнението процедура по процедура с иконата <emph>Стъпка напред</emph> процедурите и функциите се изпълняват като единични стъпки."
+msgid "<emph>Expression:</emph> Any string or numeric expression that you want to convert. To convert a string expression, the number must be entered as normal text (\"123.5\") using the default number format of your operating system."
+msgstr "<emph>Expression:</emph> низов или числов израз, който да бъде преобразуван. За да преобразувате стойност – низ, числото трябва да е въведено като обикновен текст (\"123.5\") с подразбирания формат за числа на операционната система."
-#: 01030300.xhp
+#: 03100400.xhp
msgctxt ""
-"01030300.xhp\n"
-"hd_id3153825\n"
+"03100400.xhp\n"
+"hd_id3148797\n"
"9\n"
"help.text"
-msgid "Properties of a Breakpoint"
-msgstr "Свойства на точка на прекъсване"
-
-#: 01030300.xhp
-msgctxt ""
-"01030300.xhp\n"
-"par_id3147574\n"
-"26\n"
-"help.text"
-msgid "The properties of a breakpoint are available through its context menu by right-clicking the breakpoint in the breakpoint column."
-msgstr "Свойствата на всяка точка на прекъсване са достъпни чрез контекстното й меню, което се отваря с щракване върху нея с десния бутон в колоната за точки на прекъсване."
-
-#: 01030300.xhp
-msgctxt ""
-"01030300.xhp\n"
-"par_id3148473\n"
-"10\n"
-"help.text"
-msgid "You can <emph>activate</emph> and <emph>deactivate</emph> a breakpoint by selecting <emph>Active</emph> from its context menu. When a breakpoint is deactivated, it does not interrupt the program execution."
-msgstr "За да <emph>разрешите</emph> или <emph>забраните</emph> точка на прекъсване, изберете <emph>Активна</emph> от контекстното й меню. Когато точката на прекъсване е забранена, изпълнението на програмата не спира на това място."
+msgid "Example:"
+msgstr "Пример:"
-#: 01030300.xhp
+#: 03100500.xhp
msgctxt ""
-"01030300.xhp\n"
-"par_id3159413\n"
-"27\n"
+"03100500.xhp\n"
+"tit\n"
"help.text"
-msgid "Select <emph>Properties</emph> from the context menu of a breakpoint or select <emph>Breakpoints</emph> from the context menu of the breakpoint column to call the <emph>Breakpoints</emph> dialog where you can specify other breakpoint options."
-msgstr "Изберете <emph>Свойства</emph> от контекстното меню на точка на прекъсване или <emph>Точки на прекъсване</emph> от контекстното меню на колоната за точки на прекъсване, за да отворите диалоговия прозорец <emph>Точки на прекъсване</emph>. В него можете да задавате други настройки за точките на прекъсване."
+msgid "CInt Function [Runtime]"
+msgstr "Функция CInt [динамична]"
-#: 01030300.xhp
+#: 03100500.xhp
msgctxt ""
-"01030300.xhp\n"
-"par_id3156280\n"
-"11\n"
+"03100500.xhp\n"
+"bm_id3149346\n"
"help.text"
-msgid "The list displays all <emph>breakpoints</emph> with the corresponding line number in the source code. You can activate or deactivate a selected breakpoint by checking or clearing the <emph>Active</emph> box."
-msgstr "Списъкът показва всички <emph>точки на прекъсване</emph> със съответните номера на редове в изходния код. Можете да включите или изключите избрана точка на прекъсване, като отметнете или изчистите квадратчето <emph>Активна</emph>."
+msgid "<bookmark_value>CInt function</bookmark_value>"
+msgstr "<bookmark_value>CInt, функция</bookmark_value>"
-#: 01030300.xhp
+#: 03100500.xhp
msgctxt ""
-"01030300.xhp\n"
-"par_id3158407\n"
-"12\n"
+"03100500.xhp\n"
+"hd_id3149346\n"
+"1\n"
"help.text"
-msgid "The <emph>Pass Count</emph> specifies the number of times the breakpoint can be passed over before the program is interrupted. If you enter 0 (default setting) the program is always interrupted as soon as a breakpoint is encountered."
-msgstr "Срещу <emph>Брой пасове</emph> можете да зададете колко пъти точката на прекъсване да бъде подмината, преди да се прекъсне програмата. Ако оставите подразбираната стойност, 0, изпълнението спира при всяко достигане на точката на прекъсване."
+msgid "<link href=\"text/sbasic/shared/03100500.xhp\" name=\"CInt Function [Runtime]\">CInt Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03100500.xhp\" name=\"Функция CInt [динамична]\">Функция CInt [динамична]</link>"
-#: 01030300.xhp
+#: 03100500.xhp
msgctxt ""
-"01030300.xhp\n"
-"par_id3153968\n"
-"13\n"
+"03100500.xhp\n"
+"par_id3155419\n"
+"2\n"
"help.text"
-msgid "Click <emph>Delete</emph> to remove the breakpoint from the program."
-msgstr "За да премахнете точката на прекъсване от програмата, щракнете върху <emph>Изтриване</emph>."
+msgid "Converts any string or numeric expression to an integer."
+msgstr "Преобразува низ или число в стойност от типа Integer."
-#: 01030300.xhp
+#: 03100500.xhp
msgctxt ""
-"01030300.xhp\n"
-"hd_id3150439\n"
-"14\n"
+"03100500.xhp\n"
+"hd_id3147573\n"
+"3\n"
"help.text"
-msgid "Observing the Value of Variables"
-msgstr "Наблюдаване стойностите на променливи"
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 01030300.xhp
+#: 03100500.xhp
msgctxt ""
-"01030300.xhp\n"
-"par_id3153368\n"
-"15\n"
+"03100500.xhp\n"
+"par_id3154142\n"
+"4\n"
"help.text"
-msgid "You can monitor the values of a variable by adding it to the <emph>Watch</emph> window. To add a variable to the list of watched variables, type the variable name in the <emph>Watch</emph> text box and press Enter."
-msgstr "Можете да наблюдавате стойността на променлива, като я добавите в прозореца <emph>Следене</emph>. За да добавите променлива към списъка за следене, въведете името й в полето <emph>Следене</emph> и натиснете Enter."
+msgid "CInt (Expression)"
+msgstr "CInt (Expression)"
-#: 01030300.xhp
+#: 03100500.xhp
msgctxt ""
-"01030300.xhp\n"
-"par_id3146986\n"
-"16\n"
+"03100500.xhp\n"
+"hd_id3147531\n"
+"5\n"
"help.text"
-msgid "The values of variables are only displayed if they are in scope. Variables that are not defined at the current source code location display (\"Out of Scope\") instead of a value."
-msgstr "Стойностите на променливите се показват само ако са в текущия обхват. За променливите, които не са дефинирани в текущата точка от изходния код, вместо стойност се изписва „Out of Scope“ („Извън обхват“)."
+msgid "Return value:"
+msgstr "Връщана стойност:"
-#: 01030300.xhp
+#: 03100500.xhp
msgctxt ""
-"01030300.xhp\n"
-"par_id3145272\n"
-"17\n"
+"03100500.xhp\n"
+"par_id3147560\n"
+"6\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 "В прозореца за следене можете да включвате и масиви. Ако в текстовото поле Следене въведете име на променлива – масив без индекс, ще се покаже съдържанието на целия масив."
+msgid "Integer"
+msgstr "Integer"
-#: 01030300.xhp
+#: 03100500.xhp
msgctxt ""
-"01030300.xhp\n"
-"par_id3145749\n"
-"19\n"
+"03100500.xhp\n"
+"hd_id3145069\n"
+"7\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 "Ако по време на изпълнение задържите показалеца на мишката върху предварително дефинирана променлива в редактора, съдържанието на променливата ще се покаже в изскачащо прозорче."
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 01030300.xhp
+#: 03100500.xhp
msgctxt ""
-"01030300.xhp\n"
-"hd_id3148618\n"
-"20\n"
+"03100500.xhp\n"
+"par_id3159414\n"
+"8\n"
"help.text"
-msgid "The Call Stack Window"
-msgstr "Прозорецът за стека"
+msgid "<emph>Expression:</emph> Any numeric expression that you want to convert. If the <emph>Expression</emph> exceeds the value range between -32768 and 32767, $[officename] Basic reports an overflow error. To convert a string expression, the number must be entered as normal text (\"123.5\") using the default number format of your operating system."
+msgstr "<emph>Expression:</emph> низов или числов израз, който да бъде преобразуван. Ако стойността на <emph>Expression</emph> е извън диапазона -32768…32767, $[officename] Basic докладва грешка – препълване. За да преобразувате низов израз, числото трябва да е въведено като обикновен текст (\"123.5\") с подразбирания формат за числа на операционната система."
-#: 01030300.xhp
+#: 03100500.xhp
msgctxt ""
-"01030300.xhp\n"
-"par_id3154491\n"
-"21\n"
+"03100500.xhp\n"
+"par_id3150358\n"
+"9\n"
"help.text"
-msgid "<ahelp hid=\"HID_BASICIDE_STACKWINDOW_LIST\">Provides an overview of the call hierarchy of procedures and functions.</ahelp> You can determine which procedures and functions called which other procedures and functions at the current point in the source code."
-msgstr "<ahelp hid=\"HID_BASICIDE_STACKWINDOW_LIST\">Позволява преглеждане на йерархията на извикване на процедури и функции.</ahelp> Можете да видите кои процедури и функции кои други процедури и функции са извикали в текущия момент от изпълнението на изходния код."
+msgid "This function always rounds the fractional part of a number to the nearest integer."
+msgstr "Тази функция винаги закръглява числата с дробна част към най-близкото цяло число."
-#: 01030300.xhp
+#: 03100500.xhp
msgctxt ""
-"01030300.xhp\n"
-"hd_id3150594\n"
-"24\n"
+"03100500.xhp\n"
+"hd_id3145419\n"
+"10\n"
"help.text"
-msgid "List of Run-Time Errors"
-msgstr "Списък на грешките по време на изпълнение"
+msgid "Example:"
+msgstr "Пример:"
-#: keys.xhp
+#: 03100600.xhp
msgctxt ""
-"keys.xhp\n"
+"03100600.xhp\n"
"tit\n"
"help.text"
-msgid "Keyboard Shortcuts in the Basic IDE"
-msgstr "Клавишни комбинации за развойната среда на Basic"
+msgid "CLng Function [Runtime]"
+msgstr "Функция CLng [динамична]"
-#: keys.xhp
+#: 03100600.xhp
msgctxt ""
-"keys.xhp\n"
-"bm_id3154760\n"
+"03100600.xhp\n"
+"bm_id3153311\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 "<bookmark_value>клавиатура;в развойната среда</bookmark_value><bookmark_value>клавишни комбинации;развойна среда на Basic</bookmark_value><bookmark_value>развойна среда;клавишни комбинации</bookmark_value>"
+msgid "<bookmark_value>CLng function</bookmark_value>"
+msgstr "<bookmark_value>CLng, функция</bookmark_value>"
-#: keys.xhp
+#: 03100600.xhp
msgctxt ""
-"keys.xhp\n"
-"hd_id3154760\n"
+"03100600.xhp\n"
+"hd_id3153311\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/keys.xhp\" name=\"Keyboard Shortcuts in the Basic IDE\">Keyboard Shortcuts in the Basic IDE</link>"
-msgstr "<link href=\"text/sbasic/shared/keys.xhp\" name=\"Клавишни комбинации за развойната среда на Basic\">Клавишни комбинации за развойната среда на Basic</link>"
+msgid "<link href=\"text/sbasic/shared/03100600.xhp\" name=\"CLng Function [Runtime]\">CLng Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03100600.xhp\" name=\"Функция CLng [динамична]\">Функция CLng [динамична]</link>"
-#: keys.xhp
+#: 03100600.xhp
msgctxt ""
-"keys.xhp\n"
-"par_id3149655\n"
+"03100600.xhp\n"
+"par_id3148686\n"
"2\n"
"help.text"
-msgid "In the Basic IDE you can use the following keyboard shortcuts:"
-msgstr "В развойната среда на Basic можете да използвате следните клавишни комбинации:"
+msgid "Converts any string or numeric expression to a long integer."
+msgstr "Преобразува низ или число в стойност от типа Long Integer."
-#: keys.xhp
+#: 03100600.xhp
msgctxt ""
-"keys.xhp\n"
-"par_id3154908\n"
+"03100600.xhp\n"
+"hd_id3145315\n"
"3\n"
"help.text"
-msgid "Action"
-msgstr "Действие"
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: keys.xhp
+#: 03100600.xhp
msgctxt ""
-"keys.xhp\n"
-"par_id3153192\n"
+"03100600.xhp\n"
+"par_id3147573\n"
"4\n"
"help.text"
-msgid "Keyboard shortcut"
-msgstr "Клавишна комбинация"
+msgid "CLng (Expression)"
+msgstr "CLng (Expression)"
-#: keys.xhp
+#: 03100600.xhp
msgctxt ""
-"keys.xhp\n"
-"par_id3159254\n"
+"03100600.xhp\n"
+"hd_id3145610\n"
"5\n"
"help.text"
-msgid "Run code starting from the first line, or from the current breakpoint, if the program stopped there before"
-msgstr "Стартиране на програмата от първия ред или от текущата точка на прекъсване, ако изпълнението е спряно там"
+msgid "Return value:"
+msgstr "Връщана стойност:"
-#: keys.xhp
+#: 03100600.xhp
msgctxt ""
-"keys.xhp\n"
-"par_id3163712\n"
+"03100600.xhp\n"
+"par_id3153897\n"
"6\n"
"help.text"
-msgid "F5"
-msgstr "F5"
+msgid "Long"
+msgstr "Long"
-#: keys.xhp
+#: 03100600.xhp
msgctxt ""
-"keys.xhp\n"
-"par_id3150010\n"
+"03100600.xhp\n"
+"hd_id3154760\n"
"7\n"
"help.text"
-msgid "Stop"
-msgstr "Спиране"
+msgid "Parameters:"
+msgstr "Параметри:"
-#: keys.xhp
+#: 03100600.xhp
msgctxt ""
-"keys.xhp\n"
-"par_id3154319\n"
+"03100600.xhp\n"
+"par_id3159414\n"
"8\n"
"help.text"
-msgid "Shift+F5"
-msgstr "Shift+F5"
-
-#: keys.xhp
-msgctxt ""
-"keys.xhp\n"
-"par_id3151073\n"
-"11\n"
-"help.text"
-msgid "Add <link href=\"text/sbasic/shared/01050100.xhp\" name=\"watch\">watch</link> for the variable at the cursor"
-msgstr "Добавяне на променливата под курсора в <link href=\"text/sbasic/shared/01050100.xhp\" name=\"следене\">списъка за следене</link>"
-
-#: keys.xhp
-msgctxt ""
-"keys.xhp\n"
-"par_id3154731\n"
-"12\n"
-"help.text"
-msgid "F7"
-msgstr "F7"
-
-#: keys.xhp
-msgctxt ""
-"keys.xhp\n"
-"par_id3148455\n"
-"13\n"
-"help.text"
-msgid "Single step through each statement, starting at the first line or at that statement where the program execution stopped before."
-msgstr "Единична стъпка през всеки оператор, от първия ред или от последния оператор, на който е спряло изпълнението"
-
-#: keys.xhp
-msgctxt ""
-"keys.xhp\n"
-"par_id3150716\n"
-"14\n"
-"help.text"
-msgid "F8"
-msgstr "F8"
-
-#: keys.xhp
-msgctxt ""
-"keys.xhp\n"
-"par_id3156275\n"
-"15\n"
-"help.text"
-msgid "Single step as with F8, but a function call is considered to be only <emph>one</emph> statement"
-msgstr "Единична стъпка като F8, но извикването на функция се счита за <emph>един</emph> оператор"
-
-#: keys.xhp
-msgctxt ""
-"keys.xhp\n"
-"par_id3153764\n"
-"16\n"
-"help.text"
-msgid "Shift+F8"
-msgstr "Shift+F8"
-
-#: keys.xhp
-msgctxt ""
-"keys.xhp\n"
-"par_id3150323\n"
-"17\n"
-"help.text"
-msgid "Set or remove a <link href=\"text/sbasic/shared/01030300.xhp\" name=\"breakpoint\">breakpoint</link> at the current line or all breakpoints in the current selection"
-msgstr "Поставяне/премахване на <link href=\"text/sbasic/shared/01030300.xhp\" name=\"точка на прекъсване\">точка на прекъсване</link> на текущия ред или всички точки на прекъсване в текущата селекция"
-
-#: keys.xhp
-msgctxt ""
-"keys.xhp\n"
-"par_id3147339\n"
-"18\n"
-"help.text"
-msgid "F9"
-msgstr "F9"
-
-#: keys.xhp
-msgctxt ""
-"keys.xhp\n"
-"par_id3153963\n"
-"19\n"
-"help.text"
-msgid "Enable/disable the breakpoint at the current line or all breakpoints in the current selection"
-msgstr "Разрешаване/забраняване на точката на прекъсване на текущия ред или всички точки на прекъсване в текущата селекция"
+msgid "<emph>Expression:</emph> Any numerical expression that you want to convert. If the <emph>Expression</emph> lies outside the valid long integer range between -2.147.483.648 and 2.147.483.647, $[officename] Basic returns an overflow error. To convert a string expression, the number must be entered as normal text (\"123.5\") using the default number format of your operating system."
+msgstr "<emph>Expression:</emph> низов или числов израз, който да бъде преобразуван. Ако стойността на <emph>Expression</emph> е извън диапазона за Long Integer -2147483648…2147483647, $[officename] Basic докладва грешка – препълване. За да преобразувате низов израз, числото трябва да е въведено като обикновен текст (\"123.5\") с подразбирания формат за числа на операционната система."
-#: keys.xhp
+#: 03100600.xhp
msgctxt ""
-"keys.xhp\n"
-"par_id3155175\n"
-"20\n"
+"03100600.xhp\n"
+"par_id3150358\n"
+"9\n"
"help.text"
-msgid "Shift+F9"
-msgstr "Shift+F9"
+msgid "This function always rounds the fractional part of a number to the nearest integer."
+msgstr "Тази функция винаги закръглява числата с дробна част към най-близкото цяло число."
-#: keys.xhp
+#: 03100600.xhp
msgctxt ""
-"keys.xhp\n"
-"par_id3154702\n"
-"21\n"
+"03100600.xhp\n"
+"hd_id3154216\n"
+"10\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 "Изпълнението на макрос може да бъде спряно с Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Q и извън развойната среда на Basic. Ако работите в развойната среда и макросът спре в точка на прекъсване, Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Q спира изпълнението на макроса, но можете да разберете това чак след следващото натискане на F5, F8 или Shift+F8."
+msgid "Example:"
+msgstr "Пример:"
-#: 03102200.xhp
+#: 03100700.xhp
msgctxt ""
-"03102200.xhp\n"
+"03100700.xhp\n"
"tit\n"
"help.text"
-msgid "IsArray Function [Runtime]"
-msgstr "Функция IsArray [динамична]"
+msgid "Const Statement [Runtime]"
+msgstr "Оператор Const [динамичен]"
-#: 03102200.xhp
+#: 03100700.xhp
msgctxt ""
-"03102200.xhp\n"
-"bm_id3154346\n"
+"03100700.xhp\n"
+"bm_id3146958\n"
"help.text"
-msgid "<bookmark_value>IsArray function</bookmark_value>"
-msgstr "<bookmark_value>IsArray, функция</bookmark_value>"
+msgid "<bookmark_value>Const statement</bookmark_value>"
+msgstr "<bookmark_value>Const, оператор</bookmark_value>"
-#: 03102200.xhp
+#: 03100700.xhp
msgctxt ""
-"03102200.xhp\n"
-"hd_id3154346\n"
+"03100700.xhp\n"
+"hd_id3146958\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03102200.xhp\" name=\"IsArray Function [Runtime]\">IsArray Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03102200.xhp\" name=\"Функция IsArray [динамична]\">Функция IsArray [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03100700.xhp\" name=\"Const Statement [Runtime]\">Const Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03100700.xhp\" name=\"Оператор Const [динамичен]\">Оператор Const [динамичен]</link>"
-#: 03102200.xhp
+#: 03100700.xhp
msgctxt ""
-"03102200.xhp\n"
-"par_id3159413\n"
+"03100700.xhp\n"
+"par_id3154143\n"
"2\n"
"help.text"
-msgid "Determines if a variable is a data field in an array."
-msgstr "Определя дали променливата е масив."
+msgid "Defines a string as a constant."
+msgstr "Дефинира величина като константа."
-#: 03102200.xhp
+#: 03100700.xhp
msgctxt ""
-"03102200.xhp\n"
-"hd_id3150792\n"
+"03100700.xhp\n"
+"hd_id3150670\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03102200.xhp
+#: 03100700.xhp
msgctxt ""
-"03102200.xhp\n"
-"par_id3153379\n"
+"03100700.xhp\n"
+"par_id3150984\n"
"4\n"
"help.text"
-msgid "IsArray (Var)"
-msgstr "IsArray (Var)"
+msgid "Const Text = Expression"
+msgstr "Const Text = Expression"
-#: 03102200.xhp
+#: 03100700.xhp
msgctxt ""
-"03102200.xhp\n"
-"hd_id3154365\n"
+"03100700.xhp\n"
+"hd_id3147530\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Връщана стойност:"
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 03102200.xhp
+#: 03100700.xhp
msgctxt ""
-"03102200.xhp\n"
-"par_id3154685\n"
+"03100700.xhp\n"
+"par_id3153897\n"
"6\n"
"help.text"
-msgid "Bool"
-msgstr "Bool"
+msgid "<emph>Text:</emph> Any constant name that follows the standard variable naming conventions."
+msgstr "<emph>Text:</emph> име на константа, отговарящ на стандартните правила за име на променлива."
-#: 03102200.xhp
+#: 03100700.xhp
msgctxt ""
-"03102200.xhp\n"
-"hd_id3153969\n"
+"03100700.xhp\n"
+"par_id3147264\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+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. Use the following statement to define a constant:"
+msgstr "Константата е променлива, подобряваща четливостта на програмата. Константите не са променливи от определен тип, а просто се използват като заместители в кода. Те се дефинират еднократно и не могат да бъдат променяни. За да дефинирате константа, използвайте следния оператор:"
-#: 03102200.xhp
+#: 03100700.xhp
msgctxt ""
-"03102200.xhp\n"
-"par_id3145172\n"
+"03100700.xhp\n"
+"par_id3150542\n"
"8\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 "<emph>Var:</emph> променлива, за която да се провери дали е декларирана като масив. Ако е така, функцията връща <emph>True</emph>, в противен случай – <emph>False</emph>."
+msgid "CONST ConstName=Expression"
+msgstr "CONST ИмеНаКонстанта = Израз"
-#: 03102200.xhp
+#: 03100700.xhp
msgctxt ""
-"03102200.xhp\n"
-"hd_id3155131\n"
+"03100700.xhp\n"
+"par_id3150400\n"
"9\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
-
-#: 03080300.xhp
-msgctxt ""
-"03080300.xhp\n"
-"tit\n"
-"help.text"
-msgid "Generating Random Numbers"
-msgstr "Генериране на случайни числа"
+msgid "The type of expression is irrelevant. If a program is started, $[officename] Basic converts the program code internally so that each time a constant is used, the defined expression replaces it."
+msgstr "Типът на израза не е от значение. Ако стартирате програмата, $[officename] Basic преобразува програмния код така, че при всяко използване на константа тя се замества със зададения израз."
-#: 03080300.xhp
+#: 03100700.xhp
msgctxt ""
-"03080300.xhp\n"
-"hd_id3143270\n"
-"1\n"
+"03100700.xhp\n"
+"hd_id3154366\n"
+"10\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080300.xhp\" name=\"Generating Random Numbers\">Generating Random Numbers</link>"
-msgstr "<link href=\"text/sbasic/shared/03080300.xhp\" name=\"Генериране на случайни числа\">Генериране на случайни числа</link>"
+msgid "Example:"
+msgstr "Пример:"
-#: 03080300.xhp
+#: 03100700.xhp
msgctxt ""
-"03080300.xhp\n"
-"par_id3154347\n"
-"2\n"
+"03100700.xhp\n"
+"par_id3153969\n"
+"14\n"
"help.text"
-msgid "The following statements and functions generate random numbers."
-msgstr "Следващите оператори и функции генерират случайни числа."
+msgid "Const sVar = \"Program\", dVar As Double = 1.00"
+msgstr "Const sVar = \"Program\", dVar As Double = 1.00"
#: 03100900.xhp
msgctxt ""
@@ -21584,2607 +24864,1929 @@ msgctxt ""
msgid "Example:"
msgstr "Пример:"
-#: 03080502.xhp
+#: 03101000.xhp
msgctxt ""
-"03080502.xhp\n"
+"03101000.xhp\n"
"tit\n"
"help.text"
-msgid "Int Function [Runtime]"
-msgstr "Функция Int [динамична]"
+msgid "CStr Function [Runtime]"
+msgstr "Функция CStr [динамична]"
-#: 03080502.xhp
+#: 03101000.xhp
msgctxt ""
-"03080502.xhp\n"
-"bm_id3153345\n"
+"03101000.xhp\n"
+"bm_id3146958\n"
"help.text"
-msgid "<bookmark_value>Int function</bookmark_value>"
-msgstr "<bookmark_value>Int, функция</bookmark_value>"
+msgid "<bookmark_value>CStr function</bookmark_value>"
+msgstr "<bookmark_value>CStr, функция</bookmark_value>"
-#: 03080502.xhp
+#: 03101000.xhp
msgctxt ""
-"03080502.xhp\n"
-"hd_id3153345\n"
+"03101000.xhp\n"
+"hd_id3146958\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080502.xhp\" name=\"Int Function [Runtime]\">Int Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03080502.xhp\" name=\"Функция Int [динамична]\">Функция Int [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03101000.xhp\" name=\"CStr Function [Runtime]\">CStr Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03101000.xhp\" name=\"Функция CStr [динамична]\">Функция CStr [динамична]</link>"
-#: 03080502.xhp
+#: 03101000.xhp
msgctxt ""
-"03080502.xhp\n"
-"par_id3155420\n"
+"03101000.xhp\n"
+"par_id3147574\n"
"2\n"
"help.text"
-msgid "Returns the integer portion of a number."
-msgstr "Връща цялата част на число."
+msgid "Converts any numeric expression to a string expression."
+msgstr "Преобразува числова стойност в низ."
-#: 03080502.xhp
+#: 03101000.xhp
msgctxt ""
-"03080502.xhp\n"
-"hd_id3147559\n"
+"03101000.xhp\n"
+"hd_id3148473\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03080502.xhp
+#: 03101000.xhp
msgctxt ""
-"03080502.xhp\n"
-"par_id3146795\n"
+"03101000.xhp\n"
+"par_id3145315\n"
"4\n"
"help.text"
-msgid "Int (Number)"
-msgstr "Int (Number)"
+msgid "CStr (Expression)"
+msgstr "CStr (Expression)"
-#: 03080502.xhp
+#: 03101000.xhp
msgctxt ""
-"03080502.xhp\n"
-"hd_id3149670\n"
+"03101000.xhp\n"
+"hd_id3153062\n"
"5\n"
"help.text"
msgid "Return value:"
msgstr "Връщана стойност:"
-#: 03080502.xhp
+#: 03101000.xhp
msgctxt ""
-"03080502.xhp\n"
-"par_id3150400\n"
+"03101000.xhp\n"
+"par_id3153897\n"
"6\n"
"help.text"
-msgid "Double"
-msgstr "Double"
+msgid "String"
+msgstr "String"
-#: 03080502.xhp
+#: 03101000.xhp
msgctxt ""
-"03080502.xhp\n"
-"hd_id3149656\n"
+"03101000.xhp\n"
+"hd_id3154760\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Параметри:"
-#: 03080502.xhp
+#: 03101000.xhp
msgctxt ""
-"03080502.xhp\n"
-"par_id3148797\n"
+"03101000.xhp\n"
+"par_id3149457\n"
"8\n"
"help.text"
-msgid "<emph>Number:</emph> Any valid numeric expression."
-msgstr "<emph>Number:</emph> произволен валиден числов израз."
+msgid "<emph>Expression:</emph> Any valid string or numeric expression that you want to convert."
+msgstr "<emph>Expression:</emph> валиден низов или числов израз, който да бъде преобразуван."
-#: 03080502.xhp
+#: 03101000.xhp
msgctxt ""
-"03080502.xhp\n"
-"hd_id3148672\n"
+"03101000.xhp\n"
+"hd_id3150358\n"
"9\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
-
-#: 03080502.xhp
-msgctxt ""
-"03080502.xhp\n"
-"par_id3125864\n"
-"11\n"
-"help.text"
-msgid "Print Int(3.99) ' returns the value 3"
-msgstr "Print Int(3.99) ' връща стойност 3"
-
-#: 03080502.xhp
-msgctxt ""
-"03080502.xhp\n"
-"par_id3145787\n"
-"12\n"
-"help.text"
-msgid "Print Int(0) ' returns the value 0"
-msgstr "Print Int(0) ' връща стойност 0"
-
-#: 03080502.xhp
-msgctxt ""
-"03080502.xhp\n"
-"par_id3153143\n"
-"13\n"
-"help.text"
-msgid "Print Int(-3.14159) ' returns the value -4"
-msgstr "Print Int(-3.14159) ' връща стойност -4"
+msgid "Expression Types and Conversion Returns"
+msgstr "Тип на израза и резултат от преобразуванието"
-#: 03120309.xhp
+#: 03101000.xhp
msgctxt ""
-"03120309.xhp\n"
-"tit\n"
+"03101000.xhp\n"
+"par_id3153192\n"
+"10\n"
"help.text"
-msgid "RTrim Function [Runtime]"
-msgstr "Функция RTrim [динамична]"
+msgid "Boolean :"
+msgstr "Boolean:"
-#: 03120309.xhp
+#: 03101000.xhp
msgctxt ""
-"03120309.xhp\n"
-"bm_id3154286\n"
+"03101000.xhp\n"
+"par_id3156422\n"
+"11\n"
"help.text"
-msgid "<bookmark_value>RTrim function</bookmark_value>"
-msgstr "<bookmark_value>RTrim, функция</bookmark_value>"
+msgid "String that evaluates to either <emph>True</emph> or <emph>False</emph>."
+msgstr "Низ със стойност <emph>True</emph> или <emph>False</emph>."
-#: 03120309.xhp
+#: 03101000.xhp
msgctxt ""
-"03120309.xhp\n"
-"hd_id3154286\n"
-"1\n"
+"03101000.xhp\n"
+"par_id3147287\n"
+"12\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120309.xhp\" name=\"RTrim Function [Runtime]\">RTrim Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120309.xhp\" name=\"Функция RTrim [динамична]\">Функция RTrim [динамична]</link>"
+msgid "Date :"
+msgstr "Дата:"
-#: 03120309.xhp
+#: 03101000.xhp
msgctxt ""
-"03120309.xhp\n"
-"par_id3153127\n"
-"2\n"
+"03101000.xhp\n"
+"par_id3155411\n"
+"13\n"
"help.text"
-msgid "Deletes the spaces at the end of a string expression."
-msgstr "Изтрива интервалите в края на низ."
+msgid "String that contains the date and time."
+msgstr "Низ, съдържащ датата и часа."
-#: 03120309.xhp
+#: 03101000.xhp
msgctxt ""
-"03120309.xhp\n"
-"par_id3153062\n"
-"3\n"
+"03101000.xhp\n"
+"par_id3147428\n"
+"14\n"
"help.text"
-msgid "See also: <link href=\"text/sbasic/shared/03120305.xhp\" name=\"LTrim Function\">LTrim Function</link>"
-msgstr "Виж също: функция <link href=\"text/sbasic/shared/03120305.xhp\" name=\"LTrim\">LTrim</link>"
+msgid "Null :"
+msgstr "Null:"
-#: 03120309.xhp
+#: 03101000.xhp
msgctxt ""
-"03120309.xhp\n"
-"hd_id3154924\n"
-"4\n"
+"03101000.xhp\n"
+"par_id3150486\n"
+"15\n"
"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
+msgid "Run-time error."
+msgstr "Грешка при изпълнение."
-#: 03120309.xhp
+#: 03101000.xhp
msgctxt ""
-"03120309.xhp\n"
-"par_id3154347\n"
-"5\n"
+"03101000.xhp\n"
+"par_id3153953\n"
+"16\n"
"help.text"
-msgid "RTrim (Text As String)"
-msgstr "RTrim (Text As String)"
+msgid "Empty :"
+msgstr "Празна стойност:"
-#: 03120309.xhp
+#: 03101000.xhp
msgctxt ""
-"03120309.xhp\n"
-"hd_id3149457\n"
-"6\n"
+"03101000.xhp\n"
+"par_id3155306\n"
+"17\n"
"help.text"
-msgid "Return value:"
-msgstr "Връщана стойност:"
+msgid "String without any characters."
+msgstr "Низ без знаци."
-#: 03120309.xhp
+#: 03101000.xhp
msgctxt ""
-"03120309.xhp\n"
-"par_id3153381\n"
-"7\n"
+"03101000.xhp\n"
+"par_id3149260\n"
+"18\n"
"help.text"
-msgid "String"
-msgstr "String"
+msgid "Any :"
+msgstr "Произволен израз:"
-#: 03120309.xhp
+#: 03101000.xhp
msgctxt ""
-"03120309.xhp\n"
-"hd_id3148798\n"
-"8\n"
+"03101000.xhp\n"
+"par_id3152938\n"
+"19\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "Corresponding number as string."
+msgstr "Съответното число като низ."
-#: 03120309.xhp
+#: 03101000.xhp
msgctxt ""
-"03120309.xhp\n"
-"par_id3151380\n"
-"9\n"
+"03101000.xhp\n"
+"par_id3155738\n"
+"20\n"
"help.text"
-msgid "<emph>Text: </emph>Any string expression."
-msgstr "<emph>Text:</emph> израз със стойност низ."
+msgid "Zeros at the end of a floating-point number are not included in the returned string."
+msgstr "Нулите в края на число с плаваща запетая не се включват във връщания низ."
-#: 03120309.xhp
+#: 03101000.xhp
msgctxt ""
-"03120309.xhp\n"
-"hd_id3151041\n"
-"10\n"
+"03101000.xhp\n"
+"hd_id3154729\n"
+"21\n"
"help.text"
msgid "Example:"
msgstr "Пример:"
-#: 03080500.xhp
-msgctxt ""
-"03080500.xhp\n"
-"tit\n"
-"help.text"
-msgid "Integers"
-msgstr "Цели числа"
-
-#: 03080500.xhp
-msgctxt ""
-"03080500.xhp\n"
-"hd_id3153345\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03080500.xhp\" name=\"Integers\">Integers</link>"
-msgstr "<link href=\"text/sbasic/shared/03080500.xhp\" name=\"Цели числа\">Цели числа</link>"
-
-#: 03080500.xhp
-msgctxt ""
-"03080500.xhp\n"
-"par_id3156152\n"
-"2\n"
-"help.text"
-msgid "The following functions round values to integers."
-msgstr "Следващите функции закръгляват дробни числа до цели."
-
-#: 03120102.xhp
+#: 03101100.xhp
msgctxt ""
-"03120102.xhp\n"
+"03101100.xhp\n"
"tit\n"
"help.text"
-msgid "Chr Function [Runtime]"
-msgstr "Функция Chr [динамична]"
+msgid "DefBool Statement [Runtime]"
+msgstr "Оператор DefBool [динамичен]"
-#: 03120102.xhp
+#: 03101100.xhp
msgctxt ""
-"03120102.xhp\n"
-"bm_id3149205\n"
+"03101100.xhp\n"
+"bm_id3145759\n"
"help.text"
-msgid "<bookmark_value>Chr function</bookmark_value>"
-msgstr "<bookmark_value>Chr, функция</bookmark_value>"
+msgid "<bookmark_value>DefBool statement</bookmark_value>"
+msgstr "<bookmark_value>DefBool, оператор</bookmark_value>"
-#: 03120102.xhp
+#: 03101100.xhp
msgctxt ""
-"03120102.xhp\n"
-"hd_id3149205\n"
+"03101100.xhp\n"
+"hd_id3145759\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120102.xhp\" name=\"Chr Function [Runtime]\">Chr Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120102.xhp\" name=\"Функция Chr [динамична]\">Функция Chr [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03101100.xhp\" name=\"DefBool Statement [Runtime]\">DefBool Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03101100.xhp\" name=\"Оператор DefBool [динамичен]\">Оператор DefBool [динамичен]</link>"
-#: 03120102.xhp
+#: 03101100.xhp
msgctxt ""
-"03120102.xhp\n"
-"par_id3153311\n"
+"03101100.xhp\n"
+"par_id3153089\n"
"2\n"
"help.text"
-msgid "Returns the character that corresponds to the specified character code."
-msgstr "Връща знака, съответстващ на зададения знаков код."
+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 "Операторът DefBool установява подразбиран тип данни според диапазон от букви в случай, че не е зададена ключова дума или знак за деклариране на тип."
-#: 03120102.xhp
+#: 03101100.xhp
msgctxt ""
-"03120102.xhp\n"
-"hd_id3149514\n"
+"03101100.xhp\n"
+"hd_id3149495\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03120102.xhp
+#: 03101100.xhp
msgctxt ""
-"03120102.xhp\n"
-"par_id3150669\n"
+"03101100.xhp\n"
+"par_id3150682\n"
"4\n"
"help.text"
-msgid "Chr(Expression As Integer)"
-msgstr "Chr(Expression As Integer)"
+msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
+msgstr "Defxxx Characterrange1[, Characterrange2[,...]]"
-#: 03120102.xhp
+#: 03101100.xhp
msgctxt ""
-"03120102.xhp\n"
-"hd_id3143228\n"
+"03101100.xhp\n"
+"hd_id3159201\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Връщана стойност:"
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 03120102.xhp
+#: 03101100.xhp
msgctxt ""
-"03120102.xhp\n"
-"par_id3153824\n"
+"03101100.xhp\n"
+"par_id3147226\n"
"6\n"
"help.text"
-msgid "String"
-msgstr "String"
+msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set the default data type for."
+msgstr "<emph>Characterrange:</emph> букви, определящи диапазона от променливи, за които искате да зададете подразбиран тип данни."
-#: 03120102.xhp
+#: 03101100.xhp
msgctxt ""
-"03120102.xhp\n"
-"hd_id3148944\n"
+"03101100.xhp\n"
+"par_id3149178\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
+msgstr "<emph>xxx:</emph> ключова дума, дефинираща подразбирания тип данни:"
-#: 03120102.xhp
+#: 03101100.xhp
msgctxt ""
-"03120102.xhp\n"
-"par_id3149295\n"
+"03101100.xhp\n"
+"par_id3150669\n"
"8\n"
"help.text"
-msgid "<emph>Expression:</emph> Numeric variables that represent a valid 8 bit ASCII value (0-255) or a 16 bit Unicode value."
-msgstr "<emph>Expression:</emph> числова стойност, представляваща валиден 8-битов код ASCII (0-255) или 16-битова стойност от Уникод."
+msgid "<emph>Keyword: </emph>Default variable type"
+msgstr "<emph>Ключова дума:</emph> Подразбиран тип данни"
-#: 03120102.xhp
+#: 03101100.xhp
msgctxt ""
-"03120102.xhp\n"
-"par_id3159414\n"
+"03101100.xhp\n"
+"par_id3149233\n"
"9\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 "С функцията <emph>Chr$</emph> можете да изпращате специални управляващи последователности към принтера или друго изходно устройство. Освен това с нея можете да вмъквате кавички в низ."
+msgid "<emph>DefBool:</emph> Boolean"
+msgstr "<emph>DefBool:</emph> Boolean"
-#: 03120102.xhp
+#: 03101100.xhp
msgctxt ""
-"03120102.xhp\n"
-"hd_id3154366\n"
+"03101100.xhp\n"
+"hd_id3149762\n"
"10\n"
"help.text"
msgid "Example:"
msgstr "Пример:"
-#: 03120102.xhp
+#: 03101100.xhp
msgctxt ""
-"03120102.xhp\n"
-"par_id3154909\n"
+"03101100.xhp\n"
+"par_id3156152\n"
"12\n"
"help.text"
-msgid "' This example inserts quotation marks (ASCII value 34) in a string."
-msgstr "' Този пример вмъква кавички (ASCII код 34) в низ."
+msgid "' Prefix definition for variable types:"
+msgstr "' Дефиниране с префикс за променливи от даден тип:"
-#: 03120102.xhp
+#: 03101100.xhp
msgctxt ""
-"03120102.xhp\n"
-"par_id3151380\n"
-"13\n"
+"03101100.xhp\n"
+"par_id3151381\n"
+"22\n"
"help.text"
-msgid "MsgBox \"A \"+ Chr$(34)+\"short\" + Chr$(34)+\" trip.\""
-msgstr "MsgBox \"Една \"+ Chr$(34) + \"кратка\" + Chr$(34) + \" разходка.\""
+msgid "bOK=TRUE ' bOK is an implicit boolean variable"
+msgstr "bOK = True ' bOK е неявна променлива от тип Boolean"
-#: 03120102.xhp
+#: 03101110.xhp
msgctxt ""
-"03120102.xhp\n"
-"par_id3145174\n"
-"14\n"
+"03101110.xhp\n"
+"tit\n"
"help.text"
-msgid "' The printout appears in the dialog as: A \"short\" trip."
-msgstr "' В диалога се показва следното: Една \"кратка\" разходка."
+msgid "DefCur Statement [Runtime]"
+msgstr "Оператор DefCur [динамичен]"
-#: 03120102.xhp
+#: 03101110.xhp
msgctxt ""
-"03120102.xhp\n"
-"par_idN10668\n"
+"03101110.xhp\n"
+"bm_id9555345\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120101.xhp\">ASC</link>"
-msgstr "<link href=\"text/sbasic/shared/03120101.xhp\">ASC</link>"
+msgid "<bookmark_value>DefCur statement</bookmark_value>"
+msgstr "<bookmark_value>DefCur, оператор</bookmark_value>"
-#: 03131700.xhp
+#: 03101110.xhp
msgctxt ""
-"03131700.xhp\n"
-"tit\n"
+"03101110.xhp\n"
+"par_idN1057D\n"
"help.text"
-msgid "GetProcessServiceManager Function [Runtime]"
-msgstr "Функция GetProcessServiceManager [динамична]"
+msgid "<link href=\"text/sbasic/shared/03101110.xhp\">DefCur Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03101110.xhp\">Оператор DefCur [динамичен]</link>"
-#: 03131700.xhp
+#: 03101110.xhp
msgctxt ""
-"03131700.xhp\n"
-"bm_id3153255\n"
+"03101110.xhp\n"
+"par_idN1058D\n"
"help.text"
-msgid "<bookmark_value>GetProcessServiceManager function</bookmark_value><bookmark_value>ProcessServiceManager</bookmark_value>"
-msgstr "<bookmark_value>GetProcessServiceManager, функция</bookmark_value><bookmark_value>ProcessServiceManager</bookmark_value>"
+msgid "If no type-declaration character or keyword is specified, the DefCur statement sets the default variable type, according to a letter range."
+msgstr "Операторът DefCur установява подразбиран тип данни според диапазон от букви в случай, че не е зададена ключова дума или знак за деклариране на тип."
-#: 03131700.xhp
+#: 03101110.xhp
msgctxt ""
-"03131700.xhp\n"
-"hd_id3153255\n"
-"1\n"
+"03101110.xhp\n"
+"par_idN10590\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03131700.xhp\" name=\"GetProcessServiceManager Function [Runtime]\">GetProcessServiceManager Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03131700.xhp\" name=\"Функция GetProcessServiceManager [динамична]\">Функция GetProcessServiceManager [динамична]</link>"
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 03131700.xhp
+#: 03101110.xhp
msgctxt ""
-"03131700.xhp\n"
-"par_id3156414\n"
-"2\n"
+"03101110.xhp\n"
+"par_idN10594\n"
"help.text"
-msgid "Returns the ProcessServiceManager (central Uno ServiceManager)."
-msgstr "Връща диспечера на услуги ProcessServiceManager (централният обект ServiceManager на Uno)."
+msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
+msgstr "Defxxx Characterrange1[, Characterrange2[,...]]"
-#: 03131700.xhp
+#: 03101110.xhp
msgctxt ""
-"03131700.xhp\n"
-"par_id3145136\n"
-"3\n"
+"03101110.xhp\n"
+"par_idN10597\n"
"help.text"
-msgid "This function is required when you want to instantiate a service using CreateInstanceWithArguments."
-msgstr "Тази функция е необходима, когато искате да получите екземпляр на услуга чрез CreateInstanceWithArguments."
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 03131700.xhp
+#: 03101110.xhp
msgctxt ""
-"03131700.xhp\n"
-"hd_id3153681\n"
-"4\n"
+"03101110.xhp\n"
+"par_idN1059B\n"
"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
+msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set a default data type for."
+msgstr "<emph>Characterrange:</emph> букви, определящи диапазона от променливи, за които искате да зададете подразбиран тип данни."
-#: 03131700.xhp
+#: 03101110.xhp
msgctxt ""
-"03131700.xhp\n"
-"par_id3151110\n"
-"5\n"
+"03101110.xhp\n"
+"par_idN105A2\n"
"help.text"
-msgid "oServiceManager = GetProcessServiceManager()"
-msgstr "oServiceManager = GetProcessServiceManager()"
+msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
+msgstr "<emph>xxx:</emph> ключова дума, дефинираща подразбирания тип данни:"
-#: 03131700.xhp
+#: 03101110.xhp
msgctxt ""
-"03131700.xhp\n"
-"hd_id3149516\n"
-"6\n"
+"03101110.xhp\n"
+"par_idN105A9\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "<emph>Keyword:</emph> Default variable type"
+msgstr "<emph>Ключова дума:</emph> Подразбиран тип данни"
-#: 03131700.xhp
+#: 03101110.xhp
msgctxt ""
-"03131700.xhp\n"
-"par_id3143270\n"
-"7\n"
+"03101110.xhp\n"
+"par_idN105B0\n"
"help.text"
-msgid "oServiceManager = GetProcessServiceManager()"
-msgstr "oServiceManager = GetProcessServiceManager()"
+msgid "<emph>DefCur:</emph> Currency"
+msgstr "<emph>DefCur:</emph> Currency"
-#: 03131700.xhp
+#: 03101110.xhp
msgctxt ""
-"03131700.xhp\n"
-"par_id3153825\n"
-"8\n"
+"03101110.xhp\n"
+"par_idN105B7\n"
"help.text"
-msgid "oIntrospection = oServiceManager.createInstance(\"com.sun.star.beans.Introspection\");"
-msgstr "oIntrospection = oServiceManager.createInstance(\"com.sun.star.beans.Introspection\");"
+msgid "Example:"
+msgstr "Пример:"
-#: 03131700.xhp
+#: 03101110.xhp
msgctxt ""
-"03131700.xhp\n"
-"par_id3148473\n"
-"9\n"
+"03101110.xhp\n"
+"par_idN105BB\n"
"help.text"
-msgid "this is the same as the following statement:"
-msgstr "Това е същото като долния оператор:"
+msgid "REM Prefix definitions for variable types:"
+msgstr "REM Дефиниране с префикс за променливи от даден тип:"
-#: 03131700.xhp
+#: 03101110.xhp
msgctxt ""
-"03131700.xhp\n"
-"par_id3145609\n"
-"10\n"
+"03101110.xhp\n"
+"par_idN105D9\n"
"help.text"
-msgid "oIntrospection = CreateUnoService(\"com.sun.star.beans.Introspection\")"
-msgstr "oIntrospection = CreateUnoService(\"com.sun.star.beans.Introspection\")"
+msgid "cCur=Currency REM cCur is an implicit currency variable"
+msgstr "cCur = Currency REM cCur е променлива с неявен тип Currency"
-#: 03120101.xhp
+#: 03101120.xhp
msgctxt ""
-"03120101.xhp\n"
+"03101120.xhp\n"
"tit\n"
"help.text"
-msgid "Asc Function [Runtime]"
-msgstr "Функция Asc [динамична]"
+msgid "DefErr Statement [Runtime]"
+msgstr "Оператор DefErr [динамичен]"
-#: 03120101.xhp
+#: 03101120.xhp
msgctxt ""
-"03120101.xhp\n"
-"bm_id3150499\n"
+"03101120.xhp\n"
+"bm_id8177739\n"
"help.text"
-msgid "<bookmark_value>Asc function</bookmark_value>"
-msgstr "<bookmark_value>Asc, функция</bookmark_value>"
+msgid "<bookmark_value>DefErr statement</bookmark_value>"
+msgstr "<bookmark_value>DefErr, оператор</bookmark_value>"
-#: 03120101.xhp
+#: 03101120.xhp
msgctxt ""
-"03120101.xhp\n"
-"hd_id3150499\n"
-"1\n"
+"03101120.xhp\n"
+"par_idN1057D\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120101.xhp\" name=\"Asc Function [Runtime]\">Asc Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120101.xhp\" name=\"Функция Asc [динамична]\">Функция Asc [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03101120.xhp\">DefErr Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03101120.xhp\">Оператор DefErr [динамичен]</link>"
-#: 03120101.xhp
+#: 03101120.xhp
msgctxt ""
-"03120101.xhp\n"
-"par_id3151384\n"
-"2\n"
+"03101120.xhp\n"
+"par_idN1058D\n"
"help.text"
-msgid "Returns the ASCII (American Standard Code for Information Interchange) value of the first character in a string expression."
-msgstr "Връща стойността на първия знак от низ според кода ASCII (American Standard Code for Information Interchange, американски стандартен код за обмен на информация)."
+msgid "If no type-declaration character or keyword is specified, the DefErr statement sets the default variable type, according to a letter range."
+msgstr "Операторът DefErr установява подразбиран тип данни според диапазон от букви в случай, че не е зададена ключова дума или знак за деклариране на тип."
-#: 03120101.xhp
+#: 03101120.xhp
msgctxt ""
-"03120101.xhp\n"
-"hd_id3155555\n"
-"3\n"
+"03101120.xhp\n"
+"par_idN10590\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03120101.xhp
+#: 03101120.xhp
msgctxt ""
-"03120101.xhp\n"
-"par_id3143267\n"
-"4\n"
+"03101120.xhp\n"
+"par_idN10594\n"
"help.text"
-msgid "Asc (Text As String)"
-msgstr "Asc (Text As String)"
+msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
+msgstr "Defxxx Characterrange1[, Characterrange2[,...]]"
-#: 03120101.xhp
+#: 03101120.xhp
msgctxt ""
-"03120101.xhp\n"
-"hd_id3147242\n"
-"5\n"
+"03101120.xhp\n"
+"par_idN10597\n"
"help.text"
-msgid "Return value:"
-msgstr "Връщана стойност:"
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 03120101.xhp
+#: 03101120.xhp
msgctxt ""
-"03120101.xhp\n"
-"par_id3150669\n"
-"6\n"
+"03101120.xhp\n"
+"par_idN1059B\n"
"help.text"
-msgid "Integer"
-msgstr "Integer"
+msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set a default data type for."
+msgstr "<emph>Characterrange:</emph> букви, определящи диапазона от променливи, за които искате да зададете подразбиран тип данни."
-#: 03120101.xhp
+#: 03101120.xhp
msgctxt ""
-"03120101.xhp\n"
-"hd_id3148473\n"
-"7\n"
+"03101120.xhp\n"
+"par_idN105A2\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
+msgstr "<emph>xxx:</emph> ключова дума, дефинираща подразбирания тип данни:"
-#: 03120101.xhp
+#: 03101120.xhp
msgctxt ""
-"03120101.xhp\n"
-"par_id3149415\n"
-"8\n"
+"03101120.xhp\n"
+"par_idN105A9\n"
"help.text"
-msgid "<emph>Text:</emph> Any valid string expression. Only the first character in the string is relevant."
-msgstr "<emph>Text:</emph> валиден израз със стойност низ. Обработва се само първият му знак."
+msgid "<emph>Keyword:</emph> Default variable type"
+msgstr "<emph>Ключова дума:</emph> Подразбиран тип данни"
-#: 03120101.xhp
+#: 03101120.xhp
msgctxt ""
-"03120101.xhp\n"
-"par_id3145609\n"
-"9\n"
+"03101120.xhp\n"
+"par_idN105B0\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 "С функцията Asc можете да заменяте знаци със стойности. Ако Asc срещне празен низ, $[officename] Basic докладва грешка по време на изпълнение. Освен 7-битовите знаци от ASCII (кодове 0–127), функцията Asc разпознава и кодовете на непечатаемите знаци в ASCII. Тази функция може да обработва и 16-битови знаци от Уникод."
+msgid "<emph>DefErr:</emph> Error"
+msgstr "<emph>DefErr:</emph> Error"
-#: 03120101.xhp
+#: 03101120.xhp
msgctxt ""
-"03120101.xhp\n"
-"hd_id3159413\n"
-"10\n"
+"03101120.xhp\n"
+"par_idN105B7\n"
"help.text"
msgid "Example:"
msgstr "Пример:"
-#: 03120101.xhp
-msgctxt ""
-"03120101.xhp\n"
-"par_id3150792\n"
-"12\n"
-"help.text"
-msgid "Print ASC(\"A\") ' returns 65"
-msgstr "Print ASC(\"A\") ' връща 65"
-
-#: 03120101.xhp
+#: 03101120.xhp
msgctxt ""
-"03120101.xhp\n"
-"par_id3148797\n"
-"13\n"
+"03101120.xhp\n"
+"par_idN105BB\n"
"help.text"
-msgid "Print ASC(\"Z\") ' returns 90"
-msgstr "Print ASC(\"Z\") ' връща 90"
+msgid "' Prefix definitions for variable types:"
+msgstr "' Дефиниране с префикс за променливи от даден тип:"
-#: 03120101.xhp
+#: 03101120.xhp
msgctxt ""
-"03120101.xhp\n"
-"par_id3163800\n"
-"14\n"
+"03101120.xhp\n"
+"par_idN105D9\n"
"help.text"
-msgid "Print ASC(\"Las Vegas\") ' returns 76, since only the first character is taken into account"
-msgstr "Print ASC(\"Лас Вегас\") ' връща 1051, взима се предвид само първият знак"
+msgid "eErr=Error ' eErr is an implicit error variable"
+msgstr "eErr = Error ' eErr е променлива с неявен тип Error"
-#: 03120101.xhp
+#: 03101130.xhp
msgctxt ""
-"03120101.xhp\n"
-"par_idN1067B\n"
+"03101130.xhp\n"
+"tit\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120102.xhp\">CHR</link>"
-msgstr "<link href=\"text/sbasic/shared/03120102.xhp\">Chr</link>"
+msgid "DefSng Statement [Runtime]"
+msgstr "Оператор DefSng [динамичен]"
-#: 03100400.xhp
+#: 03101130.xhp
msgctxt ""
-"03100400.xhp\n"
-"tit\n"
+"03101130.xhp\n"
+"bm_id2445142\n"
"help.text"
-msgid "CDbl Function [Runtime]"
-msgstr "Функция CDbl [динамична]"
+msgid "<bookmark_value>DefSng statement</bookmark_value>"
+msgstr "<bookmark_value>DefSng, оператор</bookmark_value>"
-#: 03100400.xhp
+#: 03101130.xhp
msgctxt ""
-"03100400.xhp\n"
-"bm_id3153750\n"
+"03101130.xhp\n"
+"par_idN10577\n"
"help.text"
-msgid "<bookmark_value>CDbl function</bookmark_value>"
-msgstr "<bookmark_value>CDbl, функция</bookmark_value>"
+msgid "<link href=\"text/sbasic/shared/03101130.xhp\">DefSng Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03101130.xhp\">Оператор DefSng [динамичен]</link>"
-#: 03100400.xhp
+#: 03101130.xhp
msgctxt ""
-"03100400.xhp\n"
-"hd_id3153750\n"
-"1\n"
+"03101130.xhp\n"
+"par_idN10587\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03100400.xhp\" name=\"CDbl Function [Runtime]\">CDbl Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03100400.xhp\" name=\"Функция CDbl [динамична]\">Функция CDbl [динамична]</link>"
+msgid "If no type-declaration character or keyword is specified, the DefSng statement sets the default variable type, according to a letter range."
+msgstr "Операторът DefSng установява подразбиран тип данни според диапазон от букви в случай, че не е зададена ключова дума или знак за деклариране на тип."
-#: 03100400.xhp
+#: 03101130.xhp
msgctxt ""
-"03100400.xhp\n"
-"par_id3149233\n"
-"2\n"
+"03101130.xhp\n"
+"par_idN1058A\n"
"help.text"
-msgid "Converts any numerical expression or string expression to a double type."
-msgstr "Преобразува числов или низов израз в стойност от тип Dоuble."
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 03100400.xhp
+#: 03101130.xhp
msgctxt ""
-"03100400.xhp\n"
-"hd_id3149516\n"
-"3\n"
+"03101130.xhp\n"
+"par_idN1058E\n"
"help.text"
-msgid "Syntax"
-msgstr "Синтаксис"
+msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
+msgstr "Defxxx Characterrange1[, Characterrange2[,...]]"
-#: 03100400.xhp
+#: 03101130.xhp
msgctxt ""
-"03100400.xhp\n"
-"par_id3156152\n"
-"4\n"
+"03101130.xhp\n"
+"par_idN10591\n"
"help.text"
-msgid "CDbl (Expression)"
-msgstr "CDbl (Expression)"
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 03100400.xhp
+#: 03101130.xhp
msgctxt ""
-"03100400.xhp\n"
-"hd_id3153061\n"
-"5\n"
+"03101130.xhp\n"
+"par_idN10595\n"
"help.text"
-msgid "Return value"
-msgstr "Връщана стойност:"
+msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set a default data type for."
+msgstr "<emph>Characterrange:</emph> букви, определящи диапазона от променливи, за които искате да зададете подразбиран тип данни."
-#: 03100400.xhp
+#: 03101130.xhp
msgctxt ""
-"03100400.xhp\n"
-"par_id3145068\n"
-"6\n"
+"03101130.xhp\n"
+"par_idN1059C\n"
"help.text"
-msgid "Double"
-msgstr "Double"
+msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
+msgstr "<emph>xxx:</emph> ключова дума, дефинираща подразбирания тип данни:"
-#: 03100400.xhp
+#: 03101130.xhp
msgctxt ""
-"03100400.xhp\n"
-"hd_id3154760\n"
-"7\n"
+"03101130.xhp\n"
+"par_idN105A3\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "<emph>Keyword:</emph> Default variable type"
+msgstr "<emph>Ключова дума:</emph> Подразбиран тип данни"
-#: 03100400.xhp
+#: 03101130.xhp
msgctxt ""
-"03100400.xhp\n"
-"par_id3153897\n"
-"8\n"
+"03101130.xhp\n"
+"par_idN105AA\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 as normal text (\"123.5\") using the default number format of your operating system."
-msgstr "<emph>Expression:</emph> низов или числов израз, който да бъде преобразуван. За да преобразувате стойност – низ, числото трябва да е въведено като обикновен текст (\"123.5\") с подразбирания формат за числа на операционната система."
+msgid "<emph>DefSng:</emph> Single"
+msgstr "<emph>DefSng:</emph> Single"
-#: 03100400.xhp
+#: 03101130.xhp
msgctxt ""
-"03100400.xhp\n"
-"hd_id3148797\n"
-"9\n"
+"03101130.xhp\n"
+"par_idN105B1\n"
"help.text"
msgid "Example:"
msgstr "Пример:"
-#: 03080102.xhp
+#: 03101130.xhp
msgctxt ""
-"03080102.xhp\n"
-"tit\n"
+"03101130.xhp\n"
+"par_idN105B5\n"
"help.text"
-msgid "Cos Function [Runtime]"
-msgstr "Функция Cos [динамична]"
+msgid "' Prefix definitions for variable types:"
+msgstr "' Дефиниране с префикс за променливи от даден тип:"
-#: 03080102.xhp
+#: 03101130.xhp
msgctxt ""
-"03080102.xhp\n"
-"bm_id3154923\n"
+"03101130.xhp\n"
+"par_idN105D3\n"
"help.text"
-msgid "<bookmark_value>Cos function</bookmark_value>"
-msgstr "<bookmark_value>Cos, функция</bookmark_value>"
+msgid "sSng=Single ' sSng is an implicit single variable"
+msgstr "sSng = Single ' sSng е променлива с неявен тип Single"
-#: 03080102.xhp
+#: 03101140.xhp
msgctxt ""
-"03080102.xhp\n"
-"hd_id3154923\n"
-"1\n"
+"03101140.xhp\n"
+"tit\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080102.xhp\" name=\"Cos Function [Runtime]\">Cos Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03080102.xhp\" name=\"Функция Cos [динамична]\">Функция Cos [динамична]</link>"
+msgid "DefStr Statement [Runtime]"
+msgstr "Оператор DefStr [динамичен]"
-#: 03080102.xhp
+#: 03101140.xhp
msgctxt ""
-"03080102.xhp\n"
-"par_id3159413\n"
-"2\n"
+"03101140.xhp\n"
+"bm_id6161381\n"
"help.text"
-msgid "Calculates the cosine of an angle. The angle is specified in radians. The result lies between -1 and 1."
-msgstr "Изчислява косинуса на ъгъл, зададен в радиани. Резултатът е между -1 и 1."
+msgid "<bookmark_value>DefStr statement</bookmark_value>"
+msgstr "<bookmark_value>DefStr, оператор</bookmark_value>"
-#: 03080102.xhp
+#: 03101140.xhp
msgctxt ""
-"03080102.xhp\n"
-"par_id3150358\n"
-"3\n"
+"03101140.xhp\n"
+"par_idN10577\n"
"help.text"
-msgid "Using the angle Alpha, the Cos-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 "Функцията Cos изчислява съотношението на дължините на прилежащия катет на ъгъла и хипотенузата в правоъгълен триъгълник."
+msgid "<link href=\"text/sbasic/shared/03101140.xhp\">DefStr Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03101140.xhp\">Оператор DefStr [динамичен]</link>"
-#: 03080102.xhp
+#: 03101140.xhp
msgctxt ""
-"03080102.xhp\n"
-"par_id3154141\n"
-"4\n"
+"03101140.xhp\n"
+"par_idN10587\n"
"help.text"
-msgid "Cos(Alpha) = Adjacent/Hypotenuse"
-msgstr "Cos(α) = прилежащ катет / хипотенуза"
+msgid "If no type-declaration character or keyword is specified, the DefStr statement sets the default variable type, according to a letter range."
+msgstr "Операторът DefStr установява подразбиран тип данни според диапазон от букви в случай, че не е зададена ключова дума или знак за деклариране на тип."
-#: 03080102.xhp
+#: 03101140.xhp
msgctxt ""
-"03080102.xhp\n"
-"hd_id3154125\n"
-"5\n"
+"03101140.xhp\n"
+"par_idN1058A\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03080102.xhp
-msgctxt ""
-"03080102.xhp\n"
-"par_id3145172\n"
-"6\n"
-"help.text"
-msgid "Cos (Number)"
-msgstr "Cos (Number)"
-
-#: 03080102.xhp
-msgctxt ""
-"03080102.xhp\n"
-"hd_id3156214\n"
-"7\n"
-"help.text"
-msgid "Return value:"
-msgstr "Връщана стойност:"
-
-#: 03080102.xhp
+#: 03101140.xhp
msgctxt ""
-"03080102.xhp\n"
-"par_id3150449\n"
-"8\n"
+"03101140.xhp\n"
+"par_idN1058E\n"
"help.text"
-msgid "Double"
-msgstr "Double"
+msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
+msgstr "Defxxx Characterrange1[, Characterrange2[,...]]"
-#: 03080102.xhp
+#: 03101140.xhp
msgctxt ""
-"03080102.xhp\n"
-"hd_id3153969\n"
-"9\n"
+"03101140.xhp\n"
+"par_idN10591\n"
"help.text"
msgid "Parameters:"
msgstr "Параметри:"
-#: 03080102.xhp
-msgctxt ""
-"03080102.xhp\n"
-"par_id3153770\n"
-"10\n"
-"help.text"
-msgid "<emph>Number:</emph> Numeric expression that specifies an angle in radians that you want to calculate the cosine for."
-msgstr "<emph>Number:</emph> числов израз – ъгълът в радиани, чийто косинус искате да изчислите."
-
-#: 03080102.xhp
+#: 03101140.xhp
msgctxt ""
-"03080102.xhp\n"
-"par_id3145749\n"
-"11\n"
+"03101140.xhp\n"
+"par_idN10595\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 "За да превърнете градусите в радиани, умножете ги по π/180. За да превърнете радианите в градуси, умножете ги по 180/π."
+msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set a default data type for."
+msgstr "<emph>Characterrange:</emph> букви, определящи диапазона от променливи, за които искате да зададете подразбиран тип данни."
-#: 03080102.xhp
+#: 03101140.xhp
msgctxt ""
-"03080102.xhp\n"
-"par_id3149664\n"
-"12\n"
+"03101140.xhp\n"
+"par_idN1059C\n"
"help.text"
-msgid "degree=(radian*180)/pi"
-msgstr "degrees = (radians * 180) / Pi"
+msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
+msgstr "<emph>xxx:</emph> ключова дума, дефинираща подразбирания тип данни:"
-#: 03080102.xhp
+#: 03101140.xhp
msgctxt ""
-"03080102.xhp\n"
-"par_id3146985\n"
-"13\n"
+"03101140.xhp\n"
+"par_idN105A3\n"
"help.text"
-msgid "radian=(degree*pi)/180"
-msgstr "radians = (degrees * Pi) / 180"
+msgid "<emph>Keyword:</emph> Default variable type"
+msgstr "<emph>Ключова дума:</emph> Подразбиран тип данни"
-#: 03080102.xhp
+#: 03101140.xhp
msgctxt ""
-"03080102.xhp\n"
-"par_id3152885\n"
-"14\n"
+"03101140.xhp\n"
+"par_idN105AA\n"
"help.text"
-msgid "Pi is here the fixed circle constant with the rounded value 3.14159..."
-msgstr "Pi (π) е съотношението между периметъра и диаметъра на кръг, приблизително 3,14159."
+msgid "<emph>DefStr:</emph> String"
+msgstr "<emph>DefStr:</emph> String"
-#: 03080102.xhp
+#: 03101140.xhp
msgctxt ""
-"03080102.xhp\n"
-"hd_id3153951\n"
-"15\n"
+"03101140.xhp\n"
+"par_idN105B1\n"
"help.text"
msgid "Example:"
msgstr "Пример:"
-#: 03080102.xhp
-msgctxt ""
-"03080102.xhp\n"
-"par_id3155855\n"
-"16\n"
-"help.text"
-msgid "' The following example allows for a right-angled triangle the input of"
-msgstr "' Този пример позволява въвеждане на дължината на прилежащ"
-
-#: 03080102.xhp
-msgctxt ""
-"03080102.xhp\n"
-"par_id3149484\n"
-"17\n"
-"help.text"
-msgid "' secant and angle (in degrees) and calculates the length of the hypotenuse:"
-msgstr "' катет и ъгъл в градуси и изчислява дължината на хипотенузата:"
-
-#: 03080102.xhp
-msgctxt ""
-"03080102.xhp\n"
-"par_id3150010\n"
-"19\n"
-"help.text"
-msgid "' rounded Pi = 3.14159"
-msgstr "' Pi е приблизително 3,14159"
-
-#: 03080102.xhp
+#: 03101140.xhp
msgctxt ""
-"03080102.xhp\n"
-"par_id3144764\n"
-"21\n"
+"03101140.xhp\n"
+"par_idN105B5\n"
"help.text"
-msgid "d1 = InputBox$ (\"\"Enter the length of the adjacent side: \",\"Adjacent\")"
-msgstr "d1 = InputBox$(\"Въведете дължината на прилежащия катет: \", \"Прилежащ катет\")"
+msgid "' Prefix definitions for variable types:"
+msgstr "' Дефиниране с префикс за променливи от даден тип:"
-#: 03080102.xhp
+#: 03101140.xhp
msgctxt ""
-"03080102.xhp\n"
-"par_id3154491\n"
-"22\n"
+"03101140.xhp\n"
+"par_idN105D3\n"
"help.text"
-msgid "dAngle = InputBox$ (\"Enter the angle Alpha (in degrees): \",\"Alpha\")"
-msgstr "dAngle = InputBox$(\"Въведете ъгъла в градуси: \", \"Ъгъл\")"
+msgid "sStr=String ' sStr is an implicit string variable"
+msgstr "sStr = String ' sStr е променлива с неявен тип String"
-#: 03080102.xhp
+#: 03101300.xhp
msgctxt ""
-"03080102.xhp\n"
-"par_id3151074\n"
-"23\n"
+"03101300.xhp\n"
+"tit\n"
"help.text"
-msgid "Print \"The length of the hypothenuse is\"; (d1 / cos (dAngle * Pi / 180))"
-msgstr "Print \"Дължината на хипотенузата е \"; (d1 / Cos (dAngle * Pi / 180))"
+msgid "DefDate Statement [Runtime]"
+msgstr "Оператор DefDate [динамичен]"
-#: 01050300.xhp
+#: 03101300.xhp
msgctxt ""
-"01050300.xhp\n"
-"tit\n"
+"03101300.xhp\n"
+"bm_id3150504\n"
"help.text"
-msgid "Manage Breakpoints"
-msgstr "Управление на точките за прекъсване"
+msgid "<bookmark_value>DefDate statement</bookmark_value>"
+msgstr "<bookmark_value>DefDate, оператор</bookmark_value>"
-#: 01050300.xhp
+#: 03101300.xhp
msgctxt ""
-"01050300.xhp\n"
-"hd_id3154927\n"
+"03101300.xhp\n"
+"hd_id3150504\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/01050300.xhp\" name=\"Manage Breakpoints\">Manage Breakpoints</link>"
-msgstr "<link href=\"text/sbasic/shared/01050300.xhp\" name=\"Управление на точките на прекъсване\">Управление на точките на прекъсване</link>"
+msgid "<link href=\"text/sbasic/shared/03101300.xhp\" name=\"DefDate Statement [Runtime]\">DefDate Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03101300.xhp\" name=\"Оператор DefDate [динамичен]\">Оператор DefDate [динамичен]</link>"
-#: 01050300.xhp
+#: 03101300.xhp
msgctxt ""
-"01050300.xhp\n"
-"par_id3148550\n"
+"03101300.xhp\n"
+"par_id3145069\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_BASICIDE_BRKPROPS\">Specifies the options for breakpoints.</ahelp>"
-msgstr "<ahelp hid=\"HID_BASICIDE_BRKPROPS\">Задава настройките за точки на прекъсване.</ahelp>"
+msgid "If no type-declaration character or keyword is specified, the DefDate statement sets the default variable type, according to a letter range."
+msgstr "Операторът DefDate установява подразбиран тип данни според диапазон от букви в случай, че не е зададена ключова дума или знак за деклариране на тип."
-#: 01050300.xhp
+#: 03101300.xhp
msgctxt ""
-"01050300.xhp\n"
-"hd_id3149670\n"
+"03101300.xhp\n"
+"hd_id3154758\n"
"3\n"
"help.text"
-msgid "Breakpoints"
-msgstr "Точки на прекъсване"
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 01050300.xhp
+#: 03101300.xhp
msgctxt ""
-"01050300.xhp\n"
-"par_id3150398\n"
+"03101300.xhp\n"
+"par_id3148664\n"
"4\n"
"help.text"
-msgid "<ahelp hid=\"BASCTL_COMBOBOX_RID_BASICIDE_BREAKPOINTDLG_RID_CB_BRKPOINTS\">Enter the line number for a new breakpoint, then click <emph>New</emph>.</ahelp>"
-msgstr "<ahelp hid=\"BASCTL_COMBOBOX_RID_BASICIDE_BREAKPOINTDLG_RID_CB_BRKPOINTS\">Въведете номер на ред за нова точка на прекъсване, после щракнете върху <emph>Нова</emph>.</ahelp>"
+msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
+msgstr "Defxxx Characterrange1[, Characterrange2[,...]]"
-#: 01050300.xhp
+#: 03101300.xhp
msgctxt ""
-"01050300.xhp\n"
-"hd_id3156280\n"
+"03101300.xhp\n"
+"hd_id3150541\n"
+"5\n"
+"help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 03101300.xhp
+msgctxt ""
+"03101300.xhp\n"
+"par_id3156709\n"
"6\n"
"help.text"
-msgid "Active"
-msgstr "Активна"
+msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set a default data type for."
+msgstr "<emph>Characterrange:</emph> букви, определящи диапазона от променливи, за които искате да зададете подразбиран тип данни."
-#: 01050300.xhp
+#: 03101300.xhp
msgctxt ""
-"01050300.xhp\n"
-"par_id3154910\n"
+"03101300.xhp\n"
+"par_id3150869\n"
"7\n"
"help.text"
-msgid "<ahelp hid=\"HID_BASICIDE_ACTIV\">Activates or deactivates the current breakpoint.</ahelp>"
-msgstr "<ahelp hid=\"HID_BASICIDE_ACTIV\">Активира или дезактивира текущата точка на прекъсване.</ahelp>"
+msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
+msgstr "<emph>xxx:</emph> ключова дума, дефинираща подразбирания тип данни:"
-#: 01050300.xhp
+#: 03101300.xhp
msgctxt ""
-"01050300.xhp\n"
-"hd_id3144500\n"
+"03101300.xhp\n"
+"par_id3145171\n"
"8\n"
"help.text"
-msgid "Pass Count"
-msgstr "Брой пасове"
+msgid "<emph>Keyword:</emph> Default variable type"
+msgstr "<emph>Ключова дума:</emph> Подразбиран тип данни"
-#: 01050300.xhp
+#: 03101300.xhp
msgctxt ""
-"01050300.xhp\n"
-"par_id3161831\n"
+"03101300.xhp\n"
+"par_id3150767\n"
"9\n"
"help.text"
-msgid "<ahelp hid=\"BASCTL_NUMERICFIELD_RID_BASICIDE_BREAKPOINTDLG_RID_FLD_PASS\">Specify the number of loops to perform before the breakpoint takes effect.</ahelp>"
-msgstr "<ahelp hid=\"BASCTL_NUMERICFIELD_RID_BASICIDE_BREAKPOINTDLG_RID_FLD_PASS\">Задайте колко пъти да се изпълни редът, преди да се задейства точката на прекъсване.</ahelp>"
+msgid "<emph>DefDate:</emph> Date"
+msgstr "<emph>DefDate:</emph> Date"
-#: 01050300.xhp
+#: 03101300.xhp
msgctxt ""
-"01050300.xhp\n"
-"hd_id3152579\n"
+"03101300.xhp\n"
+"hd_id3153768\n"
"10\n"
"help.text"
-msgid "New"
-msgstr "Нова"
-
-#: 01050300.xhp
-msgctxt ""
-"01050300.xhp\n"
-"par_id3148575\n"
-"11\n"
-"help.text"
-msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_BASICIDE_BREAKPOINTDLG_RID_PB_NEW\">Creates a breakpoint on the line number specified.</ahelp>"
-msgstr "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_BASICIDE_BREAKPOINTDLG_RID_PB_NEW\">Създава точка на прекъсване върху реда с указания номер.</ahelp>"
+msgid "Example:"
+msgstr "Пример:"
-#: 01050300.xhp
+#: 03101300.xhp
msgctxt ""
-"01050300.xhp\n"
-"hd_id3147319\n"
+"03101300.xhp\n"
+"par_id3145785\n"
"12\n"
"help.text"
-msgid "Delete"
-msgstr "Изтриване"
+msgid "' Prefix definitions for variable types:"
+msgstr "' Дефиниране с префикс за променливи от даден тип:"
-#: 01050300.xhp
+#: 03101300.xhp
msgctxt ""
-"01050300.xhp\n"
-"par_id3153363\n"
-"13\n"
+"03101300.xhp\n"
+"par_id3152462\n"
+"22\n"
"help.text"
-msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_BASICIDE_BREAKPOINTDLG_RID_PB_DEL\">Deletes the selected breakpoint.</ahelp>"
-msgstr "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_BASICIDE_BREAKPOINTDLG_RID_PB_DEL\">Изтрива избраната точка на прекъсване.</ahelp>"
+msgid "tDate=Date ' tDate is an implicit date variable"
+msgstr "tDate = Date ' tDate е променлива с неявен тип Date"
-#: 03104200.xhp
+#: 03101400.xhp
msgctxt ""
-"03104200.xhp\n"
+"03101400.xhp\n"
"tit\n"
"help.text"
-msgid "Array Function [Runtime]"
-msgstr "Функция Array [динамична]"
+msgid "DefDbl Statement [Runtime]"
+msgstr "Оператор DefDbl [динамичен]"
-#: 03104200.xhp
+#: 03101400.xhp
msgctxt ""
-"03104200.xhp\n"
-"bm_id3150499\n"
+"03101400.xhp\n"
+"bm_id3147242\n"
"help.text"
-msgid "<bookmark_value>Array function</bookmark_value>"
-msgstr "<bookmark_value>Array, функция</bookmark_value>"
+msgid "<bookmark_value>DefDbl statement</bookmark_value>"
+msgstr "<bookmark_value>DefDbl, оператор</bookmark_value>"
-#: 03104200.xhp
+#: 03101400.xhp
msgctxt ""
-"03104200.xhp\n"
-"hd_id3150499\n"
+"03101400.xhp\n"
+"hd_id3147242\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03104200.xhp\" name=\"Array Function [Runtime]\">Array Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03104200.xhp\" name=\"Функция Array [динамична]\">Функция Array [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03101400.xhp\" name=\"DefDbl Statement [Runtime]\">DefDbl Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03101400.xhp\" name=\"Оператор DefDbl [динамичен]\">Оператор DefDbl [динамичен]</link>"
-#: 03104200.xhp
+#: 03101400.xhp
msgctxt ""
-"03104200.xhp\n"
-"par_id3155555\n"
+"03101400.xhp\n"
+"par_id3153126\n"
"2\n"
"help.text"
-msgid "Returns the type Variant with a data field."
-msgstr "Връща стойност от тип Variant, която представлява масив."
+msgid "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified."
+msgstr "Операторът DefLng установява подразбиран тип данни според диапазон от букви в случай, че не е зададена ключова дума или знак за деклариране на тип."
-#: 03104200.xhp
+#: 03101400.xhp
msgctxt ""
-"03104200.xhp\n"
-"hd_id3148538\n"
+"03101400.xhp\n"
+"hd_id3155420\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03104200.xhp
+#: 03101400.xhp
msgctxt ""
-"03104200.xhp\n"
-"par_id3153126\n"
+"03101400.xhp\n"
+"par_id3147530\n"
"4\n"
"help.text"
-msgid "Array ( Argument list)"
-msgstr "Array ( Argument list)"
+msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
+msgstr "Defxxx Characterrange1[, Characterrange2[,...]]"
-#: 03104200.xhp
+#: 03101400.xhp
msgctxt ""
-"03104200.xhp\n"
-"par_id3155419\n"
+"03101400.xhp\n"
+"hd_id3145069\n"
"5\n"
"help.text"
-msgid "See also <link href=\"text/sbasic/shared/03104300.xhp\" name=\"DimArray\">DimArray</link>"
-msgstr "Виж също <link href=\"text/sbasic/shared/03104300.xhp\" name=\"DimArray\">DimArray</link>"
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 03104200.xhp
+#: 03101400.xhp
msgctxt ""
-"03104200.xhp\n"
-"hd_id3150669\n"
+"03101400.xhp\n"
+"par_id3147560\n"
"6\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set the default data type for."
+msgstr "<emph>Characterrange:</emph> букви, определящи диапазона от променливи, за които искате да зададете подразбиран тип данни."
-#: 03104200.xhp
+#: 03101400.xhp
msgctxt ""
-"03104200.xhp\n"
-"par_id3145609\n"
+"03101400.xhp\n"
+"par_id3150791\n"
"7\n"
"help.text"
-msgid "<emph>Argument list:</emph> A list of any number of arguments that are separated by commas."
-msgstr "<emph>Argument list:</emph> списък от произволен брой разделени със запетая аргументи."
+msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
+msgstr "<emph>xxx:</emph> ключова дума, дефинираща подразбирания тип данни:"
-#: 03104200.xhp
+#: 03101400.xhp
msgctxt ""
-"03104200.xhp\n"
-"hd_id3156343\n"
+"03101400.xhp\n"
+"par_id3151210\n"
"8\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "<emph>Keyword:</emph> Default variable type"
+msgstr "<emph>Ключова дума:</emph> Подразбиран тип данни"
-#: 03104200.xhp
+#: 03101400.xhp
msgctxt ""
-"03104200.xhp\n"
-"par_id3153897\n"
+"03101400.xhp\n"
+"par_id3154123\n"
"9\n"
"help.text"
-msgid "Dim A As Variant"
-msgstr "Dim A As Variant"
+msgid "<emph>DefDbl:</emph> Double"
+msgstr "<emph>DefDbl:</emph> Double"
-#: 03104200.xhp
+#: 03101400.xhp
msgctxt ""
-"03104200.xhp\n"
-"par_id3153525\n"
+"03101400.xhp\n"
+"hd_id3153192\n"
"10\n"
"help.text"
-msgid "A = Array(\"Fred\",\"Tom\",\"Bill\")"
-msgstr "A = Array(\"Иван\", \"Петър\", \"Асен\")"
+msgid "Example:"
+msgstr "Пример:"
-#: 03104200.xhp
+#: 03101400.xhp
msgctxt ""
-"03104200.xhp\n"
-"par_id3150792\n"
-"11\n"
+"03101400.xhp\n"
+"par_id3156281\n"
+"12\n"
"help.text"
-msgid "Msgbox A(2)"
-msgstr "MsgBox A(2)"
+msgid "' Prefix definitions for variable types:"
+msgstr "' Дефиниране с префикс за променливи от даден тип:"
-#: 03120104.xhp
+#: 03101400.xhp
msgctxt ""
-"03120104.xhp\n"
+"03101400.xhp\n"
+"par_id3153144\n"
+"22\n"
+"help.text"
+msgid "dValue=1.23e43 ' dValue is an implicit double variable type"
+msgstr "dValue = 1.23e43 ' dValue е променлива с неявен тип Double"
+
+#: 03101500.xhp
+msgctxt ""
+"03101500.xhp\n"
"tit\n"
"help.text"
-msgid "Val Function [Runtime]"
-msgstr "Функция Val [динамична]"
+msgid "DefInt Statement [Runtime]"
+msgstr "Оператор DefInt [динамичен]"
-#: 03120104.xhp
+#: 03101500.xhp
msgctxt ""
-"03120104.xhp\n"
-"bm_id3149205\n"
+"03101500.xhp\n"
+"bm_id3149811\n"
"help.text"
-msgid "<bookmark_value>Val function</bookmark_value>"
-msgstr "<bookmark_value>Val, функция</bookmark_value>"
+msgid "<bookmark_value>DefInt statement</bookmark_value>"
+msgstr "<bookmark_value>DefInt, оператор</bookmark_value>"
-#: 03120104.xhp
+#: 03101500.xhp
msgctxt ""
-"03120104.xhp\n"
-"hd_id3149205\n"
+"03101500.xhp\n"
+"hd_id3149811\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120104.xhp\" name=\"Val Function [Runtime]\">Val Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120104.xhp\" name=\"Функция Val [динамична]\">Функция Val [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03101500.xhp\" name=\"DefInt Statement [Runtime]\">DefInt Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03101500.xhp\" name=\"Оператор DefInt [динамичен]\">Оператор DefInt [динамичен]</link>"
-#: 03120104.xhp
+#: 03101500.xhp
msgctxt ""
-"03120104.xhp\n"
-"par_id3153345\n"
+"03101500.xhp\n"
+"par_id3149762\n"
"2\n"
"help.text"
-msgid "Converts a string to a numeric expression."
-msgstr "Преобразува низ в числова стойност."
+msgid "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified."
+msgstr "Операторът DefLng установява подразбиран тип данни според диапазон от букви в случай, че не е зададена ключова дума или знак за деклариране на тип."
-#: 03120104.xhp
+#: 03101500.xhp
msgctxt ""
-"03120104.xhp\n"
-"hd_id3159157\n"
+"03101500.xhp\n"
+"hd_id3148686\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03120104.xhp
+#: 03101500.xhp
msgctxt ""
-"03120104.xhp\n"
-"par_id3149514\n"
+"03101500.xhp\n"
+"par_id3156023\n"
"4\n"
"help.text"
-msgid "Val (Text As String)"
-msgstr "Val (Text As String)"
+msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
+msgstr "Defxxx Characterrange1[, Characterrange2[,...]]"
-#: 03120104.xhp
+#: 03101500.xhp
msgctxt ""
-"03120104.xhp\n"
-"hd_id3150669\n"
+"03101500.xhp\n"
+"hd_id3156344\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Връщана стойност:"
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 03120104.xhp
+#: 03101500.xhp
msgctxt ""
-"03120104.xhp\n"
-"par_id3143228\n"
+"03101500.xhp\n"
+"par_id3147560\n"
"6\n"
"help.text"
-msgid "Double"
-msgstr "Double"
+msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set a default data type for."
+msgstr "<emph>Characterrange:</emph> букви, определящи диапазона от променливи, за които искате да зададете подразбиран тип данни."
-#: 03120104.xhp
+#: 03101500.xhp
msgctxt ""
-"03120104.xhp\n"
-"hd_id3156024\n"
+"03101500.xhp\n"
+"par_id3150398\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
+msgstr "<emph>xxx:</emph> ключова дума, дефинираща подразбирания тип данни:"
-#: 03120104.xhp
+#: 03101500.xhp
msgctxt ""
-"03120104.xhp\n"
-"par_id3154348\n"
+"03101500.xhp\n"
+"par_id3154365\n"
"8\n"
"help.text"
-msgid "<emph>Text:</emph> String that represents a number."
-msgstr "<emph>Text:</emph> низ, който представлява число."
+msgid "<emph>Keyword:</emph> Default variable type"
+msgstr "<emph>Ключова дума:</emph> Подразбиран тип данни"
-#: 03120104.xhp
+#: 03101500.xhp
msgctxt ""
-"03120104.xhp\n"
-"par_id3149670\n"
+"03101500.xhp\n"
+"par_id3125863\n"
"9\n"
"help.text"
-msgid "Using the Val function, you can convert a string that represents numbers into numeric expressions. This is the inverse of the <emph>Str</emph> function. If only part of the string contains numbers, only the first appropriate characters of the string are converted. If the string does not contain any numbers, the <emph>Val</emph> function returns the value 0."
-msgstr "С функцията Val можете да преобразувате низове, които представляват числа, към числови стойности. Това е обратното на функцията <emph>Str</emph>. Ако само част от низа съдържа число, се преобразуват само първите подходящи знаци от низа. Ако низът не съдържа никакви числа, функцията <emph>Val</emph> връща стойността 0."
+msgid "<emph>DefInt:</emph> Integer"
+msgstr "<emph>DefInt:</emph> Integer"
-#: 03120104.xhp
+#: 03101500.xhp
msgctxt ""
-"03120104.xhp\n"
-"hd_id3154365\n"
+"03101500.xhp\n"
+"hd_id3154123\n"
"10\n"
"help.text"
msgid "Example:"
msgstr "Пример:"
-#: 03010200.xhp
-msgctxt ""
-"03010200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Functions for Screen Input"
-msgstr "Функции за въвеждане с помощта на екрана"
-
-#: 03010200.xhp
+#: 03101500.xhp
msgctxt ""
-"03010200.xhp\n"
-"hd_id3149456\n"
-"1\n"
+"03101500.xhp\n"
+"par_id3151042\n"
+"12\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03010200.xhp\" name=\"Functions for Screen Input\">Functions for Screen Input</link>"
-msgstr "<link href=\"text/sbasic/shared/03010200.xhp\" name=\"Функции за въвеждане с помощта на екрана\">Функции за въвеждане с помощта на екрана</link>"
+msgid "' Prefix definitions for variable types"
+msgstr "' Дефиниране с префикс за променливи от даден тип:"
-#: 03010200.xhp
+#: 03101500.xhp
msgctxt ""
-"03010200.xhp\n"
-"par_id3150398\n"
-"2\n"
+"03101500.xhp\n"
+"par_id3153728\n"
+"22\n"
"help.text"
-msgid "This section describes Runtime functions used to control screen input."
-msgstr "В този раздел са описани функциите за управление на въвеждането с помощта на екрана."
+msgid "iCount=200 ' iCount is an implicit integer variable"
+msgstr "iCount = 200 ' iCount е променлива с неявен тип Integer"
-#: 03020411.xhp
+#: 03101600.xhp
msgctxt ""
-"03020411.xhp\n"
+"03101600.xhp\n"
"tit\n"
"help.text"
-msgid "MkDir Statement [Runtime]"
-msgstr "Оператор MkDir [динамичен]"
+msgid "DefLng Statement [Runtime]"
+msgstr "Оператор DefLng [динамичен]"
-#: 03020411.xhp
+#: 03101600.xhp
msgctxt ""
-"03020411.xhp\n"
-"bm_id3156421\n"
+"03101600.xhp\n"
+"bm_id3148538\n"
"help.text"
-msgid "<bookmark_value>MkDir statement</bookmark_value>"
-msgstr "<bookmark_value>MkDir, оператор</bookmark_value>"
+msgid "<bookmark_value>DefLng statement</bookmark_value>"
+msgstr "<bookmark_value>DefLng, оператор</bookmark_value>"
-#: 03020411.xhp
+#: 03101600.xhp
msgctxt ""
-"03020411.xhp\n"
-"hd_id3156421\n"
+"03101600.xhp\n"
+"hd_id3148538\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020411.xhp\" name=\"MkDir Statement [Runtime]\">MkDir Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03020411.xhp\" name=\"MkDir Statement [Runtime]\">MkDir Statement [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03101600.xhp\" name=\"DefLng Statement [Runtime]\">DefLng Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03101600.xhp\" name=\"Оператор DefLng [динамичен]\">Оператор DefLng [динамичен]</link>"
-#: 03020411.xhp
+#: 03101600.xhp
msgctxt ""
-"03020411.xhp\n"
-"par_id3147000\n"
+"03101600.xhp\n"
+"par_id3149514\n"
"2\n"
"help.text"
-msgid "Creates a new directory on a data medium."
-msgstr "Създава нова директория върху носител на данни."
+msgid "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified."
+msgstr "Операторът DefLng установява подразбиран тип данни според диапазон от букви в случай, че не е зададена ключова дума или знак за деклариране на тип."
-#: 03020411.xhp
+#: 03101600.xhp
msgctxt ""
-"03020411.xhp\n"
-"hd_id3148520\n"
+"03101600.xhp\n"
+"hd_id3150504\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03020411.xhp
+#: 03101600.xhp
msgctxt ""
-"03020411.xhp\n"
-"par_id3155150\n"
+"03101600.xhp\n"
+"par_id3145609\n"
"4\n"
"help.text"
-msgid "MkDir Text As String"
-msgstr "MkDir Text As String"
+msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
+msgstr "Defxxx Characterrange1[, Characterrange2[,...]]"
-#: 03020411.xhp
+#: 03101600.xhp
msgctxt ""
-"03020411.xhp\n"
-"hd_id3156027\n"
+"03101600.xhp\n"
+"hd_id3154760\n"
"5\n"
"help.text"
msgid "Parameters:"
msgstr "Параметри:"
-#: 03020411.xhp
+#: 03101600.xhp
msgctxt ""
-"03020411.xhp\n"
-"par_id3153750\n"
+"03101600.xhp\n"
+"par_id3145069\n"
"6\n"
"help.text"
-msgid "<emph>Text:</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 "<emph>Text:</emph> низов израз, задаващ името и пътя на създаваната директория. Може да бъде във вид на <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL\">URL</link>."
+msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set the default data type for."
+msgstr "<emph>Characterrange:</emph> букви, определящи диапазона от променливи, за които искате да зададете подразбиран тип данни."
-#: 03020411.xhp
+#: 03101600.xhp
msgctxt ""
-"03020411.xhp\n"
-"par_id3153311\n"
+"03101600.xhp\n"
+"par_id3150791\n"
"7\n"
"help.text"
-msgid "If the path is not determined, the directory is created in the current directory."
-msgstr "Ако пътят не е определен, директорията се създава в текущата директория."
+msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
+msgstr "<emph>xxx:</emph> ключова дума, дефинираща подразбирания тип данни:"
-#: 03020411.xhp
+#: 03101600.xhp
msgctxt ""
-"03020411.xhp\n"
-"hd_id3155388\n"
+"03101600.xhp\n"
+"par_id3148798\n"
"8\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
-
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"par_id3149762\n"
-"10\n"
-"help.text"
-msgid "' Example for functions of the file organization"
-msgstr "' Пример за функциите за управление на файлове"
-
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"par_id3149669\n"
-"13\n"
-"help.text"
-msgid "Const sSubDir1 As String =\"Test\""
-msgstr "Const sSubDir1 As String =\"Test\""
-
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"par_id3148663\n"
-"14\n"
-"help.text"
-msgid "Const sFile2 As String = \"Copied.tmp\""
-msgstr "Const sFile2 As String = \"Copied.tmp\""
-
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"par_id3154071\n"
-"15\n"
-"help.text"
-msgid "Const sFile3 As String = \"Renamed.tmp\""
-msgstr "Const sFile3 As String = \"Renamed.tmp\""
-
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"par_id3154217\n"
-"19\n"
-"help.text"
-msgid "If Dir(sSubDir1,16)=\"\" Then ' Does the directory exist?"
-msgstr "If Dir(sSubDir1, 16) = \"\" Then ' Съществува ли директорията?"
-
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"par_id3147228\n"
-"21\n"
-"help.text"
-msgid "MsgBox sFile,0,\"Create directory\""
-msgstr "MsgBox sFile, 0, \"Създаване на директория\""
-
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"par_id3153770\n"
-"26\n"
-"help.text"
-msgid "MsgBox fSysURL(CurDir()),0,\"Current directory\""
-msgstr "MsgBox fSysURL(CurDir()), 0, \"Текуща директория\""
-
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"par_id3159154\n"
-"27\n"
-"help.text"
-msgid "MsgBox sFile & Chr(13) & FileDateTime( sFile ),0,\"Creation time\""
-msgstr "MsgBox sFile & Chr(13) & FileDateTime(sFile), 0, \"Час на създаване\""
-
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"par_id3149484\n"
-"28\n"
-"help.text"
-msgid "MsgBox sFile & Chr(13)& FileLen( sFile ),0,\"File length\""
-msgstr "MsgBox sFile & Chr(13) & FileLen(sFile), 0, \"Дължина на файла\""
-
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"par_id3152885\n"
-"29\n"
-"help.text"
-msgid "MsgBox sFile & Chr(13)& GetAttr( sFile ),0,\"File attributes\""
-msgstr "MsgBox sFile & Chr(13) & GetAttr(sFile), 0, \"Атрибути на файла\""
-
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"par_id3153952\n"
-"31\n"
-"help.text"
-msgid "' Rename in the same directory"
-msgstr "' Преименуване в същата директория"
+msgid "<emph>Keyword: </emph>Default variable type"
+msgstr "<emph>Ключова дума:</emph> Подразбиран тип данни"
-#: 03020411.xhp
+#: 03101600.xhp
msgctxt ""
-"03020411.xhp\n"
-"par_id3147426\n"
-"34\n"
+"03101600.xhp\n"
+"par_id3154686\n"
+"9\n"
"help.text"
-msgid "SetAttr( sFile, 0 ) 'Delete all attributes"
-msgstr "SetAttr(sFile, 0) 'Изтриваме всички атрибути"
+msgid "<emph>DefLng:</emph> Long"
+msgstr "<emph>DefLng:</emph> Long"
-#: 03020411.xhp
+#: 03101600.xhp
msgctxt ""
-"03020411.xhp\n"
-"par_id3148647\n"
-"35\n"
+"03101600.xhp\n"
+"hd_id3153192\n"
+"10\n"
"help.text"
-msgid "MsgBox sFile & Chr(13) & GetAttr( sFile ),0,\"New file attributes\""
-msgstr "MsgBox sFile & Chr(13) & GetAttr(sFile), 0, \"Нови атрибути на файла\""
+msgid "Example:"
+msgstr "Пример:"
-#: 03020411.xhp
+#: 03101600.xhp
msgctxt ""
-"03020411.xhp\n"
-"par_id3150092\n"
-"40\n"
+"03101600.xhp\n"
+"par_id3154124\n"
+"12\n"
"help.text"
-msgid "' Converts a system path in URL"
-msgstr "' Преобразува системен път в URL"
+msgid "' Prefix definitions for variable types:"
+msgstr "' Дефиниране с префикс за променливи от даден тип:"
-#: 03020411.xhp
+#: 03101600.xhp
msgctxt ""
-"03020411.xhp\n"
-"par_id3156276\n"
-"49\n"
+"03101600.xhp\n"
+"par_id3145273\n"
+"22\n"
"help.text"
-msgid "' the colon with DOS"
-msgstr "' Двоеточие в DOS"
+msgid "lCount=123456789 ' lCount is an implicit long integer variable"
+msgstr "lCount = 123456789 ' lCount е променлива с неявен тип Long Integer"
-#: 03050500.xhp
+#: 03101700.xhp
msgctxt ""
-"03050500.xhp\n"
+"03101700.xhp\n"
"tit\n"
"help.text"
-msgid "On Error GoTo ... Resume Statement [Runtime]"
-msgstr "Оператор On Error GoTo … Resume [динамичен]"
+msgid "DefObj Statement [Runtime]"
+msgstr "Оператор DefObj [динамичен]"
-#: 03050500.xhp
+#: 03101700.xhp
msgctxt ""
-"03050500.xhp\n"
-"bm_id3146795\n"
+"03101700.xhp\n"
+"bm_id3149811\n"
"help.text"
-msgid "<bookmark_value>Resume Next parameter</bookmark_value><bookmark_value>On Error GoTo ... Resume statement</bookmark_value>"
-msgstr "<bookmark_value>Resume Next, параметър</bookmark_value><bookmark_value>On Error GoTo ... Resume, оператор</bookmark_value>"
+msgid "<bookmark_value>DefObj statement</bookmark_value>"
+msgstr "<bookmark_value>DefObj, оператор</bookmark_value>"
-#: 03050500.xhp
+#: 03101700.xhp
msgctxt ""
-"03050500.xhp\n"
-"hd_id3146795\n"
+"03101700.xhp\n"
+"hd_id3149811\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03050500.xhp\" name=\"On Error GoTo ... Resume Statement [Runtime]\">On Error GoTo ... Resume Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03050500.xhp\" name=\"Оператор On Error GoTo … Resume [динамичен]\">Оператор On Error GoTo … Resume [динамичен]</link>"
+msgid "<link href=\"text/sbasic/shared/03101700.xhp\" name=\"DefObj Statement [Runtime]\">DefObj Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03101700.xhp\" name=\"Оператор DefObj [динамичен]\">Оператор DefObj [динамичен]</link>"
-#: 03050500.xhp
+#: 03101700.xhp
msgctxt ""
-"03050500.xhp\n"
-"par_id3150358\n"
+"03101700.xhp\n"
+"par_id3147573\n"
"2\n"
"help.text"
-msgid "Enables an error-handling routine after an error occurs, or resumes program execution."
-msgstr "Служи за задаване на подпрограма за обработка на грешки и продължаване на изпълнението на програмата."
+msgid "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified."
+msgstr "Операторът DefLng установява подразбиран тип данни според диапазон от букви в случай, че не е зададена ключова дума или знак за деклариране на тип."
-#: 03050500.xhp
+#: 03101700.xhp
msgctxt ""
-"03050500.xhp\n"
-"hd_id3151212\n"
+"03101700.xhp\n"
+"hd_id3150504\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03050500.xhp
+#: 03101700.xhp
msgctxt ""
-"03050500.xhp\n"
-"par_id3145173\n"
+"03101700.xhp\n"
+"par_id3147530\n"
"4\n"
"help.text"
-msgid "On {[Local] Error GoTo Labelname | GoTo 0 | Resume Next}"
-msgstr "On {[Local] Error GoTo Labelname | GoTo 0 | Resume Next}"
+msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
+msgstr "Defxxx Characterrange1[, Characterrange2[,...]]"
-#: 03050500.xhp
+#: 03101700.xhp
msgctxt ""
-"03050500.xhp\n"
-"hd_id3154125\n"
+"03101700.xhp\n"
+"hd_id3153896\n"
"5\n"
"help.text"
msgid "Parameters:"
msgstr "Параметри:"
-#: 03050500.xhp
+#: 03101700.xhp
msgctxt ""
-"03050500.xhp\n"
-"par_id3150869\n"
-"7\n"
+"03101700.xhp\n"
+"par_id3148552\n"
+"6\n"
"help.text"
-msgid "<emph>GoTo Labelname:</emph> If an error occurs, enables the error-handling routine that starts at the line \"Labelname\"."
-msgstr "<emph>GoTo Labelname:</emph> ако възникне грешка, управлението ще бъде предадено на подпрограмата за обработка на грешки, започваща от ред Labelname."
+msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set the default data type for."
+msgstr "<emph>Characterrange:</emph> букви, определящи диапазона от променливи, за които искате да зададете подразбиран тип данни."
-#: 03050500.xhp
+#: 03101700.xhp
msgctxt ""
-"03050500.xhp\n"
-"par_id3150439\n"
-"8\n"
+"03101700.xhp\n"
+"par_id3150358\n"
+"7\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 "<emph>Resume Next:</emph> ако възникне грешка, изпълнението на програмата продължава от реда след оператора, в който е възникнала грешката."
+msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
+msgstr "<emph>xxx:</emph> ключова дума, дефинираща подразбирания тип данни:"
-#: 03050500.xhp
+#: 03101700.xhp
msgctxt ""
-"03050500.xhp\n"
-"par_id3149482\n"
-"9\n"
+"03101700.xhp\n"
+"par_id3148798\n"
+"8\n"
"help.text"
-msgid "<emph>GoTo 0:</emph> Disables the error handler in the current procedure."
-msgstr "<emph>GoTo 0:</emph> забранява обработката на грешки в текущата процедура."
+msgid "<emph>Keyword: </emph>Default variable type"
+msgstr "<emph>Ключова дума:</emph> Подразбиран тип данни"
-#: 03050500.xhp
+#: 03101700.xhp
msgctxt ""
-"03050500.xhp\n"
-"par_id3149483\n"
+"03101700.xhp\n"
+"par_id3150769\n"
"9\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 "<emph>Local:</emph> Операторът „On error“ има глобален обхват и остава активен, докато не бъде отменен от друг оператор „On error“. „On Local error“ е локален за подпрограмата, в която е използван. Локалната обработка на грешки има предимство пред всякаква зададена преди това глобална настройка. При изход от подпрограмата локалната обработка на грешки се отменя автоматично и се възстановява предишната глобална настройка, ако има такава."
+msgid "<emph>DefObj:</emph> Object"
+msgstr "<emph>DefObj:</emph> Object"
-#: 03050500.xhp
+#: 03101700.xhp
msgctxt ""
-"03050500.xhp\n"
-"par_id3148619\n"
+"03101700.xhp\n"
+"hd_id3156212\n"
"10\n"
"help.text"
-msgid "The On Error GoTo statement is used to react to errors that occur in a macro."
-msgstr "Операторът On Error GoTo служи за обработка на грешките, които възникват в даден макрос."
-
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3146985\n"
-"11\n"
-"help.text"
msgid "Example:"
msgstr "Пример:"
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"par_id3153876\n"
-"52\n"
-"help.text"
-msgid "Print #iNumber, \"This is a line of text\""
-msgstr "Print #iNumber, \"Това е ред с текст\""
-
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"par_id3146916\n"
-"67\n"
-"help.text"
-msgid "MsgBox \"All files will be closed\",0,\"Error\""
-msgstr "MsgBox \"Всички файлове ще бъдат затворени\", 0, \"Грешка\""
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"tit\n"
-"help.text"
-msgid "$[officename] Basic Glossary"
-msgstr "Речник за $[officename] Basic"
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"hd_id3145068\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/00000002.xhp\" name=\"$[officename] Basic Glossary\">$[officename] Basic Glossary</link>"
-msgstr "<link href=\"text/sbasic/shared/00000002.xhp\" name=\"Речник за $[officename] Basic\">Речник за $[officename] Basic</link>"
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"par_id3150792\n"
-"2\n"
-"help.text"
-msgid "This glossary explains some technical terms that you may come across when working with $[officename] Basic."
-msgstr "Речникът пояснява някои технически термини, които можете да срещнете при работа с $[officename] Basic."
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"hd_id3155133\n"
-"7\n"
-"help.text"
-msgid "Decimal Point"
-msgstr "Десетична точка"
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"par_id3156443\n"
-"8\n"
-"help.text"
-msgid "When converting numbers, $[officename] Basic uses the locale settings of the system for determining the type of decimal and thousand separator."
-msgstr "При преобразуване на числа $[officename] Basic използва настройките за локал на системата, за да определи вида на разделителя на дробната част и на хилядите."
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"par_id3153092\n"
-"9\n"
-"help.text"
-msgid "The behavior has an effect on both the implicit conversion ( 1 + \"2.3\" = 3.3 ) as well as the runtime function <link href=\"text/sbasic/shared/03102700.xhp\" name=\"IsNumeric\">IsNumeric</link>."
-msgstr "Това влияе както върху неявното преобразуване ( 1 + \"2.3\" = 3.3 ), така и върху функцията <link href=\"text/sbasic/shared/03102700.xhp\" name=\"IsNumeric\">IsNumeric</link> по време на изпълнение."
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"hd_id3155854\n"
-"29\n"
-"help.text"
-msgid "Colors"
-msgstr "Цветове"
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"par_id3145366\n"
-"30\n"
-"help.text"
-msgid "In $[officename] Basic, colors are treated as long integer value. The return value of color queries is also always a long integer value. When defining properties, colors can be specified using their RGB code that is converted to a long integer value using the <link href=\"text/sbasic/shared/03010305.xhp\" name=\"RGB function\">RGB function</link>."
-msgstr "В $[officename] Basic цветовете се обработват като целочислени стойности. Стойността, съответстваща на цвят, винаги е дълго цяло число (long integer). При дефиниране на свойства цветовете могат да се задават чрез код RGB, който се преобразува в дълга целочислена стойност чрез <link href=\"text/sbasic/shared/03010305.xhp\" name=\"функция RGB\">функцията RGB</link>."
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"hd_id3146119\n"
-"32\n"
-"help.text"
-msgid "Measurement Units"
-msgstr "Мерни единици"
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"par_id3154013\n"
-"33\n"
-"help.text"
-msgid "In $[officename] Basic, a <emph>method parameter</emph> or a <emph>property</emph> expecting unit information can be specified either as integer or long integer expression without a unit, or as a character string containing a unit. If no unit is passed to the method the default unit defined for the active document type will be used. If the parameter is passed as a character string containing a measurement unit, the default setting will be ignored. The default measurement unit for a document type can be set under <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - (Document Type) - General</emph>."
-msgstr "В $[officename] Basic <emph>параметър на метод</emph> или <emph>свойство</emph>, приемащо информация в мерни единици, може да се зададе като израз от тип integer или long integer или като знаков низ, съдържащ и мерната единица. Ако не бъде подадена мерна единица, методът ще използва подразбираната мерна единица за типа на активния документ. Ако параметърът е знаков низ, съдържащ мерна единица, подразбираната настройка ще бъде пренебрегната. Подразбираната мерна единиц аза даден тип документи може да бъде зададена в <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Свойства</caseinline><defaultinline>Инструменти - Настройки</defaultinline></switchinline> - (вид документ) - Общи</emph>."
-
-#: 00000002.xhp
+#: 03101700.xhp
msgctxt ""
-"00000002.xhp\n"
-"bm_id3145801\n"
+"03101700.xhp\n"
+"par_id3153969\n"
+"12\n"
"help.text"
-msgid "<bookmark_value>twips; definition</bookmark_value>"
-msgstr "<bookmark_value>туипове; определение</bookmark_value>"
+msgid "REM Prefix definitions for variable types:"
+msgstr "REM Дефиниране с префикс за променливи от даден тип:"
-#: 00000002.xhp
+#: 03101700.xhp
msgctxt ""
-"00000002.xhp\n"
-"hd_id3145801\n"
-"5\n"
+"03101700.xhp\n"
+"par_id3156424\n"
+"13\n"
"help.text"
-msgid "Twips"
-msgstr "Туипове"
+msgid "DefBool b"
+msgstr "DefBool b"
-#: 00000002.xhp
+#: 03101700.xhp
msgctxt ""
-"00000002.xhp\n"
-"par_id3154731\n"
-"6\n"
+"03101700.xhp\n"
+"par_id3159254\n"
+"14\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 "Туип (twip) е независима от екрана мерна единица, чрез която се задават унифицирано позициите и размерите на екранните елементи върху всякакъв дисплей. Туипът е 1/1440 от инча или 1/20 от пункта. В един инч има 1440 туипа, а в един сантиметър – 567 туипа."
+msgid "DefDate t"
+msgstr "DefDate t"
-#: 00000002.xhp
+#: 03101700.xhp
msgctxt ""
-"00000002.xhp\n"
-"hd_id3153159\n"
-"106\n"
+"03101700.xhp\n"
+"par_id3150440\n"
+"15\n"
"help.text"
-msgid "URL Notation"
-msgstr "URL адреси"
+msgid "DefDbL d"
+msgstr "DefDbL d"
-#: 00000002.xhp
+#: 03101700.xhp
msgctxt ""
-"00000002.xhp\n"
-"par_id3153415\n"
-"108\n"
+"03101700.xhp\n"
+"par_id3161832\n"
+"16\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 "URL адресите (<emph>Uniform Resource Locators</emph>, унифицирани локатори на ресурси) служат за определяне на местоположението на ресурс, например файл във файлова система, обикновено при работа в мрежа. URL адресът се състои от спецификатор на протокол, спецификатор на хост и спецификатор на път:"
+msgid "DefInt i"
+msgstr "DefInt i"
-#: 00000002.xhp
+#: 03101700.xhp
msgctxt ""
-"00000002.xhp\n"
-"par_id3149121\n"
-"107\n"
+"03101700.xhp\n"
+"par_id3145365\n"
+"17\n"
"help.text"
-msgid "<emph>protocol</emph>://<emph>host.name</emph>/<emph>path/to/the/file.html</emph>"
-msgstr "<emph>протокол</emph>://<emph>име.на.хост</emph>/<emph>път/до/файл.html</emph>"
+msgid "DefLng l"
+msgstr "DefLng l"
-#: 00000002.xhp
+#: 03101700.xhp
msgctxt ""
-"00000002.xhp\n"
-"par_id3168612\n"
-"109\n"
+"03101700.xhp\n"
+"par_id3149481\n"
+"18\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 "Най-разпространената употреба на URL адреси е задаването на адреси на уебстраници в Интернет. Означението за протокол може да бъде например <emph>http</emph>, <emph>ftp</emph> или <emph>file</emph>. Спецификаторът на протокол <emph>file</emph> се използва при посочване на файл в локалната файлова система."
+msgid "DefObj o"
+msgstr "DefObj o"
-#: 00000002.xhp
+#: 03101700.xhp
msgctxt ""
-"00000002.xhp\n"
-"par_id3150324\n"
-"110\n"
+"03101700.xhp\n"
+"par_id3152886\n"
+"19\n"
"help.text"
-msgid "URL notation does not allow certain special characters to be used. These are either replaced by other characters or encoded. A slash (<emph>/</emph>) is used as a path separator. For example, a file referred to as <emph>C:\\My File.sxw</emph> on the local host in \"Windows notation\" becomes <emph>file:///C|/My%20File.sxw</emph> in URL notation."
-msgstr "Синтаксисът на URL не позволява използването на някои специални знаци. Те или се заместват с други, или се кодират. Наклонената черта (<emph>/</emph>) се използва като разделител в пътища. Например файлът, посочен като <emph>C:\\My File.sxw</emph> в локалния компютър чрез синтаксиса на Windows, се цитира като <emph>file:///C|/My%20File.sxw</emph> според синтаксиса на URL."
+msgid "DefVar v"
+msgstr "DefVar v"
-#: 03120315.xhp
+#: 03102000.xhp
msgctxt ""
-"03120315.xhp\n"
+"03102000.xhp\n"
"tit\n"
"help.text"
-msgid "Join Function [Runtime]"
-msgstr "Функция Join [динамична]"
+msgid "DefVar Statement [Runtime]"
+msgstr "Оператор DefVar [динамичен]"
-#: 03120315.xhp
+#: 03102000.xhp
msgctxt ""
-"03120315.xhp\n"
-"bm_id3149416\n"
+"03102000.xhp\n"
+"bm_id3143267\n"
"help.text"
-msgid "<bookmark_value>Join function</bookmark_value>"
-msgstr "<bookmark_value>Join, функция</bookmark_value>"
+msgid "<bookmark_value>DefVar statement</bookmark_value>"
+msgstr "<bookmark_value>DefVar, оператор</bookmark_value>"
-#: 03120315.xhp
+#: 03102000.xhp
msgctxt ""
-"03120315.xhp\n"
-"hd_id3149416\n"
+"03102000.xhp\n"
+"hd_id3143267\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120315.xhp\" name=\"Join Function [Runtime]\">Join Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120315.xhp\" name=\"Функция Join [динамична]\">Функция Join [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03102000.xhp\" name=\"DefVar Statement [Runtime]\">DefVar Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03102000.xhp\" name=\"Оператор DefVar [динамичен]\">Оператор DefVar [динамичен]</link>"
-#: 03120315.xhp
+#: 03102000.xhp
msgctxt ""
-"03120315.xhp\n"
-"par_id3149670\n"
+"03102000.xhp\n"
+"par_id3153825\n"
"2\n"
"help.text"
-msgid "Returns a string from a number of substrings in a string array."
-msgstr "Връща низ, образуван от подредени в масив поднизове."
+msgid "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified."
+msgstr "Операторът DefLng установява подразбиран тип данни според диапазон от букви в случай, че не е зададена ключова дума или знак за деклариране на тип."
-#: 03120315.xhp
+#: 03102000.xhp
msgctxt ""
-"03120315.xhp\n"
-"hd_id3159414\n"
+"03102000.xhp\n"
+"hd_id3154143\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03120315.xhp
+#: 03102000.xhp
msgctxt ""
-"03120315.xhp\n"
-"par_id3156344\n"
+"03102000.xhp\n"
+"par_id3149514\n"
"4\n"
"help.text"
-msgid "Join (Text As String Array, delimiter)"
-msgstr "Join (Text As String Array, delimiter)"
+msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
+msgstr "Defxxx Characterrange1[, Characterrange2[,...]]"
-#: 03120315.xhp
+#: 03102000.xhp
msgctxt ""
-"03120315.xhp\n"
-"hd_id3150400\n"
+"03102000.xhp\n"
+"hd_id3156024\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Връщана стойност:"
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 03120315.xhp
+#: 03102000.xhp
msgctxt ""
-"03120315.xhp\n"
-"par_id3150359\n"
+"03102000.xhp\n"
+"par_id3147560\n"
"6\n"
"help.text"
-msgid "String"
-msgstr "String"
+msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set the default data type for."
+msgstr "<emph>Characterrange:</emph> букви, определящи диапазона от променливи, за които искате да зададете подразбиран тип данни."
-#: 03120315.xhp
+#: 03102000.xhp
msgctxt ""
-"03120315.xhp\n"
-"hd_id3148798\n"
+"03102000.xhp\n"
+"par_id3148552\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
+msgstr "<emph>xxx:</emph> ключова дума, дефинираща подразбирания тип данни:"
-#: 03120315.xhp
+#: 03102000.xhp
msgctxt ""
-"03120315.xhp\n"
-"par_id3145171\n"
+"03102000.xhp\n"
+"par_id3153524\n"
"8\n"
"help.text"
-msgid "<emph>Text:</emph> A string array."
-msgstr "<emph>Text:</emph> масив от низове."
+msgid "<emph>Keyword: </emph>Default variable type"
+msgstr "<emph>Ключова дума:</emph> Подразбиран тип данни"
-#: 03120315.xhp
+#: 03102000.xhp
msgctxt ""
-"03120315.xhp\n"
-"par_id3154908\n"
+"03102000.xhp\n"
+"par_id3150767\n"
"9\n"
"help.text"
-msgid "<emph>delimiter (optional):</emph> A string character that is used to separate the substrings in the resulting string. The default delimiter is the space character. If delimiter is a string of length zero \"\", the substrings are joined without separator."
-msgstr "<emph>delimiter (незадължителен):</emph> низ, с който се разделят поднизовете в резултата. Подразбира се знакът интервал. Ако разделителят е низ с дължина нула (\"\"), поднизовете се долепват без разделител."
+msgid "<emph>DefVar:</emph> Variant"
+msgstr "<emph>DefVar:</emph> Variant"
-#: 03120315.xhp
+#: 03102000.xhp
msgctxt ""
-"03120315.xhp\n"
-"hd_id3154218\n"
+"03102000.xhp\n"
+"hd_id3151041\n"
"10\n"
"help.text"
msgid "Example:"
msgstr "Пример:"
-#: 03030102.xhp
-msgctxt ""
-"03030102.xhp\n"
-"tit\n"
-"help.text"
-msgid "DateValue Function [Runtime]"
-msgstr "Функция DateValue [динамична]"
-
-#: 03030102.xhp
-msgctxt ""
-"03030102.xhp\n"
-"bm_id3156344\n"
-"help.text"
-msgid "<bookmark_value>DateValue function</bookmark_value>"
-msgstr "<bookmark_value>DateValue, функция</bookmark_value>"
-
-#: 03030102.xhp
-msgctxt ""
-"03030102.xhp\n"
-"hd_id3156344\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03030102.xhp\" name=\"DateValue Function [Runtime]\">DateValue Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03030102.xhp\" name=\"Функция DateValue [динамична]\">Функция DateValue [динамична]</link>"
-
-#: 03030102.xhp
-msgctxt ""
-"03030102.xhp\n"
-"par_id3150542\n"
-"2\n"
-"help.text"
-msgid "Returns a date value from a date string. The date string is a complete date in a single numeric value. You can also use this serial number to determine the difference between two dates."
-msgstr "Връща стойност – дата по зададен низ с дата. Низът с датата се преобразува до една числова стойност, която впоследствие можете да използвате за намиране на разликата между две дати."
-
-#: 03030102.xhp
-msgctxt ""
-"03030102.xhp\n"
-"hd_id3148799\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
-
-#: 03030102.xhp
-msgctxt ""
-"03030102.xhp\n"
-"par_id3154910\n"
-"4\n"
-"help.text"
-msgid "DateValue [(date)]"
-msgstr "DateValue [(Date)]"
-
-#: 03030102.xhp
-msgctxt ""
-"03030102.xhp\n"
-"hd_id3150870\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Връщана стойност:"
-
-#: 03030102.xhp
-msgctxt ""
-"03030102.xhp\n"
-"par_id3153194\n"
-"6\n"
-"help.text"
-msgid "Date"
-msgstr "Дата"
-
-#: 03030102.xhp
+#: 03102000.xhp
msgctxt ""
-"03030102.xhp\n"
-"hd_id3153969\n"
-"7\n"
+"03102000.xhp\n"
+"par_id3156214\n"
+"11\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "' Prefix definitions for variable types:"
+msgstr "' Дефиниране с префикс за променливи от даден тип:"
-#: 03030102.xhp
+#: 03102000.xhp
msgctxt ""
-"03030102.xhp\n"
-"par_id3153770\n"
-"8\n"
+"03102000.xhp\n"
+"par_id3154012\n"
+"21\n"
"help.text"
-msgid "<emph>Date:</emph> String expression that contains the date that you want to calculate. The date can be specified in almost any format."
-msgstr "<emph>Date:</emph> низов израз със стойност датата, която желаете да се преобразува. Тя може да бъде зададена в почти всякакъв формат."
+msgid "vDiv=99 ' vDiv is an implicit variant"
+msgstr "vDiv = 99 ' vDiv е променлива с неявен тип Variant"
-#: 03030102.xhp
+#: 03102000.xhp
msgctxt ""
-"03030102.xhp\n"
-"par_id3153189\n"
+"03102000.xhp\n"
+"par_id3146121\n"
"22\n"
"help.text"
-msgid "You can use this function to convert a date that occurs between December 1, 1582 and December 31, 9999 into a single integer value. You can then use this value to calculate the difference between two dates. If the date argument lies outside the acceptable range, $[officename] Basic returns an error message."
-msgstr "С тази функция могат да се преобразуват дати между 1 декември 1582 г. и 31 декември 9999 г. в единични целочислени стойности. Чрез тях след това можете да пресметнете разликата между две дати. Ако аргументът – дата е извън допустимия обхват, $[officename] Basic показва съобщение за грешка."
-
-#: 03030102.xhp
-msgctxt ""
-"03030102.xhp\n"
-"par_id3146974\n"
-"23\n"
-"help.text"
-msgid "In contrast to the DateSerial function that passes years, months, and days as separate numeric values, the DateValue function passes the date using the format \"month.[,]day.[,]year\"."
-msgstr "За разлика от функцията DateSerial, която очаква година, месец и ден като отделни числови стойности, DateValue приема дата във формат \"месец.[,]ден.[,]година\"."
-
-#: 03030102.xhp
-msgctxt ""
-"03030102.xhp\n"
-"hd_id3153142\n"
-"24\n"
-"help.text"
-msgid "Example:"
-msgstr "Пример:"
-
-#: 03120300.xhp
-msgctxt ""
-"03120300.xhp\n"
-"tit\n"
-"help.text"
-msgid "Editing String Contents"
-msgstr "Редактиране на съдържанието на низове"
-
-#: 03120300.xhp
-msgctxt ""
-"03120300.xhp\n"
-"bm_id7499008\n"
-"help.text"
-msgid "<bookmark_value>ampersand symbol in StarBasic</bookmark_value>"
-msgstr "<bookmark_value>амперсанд в StarBasic</bookmark_value>"
-
-#: 03120300.xhp
-msgctxt ""
-"03120300.xhp\n"
-"hd_id3153894\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03120300.xhp\" name=\"Editing String Contents\">Editing String Contents</link>"
-msgstr "<link href=\"text/sbasic/shared/03120300.xhp\" name=\"Редактиране на съдържанието на низове\">Редактиране на съдържанието на низове</link>"
-
-#: 03120300.xhp
-msgctxt ""
-"03120300.xhp\n"
-"par_id3149178\n"
-"2\n"
-"help.text"
-msgid "The following functions edit, format, and align the contents of strings. Use the & operator to concatenate strings."
-msgstr "Следващите функции служат за редактиране, форматиране и подравняване на съдържанието на низове. За слепване (конкатениране) на низове използвайте операцията &."
-
-#: 03132400.xhp
-msgctxt ""
-"03132400.xhp\n"
-"tit\n"
-"help.text"
-msgid "CreateObject Function [Runtime]"
-msgstr "CreateObject Function [Runtime]"
-
-#: 03132400.xhp
-msgctxt ""
-"03132400.xhp\n"
-"bm_id659810\n"
-"help.text"
-msgid "<bookmark_value>CreateObject function</bookmark_value>"
-msgstr "<bookmark_value>CreateObject, функция</bookmark_value>"
-
-#: 03132400.xhp
-msgctxt ""
-"03132400.xhp\n"
-"par_idN10580\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03132400.xhp\">CreateObject Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03132400.xhp\">Функция CreateObject [динамична]</link>"
-
-#: 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 "<ahelp hid=\".\">Създава обект на UNO. В Windows може да създава и OLE обекти.</ahelp>"
-
-#: 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 "Този метод създава екземпляри на класа, подаден като параметър."
-
-#: 03132400.xhp
-msgctxt ""
-"03132400.xhp\n"
-"par_idN105A2\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
-
-#: 03132400.xhp
-msgctxt ""
-"03132400.xhp\n"
-"par_idN105A6\n"
-"help.text"
-msgid "oObj = CreateObject( type )"
-msgstr "oObj = CreateObject(тип)"
-
-#: 03132400.xhp
-msgctxt ""
-"03132400.xhp\n"
-"par_idN105A9\n"
-"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "vDiv=\"Hello world\""
+msgstr "vDiv = \"Здравей, свят!\""
-#: 03020104.xhp
+#: 03102100.xhp
msgctxt ""
-"03020104.xhp\n"
+"03102100.xhp\n"
"tit\n"
"help.text"
-msgid "Reset Statement [Runtime]"
-msgstr "Оператор Reset [динамичен]"
+msgid "Dim Statement [Runtime]"
+msgstr "Оператор Dim [динамичен]"
-#: 03020104.xhp
+#: 03102100.xhp
msgctxt ""
-"03020104.xhp\n"
-"bm_id3154141\n"
+"03102100.xhp\n"
+"bm_id3149812\n"
"help.text"
-msgid "<bookmark_value>Reset statement</bookmark_value>"
-msgstr "<bookmark_value>Reset, оператор</bookmark_value>"
+msgid "<bookmark_value>Dim statement</bookmark_value><bookmark_value>arrays; dimensioning</bookmark_value><bookmark_value>dimensioning arrays</bookmark_value>"
+msgstr "<bookmark_value>Dim, оператор</bookmark_value><bookmark_value>масиви; обявяване</bookmark_value><bookmark_value>обявяване на масиви</bookmark_value><bookmark_value>деклариране на масиви</bookmark_value>"
-#: 03020104.xhp
+#: 03102100.xhp
msgctxt ""
-"03020104.xhp\n"
-"hd_id3154141\n"
+"03102100.xhp\n"
+"hd_id3149812\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020104.xhp\">Reset Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03020104.xhp\">Оператор Reset [динамичен]</link>"
+msgid "<link href=\"text/sbasic/shared/03102100.xhp\" name=\"Dim Statement [Runtime]\">Dim Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03102100.xhp\" name=\"Оператор Dim [динамичен]\">Оператор Dim [динамичен]</link>"
-#: 03020104.xhp
+#: 03102100.xhp
msgctxt ""
-"03020104.xhp\n"
-"par_id3156423\n"
+"03102100.xhp\n"
+"par_id3143271\n"
"2\n"
"help.text"
-msgid "Closes all open files and writes the contents of all file buffers to the harddisk."
-msgstr "Затваря всички отворени файлове и записва съдържанията на всички файлови буфери върху твърдия диск."
+msgid "Declares a variable or an array."
+msgstr "Декларира променлива или масив."
-#: 03020104.xhp
+#: 03102100.xhp
msgctxt ""
-"03020104.xhp\n"
-"hd_id3154124\n"
+"03102100.xhp\n"
+"par_id3154686\n"
"3\n"
"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
-
-#: 03020104.xhp
-msgctxt ""
-"03020104.xhp\n"
-"hd_id3161831\n"
-"5\n"
-"help.text"
-msgid "Example:"
-msgstr "Пример:"
-
-#: 03020104.xhp
-msgctxt ""
-"03020104.xhp\n"
-"par_id3148455\n"
-"47\n"
-"help.text"
-msgid "Print #iNumber, \"This is a new line of text\""
-msgstr "Print #iNumber, \"Това е нов ред с текст\""
-
-#: 03020104.xhp
-msgctxt ""
-"03020104.xhp\n"
-"par_id3163805\n"
-"62\n"
-"help.text"
-msgid "MsgBox \"All files will be closed\",0,\"Error\""
-msgstr "MsgBox \"Всички файлове ще бъдат затворени\", 0, \"Грешка\""
-
-#: 03010303.xhp
-msgctxt ""
-"03010303.xhp\n"
-"tit\n"
-"help.text"
-msgid "Red Function [Runtime]"
-msgstr "Функция Red [динамична]"
-
-#: 03010303.xhp
-msgctxt ""
-"03010303.xhp\n"
-"bm_id3148947\n"
-"help.text"
-msgid "<bookmark_value>Red function</bookmark_value>"
-msgstr "<bookmark_value>Red, функция</bookmark_value>"
-
-#: 03010303.xhp
-msgctxt ""
-"03010303.xhp\n"
-"hd_id3148947\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03010303.xhp\" name=\"Red Function [Runtime]\">Red Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03010303.xhp\" name=\"Функция Red [динамична]\">Функция Red [динамична]</link>"
+msgid "If the variables are separated by commas (for example, DIM sPar1, sPar2, sPar3 AS STRING), only Variant variables can be defined. Use a separate definition line for each variable."
+msgstr "Ако променливите са разделени със запетаи (например Dim sPar1, sPar2, sPar3 As String), могат да се дефинират само променливи от тип Variant. Използвайте отделен ред с дефиниция за всяка променлива."
-#: 03010303.xhp
+#: 03102100.xhp
msgctxt ""
-"03010303.xhp\n"
-"par_id3149656\n"
-"2\n"
+"03102100.xhp\n"
+"par_id3152576\n"
+"7\n"
"help.text"
-msgid "Returns the Red component of the specified color code."
-msgstr "Връща червения компонент от зададения код на цвят."
+msgid "Dim declares local variables within subroutines. Global variables are declared with the PUBLIC or the PRIVATE statement."
+msgstr "Dim декларира локални променливи в подпрограми. Глобални променливи се декларират с оператора Public или Private."
-#: 03010303.xhp
+#: 03102100.xhp
msgctxt ""
-"03010303.xhp\n"
-"hd_id3148799\n"
-"3\n"
+"03102100.xhp\n"
+"hd_id3156443\n"
+"8\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03010303.xhp
-msgctxt ""
-"03010303.xhp\n"
-"par_id3150448\n"
-"4\n"
-"help.text"
-msgid "Red (ColorNumber As Long)"
-msgstr "Red (Color As Long)"
-
-#: 03010303.xhp
-msgctxt ""
-"03010303.xhp\n"
-"hd_id3151042\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Връщана стойност:"
-
-#: 03010303.xhp
+#: 03102100.xhp
msgctxt ""
-"03010303.xhp\n"
-"par_id3145173\n"
-"6\n"
+"03102100.xhp\n"
+"par_id3149412\n"
+"9\n"
"help.text"
-msgid "Integer"
-msgstr "Integer"
+msgid "[ReDim]Dim VarName [(start To end)] [As VarType][, VarName2 [(start To end)] [As VarType][,...]]"
+msgstr "[ReDim]Dim VarName [(start To end)] [As VarType][, VarName2 [(start To end)] [As VarType][,...]]"
-#: 03010303.xhp
+#: 03102100.xhp
msgctxt ""
-"03010303.xhp\n"
-"hd_id3154685\n"
-"7\n"
+"03102100.xhp\n"
+"hd_id3147397\n"
+"10\n"
"help.text"
-msgid "Parameter:"
-msgstr "Параметър:"
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 03010303.xhp
+#: 03102100.xhp
msgctxt ""
-"03010303.xhp\n"
-"par_id3150440\n"
-"8\n"
+"03102100.xhp\n"
+"par_id3154730\n"
+"11\n"
"help.text"
-msgid "<emph>ColorNumber</emph>: Long integer expression that specifies any <link href=\"text/sbasic/shared/00000003.xhp#farbcodes\" name=\"color code\">color code</link> for which to return the Red component."
-msgstr "<emph>Color</emph>: израз от тип Long integer, задаващ <link href=\"text/sbasic/shared/00000003.xhp#farbcodes\" name=\"код на цвят\">код на цвят</link>, за който да се намери червеният компонент."
+msgid "<emph>VarName:</emph> Any variable or array name."
+msgstr "<emph>VarName:</emph> име на променилива или масив."
-#: 03010303.xhp
+#: 03102100.xhp
msgctxt ""
-"03010303.xhp\n"
-"hd_id3148575\n"
-"9\n"
+"03102100.xhp\n"
+"par_id3147125\n"
+"12\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "<emph>Start, End:</emph> Numerical values or constants that define the number of elements (NumberElements=(end-start)+1) and the index range."
+msgstr "<emph>Start, End:</emph> числови стойности или константи, задаващи броя елементи ((End - Start) + 1) и диапазона за индексиране."
-#: 03010303.xhp
+#: 03102100.xhp
msgctxt ""
-"03010303.xhp\n"
-"par_id3147435\n"
+"03102100.xhp\n"
+"par_id3153877\n"
"13\n"
"help.text"
-msgid "MsgBox \"The color \" & lVar & \" consists of:\" & Chr(13) &_"
-msgstr "MsgBox \"Цветът \" & lVar & \" съдържа:\" & Chr(13) &_"
+msgid "Start and End can be numerical expressions if ReDim is applied at the procedure level."
+msgstr "Start и End могат да са числови изрази, ако бъде използван ReDim на ниво процедура."
-#: 03010303.xhp
+#: 03102100.xhp
msgctxt ""
-"03010303.xhp\n"
-"par_id3155306\n"
+"03102100.xhp\n"
+"par_id3153510\n"
"14\n"
"help.text"
-msgid "\"red= \" & red(lVar) & Chr(13)&_"
-msgstr "\"червено= \" & Red(lVar) & Chr(13)&_"
+msgid "<emph>VarType:</emph> Key word that declares the data type of a variable."
+msgstr "<emph>VarType:</emph> ключова дума, определяща типа данни на променливата."
-#: 03010303.xhp
+#: 03102100.xhp
msgctxt ""
-"03010303.xhp\n"
-"par_id3149262\n"
+"03102100.xhp\n"
+"par_id3154015\n"
"15\n"
"help.text"
-msgid "\"green= \" & green(lVar) & Chr(13)&_"
-msgstr "\"зелено= \" & Green(lVar) & Chr(13)&_"
+msgid "<emph>Keyword:</emph> Variable type"
+msgstr "<emph>Ключова дума:</emph> Тип на променливата"
-#: 03010303.xhp
+#: 03102100.xhp
msgctxt ""
-"03010303.xhp\n"
-"par_id3147397\n"
+"03102100.xhp\n"
+"par_id3153949\n"
"16\n"
"help.text"
-msgid "\"blue= \" & blue(lVar) & Chr(13) , 64,\"colors\""
-msgstr "\"синьо= \" & Blue(lVar) & Chr(13), 64, \"Цветове\""
-
-#: 03120314.xhp
-msgctxt ""
-"03120314.xhp\n"
-"tit\n"
-"help.text"
-msgid "Split Function [Runtime]"
-msgstr "Функция Split [динамична]"
-
-#: 03120314.xhp
-msgctxt ""
-"03120314.xhp\n"
-"bm_id3156027\n"
-"help.text"
-msgid "<bookmark_value>Split function</bookmark_value>"
-msgstr "<bookmark_value>Split, функция</bookmark_value>"
-
-#: 03120314.xhp
-msgctxt ""
-"03120314.xhp\n"
-"hd_id3156027\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03120314.xhp\" name=\"Split Function [Runtime]\">Split Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120314.xhp\" name=\"Функция Split [динамична]\">Функция Split [динамична]</link>"
-
-#: 03120314.xhp
-msgctxt ""
-"03120314.xhp\n"
-"par_id3155805\n"
-"2\n"
-"help.text"
-msgid "Returns an array of substrings from a string expression."
-msgstr "Връща масив от поднизове на даден низ."
-
-#: 03120314.xhp
-msgctxt ""
-"03120314.xhp\n"
-"hd_id3149177\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
-
-#: 03120314.xhp
-msgctxt ""
-"03120314.xhp\n"
-"par_id3153824\n"
-"4\n"
-"help.text"
-msgid "Split (Text As String, delimiter, number)"
-msgstr "Split (Text As String, delimiter, number)"
+msgid "<emph>Bool:</emph> Boolean variable (True, False)"
+msgstr "<emph>Bool:</emph> булева променлива (True, False)"
-#: 03120314.xhp
+#: 03102100.xhp
msgctxt ""
-"03120314.xhp\n"
-"hd_id3149763\n"
-"5\n"
+"03102100.xhp\n"
+"par_id3156275\n"
+"17\n"
"help.text"
-msgid "Return value:"
-msgstr "Връщана стойност:"
+msgid "<emph>Currency:</emph> Currency-Variable (Currency with 4 Decimal places)"
+msgstr "<emph>Currency:</emph> променлива за валута (с 4 дробни разреда)"
-#: 03120314.xhp
+#: 03102100.xhp
msgctxt ""
-"03120314.xhp\n"
-"par_id3154285\n"
-"6\n"
+"03102100.xhp\n"
+"par_id3156057\n"
+"18\n"
"help.text"
-msgid "String"
-msgstr "String"
+msgid "<emph>Date:</emph> Date variable"
+msgstr "<emph>Date:</emph> променлива за дата"
-#: 03120314.xhp
+#: 03102100.xhp
msgctxt ""
-"03120314.xhp\n"
-"hd_id3145315\n"
-"7\n"
+"03102100.xhp\n"
+"par_id3148405\n"
+"19\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "<emph>Double:</emph> Double-precision floating-point variable (1,79769313486232 x 10E308 - 4,94065645841247 x 10E-324)"
+msgstr "<emph>Double:</emph> променлива с плаваща запетая с двойна точност (1,79769313486232.10^308…4,94065645841247.10^-324)"
-#: 03120314.xhp
+#: 03102100.xhp
msgctxt ""
-"03120314.xhp\n"
-"par_id3156023\n"
-"8\n"
+"03102100.xhp\n"
+"par_id3148916\n"
+"20\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression."
-msgstr "<emph>Text:</emph> израз със стойност низ."
+msgid "<emph>Integer:</emph> Integer variable (-32768 - 32767)"
+msgstr "<emph>Integer:</emph> целочислена променлива (-32768…32767)"
-#: 03120314.xhp
+#: 03102100.xhp
msgctxt ""
-"03120314.xhp\n"
-"par_id3147560\n"
-"9\n"
+"03102100.xhp\n"
+"par_id3150045\n"
+"21\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 "<emph>delimiter (незадължителен):</emph> низ от един или повече знака, който се използва за разделител в текста. Подразбира се знакът интервал."
+msgid "<emph>Long:</emph> Long integer variable (-2.147.483.648 - 2.147.483.647)"
+msgstr "<emph>Long:</emph> дълга целочислена променлива (-2147483648…2147483647)"
-#: 03120314.xhp
+#: 03102100.xhp
msgctxt ""
-"03120314.xhp\n"
-"par_id3145069\n"
-"12\n"
+"03102100.xhp\n"
+"par_id3149255\n"
+"22\n"
"help.text"
-msgid "<emph>number (optional):</emph> The number of substrings that you want to return."
-msgstr "<emph>number (незадължителен):</emph> броят поднизове, които да бъдат върнати."
+msgid "<emph>Object:</emph> Object variable (Note: this variable can only subsequently be defined with Set!)"
+msgstr "<emph>Object:</emph> обектна променлива (Бележка: тази променлива впоследствие може да бъде дефинирана само със Set!)"
-#: 03120314.xhp
+#: 03102100.xhp
msgctxt ""
-"03120314.xhp\n"
-"hd_id3150398\n"
-"10\n"
+"03102100.xhp\n"
+"par_id3155937\n"
+"23\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "<emph>Single:</emph> Single-precision floating-point variable (3,402823 x 10E38 - 1,401298 x 10E-45)."
+msgstr "<emph>Single:</emph> променлива с плаваща запетая с единична точност (3,402823.10^38…1,401298.10^-45)."
-#: 03020202.xhp
+#: 03102100.xhp
msgctxt ""
-"03020202.xhp\n"
-"tit\n"
+"03102100.xhp\n"
+"par_id3151251\n"
+"24\n"
"help.text"
-msgid "Input# Statement [Runtime]"
-msgstr "Оператор Input# [динамичен]"
+msgid "<emph>String:</emph> String variable consisting of a maximum of 64,000 ASCII characters."
+msgstr "<emph>String:</emph> низова променлива, съдържаща най-много 64000 знаква в код ASCII."
-#: 03020202.xhp
+#: 03102100.xhp
msgctxt ""
-"03020202.xhp\n"
-"bm_id3154908\n"
+"03102100.xhp\n"
+"par_id3154704\n"
+"25\n"
"help.text"
-msgid "<bookmark_value>Input statement</bookmark_value>"
-msgstr "<bookmark_value>Input, оператор</bookmark_value>"
+msgid "<emph>[Variant]:</emph> Variant variable type (contains all types, specified by definition). If a key word is not specified, variables are automatically defined as Variant Type, unless a statement from DefBool to DefVar is used."
+msgstr "<emph>[Variant]:</emph> вариантна променлива (може да съдържа всякакъв тип данни, зададен чрез присвояване). Ако не е зададена ключова дума, променливите автоматично се дефинират като тип Variant, освен ако е използван оператор от типа на DefBool и DefVar."
-#: 03020202.xhp
+#: 03102100.xhp
msgctxt ""
-"03020202.xhp\n"
-"hd_id3154908\n"
-"1\n"
+"03102100.xhp\n"
+"par_id3146316\n"
+"26\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement [Runtime]\">Input# Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03020202.xhp\" name=\"Оператор Input# [динамичен]\">Оператор Input# [динамичен]</link>"
+msgid "In $[officename] Basic, you do not need to declare variables explicitly. However, you need to declare an array before you can use them. You can declare a variable with the Dim statement, using commas to separate multiple declarations. To declare a variable type, enter a type-declaration character following the name or use a corresponding key word."
+msgstr "В $[officename] Basic не е необходимо да обявявате променливите явно. Масивите обаче трябва да бъдат обявени преди използването им. Можете да обявите променлива с оператора Dim, използвайки запетаи, за да разделите няколко декларации. За да декларирате типа на променлива, въведете знак за деклариране на тип след името или използвайте съответната ключова дума."
-#: 03020202.xhp
+#: 03102100.xhp
msgctxt ""
-"03020202.xhp\n"
-"par_id3156424\n"
-"2\n"
+"03102100.xhp\n"
+"par_id3149924\n"
+"27\n"
"help.text"
-msgid "Reads data from an open sequential file."
-msgstr "Чете данни от отворен файл с последователен достъп."
+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 "$[officename] Basic поддържа едномерни и многомерни масиви, дефинирани като специален вид променливи. Масивите са подходящи за работа със списъци или таблици в програмите. Предимството им е, че отделните елементи се адресират чрез индекси, които могат да бъдат задавани като числови изрази или променливи."
-#: 03020202.xhp
+#: 03102100.xhp
msgctxt ""
-"03020202.xhp\n"
-"hd_id3125863\n"
-"3\n"
+"03102100.xhp\n"
+"par_id3148488\n"
+"28\n"
"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
+msgid "Arrays are declared with the Dim statement. There are two methods to define the index range:"
+msgstr "Масивите се обявяват с оператора Dim. Има два начина за задаване на диапазона за индексиране:"
-#: 03020202.xhp
+#: 03102100.xhp
msgctxt ""
-"03020202.xhp\n"
-"par_id3150440\n"
-"4\n"
+"03102100.xhp\n"
+"par_id3154662\n"
+"29\n"
"help.text"
-msgid "Input #FileNumber As Integer; var1[, var2[, var3[,...]]]"
-msgstr "Input #FileNumber As Integer; var1[, var2[, var3[,...]]]"
+msgid "DIM text(20) as String REM 21 elements numbered from 0 to 20"
+msgstr "Dim text(20) As String REM 21 елемента с номера от 0 до 20"
-#: 03020202.xhp
+#: 03102100.xhp
msgctxt ""
-"03020202.xhp\n"
-"hd_id3146121\n"
-"5\n"
+"03102100.xhp\n"
+"par_id3155604\n"
+"30\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "DIM text(5 to 25) as String REM 21 elements numbered from 5 to 25"
+msgstr "Dim text(5 To 25) As String REM 21 елемента с номера от 5 до 25"
-#: 03020202.xhp
+#: 03102100.xhp
msgctxt ""
-"03020202.xhp\n"
-"par_id3145749\n"
-"6\n"
+"03102100.xhp\n"
+"par_id3151274\n"
+"31\n"
"help.text"
-msgid "<emph>FileNumber:</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 "<emph>FileNumber:</emph> номерът на файла, съдържащ данните, които искате да бъдат прочетени. Файлът трябва да е отворен с оператора Open и ключовата дума INPUT."
+msgid "DIM text(-15 to 5) as String REM 21 elements (including 0)"
+msgstr "Dim text(-15 To 5) As String REM 21 елемента (включително 0)"
-#: 03020202.xhp
+#: 03102100.xhp
msgctxt ""
-"03020202.xhp\n"
-"par_id3150011\n"
-"7\n"
+"03102100.xhp\n"
+"par_id3152774\n"
+"32\n"
"help.text"
-msgid "<emph>var:</emph> A numeric or string variable that you assign the values read from the opened file to."
-msgstr "<emph>var:</emph> числова или низова променлива, на която се присвояват прочетените от файла стойности."
+msgid "REM numbered from -15 to 5"
+msgstr "REM с номера от -15 до 5"
-#: 03020202.xhp
+#: 03102100.xhp
msgctxt ""
-"03020202.xhp\n"
-"par_id3159153\n"
-"8\n"
+"03102100.xhp\n"
+"par_id3150829\n"
+"33\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 "Операторът <emph>Input#</emph> чете числови стойности или низове от отворен файл и присвоява данните на една или няколко променливи. Числовите променливи се четат до срещане на знак за връщане на каретката (Asc=13), нов ред (Asc=10), интервал или запетая. Низовите променливи се четат до първия знак за връщане на каретката (Asc=13), нов ред (Asc=10) или запетая."
+msgid "Two-dimensional data field"
+msgstr "Двуизмерен масив"
-#: 03020202.xhp
+#: 03102100.xhp
msgctxt ""
-"03020202.xhp\n"
-"par_id3146984\n"
-"9\n"
+"03102100.xhp\n"
+"par_id3149529\n"
+"34\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 "Данните и типовете им в отворения файл трябва да следват в същия ред като променливите, подадени като параметър „var“. Ако присвоите нечислова стойност на числова променлива, „var“ получава стойност 0."
+msgid "DIM text(20,2) as String REM 63 elements; form 0 to 20 level 1, from 0 to 20 level 2 and from 0 to 20 level 3."
+msgstr "Dim text(20, 2) As String REM 63 елемента; от 0 до 20 на ниво 1, от 0 до 20 на ниво 2 и от 0 до 20 на ниво 3."
-#: 03020202.xhp
+#: 03102100.xhp
msgctxt ""
-"03020202.xhp\n"
-"par_id3156442\n"
-"10\n"
+"03102100.xhp\n"
+"par_id3159239\n"
+"35\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 "Записи, разделени със запетая, не могат да бъдат присвоени на числова променлива. Кавичките (\") във файла се пропускат. Ако искате тези знаци да бъдат прочетени от файла, използвайте оператора <emph>Line Input#</emph>, за да четете ред по ред от чисти текстови файлове (файлове, съдържащи само печатаеми знаци)."
+msgid "You can declare an array types as dynamic if a ReDim statement defines the number of dimensions in the subroutine or the function that contains the array. Generally, you can only define an array dimension once, and you cannot modify it. Within a subroutine, you can declare an array with ReDim. You can only define dimensions with numeric expressions. This ensures that the fields are only as large as necessary."
+msgstr "Можете да декларирате масив като динамичен, ако операторът ReDim е използван в подпрограмата, съдържаща масива, за да се зададе броят измерения. По правило размерността на масива се декларира само веднъж и не можете да я променяте. В подпрограма можете да декларирате масив с ReDim. Размерностите се задават само с числови изрази. По този начин полетата винаги са с минималния необходим размер."
-#: 03020202.xhp
+#: 03102100.xhp
msgctxt ""
-"03020202.xhp\n"
-"par_id3147349\n"
-"11\n"
+"03102100.xhp\n"
+"hd_id3150344\n"
+"36\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 "Ако по време на четенето на елемент от данните бъде достигнат краят на файла, възниква грешка и процесът се прекратява."
+msgid "Example:"
+msgstr "Пример:"
-#: 03020202.xhp
+#: 03102100.xhp
msgctxt ""
-"03020202.xhp\n"
-"hd_id3152578\n"
-"12\n"
+"03102100.xhp\n"
+"par_id3154657\n"
+"40\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "sVar = \"Office\""
+msgstr "sVar = \"Офис\""
-#: 03020202.xhp
+#: 03102100.xhp
msgctxt ""
-"03020202.xhp\n"
-"par_id4144765\n"
+"03102100.xhp\n"
+"par_id3149036\n"
+"44\n"
"help.text"
-msgid "' Write data ( which we will read later with Input ) to file"
-msgstr "' Записваме данни във файл (които после ще прочетем с Input)"
+msgid "' Two-dimensional data field"
+msgstr "' Двуизмерна матрица от данни"
-#: 03020202.xhp
+#: 03102100.xhp
msgctxt ""
-"03020202.xhp\n"
-"par_id4144766\n"
+"03102100.xhp\n"
+"par_id3153782\n"
+"46\n"
"help.text"
-msgid "' Read data file using Input"
-msgstr "' Четене на файл с данни чрез Input"
+msgid "Const sDim As String = \" Dimension:\""
+msgstr "Const sDim Аs String = \" Размерност:\""
#: 03102101.xhp
msgctxt ""
@@ -24462,5003 +27064,4114 @@ msgctxt ""
msgid "Example:"
msgstr "Пример:"
-#: 03030103.xhp
+#: 03102200.xhp
msgctxt ""
-"03030103.xhp\n"
+"03102200.xhp\n"
"tit\n"
"help.text"
-msgid "Day Function [Runtime]"
-msgstr "Функция Day [динамична]"
+msgid "IsArray Function [Runtime]"
+msgstr "Функция IsArray [динамична]"
-#: 03030103.xhp
+#: 03102200.xhp
msgctxt ""
-"03030103.xhp\n"
-"bm_id3153345\n"
+"03102200.xhp\n"
+"bm_id3154346\n"
"help.text"
-msgid "<bookmark_value>Day function</bookmark_value>"
-msgstr "<bookmark_value>Day, функция</bookmark_value>"
+msgid "<bookmark_value>IsArray function</bookmark_value>"
+msgstr "<bookmark_value>IsArray, функция</bookmark_value>"
-#: 03030103.xhp
+#: 03102200.xhp
msgctxt ""
-"03030103.xhp\n"
-"hd_id3153345\n"
+"03102200.xhp\n"
+"hd_id3154346\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03030103.xhp\" name=\"Day Function [Runtime]\">Day Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03030103.xhp\" name=\"Функция Day [динамична]\">Функция Day [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03102200.xhp\" name=\"IsArray Function [Runtime]\">IsArray Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03102200.xhp\" name=\"Функция IsArray [динамична]\">Функция IsArray [динамична]</link>"
-#: 03030103.xhp
+#: 03102200.xhp
msgctxt ""
-"03030103.xhp\n"
-"par_id3147560\n"
+"03102200.xhp\n"
+"par_id3159413\n"
"2\n"
"help.text"
-msgid "Returns a value that represents the day of the month based on a serial date number generated by <emph>DateSerial</emph> or <emph>DateValue</emph>."
-msgstr "Намира деня от месеца по зададено серийно число на дата, генерирано от <emph>DateSerial</emph> или <emph>DateValue</emph>."
+msgid "Determines if a variable is a data field in an array."
+msgstr "Определя дали променливата е масив."
-#: 03030103.xhp
+#: 03102200.xhp
msgctxt ""
-"03030103.xhp\n"
-"hd_id3149456\n"
+"03102200.xhp\n"
+"hd_id3150792\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03030103.xhp
+#: 03102200.xhp
msgctxt ""
-"03030103.xhp\n"
-"par_id3150358\n"
+"03102200.xhp\n"
+"par_id3153379\n"
"4\n"
"help.text"
-msgid "Day (Number)"
-msgstr "Day (Number)"
+msgid "IsArray (Var)"
+msgstr "IsArray (Var)"
-#: 03030103.xhp
+#: 03102200.xhp
msgctxt ""
-"03030103.xhp\n"
-"hd_id3148798\n"
+"03102200.xhp\n"
+"hd_id3154365\n"
"5\n"
"help.text"
msgid "Return value:"
msgstr "Връщана стойност:"
-#: 03030103.xhp
+#: 03102200.xhp
msgctxt ""
-"03030103.xhp\n"
-"par_id3125865\n"
+"03102200.xhp\n"
+"par_id3154685\n"
"6\n"
"help.text"
-msgid "Integer"
-msgstr "Integer"
+msgid "Bool"
+msgstr "Bool"
-#: 03030103.xhp
+#: 03102200.xhp
msgctxt ""
-"03030103.xhp\n"
-"hd_id3150448\n"
+"03102200.xhp\n"
+"hd_id3153969\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Параметри:"
-#: 03030103.xhp
+#: 03102200.xhp
msgctxt ""
-"03030103.xhp\n"
-"par_id3156423\n"
+"03102200.xhp\n"
+"par_id3145172\n"
"8\n"
"help.text"
-msgid "<emph>Number:</emph> A numeric expression that contains a serial date number from which you can determine the day of the month."
-msgstr "<emph>Number:</emph> числов израз – серийно число на дата, за която желаете да изчислите деня от месеца."
+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 "<emph>Var:</emph> променлива, за която да се провери дали е декларирана като масив. Ако е така, функцията връща <emph>True</emph>, в противен случай – <emph>False</emph>."
-#: 03030103.xhp
+#: 03102200.xhp
msgctxt ""
-"03030103.xhp\n"
-"par_id3145786\n"
+"03102200.xhp\n"
+"hd_id3155131\n"
"9\n"
"help.text"
-msgid "This function is basically the opposite of the DateSerial function, returning the day of the month from a serial date number generated by the <emph>DateSerial</emph> or the <emph>DateValue</emph> function. For example, the expression"
-msgstr "Тази функция е противоположна на DateSerial и връща деня от месеца по зададено серийно число на дата, генерирано от функцията <emph>DateSerial</emph> или <emph>DateValue</emph>. Например изразът"
-
-#: 03030103.xhp
-msgctxt ""
-"03030103.xhp\n"
-"par_id3153190\n"
-"11\n"
-"help.text"
-msgid "returns the value 20."
-msgstr "връща стойността 20."
-
-#: 03030103.xhp
-msgctxt ""
-"03030103.xhp\n"
-"hd_id3149481\n"
-"12\n"
-"help.text"
msgid "Example:"
msgstr "Пример:"
-#: 03030103.xhp
-msgctxt ""
-"03030103.xhp\n"
-"par_id3149260\n"
-"14\n"
-"help.text"
-msgid "Print \"Day \" & Day(DateSerial(1994, 12, 20)) & \" of the month\""
-msgstr "Print \"Ден \" & Day(DateSerial(1994, 12, 20)) & \" от месеца\""
-
-#: 03104500.xhp
+#: 03102300.xhp
msgctxt ""
-"03104500.xhp\n"
+"03102300.xhp\n"
"tit\n"
"help.text"
-msgid "IsUnoStruct Function [Runtime]"
-msgstr "IsUnoStruct Function [Runtime]"
+msgid "IsDate Function [Runtime]"
+msgstr "Функция IsDate [динамична]"
-#: 03104500.xhp
+#: 03102300.xhp
msgctxt ""
-"03104500.xhp\n"
-"bm_id3146117\n"
+"03102300.xhp\n"
+"bm_id3145090\n"
"help.text"
-msgid "<bookmark_value>IsUnoStruct function</bookmark_value>"
-msgstr "<bookmark_value>IsUnoStruct, функция</bookmark_value>"
+msgid "<bookmark_value>IsDate function</bookmark_value>"
+msgstr "<bookmark_value>IsDate, функция</bookmark_value>"
-#: 03104500.xhp
+#: 03102300.xhp
msgctxt ""
-"03104500.xhp\n"
-"hd_id3146117\n"
+"03102300.xhp\n"
+"hd_id3145090\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03104500.xhp\" name=\"IsUnoStruct Function [Runtime]\">IsUnoStruct Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03104500.xhp\" name=\"Функция IsUnoStruct [динамична]\">Функция IsUnoStruct [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03102300.xhp\" name=\"IsDate Function [Runtime]\">IsDate Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03102300.xhp\" name=\"Функция IsDate [динамична]\">Функция IsDate [динамична]</link>"
-#: 03104500.xhp
+#: 03102300.xhp
msgctxt ""
-"03104500.xhp\n"
-"par_id3146957\n"
+"03102300.xhp\n"
+"par_id3153311\n"
"2\n"
"help.text"
-msgid "Returns True if the given object is a Uno struct."
-msgstr "Връща True, ако даденият обект е структура на Uno."
+msgid "Tests if a numeric or string expression can be converted to a <emph>Date</emph> variable."
+msgstr "Проверява дали стойността на низов или числов израз може да се преобразува до типа <emph>Date</emph>."
-#: 03104500.xhp
+#: 03102300.xhp
msgctxt ""
-"03104500.xhp\n"
-"hd_id3148538\n"
+"03102300.xhp\n"
+"hd_id3153824\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03104500.xhp
+#: 03102300.xhp
msgctxt ""
-"03104500.xhp\n"
-"par_id3155341\n"
+"03102300.xhp\n"
+"par_id3147573\n"
"4\n"
"help.text"
-msgid "IsUnoStruct( Uno type )"
-msgstr "IsUnoStruct(Uno type)"
+msgid "IsDate (Expression)"
+msgstr "IsDate (Expression)"
-#: 03104500.xhp
+#: 03102300.xhp
msgctxt ""
-"03104500.xhp\n"
-"hd_id3148473\n"
+"03102300.xhp\n"
+"hd_id3143270\n"
"5\n"
"help.text"
msgid "Return value:"
msgstr "Връщана стойност:"
-#: 03104500.xhp
+#: 03102300.xhp
msgctxt ""
-"03104500.xhp\n"
-"par_id3145315\n"
+"03102300.xhp\n"
+"par_id3147560\n"
"6\n"
"help.text"
msgid "Bool"
msgstr "Bool"
-#: 03104500.xhp
+#: 03102300.xhp
msgctxt ""
-"03104500.xhp\n"
-"hd_id3145609\n"
+"03102300.xhp\n"
+"hd_id3148947\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Параметри:"
-#: 03104500.xhp
+#: 03102300.xhp
msgctxt ""
-"03104500.xhp\n"
-"par_id3148947\n"
+"03102300.xhp\n"
+"par_id3145069\n"
"8\n"
"help.text"
-msgid "Uno type : A UnoObject"
-msgstr "Uno type : A UnoObject"
+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 "<emph>Expression:</emph> числов или низов израз, който да бъде проверен. Ако изразът може да бъде преобразуван към дата, функцията връща <emph>True</emph>, в противен случай – <emph>False</emph>."
-#: 03104500.xhp
+#: 03102300.xhp
msgctxt ""
-"03104500.xhp\n"
-"hd_id3156343\n"
+"03102300.xhp\n"
+"hd_id3150447\n"
"9\n"
"help.text"
msgid "Example:"
msgstr "Пример:"
-#: 03104500.xhp
-msgctxt ""
-"03104500.xhp\n"
-"par_idN10638\n"
-"help.text"
-msgid "' Instantiate a service"
-msgstr "' Създаваме екземпляр на услуга"
-
-#: 03104500.xhp
-msgctxt ""
-"03104500.xhp\n"
-"par_idN10644\n"
-"help.text"
-msgid "MsgBox bIsStruct ' Displays False because oSimpleFileAccess Is NO struct"
-msgstr "MsgBox bIsStruct ' Показва False, тъй като oSimpleFileAccess не е структура"
-
-#: 03104500.xhp
-msgctxt ""
-"03104500.xhp\n"
-"par_idN10649\n"
-"help.text"
-msgid "' Instantiate a Property struct"
-msgstr "' Създаваме екземпляр на структура от тип Property"
-
-#: 03104500.xhp
-msgctxt ""
-"03104500.xhp\n"
-"par_idN10653\n"
-"help.text"
-msgid "MsgBox bIsStruct ' Displays True because aProperty is a struct"
-msgstr "MsgBox bIsStruct ' Показва True, тъй като aProperty е структура"
-
-#: 03104500.xhp
-msgctxt ""
-"03104500.xhp\n"
-"par_idN1065B\n"
-"help.text"
-msgid "MsgBox bIsStruct ' Displays False because 42 is NO struct"
-msgstr "MsgBox bIsStruct ' Показва False, тъй като 42 не е структура"
-
-#: 03030100.xhp
-msgctxt ""
-"03030100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Converting Date Values"
-msgstr "Преобразуване на стойности – дати"
-
-#: 03030100.xhp
+#: 03102300.xhp
msgctxt ""
-"03030100.xhp\n"
-"hd_id3147573\n"
-"1\n"
+"03102300.xhp\n"
+"par_id3150869\n"
+"13\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03030100.xhp\" name=\"Converting Date Values\">Converting Date Values</link>"
-msgstr "<link href=\"text/sbasic/shared/03030100.xhp\" name=\"Преобразуване на стойности – дати\">Преобразуване на стойности – дати</link>"
+msgid "Print IsDate(sDateVar) ' Returns True"
+msgstr "Print IsDate(sDateVar) ' Връща True"
-#: 03030100.xhp
+#: 03102300.xhp
msgctxt ""
-"03030100.xhp\n"
-"par_id3154760\n"
-"2\n"
+"03102300.xhp\n"
+"par_id3147288\n"
+"15\n"
"help.text"
-msgid "The following functions convert date values to calculable numbers and back."
-msgstr "Следващите функции преобразуват стойности – дати към числа, с които може да се извършват изчисления, и обратно."
+msgid "Print IsDate(sDateVar) ' Returns False"
+msgstr "Print IsDate(sDateVar) ' Връща False"
-#: 03010102.xhp
+#: 03102400.xhp
msgctxt ""
-"03010102.xhp\n"
+"03102400.xhp\n"
"tit\n"
"help.text"
-msgid "MsgBox Function [Runtime]"
-msgstr "Функция MsgBox Function [динамична]"
+msgid "IsEmpty Function [Runtime]"
+msgstr "Функция IsEmpty [динамична]"
-#: 03010102.xhp
+#: 03102400.xhp
msgctxt ""
-"03010102.xhp\n"
-"bm_id3153379\n"
+"03102400.xhp\n"
+"bm_id3153394\n"
"help.text"
-msgid "<bookmark_value>MsgBox function</bookmark_value>"
-msgstr "<bookmark_value>MsgBox, функция</bookmark_value>"
+msgid "<bookmark_value>IsEmpty function</bookmark_value>"
+msgstr "<bookmark_value>IsEmpty, функция</bookmark_value>"
-#: 03010102.xhp
+#: 03102400.xhp
msgctxt ""
-"03010102.xhp\n"
-"hd_id3153379\n"
+"03102400.xhp\n"
+"hd_id3153394\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03010102.xhp\" name=\"MsgBox Function [Runtime]\">MsgBox Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03010102.xhp\" name=\"Функция MsgBox Function [динамична]\">Функция MsgBox Function [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03102400.xhp\" name=\"IsEmpty Function [Runtime]\">IsEmpty Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03102400.xhp\" name=\"Функция IsEmpty [динамична]\">Функция IsEmpty [динамична]</link>"
-#: 03010102.xhp
+#: 03102400.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3145171\n"
+"03102400.xhp\n"
+"par_id3163045\n"
"2\n"
"help.text"
-msgid "Displays a dialog box containing a message and returns a value."
-msgstr "Показва диалогов прозорец със съобщение и връща стойност."
+msgid "Tests if a Variant variable contains the Empty value. The Empty value indicates that the variable is not initialized."
+msgstr "Проверява дали променлива от типа Variant съдържа празна стойност (Empty). Тя показва, че променливата не е инициализирана."
-#: 03010102.xhp
+#: 03102400.xhp
msgctxt ""
-"03010102.xhp\n"
-"hd_id3156281\n"
+"03102400.xhp\n"
+"hd_id3159158\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03010102.xhp
+#: 03102400.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3154685\n"
+"03102400.xhp\n"
+"par_id3153126\n"
"4\n"
"help.text"
-msgid "MsgBox (Text As String [,Type As Integer [,Dialogtitle As String]])"
-msgstr "MsgBox (Text As String [,Type As Integer [,Dialogtitle As String]])"
+msgid "IsEmpty (Var)"
+msgstr "IsEmpty (Var)"
-#: 03010102.xhp
+#: 03102400.xhp
msgctxt ""
-"03010102.xhp\n"
-"hd_id3153771\n"
+"03102400.xhp\n"
+"hd_id3148685\n"
"5\n"
"help.text"
msgid "Return value:"
msgstr "Връщана стойност:"
-#: 03010102.xhp
+#: 03102400.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3146985\n"
+"03102400.xhp\n"
+"par_id3156344\n"
"6\n"
"help.text"
-msgid "Integer"
-msgstr "Integer"
+msgid "Bool"
+msgstr "Bool"
-#: 03010102.xhp
+#: 03102400.xhp
msgctxt ""
-"03010102.xhp\n"
-"hd_id3153363\n"
+"03102400.xhp\n"
+"hd_id3148947\n"
"7\n"
"help.text"
-msgid "Parameter:"
-msgstr "Параметър:"
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 03010102.xhp
+#: 03102400.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3153727\n"
+"03102400.xhp\n"
+"par_id3154347\n"
"8\n"
"help.text"
-msgid "<emph>Text</emph>: String expression displayed as a message in the dialog box. Line breaks can be inserted with Chr$(13)."
-msgstr "<emph>Text</emph>: израз – низ, показван като като съобщение в диалоговия прозорец. За преминаване на нов ред може да се използва Chr$(13)."
+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 "<emph>Var:</emph> променлива, която бъде проверена. Ако променливата от типа Variant съдържа стойността Empty, функцията връща <emph>True</emph>, в противен случай – <emph>False</emph>."
-#: 03010102.xhp
+#: 03102400.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3147317\n"
+"03102400.xhp\n"
+"hd_id3154138\n"
"9\n"
"help.text"
-msgid "<emph>DialogTitle</emph>: String expression displayed in the title bar of the dialog. If omitted, the name of the respective application is displayed."
-msgstr "<emph>DialogTitle</emph>: израз от тип низ, показван в заглавната лента на диалоговия прозорец. Ако бъде пропуснат, се изписва името на съответното приложение."
-
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3153954\n"
-"10\n"
-"help.text"
-msgid "<emph>Type</emph>: Any integer expression that specifies the dialog type and defines the number and type of buttons or icons displayed. <emph>Type</emph> represents a combination of bit patterns (dialog elements defined by adding the respective values):"
-msgstr "<emph>Type</emph>: произволен израз от тип цяло число, който задава типа на диалоговия прозорец, броя и вида на показваните бутони или икони. <emph>Type</emph> представлява комбинация от битови маски (елементи, задавани чрез прибавяне на съответните стойности):"
+msgid "Example:"
+msgstr "Пример:"
-#: 03010102.xhp
+#: 03102400.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3154319\n"
-"11\n"
+"03102400.xhp\n"
+"par_id3154863\n"
+"13\n"
"help.text"
-msgid "<emph>Values</emph>"
-msgstr "<emph>Стойности</emph>"
+msgid "Print IsEmpty(sVar) ' Returns True"
+msgstr "Print IsEmpty(sVar) ' Връща True"
-#: 03010102.xhp
+#: 03102450.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3147397\n"
-"12\n"
+"03102450.xhp\n"
+"tit\n"
"help.text"
-msgid "0 : Display OK button only."
-msgstr "0: Показва се само бутон „OK“."
+msgid "IsError Function [Runtime]"
+msgstr "Функция IsError [динамична]"
-#: 03010102.xhp
+#: 03102450.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3145646\n"
-"13\n"
+"03102450.xhp\n"
+"bm_id4954680\n"
"help.text"
-msgid "1 : Display OK and Cancel buttons."
-msgstr "1: Показват се бутони „OK“ и „Отказ“."
+msgid "<bookmark_value>IsError function</bookmark_value>"
+msgstr "<bookmark_value>IsError, функция</bookmark_value>"
-#: 03010102.xhp
+#: 03102450.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3149410\n"
-"14\n"
+"03102450.xhp\n"
+"par_idN1054E\n"
"help.text"
-msgid "2 : Display Abort, Retry, and Ignore buttons."
-msgstr "2: Показват се бутони „Прекратяване“, „Повторен опит“ и „Игнориране“."
+msgid "<link href=\"text/sbasic/shared/03102450.xhp\">IsError Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03102450.xhp\">Функция IsError [динамична]</link>"
-#: 03010102.xhp
+#: 03102450.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3151075\n"
-"15\n"
+"03102450.xhp\n"
+"par_idN1055E\n"
"help.text"
-msgid "3 : Display Yes, No, and Cancel buttons."
-msgstr "3: Показват се бутони „Да“, „Не“ и „Отказ“."
+msgid "Tests if a variable contains an error value."
+msgstr "Проверява дали променливата съдържа стойност за грешка."
-#: 03010102.xhp
+#: 03102450.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3153878\n"
-"16\n"
+"03102450.xhp\n"
+"par_idN10561\n"
"help.text"
-msgid "4 : Display Yes and No buttons."
-msgstr "4: Показват се бутони „Да“ и „Не“."
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 03010102.xhp
+#: 03102450.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3155601\n"
-"17\n"
+"03102450.xhp\n"
+"par_idN10565\n"
"help.text"
-msgid "5 : Display Retry and Cancel buttons."
-msgstr "5: Показват се бутони „Повторен опит“ и „Отказ“."
+msgid "IsError (Var)"
+msgstr "IsError (Var)"
-#: 03010102.xhp
+#: 03102450.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3150716\n"
-"18\n"
+"03102450.xhp\n"
+"par_idN10568\n"
"help.text"
-msgid "16 : Add the Stop icon to the dialog."
-msgstr "16: В диалоговия прозорец се показва икона „Стоп“."
+msgid "Return value:"
+msgstr "Връщана стойност:"
-#: 03010102.xhp
+#: 03102450.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3153837\n"
-"19\n"
+"03102450.xhp\n"
+"par_idN1056C\n"
"help.text"
-msgid "32 : Add the Question icon to the dialog."
-msgstr "32: В диалоговия прозорец се показва икона „Въпрос“."
+msgid "Bool"
+msgstr "Bool"
-#: 03010102.xhp
+#: 03102450.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3150751\n"
-"20\n"
+"03102450.xhp\n"
+"par_idN1056F\n"
"help.text"
-msgid "48 : Add the Exclamation Point icon to the dialog."
-msgstr "48: В диалоговия прозорец се показва икона „Удивителна“."
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 03010102.xhp
+#: 03102450.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3146915\n"
-"21\n"
+"03102450.xhp\n"
+"par_idN10573\n"
"help.text"
-msgid "64 : Add the Information icon to the dialog."
-msgstr "64: В диалоговия прозорец се показва икона „Информация“."
+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 "<emph>Var:</emph> променлива, която бъде проверена. Ако променливата съдържа стойност за грешка, функцията връща <emph>True</emph>, в противен случай – <emph>False</emph>."
-#: 03010102.xhp
+#: 03102600.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3145640\n"
-"22\n"
+"03102600.xhp\n"
+"tit\n"
"help.text"
-msgid "128 : First button in the dialog as default button."
-msgstr "128: Първият бутон в диалоговия прозорец е подразбиран."
+msgid "IsNull Function [Runtime]"
+msgstr "Функция IsNull [динамична]"
-#: 03010102.xhp
+#: 03102600.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3153765\n"
-"23\n"
+"03102600.xhp\n"
+"bm_id3155555\n"
"help.text"
-msgid "256 : Second button in the dialog as default button."
-msgstr "256: Вторият бутон в диалоговия прозорец е подразбиран."
+msgid "<bookmark_value>IsNull function</bookmark_value><bookmark_value>Null value</bookmark_value>"
+msgstr "<bookmark_value>IsNull, функция</bookmark_value><bookmark_value>Null value</bookmark_value>"
-#: 03010102.xhp
+#: 03102600.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3153715\n"
-"24\n"
+"03102600.xhp\n"
+"hd_id3155555\n"
+"1\n"
"help.text"
-msgid "512 : Third button in the dialog as default button."
-msgstr "512: Третият бутон в диалоговия прозорец е подразбиран."
+msgid "<link href=\"text/sbasic/shared/03102600.xhp\" name=\"IsNull Function [Runtime]\">IsNull Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03102600.xhp\" name=\"Функция IsNull [динамична]\">Функция IsNull [динамична]</link>"
-#: 03010102.xhp
+#: 03102600.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3159267\n"
-"25\n"
+"03102600.xhp\n"
+"par_id3146957\n"
+"2\n"
"help.text"
-msgid "<emph>Return value:</emph>"
-msgstr "<emph>Връщана стойност:</emph>"
+msgid "Tests if a Variant contains the special Null value, indicating that the variable does not contain data."
+msgstr "Проверява дали променлива от тип Variant съдържа специалната стойност Null, която означава, че променливата не съдържа данни."
-#: 03010102.xhp
+#: 03102600.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3145230\n"
-"26\n"
+"03102600.xhp\n"
+"hd_id3150670\n"
+"3\n"
"help.text"
-msgid "1 : OK"
-msgstr "1: ОК"
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 03010102.xhp
+#: 03102600.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3149567\n"
-"27\n"
+"03102600.xhp\n"
+"par_id3150984\n"
+"4\n"
"help.text"
-msgid "2 : Cancel"
-msgstr "2: Отказ"
+msgid "IsNull (Var)"
+msgstr "IsNull (Var)"
-#: 03010102.xhp
+#: 03102600.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id4056825\n"
+"03102600.xhp\n"
+"hd_id3149514\n"
+"5\n"
"help.text"
-msgid "3 : Abort"
-msgstr "3: Прекратяване"
+msgid "Return value:"
+msgstr "Връщана стойност:"
-#: 03010102.xhp
+#: 03102600.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3155335\n"
-"28\n"
+"03102600.xhp\n"
+"par_id3145609\n"
+"6\n"
"help.text"
-msgid "4 : Retry"
-msgstr "4: Повторен опит"
+msgid "Bool"
+msgstr "Bool"
-#: 03010102.xhp
+#: 03102600.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3146918\n"
-"29\n"
+"03102600.xhp\n"
+"hd_id3149669\n"
+"7\n"
"help.text"
-msgid "5 : Ignore"
-msgstr "5: Игнориране"
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 03010102.xhp
+#: 03102600.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3155961\n"
-"30\n"
+"03102600.xhp\n"
+"par_id3159414\n"
+"8\n"
"help.text"
-msgid "6 : Yes"
-msgstr "6: Да"
+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 "<emph>Var:</emph> променлива, която бъде проверена. Ако променливата от типа Variant има стойност Null, функцията връща <emph>True</emph>, в противен случай – <emph>False</emph>."
-#: 03010102.xhp
+#: 03102600.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3148488\n"
-"31\n"
+"03102600.xhp\n"
+"par_idN1062A\n"
"help.text"
-msgid "7 : No"
-msgstr "7: Не"
+msgid "<emph>Null</emph> - This value is used for a variant data sub type without valid contents."
+msgstr "<emph>Null:</emph> тази стойност се използва като подтип на Variant, когато няма валидно съдържание."
-#: 03010102.xhp
+#: 03102600.xhp
msgctxt ""
-"03010102.xhp\n"
-"hd_id3150090\n"
-"40\n"
+"03102600.xhp\n"
+"hd_id3153381\n"
+"9\n"
"help.text"
msgid "Example:"
msgstr "Пример:"
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3151278\n"
-"43\n"
-"help.text"
-msgid "sVar = MsgBox(\"Las Vegas\")"
-msgstr "sVar = MsgBox(\"Лас Вегас\")"
-
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3149034\n"
-"44\n"
-"help.text"
-msgid "sVar = MsgBox(\"Las Vegas\",1)"
-msgstr "sVar = MsgBox(\"Лас Вегас\", 1)"
-
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3166424\n"
-"45\n"
-"help.text"
-msgid "sVar = MsgBox( \"Las Vegas\",256 + 16 + 2,\"Dialog title\")"
-msgstr "sVar = MsgBox(\"Лас Вегас\", 256 + 16 + 2, \"Заглавие на диалога\")"
-
-#: 03120302.xhp
+#: 03102700.xhp
msgctxt ""
-"03120302.xhp\n"
+"03102700.xhp\n"
"tit\n"
"help.text"
-msgid "LCase Function [Runtime]"
-msgstr "Функция LCase [динамична]"
+msgid "IsNumeric Function [Runtime]"
+msgstr "Функция IsNumeric [динамична]"
-#: 03120302.xhp
+#: 03102700.xhp
msgctxt ""
-"03120302.xhp\n"
-"bm_id3152363\n"
+"03102700.xhp\n"
+"bm_id3145136\n"
"help.text"
-msgid "<bookmark_value>LCase function</bookmark_value>"
-msgstr "<bookmark_value>LCase, функция</bookmark_value>"
+msgid "<bookmark_value>IsNumeric function</bookmark_value>"
+msgstr "<bookmark_value>IsNumeric, функция</bookmark_value>"
-#: 03120302.xhp
+#: 03102700.xhp
msgctxt ""
-"03120302.xhp\n"
-"hd_id3152363\n"
+"03102700.xhp\n"
+"hd_id3145136\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120302.xhp\" name=\"LCase Function [Runtime]\">LCase Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120302.xhp\" name=\"Функция LCase [динамична]\">Функция LCase [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03102700.xhp\" name=\"IsNumeric Function [Runtime]\">IsNumeric Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03102700.xhp\" name=\"Функция IsNumeric [динамична]\">Функция IsNumeric [динамична]</link>"
-#: 03120302.xhp
+#: 03102700.xhp
msgctxt ""
-"03120302.xhp\n"
-"par_id3145609\n"
+"03102700.xhp\n"
+"par_id3149177\n"
"2\n"
"help.text"
-msgid "Converts all uppercase letters in a string to lowercase."
-msgstr "Преобразува всички главни букви в низа в малки."
+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 "Проверява дали изразът е число. Ако стойността е <link href=\"text/sbasic/shared/00000002.xhp#dezimal\" name=\"число\">число</link>, функцията връща True, в противен случай – False."
-#: 03120302.xhp
+#: 03102700.xhp
msgctxt ""
-"03120302.xhp\n"
-"par_id3154347\n"
+"03102700.xhp\n"
+"hd_id3149415\n"
"3\n"
"help.text"
-msgid "See also: <link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase\">UCase</link> Function"
-msgstr "Виж също: функция <link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase\">UCase</link>"
-
-#: 03120302.xhp
-msgctxt ""
-"03120302.xhp\n"
-"hd_id3149456\n"
-"4\n"
-"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03120302.xhp
+#: 03102700.xhp
msgctxt ""
-"03120302.xhp\n"
-"par_id3150791\n"
-"5\n"
+"03102700.xhp\n"
+"par_id3150771\n"
+"4\n"
"help.text"
-msgid "LCase (Text As String)"
-msgstr "LCase (Text As String)"
+msgid "IsNumeric (Var)"
+msgstr "IsNumeric (Var)"
-#: 03120302.xhp
+#: 03102700.xhp
msgctxt ""
-"03120302.xhp\n"
-"hd_id3154940\n"
-"6\n"
+"03102700.xhp\n"
+"hd_id3148685\n"
+"5\n"
"help.text"
msgid "Return value:"
msgstr "Връщана стойност:"
-#: 03120302.xhp
+#: 03102700.xhp
msgctxt ""
-"03120302.xhp\n"
-"par_id3144760\n"
-"7\n"
+"03102700.xhp\n"
+"par_id3148944\n"
+"6\n"
"help.text"
-msgid "String"
-msgstr "String"
+msgid "Bool"
+msgstr "Bool"
-#: 03120302.xhp
+#: 03102700.xhp
msgctxt ""
-"03120302.xhp\n"
-"hd_id3151043\n"
-"8\n"
+"03102700.xhp\n"
+"hd_id3148947\n"
+"7\n"
"help.text"
msgid "Parameters:"
msgstr "Параметри:"
-#: 03120302.xhp
+#: 03102700.xhp
msgctxt ""
-"03120302.xhp\n"
-"par_id3153193\n"
-"9\n"
+"03102700.xhp\n"
+"par_id3154760\n"
+"8\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression that you want to convert."
-msgstr "<emph>Text:</emph> низов израз, чиято стойност да се преобразува."
+msgid "<emph>Var:</emph> Any expression that you want to test."
+msgstr "<emph>Var:</emph> израз, който да бъде проверен."
-#: 03120302.xhp
+#: 03102700.xhp
msgctxt ""
-"03120302.xhp\n"
-"hd_id3148451\n"
-"10\n"
+"03102700.xhp\n"
+"hd_id3149656\n"
+"9\n"
"help.text"
msgid "Example:"
msgstr "Пример:"
-#: 03120302.xhp
+#: 03102700.xhp
msgctxt ""
-"03120302.xhp\n"
-"par_id3146121\n"
-"14\n"
+"03102700.xhp\n"
+"par_id3147230\n"
+"13\n"
"help.text"
-msgid "Print LCase(sVar) ' Returns \"las vegas\""
-msgstr "Print LCase(sVar) ' Връща \"лас вегас\""
+msgid "Print IsNumeric(vVar) ' Returns False"
+msgstr "Print IsNumeric(vVar) ' Връща False"
-#: 03120302.xhp
+#: 03102700.xhp
msgctxt ""
-"03120302.xhp\n"
-"par_id3146986\n"
+"03102700.xhp\n"
+"par_id3154910\n"
"15\n"
"help.text"
-msgid "Print UCase(sVar) ' Returns \"LAS VEGAS\""
-msgstr "Print UCase(sVar) ' Връща \"ЛАС ВЕГАС\""
+msgid "Print IsNumeric(vVar) ' Returns True"
+msgstr "Print IsNumeric(vVar) ' Връща True"
-#: 03132200.xhp
+#: 03102800.xhp
msgctxt ""
-"03132200.xhp\n"
+"03102800.xhp\n"
"tit\n"
"help.text"
-msgid "ThisComponent Statement [Runtime]"
-msgstr "Функция ThisComponent [динамична]"
+msgid "IsObject Function [Runtime]"
+msgstr "Функция IsObject [динамична]"
-#: 03132200.xhp
+#: 03102800.xhp
msgctxt ""
-"03132200.xhp\n"
-"bm_id3155342\n"
+"03102800.xhp\n"
+"bm_id3149346\n"
"help.text"
-msgid "<bookmark_value>ThisComponent property</bookmark_value><bookmark_value>components;addressing</bookmark_value>"
-msgstr "<bookmark_value>ThisComponent, свойство</bookmark_value><bookmark_value>компоненти;адресиране</bookmark_value>"
+msgid "<bookmark_value>IsObject function</bookmark_value>"
+msgstr "<bookmark_value>IsObject, функция</bookmark_value>"
-#: 03132200.xhp
+#: 03102800.xhp
msgctxt ""
-"03132200.xhp\n"
-"hd_id3155342\n"
+"03102800.xhp\n"
+"hd_id3149346\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03132200.xhp\" name=\"ThisComponent [Runtime]\">ThisComponent [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03132200.xhp\" name=\"Функция ThisComponent [динамична]\">Функция ThisComponent [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03102800.xhp\" name=\"IsObject Function [Runtime]\">IsObject Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03102800.xhp\" name=\"Функция IsObject [динамична]\">Функция IsObject [динамична]</link>"
-#: 03132200.xhp
+#: 03102800.xhp
msgctxt ""
-"03132200.xhp\n"
-"par_id3154923\n"
+"03102800.xhp\n"
+"par_id3148538\n"
"2\n"
"help.text"
-msgid "Addresses the active component so that its properties can be read and set. ThisComponent is used from document Basic, where it represents the document the Basic belongs to. The type of object accessed by ThisComponent depends on the document type."
-msgstr "Адресира активния компонент с цел четене и промяна на свойствата му. ThisComponent се използва в кода на Basic в документ и представя документа, на който принадлежи кодът. Типът на обекта, връщан от ThisComponent, зависи от типа на документа."
+msgid "Tests if an object variable is an OLE object. The function returns True if the variable is an OLE object, otherwise it returns False."
+msgstr "Проверява дали обектна променлива съдържа OLE обект. Ако е така, функцията връща True, в противен случай – False."
-#: 03132200.xhp
+#: 03102800.xhp
msgctxt ""
-"03132200.xhp\n"
-"hd_id3154346\n"
+"03102800.xhp\n"
+"hd_id3149234\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03132200.xhp
+#: 03102800.xhp
msgctxt ""
-"03132200.xhp\n"
-"par_id3151056\n"
+"03102800.xhp\n"
+"par_id3154285\n"
"4\n"
"help.text"
-msgid "ThisComponent"
-msgstr "ThisComponent"
+msgid "IsObject (ObjectVar)"
+msgstr "IsObject (ObjectVar)"
-#: 03132200.xhp
+#: 03102800.xhp
msgctxt ""
-"03132200.xhp\n"
-"hd_id3154940\n"
+"03102800.xhp\n"
+"hd_id3148685\n"
"5\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "Return value:"
+msgstr "Връщана стойност:"
-#: 03132200.xhp
+#: 03102800.xhp
msgctxt ""
-"03132200.xhp\n"
-"par_id3154123\n"
-"7\n"
+"03102800.xhp\n"
+"par_id3156024\n"
+"6\n"
"help.text"
-msgid "' updates the \"Table of Contents\" in a text doc"
-msgstr "' Обновява таблицата на съдържанието в текстов документ"
+msgid "Bool"
+msgstr "Bool"
-#: 03132200.xhp
+#: 03102800.xhp
msgctxt ""
-"03132200.xhp\n"
-"par_id3153194\n"
-"10\n"
+"03102800.xhp\n"
+"hd_id3148947\n"
+"7\n"
"help.text"
-msgid "index = allindexes.getByName(\"Table of Contents1\")"
-msgstr "index = allindexes.getByName(\"Table of Contents1\")"
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 03132200.xhp
+#: 03102800.xhp
msgctxt ""
-"03132200.xhp\n"
-"par_id3156422\n"
-"11\n"
+"03102800.xhp\n"
+"par_id3148552\n"
+"8\n"
"help.text"
-msgid "' use the default name for Table of Contents and a 1"
-msgstr "' Използваме подразбираното име за таблицата и 1"
+msgid "<emph>ObjectVar:</emph> Any variable that you want to test. If the Object variable contains an OLE object, the function returns True."
+msgstr "<emph>ObjectVar:</emph> променлива, която бъде проверена. Ако обектната променлива съдържа OLE обект, функцията връща <emph>True</emph>, в противен случай – <emph>False</emph>."
-#: 03030204.xhp
+#: 03102900.xhp
msgctxt ""
-"03030204.xhp\n"
+"03102900.xhp\n"
"tit\n"
"help.text"
-msgid "Second Function [Runtime]"
-msgstr "Функция Second [динамична]"
+msgid "LBound Function [Runtime]"
+msgstr "Функция LBound [динамична]"
-#: 03030204.xhp
+#: 03102900.xhp
msgctxt ""
-"03030204.xhp\n"
-"bm_id3153346\n"
+"03102900.xhp\n"
+"bm_id3156027\n"
"help.text"
-msgid "<bookmark_value>Second function</bookmark_value>"
-msgstr "<bookmark_value>Second, функция</bookmark_value>"
+msgid "<bookmark_value>LBound function</bookmark_value>"
+msgstr "<bookmark_value>LBound, функция</bookmark_value>"
-#: 03030204.xhp
+#: 03102900.xhp
msgctxt ""
-"03030204.xhp\n"
-"hd_id3153346\n"
+"03102900.xhp\n"
+"hd_id3156027\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03030204.xhp\" name=\"Second Function [Runtime]\">Second Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03030204.xhp\" name=\"Функция Second [динамична]\">Функция Second [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03102900.xhp\" name=\"LBound Function [Runtime]\">LBound Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03102900.xhp\" name=\"Функция LBound [динамична]\">Функция LBound [динамична]</link>"
-#: 03030204.xhp
+#: 03102900.xhp
msgctxt ""
-"03030204.xhp\n"
-"par_id3156023\n"
+"03102900.xhp\n"
+"par_id3147226\n"
"2\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 "Връща секундите от серийна стойност за час, генерирана от функцията TimeSerial или TimeValue."
+msgid "Returns the lower boundary of an array."
+msgstr "Връща долната граница на масив."
-#: 03030204.xhp
+#: 03102900.xhp
msgctxt ""
-"03030204.xhp\n"
-"hd_id3147264\n"
+"03102900.xhp\n"
+"hd_id3148538\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03030204.xhp
+#: 03102900.xhp
msgctxt ""
-"03030204.xhp\n"
-"par_id3146795\n"
+"03102900.xhp\n"
+"par_id3150503\n"
"4\n"
"help.text"
-msgid "Second (Number)"
-msgstr "Second (Number)"
+msgid "LBound (ArrayName [, Dimension])"
+msgstr "LBound (ArrayName [, Dimension])"
-#: 03030204.xhp
+#: 03102900.xhp
msgctxt ""
-"03030204.xhp\n"
-"hd_id3150792\n"
+"03102900.xhp\n"
+"hd_id3150984\n"
"5\n"
"help.text"
msgid "Return value:"
msgstr "Връщана стойност:"
-#: 03030204.xhp
+#: 03102900.xhp
msgctxt ""
-"03030204.xhp\n"
-"par_id3154140\n"
+"03102900.xhp\n"
+"par_id3153126\n"
"6\n"
"help.text"
msgid "Integer"
msgstr "Integer"
-#: 03030204.xhp
+#: 03102900.xhp
msgctxt ""
-"03030204.xhp\n"
-"hd_id3156280\n"
+"03102900.xhp\n"
+"hd_id3144500\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Параметри:"
-#: 03030204.xhp
+#: 03102900.xhp
msgctxt ""
-"03030204.xhp\n"
-"par_id3154124\n"
+"03102900.xhp\n"
+"par_id3145069\n"
"8\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 "<emph>Number:</emph> числов израз – серийната стойност за точен час, от която се изчислява стойността на секундите."
+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 "<emph>ArrayName:</emph> името на масива, за който трябва да се намери горната (<emph>Ubound</emph>) или долната (<emph>LBound</emph>) граница на индексите."
-#: 03030204.xhp
+#: 03102900.xhp
msgctxt ""
-"03030204.xhp\n"
-"par_id3125864\n"
+"03102900.xhp\n"
+"par_id3149457\n"
"9\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 "Тази функция е противоположна на <emph>TimeSerial</emph>. Тя връща секундите от стойност за час, генерирана от функцията <emph>TimeSerial</emph> или<emph>TimeValue</emph>. Например изразът"
+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 "<emph>[Dimension]:</emph> цяло число, което указва за кое измерение да се намери горната (<emph>Ubound</emph>) или долната (<emph>LBound</emph>) граница. Ако не е зададена стойност, се подразбира първото измерение."
-#: 03030204.xhp
+#: 03102900.xhp
msgctxt ""
-"03030204.xhp\n"
-"par_id3153951\n"
+"03102900.xhp\n"
+"hd_id3145171\n"
"10\n"
"help.text"
-msgid "Print Second(TimeSerial(12,30,41))"
-msgstr "Print Second(TimeSerial(12, 30, 41))"
+msgid "Example:"
+msgstr "Пример:"
-#: 03030204.xhp
+#: 03102900.xhp
msgctxt ""
-"03030204.xhp\n"
-"par_id3151117\n"
-"11\n"
+"03102900.xhp\n"
+"par_id3145365\n"
+"18\n"
"help.text"
-msgid "returns the value 41."
-msgstr "връща стойността 41."
+msgid "Print LBound(sVar()) ' Returns 10"
+msgstr "Print LBound(sVar()) ' Връща 10"
-#: 03030204.xhp
+#: 03102900.xhp
msgctxt ""
-"03030204.xhp\n"
-"hd_id3147426\n"
-"12\n"
+"03102900.xhp\n"
+"par_id3150486\n"
+"19\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "Print UBound(sVar()) ' Returns 20"
+msgstr "Print UBound(sVar()) ' Връща 20"
-#: 03030204.xhp
+#: 03102900.xhp
msgctxt ""
-"03030204.xhp\n"
-"par_id3156441\n"
-"14\n"
+"03102900.xhp\n"
+"par_id3149665\n"
+"20\n"
"help.text"
-msgid "MsgBox \"The exact second of the current time is \"& Second( Now )"
-msgstr "MsgBox \"Точната секунда на текущия час е \" & Second(Now)"
+msgid "Print LBound(sVar(),2) ' Returns 5"
+msgstr "Print LBound(sVar(), 2) ' Връща 5"
-#: 03102300.xhp
+#: 03102900.xhp
msgctxt ""
-"03102300.xhp\n"
+"03102900.xhp\n"
+"par_id3159154\n"
+"21\n"
+"help.text"
+msgid "Print UBound(sVar(),2) ' Returns 70"
+msgstr "Print UBound(sVar(), 2) ' Връща 70"
+
+#: 03103000.xhp
+msgctxt ""
+"03103000.xhp\n"
"tit\n"
"help.text"
-msgid "IsDate Function [Runtime]"
-msgstr "Функция IsDate [динамична]"
+msgid "UBound Function [Runtime]"
+msgstr "Функция UBound [динамична]"
-#: 03102300.xhp
+#: 03103000.xhp
msgctxt ""
-"03102300.xhp\n"
-"bm_id3145090\n"
+"03103000.xhp\n"
+"bm_id3148538\n"
"help.text"
-msgid "<bookmark_value>IsDate function</bookmark_value>"
-msgstr "<bookmark_value>IsDate, функция</bookmark_value>"
+msgid "<bookmark_value>UBound function</bookmark_value>"
+msgstr "<bookmark_value>UBound, функция</bookmark_value>"
-#: 03102300.xhp
+#: 03103000.xhp
msgctxt ""
-"03102300.xhp\n"
-"hd_id3145090\n"
+"03103000.xhp\n"
+"hd_id3148538\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03102300.xhp\" name=\"IsDate Function [Runtime]\">IsDate Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03102300.xhp\" name=\"Функция IsDate [динамична]\">Функция IsDate [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03103000.xhp\" name=\"UBound Function [Runtime]\">UBound Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03103000.xhp\" name=\"Функция UBound [динамична]\">Функция UBound [динамична]</link>"
-#: 03102300.xhp
+#: 03103000.xhp
msgctxt ""
-"03102300.xhp\n"
-"par_id3153311\n"
+"03103000.xhp\n"
+"par_id3147573\n"
"2\n"
"help.text"
-msgid "Tests if a numeric or string expression can be converted to a <emph>Date</emph> variable."
-msgstr "Проверява дали стойността на низов или числов израз може да се преобразува до типа <emph>Date</emph>."
+msgid "Returns the upper boundary of an array."
+msgstr "Връща горната граница на масив."
-#: 03102300.xhp
+#: 03103000.xhp
msgctxt ""
-"03102300.xhp\n"
-"hd_id3153824\n"
+"03103000.xhp\n"
+"hd_id3150984\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03102300.xhp
+#: 03103000.xhp
msgctxt ""
-"03102300.xhp\n"
-"par_id3147573\n"
+"03103000.xhp\n"
+"par_id3149415\n"
"4\n"
"help.text"
-msgid "IsDate (Expression)"
-msgstr "IsDate (Expression)"
+msgid "UBound (ArrayName [, Dimension])"
+msgstr "UBound (ArrayName [, Dimension])"
-#: 03102300.xhp
+#: 03103000.xhp
msgctxt ""
-"03102300.xhp\n"
-"hd_id3143270\n"
+"03103000.xhp\n"
+"hd_id3153897\n"
"5\n"
"help.text"
msgid "Return value:"
msgstr "Връщана стойност:"
-#: 03102300.xhp
+#: 03103000.xhp
msgctxt ""
-"03102300.xhp\n"
-"par_id3147560\n"
+"03103000.xhp\n"
+"par_id3149670\n"
"6\n"
"help.text"
-msgid "Bool"
-msgstr "Bool"
+msgid "Integer"
+msgstr "Integer"
-#: 03102300.xhp
+#: 03103000.xhp
msgctxt ""
-"03102300.xhp\n"
-"hd_id3148947\n"
+"03103000.xhp\n"
+"hd_id3154347\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Параметри:"
-#: 03102300.xhp
+#: 03103000.xhp
msgctxt ""
-"03102300.xhp\n"
-"par_id3145069\n"
+"03103000.xhp\n"
+"par_id3153381\n"
"8\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 "<emph>Expression:</emph> числов или низов израз, който да бъде проверен. Ако изразът може да бъде преобразуван към дата, функцията връща <emph>True</emph>, в противен случай – <emph>False</emph>."
+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 "<emph>ArrayName:</emph> името на масива, за който трябва да се намери горната (<emph>Ubound</emph>) или долната (<emph>LBound</emph>) граница на индексите."
-#: 03102300.xhp
+#: 03103000.xhp
msgctxt ""
-"03102300.xhp\n"
-"hd_id3150447\n"
+"03103000.xhp\n"
+"par_id3148797\n"
"9\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "<emph>[Dimension]:</emph> Integer that specifies which dimension to return the upper(<emph>Ubound</emph>) or lower (<emph>LBound</emph>) boundary for. If no value is specified, the boundary of the first dimension is returned."
+msgstr "<emph>[Dimension]:</emph> цяло число, което указва за кое измерение да се намери горната (<emph>Ubound</emph>) или долната (<emph>LBound</emph>) граница. Ако не е зададена стойност, се подразбира първото измерение."
-#: 03102300.xhp
+#: 03103000.xhp
msgctxt ""
-"03102300.xhp\n"
-"par_id3150869\n"
-"13\n"
+"03103000.xhp\n"
+"hd_id3153192\n"
+"10\n"
"help.text"
-msgid "Print IsDate(sDateVar) ' Returns True"
-msgstr "Print IsDate(sDateVar) ' Връща True"
+msgid "Example:"
+msgstr "Пример:"
-#: 03102300.xhp
+#: 03103000.xhp
msgctxt ""
-"03102300.xhp\n"
-"par_id3147288\n"
-"15\n"
+"03103000.xhp\n"
+"par_id3152596\n"
+"18\n"
"help.text"
-msgid "Print IsDate(sDateVar) ' Returns False"
-msgstr "Print IsDate(sDateVar) ' Връща False"
+msgid "Print LBound(sVar()) ' Returns 10"
+msgstr "Print LBound(sVar()) ' Връща 10"
-#: 03020400.xhp
+#: 03103000.xhp
msgctxt ""
-"03020400.xhp\n"
-"tit\n"
+"03103000.xhp\n"
+"par_id3153138\n"
+"19\n"
"help.text"
-msgid "Managing Files"
-msgstr "Управление на файлове"
+msgid "Print UBound(sVar()) ' Returns 20"
+msgstr "Print UBound(sVar()) ' Връща 20"
-#: 03020400.xhp
+#: 03103000.xhp
msgctxt ""
-"03020400.xhp\n"
-"hd_id3145136\n"
-"1\n"
+"03103000.xhp\n"
+"par_id3149665\n"
+"20\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020400.xhp\" name=\"Managing Files\">Managing Files</link>"
-msgstr "<link href=\"text/sbasic/shared/03020400.xhp\" name=\"Управление на файлове\">Управление на файлове</link>"
+msgid "Print LBound(sVar(),2) ' Returns 5"
+msgstr "Print LBound(sVar(), 2) ' Връща 5"
-#: 03020400.xhp
+#: 03103000.xhp
msgctxt ""
-"03020400.xhp\n"
-"par_id3147264\n"
-"2\n"
+"03103000.xhp\n"
+"par_id3147214\n"
+"21\n"
"help.text"
-msgid "The functions and statements for managing files are described here."
-msgstr "Тук са описани функции и оператори за управление на файлове."
+msgid "Print UBound(sVar(),2) ' Returns 70"
+msgstr "Print UBound(sVar(), 2) ' Връща 70"
-#: 03100100.xhp
+#: 03103100.xhp
msgctxt ""
-"03100100.xhp\n"
+"03103100.xhp\n"
"tit\n"
"help.text"
-msgid "CBool Function [Runtime]"
-msgstr "Функция CBool [динамична]"
+msgid "Let Statement [Runtime]"
+msgstr "Оператор Let [динамичен]"
-#: 03100100.xhp
+#: 03103100.xhp
msgctxt ""
-"03100100.xhp\n"
-"bm_id3150616\n"
+"03103100.xhp\n"
+"bm_id3147242\n"
"help.text"
-msgid "<bookmark_value>CBool function</bookmark_value>"
-msgstr "<bookmark_value>CBool, функция</bookmark_value>"
+msgid "<bookmark_value>Let statement</bookmark_value>"
+msgstr "<bookmark_value>Let, оператор</bookmark_value>"
-#: 03100100.xhp
+#: 03103100.xhp
msgctxt ""
-"03100100.xhp\n"
-"hd_id3150616\n"
+"03103100.xhp\n"
+"hd_id3147242\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03100100.xhp\" name=\"CBool Function [Runtime]\">CBool Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03100100.xhp\" name=\"Функция CBool [динамична]\">Функция CBool [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03103100.xhp\" name=\"Let Statement [Runtime]\">Let Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03103100.xhp\" name=\"Оператор Let [динамичен]\">Оператор Let [динамичен]</link>"
-#: 03100100.xhp
+#: 03103100.xhp
msgctxt ""
-"03100100.xhp\n"
-"par_id3145136\n"
+"03103100.xhp\n"
+"par_id3149233\n"
"2\n"
"help.text"
-msgid "Converts a string comparison or numeric comparison to a Boolean expression, or converts a single numeric expression to a Boolean expression."
-msgstr "Преобразува низово или числово сравнение или единичен числов израз към стойност от тип Boolean."
+msgid "Assigns a value to a variable."
+msgstr "Присвоява стойност на променлива."
-#: 03100100.xhp
+#: 03103100.xhp
msgctxt ""
-"03100100.xhp\n"
-"hd_id3153345\n"
+"03103100.xhp\n"
+"hd_id3153127\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03100100.xhp
+#: 03103100.xhp
msgctxt ""
-"03100100.xhp\n"
-"par_id3149514\n"
+"03103100.xhp\n"
+"par_id3154285\n"
"4\n"
"help.text"
-msgid "CBool (Expression1 {= | <> | < | > | <= | >=} Expression2) or CBool (Number)"
-msgstr "CBool (Expression1 {= | <> | < | > | <= | >=} Expression2) или CBool (Number)"
+msgid "[Let] VarName=Expression"
+msgstr "[Let] VarName=Expression"
-#: 03100100.xhp
+#: 03103100.xhp
msgctxt ""
-"03100100.xhp\n"
-"hd_id3156152\n"
+"03103100.xhp\n"
+"hd_id3148944\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Връщана стойност:"
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 03100100.xhp
+#: 03103100.xhp
msgctxt ""
-"03100100.xhp\n"
-"par_id3155419\n"
+"03103100.xhp\n"
+"par_id3147560\n"
"6\n"
"help.text"
-msgid "Bool"
-msgstr "Bool"
+msgid "<emph>VarName:</emph> Variable that you want to assign a value to. Value and variable type must be compatible."
+msgstr "<emph>VarName:</emph> променлива, на която да бъде присвоена стойност. Стойността трябва да е съвместима с типа на променливата."
-#: 03100100.xhp
+#: 03103100.xhp
msgctxt ""
-"03100100.xhp\n"
-"hd_id3147530\n"
+"03103100.xhp\n"
+"par_id3148451\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "As in most BASIC dialects, the keyword <emph>Let</emph> is optional."
+msgstr "Както е в повечето диалекти на BASIC, ключовата дума <emph>Let</emph> не е задължителна."
-#: 03100100.xhp
+#: 03103100.xhp
msgctxt ""
-"03100100.xhp\n"
-"par_id3156344\n"
+"03103100.xhp\n"
+"hd_id3145785\n"
"8\n"
"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any string or numeric expressions that you want to compare. If the expressions match, the <emph>CBool</emph> function returns <emph>True</emph>, otherwise <emph>False</emph> is returned."
-msgstr "<emph>Expression1, Expression2:</emph> низови или числови, които искате да бъдат сравнени. Ако си съответстват, функцията <emph>CBool</emph> връща <emph>True</emph>, в противен случай – <emph>False</emph>."
+msgid "Example:"
+msgstr "Пример:"
-#: 03100100.xhp
+#: 03103100.xhp
msgctxt ""
-"03100100.xhp\n"
-"par_id3149655\n"
-"9\n"
+"03103100.xhp\n"
+"par_id3152939\n"
+"12\n"
"help.text"
-msgid "<emph>Number:</emph> Any numeric expression that you want to convert. If the expression equals 0, <emph>False</emph> is returned, otherwise <emph>True</emph> is returned."
-msgstr "<emph>Number:</emph> числов израз, който да бъде преобразуван. Ако стойността му е 0, се връща <emph>False</emph>, в противен случай – <emph>True</emph>."
+msgid "MsgBox Len(sText) ' returns 9"
+msgstr "MsgBox Len(sText) ' връща 9"
-#: 03100100.xhp
+#: 03103200.xhp
msgctxt ""
-"03100100.xhp\n"
-"par_id3145171\n"
-"10\n"
+"03103200.xhp\n"
+"tit\n"
"help.text"
-msgid "The following example uses the <emph>CBool</emph> function to evaluate the value that is returned by the <emph>Instr</emph> function. The function checks if the word \"and\" is found in the sentence that was entered by the user."
-msgstr "В следващия пример с функцията <emph>CBool</emph> се оценява стойността, върната от функцията <emph>Instr</emph>. Функцията проверява дали е открита думата „пет“ в изречение, въведено от потребителя."
+msgid "Option Base Statement [Runtime]"
+msgstr "Оператор Option Base [динамичен]"
-#: 03100100.xhp
+#: 03103200.xhp
msgctxt ""
-"03100100.xhp\n"
-"hd_id3156212\n"
-"11\n"
+"03103200.xhp\n"
+"bm_id3155805\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "<bookmark_value>Option Base statement</bookmark_value>"
+msgstr "<bookmark_value>Option Base, оператор</bookmark_value>"
-#: 03100100.xhp
+#: 03103200.xhp
msgctxt ""
-"03100100.xhp\n"
-"par_id3155132\n"
-"14\n"
+"03103200.xhp\n"
+"hd_id3155805\n"
+"1\n"
"help.text"
-msgid "sText = InputBox(\"Please enter a short sentence:\")"
-msgstr "sText = InputBox(\"Моля, въведете кратко изречение:\")"
+msgid "<link href=\"text/sbasic/shared/03103200.xhp\" name=\"Option Base Statement [Runtime]\">Option Base Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03103200.xhp\" name=\"Оператор Option Base [динамичен]\">Оператор Option Base [динамичен]</link>"
-#: 03100100.xhp
+#: 03103200.xhp
msgctxt ""
-"03100100.xhp\n"
-"par_id3155855\n"
-"15\n"
+"03103200.xhp\n"
+"par_id3147242\n"
+"2\n"
"help.text"
-msgid "' Proof if the word »and« appears in the sentence."
-msgstr "' Проверяваме дали думата \"пет\" се съдържа в изречението."
+msgid "Defines the default lower boundary for arrays as 0 or 1."
+msgstr "Дефинира подразбираната долната граница за масиви като 0 или 1."
-#: 03100100.xhp
+#: 03103200.xhp
msgctxt ""
-"03100100.xhp\n"
-"par_id3146984\n"
-"16\n"
+"03103200.xhp\n"
+"hd_id3150771\n"
+"3\n"
"help.text"
-msgid "' Instead of the command line"
-msgstr "' Вместо реда"
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 03100100.xhp
+#: 03103200.xhp
msgctxt ""
-"03100100.xhp\n"
-"par_id3148576\n"
-"17\n"
+"03103200.xhp\n"
+"par_id3147573\n"
+"4\n"
"help.text"
-msgid "' If Instr(Input, \"and\")<>0 Then..."
-msgstr "' If Instr(Input, \"пет\")<>0 Then…"
+msgid "Option Base { 0 | 1}"
+msgstr "Option Base { 0 | 1}"
-#: 03100100.xhp
+#: 03103200.xhp
msgctxt ""
-"03100100.xhp\n"
-"par_id3154014\n"
-"18\n"
+"03103200.xhp\n"
+"hd_id3145315\n"
+"5\n"
"help.text"
-msgid "' the CBool function is applied as follows:"
-msgstr "' прилагаме функцията CBool както следва:"
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 03100100.xhp
+#: 03103200.xhp
msgctxt ""
-"03100100.xhp\n"
-"par_id3155413\n"
-"19\n"
+"03103200.xhp\n"
+"par_id3147229\n"
+"6\n"
"help.text"
-msgid "If CBool(Instr(sText, \"and\")) Then"
-msgstr "If CBool(Instr(sText, \"пет\")) Then"
+msgid "This statement must be added before the executable program code in a module."
+msgstr "Този оператор трябва да бъде поставен в модул преди изпълнимия програмен код."
-#: 03100100.xhp
+#: 03103200.xhp
msgctxt ""
-"03100100.xhp\n"
-"par_id3152940\n"
-"20\n"
+"03103200.xhp\n"
+"hd_id3150870\n"
+"7\n"
"help.text"
-msgid "MsgBox \"The word »and« appears in the sentence you entered!\""
-msgstr "MsgBox \"Думата „пет“ се среща във въведеното от вас изречение!\""
+msgid "Example:"
+msgstr "Пример:"
-#: 03020201.xhp
+#: 03103300.xhp
msgctxt ""
-"03020201.xhp\n"
+"03103300.xhp\n"
"tit\n"
"help.text"
-msgid "Get Statement [Runtime]"
-msgstr "Оператор Get [динамичен]"
+msgid "Option Explicit Statement [Runtime]"
+msgstr "Оператор Option Explicit [динамичен]"
-#: 03020201.xhp
+#: 03103300.xhp
msgctxt ""
-"03020201.xhp\n"
-"bm_id3154927\n"
+"03103300.xhp\n"
+"bm_id3145090\n"
"help.text"
-msgid "<bookmark_value>Get statement</bookmark_value>"
-msgstr "<bookmark_value>Get, оператор</bookmark_value>"
+msgid "<bookmark_value>Option Explicit statement</bookmark_value>"
+msgstr "<bookmark_value>Option Explicit, оператор</bookmark_value>"
-#: 03020201.xhp
+#: 03103300.xhp
msgctxt ""
-"03020201.xhp\n"
-"hd_id3154927\n"
+"03103300.xhp\n"
+"hd_id3145090\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020201.xhp\">Get Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03020201.xhp\">Оператор Get [динамичен]</link>"
+msgid "<link href=\"text/sbasic/shared/03103300.xhp\" name=\"Option Explicit Statement [Runtime]\">Option Explicit Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03103300.xhp\" name=\"Оператор Option Explicit [динамичен]\">Оператор Option Explicit [динамичен]</link>"
-#: 03020201.xhp
+#: 03103300.xhp
msgctxt ""
-"03020201.xhp\n"
-"par_id3145069\n"
+"03103300.xhp\n"
+"par_id3148538\n"
"2\n"
"help.text"
-msgid "Reads a record from a relative file, or a sequence of bytes from a binary file, into a variable."
-msgstr "Прочита в променлива запис от файл с произволен достъп или последователност от байтове от двоичен файл."
+msgid "Specifies that every variable in the program code must be explicitly declared with the Dim statement."
+msgstr "Указва, че всяка променлива в кода на програмата трябва да е явно обявена с оператора Dim."
-#: 03020201.xhp
+#: 03103300.xhp
msgctxt ""
-"03020201.xhp\n"
-"par_id3154346\n"
+"03103300.xhp\n"
+"hd_id3149763\n"
"3\n"
"help.text"
-msgid "See also: <link href=\"text/sbasic/shared/03020204.xhp\" name=\"PUT\"><item type=\"literal\">PUT</item></link> Statement"
-msgstr "Виж също: оператор <link href=\"text/sbasic/shared/03020204.xhp\" name=\"PUT\"><item type=\"literal\">PUT</item></link>"
-
-#: 03020201.xhp
-msgctxt ""
-"03020201.xhp\n"
-"hd_id3150358\n"
-"4\n"
-"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03020201.xhp
+#: 03103300.xhp
msgctxt ""
-"03020201.xhp\n"
-"par_id3150792\n"
-"5\n"
+"03103300.xhp\n"
+"par_id3149514\n"
+"4\n"
"help.text"
-msgid "Get [#] FileNumber As Integer, [Position], Variable"
-msgstr "Get [#] FileNumber As Integer, [Position], Variable"
+msgid "Option Explicit"
+msgstr "Option Explicit"
-#: 03020201.xhp
+#: 03103300.xhp
msgctxt ""
-"03020201.xhp\n"
-"hd_id3154138\n"
-"6\n"
+"03103300.xhp\n"
+"hd_id3145315\n"
+"5\n"
"help.text"
msgid "Parameters:"
msgstr "Параметри:"
-#: 03020201.xhp
-msgctxt ""
-"03020201.xhp\n"
-"par_id3150448\n"
-"7\n"
-"help.text"
-msgid "<emph>FileNumber:</emph> Any integer expression that determines the file number."
-msgstr "<emph>FileNumber:</emph> целочислен израз, който определя номера на файла."
-
-#: 03020201.xhp
-msgctxt ""
-"03020201.xhp\n"
-"par_id3154684\n"
-"8\n"
-"help.text"
-msgid "<emph>Position:</emph> For files opened in Random mode, <emph>Position</emph> is the number of the record that you want to read."
-msgstr "<emph>Position:</emph> за файлове, отворени в режим Random, <emph>Position</emph> е номерът на записа, който искате да прочетете."
-
-#: 03020201.xhp
-msgctxt ""
-"03020201.xhp\n"
-"par_id3153768\n"
-"9\n"
-"help.text"
-msgid "For files opened in Binary mode, <emph>Position</emph> is the byte position in the file where the reading starts."
-msgstr "За файлове, отворени в режим Binary, <emph>Position</emph> е позицията във файла на байта, от който започва четенето."
-
-#: 03020201.xhp
+#: 03103300.xhp
msgctxt ""
-"03020201.xhp\n"
-"par_id3147319\n"
-"10\n"
+"03103300.xhp\n"
+"par_id3145172\n"
+"6\n"
"help.text"
-msgid "If <emph>Position</emph> is omitted, the current position or the current data record of the file is used."
-msgstr "Ако параметърът <emph>Position</emph> бъце пропуснат, ще се използва текущата позиция или текущият запис от файла."
+msgid "This statement must be added before the executable program code in a module."
+msgstr "Този оператор трябва да бъде поставен в модул преди изпълнимия програмен код."
-#: 03020201.xhp
+#: 03103300.xhp
msgctxt ""
-"03020201.xhp\n"
-"par_id3149484\n"
-"11\n"
+"03103300.xhp\n"
+"hd_id3125864\n"
+"7\n"
"help.text"
-msgid "Variable: Name of the variable to be read. With the exception of object variables, you can use any variable type."
-msgstr "<emph>Variable</emph>: име на променливата, чиято стойност ще бъде прочетена. Можете да изберете всякакъв тип прпменлива освен обект."
+msgid "Example:"
+msgstr "Пример:"
-#: 03020201.xhp
+#: 03103300.xhp
msgctxt ""
-"03020201.xhp\n"
-"hd_id3153144\n"
+"03103300.xhp\n"
+"par_id3145787\n"
"12\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "For i% = 1 To 10 ' This results in a run-time error"
+msgstr "For i% = 1 To 10 ' Тук възниква грешка при изпълнение"
-#: 03020201.xhp
+#: 03103400.xhp
msgctxt ""
-"03020201.xhp\n"
-"par_id3155307\n"
-"15\n"
+"03103400.xhp\n"
+"tit\n"
"help.text"
-msgid "Dim sText As Variant ' Must be a variant"
-msgstr "Dim sText As Variant ' Трябва да бъде от тип Variant"
+msgid "Public Statement [Runtime]"
+msgstr "Оператор Public [динамичен]"
-#: 03020201.xhp
+#: 03103400.xhp
msgctxt ""
-"03020201.xhp\n"
-"par_id3149411\n"
-"21\n"
+"03103400.xhp\n"
+"bm_id3153311\n"
"help.text"
-msgid "Seek #iNumber,1 ' Position at beginning"
-msgstr "Seek #iNumber, 1 ' Позиционираме в началото"
+msgid "<bookmark_value>Public statement</bookmark_value>"
+msgstr "<bookmark_value>Public, оператор</bookmark_value>"
-#: 03020201.xhp
+#: 03103400.xhp
msgctxt ""
-"03020201.xhp\n"
-"par_id3153158\n"
-"22\n"
+"03103400.xhp\n"
+"hd_id3153311\n"
+"1\n"
"help.text"
-msgid "Put #iNumber,, \"This is the first line of text\" ' Fill line with text"
-msgstr "Put #iNumber,, \"Това е първият ред с текст\" ' Запълваме ред с текст"
+msgid "<link href=\"text/sbasic/shared/03103400.xhp\" name=\"Public Statement [Runtime]\">Public Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03103400.xhp\" name=\"Оператор Public [динамичен]\">Оператор Public [динамичен]</link>"
-#: 03020201.xhp
+#: 03103400.xhp
msgctxt ""
-"03020201.xhp\n"
-"par_id3148457\n"
-"23\n"
+"03103400.xhp\n"
+"par_id3150669\n"
+"2\n"
"help.text"
-msgid "Put #iNumber,, \"This is the second line of text\""
-msgstr "Put #iNumber,, \"Това е вторият ред с текст\""
+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 "Задава размера на променлива или масив на ниво модул (т.е. не в процедура или функция), така че променливата или масивът е валиден във всички библиотеки и модули."
-#: 03020201.xhp
+#: 03103400.xhp
msgctxt ""
-"03020201.xhp\n"
-"par_id3150715\n"
-"24\n"
+"03103400.xhp\n"
+"hd_id3150772\n"
+"3\n"
"help.text"
-msgid "Put #iNumber,, \"This is the third line of text\""
-msgstr "Put #iNumber,, \"Това е третият ред с текст\""
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 03020201.xhp
+#: 03103400.xhp
msgctxt ""
-"03020201.xhp\n"
-"par_id3155938\n"
-"33\n"
+"03103400.xhp\n"
+"par_id3155341\n"
+"4\n"
"help.text"
-msgid "Put #iNumber,,\"This is a new text\""
-msgstr "Put #iNumber,, \"Това е нов текст\""
+msgid "Public VarName[(start To end)] [As VarType][, VarName2[(start To end)] [As VarType][,...]]"
+msgstr "Public VarName[(start To end)] [As VarType][, VarName2[(start To end)] [As VarType][,...]]"
-#: 03020201.xhp
+#: 03103400.xhp
msgctxt ""
-"03020201.xhp\n"
-"par_id3146916\n"
-"36\n"
+"03103400.xhp\n"
+"hd_id3145315\n"
+"5\n"
"help.text"
-msgid "Put #iNumber,20,\"This is the text in record 20\""
-msgstr "Put #iNumber, 20, \"Това е текстът в запис 20\""
+msgid "Example:"
+msgstr "Пример:"
-#: 03102700.xhp
+#: 03103450.xhp
msgctxt ""
-"03102700.xhp\n"
+"03103450.xhp\n"
"tit\n"
"help.text"
-msgid "IsNumeric Function [Runtime]"
-msgstr "Функция IsNumeric [динамична]"
+msgid "Global Statement [Runtime]"
+msgstr "Оператор Global [динамичен]"
-#: 03102700.xhp
+#: 03103450.xhp
msgctxt ""
-"03102700.xhp\n"
-"bm_id3145136\n"
+"03103450.xhp\n"
+"bm_id3159201\n"
"help.text"
-msgid "<bookmark_value>IsNumeric function</bookmark_value>"
-msgstr "<bookmark_value>IsNumeric, функция</bookmark_value>"
+msgid "<bookmark_value>Global statement</bookmark_value>"
+msgstr "<bookmark_value>Global, оператор</bookmark_value>"
-#: 03102700.xhp
+#: 03103450.xhp
msgctxt ""
-"03102700.xhp\n"
-"hd_id3145136\n"
+"03103450.xhp\n"
+"hd_id3159201\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03102700.xhp\" name=\"IsNumeric Function [Runtime]\">IsNumeric Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03102700.xhp\" name=\"Функция IsNumeric [динамична]\">Функция IsNumeric [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03103450.xhp\" name=\"Global Statement [Runtime]\">Global Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03103450.xhp\" name=\"Оператор Global [динамичен]\">Оператор Global [динамичен]</link>"
-#: 03102700.xhp
+#: 03103450.xhp
msgctxt ""
-"03102700.xhp\n"
+"03103450.xhp\n"
"par_id3149177\n"
"2\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 "Проверява дали изразът е число. Ако стойността е <link href=\"text/sbasic/shared/00000002.xhp#dezimal\" name=\"число\">число</link>, функцията връща True, в противен случай – False."
+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 "Задава размера на променлива или масив на глобално ниво (т.е. не в процедура или функция), така че променливата или масивът е валиден във всички библиотеки и модули за текущата сесия."
-#: 03102700.xhp
+#: 03103450.xhp
msgctxt ""
-"03102700.xhp\n"
-"hd_id3149415\n"
+"03103450.xhp\n"
+"hd_id3143270\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03102700.xhp
+#: 03103450.xhp
msgctxt ""
-"03102700.xhp\n"
+"03103450.xhp\n"
"par_id3150771\n"
"4\n"
"help.text"
-msgid "IsNumeric (Var)"
-msgstr "IsNumeric (Var)"
+msgid "Global VarName[(start To end)] [As VarType][, VarName2[(start To end)] [As VarType][,...]]"
+msgstr "Global VarName[(start To end)] [As VarType][, VarName2[(start To end)] [As VarType][,...]]"
-#: 03102700.xhp
+#: 03103450.xhp
msgctxt ""
-"03102700.xhp\n"
-"hd_id3148685\n"
+"03103450.xhp\n"
+"hd_id3156152\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Връщана стойност:"
-
-#: 03102700.xhp
-msgctxt ""
-"03102700.xhp\n"
-"par_id3148944\n"
-"6\n"
-"help.text"
-msgid "Bool"
-msgstr "Bool"
-
-#: 03102700.xhp
-msgctxt ""
-"03102700.xhp\n"
-"hd_id3148947\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
-
-#: 03102700.xhp
-msgctxt ""
-"03102700.xhp\n"
-"par_id3154760\n"
-"8\n"
-"help.text"
-msgid "<emph>Var:</emph> Any expression that you want to test."
-msgstr "<emph>Var:</emph> израз, който да бъде проверен."
-
-#: 03102700.xhp
-msgctxt ""
-"03102700.xhp\n"
-"hd_id3149656\n"
-"9\n"
-"help.text"
msgid "Example:"
msgstr "Пример:"
-#: 03102700.xhp
-msgctxt ""
-"03102700.xhp\n"
-"par_id3147230\n"
-"13\n"
-"help.text"
-msgid "Print IsNumeric(vVar) ' Returns False"
-msgstr "Print IsNumeric(vVar) ' Връща False"
-
-#: 03102700.xhp
-msgctxt ""
-"03102700.xhp\n"
-"par_id3154910\n"
-"15\n"
-"help.text"
-msgid "Print IsNumeric(vVar) ' Returns True"
-msgstr "Print IsNumeric(vVar) ' Връща True"
-
-#: 03104100.xhp
+#: 03103500.xhp
msgctxt ""
-"03104100.xhp\n"
+"03103500.xhp\n"
"tit\n"
"help.text"
-msgid "Optional (in Function Statement) [Runtime]"
-msgstr "Optional (в оператор Function) [динамичен]"
+msgid "Static Statement [Runtime]"
+msgstr "Оператор Static [динамичен]"
-#: 03104100.xhp
+#: 03103500.xhp
msgctxt ""
-"03104100.xhp\n"
-"bm_id3149205\n"
+"03103500.xhp\n"
+"bm_id3149798\n"
"help.text"
-msgid "<bookmark_value>Optional function</bookmark_value>"
-msgstr "<bookmark_value>Optional, функция</bookmark_value>"
+msgid "<bookmark_value>Static statement</bookmark_value>"
+msgstr "<bookmark_value>Static, оператор</bookmark_value>"
-#: 03104100.xhp
+#: 03103500.xhp
msgctxt ""
-"03104100.xhp\n"
-"hd_id3149205\n"
+"03103500.xhp\n"
+"hd_id3149798\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03104100.xhp\" name=\"Optional (in Function Statement) [Runtime]\">Optional (in Function Statement) [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03104100.xhp\" name=\"Optional (в оператор Function) [динамичен]\">Optional (в оператор Function) [динамичен]</link>"
+msgid "<link href=\"text/sbasic/shared/03103500.xhp\" name=\"Static Statement [Runtime]\">Static Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03103500.xhp\" name=\"Оператор Static [динамичен]\">Оператор Static [динамичен]</link>"
-#: 03104100.xhp
+#: 03103500.xhp
msgctxt ""
-"03104100.xhp\n"
-"par_id3143267\n"
+"03103500.xhp\n"
+"par_id3153311\n"
"2\n"
"help.text"
-msgid "Allows you to define parameters that are passed to a function as optional."
-msgstr "Позволява ви да дефинирате предавани на функцията параметри като незадължителни."
+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 "Декларира променлива или масив на ниво подпрограма (процедура или функция), така че стойностите на променливата или масива да се запазват след изход от подпрограмата. Важат и правилата за оператора Dim."
-#: 03104100.xhp
+#: 03103500.xhp
msgctxt ""
-"03104100.xhp\n"
-"par_id3155419\n"
+"03103500.xhp\n"
+"par_id3147264\n"
"3\n"
"help.text"
-msgid "See also: <link href=\"text/sbasic/shared/03104000.xhp\" name=\"IsMissing\">IsMissing</link>"
-msgstr "Виж също: <link href=\"text/sbasic/shared/03104000.xhp\" name=\"IsMissing\">IsMissing</link>"
+msgid "The <emph>Static statement</emph> cannot be used to define variable arrays. Arrays must be specified according to a fixed size."
+msgstr "Операторът <emph>Static</emph> не може да се използва за дефиниране на масиви с променлива размер. Размерът на масивите трябва да е фиксиран."
-#: 03104100.xhp
+#: 03103500.xhp
msgctxt ""
-"03104100.xhp\n"
-"hd_id3153824\n"
+"03103500.xhp\n"
+"hd_id3149657\n"
"4\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03104100.xhp
+#: 03103500.xhp
msgctxt ""
-"03104100.xhp\n"
-"par_id3159157\n"
+"03103500.xhp\n"
+"par_id3150400\n"
"5\n"
"help.text"
-msgid "Function MyFunction(Text1 As String, Optional Arg2, Optional Arg3)"
-msgstr "Function MyFunction(Text1 As String, Optional Arg2, Optional Arg3)"
+msgid "Static VarName[(start To end)] [As VarType], VarName2[(start To end)] [As VarType], ..."
+msgstr "Static VarName[(start To end)] [As VarType], VarName2[(start To end)] [As VarType], ..."
-#: 03104100.xhp
+#: 03103500.xhp
msgctxt ""
-"03104100.xhp\n"
-"hd_id3145610\n"
-"7\n"
+"03103500.xhp\n"
+"hd_id3148452\n"
+"6\n"
"help.text"
-msgid "Examples:"
-msgstr "Примери:"
+msgid "Example:"
+msgstr "Пример:"
-#: 03104100.xhp
+#: 03103500.xhp
msgctxt ""
-"03104100.xhp\n"
-"par_id3154347\n"
-"8\n"
+"03103500.xhp\n"
+"par_id3150870\n"
+"11\n"
"help.text"
-msgid "Result = MyFunction(\"Here\", 1, \"There\") ' all arguments are passed."
-msgstr "Result = MyFunction(\"Тук\", 1, \"Там\") ' Предават се всички аргументи."
+msgid "MsgBox iResult,0,\"The answer is\""
+msgstr "MsgBox iResult, 0, \"Резултатът е\""
-#: 03104100.xhp
+#: 03103500.xhp
msgctxt ""
-"03104100.xhp\n"
-"par_id3146795\n"
-"9\n"
+"03103500.xhp\n"
+"par_id3151115\n"
+"15\n"
"help.text"
-msgid "Result = MyFunction(\"Test\", ,1) ' second argument is missing."
-msgstr "Result = MyFunction(\"Тест\", , 1) ' Вторият аргумент липсва."
+msgid "' Function for initialization of the static variable"
+msgstr "' Функция за инициализиране на статичната променлива"
-#: 03104100.xhp
+#: 03103500.xhp
msgctxt ""
-"03104100.xhp\n"
-"par_id3153897\n"
-"10\n"
+"03103500.xhp\n"
+"par_id1057161\n"
"help.text"
-msgid "See also <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Examples\">Examples</link>."
-msgstr "Виж също <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Примери\">Примери</link>."
+msgid "Const iMinimum As Integer = 40 ' minimum return value of this function"
+msgstr "Const iMinimum As Integer = 40 ' минимален резултат на функцията"
-#: 03090406.xhp
+#: 03103500.xhp
msgctxt ""
-"03090406.xhp\n"
+"03103500.xhp\n"
+"par_id580462\n"
+"help.text"
+msgid "If iInit = 0 Then ' check if initialized"
+msgstr "If iInit = 0 Then ' проверка дали е инициализирана"
+
+#: 03103600.xhp
+msgctxt ""
+"03103600.xhp\n"
"tit\n"
"help.text"
-msgid "Function Statement [Runtime]"
-msgstr "Оператор Function [динамичен]"
+msgid "TypeName Function; VarType Function[Runtime]"
+msgstr "Функции TypeName и VarType [динамични]"
-#: 03090406.xhp
+#: 03103600.xhp
msgctxt ""
-"03090406.xhp\n"
-"bm_id3153346\n"
+"03103600.xhp\n"
+"bm_id3143267\n"
"help.text"
-msgid "<bookmark_value>Function statement</bookmark_value>"
-msgstr "<bookmark_value>Function, оператор</bookmark_value>"
+msgid "<bookmark_value>TypeName function</bookmark_value><bookmark_value>VarType function</bookmark_value>"
+msgstr "<bookmark_value>TypeName, функция</bookmark_value><bookmark_value>VarType function</bookmark_value>"
-#: 03090406.xhp
+#: 03103600.xhp
msgctxt ""
-"03090406.xhp\n"
-"hd_id3153346\n"
+"03103600.xhp\n"
+"hd_id3143267\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090406.xhp\" name=\"Function Statement [Runtime]\">Function Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090406.xhp\" name=\"Оператор Function [динамичен]\">Оператор Function [динамичен]</link>"
+msgid "<link href=\"text/sbasic/shared/03103600.xhp\" name=\"TypeName Function; VarType Function[Runtime]\">TypeName Function; VarType Function[Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03103600.xhp\" name=\"Функции TypeName и VarType [динамични]\">Функции TypeName и VarType [динамични]</link>"
-#: 03090406.xhp
+#: 03103600.xhp
msgctxt ""
-"03090406.xhp\n"
-"par_id3159158\n"
+"03103600.xhp\n"
+"par_id3159157\n"
"2\n"
"help.text"
-msgid "Defines a subroutine that can be used as an expression to determine a return type."
-msgstr "Дефинира подпрограма, която може да бъде използвана като израз, определяйки и типа на връщаната стойност."
+msgid "Returns a string (TypeName) or a numeric value (VarType) that contains information for a variable."
+msgstr "Връща низ (TypeName) или числова стойност (VarType) с информация относно променлива."
-#: 03090406.xhp
+#: 03103600.xhp
msgctxt ""
-"03090406.xhp\n"
-"hd_id3145316\n"
+"03103600.xhp\n"
+"hd_id3153825\n"
"3\n"
"help.text"
-msgid "Syntax"
-msgstr "Синтаксис"
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 03090406.xhp
+#: 03103600.xhp
msgctxt ""
-"03090406.xhp\n"
-"par_id3148944\n"
+"03103600.xhp\n"
+"par_id3155341\n"
"4\n"
"help.text"
-msgid "see Parameter"
-msgstr "виж Параметри"
+msgid "TypeName (Variable)VarType (Variable)"
+msgstr "TypeName (Variable); VarType (Variable)"
-#: 03090406.xhp
+#: 03103600.xhp
msgctxt ""
-"03090406.xhp\n"
-"hd_id3154760\n"
+"03103600.xhp\n"
+"hd_id3145610\n"
"5\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "Return value:"
+msgstr "Връщана стойност:"
-#: 03090406.xhp
+#: 03103600.xhp
msgctxt ""
-"03090406.xhp\n"
-"par_id3156344\n"
+"03103600.xhp\n"
+"par_id3148947\n"
"6\n"
"help.text"
-msgid "Syntax"
-msgstr "Синтаксис"
+msgid "String; Integer"
+msgstr "String; Integer"
-#: 03090406.xhp
+#: 03103600.xhp
msgctxt ""
-"03090406.xhp\n"
-"par_id3149457\n"
+"03103600.xhp\n"
+"hd_id3146795\n"
"7\n"
"help.text"
-msgid "Function Name[(VarName1 [As Type][, VarName2 [As Type][,...]]]) [As Type]"
-msgstr "Function Name[(VarName1 [As Type][, VarName2 [As Type][,...]]]) [As Type]"
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 03090406.xhp
+#: 03103600.xhp
msgctxt ""
-"03090406.xhp\n"
-"par_id3153360\n"
+"03103600.xhp\n"
+"par_id3148664\n"
"8\n"
"help.text"
-msgid "statement block"
-msgstr "операторен блок"
+msgid "<emph>Variable:</emph> The variable that you want to determine the type of. You can use the following values:"
+msgstr "<emph>Variable:</emph> променливата, чийто тип да бъде определен. Може да използвате следните стойности:"
-#: 03090406.xhp
+#: 03103600.xhp
msgctxt ""
-"03090406.xhp\n"
-"par_id3148797\n"
+"03103600.xhp\n"
+"par_id3145171\n"
"9\n"
"help.text"
-msgid "[Exit Function]"
-msgstr "[Exit Function]"
+msgid "key word"
+msgstr "Ключова дума"
-#: 03090406.xhp
+#: 03103600.xhp
msgctxt ""
-"03090406.xhp\n"
-"par_id3145419\n"
+"03103600.xhp\n"
+"par_id3156212\n"
"10\n"
"help.text"
-msgid "statement block"
-msgstr "операторен блок"
+msgid "VarType"
+msgstr "VarType"
-#: 03090406.xhp
+#: 03103600.xhp
msgctxt ""
-"03090406.xhp\n"
-"par_id3150449\n"
+"03103600.xhp\n"
+"par_id3154684\n"
"11\n"
"help.text"
-msgid "End Function"
-msgstr "End Function"
+msgid "Variable type"
+msgstr "Тип на променливата"
-#: 03090406.xhp
+#: 03103600.xhp
msgctxt ""
-"03090406.xhp\n"
-"par_id3156281\n"
+"03103600.xhp\n"
+"par_id3151041\n"
"12\n"
"help.text"
-msgid "Parameter"
-msgstr "Параметър"
+msgid "Boolean"
+msgstr "Boolean"
-#: 03090406.xhp
+#: 03103600.xhp
msgctxt ""
-"03090406.xhp\n"
-"par_id3153193\n"
+"03103600.xhp\n"
+"par_id3153367\n"
"13\n"
"help.text"
-msgid "<emph>Name:</emph> Name of the subroutine to contain the value returned by the function."
-msgstr "<emph>Name:</emph> името на подпрограмата, която връща описаната стойност."
+msgid "11"
+msgstr "11"
-#: 03090406.xhp
+#: 03103600.xhp
msgctxt ""
-"03090406.xhp\n"
-"par_id3147229\n"
+"03103600.xhp\n"
+"par_id3148645\n"
"14\n"
"help.text"
-msgid "<emph>VarName:</emph> Parameter to be passed to the subroutine."
-msgstr "<emph>VarName:</emph> параметър, който се подава на подпрограмата."
+msgid "Boolean variable"
+msgstr "булева"
-#: 03090406.xhp
+#: 03103600.xhp
msgctxt ""
-"03090406.xhp\n"
-"par_id3147287\n"
+"03103600.xhp\n"
+"par_id3153138\n"
"15\n"
"help.text"
-msgid "<emph>Type:</emph> Type-declaration keyword."
-msgstr "<emph>Type:</emph> ключова дума за обявяване на тип."
+msgid "Date"
+msgstr "Дата"
-#: 03090406.xhp
+#: 03103600.xhp
msgctxt ""
-"03090406.xhp\n"
-"hd_id3163710\n"
+"03103600.xhp\n"
+"par_id3153363\n"
"16\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "7"
+msgstr ""
-#: 03090406.xhp
+#: 03103600.xhp
msgctxt ""
-"03090406.xhp\n"
-"par_id3152939\n"
-"21\n"
+"03103600.xhp\n"
+"par_id3155411\n"
+"17\n"
"help.text"
-msgid "For siStep = 0 To 10 ' Fill array with test data"
-msgstr "For siStep = 0 To 10 ' Запълваме масива с тестови данни"
+msgid "Date variable"
+msgstr "дата"
-#: 03090406.xhp
+#: 03103600.xhp
msgctxt ""
-"03090406.xhp\n"
-"par_id3154943\n"
-"32\n"
+"03103600.xhp\n"
+"par_id3146975\n"
+"18\n"
"help.text"
-msgid "' Linsearch searches a TextArray:sList() for a TextEntry:"
-msgstr "' Linsearch претърсва TextArray:sList() за TextEntry:"
+msgid "Double"
+msgstr "Double"
-#: 03090406.xhp
+#: 03103600.xhp
msgctxt ""
-"03090406.xhp\n"
-"par_id3155601\n"
-"33\n"
+"03103600.xhp\n"
+"par_id3150486\n"
+"19\n"
"help.text"
-msgid "' Return value Is the index of the entry Or 0 (Null)"
-msgstr "' Връщаната стойност е индексът на елемента или 0 (Null)"
+msgid "5"
+msgstr ""
-#: 03090406.xhp
+#: 03103600.xhp
msgctxt ""
-"03090406.xhp\n"
-"par_id3153707\n"
-"36\n"
+"03103600.xhp\n"
+"par_id3148616\n"
+"20\n"
"help.text"
-msgid "Exit For ' sItem found"
-msgstr "Exit For ' sItem е намерен"
+msgid "Double floating point variable"
+msgstr "плаваща запетая, двойна точност"
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"tit\n"
+"03103600.xhp\n"
+"par_id3148457\n"
+"21\n"
"help.text"
-msgid "Using Procedures and Functions"
-msgstr "Използване на процедури и функции"
+msgid "Integer"
+msgstr "Integer"
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"bm_id3149456\n"
+"03103600.xhp\n"
+"par_id3145647\n"
+"22\n"
"help.text"
-msgid "<bookmark_value>procedures</bookmark_value><bookmark_value>functions;using</bookmark_value><bookmark_value>variables;passing to procedures and functions</bookmark_value><bookmark_value>parameters;for procedures and functions</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 "<bookmark_value>процедури</bookmark_value><bookmark_value>функции;използване</bookmark_value><bookmark_value>променливи;подавани към процедури и функции</bookmark_value><bookmark_value>параметри;за процедури и функции</bookmark_value><bookmark_value>параметри;подавани по стойност или адрес</bookmark_value><bookmark_value>променливи;обхват</bookmark_value><bookmark_value>обхват на променливи</bookmark_value><bookmark_value>глобални променливи</bookmark_value><bookmark_value>публични променливи</bookmark_value><bookmark_value>частни променливи</bookmark_value><bookmark_value>функции;тип на връщаната стойност</bookmark_value><bookmark_value>тип на връщаната стойност на функции</bookmark_value>"
+msgid "2"
+msgstr ""
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"hd_id3149456\n"
-"1\n"
+"03103600.xhp\n"
+"par_id3154490\n"
+"23\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/01020300.xhp\">Using Procedures and Functions</link>"
-msgstr "<link href=\"text/sbasic/shared/01020300.xhp\">Използване на процедури и функции</link>"
+msgid "Integer variable"
+msgstr "целочислена"
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3150767\n"
-"2\n"
+"03103600.xhp\n"
+"par_id3149960\n"
+"24\n"
"help.text"
-msgid "The following describes the basic use of procedures and functions in $[officename] Basic."
-msgstr "По-долу са описани основите на работа с процедури и функции в $[officename] Basic."
+msgid "Long"
+msgstr "Long"
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3151215\n"
-"56\n"
+"03103600.xhp\n"
+"par_id3154513\n"
+"25\n"
"help.text"
-msgid "When you create a new module, $[officename] Basic automatically inserts a SUB called \"Main\". This default name has nothing to do with the order or the starting point of a $[officename] Basic project. You can also safely rename this SUB."
-msgstr "Когато създадете нов модул, $[officename] Basic автоматично вмъква процедура SUB с име „Main“. Това подразбирано име не е свързано с реда или началната точка за изпълнение на проект на $[officename] Basic. Можете безопасно да преименувате процедурата."
+msgid "3"
+msgstr ""
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id314756320\n"
+"03103600.xhp\n"
+"par_id3151318\n"
+"26\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 "За имената на публичните променливи, подпрограми и функции са в сила някои ограничение. Не трябва да използвате име, еднакво с това на модул от същата библиотека."
+msgid "Long integer variable"
+msgstr "дълга целочислена"
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3154124\n"
-"3\n"
+"03103600.xhp\n"
+"par_id3146972\n"
+"27\n"
"help.text"
-msgid "Procedures (SUBS) and functions (FUNCTIONS) help you maintaining a structured overview by separating a program into logical pieces."
-msgstr "Процедурите (SUB) и функциите (FUNCTIONS) ви помагат да структурирате програмата, като я разделите на логически части."
+msgid "Object"
+msgstr "Обект"
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3153193\n"
-"4\n"
+"03103600.xhp\n"
+"par_id3154482\n"
+"28\n"
"help.text"
-msgid "One benefit of procedures and functions is that, once you have developed a program code containing task components, you can use this code in another project."
-msgstr "Едно предимство на процедурите и функциите е това, че след като разработите програмен код, разделен на компоненти по задачи, можете да го използвате в друг проект."
+msgid "9"
+msgstr ""
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"hd_id3153770\n"
-"26\n"
+"03103600.xhp\n"
+"par_id3150323\n"
+"29\n"
"help.text"
-msgid "Passing Variables to Procedures (SUB) and Functions (FUNCTION)"
-msgstr "Подаване на променливи към процедури (SUB) и функции (FUNCTION)"
+msgid "Object variable"
+msgstr "обектна"
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3155414\n"
-"27\n"
+"03103600.xhp\n"
+"par_id3148405\n"
+"30\n"
"help.text"
-msgid "Variables can be passed to both procedures and functions. The SUB or FUNCTION must be declared to expect parameters:"
-msgstr "Възможно е подаване на променливи както към процедурите, така и към функциите. И в двата случая в подпрограмата трябва да се обяви, че тя приема параметри:"
+msgid "Single"
+msgstr "Single"
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3151114\n"
-"29\n"
+"03103600.xhp\n"
+"par_id3149020\n"
+"31\n"
"help.text"
-msgid "Program code"
-msgstr "Програмен код"
+msgid "4"
+msgstr ""
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3152577\n"
-"31\n"
+"03103600.xhp\n"
+"par_id3147341\n"
+"32\n"
"help.text"
-msgid "The SUB is called using the following syntax:"
-msgstr "Процедурите се извикват чрез следния синтаксис:"
+msgid "Single floating-point variable"
+msgstr "плаваща запетая, единична точност"
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3147124\n"
+"03103600.xhp\n"
+"par_id3155901\n"
"33\n"
"help.text"
-msgid "The parameters passed to a SUB must fit to those specified in the SUB declaration."
-msgstr "Параметрите, подадени на процедурата, трябва да съответстват на обявените в декларацията й."
+msgid "String"
+msgstr "String"
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3147397\n"
+"03103600.xhp\n"
+"par_id3155960\n"
"34\n"
"help.text"
-msgid "The same process applies to FUNCTIONS. 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 "Същото важи и за функциите. Освен това функцията винаги трябва да връща резултат. Той се задава чрез присвояване на стойност на името на функцията:"
+msgid "8"
+msgstr ""
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3156284\n"
-"36\n"
+"03103600.xhp\n"
+"par_id3146313\n"
+"35\n"
"help.text"
-msgid "Program code"
-msgstr "Програмен код"
+msgid "String variable"
+msgstr "низ"
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3145799\n"
-"37\n"
+"03103600.xhp\n"
+"par_id3145149\n"
+"36\n"
"help.text"
-msgid "FunctionName=Result"
-msgstr "ИмеНаФункция = Резултат"
+msgid "Variant"
+msgstr "Variant"
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3153839\n"
-"39\n"
+"03103600.xhp\n"
+"par_id3154021\n"
+"37\n"
"help.text"
-msgid "The FUNCTION is called using the following syntax:"
-msgstr "Обръщението към функция следва следния синтаксис:"
+msgid "12"
+msgstr "12"
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3146914\n"
-"40\n"
+"03103600.xhp\n"
+"par_id3145789\n"
+"38\n"
"help.text"
-msgid "Variable=FunctionName(Parameter1, Parameter2,...)"
-msgstr "Променлива=ИмеНаФункция(Параметър1, Параметър2,...)"
+msgid "Variant variable (can contain all types specified by the definition)"
+msgstr "вариантна (може да съдържа произволен тип според привоената стойност)"
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_idN107B3\n"
+"03103600.xhp\n"
+"par_id3148630\n"
+"39\n"
"help.text"
-msgid "You can also use the fully qualified name to call a procedure or function:<br/><item type=\"literal\">Library.Module.Macro()</item><br/> For example, to call the Autotext macro from the Gimmicks library, use the following command:<br/><item type=\"literal\">Gimmicks.AutoText.Main()</item>"
-msgstr "За обръщение към процедура или функция можете да използвате и напълно квалифицирано име:<br/><item type=\"literal\">Библиотека.Модул.Макрос()</item><br/> Например, за да извикате макроса Autotext от библиотеката Gimmicks, ще използвате следната команда:<br/><item type=\"literal\">Gimmicks.AutoText.Main()</item>"
+msgid "Empty"
+msgstr "Празно"
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"hd_id3156276\n"
-"45\n"
+"03103600.xhp\n"
+"par_id3152584\n"
+"40\n"
"help.text"
-msgid "Passing Variables by Value or Reference"
-msgstr "Подаване на променливи по стойност или по адрес"
+msgid "0"
+msgstr ""
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3155765\n"
-"47\n"
+"03103600.xhp\n"
+"par_id3151278\n"
+"41\n"
"help.text"
-msgid "Parameters can be passed to a SUB or a FUNCTION either by reference or by value. Unless otherwise specified, a parameter is always passed by reference. That means that a SUB or a FUNCTION gets the parameter and can read and modify its value."
-msgstr "Параметрите могат да се подават на процедура или функция по адрес или по стойност. Ако не е указано друго, параметърът винаги се предава по адрес. Това означава, че процедурата или функцията получава самия параметър и може да чете и променя стойността му."
+msgid "Variable is not initialized"
+msgstr "не е инициализирана"
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3145640\n"
-"53\n"
+"03103600.xhp\n"
+"par_id3154576\n"
+"42\n"
"help.text"
-msgid "If you want to pass a parameter by value insert the key word \"ByVal\" in front of the parameter when you call a SUB or FUNCTION, for example:"
-msgstr "Ако искате да подадете параметър по стойност, поставете ключовата дума „ByVal“ пред името на параметъра, когато пишете обръщение към процедура или функция, например:"
+msgid "Null"
+msgstr "Null"
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3150042\n"
-"54\n"
+"03103600.xhp\n"
+"par_id3166424\n"
+"43\n"
"help.text"
-msgid "Result = Function(<emph>ByVal</emph> Parameter)"
-msgstr "Резултат = Функция(<emph>ByVal</emph> Параметър)"
+msgid "1"
+msgstr ""
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3149258\n"
-"55\n"
+"03103600.xhp\n"
+"par_id3145131\n"
+"44\n"
"help.text"
-msgid "In this case, the original content of the parameter will not be modified by the FUNCTION since it only gets the value and not the parameter itself."
-msgstr "В този случай оригиналното съдържание на параметъра няма да бъде променено от функцията, тъй като тя получава само стойността, но не и самия параметър."
+msgid "No valid data"
+msgstr "няма валидни данни"
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"hd_id3150982\n"
-"57\n"
+"03103600.xhp\n"
+"hd_id3149338\n"
+"45\n"
"help.text"
-msgid "Scope of Variables"
-msgstr "Обхват на променливите"
+msgid "Example:"
+msgstr "Пример:"
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3149814\n"
+"03103600.xhp\n"
+"par_id3148817\n"
"58\n"
"help.text"
-msgid "A variable defined within a SUB or FUNCTION, 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 SUB or FUNCTION is exited."
-msgstr "Променлива, дефинирана в процедура или функция, е валидна само до завършване изпълнението на процедурата или функцията. Такива променливи се наричат локални. В много случаи са необходими променливи, валидни във всички процедури, модули или библиотеки, или след края на изпълнението на процедура или функция."
-
-#: 01020300.xhp
-msgctxt ""
-"01020300.xhp\n"
-"hd_id3154186\n"
-"59\n"
-"help.text"
-msgid "Declaring Variables Outside a SUB or FUNCTION"
-msgstr "Обявяване на променливи извън процедури и функции"
-
-#: 01020300.xhp
-msgctxt ""
-"01020300.xhp\n"
-"par_id3150208\n"
-"111\n"
-"help.text"
-msgid "Global VarName As TYPENAME"
-msgstr "Global ИмеНаПроменлива As ТИП"
-
-#: 01020300.xhp
-msgctxt ""
-"01020300.xhp\n"
-"par_id3145258\n"
-"112\n"
-"help.text"
-msgid "The variable is valid as long as the $[officename] session lasts."
-msgstr "Променливата е валидна, докато трае сесията на $[officename]."
-
-#: 01020300.xhp
-msgctxt ""
-"01020300.xhp\n"
-"par_id3153198\n"
-"60\n"
-"help.text"
-msgid "Public VarName As TYPENAME"
-msgstr "Public ИмеНаПроменлива As ТИП"
-
-#: 01020300.xhp
-msgctxt ""
-"01020300.xhp\n"
-"par_id3150088\n"
-"61\n"
-"help.text"
-msgid "The variable is valid in all modules."
-msgstr "Променливата е валидна за всички модули."
+msgid "TypeName(lVar) & \" \" & VarType(lVar),0,\"Some types In $[officename] Basic\""
+msgstr "TypeName(lVar) & \" \" & VarType(lVar), 0, \"Някои типове в $[officename] Basic\""
-#: 01020300.xhp
+#: 03103700.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3158212\n"
-"62\n"
+"03103700.xhp\n"
+"tit\n"
"help.text"
-msgid "Private VarName As TYPENAME"
-msgstr "Private ИмеНаПроменлива As ТИП"
+msgid "Set Statement[Runtime]"
+msgstr "Оператор Set [динамичен]"
-#: 01020300.xhp
+#: 03103700.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3152994\n"
-"63\n"
+"03103700.xhp\n"
+"bm_id3154422\n"
"help.text"
-msgid "The variable is only valid in this module."
-msgstr "Променливата е валидна само в този модул."
+msgid "<bookmark_value>Set statement</bookmark_value><bookmark_value>Nothing object</bookmark_value>"
+msgstr "<bookmark_value>Set, оператор</bookmark_value><bookmark_value>Nothing, обект</bookmark_value>"
-#: 01020300.xhp
+#: 03103700.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3150368\n"
-"65\n"
+"03103700.xhp\n"
+"hd_id3154422\n"
+"1\n"
"help.text"
-msgid "The variable is only valid in this module."
-msgstr "Променливата е валидна само в този модул."
+msgid "<link href=\"text/sbasic/shared/03103700.xhp\" name=\"Set Statement[Runtime]\">Set Statement[Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03103700.xhp\" name=\"Оператор Set [динамичен]\">Оператор Set [динамичен]</link>"
-#: 01020300.xhp
+#: 03103700.xhp
msgctxt ""
-"01020300.xhp\n"
-"hd_id5097506\n"
+"03103700.xhp\n"
+"par_id3159149\n"
+"2\n"
"help.text"
-msgid "Example for private variables"
-msgstr "Пример за частни променливи"
+msgid "Sets an object reference on a variable or a Property."
+msgstr "Присвоява обръщение към обект на променлива или свойство."
-#: 01020300.xhp
+#: 03103700.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id8738975\n"
+"03103700.xhp\n"
+"hd_id3153105\n"
+"3\n"
"help.text"
-msgid "Enforce private variables to be private across modules by setting CompatibilityMode(true)."
-msgstr "За да направите частните променливи достъпни през раниците на модул, задайте CompatibilityMode(true)."
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 01020300.xhp
+#: 03103700.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id9475997\n"
+"03103700.xhp\n"
+"par_id3154217\n"
+"4\n"
"help.text"
-msgid "myText = \"Hello\""
-msgstr "myText = \"Здравейте\""
+msgid "Set ObjectVar = Object"
+msgstr "Set ObjectVar = Object"
-#: 01020300.xhp
+#: 03103700.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id6933500\n"
+"03103700.xhp\n"
+"hd_id3154685\n"
+"5\n"
"help.text"
-msgid "Print \"In module1 : \", myText"
-msgstr "Print \"В module1 : \", myText"
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 01020300.xhp
+#: 03103700.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id4104129\n"
+"03103700.xhp\n"
+"par_id3156281\n"
+"6\n"
"help.text"
-msgid "' Now returns empty string"
-msgstr "' Сега връща празен низ"
+msgid "<emph>ObjectVar:</emph> a variable or a property that requires an object reference."
+msgstr "<emph>ObjectVar:</emph> променлива или свойство, което изисква обръщение към обект."
-#: 01020300.xhp
+#: 03103700.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id7906125\n"
+"03103700.xhp\n"
+"par_id3159252\n"
+"7\n"
"help.text"
-msgid "' (or rises error for Option Explicit)"
-msgstr "' (или предизвиква грешка за Option Explicit)"
+msgid "<emph>Object:</emph> Object that the variable or the property refers to."
+msgstr "<emph>Object:</emph> обектът, който да бъде присвоен на променливата или свойството."
-#: 01020300.xhp
+#: 03103700.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id8055970\n"
+"03103700.xhp\n"
+"par_idN10623\n"
"help.text"
-msgid "Print \"Now in module2 : \", myText"
-msgstr "Print \"Сега в module2 : \", myText"
+msgid "<emph>Nothing</emph> - Assign the <emph>Nothing</emph> object to a variable to remove a previous assignment."
+msgstr "<emph>Nothing:</emph> присвойте на променлива обекта <emph>Nothing</emph>, за да отмените предишно присвояване."
-#: 01020300.xhp
+#: 03103700.xhp
msgctxt ""
-"01020300.xhp\n"
-"hd_id3154368\n"
-"66\n"
+"03103700.xhp\n"
+"hd_id3159153\n"
+"8\n"
"help.text"
-msgid "Saving Variable Content after Exiting a SUB or FUNCTION"
-msgstr "Запазване съдържанието на променливите след завършване на процедура или функция"
+msgid "Example:"
+msgstr "Пример:"
-#: 01020300.xhp
+#: 03103800.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3156288\n"
-"67\n"
+"03103800.xhp\n"
+"tit\n"
"help.text"
-msgid "Static VarName As TYPENAME"
-msgstr "Static ИмеНаПроменлива As ТИП"
+msgid "FindObject Function [Runtime]"
+msgstr "Функция FindObject [динамична]"
-#: 01020300.xhp
+#: 03103800.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3154486\n"
-"68\n"
+"03103800.xhp\n"
+"bm_id3145136\n"
"help.text"
-msgid "The variable retains its value until the next time the FUNCTION or SUB is entered. The declaration must exist inside a SUB or a FUNCTION."
-msgstr "Променливата ще запази стойността си до следващото изпълнение на процедурата или функцията. Декларацията трябва да бъде в процедура или функция."
+msgid "<bookmark_value>FindObject function</bookmark_value>"
+msgstr "<bookmark_value>FindObject, функция</bookmark_value>"
-#: 01020300.xhp
+#: 03103800.xhp
msgctxt ""
-"01020300.xhp\n"
-"hd_id3155809\n"
-"41\n"
+"03103800.xhp\n"
+"hd_id3145136\n"
+"1\n"
"help.text"
-msgid "Specifying the Return Value Type of a FUNCTION"
-msgstr "Задаване типа на резултата от функция"
+msgid "<link href=\"text/sbasic/shared/03103800.xhp\" name=\"FindObject Function [Runtime]\">FindObject Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03103800.xhp\" name=\"Функция FindObject [динамична]\">Функция FindObject [динамична]</link>"
-#: 01020300.xhp
+#: 03103800.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3149404\n"
-"42\n"
+"03103800.xhp\n"
+"par_id3155341\n"
+"2\n"
"help.text"
-msgid "As with variables, include a type-declaration character after the function name, or the type indicated by \"As\" and the corresponding key word at the end of the parameter list to define the type of the function's return value, for example:"
-msgstr "Както и с променливите, след името на функцията включете знак за деклариране на или задайте типа с „As“ и съответната ключова дума в края на списъка с параметри. Така задавате типа на резултата на функцията, например:"
+msgid "Enables an object to be addressed at run-time as a string parameter through the object name."
+msgstr "Позволява обект да бъде адресиран по време на изпълнение като параметър – низ посредством името му."
-#: 03060200.xhp
+#: 03103800.xhp
msgctxt ""
-"03060200.xhp\n"
-"tit\n"
+"03103800.xhp\n"
+"par_id3150669\n"
+"3\n"
"help.text"
-msgid "Eqv Operator [Runtime]"
-msgstr "Операция Eqv [динамична]"
+msgid "For example, the following command:"
+msgstr "Например следната команда:"
-#: 03060200.xhp
+#: 03103800.xhp
msgctxt ""
-"03060200.xhp\n"
-"bm_id3156344\n"
+"03103800.xhp\n"
+"par_id3148473\n"
+"4\n"
"help.text"
-msgid "<bookmark_value>Eqv operator (logical)</bookmark_value>"
-msgstr "<bookmark_value>Eqv, логическа операция</bookmark_value>"
+msgid "MyObj.Prop1.Command = 5"
+msgstr "MyObj.Prop1.Command = 5"
-#: 03060200.xhp
+#: 03103800.xhp
msgctxt ""
-"03060200.xhp\n"
-"hd_id3156344\n"
-"1\n"
+"03103800.xhp\n"
+"par_id3156023\n"
+"5\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03060200.xhp\" name=\"Eqv Operator [Runtime]\">Eqv Operator [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03060200.xhp\" name=\"Операция Eqv [динамична]\">Операция Eqv [динамична]</link>"
+msgid "corresponds to the command block:"
+msgstr "съответства на блока от команди:"
-#: 03060200.xhp
+#: 03103800.xhp
msgctxt ""
-"03060200.xhp\n"
-"par_id3149656\n"
-"2\n"
+"03103800.xhp\n"
+"par_id3153896\n"
+"6\n"
"help.text"
-msgid "Calculates the logical equivalence of two expressions."
-msgstr "Изчислява логическата еквивалентност на два израза."
+msgid "Dim ObjVar as Object"
+msgstr "Dim ObjVar As Object"
-#: 03060200.xhp
+#: 03103800.xhp
msgctxt ""
-"03060200.xhp\n"
-"hd_id3154367\n"
-"3\n"
+"03103800.xhp\n"
+"par_id3154760\n"
+"7\n"
"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
+msgid "Dim ObjProp as Object"
+msgstr "Dim ObjProp As Object"
-#: 03060200.xhp
+#: 03103800.xhp
msgctxt ""
-"03060200.xhp\n"
-"par_id3154910\n"
-"4\n"
+"03103800.xhp\n"
+"par_id3145069\n"
+"8\n"
"help.text"
-msgid "Result = Expression1 Eqv Expression2"
-msgstr "Result = Expression1 Eqv Expression2"
+msgid "ObjName As String = \"MyObj\""
+msgstr "ObjName As String = \"MyObj\""
-#: 03060200.xhp
+#: 03103800.xhp
msgctxt ""
-"03060200.xhp\n"
-"hd_id3151043\n"
-"5\n"
+"03103800.xhp\n"
+"par_id3154939\n"
+"9\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "ObjVar = FindObject( ObjName As String )"
+msgstr "ObjVar = FindObject(ObjName As String)"
-#: 03060200.xhp
+#: 03103800.xhp
msgctxt ""
-"03060200.xhp\n"
-"par_id3150869\n"
-"6\n"
+"03103800.xhp\n"
+"par_id3150793\n"
+"10\n"
"help.text"
-msgid "<emph>Result:</emph> Any numeric variable that contains the result of the comparison."
-msgstr "<emph>Result:</emph> числова променлива, в която да се запази резултатът от сравняването."
+msgid "PropName As String = \"Prop1\""
+msgstr "PropName As String = \"Prop1\""
-#: 03060200.xhp
+#: 03103800.xhp
msgctxt ""
-"03060200.xhp\n"
-"par_id3150448\n"
-"7\n"
+"03103800.xhp\n"
+"par_id3154141\n"
+"11\n"
"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any expressions that you want to compare."
-msgstr "<emph>Expression1, Expression2:</emph> изразите, чиито стойности искате да сравните."
+msgid "ObjProp = FindPropertyObject( ObjVar, PropName As String )"
+msgstr "ObjProp = FindPropertyObject(ObjVar, PropName As String)"
-#: 03060200.xhp
+#: 03103800.xhp
msgctxt ""
-"03060200.xhp\n"
-"par_id3149562\n"
-"8\n"
+"03103800.xhp\n"
+"par_id3156424\n"
+"12\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 "При проверка за еквивалентност между булеви изрази, резултатът е <emph>True</emph>, ако и двата израза са със стойност <emph>True</emph> или и двата са със стойност <emph>False</emph>."
+msgid "ObjProp.Command = 5"
+msgstr "ObjProp.Command = 5"
-#: 03060200.xhp
+#: 03103800.xhp
msgctxt ""
-"03060200.xhp\n"
-"par_id3154319\n"
-"9\n"
+"03103800.xhp\n"
+"par_id3145420\n"
+"13\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 "При сравняване бит по бит операцията Eqv установява в единица даден бит от резултата само ако съответните битове в аргументите са едновременно 1 или едновременно 0."
+msgid "This allows names to be dynamically created at run-time. For example:"
+msgstr "Това ви позволява да създавате имена по време на изпълнение, например:"
-#: 03060200.xhp
+#: 03103800.xhp
msgctxt ""
-"03060200.xhp\n"
-"hd_id3159154\n"
-"10\n"
+"03103800.xhp\n"
+"par_id3153104\n"
+"14\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "\"TextEdit1\" to TextEdit5\" in a loop to create five control names."
+msgstr "от „TextEdit1“ до „TextEdit5“ в цикъл за създаване на пет имена на елементи за управление."
-#: 03060200.xhp
+#: 03103800.xhp
msgctxt ""
-"03060200.xhp\n"
-"par_id3152462\n"
+"03103800.xhp\n"
+"par_id3150767\n"
"15\n"
"help.text"
-msgid "vOut = A > B Eqv B > C ' returns -1"
-msgstr "vOut = A > B Eqv B > C ' връща -1"
+msgid "See also: <link href=\"text/sbasic/shared/03103900.xhp\" name=\"FindPropertyObject\">FindPropertyObject</link>"
+msgstr "Виж също: <link href=\"text/sbasic/shared/03103900.xhp\" name=\"FindPropertyObject\">FindPropertyObject</link>"
-#: 03060200.xhp
+#: 03103800.xhp
msgctxt ""
-"03060200.xhp\n"
-"par_id3153191\n"
+"03103800.xhp\n"
+"hd_id3150868\n"
"16\n"
"help.text"
-msgid "vOut = B > A Eqv B > C ' returns 0"
-msgstr "vOut = B > A Eqv B > C ' връща 0"
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 03060200.xhp
+#: 03103800.xhp
msgctxt ""
-"03060200.xhp\n"
-"par_id3145799\n"
+"03103800.xhp\n"
+"par_id3151042\n"
"17\n"
"help.text"
-msgid "vOut = A > B Eqv B > D ' returns 0"
-msgstr "vOut = A > B Eqv B > D ' връща 0"
+msgid "FindObject( ObjName As String )"
+msgstr "FindObject(ObjName As String)"
-#: 03060200.xhp
+#: 03103800.xhp
msgctxt ""
-"03060200.xhp\n"
-"par_id3149412\n"
+"03103800.xhp\n"
+"hd_id3159254\n"
"18\n"
"help.text"
-msgid "vOut = (B > D Eqv B > A) ' returns -1"
-msgstr "vOut = (B > D Eqv B > A) ' връща -1"
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 03060200.xhp
+#: 03103800.xhp
msgctxt ""
-"03060200.xhp\n"
-"par_id3149959\n"
+"03103800.xhp\n"
+"par_id3150439\n"
"19\n"
"help.text"
-msgid "vOut = B Eqv A ' returns -3"
-msgstr "vOut = B Eqv A ' връща -3"
+msgid "<emph>ObjName: </emph>String that specifies the name of the object that you want to address at run-time."
+msgstr "<emph>ObjName:</emph> низ, задаващ името на обекта, който искате да се адресира по време на изпълнение."
-#: 03010101.xhp
+#: 03103900.xhp
msgctxt ""
-"03010101.xhp\n"
+"03103900.xhp\n"
"tit\n"
"help.text"
-msgid "MsgBox Statement [Runtime]"
-msgstr "Оператор MsgBox [динамичен]"
+msgid "FindPropertyObject Function [Runtime]"
+msgstr "Функция FindPropertyObject [динамична]"
-#: 03010101.xhp
+#: 03103900.xhp
msgctxt ""
-"03010101.xhp\n"
-"bm_id1807916\n"
+"03103900.xhp\n"
+"bm_id3146958\n"
"help.text"
-msgid "<bookmark_value>MsgBox statement</bookmark_value>"
-msgstr "<bookmark_value>MsgBox, оператор</bookmark_value>"
+msgid "<bookmark_value>FindPropertyObject function</bookmark_value>"
+msgstr "<bookmark_value>FindPropertyObject, функция</bookmark_value>"
-#: 03010101.xhp
+#: 03103900.xhp
msgctxt ""
-"03010101.xhp\n"
-"hd_id3154927\n"
+"03103900.xhp\n"
+"hd_id3146958\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03010101.xhp\">MsgBox Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03010101.xhp\">Оператор MsgBox [динамичен]</link>"
+msgid "<link href=\"text/sbasic/shared/03103900.xhp\" name=\"FindPropertyObject Function [Runtime]\">FindPropertyObject Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03103900.xhp\" name=\"Функция FindPropertyObject [динамична]\">Функция FindPropertyObject [динамична]</link>"
-#: 03010101.xhp
+#: 03103900.xhp
msgctxt ""
-"03010101.xhp\n"
-"par_id3148947\n"
+"03103900.xhp\n"
+"par_id3154285\n"
"2\n"
"help.text"
-msgid "Displays a dialog box containing a message."
-msgstr "Показва диалогов прозорец със съобщение."
+msgid "Enables objects to be addressed at run-time as a string parameter using the object name."
+msgstr "Позволява обект да бъде адресиран по време на изпълнение като параметър – низ посредством името му."
-#: 03010101.xhp
+#: 03103900.xhp
msgctxt ""
-"03010101.xhp\n"
-"hd_id3153897\n"
+"03103900.xhp\n"
+"par_id3147573\n"
"3\n"
"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
+msgid "For instance, the command:"
+msgstr "Например следната команда:"
-#: 03010101.xhp
+#: 03103900.xhp
msgctxt ""
-"03010101.xhp\n"
-"par_id3148664\n"
+"03103900.xhp\n"
+"par_id3145610\n"
"4\n"
"help.text"
-msgid "MsgBox Text As String [,Type As Integer [,Dialogtitle As String]] (As Statement) or MsgBox (Text As String [,Type As Integer [,Dialogtitle As String]]) (As Function)"
-msgstr "MsgBox Text As String [,Type As Integer [,Dialogtitle As String]] (As Statement) or MsgBox (Text As String [,Type As Integer [,Dialogtitle As String]]) (As Function)"
+msgid "MyObj.Prop1.Command = 5"
+msgstr "MyObj.Prop1.Command = 5"
-#: 03010101.xhp
+#: 03103900.xhp
msgctxt ""
-"03010101.xhp\n"
-"hd_id3153361\n"
+"03103900.xhp\n"
+"par_id3147265\n"
"5\n"
"help.text"
-msgid "Parameter:"
-msgstr "Параметър:"
+msgid "corresponds to the following command block:"
+msgstr "съответства на блока от команди:"
-#: 03010101.xhp
+#: 03103900.xhp
msgctxt ""
-"03010101.xhp\n"
-"par_id3148798\n"
+"03103900.xhp\n"
+"par_id3153896\n"
"6\n"
"help.text"
-msgid "<emph>Text</emph>: String expression displayed as a message in the dialog box. Line breaks can be inserted with Chr$(13)."
-msgstr "<emph>Text</emph>: израз – низ, показван като като съобщение в диалоговия прозорец. За преминаване на нов ред може да се използва Chr$(13)."
+msgid "Dim ObjVar as Object"
+msgstr "Dim ObjVar As Object"
-#: 03010101.xhp
+#: 03103900.xhp
msgctxt ""
-"03010101.xhp\n"
-"par_id3150769\n"
+"03103900.xhp\n"
+"par_id3148664\n"
"7\n"
"help.text"
-msgid "<emph>DialogTitle</emph>: String expression displayed in the title bar of the dialog. If omitted, the title bar displays the name of the respective application."
-msgstr "<emph>DialogTitle</emph>: израз от тип низ, показван в заглавната лента на диалоговия прозорец. Ако бъде пропуснат, в заглавната лента се изписва името на съответното приложение."
+msgid "Dim ObjProp as Object"
+msgstr "Dim ObjProp As Object"
-#: 03010101.xhp
+#: 03103900.xhp
msgctxt ""
-"03010101.xhp\n"
-"par_id3147228\n"
+"03103900.xhp\n"
+"par_id3150792\n"
"8\n"
"help.text"
-msgid "<emph>Type</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>Type</emph> represents a combination of bit patterns, that is, a combination of elements can be defined by adding their respective values:"
-msgstr "<emph>Type</emph>: произволен израз от тип цяло число, който задава типа на диалоговия прозорец, броя и вида на показваните бутони и вида на иконата. <emph>Type</emph> представлява комбинация от битови маски, т.е. от елементи, които могат да бъдат включени чрез прибавяне на съответните им стойности:"
+msgid "ObjName As String = \"MyObj\""
+msgstr "ObjName As String = \"MyObj\""
-#: 03010101.xhp
+#: 03103900.xhp
msgctxt ""
-"03010101.xhp\n"
-"par_id3161832\n"
+"03103900.xhp\n"
+"par_id3154365\n"
"9\n"
"help.text"
-msgid "0 : Display OK button only."
-msgstr "0: Показва се само бутон „OK“."
+msgid "ObjVar = FindObject( ObjName As String )"
+msgstr "ObjVar = FindObject(ObjName As String)"
-#: 03010101.xhp
+#: 03103900.xhp
msgctxt ""
-"03010101.xhp\n"
-"par_id3153726\n"
+"03103900.xhp\n"
+"par_id3148453\n"
"10\n"
"help.text"
-msgid "1 : Display OK and Cancel buttons."
-msgstr "1: Показват се бутони „OK“ и „Отказ“."
+msgid "PropName As String = \"Prop1\""
+msgstr "PropName As String = \"Prop1\""
-#: 03010101.xhp
+#: 03103900.xhp
msgctxt ""
-"03010101.xhp\n"
-"par_id3149665\n"
+"03103900.xhp\n"
+"par_id3150449\n"
"11\n"
"help.text"
-msgid "2 : Display Abort, Retry, and Ignore buttons."
-msgstr "2: Показват се бутони „Прекратяване“, „Повторен опит“ и „Игнориране“."
+msgid "ObjProp = FindPropertyObject( ObjVar, PropName As String )"
+msgstr "ObjProp = FindPropertyObject(ObjVar, PropName As String)"
-#: 03010101.xhp
+#: 03103900.xhp
msgctxt ""
-"03010101.xhp\n"
-"par_id3147318\n"
+"03103900.xhp\n"
+"par_id3159152\n"
"12\n"
"help.text"
-msgid "3 : Display Yes, No and Cancel buttons."
-msgstr "3: Показват се бутони „Да“, „Не“ и „Отказ“."
+msgid "ObjProp.Command = 5"
+msgstr "ObjProp.Command = 5"
-#: 03010101.xhp
+#: 03103900.xhp
msgctxt ""
-"03010101.xhp\n"
-"par_id3155412\n"
+"03103900.xhp\n"
+"par_id3156214\n"
"13\n"
"help.text"
-msgid "4 : Display Yes and No buttons."
-msgstr "4: Показват се бутони „Да“ и „Не“."
+msgid "To dynamically create Names at run-time, use:"
+msgstr "За да създавате динамично имена по време на изпълнение, използвайте например:"
-#: 03010101.xhp
+#: 03103900.xhp
msgctxt ""
-"03010101.xhp\n"
-"par_id3146119\n"
+"03103900.xhp\n"
+"par_id3154686\n"
"14\n"
"help.text"
-msgid "5 : Display Retry and Cancel buttons."
-msgstr "5: Показват се бутони „Повторен опит“ и „Отказ“."
+msgid "\"TextEdit1\" to TextEdit5\" in a loop to create five names."
+msgstr "от „TextEdit1“ до „TextEdit5“ в цикъл за създаване на пет имена."
-#: 03010101.xhp
+#: 03103900.xhp
msgctxt ""
-"03010101.xhp\n"
-"par_id3159155\n"
+"03103900.xhp\n"
+"par_id3150868\n"
"15\n"
"help.text"
-msgid "16 : Add the Stop icon to the dialog."
-msgstr "16: В диалоговия прозорец се показва икона „Стоп“."
+msgid "See also: <link href=\"text/sbasic/shared/03103800.xhp\" name=\"FindObject\">FindObject</link>"
+msgstr "Виж също: <link href=\"text/sbasic/shared/03103800.xhp\" name=\"FindObject\">FindObject</link>"
-#: 03010101.xhp
+#: 03103900.xhp
msgctxt ""
-"03010101.xhp\n"
-"par_id3145366\n"
+"03103900.xhp\n"
+"hd_id3147287\n"
"16\n"
"help.text"
-msgid "32 : Add the Question icon to the dialog."
-msgstr "32: В диалоговия прозорец се показва икона „Въпрос“."
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 03010101.xhp
+#: 03103900.xhp
msgctxt ""
-"03010101.xhp\n"
-"par_id3147350\n"
+"03103900.xhp\n"
+"par_id3149560\n"
"17\n"
"help.text"
-msgid "48 : Add the Exclamation icon to the dialog."
-msgstr "48: В диалоговия прозорец се показва икона „Удивителна“."
+msgid "FindPropertyObject( ObjVar, PropName As String )"
+msgstr "FindPropertyObject(ObjVar, PropName As String)"
-#: 03010101.xhp
+#: 03103900.xhp
msgctxt ""
-"03010101.xhp\n"
-"par_id3149960\n"
+"03103900.xhp\n"
+"hd_id3150012\n"
"18\n"
"help.text"
-msgid "64 : Add the Information icon to the dialog."
-msgstr "64: В диалоговия прозорец се показва икона „Информация“."
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 03010101.xhp
+#: 03103900.xhp
msgctxt ""
-"03010101.xhp\n"
-"par_id3154944\n"
+"03103900.xhp\n"
+"par_id3109839\n"
"19\n"
"help.text"
-msgid "128 : First button in the dialog as default button."
-msgstr "128: Първият бутон в диалоговия прозорец е подразбиран."
+msgid "<emph>ObjVar:</emph> Object variable that you want to dynamically define at run-time."
+msgstr "<emph>ObjVar:</emph> обектна променлива, която искате да дефинирате динамично по време на изпълнение."
-#: 03010101.xhp
+#: 03103900.xhp
msgctxt ""
-"03010101.xhp\n"
-"par_id3155417\n"
+"03103900.xhp\n"
+"par_id3153363\n"
"20\n"
"help.text"
-msgid "256 : Second button in the dialog as default button."
-msgstr "256: Вторият бутон в диалоговия прозорец е подразбиран."
-
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"par_id3153878\n"
-"21\n"
-"help.text"
-msgid "512 : Third button in the dialog as default button."
-msgstr "512: Третият бутон в диалоговия прозорец е подразбиран."
-
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"hd_id3150715\n"
-"22\n"
-"help.text"
-msgid "Example:"
-msgstr "Пример:"
-
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"par_id3150327\n"
-"24\n"
-"help.text"
-msgid "Const sText1 = \"An unexpected error occurred.\""
-msgstr "Const sText1 = \"Възникна неочаквана грешка.\""
-
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"par_id3146912\n"
-"25\n"
-"help.text"
-msgid "Const sText2 = \"The program execution will continue, however.\""
-msgstr "Const sText2 = \"Изпълнението на програмата ще продължи все пак.\""
-
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"par_id3154757\n"
-"26\n"
-"help.text"
-msgid "Const sText3 = \"Error\""
-msgstr "Const sText3 = \"Грешка\""
+msgid "<emph>PropName:</emph> String that specifies the name of the property that you want to address at run-time."
+msgstr "<emph>PropName:</emph> низ, задаващ името на свойство, което искате да адресирате по време на изпълнение."
-#: 03080801.xhp
+#: 03104000.xhp
msgctxt ""
-"03080801.xhp\n"
+"03104000.xhp\n"
"tit\n"
"help.text"
-msgid "Hex Function [Runtime]"
-msgstr "Функция Hex [динамична]"
+msgid "IsMissing function [Runtime]"
+msgstr "Функция IsMissing [динамична]"
-#: 03080801.xhp
+#: 03104000.xhp
msgctxt ""
-"03080801.xhp\n"
-"bm_id3150616\n"
+"03104000.xhp\n"
+"bm_id3153527\n"
"help.text"
-msgid "<bookmark_value>Hex function</bookmark_value>"
-msgstr "<bookmark_value>Hex, функция</bookmark_value>"
+msgid "<bookmark_value>IsMissing function</bookmark_value>"
+msgstr "<bookmark_value>IsMissing, функция</bookmark_value>"
-#: 03080801.xhp
+#: 03104000.xhp
msgctxt ""
-"03080801.xhp\n"
-"hd_id3150616\n"
+"03104000.xhp\n"
+"hd_id3153527\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080801.xhp\" name=\"Hex Function [Runtime]\">Hex Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03080801.xhp\" name=\"Функция Hex [динамична]\">Функция Hex [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03104000.xhp\" name=\"IsMissing function [Runtime]\">IsMissing function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03104000.xhp\" name=\"Функция IsMissing [динамична]\">Функция IsMissing [динамична]</link>"
-#: 03080801.xhp
+#: 03104000.xhp
msgctxt ""
-"03080801.xhp\n"
-"par_id3145136\n"
+"03104000.xhp\n"
+"par_id3153825\n"
"2\n"
"help.text"
-msgid "Returns a string that represents the hexadecimal value of a number."
-msgstr "Връща низ с шестнайсетичното представяне на число."
+msgid "Tests if a function is called with an optional parameter."
+msgstr "Проверява дали функция е извикана с незадължителен параметър."
-#: 03080801.xhp
+#: 03104000.xhp
msgctxt ""
-"03080801.xhp\n"
-"hd_id3147573\n"
+"03104000.xhp\n"
+"par_id3150669\n"
"3\n"
"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
+msgid "See also: <link href=\"text/sbasic/shared/03104100.xhp\" name=\"Optional\">Optional</link>"
+msgstr "Виж също: <link href=\"text/sbasic/shared/03104100.xhp\" name=\"Optional\">Optional</link>"
-#: 03080801.xhp
+#: 03104000.xhp
msgctxt ""
-"03080801.xhp\n"
-"par_id3150771\n"
+"03104000.xhp\n"
+"hd_id3145611\n"
"4\n"
"help.text"
-msgid "Hex (Number)"
-msgstr "Hex (Number)"
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 03080801.xhp
+#: 03104000.xhp
msgctxt ""
-"03080801.xhp\n"
-"hd_id3147530\n"
+"03104000.xhp\n"
+"par_id3154924\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Връщана стойност:"
+msgid "IsMissing( ArgumentName )"
+msgstr "IsMissing(ArgumentName)"
-#: 03080801.xhp
+#: 03104000.xhp
msgctxt ""
-"03080801.xhp\n"
-"par_id3159414\n"
+"03104000.xhp\n"
+"hd_id3145069\n"
"6\n"
"help.text"
-msgid "String"
-msgstr "String"
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 03080801.xhp
+#: 03104000.xhp
msgctxt ""
-"03080801.xhp\n"
-"hd_id3156344\n"
+"03104000.xhp\n"
+"par_id3149457\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "<emph>ArgumentName:</emph> the name of an optional argument."
+msgstr "<emph>ArgumentName:</emph> името на незадължителен аргумент."
-#: 03080801.xhp
+#: 03104000.xhp
msgctxt ""
-"03080801.xhp\n"
-"par_id3148947\n"
+"03104000.xhp\n"
+"par_id3150398\n"
"8\n"
"help.text"
-msgid "<emph>Number:</emph> Any numeric expression that you want to convert to a hexadecimal number."
-msgstr "<emph>Number:</emph> числов израз, който искате да превърнете в шестнайсетично число."
+msgid "If the IsMissing function is called by the ArgumentName, then True is returned."
+msgstr "Ако функцията IsMissing бъде извикана за параметър, чиято стойност не е била подадена, тя връща стойност True."
-#: 03080801.xhp
+#: 03104000.xhp
msgctxt ""
-"03080801.xhp\n"
-"hd_id3154365\n"
+"03104000.xhp\n"
+"par_id3148798\n"
"9\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
-
-#: 03080801.xhp
-msgctxt ""
-"03080801.xhp\n"
-"par_id3156214\n"
-"30\n"
-"help.text"
-msgid "' uses BasicFormulas in $[officename] Calc"
-msgstr "' Използва BasicFormulas в $[officename] Calc"
-
-#: 03080801.xhp
-msgctxt ""
-"03080801.xhp\n"
-"par_id3149262\n"
-"20\n"
-"help.text"
-msgid "' Returns a long integer from a hexadecimal value."
-msgstr "' Приема шестнайсетично число и връща стойност от тип Long Integer."
-
-#: 03080801.xhp
-msgctxt ""
-"03080801.xhp\n"
-"par_id3147215\n"
-"25\n"
-"help.text"
-msgid "' Calculates a hexadecimal value in integer."
-msgstr "' Изчислява шестнайсетичното представяне на цяло число."
-
-#: 03080800.xhp
-msgctxt ""
-"03080800.xhp\n"
-"tit\n"
-"help.text"
-msgid "Converting Numbers"
-msgstr "Преобразуване на числа"
-
-#: 03080800.xhp
-msgctxt ""
-"03080800.xhp\n"
-"hd_id3145315\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03080800.xhp\" name=\"Converting Numbers\">Converting Numbers</link>"
-msgstr "<link href=\"text/sbasic/shared/03080800.xhp\" name=\"Преобразуване на числа\">Преобразуване на числа</link>"
-
-#: 03080800.xhp
-msgctxt ""
-"03080800.xhp\n"
-"par_id3154760\n"
-"2\n"
-"help.text"
-msgid "The following functions convert numbers from one number format to another."
-msgstr "Следващите функции преобразуват числа от една бройна система в друга."
+msgid "See also <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Examples\">Examples</link>."
+msgstr "Виж също <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Примери\">Примери</link>."
-#: 03120401.xhp
+#: 03104100.xhp
msgctxt ""
-"03120401.xhp\n"
+"03104100.xhp\n"
"tit\n"
"help.text"
-msgid "InStr Function [Runtime]"
-msgstr "Функция InStr [динамична]"
+msgid "Optional (in Function Statement) [Runtime]"
+msgstr "Optional (в оператор Function) [динамичен]"
-#: 03120401.xhp
+#: 03104100.xhp
msgctxt ""
-"03120401.xhp\n"
-"bm_id3155934\n"
+"03104100.xhp\n"
+"bm_id3149205\n"
"help.text"
-msgid "<bookmark_value>InStr function</bookmark_value>"
-msgstr "<bookmark_value>InStr, функция</bookmark_value>"
+msgid "<bookmark_value>Optional function</bookmark_value>"
+msgstr "<bookmark_value>Optional, функция</bookmark_value>"
-#: 03120401.xhp
+#: 03104100.xhp
msgctxt ""
-"03120401.xhp\n"
-"hd_id3155934\n"
+"03104100.xhp\n"
+"hd_id3149205\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120401.xhp\" name=\"InStr Function [Runtime]\">InStr Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120401.xhp\" name=\"Функция InStr [динамична]\">Функция InStr [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03104100.xhp\" name=\"Optional (in Function Statement) [Runtime]\">Optional (in Function Statement) [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03104100.xhp\" name=\"Optional (в оператор Function) [динамичен]\">Optional (в оператор Function) [динамичен]</link>"
-#: 03120401.xhp
+#: 03104100.xhp
msgctxt ""
-"03120401.xhp\n"
-"par_id3153990\n"
+"03104100.xhp\n"
+"par_id3143267\n"
"2\n"
"help.text"
-msgid "Returns the position of a string within another string."
-msgstr "Връща позицията на низ в друг низ."
+msgid "Allows you to define parameters that are passed to a function as optional."
+msgstr "Позволява ви да дефинирате предавани на функцията параметри като незадължителни."
-#: 03120401.xhp
+#: 03104100.xhp
msgctxt ""
-"03120401.xhp\n"
-"par_id3147303\n"
+"03104100.xhp\n"
+"par_id3155419\n"
"3\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 "Функцията InStr връща позицията, в която е намерено съответствие. Ако низът не бъде намерен, функцията връща 0."
+msgid "See also: <link href=\"text/sbasic/shared/03104000.xhp\" name=\"IsMissing\">IsMissing</link>"
+msgstr "Виж също: <link href=\"text/sbasic/shared/03104000.xhp\" name=\"IsMissing\">IsMissing</link>"
-#: 03120401.xhp
+#: 03104100.xhp
msgctxt ""
-"03120401.xhp\n"
-"hd_id3145090\n"
+"03104100.xhp\n"
+"hd_id3153824\n"
"4\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03120401.xhp
+#: 03104100.xhp
msgctxt ""
-"03120401.xhp\n"
-"par_id3146957\n"
+"03104100.xhp\n"
+"par_id3159157\n"
"5\n"
"help.text"
-msgid "InStr ([Start As Long,] Text1 As String, Text2 As String[, Compare])"
-msgstr "InStr ([Start As Long,] Text1 As String, Text2 As String[, Compare])"
-
-#: 03120401.xhp
-msgctxt ""
-"03120401.xhp\n"
-"hd_id3148538\n"
-"6\n"
-"help.text"
-msgid "Return value:"
-msgstr "Връщана стойност:"
+msgid "Function MyFunction(Text1 As String, Optional Arg2, Optional Arg3)"
+msgstr "Function MyFunction(Text1 As String, Optional Arg2, Optional Arg3)"
-#: 03120401.xhp
+#: 03104100.xhp
msgctxt ""
-"03120401.xhp\n"
-"par_id3149763\n"
+"03104100.xhp\n"
+"hd_id3145610\n"
"7\n"
"help.text"
-msgid "Integer"
-msgstr "Integer"
+msgid "Examples:"
+msgstr "Примери:"
-#: 03120401.xhp
+#: 03104100.xhp
msgctxt ""
-"03120401.xhp\n"
-"hd_id3148473\n"
+"03104100.xhp\n"
+"par_id3154347\n"
"8\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "Result = MyFunction(\"Here\", 1, \"There\") ' all arguments are passed."
+msgstr "Result = MyFunction(\"Тук\", 1, \"Там\") ' Предават се всички аргументи."
-#: 03120401.xhp
+#: 03104100.xhp
msgctxt ""
-"03120401.xhp\n"
-"par_id3153126\n"
+"03104100.xhp\n"
+"par_id3146795\n"
"9\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 maximum allowed value is 65535."
-msgstr "<emph>Start:</emph> числов израз – позиция в низа, от която започва търсенето. Ако бъде пропуснат, търсенето започва от първия знак. Максималната разрешена стойност е 65535."
+msgid "Result = MyFunction(\"Test\", ,1) ' second argument is missing."
+msgstr "Result = MyFunction(\"Тест\", , 1) ' Вторият аргумент липсва."
-#: 03120401.xhp
+#: 03104100.xhp
msgctxt ""
-"03120401.xhp\n"
-"par_id3145609\n"
+"03104100.xhp\n"
+"par_id3153897\n"
"10\n"
"help.text"
-msgid "<emph>Text1:</emph> The string expression that you want to search."
-msgstr "<emph>Text1:</emph> низът, който да бъде претърсен."
-
-#: 03120401.xhp
-msgctxt ""
-"03120401.xhp\n"
-"par_id3147559\n"
-"11\n"
-"help.text"
-msgid "<emph>Text2:</emph> The string expression that you want to search for."
-msgstr "<emph>Text2:</emph> низът, който се търси."
-
-#: 03120401.xhp
-msgctxt ""
-"03120401.xhp\n"
-"par_id3154758\n"
-"12\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 "<emph>Compare:</emph> незадължителен числов израз, определящ начина на сравняване. Възможните стойности са 0 и 1. Подразбираната стойност 1 означава сравняване с игнориране на регистъра на буквите. Стойност 0 означава двоично сравняване, чувствително към регистъра."
-
-#: 03120401.xhp
-msgctxt ""
-"03120401.xhp\n"
-"par_id3153361\n"
-"13\n"
-"help.text"
-msgid "To avoid a run-time error, do not set the Compare parameter if the first return parameter is omitted."
-msgstr "За да избегнете грешки при изпълнение, не задавайте параметър Compare ако първият параметър е пропуснат."
-
-#: 03120401.xhp
-msgctxt ""
-"03120401.xhp\n"
-"hd_id3154366\n"
-"14\n"
-"help.text"
-msgid "Example:"
-msgstr "Пример:"
-
-#: 03120401.xhp
-msgctxt ""
-"03120401.xhp\n"
-"par_id3144760\n"
-"19\n"
-"help.text"
-msgid "sInput = \"Office\""
-msgstr "sInput = \"Офис\""
-
-#: 03120401.xhp
-msgctxt ""
-"03120401.xhp\n"
-"par_id3154125\n"
-"20\n"
-"help.text"
-msgid "iPos = Instr(sInput,\"c\")"
-msgstr "iPos = InStr(sInput, \"и\")"
+msgid "See also <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Examples\">Examples</link>."
+msgstr "Виж също <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Примери\">Примери</link>."
-#: 03101400.xhp
+#: 03104200.xhp
msgctxt ""
-"03101400.xhp\n"
+"03104200.xhp\n"
"tit\n"
"help.text"
-msgid "DefDbl Statement [Runtime]"
-msgstr "Оператор DefDbl [динамичен]"
+msgid "Array Function [Runtime]"
+msgstr "Функция Array [динамична]"
-#: 03101400.xhp
+#: 03104200.xhp
msgctxt ""
-"03101400.xhp\n"
-"bm_id3147242\n"
+"03104200.xhp\n"
+"bm_id3150499\n"
"help.text"
-msgid "<bookmark_value>DefDbl statement</bookmark_value>"
-msgstr "<bookmark_value>DefDbl, оператор</bookmark_value>"
+msgid "<bookmark_value>Array function</bookmark_value>"
+msgstr "<bookmark_value>Array, функция</bookmark_value>"
-#: 03101400.xhp
+#: 03104200.xhp
msgctxt ""
-"03101400.xhp\n"
-"hd_id3147242\n"
+"03104200.xhp\n"
+"hd_id3150499\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03101400.xhp\" name=\"DefDbl Statement [Runtime]\">DefDbl Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03101400.xhp\" name=\"Оператор DefDbl [динамичен]\">Оператор DefDbl [динамичен]</link>"
+msgid "<link href=\"text/sbasic/shared/03104200.xhp\" name=\"Array Function [Runtime]\">Array Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03104200.xhp\" name=\"Функция Array [динамична]\">Функция Array [динамична]</link>"
-#: 03101400.xhp
+#: 03104200.xhp
msgctxt ""
-"03101400.xhp\n"
-"par_id3153126\n"
+"03104200.xhp\n"
+"par_id3155555\n"
"2\n"
"help.text"
-msgid "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified."
-msgstr "Операторът DefDbl установява подразбиран тип данни според диапазон от букви в случай, че не е зададена ключова дума или знак за деклариране на тип."
+msgid "Returns the type Variant with a data field."
+msgstr "Връща стойност от тип Variant, която представлява масив."
-#: 03101400.xhp
+#: 03104200.xhp
msgctxt ""
-"03101400.xhp\n"
-"hd_id3155420\n"
+"03104200.xhp\n"
+"hd_id3148538\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03101400.xhp
+#: 03104200.xhp
msgctxt ""
-"03101400.xhp\n"
-"par_id3147530\n"
+"03104200.xhp\n"
+"par_id3153126\n"
"4\n"
"help.text"
-msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
-msgstr "Defxxx Characterrange1[, Characterrange2[,...]]"
+msgid "Array ( Argument list)"
+msgstr "Array ( Argument list)"
-#: 03101400.xhp
+#: 03104200.xhp
msgctxt ""
-"03101400.xhp\n"
-"hd_id3145069\n"
+"03104200.xhp\n"
+"par_id3155419\n"
"5\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "See also <link href=\"text/sbasic/shared/03104300.xhp\" name=\"DimArray\">DimArray</link>"
+msgstr "Виж също <link href=\"text/sbasic/shared/03104300.xhp\" name=\"DimArray\">DimArray</link>"
-#: 03101400.xhp
+#: 03104200.xhp
msgctxt ""
-"03101400.xhp\n"
-"par_id3147560\n"
+"03104200.xhp\n"
+"hd_id3150669\n"
"6\n"
"help.text"
-msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set the default data type for."
-msgstr "<emph>Characterrange:</emph> букви, определящи диапазона от променливи, за които искате да зададете подразбиран тип данни."
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 03101400.xhp
+#: 03104200.xhp
msgctxt ""
-"03101400.xhp\n"
-"par_id3150791\n"
+"03104200.xhp\n"
+"par_id3145609\n"
"7\n"
"help.text"
-msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
-msgstr "<emph>xxx:</emph> ключова дума, дефинираща подразбирания тип данни:"
+msgid "<emph>Argument list:</emph> A list of any number of arguments that are separated by commas."
+msgstr "<emph>Argument list:</emph> списък от произволен брой разделени със запетая аргументи."
-#: 03101400.xhp
+#: 03104200.xhp
msgctxt ""
-"03101400.xhp\n"
-"par_id3151210\n"
+"03104200.xhp\n"
+"hd_id3156343\n"
"8\n"
"help.text"
-msgid "<emph>Keyword:</emph> Default variable type"
-msgstr "<emph>Ключова дума:</emph> Подразбиран тип данни"
+msgid "Example:"
+msgstr "Пример:"
-#: 03101400.xhp
+#: 03104200.xhp
msgctxt ""
-"03101400.xhp\n"
-"par_id3154123\n"
+"03104200.xhp\n"
+"par_id3153897\n"
"9\n"
"help.text"
-msgid "<emph>DefDbl:</emph> Double"
-msgstr "<emph>DefDbl:</emph> Double"
+msgid "Dim A As Variant"
+msgstr "Dim A As Variant"
-#: 03101400.xhp
+#: 03104200.xhp
msgctxt ""
-"03101400.xhp\n"
-"hd_id3153192\n"
+"03104200.xhp\n"
+"par_id3153525\n"
"10\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
-
-#: 03101400.xhp
-msgctxt ""
-"03101400.xhp\n"
-"par_id3156281\n"
-"12\n"
-"help.text"
-msgid "' Prefix definitions for variable types:"
-msgstr "' Дефиниране с префикс за променливи от даден тип:"
+msgid "A = Array(\"Fred\",\"Tom\",\"Bill\")"
+msgstr "A = Array(\"Иван\", \"Петър\", \"Асен\")"
-#: 03101400.xhp
+#: 03104200.xhp
msgctxt ""
-"03101400.xhp\n"
-"par_id3153144\n"
-"22\n"
+"03104200.xhp\n"
+"par_id3150792\n"
+"11\n"
"help.text"
-msgid "dValue=1.23e43 ' dValue is an implicit double variable type"
-msgstr "dValue = 1.23e43 ' dValue е променлива с неявен тип Double"
+msgid "Msgbox A(2)"
+msgstr "MsgBox A(2)"
-#: 03010302.xhp
+#: 03104300.xhp
msgctxt ""
-"03010302.xhp\n"
+"03104300.xhp\n"
"tit\n"
"help.text"
-msgid "Green Function [Runtime]"
-msgstr "Функция Green [динамична]"
+msgid "DimArray Function [Runtime]"
+msgstr "Функция DimArray [динамична]"
-#: 03010302.xhp
+#: 03104300.xhp
msgctxt ""
-"03010302.xhp\n"
-"bm_id3148947\n"
+"03104300.xhp\n"
+"bm_id3150616\n"
"help.text"
-msgid "<bookmark_value>Green function</bookmark_value>"
-msgstr "<bookmark_value>Green, функция</bookmark_value>"
+msgid "<bookmark_value>DimArray function</bookmark_value>"
+msgstr "<bookmark_value>DimArray, функция</bookmark_value>"
-#: 03010302.xhp
+#: 03104300.xhp
msgctxt ""
-"03010302.xhp\n"
-"hd_id3148947\n"
+"03104300.xhp\n"
+"hd_id3150616\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03010302.xhp\" name=\"Green Function [Runtime]\">Green Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03010302.xhp\" name=\"Функция Green [динамична]\">Функция Green [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03104300.xhp\" name=\"DimArray Function [Runtime]\">DimArray Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03104300.xhp\" name=\"Функция DimArray [динамична]\">Функция DimArray [динамична]</link>"
-#: 03010302.xhp
+#: 03104300.xhp
msgctxt ""
-"03010302.xhp\n"
-"par_id3153361\n"
+"03104300.xhp\n"
+"par_id3153527\n"
"2\n"
"help.text"
-msgid "Returns the Green component of the given color code."
-msgstr "Връща зеления компонент от зададения код на цвят."
+msgid "Returns a Variant array."
+msgstr "Връща масив от тип Variant."
-#: 03010302.xhp
+#: 03104300.xhp
msgctxt ""
-"03010302.xhp\n"
-"hd_id3154140\n"
+"03104300.xhp\n"
+"hd_id3149762\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03010302.xhp
+#: 03104300.xhp
msgctxt ""
-"03010302.xhp\n"
-"par_id3153969\n"
+"03104300.xhp\n"
+"par_id3148473\n"
"4\n"
"help.text"
-msgid "Green (Color As Long)"
-msgstr "Green (Color As Long)"
+msgid "DimArray ( Argument list)"
+msgstr "DimArray ( Argument list)"
-#: 03010302.xhp
+#: 03104300.xhp
msgctxt ""
-"03010302.xhp\n"
-"hd_id3154124\n"
+"03104300.xhp\n"
+"par_id3154142\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Връщана стойност:"
+msgid "See also <link href=\"text/sbasic/shared/03104200.xhp\" name=\"Array\">Array</link>"
+msgstr "Виж и <link href=\"text/sbasic/shared/03104200.xhp\" name=\"Array\">Array</link>"
-#: 03010302.xhp
+#: 03104300.xhp
msgctxt ""
-"03010302.xhp\n"
-"par_id3153194\n"
+"03104300.xhp\n"
+"par_id3156023\n"
"6\n"
"help.text"
-msgid "Integer"
-msgstr "Integer"
+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 "Ако не са подадени параметри, се създава празен масив (като Dim A() , което е същото като последователност с дължина 0 в Uno). Ако са зададени параметри, за всеки параметър се създава размерност."
-#: 03010302.xhp
+#: 03104300.xhp
msgctxt ""
-"03010302.xhp\n"
-"hd_id3154909\n"
+"03104300.xhp\n"
+"hd_id3154760\n"
"7\n"
"help.text"
-msgid "Parameter:"
-msgstr "Параметър:"
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 03010302.xhp
+#: 03104300.xhp
msgctxt ""
-"03010302.xhp\n"
-"par_id3153770\n"
+"03104300.xhp\n"
+"par_id3159414\n"
"8\n"
"help.text"
-msgid "<emph>Color</emph>: Long integer expression that specifies a <link href=\"text/sbasic/shared/00000003.xhp#farbcodes\" name=\"color code\">color code</link> for which to return the Green component."
-msgstr "<emph>Color</emph>: израз от тип Long integer, задаващ <link href=\"text/sbasic/shared/00000003.xhp#farbcodes\" name=\"код на цвят\">код на цвят</link>, за който да се намери зеленият компонент."
+msgid "<emph>Argument list:</emph> A list of any number of arguments that are separated by commas."
+msgstr "<emph>Argument list:</emph> списък от произволен брой разделени със запетая аргументи."
-#: 03010302.xhp
+#: 03104300.xhp
msgctxt ""
-"03010302.xhp\n"
-"hd_id3149664\n"
+"03104300.xhp\n"
+"hd_id3150358\n"
"9\n"
"help.text"
msgid "Example:"
msgstr "Пример:"
-#: 03010302.xhp
-msgctxt ""
-"03010302.xhp\n"
-"par_id3151117\n"
-"13\n"
-"help.text"
-msgid "MsgBox \"The color \" & lVar & \" contains the components:\" & Chr(13) &_"
-msgstr "MsgBox \"Цветът \" & lVar & \" съдържа:\" & Chr(13) &_"
-
-#: 03010302.xhp
-msgctxt ""
-"03010302.xhp\n"
-"par_id3153951\n"
-"14\n"
-"help.text"
-msgid "\"red = \" & red(lVar) & Chr(13)&_"
-msgstr "\"червено= \" & Red(lVar) & Chr(13)&_"
-
-#: 03010302.xhp
-msgctxt ""
-"03010302.xhp\n"
-"par_id3152462\n"
-"15\n"
-"help.text"
-msgid "\"green = \" & green(lVar) & Chr(13)&_"
-msgstr "\"зелено= \" & Green(lVar) & Chr(13)&_"
-
-#: 03010302.xhp
+#: 03104300.xhp
msgctxt ""
-"03010302.xhp\n"
-"par_id3154730\n"
-"16\n"
+"03104300.xhp\n"
+"par_id3154939\n"
+"10\n"
"help.text"
-msgid "\"blue = \" & blue(lVar) & Chr(13) , 64,\"colors\""
-msgstr "\"синьо= \" & Blue(lVar) & Chr(13), 64, \"Цветове\""
+msgid "DimArray( 2, 2, 4 ) is the same as DIM a( 2, 2, 4 )"
+msgstr "DimArray(2, 2, 4) е същото като Dim a(2, 2, 4)."
-#: 01030000.xhp
+#: 03104400.xhp
msgctxt ""
-"01030000.xhp\n"
+"03104400.xhp\n"
"tit\n"
"help.text"
-msgid "Integrated Development Environment (IDE)"
-msgstr "Интегрирана развойна среда"
-
-#: 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 "<bookmark_value>Basic;интегрирана развойна среда</bookmark_value><bookmark_value>интегрирана развойна среда</bookmark_value>"
-
-#: 01030000.xhp
-msgctxt ""
-"01030000.xhp\n"
-"hd_id3145090\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/01030000.xhp\" name=\"Integrated Development Environment (IDE)\">Integrated Development Environment (IDE)</link>"
-msgstr "<link href=\"text/sbasic/shared/01030000.xhp\" name=\"Интегрирана развойна среда\">Интегрирана развойна среда</link>"
-
-#: 01030000.xhp
-msgctxt ""
-"01030000.xhp\n"
-"par_id3146795\n"
-"2\n"
-"help.text"
-msgid "This section describes the Integrated Development Environment for $[officename] Basic."
-msgstr "Този раздел описва интегрираната развойна среда за $[officename] Basic."
+msgid "HasUnoInterfaces Function [Runtime]"
+msgstr "Функция HasUnoInterfaces [динамична]"
-#: 03010100.xhp
+#: 03104400.xhp
msgctxt ""
-"03010100.xhp\n"
-"tit\n"
+"03104400.xhp\n"
+"bm_id3149987\n"
"help.text"
-msgid "Display Functions"
-msgstr "Функции за извеждане върху екрана"
+msgid "<bookmark_value>HasUnoInterfaces function</bookmark_value>"
+msgstr "<bookmark_value>HasUnoInterfaces, функция</bookmark_value>"
-#: 03010100.xhp
+#: 03104400.xhp
msgctxt ""
-"03010100.xhp\n"
-"hd_id3151384\n"
+"03104400.xhp\n"
+"hd_id3149987\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03010100.xhp\" name=\"Display Functions\">Display Functions</link>"
-msgstr "<link href=\"text/sbasic/shared/03010100.xhp\" name=\"Функции за извеждане върху екрана\">Функции за извеждане върху екрана</link>"
+msgid "<link href=\"text/sbasic/shared/03104400.xhp\" name=\"HasUnoInterfaces Function [Runtime]\">HasUnoInterfaces Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03104400.xhp\" name=\"Функция HasUnoInterfaces [динамична]\">Функция HasUnoInterfaces [динамична]</link>"
-#: 03010100.xhp
+#: 03104400.xhp
msgctxt ""
-"03010100.xhp\n"
-"par_id3149346\n"
+"03104400.xhp\n"
+"par_id3151262\n"
"2\n"
"help.text"
-msgid "This section describes Runtime functions used to output information to the screen display."
-msgstr "В този раздел са описани функции, които служат за извеждане на информация върху екрана."
+msgid "Tests if a Basic Uno object supports certain Uno interfaces."
+msgstr "Проверява дали Uno обект на Basic съдържа определени интерфейси на Uno."
-#: 03102450.xhp
+#: 03104400.xhp
msgctxt ""
-"03102450.xhp\n"
-"tit\n"
+"03104400.xhp\n"
+"par_id3154232\n"
+"3\n"
"help.text"
-msgid "IsError Function [Runtime]"
-msgstr "Функция IsError [динамична]"
+msgid "Returns True, if <emph>all</emph> stated Uno interfaces are supported, otherwise False is returned."
+msgstr "Връща True, ако се поддържат <emph>всички</emph> заявени интерфейси на Uno, и False в противен случай."
-#: 03102450.xhp
+#: 03104400.xhp
msgctxt ""
-"03102450.xhp\n"
-"bm_id4954680\n"
+"03104400.xhp\n"
+"hd_id3150040\n"
+"4\n"
"help.text"
-msgid "<bookmark_value>IsError function</bookmark_value>"
-msgstr "<bookmark_value>IsError, функция</bookmark_value>"
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 03102450.xhp
+#: 03104400.xhp
msgctxt ""
-"03102450.xhp\n"
-"par_idN1054E\n"
+"03104400.xhp\n"
+"par_id3155555\n"
+"5\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03102450.xhp\">IsError Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03102450.xhp\">Функция IsError [динамична]</link>"
+msgid "HasUnoInterfaces( oTest, Uno-Interface-Name 1 [, Uno-Interface-Name 2, ...])"
+msgstr "HasUnoInterfaces(oTest, Uno-Interface-Name 1 [, Uno-Interface-Name 2, ...])"
-#: 03102450.xhp
+#: 03104400.xhp
msgctxt ""
-"03102450.xhp\n"
-"par_idN1055E\n"
+"03104400.xhp\n"
+"hd_id3153345\n"
+"6\n"
"help.text"
-msgid "Tests if a variable contains an error value."
-msgstr "Проверява дали променливата съдържа стойност за грешка."
+msgid "Return value:"
+msgstr "Връщана стойност:"
-#: 03102450.xhp
+#: 03104400.xhp
msgctxt ""
-"03102450.xhp\n"
-"par_idN10561\n"
+"03104400.xhp\n"
+"par_id3148538\n"
+"7\n"
"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
+msgid "Bool"
+msgstr "Bool"
-#: 03102450.xhp
+#: 03104400.xhp
msgctxt ""
-"03102450.xhp\n"
-"par_idN10565\n"
+"03104400.xhp\n"
+"hd_id3159157\n"
+"8\n"
"help.text"
-msgid "IsError (Var)"
-msgstr "IsError (Var)"
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 03102450.xhp
+#: 03104400.xhp
msgctxt ""
-"03102450.xhp\n"
-"par_idN10568\n"
+"03104400.xhp\n"
+"par_id3155419\n"
+"9\n"
"help.text"
-msgid "Return value:"
-msgstr "Връщана стойност:"
+msgid "<emph>oTest:</emph> the Basic Uno object that you want to test."
+msgstr "<emph>oTest:</emph> Uno обектът на Basic, който да бъде проверен."
-#: 03102450.xhp
+#: 03104400.xhp
msgctxt ""
-"03102450.xhp\n"
-"par_idN1056C\n"
+"03104400.xhp\n"
+"par_id3149236\n"
+"10\n"
"help.text"
-msgid "Bool"
-msgstr "Bool"
+msgid "<emph>Uno-Interface-Name:</emph> list of Uno interface names."
+msgstr "<emph>Uno-Interface-Name:</emph> списък с имена на интерфейси на Uno."
-#: 03102450.xhp
+#: 03104400.xhp
msgctxt ""
-"03102450.xhp\n"
-"par_idN1056F\n"
+"03104400.xhp\n"
+"hd_id3147574\n"
+"11\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "Example:"
+msgstr "Пример:"
-#: 03102450.xhp
+#: 03104400.xhp
msgctxt ""
-"03102450.xhp\n"
-"par_idN10573\n"
+"03104400.xhp\n"
+"par_id3149580\n"
+"12\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 "<emph>Var:</emph> променлива, която бъде проверена. Ако променливата съдържа стойност за грешка, функцията връща <emph>True</emph>, в противен случай – <emph>False</emph>."
+msgid "bHas = HasUnoInterfaces( oTest, \"com.sun.star.beans.XIntrospection\" )"
+msgstr "bHas = HasUnoInterfaces(oTest, \"com.sun.star.beans.XIntrospection\")"
-#: 03131000.xhp
+#: 03104500.xhp
msgctxt ""
-"03131000.xhp\n"
+"03104500.xhp\n"
"tit\n"
"help.text"
-msgid "GetSolarVersion Function [Runtime]"
-msgstr "Функция GetSolarVersion [динамична]"
+msgid "IsUnoStruct Function [Runtime]"
+msgstr "IsUnoStruct Function [Runtime]"
-#: 03131000.xhp
+#: 03104500.xhp
msgctxt ""
-"03131000.xhp\n"
-"bm_id3157898\n"
+"03104500.xhp\n"
+"bm_id3146117\n"
"help.text"
-msgid "<bookmark_value>GetSolarVersion function</bookmark_value>"
-msgstr "<bookmark_value>GetSolarVersion, функция</bookmark_value>"
+msgid "<bookmark_value>IsUnoStruct function</bookmark_value>"
+msgstr "<bookmark_value>IsUnoStruct, функция</bookmark_value>"
-#: 03131000.xhp
+#: 03104500.xhp
msgctxt ""
-"03131000.xhp\n"
-"hd_id3157898\n"
+"03104500.xhp\n"
+"hd_id3146117\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03131000.xhp\" name=\"GetSolarVersion Function [Runtime]\">GetSolarVersion Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03131000.xhp\" name=\"Функция GetSolarVersion [динамична]\">Функция GetSolarVersion [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03104500.xhp\" name=\"IsUnoStruct Function [Runtime]\">IsUnoStruct Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03104500.xhp\" name=\"Функция IsUnoStruct [динамична]\">Функция IsUnoStruct [динамична]</link>"
-#: 03131000.xhp
+#: 03104500.xhp
msgctxt ""
-"03131000.xhp\n"
-"par_id3152801\n"
+"03104500.xhp\n"
+"par_id3146957\n"
"2\n"
"help.text"
-msgid "Returns the internal number of the current $[officename] version."
-msgstr "Връща вътрешния номер на текущата версия на $[officename]."
+msgid "Returns True if the given object is a Uno struct."
+msgstr "Връща True, ако даденият обект е структура на Uno."
-#: 03131000.xhp
+#: 03104500.xhp
msgctxt ""
-"03131000.xhp\n"
-"hd_id3153311\n"
+"03104500.xhp\n"
+"hd_id3148538\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03131000.xhp
+#: 03104500.xhp
msgctxt ""
-"03131000.xhp\n"
-"par_id3155388\n"
+"03104500.xhp\n"
+"par_id3155341\n"
"4\n"
"help.text"
-msgid "s = GetSolarVersion"
-msgstr "s = GetSolarVersion"
+msgid "IsUnoStruct( Uno type )"
+msgstr "IsUnoStruct(Uno type)"
-#: 03131000.xhp
+#: 03104500.xhp
msgctxt ""
-"03131000.xhp\n"
-"hd_id3149514\n"
+"03104500.xhp\n"
+"hd_id3148473\n"
"5\n"
"help.text"
msgid "Return value:"
msgstr "Връщана стойност:"
-#: 03131000.xhp
+#: 03104500.xhp
msgctxt ""
-"03131000.xhp\n"
-"par_id3148685\n"
+"03104500.xhp\n"
+"par_id3145315\n"
"6\n"
"help.text"
-msgid "String"
-msgstr "String"
+msgid "Bool"
+msgstr "Bool"
-#: 03131000.xhp
+#: 03104500.xhp
msgctxt ""
-"03131000.xhp\n"
-"hd_id3143270\n"
+"03104500.xhp\n"
+"hd_id3145609\n"
"7\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 03131000.xhp
+#: 03104500.xhp
msgctxt ""
-"03131000.xhp\n"
+"03104500.xhp\n"
"par_id3148947\n"
-"11\n"
-"help.text"
-msgid "MsgBox sSep,64,\"Version number of the solar technology\""
-msgstr "MsgBox sSep, 64, \"Номер на версия на технологията на Sun\""
-
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"tit\n"
-"help.text"
-msgid "CreateUnoListener Function [Runtime]"
-msgstr "Функция CreateUnoListener [динамична]"
-
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"bm_id3155150\n"
-"help.text"
-msgid "<bookmark_value>CreateUnoListener function</bookmark_value>"
-msgstr "<bookmark_value>CreateUnoListener, функция</bookmark_value>"
-
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"hd_id3155150\n"
-"53\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03132000.xhp\" name=\"CreateUnoListener Function [Runtime]\">CreateUnoListener Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03132000.xhp\" name=\"Функция CreateUnoListener [динамична]\">Функция CreateUnoListener [динамична]</link>"
-
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3149346\n"
-"52\n"
-"help.text"
-msgid "Creates a Listener instance."
-msgstr "Създава екземпляр на интерфейса Listener."
-
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3153681\n"
-"51\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 "Много интерфейси на Uno ви позволяват да регистрирате слушател чрез специален интерфейс (Listener). Така можете да следите за определени събития и да извиквате съответния метод на слушателя. Функцията CreateUnoListener изчаква извикания интерфейс на слушател, след което подава на интерфейса обект, поддържан от него. Този обект се предава на метода, за да регистрира слушателя."
-
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"hd_id3148685\n"
-"50\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
-
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3143228\n"
-"49\n"
+"8\n"
"help.text"
-msgid "oListener = CreateUnoListener( Prefixname, ListenerInterfaceName )"
-msgstr "oListener = CreateUnoListener(Prefixname, ListenerInterfaceName)"
+msgid "Uno type : A UnoObject"
+msgstr "Uno type : A UnoObject"
-#: 03132000.xhp
+#: 03104500.xhp
msgctxt ""
-"03132000.xhp\n"
-"hd_id3147574\n"
-"48\n"
+"03104500.xhp\n"
+"hd_id3156343\n"
+"9\n"
"help.text"
msgid "Example:"
msgstr "Пример:"
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3154046\n"
-"47\n"
-"help.text"
-msgid "The following example is based on a Basic library object."
-msgstr "Следващият пример е базиран на обект от библиотека на Basic."
-
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3149294\n"
-"44\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 "Методът CreateUnoListener изисква два параметъра. Първият – префикс – е обяснен подробно по-долу. Вторият параметър е напълно квалифицирано име на интерфейса за слушател, който искате да използвате."
-
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3149670\n"
-"43\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 "След това слушателят трябва да бъде добавен към обект от тип Broadcaster. Това става чрез извикване на съответния метод за добавяне на слушател. Тези методи винаги следват схемата \"addFooListener\", където \"Foo\" е типът на интерфейса за слушател без „X“. В този пример се извиква методът addContainerListener, за да се регистрира слушател от типа XContainerListener:"
-
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3154940\n"
-"41\n"
-"help.text"
-msgid "oLib = BasicLibraries.Library1 ' Library1 must exist!"
-msgstr "oLib = BasicLibraries.Library1 ' Library1 трябва да съществува!"
-
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3150359\n"
-"40\n"
-"help.text"
-msgid "oLib.addContainerListener( oListener ) ' Register the listener"
-msgstr "oLib.addContainerListener(oListener) ' Регистрираме слушателя"
-
-#: 03132000.xhp
+#: 03104500.xhp
msgctxt ""
-"03132000.xhp\n"
-"par_id3154138\n"
-"39\n"
+"03104500.xhp\n"
+"par_idN10638\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 "Сега слушателят е регистриран. Когато възникне събитие, съответният слушател извиква подходящия метод от интерфейса com.sun.star.container.XContainerListener."
+msgid "' Instantiate a service"
+msgstr "' Създаваме екземпляр на услуга"
-#: 03132000.xhp
+#: 03104500.xhp
msgctxt ""
-"03132000.xhp\n"
-"par_id3148922\n"
-"38\n"
+"03104500.xhp\n"
+"par_idN10644\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 "Префиксът извиква регистрирани слушатели от подпрограми на Basic. Системата за изпълнение на Basic търси процедури или функции с името „PrefixListenerMethode“ и ги извиква, ако бъдат намерени. В противен случай възниква грешка по време на изпълнение."
+msgid "MsgBox bIsStruct ' Displays False because oSimpleFileAccess Is NO struct"
+msgstr "MsgBox bIsStruct ' Показва False, тъй като oSimpleFileAccess не е структура"
-#: 03132000.xhp
+#: 03104500.xhp
msgctxt ""
-"03132000.xhp\n"
-"par_id3150768\n"
-"37\n"
+"03104500.xhp\n"
+"par_idN10649\n"
"help.text"
-msgid "In this example, the Listener-Interface uses the following methods:"
-msgstr "В този пример интерфейсът на слушател използва следните методи:"
+msgid "' Instantiate a Property struct"
+msgstr "' Създаваме екземпляр на структура от тип Property"
-#: 03132000.xhp
+#: 03104500.xhp
msgctxt ""
-"03132000.xhp\n"
-"par_id3151176\n"
-"36\n"
+"03104500.xhp\n"
+"par_idN10653\n"
"help.text"
-msgid "disposing:"
-msgstr "disposing:"
+msgid "MsgBox bIsStruct ' Displays True because aProperty is a struct"
+msgstr "MsgBox bIsStruct ' Показва True, тъй като aProperty е структура"
-#: 03132000.xhp
+#: 03104500.xhp
msgctxt ""
-"03132000.xhp\n"
-"par_id3145173\n"
-"35\n"
+"03104500.xhp\n"
+"par_idN1065B\n"
"help.text"
-msgid "Listener base interface (com.sun.star.lang.XEventListener): base interface for all Listener Interfaces"
-msgstr "Базов интерфейс Listener (com.sun.star.lang.XEventListener): базов интерфейс за всички интерфейси на слушатели"
+msgid "MsgBox bIsStruct ' Displays False because 42 is NO struct"
+msgstr "MsgBox bIsStruct ' Показва False, тъй като 42 не е структура"
-#: 03132000.xhp
+#: 03104600.xhp
msgctxt ""
-"03132000.xhp\n"
-"par_id3156212\n"
-"34\n"
+"03104600.xhp\n"
+"tit\n"
"help.text"
-msgid "elementInserted:"
-msgstr "elementInserted:"
+msgid "EqualUnoObjects Function [Runtime]"
+msgstr "Функция EqualUnoObjects [динамична]"
-#: 03132000.xhp
+#: 03104600.xhp
msgctxt ""
-"03132000.xhp\n"
-"par_id3159254\n"
-"33\n"
+"03104600.xhp\n"
+"bm_id3149205\n"
"help.text"
-msgid "Method of the com.sun.star.container.XContainerListener interface"
-msgstr "Метод на интерфейса com.sun.star.container.XContainerListener"
+msgid "<bookmark_value>EqualUnoObjects function</bookmark_value>"
+msgstr "<bookmark_value>EqualUnoObjects, функция</bookmark_value>"
-#: 03132000.xhp
+#: 03104600.xhp
msgctxt ""
-"03132000.xhp\n"
-"par_id3147287\n"
-"32\n"
+"03104600.xhp\n"
+"hd_id3149205\n"
+"1\n"
"help.text"
-msgid "elementRemoved:"
-msgstr "elementRemoved:"
+msgid "<link href=\"text/sbasic/shared/03104600.xhp\" name=\"EqualUnoObjects Function [Runtime]\">EqualUnoObjects Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03104600.xhp\" name=\"Функция EqualUnoObjects [динамична]\">Функция EqualUnoObjects [динамична]</link>"
-#: 03132000.xhp
+#: 03104600.xhp
msgctxt ""
-"03132000.xhp\n"
-"par_id3146119\n"
-"31\n"
+"03104600.xhp\n"
+"par_id3145090\n"
+"2\n"
"help.text"
-msgid "Method of the com.sun.star.container.XContainerListener interface"
-msgstr "Метод на интерфейса com.sun.star.container.XContainerListener"
+msgid "Returns True if the two specified Basic Uno objects represent the same Uno object instance."
+msgstr "Връща True, ако два зададени обекта на Uno в Basic представят един и същ екземпляр на обект на Uno."
-#: 03132000.xhp
+#: 03104600.xhp
msgctxt ""
-"03132000.xhp\n"
-"par_id3153951\n"
-"30\n"
+"03104600.xhp\n"
+"hd_id3148538\n"
+"3\n"
"help.text"
-msgid "elementReplaced:"
-msgstr "elementReplaced:"
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 03132000.xhp
+#: 03104600.xhp
msgctxt ""
-"03132000.xhp\n"
-"par_id3154013\n"
-"29\n"
+"03104600.xhp\n"
+"par_id3150669\n"
+"4\n"
"help.text"
-msgid "Method of the com.sun.star.container.XContainerListener interface"
-msgstr "Метод на интерфейса com.sun.star.container.XContainerListener"
+msgid "EqualUnoObjects( oObj1, oObj2 )"
+msgstr "EqualUnoObjects(oObj1, oObj2)"
-#: 03132000.xhp
+#: 03104600.xhp
msgctxt ""
-"03132000.xhp\n"
-"par_id3147435\n"
-"28\n"
+"03104600.xhp\n"
+"hd_id3150984\n"
+"5\n"
"help.text"
-msgid "In this example, the prefix is ContListener_. The following subroutines must therefore be implemented in Basic:"
-msgstr "В този пример префиксът е ContListener_. Следователно в кода на Basic трябва да са реализирани следните подпрограми:"
+msgid "Return value:"
+msgstr "Връщана стойност:"
-#: 03132000.xhp
+#: 03104600.xhp
msgctxt ""
-"03132000.xhp\n"
-"par_id3155411\n"
-"27\n"
+"03104600.xhp\n"
+"par_id3154285\n"
+"6\n"
"help.text"
-msgid "ContListener_disposing"
-msgstr "ContListener_disposing"
+msgid "Bool"
+msgstr "Bool"
-#: 03132000.xhp
+#: 03104600.xhp
msgctxt ""
-"03132000.xhp\n"
-"par_id3146923\n"
-"26\n"
+"03104600.xhp\n"
+"hd_id3145315\n"
+"7\n"
"help.text"
-msgid "ContListener_elementInserted"
-msgstr "ContListener_elementInserted"
+msgid "Example:"
+msgstr "Пример:"
-#: 03132000.xhp
+#: 03104600.xhp
msgctxt ""
-"03132000.xhp\n"
-"par_id3147318\n"
-"25\n"
+"03104600.xhp\n"
+"par_id3156024\n"
+"8\n"
"help.text"
-msgid "ContListener_elementRemoved"
-msgstr "ContListener_elementRemoved"
+msgid "// Copy of objects -> same instance"
+msgstr "// Копираме обекти -> един и същ екземпляр"
-#: 03132000.xhp
+#: 03104600.xhp
msgctxt ""
-"03132000.xhp\n"
-"par_id3152578\n"
-"24\n"
+"03104600.xhp\n"
+"par_id3154923\n"
+"9\n"
"help.text"
-msgid "ContListener_elementReplaced"
-msgstr "ContListener_elementReplaced"
+msgid "oIntrospection = CreateUnoService( \"com.sun.star.beans.Introspection\" )"
+msgstr "oIntrospection = CreateUnoService(\"com.sun.star.beans.Introspection\")"
-#: 03132000.xhp
+#: 03104600.xhp
msgctxt ""
-"03132000.xhp\n"
-"par_id3150592\n"
-"23\n"
+"03104600.xhp\n"
+"par_id3147559\n"
+"10\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 "За всеки тип слушател съществува тип – структура, който съдържа информация за събитие. Когато се изпълни метод на слушателя, екземпляр на събитието се изпраща на метода като параметър. Базовите методи на слушателя също могат да извикват тези обекти – събития, стига в декларацията Sub да е включен съответният параметър. Например:"
+msgid "oIntro2 = oIntrospection"
+msgstr "oIntro2 = oIntrospection"
-#: 03132000.xhp
+#: 03104600.xhp
msgctxt ""
-"03132000.xhp\n"
-"par_id3153876\n"
-"21\n"
+"03104600.xhp\n"
+"par_id3150541\n"
+"11\n"
"help.text"
-msgid "MsgBox \"disposing\""
-msgstr "MsgBox \"disposing\""
+msgid "print EqualUnoObjects( oIntrospection, oIntro2 )"
+msgstr "Print EqualUnoObjects(oIntrospection, oIntro2)"
-#: 03132000.xhp
+#: 03104600.xhp
msgctxt ""
-"03132000.xhp\n"
-"par_id3154098\n"
-"17\n"
+"03104600.xhp\n"
+"par_id3153525\n"
+"12\n"
"help.text"
-msgid "MsgBox \"elementInserted\""
-msgstr "MsgBox \"elementInserted\""
+msgid "// Copy of structs as value -> new instance"
+msgstr "// Копираме структура по стойност -> нов екземпляр"
-#: 03132000.xhp
+#: 03104600.xhp
msgctxt ""
-"03132000.xhp\n"
-"par_id3153947\n"
+"03104600.xhp\n"
+"par_id3154366\n"
"13\n"
"help.text"
-msgid "MsgBox \"elementRemoved\""
-msgstr "MsgBox \"elementRemoved\""
-
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3148915\n"
-"9\n"
-"help.text"
-msgid "MsgBox \"elementReplaced\""
-msgstr "MsgBox \"elementReplaced\""
-
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3156056\n"
-"6\n"
-"help.text"
-msgid "You do not need to include the parameter of an event object if the object is not used:"
-msgstr "Не е необходимо да включвате параметъра за обект – събитие, ако обектът не се използва:"
+msgid "Dim Struct1 as new com.sun.star.beans.Property"
+msgstr "Dim Struct1 As New com.sun.star.beans.Property"
-#: 03132000.xhp
+#: 03104600.xhp
msgctxt ""
-"03132000.xhp\n"
-"par_id3150042\n"
-"5\n"
+"03104600.xhp\n"
+"par_id3154348\n"
+"14\n"
"help.text"
-msgid "' Minimal implementation of Sub disposing"
-msgstr "' Минимална реализация на Sub disposing"
+msgid "Struct2 = Struct1"
+msgstr "Struct2 = Struct1"
-#: 03132000.xhp
+#: 03104600.xhp
msgctxt ""
-"03132000.xhp\n"
-"par_id3150940\n"
-"2\n"
+"03104600.xhp\n"
+"par_id3154125\n"
+"15\n"
"help.text"
-msgid "Listener methods must <emph>always</emph> be implemented to avoid Basic run-time errors."
-msgstr "Методите на слушателя трябва <emph>винаги</emph> да са реализирани, за да се избегнат грешки по време на изпълнение."
+msgid "print EqualUnoObjects( Struct1, Struct2 )"
+msgstr "Print EqualUnoObjects(Struct1, Struct2)"
-#: 03020205.xhp
+#: 03104700.xhp
msgctxt ""
-"03020205.xhp\n"
+"03104700.xhp\n"
"tit\n"
"help.text"
-msgid "Write Statement [Runtime]"
-msgstr "Оператор Write [динамичен]"
+msgid "Erase Function [Runtime]"
+msgstr "Функция Erase [динамична]"
-#: 03020205.xhp
+#: 03104700.xhp
msgctxt ""
-"03020205.xhp\n"
-"bm_id3147229\n"
+"03104700.xhp\n"
+"bm_id624713\n"
"help.text"
-msgid "<bookmark_value>Write statement</bookmark_value>"
-msgstr "<bookmark_value>Write, оператор</bookmark_value>"
+msgid "<bookmark_value>Erase function</bookmark_value>"
+msgstr "<bookmark_value>Erase, функция</bookmark_value>"
-#: 03020205.xhp
+#: 03104700.xhp
msgctxt ""
-"03020205.xhp\n"
-"hd_id3147229\n"
-"1\n"
+"03104700.xhp\n"
+"par_idN10548\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020205.xhp\" name=\"Write Statement [Runtime]\">Write Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03020205.xhp\" name=\"Оператор Write [динамичен]\">Оператор Write [динамичен]</link>"
+msgid "<link href=\"text/sbasic/shared/03104700.xhp\">Erase Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03104700.xhp\">Функция Erase [динамична]</link>"
-#: 03020205.xhp
+#: 03104700.xhp
msgctxt ""
-"03020205.xhp\n"
-"par_id3154685\n"
-"2\n"
+"03104700.xhp\n"
+"par_idN10558\n"
"help.text"
-msgid "Writes data to a sequential file."
-msgstr "Записва данни във файл с последователен достъп."
+msgid "Erases the contents of array elements of fixed size arrays, and releases the memory used by arrays of variable size."
+msgstr "Изтрива съдържанието на елементите на масиви с фиксиран размер и освобождава паметта, заета от масиви с променлив размер."
-#: 03020205.xhp
+#: 03104700.xhp
msgctxt ""
-"03020205.xhp\n"
-"hd_id3150449\n"
-"3\n"
+"03104700.xhp\n"
+"par_idN1055D\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03020205.xhp
+#: 03104700.xhp
msgctxt ""
-"03020205.xhp\n"
-"par_id3145785\n"
-"4\n"
+"03104700.xhp\n"
+"par_idN105E6\n"
"help.text"
-msgid "Write [#FileName], [Expressionlist]"
-msgstr "Write [#FileNumber], [Expressionlist]"
+msgid "Erase Arraylist"
+msgstr "Erase Arraylist"
-#: 03020205.xhp
+#: 03104700.xhp
msgctxt ""
-"03020205.xhp\n"
-"hd_id3151116\n"
-"5\n"
+"03104700.xhp\n"
+"par_idN105E9\n"
"help.text"
msgid "Parameters:"
msgstr "Параметри:"
-#: 03020205.xhp
-msgctxt ""
-"03020205.xhp\n"
-"par_id3153728\n"
-"6\n"
-"help.text"
-msgid "<emph>FileName:</emph> Any numeric expression that contains the file number that was set by the Open statement for the respective file."
-msgstr "<emph>FileNumber:</emph> числов израз – номер на файл, отворен с оператора Open."
-
-#: 03020205.xhp
-msgctxt ""
-"03020205.xhp\n"
-"par_id3146120\n"
-"7\n"
-"help.text"
-msgid "<emph>Expressionlist:</emph> Variables or expressions that you want to enter in a file, separated by commas."
-msgstr "<emph>ExpressionList:</emph> разделени със запетаи променливи или изрази, чиито стойности желаете да се запишат във файла."
-
-#: 03020205.xhp
-msgctxt ""
-"03020205.xhp\n"
-"par_id3150010\n"
-"8\n"
-"help.text"
-msgid "If the expression list is omitted, the <emph>Write</emph> statement appends an empty line to the file."
-msgstr "Ако списъкът с изрази е пропуснат, операторът <emph>Write</emph> добавя празен ред към файла."
-
-#: 03020205.xhp
-msgctxt ""
-"03020205.xhp\n"
-"par_id3163713\n"
-"9\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 "За да добавите списък от стойности на изрази към нов или съществуващ файл, файлът трябва да бъде отворен в режима <emph>Output</emph> или <emph>Append</emph>."
-
-#: 03020205.xhp
+#: 03104700.xhp
msgctxt ""
-"03020205.xhp\n"
-"par_id3147428\n"
-"10\n"
+"03104700.xhp\n"
+"par_idN105ED\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 "Низовете, които записвате, се ограждат с кавички и се разделят със запетаи. Не е необходимо да въвеждате тези разделители в списъка с изрази."
+msgid "<emph>Arraylist</emph> - The list of arrays to be erased."
+msgstr "<emph>Arraylist:</emph> списък от масиви за изтриване."
-#: 03020205.xhp
+#: 03110000.xhp
msgctxt ""
-"03020205.xhp\n"
-"par_id1002838\n"
+"03110000.xhp\n"
+"tit\n"
"help.text"
-msgid "Each <emph>Write</emph> statement outputs a line end symbol as last entry."
-msgstr "Всеки оператор <emph>Write</emph> извежда знак за край на ред като като последен елемент."
+msgid "Comparison Operators"
+msgstr "Операции за сравнение"
-#: 03020205.xhp
+#: 03110000.xhp
msgctxt ""
-"03020205.xhp\n"
-"par_id6618854\n"
+"03110000.xhp\n"
+"hd_id3155555\n"
+"1\n"
"help.text"
-msgid "Numbers with decimal delimiters are converted according to the locale settings."
-msgstr "Числата с десетични разделители се преобразуват според настройките на локала."
+msgid "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Comparison Operators\">Comparison Operators</link>"
+msgstr "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Операции за сравнение\">Операции за сравнение</link>"
-#: 03020205.xhp
+#: 03110000.xhp
msgctxt ""
-"03020205.xhp\n"
-"hd_id3151073\n"
-"11\n"
+"03110000.xhp\n"
+"par_id3153528\n"
+"2\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "The available comparison operators are described here."
+msgstr "Тук са описани наличните операции за сравнение."
-#: 03020409.xhp
+#: 03110100.xhp
msgctxt ""
-"03020409.xhp\n"
+"03110100.xhp\n"
"tit\n"
"help.text"
-msgid "GetAttr Function [Runtime]"
-msgstr "Функция GetAttr [динамична]"
+msgid "Comparison Operators [Runtime]"
+msgstr "Операции за сравнение [динамични]"
-#: 03020409.xhp
+#: 03110100.xhp
msgctxt ""
-"03020409.xhp\n"
-"bm_id3150984\n"
+"03110100.xhp\n"
+"bm_id3150682\n"
"help.text"
-msgid "<bookmark_value>GetAttr function</bookmark_value>"
-msgstr "<bookmark_value>GetAttr, функция</bookmark_value>"
+msgid "<bookmark_value>comparison operators;%PRODUCTNAME Basic</bookmark_value><bookmark_value>operators;comparisons</bookmark_value>"
+msgstr "<bookmark_value>сравнение, операции за;%PRODUCTNAME Basic</bookmark_value><bookmark_value>операции;за сравнение</bookmark_value>"
-#: 03020409.xhp
+#: 03110100.xhp
msgctxt ""
-"03020409.xhp\n"
-"hd_id3150984\n"
+"03110100.xhp\n"
+"hd_id3150682\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020409.xhp\" name=\"GetAttr Function [Runtime]\">GetAttr Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03020409.xhp\" name=\"Функция GetAttr [динамична]\">Функция GetAttr [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03110100.xhp\" name=\"Comparison Operators [Runtime]\">Comparison Operators [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03110100.xhp\" name=\"Операции за сравнение [динамични]\">Операции за сравнение [динамични]</link>"
-#: 03020409.xhp
+#: 03110100.xhp
msgctxt ""
-"03020409.xhp\n"
-"par_id3154347\n"
+"03110100.xhp\n"
+"par_id3156042\n"
"2\n"
"help.text"
-msgid "Returns a bit pattern that identifies the file type or the name of a volume or a directory."
-msgstr "Връща комбинация от битове, които отразяват типа на файла или името на том или директория."
+msgid "Comparison operators compare two expressions. The result is returned as a Boolean expression that determines if the comparison is True (-1) or False (0)."
+msgstr "Операциите за сравнение сравняват стойностите на два израза. Резултатът е от тип Boolean и показва дали операцията има стойност True (-1) или False (0)."
-#: 03020409.xhp
+#: 03110100.xhp
msgctxt ""
-"03020409.xhp\n"
-"hd_id3149457\n"
+"03110100.xhp\n"
+"hd_id3147291\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03020409.xhp
+#: 03110100.xhp
msgctxt ""
-"03020409.xhp\n"
-"par_id3150359\n"
+"03110100.xhp\n"
+"par_id3149177\n"
"4\n"
"help.text"
-msgid "GetAttr (Text As String)"
-msgstr "GetAttr (Text As String)"
+msgid "Result = Expression1 { = | < | > | <= | >= } Expression2"
+msgstr "Result = Expression1 { = | < | > | <= | >= } Expression2"
-#: 03020409.xhp
+#: 03110100.xhp
msgctxt ""
-"03020409.xhp\n"
-"hd_id3151211\n"
+"03110100.xhp\n"
+"hd_id3145316\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Връщана стойност:"
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 03020409.xhp
+#: 03110100.xhp
msgctxt ""
-"03020409.xhp\n"
-"par_id3154909\n"
+"03110100.xhp\n"
+"par_id3147573\n"
"6\n"
"help.text"
-msgid "Integer"
-msgstr "Integer"
+msgid "<emph>Result:</emph> Boolean expression that specifies the result of the comparison (True, or False)"
+msgstr "<emph>Result:</emph> булева променлива за резултата от сравнението (True или False)."
-#: 03020409.xhp
+#: 03110100.xhp
msgctxt ""
-"03020409.xhp\n"
-"hd_id3145172\n"
+"03110100.xhp\n"
+"par_id3148686\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "<emph>Expression1, Expression2:</emph> Any numeric values or strings that you want to compare."
+msgstr "<emph>Expression1, Expression2:</emph> числови стойности или низове, които да бъдат сравнени."
-#: 03020409.xhp
+#: 03110100.xhp
msgctxt ""
-"03020409.xhp\n"
-"par_id3151042\n"
+"03110100.xhp\n"
+"hd_id3147531\n"
"8\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 "<emph>Text:</emph> низов израз, който еднозначно посочва файл. Може да бъде във вид на <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL\">URL</link>."
+msgid "Comparison operators"
+msgstr "Операции за сравнение"
-#: 03020409.xhp
+#: 03110100.xhp
msgctxt ""
-"03020409.xhp\n"
-"par_id3161831\n"
+"03110100.xhp\n"
+"par_id3147265\n"
"9\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 "Тази функция определя атрибутите на зададен файл и връща комбинация от битове, отразяваща следните атрибути:"
+msgid "= : Equal to"
+msgstr "= : равно на"
-#: 03020409.xhp
+#: 03110100.xhp
msgctxt ""
-"03020409.xhp\n"
-"hd_id3145364\n"
+"03110100.xhp\n"
+"par_id3154924\n"
"10\n"
"help.text"
-msgid "Value"
-msgstr "Стойност"
+msgid "< : Less than"
+msgstr "< : по-малко"
-#: 03020409.xhp
+#: 03110100.xhp
msgctxt ""
-"03020409.xhp\n"
-"par_id3147349\n"
+"03110100.xhp\n"
+"par_id3146795\n"
"11\n"
"help.text"
-msgid "0 : Normal files."
-msgstr "0: обикновен файл"
+msgid "> : Greater than"
+msgstr "> : по-голямо"
-#: 03020409.xhp
+#: 03110100.xhp
msgctxt ""
-"03020409.xhp\n"
-"par_id3147434\n"
+"03110100.xhp\n"
+"par_id3150541\n"
"12\n"
"help.text"
-msgid "1 : Read-only files."
-msgstr "1: файл само за четене"
-
-#: 03020409.xhp
-msgctxt ""
-"03020409.xhp\n"
-"par_id3159154\n"
-"15\n"
-"help.text"
-msgid "8 : Returns the name of the volume"
-msgstr "8: име на том"
-
-#: 03020409.xhp
-msgctxt ""
-"03020409.xhp\n"
-"par_id3145271\n"
-"16\n"
-"help.text"
-msgid "16 : Returns the name of the directory only."
-msgstr "16: име на директория"
+msgid "<= : Less than or equal to"
+msgstr "<= : по-малко или равно"
-#: 03020409.xhp
+#: 03110100.xhp
msgctxt ""
-"03020409.xhp\n"
-"par_id3153953\n"
-"17\n"
+"03110100.xhp\n"
+"par_id3150400\n"
+"13\n"
"help.text"
-msgid "32 : File was changed since last backup (Archive bit)."
-msgstr "32: файлът е бил променен след последното архивиране (бит за архивиране)"
+msgid ">= : Greater than or equal to"
+msgstr ">= : по-голямо или равно"
-#: 03020409.xhp
+#: 03110100.xhp
msgctxt ""
-"03020409.xhp\n"
-"par_id3156444\n"
-"18\n"
+"03110100.xhp\n"
+"par_id3148797\n"
+"14\n"
"help.text"
-msgid "If you want to know if a bit of the attribute byte is set, use the following query method:"
-msgstr "Ако искате да знаете дали определен бит от байта с атрибути е единица, използвайте следния метод:"
+msgid "<> : Not equal to"
+msgstr "<> : различно"
-#: 03020409.xhp
+#: 03110100.xhp
msgctxt ""
-"03020409.xhp\n"
-"hd_id3153094\n"
-"19\n"
+"03110100.xhp\n"
+"hd_id3154686\n"
+"15\n"
"help.text"
msgid "Example:"
msgstr "Пример:"
-#: 03020409.xhp
+#: 03110100.xhp
msgctxt ""
-"03020409.xhp\n"
-"par_id3155415\n"
-"21\n"
+"03110100.xhp\n"
+"par_id3154909\n"
+"18\n"
"help.text"
-msgid "On Error GoTo ErrorHandler ' Define target for error handler"
-msgstr "On Error Goto ErrorHandler ' Местоназначение за обработка на грешки"
+msgid "Dim sRoot As String ' Root directory for file in and output"
+msgstr "Dim sRoot As String ' Главна директория за файлов вход/изход"
-#: 03090102.xhp
+#: 03120000.xhp
msgctxt ""
-"03090102.xhp\n"
+"03120000.xhp\n"
"tit\n"
"help.text"
-msgid "Select...Case Statement [Runtime]"
-msgstr "Оператор Select…Case [динамичен]"
-
-#: 03090102.xhp
-msgctxt ""
-"03090102.xhp\n"
-"bm_id3149416\n"
-"help.text"
-msgid "<bookmark_value>Select...Case statement</bookmark_value><bookmark_value>Case statement</bookmark_value>"
-msgstr "<bookmark_value>Select…Case, оператор</bookmark_value><bookmark_value>Case, оператор</bookmark_value>"
+msgid "Strings"
+msgstr "Низове"
-#: 03090102.xhp
+#: 03120000.xhp
msgctxt ""
-"03090102.xhp\n"
-"hd_id3149416\n"
+"03120000.xhp\n"
+"hd_id3156153\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090102.xhp\" name=\"Select...Case Statement [Runtime]\">Select...Case Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090102.xhp\" name=\"Оператор Select…Case [динамичен]\">Оператор Select…Case [динамичен]</link>"
+msgid "<link href=\"text/sbasic/shared/03120000.xhp\" name=\"Strings\">Strings</link>"
+msgstr "<link href=\"text/sbasic/shared/03120000.xhp\" name=\"Низове\">Низове</link>"
-#: 03090102.xhp
+#: 03120000.xhp
msgctxt ""
-"03090102.xhp\n"
-"par_id3153896\n"
+"03120000.xhp\n"
+"par_id3159176\n"
"2\n"
"help.text"
-msgid "Defines one or more statement blocks depending on the value of an expression."
-msgstr "Изпълнява един или повече операторни блока според стойността на израз."
+msgid "The following functions and statements validate and return strings."
+msgstr "Следващите функции и оператори обработват и връщат низове."
-#: 03090102.xhp
+#: 03120000.xhp
msgctxt ""
-"03090102.xhp\n"
-"hd_id3147265\n"
+"03120000.xhp\n"
+"par_id3154285\n"
"3\n"
"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
-
-#: 03090102.xhp
-msgctxt ""
-"03090102.xhp\n"
-"par_id3150400\n"
-"4\n"
-"help.text"
-msgid "Select Case condition Case expression Statement Block [Case expression2 Statement Block][Case Else] Statement Block End Select"
-msgstr "Select Case условие Case израз операторен блок [Case израз2 операторен блок][Case Else] операторен блок End Select"
-
-#: 03090102.xhp
-msgctxt ""
-"03090102.xhp\n"
-"hd_id3150767\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
-
-#: 03090102.xhp
-msgctxt ""
-"03090102.xhp\n"
-"par_id3156281\n"
-"6\n"
-"help.text"
-msgid "<emph>Condition:</emph> Any expression that controls if the statement block that follows the respective Case clause is executed."
-msgstr "<emph>Условие:</emph> израз, който определя дали ще се изпълни операторният блок, следващ съответната клауза Case."
-
-#: 03090102.xhp
-msgctxt ""
-"03090102.xhp\n"
-"par_id3150448\n"
-"7\n"
-"help.text"
-msgid "<emph>Expression:</emph> Any expression that is compatible with the Condition type expression. The statement block that follows the Case clause is executed if <emph>Condition</emph> matches <emph>Expression</emph>."
-msgstr "<emph>Израз:</emph> израз, съвместим с типа на израза <emph>Условие</emph>. Операторният блок, следващ клаузата Case, се изпълнява ако <emph>Условие</emph> отговаря на <emph>Израз</emph>."
-
-#: 03090102.xhp
-msgctxt ""
-"03090102.xhp\n"
-"hd_id3153768\n"
-"8\n"
-"help.text"
-msgid "Example:"
-msgstr "Пример:"
-
-#: 03090102.xhp
-msgctxt ""
-"03090102.xhp\n"
-"par_id3152597\n"
-"14\n"
-"help.text"
-msgid "Print \"Number from 1 to 5\""
-msgstr "Print \"Число от 1 до 5\""
+msgid "You can use strings to edit text within $[officename] Basic programs."
+msgstr "Низовете служат за работа с текст в програмите на $[officename] Basic."
-#: 03090102.xhp
+#: 03120100.xhp
msgctxt ""
-"03090102.xhp\n"
-"par_id3147349\n"
-"16\n"
+"03120100.xhp\n"
+"tit\n"
"help.text"
-msgid "Print \"Number from 6 to 8\""
-msgstr "Print \"Число от 6 до 8\""
+msgid "ASCII/ANSI Conversion in Strings"
+msgstr "Преобазуване на код ASCII/ANSI в низове"
-#: 03090102.xhp
+#: 03120100.xhp
msgctxt ""
-"03090102.xhp\n"
-"par_id3152886\n"
-"18\n"
+"03120100.xhp\n"
+"hd_id3147443\n"
+"1\n"
"help.text"
-msgid "Print \"Greater than 8\""
-msgstr "Print \"По-голямо от 8\""
+msgid "<link href=\"text/sbasic/shared/03120100.xhp\" name=\"ASCII/ANSI Conversion in Strings\">ASCII/ANSI Conversion in Strings</link>"
+msgstr "<link href=\"text/sbasic/shared/03120100.xhp\" name=\"Преобазуване на код ASCII/ANSI в низове\">Преобазуване на код ASCII/ANSI в низове</link>"
-#: 03090102.xhp
+#: 03120100.xhp
msgctxt ""
-"03090102.xhp\n"
-"par_id3146975\n"
-"20\n"
+"03120100.xhp\n"
+"par_id3159201\n"
+"2\n"
"help.text"
-msgid "Print \"Out of range 1 to 10\""
-msgstr "Print \"Извън диапазона от 1 до 10\""
+msgid "The following functions convert strings to and from ASCII or ANSI code."
+msgstr "Следващите функции преобразуват низове от и към код ASCII или ANSI."
-#: 03120313.xhp
+#: 03120101.xhp
msgctxt ""
-"03120313.xhp\n"
+"03120101.xhp\n"
"tit\n"
"help.text"
-msgid "ConvertFromURL Function [Runtime]"
-msgstr "Функция ConvertFromURL [динамична]"
+msgid "Asc Function [Runtime]"
+msgstr "Функция Asc [динамична]"
-#: 03120313.xhp
+#: 03120101.xhp
msgctxt ""
-"03120313.xhp\n"
-"bm_id3153894\n"
+"03120101.xhp\n"
+"bm_id3150499\n"
"help.text"
-msgid "<bookmark_value>ConvertFromURL function</bookmark_value>"
-msgstr "<bookmark_value>ConvertFromURL, функция</bookmark_value>"
+msgid "<bookmark_value>Asc function</bookmark_value>"
+msgstr "<bookmark_value>Asc, функция</bookmark_value>"
-#: 03120313.xhp
+#: 03120101.xhp
msgctxt ""
-"03120313.xhp\n"
-"hd_id3153894\n"
+"03120101.xhp\n"
+"hd_id3150499\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120313.xhp\" name=\"ConvertFromURL Function [Runtime]\">ConvertFromURL Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120313.xhp\" name=\"Функция ConvertFromURL [динамична]\">Функция ConvertFromURL [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03120101.xhp\" name=\"Asc Function [Runtime]\">Asc Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120101.xhp\" name=\"Функция Asc [динамична]\">Функция Asc [динамична]</link>"
-#: 03120313.xhp
+#: 03120101.xhp
msgctxt ""
-"03120313.xhp\n"
-"par_id3147226\n"
+"03120101.xhp\n"
+"par_id3151384\n"
"2\n"
"help.text"
-msgid "Converts a file URL to a system file name."
-msgstr "Преобразува файлов URL в системно файлово име."
+msgid "Returns the ASCII (American Standard Code for Information Interchange) value of the first character in a string expression."
+msgstr "Връща стойността на първия знак от низ според кода ASCII (American Standard Code for Information Interchange, американски стандартен код за обмен на информация)."
-#: 03120313.xhp
+#: 03120101.xhp
msgctxt ""
-"03120313.xhp\n"
-"hd_id3143267\n"
+"03120101.xhp\n"
+"hd_id3155555\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03120313.xhp
+#: 03120101.xhp
msgctxt ""
-"03120313.xhp\n"
-"par_id3154142\n"
+"03120101.xhp\n"
+"par_id3143267\n"
"4\n"
"help.text"
-msgid "ConvertFromURL(filename)"
-msgstr "ConvertFromURL(Filename)"
+msgid "Asc (Text As String)"
+msgstr "Asc (Text As String)"
-#: 03120313.xhp
+#: 03120101.xhp
msgctxt ""
-"03120313.xhp\n"
-"hd_id3159157\n"
+"03120101.xhp\n"
+"hd_id3147242\n"
"5\n"
"help.text"
msgid "Return value:"
msgstr "Връщана стойност:"
-#: 03120313.xhp
+#: 03120101.xhp
msgctxt ""
-"03120313.xhp\n"
+"03120101.xhp\n"
"par_id3150669\n"
"6\n"
"help.text"
-msgid "String"
-msgstr "String"
+msgid "Integer"
+msgstr "Integer"
-#: 03120313.xhp
+#: 03120101.xhp
msgctxt ""
-"03120313.xhp\n"
-"hd_id3143270\n"
+"03120101.xhp\n"
+"hd_id3148473\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Параметри:"
-#: 03120313.xhp
+#: 03120101.xhp
msgctxt ""
-"03120313.xhp\n"
-"par_id3156023\n"
+"03120101.xhp\n"
+"par_id3149415\n"
"8\n"
"help.text"
-msgid "<emph>Filename:</emph> A file name as a string."
-msgstr "<emph>Filename:</emph> низ – име на файл."
+msgid "<emph>Text:</emph> Any valid string expression. Only the first character in the string is relevant."
+msgstr "<emph>Text:</emph> валиден израз със стойност низ. Обработва се само първият му знак."
-#: 03120313.xhp
+#: 03120101.xhp
msgctxt ""
-"03120313.xhp\n"
-"hd_id3154760\n"
+"03120101.xhp\n"
+"par_id3145609\n"
"9\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
+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 "С функцията Asc можете да заменяте знаци със стойности. Ако Asc срещне празен низ, $[officename] Basic докладва грешка по време на изпълнение. Освен 7-битовите знаци от ASCII (кодове 0–127), функцията Asc разпознава и кодовете на непечатаемите знаци в ASCII. Тази функция може да обработва и 16-битови знаци от Уникод."
-#: 03120313.xhp
+#: 03120101.xhp
msgctxt ""
-"03120313.xhp\n"
-"par_id3148664\n"
+"03120101.xhp\n"
+"hd_id3159413\n"
"10\n"
"help.text"
-msgid "systemFile$ = \"c:\\folder\\mytext.txt\""
-msgstr "systemFile$ = \"c:\\folder\\mytext.txt\""
-
-#: 03120313.xhp
-msgctxt ""
-"03120313.xhp\n"
-"par_id3150541\n"
-"11\n"
-"help.text"
-msgid "url$ = ConvertToURL( systemFile$ )"
-msgstr "url$ = ConvertToURL(systemFile$)"
+msgid "Example:"
+msgstr "Пример:"
-#: 03120313.xhp
+#: 03120101.xhp
msgctxt ""
-"03120313.xhp\n"
+"03120101.xhp\n"
"par_id3150792\n"
"12\n"
"help.text"
-msgid "print url$"
-msgstr "Print url$"
+msgid "Print ASC(\"A\") ' returns 65"
+msgstr "Print ASC(\"A\") ' връща 65"
-#: 03120313.xhp
+#: 03120101.xhp
msgctxt ""
-"03120313.xhp\n"
-"par_id3154367\n"
+"03120101.xhp\n"
+"par_id3148797\n"
"13\n"
"help.text"
-msgid "systemFileAgain$ = ConvertFromURL( url$ )"
-msgstr "systemFileAgain$ = ConvertFromURL(url$)"
+msgid "Print ASC(\"Z\") ' returns 90"
+msgstr "Print ASC(\"Z\") ' връща 90"
-#: 03120313.xhp
+#: 03120101.xhp
msgctxt ""
-"03120313.xhp\n"
-"par_id3153194\n"
+"03120101.xhp\n"
+"par_id3163800\n"
"14\n"
"help.text"
-msgid "print systemFileAgain$"
-msgstr "Print systemFileAgain$"
+msgid "Print ASC(\"Las Vegas\") ' returns 76, since only the first character is taken into account"
+msgstr "Print ASC(\"Лас Вегас\") ' връща 1051, взима се предвид само първият знак"
-#: 03020408.xhp
+#: 03120101.xhp
msgctxt ""
-"03020408.xhp\n"
+"03120101.xhp\n"
+"par_idN1067B\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03120102.xhp\">CHR</link>"
+msgstr "<link href=\"text/sbasic/shared/03120102.xhp\">Chr</link>"
+
+#: 03120102.xhp
+msgctxt ""
+"03120102.xhp\n"
"tit\n"
"help.text"
-msgid "FileLen-Function [Runtime]"
-msgstr "Функция FileLen [динамична]"
+msgid "Chr Function [Runtime]"
+msgstr "Функция Chr [динамична]"
-#: 03020408.xhp
+#: 03120102.xhp
msgctxt ""
-"03020408.xhp\n"
-"bm_id3153126\n"
+"03120102.xhp\n"
+"bm_id3149205\n"
"help.text"
-msgid "<bookmark_value>FileLen function</bookmark_value>"
-msgstr "<bookmark_value>FileLen, функция</bookmark_value>"
+msgid "<bookmark_value>Chr function</bookmark_value>"
+msgstr "<bookmark_value>Chr, функция</bookmark_value>"
-#: 03020408.xhp
+#: 03120102.xhp
msgctxt ""
-"03020408.xhp\n"
-"hd_id3153126\n"
+"03120102.xhp\n"
+"hd_id3149205\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020408.xhp\" name=\"FileLen-Function [Runtime]\">FileLen Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03020408.xhp\" name=\"Функция FileLen [динамична]\">Функция FileLen [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03120102.xhp\" name=\"Chr Function [Runtime]\">Chr Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120102.xhp\" name=\"Функция Chr [динамична]\">Функция Chr [динамична]</link>"
-#: 03020408.xhp
+#: 03120102.xhp
msgctxt ""
-"03020408.xhp\n"
-"par_id3145068\n"
+"03120102.xhp\n"
+"par_id3153311\n"
"2\n"
"help.text"
-msgid "Returns the length of a file in bytes."
-msgstr "Връща дължината на файл в байтове."
+msgid "Returns the character that corresponds to the specified character code."
+msgstr "Връща знака, съответстващ на зададения знаков код."
-#: 03020408.xhp
+#: 03120102.xhp
msgctxt ""
-"03020408.xhp\n"
-"hd_id3159414\n"
+"03120102.xhp\n"
+"hd_id3149514\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03020408.xhp
+#: 03120102.xhp
msgctxt ""
-"03020408.xhp\n"
-"par_id3149656\n"
+"03120102.xhp\n"
+"par_id3150669\n"
"4\n"
"help.text"
-msgid "FileLen (Text As String)"
-msgstr "FileLen (Text As String)"
+msgid "Chr(Expression As Integer)"
+msgstr "Chr(Expression As Integer)"
-#: 03020408.xhp
+#: 03120102.xhp
msgctxt ""
-"03020408.xhp\n"
-"hd_id3148798\n"
+"03120102.xhp\n"
+"hd_id3143228\n"
"5\n"
"help.text"
msgid "Return value:"
msgstr "Връщана стойност:"
-#: 03020408.xhp
+#: 03120102.xhp
msgctxt ""
-"03020408.xhp\n"
-"par_id3156282\n"
+"03120102.xhp\n"
+"par_id3153824\n"
"6\n"
"help.text"
-msgid "Long"
-msgstr "Long"
+msgid "String"
+msgstr "String"
-#: 03020408.xhp
+#: 03120102.xhp
msgctxt ""
-"03020408.xhp\n"
-"hd_id3150768\n"
+"03120102.xhp\n"
+"hd_id3148944\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Параметри:"
-#: 03020408.xhp
+#: 03120102.xhp
msgctxt ""
-"03020408.xhp\n"
-"par_id3153193\n"
+"03120102.xhp\n"
+"par_id3149295\n"
"8\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 "<emph>Text:</emph> низов израз, посочващ еднозначно файла. Може да бъде във вид на <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL\">URL</link>."
+msgid "<emph>Expression:</emph> Numeric variables that represent a valid 8 bit ASCII value (0-255) or a 16 bit Unicode value."
+msgstr "<emph>Expression:</emph> числова стойност, представляваща валиден 8-битов код ASCII (0-255) или 16-битова стойност от Уникод."
-#: 03020408.xhp
+#: 03120102.xhp
msgctxt ""
-"03020408.xhp\n"
-"par_id3150439\n"
+"03120102.xhp\n"
+"par_id3159414\n"
"9\n"
"help.text"
-msgid "This function determines the length of a file. If the FileLen 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 Lof function."
-msgstr "Тази функция определя дължината на файл. Ако бъде извикана за отворен файл, връща дължината му отпреди отварянето. За да определите текущата дължина на отворен файл, използвайте функцията Lof."
+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 "С функцията <emph>Chr$</emph> можете да изпращате специални управляващи последователности към принтера или друго изходно устройство. Освен това с нея можете да вмъквате кавички в низ."
-#: 03020408.xhp
+#: 03120102.xhp
msgctxt ""
-"03020408.xhp\n"
-"hd_id3163710\n"
+"03120102.xhp\n"
+"hd_id3154366\n"
"10\n"
"help.text"
msgid "Example:"
msgstr "Пример:"
-#: 03020402.xhp
-msgctxt ""
-"03020402.xhp\n"
-"tit\n"
-"help.text"
-msgid "ChDrive Statement [Runtime]"
-msgstr "Оператор ChDrive [динамичен]"
-
-#: 03020402.xhp
-msgctxt ""
-"03020402.xhp\n"
-"bm_id3145068\n"
-"help.text"
-msgid "<bookmark_value>ChDrive statement</bookmark_value>"
-msgstr "<bookmark_value>ChDrive, оператор</bookmark_value>"
-
-#: 03020402.xhp
-msgctxt ""
-"03020402.xhp\n"
-"hd_id3145068\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03020402.xhp\" name=\"ChDrive Statement [Runtime]\">ChDrive Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03020402.xhp\" name=\"Оператор ChDrive [динамичен]\">Оператор ChDrive [динамичен]</link>"
-
-#: 03020402.xhp
-msgctxt ""
-"03020402.xhp\n"
-"par_id3149656\n"
-"2\n"
-"help.text"
-msgid "Changes the current drive."
-msgstr "Сменя текущото устройство."
-
-#: 03020402.xhp
-msgctxt ""
-"03020402.xhp\n"
-"hd_id3154138\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
-
-#: 03020402.xhp
-msgctxt ""
-"03020402.xhp\n"
-"par_id3154685\n"
-"4\n"
-"help.text"
-msgid "ChDrive Text As String"
-msgstr "ChDrive Text As String"
-
-#: 03020402.xhp
-msgctxt ""
-"03020402.xhp\n"
-"hd_id3156423\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
-
-#: 03020402.xhp
+#: 03120102.xhp
msgctxt ""
-"03020402.xhp\n"
-"par_id3145172\n"
-"6\n"
+"03120102.xhp\n"
+"par_id3154909\n"
+"12\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 "<emph>Text:</emph> низов израз със стойност буквата на новото устройство. Ако желаете, можете да използвате изписване като в <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL\">URL</link>."
+msgid "' This example inserts quotation marks (ASCII value 34) in a string."
+msgstr "' Този пример вмъква кавички (ASCII код 34) в низ."
-#: 03020402.xhp
+#: 03120102.xhp
msgctxt ""
-"03020402.xhp\n"
-"par_id3145785\n"
-"7\n"
+"03120102.xhp\n"
+"par_id3151380\n"
+"13\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 "На устройството трябва да е присвоена главна буква. В Windows буквата, която приписвате на устройството, е ограничена от настройката в LASTDRV. Ако аргументът за устройство е низ от няколко знака, се взима само първата буква. Ако опитате достъп до несъществуващо устройство, възниква грешка, която може да бъде обработена с оператора OnError."
+msgid "MsgBox \"A \"+ Chr$(34)+\"short\" + Chr$(34)+\" trip.\""
+msgstr "MsgBox \"Една \"+ Chr$(34) + \"кратка\" + Chr$(34) + \" разходка.\""
-#: 03020402.xhp
+#: 03120102.xhp
msgctxt ""
-"03020402.xhp\n"
-"hd_id3153188\n"
-"8\n"
+"03120102.xhp\n"
+"par_id3145174\n"
+"14\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "' The printout appears in the dialog as: A \"short\" trip."
+msgstr "' В диалога се показва следното: Една \"кратка\" разходка."
-#: 03020402.xhp
+#: 03120102.xhp
msgctxt ""
-"03020402.xhp\n"
-"par_id3152576\n"
-"10\n"
+"03120102.xhp\n"
+"par_idN10668\n"
"help.text"
-msgid "ChDrive \"D\" ' Only possible if a drive 'D' exists."
-msgstr "ChDrive \"D\" ' Възможно е само ако съществува устройство „D“."
+msgid "<link href=\"text/sbasic/shared/03120101.xhp\">ASC</link>"
+msgstr "<link href=\"text/sbasic/shared/03120101.xhp\">ASC</link>"
-#: 03020410.xhp
+#: 03120103.xhp
msgctxt ""
-"03020410.xhp\n"
+"03120103.xhp\n"
"tit\n"
"help.text"
-msgid "Kill Statement [Runtime]"
-msgstr "Оператор Kill [динамичен]"
+msgid "Str Function [Runtime]"
+msgstr "Функция Str [динамична]"
-#: 03020410.xhp
+#: 03120103.xhp
msgctxt ""
-"03020410.xhp\n"
-"bm_id3153360\n"
+"03120103.xhp\n"
+"bm_id3143272\n"
"help.text"
-msgid "<bookmark_value>Kill statement</bookmark_value>"
-msgstr "<bookmark_value>Kill, оператор</bookmark_value>"
+msgid "<bookmark_value>Str function</bookmark_value>"
+msgstr "<bookmark_value>Str, функция</bookmark_value>"
-#: 03020410.xhp
+#: 03120103.xhp
msgctxt ""
-"03020410.xhp\n"
-"hd_id3153360\n"
+"03120103.xhp\n"
+"hd_id3143272\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020410.xhp\" name=\"Kill Statement [Runtime]\">Kill Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03020410.xhp\" name=\"Оператор Kill [динамичен]\">Оператор Kill [динамичен]</link>"
+msgid "<link href=\"text/sbasic/shared/03120103.xhp\" name=\"Str Function [Runtime]\">Str Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120103.xhp\" name=\"Функция Str [динамична]\">Функция Str [динамична]</link>"
-#: 03020410.xhp
+#: 03120103.xhp
msgctxt ""
-"03020410.xhp\n"
-"par_id3151211\n"
+"03120103.xhp\n"
+"par_id3155100\n"
"2\n"
"help.text"
-msgid "Deletes a file from a disk."
-msgstr "Изтрива файл от диск."
+msgid "Converts a numeric expression into a string."
+msgstr "Преобразува числова стойност в низ."
-#: 03020410.xhp
+#: 03120103.xhp
msgctxt ""
-"03020410.xhp\n"
-"hd_id3150767\n"
+"03120103.xhp\n"
+"hd_id3109850\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03020410.xhp
+#: 03120103.xhp
msgctxt ""
-"03020410.xhp\n"
-"par_id3154685\n"
+"03120103.xhp\n"
+"par_id3149497\n"
"4\n"
"help.text"
-msgid "Kill File As String"
-msgstr "Kill File As String"
+msgid "Str (Expression)"
+msgstr "Str (Expression)"
-#: 03020410.xhp
+#: 03120103.xhp
msgctxt ""
-"03020410.xhp\n"
-"hd_id3153194\n"
+"03120103.xhp\n"
+"hd_id3150040\n"
"5\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "Return value:"
+msgstr "Връщана стойност:"
-#: 03020410.xhp
+#: 03120103.xhp
msgctxt ""
-"03020410.xhp\n"
-"par_id3150440\n"
+"03120103.xhp\n"
+"par_id3146117\n"
"6\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 "<emph>File:</emph> низов израз, който еднозначно посочва файл. Може да бъде във вид на <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL\">URL</link>."
+msgid "String"
+msgstr "String"
-#: 03020410.xhp
+#: 03120103.xhp
msgctxt ""
-"03020410.xhp\n"
-"hd_id3148645\n"
+"03120103.xhp\n"
+"hd_id3155805\n"
"7\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
-
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"par_id3163710\n"
-"9\n"
-"help.text"
-msgid "Kill \"C:\\datafile.dat\" ' File must be created in advance"
-msgstr "Kill \"C:\\datafile.dat\" ' Файлът трябва предварително да е създаден"
-
-#: 03020407.xhp
-msgctxt ""
-"03020407.xhp\n"
-"tit\n"
-"help.text"
-msgid "FileDateTime Function [Runtime]"
-msgstr "Функция FileDateTime [динамична]"
-
-#: 03020407.xhp
-msgctxt ""
-"03020407.xhp\n"
-"bm_id3153361\n"
-"help.text"
-msgid "<bookmark_value>FileDateTime function</bookmark_value>"
-msgstr "<bookmark_value>FileDateTime, функция</bookmark_value>"
-
-#: 03020407.xhp
-msgctxt ""
-"03020407.xhp\n"
-"hd_id3153361\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03020407.xhp\" name=\"FileDateTime Function [Runtime]\">FileDateTime Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03020407.xhp\" name=\"Функция FileDateTime [динамична]\">Функция FileDateTime [динамична]</link>"
-
-#: 03020407.xhp
-msgctxt ""
-"03020407.xhp\n"
-"par_id3156423\n"
-"2\n"
-"help.text"
-msgid "Returns a string that contains the date and the time that a file was created or last modified."
-msgstr "Връща низ, който съдържа датата и часа на създаване или последна промяна на даден файл."
-
-#: 03020407.xhp
-msgctxt ""
-"03020407.xhp\n"
-"hd_id3154685\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
-
-#: 03020407.xhp
-msgctxt ""
-"03020407.xhp\n"
-"par_id3154124\n"
-"4\n"
-"help.text"
-msgid "FileDateTime (Text As String)"
-msgstr "FileDateTime (Text As String)"
-
-#: 03020407.xhp
-msgctxt ""
-"03020407.xhp\n"
-"hd_id3150448\n"
-"5\n"
-"help.text"
msgid "Parameters:"
msgstr "Параметри:"
-#: 03020407.xhp
+#: 03120103.xhp
msgctxt ""
-"03020407.xhp\n"
-"par_id3159153\n"
-"6\n"
+"03120103.xhp\n"
+"par_id3149178\n"
+"8\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 "<emph>Text:</emph> низов израз, който еднозначно посочва файл (без заместващи знаци). Можете да зададете пътя във вид на <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL\">URL</link>."
+msgid "<emph>Expression: </emph>Any numeric expression."
+msgstr "<emph>Expression:</emph> числов израз."
-#: 03020407.xhp
+#: 03120103.xhp
msgctxt ""
-"03020407.xhp\n"
-"par_id3155306\n"
-"7\n"
+"03120103.xhp\n"
+"par_id3146958\n"
+"9\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 "Тази функция определя точния час на създаване или последна промяна на файл и го връща във формат „ММ.ДД.ГГГГ ЧЧ.ММ.СС“."
+msgid "The <emph>Str</emph> function converts a numeric variable, or the result of a calculation into a string. Negative numbers are preceded by a minus sign. Positive numbers are preceded by a space (instead of the plus sign)."
+msgstr "Функцията <emph>Str</emph> преобразува стойността на числова променлива или израз в низ. Отрицателните числа се предшестват от знак минус. Положителните се предшестват от интервал (вместо знак плюс)."
-#: 03020407.xhp
+#: 03120103.xhp
msgctxt ""
-"03020407.xhp\n"
-"hd_id3146119\n"
-"8\n"
+"03120103.xhp\n"
+"hd_id3155419\n"
+"10\n"
"help.text"
msgid "Example:"
msgstr "Пример:"
-#: 03103300.xhp
+#: 03120104.xhp
msgctxt ""
-"03103300.xhp\n"
+"03120104.xhp\n"
"tit\n"
"help.text"
-msgid "Option Explicit Statement [Runtime]"
-msgstr "Оператор Option Explicit [динамичен]"
+msgid "Val Function [Runtime]"
+msgstr "Функция Val [динамична]"
-#: 03103300.xhp
+#: 03120104.xhp
msgctxt ""
-"03103300.xhp\n"
-"bm_id3145090\n"
+"03120104.xhp\n"
+"bm_id3149205\n"
"help.text"
-msgid "<bookmark_value>Option Explicit statement</bookmark_value>"
-msgstr "<bookmark_value>Option Explicit, оператор</bookmark_value>"
+msgid "<bookmark_value>Val function</bookmark_value>"
+msgstr "<bookmark_value>Val, функция</bookmark_value>"
-#: 03103300.xhp
+#: 03120104.xhp
msgctxt ""
-"03103300.xhp\n"
-"hd_id3145090\n"
+"03120104.xhp\n"
+"hd_id3149205\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03103300.xhp\" name=\"Option Explicit Statement [Runtime]\">Option Explicit Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03103300.xhp\" name=\"Оператор Option Explicit [динамичен]\">Оператор Option Explicit [динамичен]</link>"
+msgid "<link href=\"text/sbasic/shared/03120104.xhp\" name=\"Val Function [Runtime]\">Val Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120104.xhp\" name=\"Функция Val [динамична]\">Функция Val [динамична]</link>"
-#: 03103300.xhp
+#: 03120104.xhp
msgctxt ""
-"03103300.xhp\n"
-"par_id3148538\n"
+"03120104.xhp\n"
+"par_id3153345\n"
"2\n"
"help.text"
-msgid "Specifies that every variable in the program code must be explicitly declared with the Dim statement."
-msgstr "Указва, че всяка променлива в кода на програмата трябва да е явно обявена с оператора Dim."
+msgid "Converts a string to a numeric expression."
+msgstr "Преобразува низ в числова стойност."
-#: 03103300.xhp
+#: 03120104.xhp
msgctxt ""
-"03103300.xhp\n"
-"hd_id3149763\n"
+"03120104.xhp\n"
+"hd_id3159157\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03103300.xhp
+#: 03120104.xhp
msgctxt ""
-"03103300.xhp\n"
+"03120104.xhp\n"
"par_id3149514\n"
"4\n"
"help.text"
-msgid "Option Explicit"
-msgstr "Option Explicit"
+msgid "Val (Text As String)"
+msgstr "Val (Text As String)"
-#: 03103300.xhp
+#: 03120104.xhp
msgctxt ""
-"03103300.xhp\n"
-"hd_id3145315\n"
+"03120104.xhp\n"
+"hd_id3150669\n"
"5\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "Return value:"
+msgstr "Връщана стойност:"
-#: 03103300.xhp
+#: 03120104.xhp
msgctxt ""
-"03103300.xhp\n"
-"par_id3145172\n"
+"03120104.xhp\n"
+"par_id3143228\n"
"6\n"
"help.text"
-msgid "This statement must be added before the executable program code in a module."
-msgstr "Този оператор трябва да бъде поставен в модул преди изпълнимия програмен код."
+msgid "Double"
+msgstr "Double"
-#: 03103300.xhp
+#: 03120104.xhp
msgctxt ""
-"03103300.xhp\n"
-"hd_id3125864\n"
+"03120104.xhp\n"
+"hd_id3156024\n"
"7\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 03103300.xhp
+#: 03120104.xhp
msgctxt ""
-"03103300.xhp\n"
-"par_id3145787\n"
-"12\n"
+"03120104.xhp\n"
+"par_id3154348\n"
+"8\n"
"help.text"
-msgid "For i% = 1 To 10 ' This results in a run-time error"
-msgstr "For i% = 1 To 10 ' Тук възниква грешка при изпълнение"
+msgid "<emph>Text:</emph> String that represents a number."
+msgstr "<emph>Text:</emph> низ, който представлява число."
-#: 03020100.xhp
+#: 03120104.xhp
msgctxt ""
-"03020100.xhp\n"
-"tit\n"
+"03120104.xhp\n"
+"par_id3149670\n"
+"9\n"
"help.text"
-msgid "Opening and Closing Files"
-msgstr "Отваряне и затваряне на файлове"
+msgid "Using the Val function, you can convert a string that represents numbers into numeric expressions. This is the inverse of the <emph>Str</emph> function. If only part of the string contains numbers, only the first appropriate characters of the string are converted. If the string does not contain any numbers, the <emph>Val</emph> function returns the value 0."
+msgstr "С функцията Val можете да преобразувате низове, които представляват числа, към числови стойности. Това е обратното на функцията <emph>Str</emph>. Ако само част от низа съдържа число, се преобразуват само първите подходящи знаци от низа. Ако низът не съдържа никакви числа, функцията <emph>Val</emph> връща стойността 0."
-#: 03020100.xhp
+#: 03120104.xhp
msgctxt ""
-"03020100.xhp\n"
-"hd_id3152924\n"
-"1\n"
+"03120104.xhp\n"
+"hd_id3154365\n"
+"10\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020100.xhp\" name=\"Opening and Closing Files\">Opening and Closing Files</link>"
-msgstr "<link href=\"text/sbasic/shared/03020100.xhp\" name=\"Отваряне и затваряне на файлове\">Отваряне и затваряне на файлове</link>"
+msgid "Example:"
+msgstr "Пример:"
-#: 03120307.xhp
+#: 03120105.xhp
msgctxt ""
-"03120307.xhp\n"
+"03120105.xhp\n"
"tit\n"
"help.text"
-msgid "Right Function [Runtime]"
-msgstr "Функция Right [динамична]"
+msgid "CByte Function [Runtime]"
+msgstr "Функция CByte [динамична]"
-#: 03120307.xhp
+#: 03120105.xhp
msgctxt ""
-"03120307.xhp\n"
-"bm_id3153311\n"
+"03120105.xhp\n"
+"bm_id3156027\n"
"help.text"
-msgid "<bookmark_value>Right function</bookmark_value>"
-msgstr "<bookmark_value>Right, функция</bookmark_value>"
+msgid "<bookmark_value>CByte function</bookmark_value>"
+msgstr "<bookmark_value>CByte, функция</bookmark_value>"
-#: 03120307.xhp
+#: 03120105.xhp
msgctxt ""
-"03120307.xhp\n"
-"hd_id3153311\n"
+"03120105.xhp\n"
+"hd_id3156027\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120307.xhp\" name=\"Right Function [Runtime]\">Right Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120307.xhp\" name=\"Функция Right [динамична]\">Функция Right [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03120105.xhp\" name=\"CByte Function [Runtime]\">CByte Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120105.xhp\" name=\"Функция CByte [динамична]\">Функция CByte [динамична]</link>"
-#: 03120307.xhp
+#: 03120105.xhp
msgctxt ""
-"03120307.xhp\n"
-"par_id3150984\n"
+"03120105.xhp\n"
+"par_id3143267\n"
"2\n"
"help.text"
-msgid "Returns the rightmost \"n\" characters of a string expression."
-msgstr "Връща най-десните n знака от низ."
+msgid "Converts a string or a numeric expression to the type Byte."
+msgstr "Преобразува низ или число към типа Byte."
-#: 03120307.xhp
+#: 03120105.xhp
msgctxt ""
-"03120307.xhp\n"
-"par_id3149763\n"
+"03120105.xhp\n"
+"hd_id3149811\n"
"3\n"
"help.text"
-msgid "See also: <link href=\"text/sbasic/shared/03120303.xhp\" name=\"Left Function\">Left Function</link>."
-msgstr "Виж също: функция <link href=\"text/sbasic/shared/03120303.xhp\" name=\"Left\">Left</link>."
-
-#: 03120307.xhp
-msgctxt ""
-"03120307.xhp\n"
-"hd_id3145315\n"
-"4\n"
-"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03120307.xhp
+#: 03120105.xhp
msgctxt ""
-"03120307.xhp\n"
-"par_id3153061\n"
-"5\n"
+"03120105.xhp\n"
+"par_id3147573\n"
+"4\n"
"help.text"
-msgid "Right (Text As String, n As Long)"
-msgstr "Right (Text As String, n As Long)"
+msgid "Cbyte( expression )"
+msgstr "CByte (Expression)"
-#: 03120307.xhp
+#: 03120105.xhp
msgctxt ""
-"03120307.xhp\n"
-"hd_id3145068\n"
-"6\n"
+"03120105.xhp\n"
+"hd_id3145315\n"
+"5\n"
"help.text"
msgid "Return value:"
msgstr "Връщана стойност:"
-#: 03120307.xhp
+#: 03120105.xhp
msgctxt ""
-"03120307.xhp\n"
-"par_id3156344\n"
-"7\n"
+"03120105.xhp\n"
+"par_id3148473\n"
+"6\n"
"help.text"
-msgid "String"
-msgstr "String"
+msgid "Byte"
+msgstr "Byte"
-#: 03120307.xhp
+#: 03120105.xhp
msgctxt ""
-"03120307.xhp\n"
-"hd_id3146795\n"
-"8\n"
+"03120105.xhp\n"
+"hd_id3147530\n"
+"7\n"
"help.text"
msgid "Parameters:"
msgstr "Параметри:"
-#: 03120307.xhp
-msgctxt ""
-"03120307.xhp\n"
-"par_id3153526\n"
-"9\n"
-"help.text"
-msgid "<emph>Text:</emph> Any string expression that you want to return the rightmost characters of."
-msgstr "<emph>Text:</emph> низов израз, от чиято стойност да се извлекат най-десните знаци."
-
-#: 03120307.xhp
-msgctxt ""
-"03120307.xhp\n"
-"par_id3151211\n"
-"10\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 65535."
-msgstr "<emph>n:</emph> числов израз, който задава желания брой на знаците в резултата. Ако <emph>n</emph> = 0, се връща низ с нулева дължина. Максималната разрешена стойност е 65535."
-
-#: 03120307.xhp
-msgctxt ""
-"03120307.xhp\n"
-"par_id3158410\n"
-"11\n"
-"help.text"
-msgid "The following example converts a date in YYYY-MM-DD format to the US date format (MM/DD/YYYY)."
-msgstr "Следващият пример преобразува дата от формат ГГГГ-ММ-ДД в американския формат ММ/ДД/ГГГГ."
-
-#: 03120307.xhp
-msgctxt ""
-"03120307.xhp\n"
-"hd_id3156212\n"
-"12\n"
-"help.text"
-msgid "Example:"
-msgstr "Пример:"
-
-#: 03120307.xhp
+#: 03120105.xhp
msgctxt ""
-"03120307.xhp\n"
-"par_id3159252\n"
-"16\n"
+"03120105.xhp\n"
+"par_id3145068\n"
+"8\n"
"help.text"
-msgid "sInput = InputBox(\"Please input a date in the international format 'YYYY-MM-DD'\")"
-msgstr "sInput = InputBox(\"Моля, въведете дата в международния формат „ГГГГ-ММ-ДД“\")"
+msgid "<emph>Expression:</emph> A string or a numeric expression."
+msgstr "<emph>Expression:</emph> низов или числов израз."
#: 03120200.xhp
msgctxt ""
@@ -29486,4206 +31199,3390 @@ msgctxt ""
msgid "The following functions repeat the contents of strings."
msgstr "Следващите функции повтарят съдържанието на низове."
-#: 03070400.xhp
+#: 03120201.xhp
msgctxt ""
-"03070400.xhp\n"
+"03120201.xhp\n"
"tit\n"
"help.text"
-msgid "\"/\" Operator [Runtime]"
-msgstr "Операция „/“ [динамична]"
+msgid "Space Function [Runtime]"
+msgstr "Функция Space [динамична]"
-#: 03070400.xhp
+#: 03120201.xhp
msgctxt ""
-"03070400.xhp\n"
-"bm_id3150669\n"
+"03120201.xhp\n"
+"bm_id3150499\n"
"help.text"
-msgid "<bookmark_value>\"/\" operator (mathematical)</bookmark_value>"
-msgstr "<bookmark_value>„/“, математическа операция</bookmark_value>"
+msgid "<bookmark_value>Space function</bookmark_value>"
+msgstr "<bookmark_value>Space, функция</bookmark_value>"
-#: 03070400.xhp
+#: 03120201.xhp
msgctxt ""
-"03070400.xhp\n"
-"hd_id3150669\n"
+"03120201.xhp\n"
+"hd_id3150499\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03070400.xhp\">\"/\" Operator [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03070400.xhp\">Операция „/“ [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03120201.xhp\" name=\"Space Function [Runtime]\">Space Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120201.xhp\" name=\"Функция Space [динамична]\">Функция Space [динамична]</link>"
-#: 03070400.xhp
+#: 03120201.xhp
msgctxt ""
-"03070400.xhp\n"
-"par_id3149670\n"
+"03120201.xhp\n"
+"par_id3154927\n"
"2\n"
"help.text"
-msgid "Divides two values."
-msgstr "Разделя две стойности."
+msgid "Returns a string that consists of a specified amount of spaces."
+msgstr "Връща низ, състоящ се от указания брой интервали."
-#: 03070400.xhp
+#: 03120201.xhp
msgctxt ""
-"03070400.xhp\n"
-"hd_id3148946\n"
+"03120201.xhp\n"
+"hd_id3153394\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03070400.xhp
+#: 03120201.xhp
msgctxt ""
-"03070400.xhp\n"
-"par_id3153360\n"
+"03120201.xhp\n"
+"par_id3143267\n"
"4\n"
"help.text"
-msgid "Result = Expression1 / Expression2"
-msgstr "Result = Expression1 / Expression2"
+msgid "Space (n As Long)"
+msgstr "Space (n As Long)"
-#: 03070400.xhp
+#: 03120201.xhp
msgctxt ""
-"03070400.xhp\n"
-"hd_id3150359\n"
+"03120201.xhp\n"
+"hd_id3147242\n"
"5\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "Return value:"
+msgstr "Връщана стойност:"
-#: 03070400.xhp
+#: 03120201.xhp
msgctxt ""
-"03070400.xhp\n"
-"par_id3154141\n"
+"03120201.xhp\n"
+"par_id3149233\n"
"6\n"
"help.text"
-msgid "<emph>Result:</emph> Any numerical value that contains the result of the division."
-msgstr "<emph>Result:</emph> числов израз, който съдържа резултата от делението."
+msgid "String"
+msgstr "String"
-#: 03070400.xhp
+#: 03120201.xhp
msgctxt ""
-"03070400.xhp\n"
-"par_id3150448\n"
+"03120201.xhp\n"
+"hd_id3156152\n"
"7\n"
"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any numerical expressions that you want to divide."
-msgstr "<emph>Expression1, Expression2:</emph> числови изрази, чиито стойности искате да разделите."
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 03070400.xhp
+#: 03120201.xhp
msgctxt ""
-"03070400.xhp\n"
-"hd_id3154684\n"
+"03120201.xhp\n"
+"par_id3143228\n"
"8\n"
"help.text"
+msgid "<emph>n:</emph> Numeric expression that defines the number of spaces in the string. The maximum allowed value of n is 65535."
+msgstr "<emph>n:</emph> числов израз, определящ броя на интервалите в низа. Максималната разрешена стойнсот на n е 65535."
+
+#: 03120201.xhp
+msgctxt ""
+"03120201.xhp\n"
+"hd_id3154760\n"
+"9\n"
+"help.text"
msgid "Example:"
msgstr "Пример:"
-#: 03050100.xhp
+#: 03120201.xhp
msgctxt ""
-"03050100.xhp\n"
+"03120201.xhp\n"
+"par_id3154216\n"
+"18\n"
+"help.text"
+msgid "MsgBox sOut,0,\"Info:\""
+msgstr "MsgBox sOut, 0, \"Информация:\""
+
+#: 03120202.xhp
+msgctxt ""
+"03120202.xhp\n"
"tit\n"
"help.text"
-msgid "Erl Function [Runtime]"
-msgstr "Функция Erl [динамична]"
+msgid "String Function [Runtime]"
+msgstr "Функция String [динамична]"
-#: 03050100.xhp
+#: 03120202.xhp
msgctxt ""
-"03050100.xhp\n"
-"bm_id3157896\n"
+"03120202.xhp\n"
+"bm_id3147291\n"
"help.text"
-msgid "<bookmark_value>Erl function</bookmark_value>"
-msgstr "<bookmark_value>Erl, функция</bookmark_value>"
+msgid "<bookmark_value>String function</bookmark_value>"
+msgstr "<bookmark_value>String, функция</bookmark_value>"
-#: 03050100.xhp
+#: 03120202.xhp
msgctxt ""
-"03050100.xhp\n"
-"hd_id3157896\n"
+"03120202.xhp\n"
+"hd_id3147291\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03050100.xhp\" name=\"Erl Function [Runtime]\">Erl Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03050100.xhp\" name=\"Функция Erl [динамична]\">Функция Erl [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03120202.xhp\" name=\"String Function [Runtime]\">String Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120202.xhp\" name=\"Функция String [динамична]\">Функция String [динамична]</link>"
-#: 03050100.xhp
+#: 03120202.xhp
msgctxt ""
-"03050100.xhp\n"
-"par_id3153394\n"
+"03120202.xhp\n"
+"par_id3147242\n"
"2\n"
"help.text"
-msgid "Returns the line number where an error occurred during program execution."
-msgstr "Връща номера на реда, на който е възникнала грешка по време на изпълнение на програмата."
+msgid "Creates a string according to the specified character, or the first character of a string expression that is passed to the function."
+msgstr "Създава низ от зададен знак или първия знак на низов израз, подаден на функцията."
-#: 03050100.xhp
+#: 03120202.xhp
msgctxt ""
-"03050100.xhp\n"
-"hd_id3147574\n"
+"03120202.xhp\n"
+"hd_id3149516\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03050100.xhp
+#: 03120202.xhp
msgctxt ""
-"03050100.xhp\n"
-"par_id3146795\n"
+"03120202.xhp\n"
+"par_id3149233\n"
"4\n"
"help.text"
-msgid "Erl"
-msgstr "Erl"
+msgid "String (n As Long, {expression As Integer | character As String})"
+msgstr "String (n As Long, {expression As Integer | character As String})"
-#: 03050100.xhp
+#: 03120202.xhp
msgctxt ""
-"03050100.xhp\n"
-"hd_id3147265\n"
+"03120202.xhp\n"
+"hd_id3143270\n"
"5\n"
"help.text"
msgid "Return value:"
msgstr "Връщана стойност:"
-#: 03050100.xhp
+#: 03120202.xhp
msgctxt ""
-"03050100.xhp\n"
-"par_id3154924\n"
+"03120202.xhp\n"
+"par_id3147530\n"
"6\n"
"help.text"
-msgid "Integer"
-msgstr "Integer"
+msgid "String"
+msgstr "String"
-#: 03050100.xhp
+#: 03120202.xhp
msgctxt ""
-"03050100.xhp\n"
-"hd_id3150792\n"
+"03120202.xhp\n"
+"hd_id3154923\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Параметри:"
-#: 03050100.xhp
+#: 03120202.xhp
msgctxt ""
-"03050100.xhp\n"
-"par_id3153771\n"
+"03120202.xhp\n"
+"par_id3154347\n"
"8\n"
"help.text"
-msgid "The Erl function only returns a line number, and not a line label."
-msgstr "Функцията Erl връща само номер на ред, не и етикет на ред."
+msgid "<emph>n:</emph> Numeric expression that indicates the number of characters to return in the string. The maximum allowed value of n is 65535."
+msgstr "<emph>n:</emph> числов израз, определящ колко знака да съдържа низът – резултат. Максималната разрешена стойност на n е 65535."
-#: 03050100.xhp
+#: 03120202.xhp
msgctxt ""
-"03050100.xhp\n"
-"hd_id3146921\n"
+"03120202.xhp\n"
+"par_id3148664\n"
"9\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
-
-#: 03050100.xhp
-msgctxt ""
-"03050100.xhp\n"
-"par_id3150010\n"
-"11\n"
-"help.text"
-msgid "On Error GoTo ErrorHandler ' Set up error handler"
-msgstr "On Error Goto ErrorHandler ' Настройка на обработката на грешки"
+msgid "<emph>Expression:</emph> Numeric expression that defines the ASCII code for the character."
+msgstr "<emph>Expression:</emph> числов израз, който задава знаков код от ASCII."
-#: 03050100.xhp
+#: 03120202.xhp
msgctxt ""
-"03050100.xhp\n"
-"par_id3153188\n"
-"14\n"
+"03120202.xhp\n"
+"par_id3150359\n"
+"10\n"
"help.text"
-msgid "' Error caused by non-existent file"
-msgstr "' Грешка заради несъществуващ файл"
+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 "<emph>Character:</emph> единичен знак, от който да бъде изграден низът – резултат, или низ, от който ще бъде използван само първият знак."
-#: 03050100.xhp
+#: 03120202.xhp
msgctxt ""
-"03050100.xhp\n"
-"par_id3155416\n"
-"21\n"
+"03120202.xhp\n"
+"hd_id3152920\n"
+"11\n"
"help.text"
-msgid "MsgBox \"Error \" & err & \": \" & Error$ + chr(13) + \"In Line : \" + Erl + chr(13) + Now , 16 ,\"An error occurred\""
-msgstr "MsgBox \"Грешка \" & Err & \": \" & Error$ + Chr(13) + \"Ред: \" + Erl + Chr(13) + Now, 16, \"Възникна грешка\""
+msgid "Example:"
+msgstr "Пример:"
-#: 03104700.xhp
+#: 03120300.xhp
msgctxt ""
-"03104700.xhp\n"
+"03120300.xhp\n"
"tit\n"
"help.text"
-msgid "Erase Function [Runtime]"
-msgstr "Функция Erase [динамична]"
+msgid "Editing String Contents"
+msgstr "Редактиране на съдържанието на низове"
-#: 03104700.xhp
+#: 03120300.xhp
msgctxt ""
-"03104700.xhp\n"
-"bm_id624713\n"
+"03120300.xhp\n"
+"bm_id7499008\n"
"help.text"
-msgid "<bookmark_value>Erase function</bookmark_value>"
-msgstr "<bookmark_value>Erase, функция</bookmark_value>"
+msgid "<bookmark_value>ampersand symbol in StarBasic</bookmark_value>"
+msgstr "<bookmark_value>амперсанд в StarBasic</bookmark_value>"
-#: 03104700.xhp
+#: 03120300.xhp
msgctxt ""
-"03104700.xhp\n"
-"par_idN10548\n"
+"03120300.xhp\n"
+"hd_id3153894\n"
+"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03104700.xhp\">Erase Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03104700.xhp\">Функция Erase [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03120300.xhp\" name=\"Editing String Contents\">Editing String Contents</link>"
+msgstr "<link href=\"text/sbasic/shared/03120300.xhp\" name=\"Редактиране на съдържанието на низове\">Редактиране на съдържанието на низове</link>"
-#: 03104700.xhp
+#: 03120300.xhp
msgctxt ""
-"03104700.xhp\n"
-"par_idN10558\n"
+"03120300.xhp\n"
+"par_id3149178\n"
+"2\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 "Изтрива съдържанието на елементите на масиви с фиксиран размер и освобождава паметта, заета от масиви с променлив размер."
+msgid "The following functions edit, format, and align the contents of strings. Use the & operator to concatenate strings."
+msgstr "Следващите функции служат за редактиране, форматиране и подравняване на съдържанието на низове. За слепване (конкатениране) на низове използвайте операцията &."
-#: 03104700.xhp
+#: 03120301.xhp
msgctxt ""
-"03104700.xhp\n"
-"par_idN1055D\n"
+"03120301.xhp\n"
+"tit\n"
"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
+msgid "Format Function [Runtime]"
+msgstr "Функция Format [динамична]"
-#: 03104700.xhp
+#: 03120301.xhp
msgctxt ""
-"03104700.xhp\n"
-"par_idN105E6\n"
+"03120301.xhp\n"
+"bm_id3153539\n"
"help.text"
-msgid "Erase Arraylist"
-msgstr "Erase Arraylist"
+msgid "<bookmark_value>Format function</bookmark_value>"
+msgstr "<bookmark_value>Format, функция</bookmark_value>"
-#: 03104700.xhp
+#: 03120301.xhp
msgctxt ""
-"03104700.xhp\n"
-"par_idN105E9\n"
+"03120301.xhp\n"
+"hd_id3153539\n"
+"1\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "<link href=\"text/sbasic/shared/03120301.xhp\" name=\"Format Function [Runtime]\">Format Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120301.xhp\" name=\"Функция Format [динамична]\">Функция Format [динамична]</link>"
-#: 03104700.xhp
+#: 03120301.xhp
msgctxt ""
-"03104700.xhp\n"
-"par_idN105ED\n"
+"03120301.xhp\n"
+"par_id3156042\n"
+"2\n"
"help.text"
-msgid "<emph>Arraylist</emph> - The list of arrays to be erased."
-msgstr "<emph>Arraylist:</emph> списък от масиви за изтриване."
+msgid "Converts a number to a string, and then formats it according to the format that you specify."
+msgstr "Преобразува число в низ и го форматира по зададен от вас начин."
-#: 03080201.xhp
+#: 03120301.xhp
msgctxt ""
-"03080201.xhp\n"
-"tit\n"
+"03120301.xhp\n"
+"hd_id3145090\n"
+"4\n"
"help.text"
-msgid "Exp Function [Runtime]"
-msgstr "Функция Exp [динамична]"
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 03080201.xhp
+#: 03120301.xhp
msgctxt ""
-"03080201.xhp\n"
-"bm_id3150616\n"
+"03120301.xhp\n"
+"par_id3153527\n"
+"5\n"
"help.text"
-msgid "<bookmark_value>Exp function</bookmark_value>"
-msgstr "<bookmark_value>Exp, функция</bookmark_value>"
+msgid "Format (Number [, Format As String])"
+msgstr "Format (Number [, Format As String])"
-#: 03080201.xhp
+#: 03120301.xhp
msgctxt ""
-"03080201.xhp\n"
-"hd_id3150616\n"
-"1\n"
+"03120301.xhp\n"
+"hd_id3149178\n"
+"6\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080201.xhp\" name=\"Exp Function [Runtime]\">Exp Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03080201.xhp\" name=\"Функция Exp [динамична]\">Функция Exp [динамична]</link>"
+msgid "Return value:"
+msgstr "Връщана стойност:"
-#: 03080201.xhp
+#: 03120301.xhp
msgctxt ""
-"03080201.xhp\n"
-"par_id3155555\n"
-"2\n"
+"03120301.xhp\n"
+"par_id3148474\n"
+"7\n"
"help.text"
-msgid "Returns the base of the natural logarithm (e = 2.718282) raised to a power."
-msgstr "Връща основата на натуралния логаритъм (e = 2,718282…), повдигната на зададена степен."
+msgid "String"
+msgstr "String"
-#: 03080201.xhp
+#: 03120301.xhp
msgctxt ""
-"03080201.xhp\n"
-"hd_id3150984\n"
-"3\n"
+"03120301.xhp\n"
+"hd_id3159176\n"
+"8\n"
"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 03080201.xhp
+#: 03120301.xhp
msgctxt ""
-"03080201.xhp\n"
-"par_id3145315\n"
-"4\n"
+"03120301.xhp\n"
+"par_id3149415\n"
+"9\n"
"help.text"
-msgid "Exp (Number)"
-msgstr "Exp (Number)"
+msgid "<emph>Number:</emph> Numeric expression that you want to convert to a formatted string."
+msgstr "<emph>Number:</emph> числов израз, чиято стойност да се преобразува във форматиран низ."
-#: 03080201.xhp
+#: 03120301.xhp
msgctxt ""
-"03080201.xhp\n"
-"hd_id3154347\n"
-"5\n"
+"03120301.xhp\n"
+"par_id3147531\n"
+"10\n"
"help.text"
-msgid "Return value:"
-msgstr "Връщана стойност:"
+msgid "<emph>Format:</emph> String that specifies the format code for the number. If <emph>Format</emph> is omitted, the Format function works like the <emph>Str</emph> function."
+msgstr "<emph>Format:</emph> низ – форматиращ код за числото. Ако параметърът <emph>Format</emph> е пропуснат, функцията Format работи като <emph>Str</emph>."
-#: 03080201.xhp
+#: 03120301.xhp
msgctxt ""
-"03080201.xhp\n"
-"par_id3149670\n"
-"6\n"
+"03120301.xhp\n"
+"hd_id3147561\n"
+"47\n"
"help.text"
-msgid "Double"
-msgstr "Double"
+msgid "Formatting Codes"
+msgstr "Кодове за форматиране"
-#: 03080201.xhp
+#: 03120301.xhp
msgctxt ""
-"03080201.xhp\n"
-"hd_id3154760\n"
-"7\n"
+"03120301.xhp\n"
+"par_id3147265\n"
+"11\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "The following list describes the codes that you can use for formatting a number:"
+msgstr "Следващият списък описва кодовете, които можете да използвате за форматиране на число:"
-#: 03080201.xhp
+#: 03120301.xhp
msgctxt ""
-"03080201.xhp\n"
-"par_id3150793\n"
-"8\n"
+"03120301.xhp\n"
+"par_id3153380\n"
+"12\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 "<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."
+msgid "<emph>0:</emph> If <emph>Number</emph> has a digit at the position of the 0 in the format code, the digit is displayed, otherwise a zero is displayed."
+msgstr "<emph>0:</emph> ако <emph>Number</emph> съдържа цифра в позицията на 0 във форматиращия код, се показва цифрата, а в противен случай се показва нула."
-#: 03080201.xhp
+#: 03120301.xhp
msgctxt ""
-"03080201.xhp\n"
-"hd_id3156280\n"
-"9\n"
+"03120301.xhp\n"
+"par_id3151210\n"
+"13\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "If <emph>Number</emph> has fewer digits than the number of zeros in the format code, (on either side of the decimal), leading or trailing zeros are displayed. If the number has more digits to the left of the decimal separator than the amount of zeros in the format code, the additional digits are displayed without formatting."
+msgstr "Ако <emph>Number</emph> съдържа по-малко цифри от броя нули във форматиращия код (в цялата и/или дробната част), се показват водещи или завършващи нули. Ако числото съдържа повече цифри в цялата си част, отколкото са нулите във форматиращия код, допълнителните цифри се показват без форматиране."
-#: 03080201.xhp
+#: 03120301.xhp
msgctxt ""
-"03080201.xhp\n"
-"par_id3159254\n"
-"13\n"
+"03120301.xhp\n"
+"par_id3151176\n"
+"14\n"
"help.text"
-msgid "Const b2=1.345e34"
-msgstr "Const b2 = 1.345e34"
+msgid "Decimal places in the number are rounded according to the number of zeros that appear after the decimal separator in the <emph>Format </emph>code."
+msgstr "Дробната част в числото се закръглява според броя нули вдясно от десетичния разделител в параметъра <emph>Format</emph>."
-#: 03080201.xhp
+#: 03120301.xhp
msgctxt ""
-"03080201.xhp\n"
-"par_id3161832\n"
+"03120301.xhp\n"
+"par_id3154123\n"
"15\n"
"help.text"
-msgid "MsgBox \"\" & dValue & chr(13) & (b1*b2) ,0,\"Multiplication by logarithm\""
-msgstr "MsgBox \"\" & dValue & Chr(13) & (b1 * b2), 0, \"Умножение чрез логаритъм\""
+msgid "<emph>#:</emph> If <emph>Number</emph> contains a digit at the position of the # placeholder in the <emph>Format</emph> code, the digit is displayed, otherwise nothing is displayed at this position."
+msgstr "<emph>#:</emph> ако <emph>Number</emph> съдържа цифра в позицията на заместителя # в параметъра <emph>Format</emph>, се показва цифрата, иначе в тази позиция не се показва нищо."
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"tit\n"
+"03120301.xhp\n"
+"par_id3148452\n"
+"16\n"
"help.text"
-msgid "Macro"
-msgstr "Макрос"
+msgid "This symbol works like the 0, except that leading or trailing zeroes are not displayed if there are more # characters in the format code than digits in the number. Only the relevant digits of the number are displayed."
+msgstr "Този знак работи като 0, но ако знаците # са повече от цифрите в числото, не се показват водещи или завъшващи нули. Включват се само значещите цифри от числото."
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"bm_id3153894\n"
+"03120301.xhp\n"
+"par_id3159150\n"
+"17\n"
"help.text"
-msgid "<bookmark_value>events;linked to objects</bookmark_value>"
-msgstr "<bookmark_value>събития;свързани с обекти</bookmark_value>"
+msgid "<emph>.:</emph> The decimal placeholder determines the number of decimal places to the left and right of the decimal separator."
+msgstr "<emph>.:</emph> десетичният разделител определя броя на цифрите в цялата и дробната част на форматираното число."
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"hd_id3153894\n"
-"1\n"
+"03120301.xhp\n"
+"par_id3159252\n"
+"18\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/05060700.xhp\" name=\"Macro\">Macro</link>"
-msgstr "<link href=\"text/sbasic/shared/05060700.xhp\" name=\"Макрос\">Макрос</link>"
+msgid "If the format 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 "Ако форматиращият код съдържа само знаци # вляво от десетичния разделител, числата, по-малки от 1, започват с десетичен разделител. За да се показва винаги 0 в началото на дробни числа, използвайте 0 за първата цифра вляво от десетичния разделител."
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3153748\n"
-"2\n"
+"03120301.xhp\n"
+"par_id3153368\n"
+"19\n"
"help.text"
-msgid "<ahelp hid=\".\">Choose the macro that you want to execute when the selected graphic, frame, or OLE object is selected.</ahelp> Depending on the object that is selected, the function is either found on the <emph>Macro</emph> tab of the <emph>Object</emph> dialog, or in the <emph>Assign Macro</emph> dialog."
-msgstr "<ahelp hid=\".\">Изберете макроса, който желаете да се изпълнява при избирането на съответната графика, рамка или OLE обект.</ahelp> Според избрания обект функцията е или в раздела <emph>Макрос</emph> на диалоговия прозорец <emph>Обект</emph>, или в диалоговия прозорец <emph>Приписване на макрос</emph>."
+msgid "<emph>%:</emph> Multiplies the number by 100 and inserts the percent sign (%) where the number appears in the format code."
+msgstr "<emph>%:</emph> умножава числото по 100 и вмъква знак за проценти (%) там, където се намира във форматиращия код."
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"hd_id3150503\n"
-"3\n"
+"03120301.xhp\n"
+"par_id3149481\n"
+"20\n"
"help.text"
-msgid "Event"
-msgstr "Събитие"
+msgid "<emph>E- E+ e- e+ :</emph> If the format code contains at least one digit placeholder (0 or #) to the right of the symbol E-, E+, e-, or e+, the number 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 "<emph>E- E+ e- e+:</emph> ако форматиращият код съдържа поне един заместител за цифра (0 или #) вдясно от символа E-, E+, e- или e+, числото се форматира в експоненциален запис. Буквата E или e се вмъква между числото и експонентата. Броят заместващи знаци за цифри вдясно от символа определя броя на цифрите в експонентата."
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3149763\n"
-"4\n"
+"03120301.xhp\n"
+"par_id3149262\n"
+"21\n"
"help.text"
-msgid "<ahelp hid=\"HID_MACRO_LB_EVENT\">Lists the events that are relevant to the macros that are currently assigned to the selected object.</ahelp>"
-msgstr "<ahelp hid=\"HID_MACRO_LB_EVENT\">Изброява събитията, свързани с макросите, които са приписани в момента на избрания обект.</ahelp>"
+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 "Ако експонентата е отрицателна, точно преди нея се показва минус при E-, E+, e- и e+. Ако експонентата е положителна, при нея се показва знак плюс само при E+ или e+."
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3150670\n"
+"03120301.xhp\n"
+"par_id3148617\n"
"23\n"
"help.text"
-msgid "The following table describes the macros and the events that can by linked to objects in your document:"
-msgstr "Следващата таблица описва макросите и събитията, които могат да се свързват с обекти в документа:"
+msgid "The thousands delimiter is displayed if the format code contains the delimiter enclosed by digit placeholders (0 or #)."
+msgstr "Разделителят на хилядите се показва ако се съдържа във форматиращия код, ограден от заместващи знаци за цифри (0 или #)."
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3153360\n"
+"03120301.xhp\n"
+"par_id3163713\n"
+"29\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 "Употребата на точка като разделител на хилядите или на дробната част зависи от регионалните настройки. Когато въвеждате число направо в кода на Basic, винаги използвайте точка за разделител на дробната част. Знакът, който се показва на екрана като десетичен разделител, зависи от формата за числа в системните настройки."
+
+#: 03120301.xhp
+msgctxt ""
+"03120301.xhp\n"
+"par_id3152887\n"
"24\n"
"help.text"
-msgid "Event"
-msgstr "Събитие"
+msgid "<emph>- + $ ( ) space:</emph> A plus (+), minus (-), dollar ($), space, or brackets entered directly in the format code is displayed as a literal character."
+msgstr "<emph>- + $ ( ) интервал:</emph> плюс (+), минус (-), долар ($), интервал или скоби, включени във форматиращия кода, се показват точно както са въведени."
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3154365\n"
+"03120301.xhp\n"
+"par_id3148576\n"
"25\n"
"help.text"
-msgid "Event trigger"
-msgstr "Възниква, когато"
+msgid "To display characters other than the ones listed here, you must precede it by a backslash (\\), or enclose it in quotation marks (\" \")."
+msgstr "За да включите други знаци освен изброените, трябва да поставите пред тях обратна наклонена черта (\\) или да ги оградите с кавички (\" \")."
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3159149\n"
+"03120301.xhp\n"
+"par_id3153139\n"
"26\n"
"help.text"
-msgid "OLE object"
-msgstr "OLE обект"
+msgid "\\ : The backslash displays the next character in the format code."
+msgstr "\\: обратно наклонената черта предизвиква показване на следващия знак от форматиращия код."
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3148451\n"
+"03120301.xhp\n"
+"par_id3153366\n"
"27\n"
"help.text"
-msgid "Graphics"
-msgstr "Графика"
+msgid "Characters in the format 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 "Знаците във форматиращия код, които имат специално значение, могат да се показват буквално само ако са предшествани от обратна наклонена черта. Самата тя не се показва, освен ако я въведете два пъти във форматиращия код (\\\\)."
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3125863\n"
+"03120301.xhp\n"
+"par_id3155411\n"
"28\n"
"help.text"
-msgid "Frame"
-msgstr "Рамка"
-
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3154216\n"
-"29\n"
-"help.text"
-msgid "AutoText"
-msgstr "Автотекст"
+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 "Знаците, пред които трябва да има обратно наклонена черта във форматиращия код, за да се покажат буквално, са тези за форматиране на дати и часове (a, c, d, h, m, n, p, q, s, t, w, y, /, :), за форматиране на числа (#, 0, %, E, e, запетая, точка) и за форматиране на низове (@, &, <, >, !)."
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3145785\n"
+"03120301.xhp\n"
+"par_id3145749\n"
"30\n"
"help.text"
-msgid "ImageMap area"
-msgstr "Област от ImageMap"
+msgid "You can also use the following predefined number formats. Except for \"General Number\", all of the predefined format codes return the number as a decimal number with two decimal places."
+msgstr "Можете да използвате и изброените по-долу предварително дефинирани числови формати. С изключение на „General Number“ всички те връщат десетично число с две дробни позиции."
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3153138\n"
+"03120301.xhp\n"
+"par_id3150113\n"
"31\n"
"help.text"
-msgid "Hyperlink"
-msgstr "Хипервръзка"
+msgid "If you use predefined formats, the name of the format must be enclosed in quotation marks."
+msgstr "Ако използвате предварително дефинирани формати, името на формата трябва да е оградено в кавички."
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3155306\n"
+"03120301.xhp\n"
+"hd_id3149377\n"
"32\n"
"help.text"
-msgid "Click object"
-msgstr "Щракване върху обект"
+msgid "Predefined format"
+msgstr "Предварително дефиниран формат"
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3152460\n"
+"03120301.xhp\n"
+"par_id3154730\n"
"33\n"
"help.text"
-msgid "Object is selected."
-msgstr "Обектът е избран."
+msgid "<emph>General Number:</emph> Numbers are displayed as entered."
+msgstr "<emph>General Number:</emph> числата се показват както се въвеждат."
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3147348\n"
+"03120301.xhp\n"
+"par_id3153158\n"
"34\n"
"help.text"
-msgid "x"
-msgstr "x"
+msgid "<emph>Currency:</emph> Inserts a dollar sign in front of the number and encloses negative numbers in brackets."
+msgstr "<emph>Currency:</emph> вмъква знак за долар пред числото и огражда отрицателните числа в скоби."
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3147426\n"
+"03120301.xhp\n"
+"par_id3154490\n"
"35\n"
"help.text"
-msgid "x"
-msgstr "x"
+msgid "<emph>Fixed:</emph> Displays at least one digit in front of the decimal separator."
+msgstr "<emph>Fixed:</emph> показва поне една цифра пред десетичния разделител."
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3153951\n"
+"03120301.xhp\n"
+"par_id3153415\n"
"36\n"
"help.text"
-msgid "x"
-msgstr "x"
+msgid "<emph>Standard:</emph> Displays numbers with a thousands separator."
+msgstr "<emph>Standard:</emph> показва числата с разделител на хилядите."
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3150116\n"
+"03120301.xhp\n"
+"par_id3150715\n"
"37\n"
"help.text"
-msgid "Mouse over object"
-msgstr "Мишката е върху обекта"
+msgid "<emph>Percent:</emph> Multiplies the number by 100 and appends a percent sign to the number."
+msgstr "<emph>Percent:</emph> умножава числото по 100 и добавя знак за проценти."
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3145253\n"
+"03120301.xhp\n"
+"par_id3153836\n"
"38\n"
"help.text"
-msgid "Mouse moves over the object."
-msgstr "Показалецът на мишката се премества над обекта."
+msgid "<emph>Scientific:</emph> Displays numbers in scientific format (for example, 1.00E+03 for 1000)."
+msgstr "<emph>Scientific:</emph> показва числото в експоненциален запис (например 1.00E+03 за 1000)."
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3144765\n"
+"03120301.xhp\n"
+"par_id3153707\n"
"39\n"
"help.text"
-msgid "x"
-msgstr "x"
+msgid "A format 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 format code, it applies to all numbers."
+msgstr "Форматиращият код може да бъде разделен на три части с точки и запетаи. Първата част задава формата за положителни стойности, втората – за отрицателни и третата – за нули. Ако зададете само един форматиращ код, той важи за всякакви числа."
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3153418\n"
+"03120301.xhp\n"
+"hd_id3149019\n"
"40\n"
"help.text"
-msgid "x"
-msgstr "x"
-
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3153948\n"
-"41\n"
-"help.text"
-msgid "x"
-msgstr "x"
-
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3145652\n"
-"42\n"
-"help.text"
-msgid "x"
-msgstr "x"
-
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3155066\n"
-"43\n"
-"help.text"
-msgid "x"
-msgstr "x"
-
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3155446\n"
-"44\n"
-"help.text"
-msgid "Trigger Hyperlink"
-msgstr "Задействане на хипервръзка"
+msgid "Example:"
+msgstr "Пример:"
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3154756\n"
-"45\n"
+"03120301.xhp\n"
+"par_idN107A2\n"
"help.text"
-msgid "Hyperlink assigned to the object is clicked."
-msgstr "Щракнато е върху хипервръзка, приписана на обекта."
+msgid "' always use a period as decimal delimiter when you enter numbers in Basic source code."
+msgstr "' В изходен код на Basic винаги използвайте точка за отделяне на дробната част на число."
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3150042\n"
+"03120301.xhp\n"
+"par_id3147339\n"
"46\n"
"help.text"
-msgid "x"
-msgstr "x"
-
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3151252\n"
-"47\n"
-"help.text"
-msgid "x"
-msgstr "x"
-
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3147344\n"
-"48\n"
-"help.text"
-msgid "x"
-msgstr "x"
-
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3146920\n"
-"49\n"
-"help.text"
-msgid "x"
-msgstr "x"
+msgid "' displays for example 6,328.20 in English locale, 6.328,20 in German locale."
+msgstr "' В английски локал показва 6,328.20, в немски – 6.328,20."
-#: 05060700.xhp
+#: 03120302.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3159333\n"
-"50\n"
+"03120302.xhp\n"
+"tit\n"
"help.text"
-msgid "Mouse leaves object"
-msgstr "Мишката напуска обекта"
+msgid "LCase Function [Runtime]"
+msgstr "Функция LCase [динамична]"
-#: 05060700.xhp
+#: 03120302.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3147003\n"
-"51\n"
+"03120302.xhp\n"
+"bm_id3152363\n"
"help.text"
-msgid "Mouse moves off of the object."
-msgstr "Показалецът на мишката се премества извън обекта."
+msgid "<bookmark_value>LCase function</bookmark_value>"
+msgstr "<bookmark_value>LCase, функция</bookmark_value>"
-#: 05060700.xhp
+#: 03120302.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3151278\n"
-"52\n"
+"03120302.xhp\n"
+"hd_id3152363\n"
+"1\n"
"help.text"
-msgid "x"
-msgstr "x"
+msgid "<link href=\"text/sbasic/shared/03120302.xhp\" name=\"LCase Function [Runtime]\">LCase Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120302.xhp\" name=\"Функция LCase [динамична]\">Функция LCase [динамична]</link>"
-#: 05060700.xhp
+#: 03120302.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3145257\n"
-"53\n"
+"03120302.xhp\n"
+"par_id3145609\n"
+"2\n"
"help.text"
-msgid "x"
-msgstr "x"
+msgid "Converts all uppercase letters in a string to lowercase."
+msgstr "Преобразува всички главни букви в низа в малки."
-#: 05060700.xhp
+#: 03120302.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3154122\n"
-"54\n"
+"03120302.xhp\n"
+"par_id3154347\n"
+"3\n"
"help.text"
-msgid "x"
-msgstr "x"
+msgid "See also: <link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase\">UCase</link> Function"
+msgstr "Виж също: функция <link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase\">UCase</link>"
-#: 05060700.xhp
+#: 03120302.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3156139\n"
-"55\n"
+"03120302.xhp\n"
+"hd_id3149456\n"
+"4\n"
"help.text"
-msgid "x"
-msgstr "x"
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 05060700.xhp
+#: 03120302.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3149036\n"
-"56\n"
+"03120302.xhp\n"
+"par_id3150791\n"
+"5\n"
"help.text"
-msgid "x"
-msgstr "x"
+msgid "LCase (Text As String)"
+msgstr "LCase (Text As String)"
-#: 05060700.xhp
+#: 03120302.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3150785\n"
-"57\n"
+"03120302.xhp\n"
+"hd_id3154940\n"
+"6\n"
"help.text"
-msgid "Graphics load successful"
-msgstr "Графиката е заредена успешно"
+msgid "Return value:"
+msgstr "Връщана стойност:"
-#: 05060700.xhp
+#: 03120302.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3153705\n"
-"58\n"
+"03120302.xhp\n"
+"par_id3144760\n"
+"7\n"
"help.text"
-msgid "Graphics are loaded successfully."
-msgstr "Графиката е заредена успешно."
+msgid "String"
+msgstr "String"
-#: 05060700.xhp
+#: 03120302.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3150343\n"
-"59\n"
+"03120302.xhp\n"
+"hd_id3151043\n"
+"8\n"
"help.text"
-msgid "x"
-msgstr "x"
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 05060700.xhp
+#: 03120302.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3150202\n"
-"60\n"
+"03120302.xhp\n"
+"par_id3153193\n"
+"9\n"
"help.text"
-msgid "Graphics load terminated"
-msgstr "Зареждането на графиката е прекъснато"
+msgid "<emph>Text:</emph> Any string expression that you want to convert."
+msgstr "<emph>Text:</emph> низов израз, чиято стойност да бъде преобразувана."
-#: 05060700.xhp
+#: 03120302.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3145584\n"
-"61\n"
+"03120302.xhp\n"
+"hd_id3148451\n"
+"10\n"
"help.text"
-msgid "Loading of graphics is stopped by the user (for example, when downloading the page)."
-msgstr "Зареждането на графика е спряно от потребителя (например при изтегляне на страницата)."
+msgid "Example:"
+msgstr "Пример:"
-#: 05060700.xhp
+#: 03120302.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3154259\n"
-"62\n"
+"03120302.xhp\n"
+"par_id3146121\n"
+"14\n"
"help.text"
-msgid "x"
-msgstr "x"
+msgid "Print LCase(sVar) ' Returns \"las vegas\""
+msgstr "Print LCase(sVar) ' Връща \"лас вегас\""
-#: 05060700.xhp
+#: 03120302.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3155089\n"
-"63\n"
+"03120302.xhp\n"
+"par_id3146986\n"
+"15\n"
"help.text"
-msgid "Graphics load faulty"
-msgstr "Грешка при зареждане на графиката"
+msgid "Print UCase(sVar) ' Returns \"LAS VEGAS\""
+msgstr "Print UCase(sVar) ' Връща \"ЛАС ВЕГАС\""
-#: 05060700.xhp
+#: 03120303.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3153307\n"
-"64\n"
+"03120303.xhp\n"
+"tit\n"
"help.text"
-msgid "Graphics not successfully loaded, for example, if a graphic was not found."
-msgstr "Графика не е заредена успешно, например не е била намерена."
+msgid "Left Function [Runtime]"
+msgstr "Функция Left [динамична]"
-#: 05060700.xhp
+#: 03120303.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3148840\n"
-"65\n"
+"03120303.xhp\n"
+"bm_id3149346\n"
"help.text"
-msgid "x"
-msgstr "x"
+msgid "<bookmark_value>Left function</bookmark_value>"
+msgstr "<bookmark_value>Left, функция</bookmark_value>"
-#: 05060700.xhp
+#: 03120303.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3154533\n"
-"66\n"
+"03120303.xhp\n"
+"hd_id3149346\n"
+"1\n"
"help.text"
-msgid "Input of alpha characters"
-msgstr "Въвеждане на буквени знаци"
+msgid "<link href=\"text/sbasic/shared/03120303.xhp\" name=\"Left Function [Runtime]\">Left Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120303.xhp\" name=\"Функция Left [динамична]\">Функция Left [динамична]</link>"
-#: 05060700.xhp
+#: 03120303.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3155266\n"
-"67\n"
+"03120303.xhp\n"
+"par_id3147242\n"
+"2\n"
"help.text"
-msgid "Text is entered from the keyboard."
-msgstr "От клавиатурата е въведен текст."
+msgid "Returns the number of leftmost characters that you specify of a string expression."
+msgstr "Връща указан брой от най-левите знаци в низ."
-#: 05060700.xhp
+#: 03120303.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3144768\n"
-"68\n"
+"03120303.xhp\n"
+"hd_id3156153\n"
+"3\n"
"help.text"
-msgid "x"
-msgstr "x"
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 05060700.xhp
+#: 03120303.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3145659\n"
-"69\n"
+"03120303.xhp\n"
+"par_id3150771\n"
+"4\n"
"help.text"
-msgid "Input of non-alpha characters"
-msgstr "Въвеждене на небуквени знаци"
+msgid "Left (Text As String, n As Long)"
+msgstr "Left (Text As String, n As Long)"
-#: 05060700.xhp
+#: 03120303.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3151131\n"
-"70\n"
+"03120303.xhp\n"
+"hd_id3153824\n"
+"5\n"
"help.text"
-msgid "Nonprinting characters are entered from the keyboard, for example, tabs and line breaks."
-msgstr "От клавиатурата са въведени непечатаеми знаци, например табулатори и нови редове."
+msgid "Return value:"
+msgstr "Връщана стойност:"
-#: 05060700.xhp
+#: 03120303.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3159206\n"
-"71\n"
+"03120303.xhp\n"
+"par_id3147530\n"
+"6\n"
"help.text"
-msgid "x"
-msgstr "x"
+msgid "String"
+msgstr "String"
-#: 05060700.xhp
+#: 03120303.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3150405\n"
-"72\n"
+"03120303.xhp\n"
+"hd_id3148946\n"
+"7\n"
"help.text"
-msgid "Resize frame"
-msgstr "Преоразмеряване на рамка"
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 05060700.xhp
+#: 03120303.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3153972\n"
-"73\n"
+"03120303.xhp\n"
+"par_id3148552\n"
+"8\n"
"help.text"
-msgid "Frame is resized with the mouse."
-msgstr "Рамка е преоразмерена с мишката."
+msgid "<emph>Text:</emph> Any string expression that you want to return the leftmost characters from."
+msgstr "<emph>Text:</emph> низов израз, от чиято стойност да се извлекат най-десните знаци."
-#: 05060700.xhp
+#: 03120303.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3152873\n"
-"74\n"
+"03120303.xhp\n"
+"par_id3149456\n"
+"9\n"
"help.text"
-msgid "x"
-msgstr "x"
+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 65535."
+msgstr "<emph>n:</emph> числов израз, който задава желания брой на знаците в резултата. Ако <emph>n</emph> = 0, се връща низ с нулева дължина. Максималната разрешена стойност е 65535."
-#: 05060700.xhp
+#: 03120303.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3148900\n"
-"75\n"
+"03120303.xhp\n"
+"par_id3150791\n"
+"10\n"
"help.text"
-msgid "Move frame"
-msgstr "Местене на рамка"
+msgid "The following example converts a date in YYYY.MM.DD format to MM/DD/YYYY format."
+msgstr "Следващият пример преобразува дата от формат ГГГГ-ММ-ДД в американския формат ММ/ДД/ГГГГ."
-#: 05060700.xhp
+#: 03120303.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3154767\n"
-"76\n"
+"03120303.xhp\n"
+"hd_id3125863\n"
+"11\n"
"help.text"
-msgid "Frame is moved with the mouse."
-msgstr "Рамка е преместена с мишката."
+msgid "Example:"
+msgstr "Пример:"
-#: 05060700.xhp
+#: 03120303.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3155914\n"
-"77\n"
+"03120303.xhp\n"
+"par_id3150448\n"
+"15\n"
"help.text"
-msgid "x"
-msgstr "x"
+msgid "sInput = InputBox(\"Please input a date in the international format 'YYYY-MM-DD'\")"
+msgstr "sInput = InputBox(\"Моля, въведете дата в международния формат „ГГГГ-ММ-ДД“\")"
-#: 05060700.xhp
+#: 03120304.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3153010\n"
-"78\n"
+"03120304.xhp\n"
+"tit\n"
"help.text"
-msgid "Before inserting AutoText"
-msgstr "Преди вмъкване на автотекст"
+msgid "LSet Statement [Runtime]"
+msgstr "Оператор LSet [динамичен]"
-#: 05060700.xhp
+#: 03120304.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3147515\n"
-"79\n"
+"03120304.xhp\n"
+"bm_id3143268\n"
"help.text"
-msgid "Before a text block is inserted."
-msgstr "Ще бъде вмъкнат текстов блок."
+msgid "<bookmark_value>LSet statement</bookmark_value>"
+msgstr "<bookmark_value>LSet, оператор</bookmark_value>"
-#: 05060700.xhp
+#: 03120304.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3151191\n"
-"80\n"
+"03120304.xhp\n"
+"hd_id3143268\n"
+"1\n"
"help.text"
-msgid "x"
-msgstr "x"
+msgid "<link href=\"text/sbasic/shared/03120304.xhp\" name=\"LSet Statement [Runtime]\">LSet Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120304.xhp\" name=\"Оператор LSet [динамичен]\">Оператор LSet [динамичен]</link>"
-#: 05060700.xhp
+#: 03120304.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3150956\n"
-"81\n"
+"03120304.xhp\n"
+"par_id3155419\n"
+"2\n"
"help.text"
-msgid "After inserting AutoText"
-msgstr "След вмъкване на автотекст"
+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 "Подравнява низ от лявата страна или копира стойност от потребителски тип в друга променлива от друг потребителски тип."
-#: 05060700.xhp
+#: 03120304.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3147502\n"
-"82\n"
+"03120304.xhp\n"
+"hd_id3145317\n"
+"3\n"
"help.text"
-msgid "After a text block is inserted."
-msgstr "Вмъкнат е бил текстов блок."
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 05060700.xhp
+#: 03120304.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3147555\n"
-"83\n"
+"03120304.xhp\n"
+"par_id3150984\n"
+"4\n"
"help.text"
-msgid "x"
-msgstr "x"
+msgid "LSet Var As String = Text or LSet Var1 = Var2"
+msgstr "LSet Var As String = Text или LSet Var1 = Var2"
-#: 05060700.xhp
+#: 03120304.xhp
msgctxt ""
-"05060700.xhp\n"
-"hd_id3153958\n"
+"03120304.xhp\n"
+"hd_id3143271\n"
"5\n"
"help.text"
-msgid "Macros"
-msgstr "Макроси"
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 05060700.xhp
+#: 03120304.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3150432\n"
+"03120304.xhp\n"
+"par_id3145610\n"
"6\n"
"help.text"
-msgid "Choose the macro that you want to execute when the selected event occurs."
-msgstr "Изберете макроса, който да се изпълнява при възникване на избраното събитие."
-
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3147296\n"
-"84\n"
-"help.text"
-msgid "Frames allow you to link events to a function, so that the function can determine if it processes the event or $[officename] Writer."
-msgstr "Рамките ви позволяват да свържете събития с функция, така че функцията да може да определи дали тя ще обработи събитието, или $[officename] Writer."
+msgid "<emph>Var:</emph> Any String variable that contains the string that you want align to the left."
+msgstr "<emph>Var:</emph> низова променлива, която да приеме подравнения резултат."
-#: 05060700.xhp
+#: 03120304.xhp
msgctxt ""
-"05060700.xhp\n"
-"hd_id3155587\n"
+"03120304.xhp\n"
+"par_id3154346\n"
"7\n"
"help.text"
-msgid "Category"
-msgstr "Категория"
+msgid "<emph>Text:</emph> String that you want to align to the left of the string variable."
+msgstr "<emph>Text:</emph> низ, който искате да подравните наляво."
-#: 05060700.xhp
+#: 03120304.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3154068\n"
+"03120304.xhp\n"
+"par_id3151054\n"
"8\n"
"help.text"
-msgid "<ahelp hid=\"HID_MACRO_GROUP\">Lists the open $[officename] documents and applications. Click the name of the location where you want to save the macros.</ahelp>"
-msgstr "<ahelp hid=\"HID_MACRO_GROUP\">Изброява отворените документи и приложения на $[officename]. Щракнете върху името на местоположението, където желаете да запазите макросите.</ahelp>"
+msgid "<emph>Var1:</emph> Name of the user-defined type variable that you want to copy to."
+msgstr "<emph>Var1:</emph> име на променлива от потребителски тип, в която искате да копирате."
-#: 05060700.xhp
+#: 03120304.xhp
msgctxt ""
-"05060700.xhp\n"
-"hd_id3149744\n"
+"03120304.xhp\n"
+"par_id3153361\n"
"9\n"
"help.text"
-msgid "Macro name"
-msgstr "Име на макрос"
+msgid "<emph>Var2:</emph> Name of the user-defined type variable that you want to copy from."
+msgstr "<emph>Var2:</emph> име на променлива от потребителски тип, от която искате да копирате."
-#: 05060700.xhp
+#: 03120304.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3151391\n"
+"03120304.xhp\n"
+"par_id3154686\n"
"10\n"
"help.text"
-msgid "<ahelp hid=\"HID_MACRO_MACROS\">Lists the available macros. Click the macro that you want to assign to the selected object.</ahelp>"
-msgstr "<ahelp hid=\"HID_MACRO_MACROS\">Изброява наличните макроси. Щракнете върху макроса, който искате да припишете на избрания обект.</ahelp>"
+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 "Ако низът е по-къс от низовата променлива, <emph>LSet</emph> го подравнява наляво в нея. Останалите позиции в променливата се заместват с интервали. Ако низът е по-дълъг от променливата, се копират само най-левите му знаци до дължината на променливата. С оператора <emph>LSet</emph> можете също така да копирате стойността на променлива от потребителски тип в друга променлива от такъв тип."
-#: 05060700.xhp
+#: 03120304.xhp
msgctxt ""
-"05060700.xhp\n"
-"hd_id3159260\n"
+"03120304.xhp\n"
+"hd_id3156282\n"
"11\n"
"help.text"
-msgid "Assign"
-msgstr "Приписване"
-
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3147406\n"
-"12\n"
-"help.text"
-msgid "<ahelp hid=\"SFX2_PUSHBUTTON_RID_SFX_TP_MACROASSIGN_PB_ASSIGN\">Assigns the selected macro to the specified event.</ahelp> The assigned macro's entries are set after the event."
-msgstr "<ahelp hid=\"SFX2_PUSHBUTTON_RID_SFX_TP_MACROASSIGN_PB_ASSIGN\">Приписва избрания макрос на зададеното събитие.</ahelp> Записите за присвоения макрос се задават след събитието."
-
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"hd_id3150533\n"
-"15\n"
-"help.text"
-msgid "Remove"
-msgstr "Премахване"
+msgid "Example:"
+msgstr "Пример:"
-#: 05060700.xhp
+#: 03120304.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3166456\n"
-"16\n"
+"03120304.xhp\n"
+"par_id3152940\n"
+"18\n"
"help.text"
-msgid "<variable id=\"aufheb\"><ahelp hid=\"SFX2_PUSHBUTTON_RID_SFX_TP_MACROASSIGN_PB_DELETE\">Removes the macro that is assigned to the selected item.</ahelp></variable>"
-msgstr "<variable id=\"aufheb\"><ahelp hid=\"SFX2_PUSHBUTTON_RID_SFX_TP_MACROASSIGN_PB_DELETE\">Премахва макроса, приписан на избрания елемент.</ahelp></variable>"
+msgid "' Align \"SBX\" within the 40-character reference string"
+msgstr "' Подравняваме „SBX“ в 40-знаков низ"
-#: 05060700.xhp
+#: 03120304.xhp
msgctxt ""
-"05060700.xhp\n"
-"hd_id3159126\n"
-"85\n"
+"03120304.xhp\n"
+"par_id3148647\n"
+"19\n"
"help.text"
-msgid "Macro selection"
-msgstr "Избор на макрос"
+msgid "' Replace asterisks with spaces"
+msgstr "' Заменяме звездичките с интервали"
-#: 05060700.xhp
+#: 03120304.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3149149\n"
-"86\n"
+"03120304.xhp\n"
+"par_id3151075\n"
+"30\n"
"help.text"
-msgid "<ahelp hid=\"SFX2_LISTBOX_RID_SFX_TP_MACROASSIGN_LB_SCRIPTTYPE\">Select the macro that you want to assign.</ahelp>"
-msgstr "<ahelp hid=\"SFX2_LISTBOX_RID_SFX_TP_MACROASSIGN_LB_SCRIPTTYPE\">Изберете макроса, който желаете да припишете.</ahelp>"
+msgid "' Left-align \"SBX\" within the 40-character reference string"
+msgstr "' Подравняваме наляво „SBX“ в 40-знаков низ"
-#: 01010210.xhp
+#: 03120305.xhp
msgctxt ""
-"01010210.xhp\n"
+"03120305.xhp\n"
"tit\n"
"help.text"
-msgid "Basics"
-msgstr "Основи"
+msgid "LTrim Function [Runtime]"
+msgstr "Функция LTrim [динамична]"
-#: 01010210.xhp
+#: 03120305.xhp
msgctxt ""
-"01010210.xhp\n"
-"bm_id4488967\n"
+"03120305.xhp\n"
+"bm_id3147574\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 "<bookmark_value>основи</bookmark_value><bookmark_value>подпрограми</bookmark_value><bookmark_value>променливи;глобални и локални</bookmark_value><bookmark_value>модули;подпрограми и функции</bookmark_value>"
+msgid "<bookmark_value>LTrim function</bookmark_value>"
+msgstr "<bookmark_value>LTrim, функция</bookmark_value>"
-#: 01010210.xhp
+#: 03120305.xhp
msgctxt ""
-"01010210.xhp\n"
-"hd_id3154927\n"
+"03120305.xhp\n"
+"hd_id3147574\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/01010210.xhp\" name=\"Basics\">Basics</link>"
-msgstr "<link href=\"text/sbasic/shared/01010210.xhp\" name=\"Основи\">Основи</link>"
-
-#: 01010210.xhp
-msgctxt ""
-"01010210.xhp\n"
-"par_id3156023\n"
-"14\n"
-"help.text"
-msgid "This section provides the fundamentals for working with $[officename] Basic."
-msgstr "Този раздел съдържа основна информация за работата с $[officename] Basic."
+msgid "<link href=\"text/sbasic/shared/03120305.xhp\" name=\"LTrim Function [Runtime]\">LTrim Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120305.xhp\" name=\"Функция LTrim [динамична]\">Функция LTrim [динамична]</link>"
-#: 01010210.xhp
+#: 03120305.xhp
msgctxt ""
-"01010210.xhp\n"
-"par_id3147560\n"
+"03120305.xhp\n"
+"par_id3145316\n"
"2\n"
"help.text"
-msgid "$[officename] Basic code is based on subroutines and functions that are specified between <emph>sub...end sub</emph> and <emph>function...end function</emph> sections. Each Sub or Function can call other Subs and Functions. If you take care to write generic code for a Sub or Function, you can probably re-use it in other programs. See also <link href=\"text/sbasic/shared/01020300.xhp\" name=\"Procedures and Functions\">Procedures and Functions</link>."
-msgstr "Кодът на $[officename] Basic е базиран на подпрограми и функции, които се задават като раздели от типа <emph>sub...end sub</emph> и <emph>function...end function</emph>. Всяка подпрограма и функция може да се обръща към други подпрограми и функции. Ако се погрижите кодът на подпрограмата или функцията да не е зависим от контекста, вероятно ще можете да я използвате в други програми. Вижте също<link href=\"text/sbasic/shared/01020300.xhp\" name=\"Процедури и функции\">Процедури и функции</link>."
-
-#: 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 "Може да са в сила някои ограничения за имената на публичните подпрограми, процедури и функции. Не трябва да използвате име, еднакво с това на някой от модулите на същата библиотека."
+msgid "Removes all leading spaces at the start of a string expression."
+msgstr "Премахва водещите интервали в началото на низ."
-#: 01010210.xhp
+#: 03120305.xhp
msgctxt ""
-"01010210.xhp\n"
-"hd_id3150398\n"
+"03120305.xhp\n"
+"hd_id3154924\n"
"3\n"
"help.text"
-msgid "What is a Sub?"
-msgstr "Какво е подпрограма (Sub)?"
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 01010210.xhp
+#: 03120305.xhp
msgctxt ""
-"01010210.xhp\n"
-"par_id3148797\n"
+"03120305.xhp\n"
+"par_id3148552\n"
"4\n"
"help.text"
-msgid "<emph>Sub</emph> is the short form of <emph>subroutine</emph>, that is used to handle a certain task within a program. Subs are used to split a task into individual procedures. Splitting a program into procedures and sub-procedures enhances readability and reduces the error-proneness. A sub possibly takes some arguments as parameters but does not return any values back to the calling sub or function, for example:"
-msgstr "<emph>Sub</emph> е съкращение от <emph>subroutine</emph> (подпрограма) – откъс код, който служи за решаване на определена задача в програма. Подпрограмите служат за разделяне на задача на отделни процедури. Разделянето на програмата на процедури и подпроцедури подобрява четливостта й и намалява възможностите за грешка. Подпрограмата може да приема аргументи като параметри, но не връща стойност на извикващата я подпрограма или функция, например:"
-
-#: 01010210.xhp
-msgctxt ""
-"01010210.xhp\n"
-"par_id3150868\n"
-"15\n"
-"help.text"
-msgid "DoSomethingWithTheValues(MyFirstValue,MySecondValue)"
-msgstr "НаправиНещоСъсСтойностите(ПърваСтойност, ВтораСтойност)"
+msgid "LTrim (Text As String)"
+msgstr "LTrim (Text As String)"
-#: 01010210.xhp
+#: 03120305.xhp
msgctxt ""
-"01010210.xhp\n"
-"hd_id3156282\n"
+"03120305.xhp\n"
+"hd_id3156344\n"
"5\n"
"help.text"
-msgid "What is a Function?"
-msgstr "Какво е функция (Function)?"
+msgid "Return value:"
+msgstr "Връщана стойност:"
-#: 01010210.xhp
+#: 03120305.xhp
msgctxt ""
-"01010210.xhp\n"
-"par_id3156424\n"
+"03120305.xhp\n"
+"par_id3151056\n"
"6\n"
"help.text"
-msgid "A <emph>function</emph> is essentially a sub, which returns a value. You may use a function at the right side of a variable declaration, or at other places where you normally use values, for example:"
-msgstr "<emph>Функцията</emph> представлява подпрограма, която връща стойност. Можете да я използвате от дясната страна при обявяване на променлива или на други места, където обикновено използвате стойности, например:"
+msgid "String"
+msgstr "String"
-#: 01010210.xhp
+#: 03120305.xhp
msgctxt ""
-"01010210.xhp\n"
-"par_id3146985\n"
+"03120305.xhp\n"
+"hd_id3150543\n"
"7\n"
"help.text"
-msgid "MySecondValue = myFunction(MyFirstValue)"
-msgstr "ВтораСтойност = МояФункция(Първа стойност)"
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 01010210.xhp
+#: 03120305.xhp
msgctxt ""
-"01010210.xhp\n"
-"hd_id3153364\n"
+"03120305.xhp\n"
+"par_id3150792\n"
"8\n"
"help.text"
-msgid "Global and local variables"
-msgstr "Глобални и локални променливи"
+msgid "<emph>Text:</emph> Any string expression."
+msgstr "<emph>Text:</emph> израз със стойност низ."
-#: 01010210.xhp
+#: 03120305.xhp
msgctxt ""
-"01010210.xhp\n"
-"par_id3151112\n"
+"03120305.xhp\n"
+"par_id3125863\n"
"9\n"
"help.text"
-msgid "Global variables are valid for all subs and functions inside a module. They are declared at the beginning of a module before the first sub or function starts."
-msgstr "Глобалните променливи важат във всички подпрограми и функции в даден модул. Те се обявяват в началото на модула, преди началото на първата подпрограма или функция."
+msgid "Use this function to remove spaces at the beginning of a string expression."
+msgstr "Използвайте тази функция, за да премахнете интервалите от началото на низ."
-#: 01010210.xhp
+#: 03120305.xhp
msgctxt ""
-"01010210.xhp\n"
-"par_id3154012\n"
+"03120305.xhp\n"
+"hd_id3145419\n"
"10\n"
"help.text"
-msgid "Variables that you declare within a sub or function are valid only inside this sub or function. These variables override global variables with the same name and local variables with the same name coming from superordinate subs or functions."
-msgstr "Променливите, обявени в подпрограма или функция, важат само в съответната подпрограма или функция. Те имат предимство пред глобалните променливи със същите имена и локалните променливи със същите имена от по-външни подпрограми или функции."
-
-#: 01010210.xhp
-msgctxt ""
-"01010210.xhp\n"
-"hd_id3150010\n"
-"11\n"
-"help.text"
-msgid "Structuring"
-msgstr "Структуриране"
-
-#: 01010210.xhp
-msgctxt ""
-"01010210.xhp\n"
-"par_id3153727\n"
-"12\n"
-"help.text"
-msgid "After separating your program into procedures and functions (Subs and Functions), you can save these procedures and functions as files for reuse in other projects. $[officename] Basic supports <link href=\"text/sbasic/shared/01020500.xhp\" name=\"Modules and Libraries\">Modules and Libraries</link>. Subs and functions are always contained in modules. You can define modules to be global or part of a document. Multiple modules can be combined to a library."
-msgstr "След като разделите програмата си на процедури и функции (блокове Sub и Function), можете да ги запишете за повторно използване в други проекти. $[officename] Basic поддържа <link href=\"text/sbasic/shared/01020500.xhp\" name=\"модули и библиотеки\">модули и библиотеки</link>. Процедурите и функциите винаги са част от модул. Можете да дефинирате модулите като глобални или като части от документ. Една библиотека може да съдържа няколко модула."
-
-#: 01010210.xhp
-msgctxt ""
-"01010210.xhp\n"
-"par_id3152578\n"
-"13\n"
-"help.text"
-msgid "You can copy or move subs, functions, modules and libraries from one file to another by using the <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Macro\">Macro</link> dialog."
-msgstr "Можете да копирате и местите процедури, функции, модули и библиотеки от един файл в друг чрез диалоговия прозорец <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Макрос\">Макрос</link>."
+msgid "Example:"
+msgstr "Пример:"
-#: 03103900.xhp
+#: 03120306.xhp
msgctxt ""
-"03103900.xhp\n"
+"03120306.xhp\n"
"tit\n"
"help.text"
-msgid "FindPropertyObject Function [Runtime]"
-msgstr "Функция FindPropertyObject [динамична]"
+msgid "Mid Function, Mid Statement [Runtime]"
+msgstr "Функция Mid и оператор Mid [динамични]"
-#: 03103900.xhp
+#: 03120306.xhp
msgctxt ""
-"03103900.xhp\n"
-"bm_id3146958\n"
+"03120306.xhp\n"
+"bm_id3143268\n"
"help.text"
-msgid "<bookmark_value>FindPropertyObject function</bookmark_value>"
-msgstr "<bookmark_value>FindPropertyObject, функция</bookmark_value>"
+msgid "<bookmark_value>Mid function</bookmark_value><bookmark_value>Mid statement</bookmark_value>"
+msgstr "<bookmark_value>Mid, функция</bookmark_value><bookmark_value>Mid, оператор</bookmark_value>"
-#: 03103900.xhp
+#: 03120306.xhp
msgctxt ""
-"03103900.xhp\n"
-"hd_id3146958\n"
+"03120306.xhp\n"
+"hd_id3143268\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03103900.xhp\" name=\"FindPropertyObject Function [Runtime]\">FindPropertyObject Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03103900.xhp\" name=\"Функция FindPropertyObject [динамична]\">Функция FindPropertyObject [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03120306.xhp\" name=\"Mid Function, Mid Statement [Runtime]\">Mid Function, Mid Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120306.xhp\" name=\"Функция Mid и оператор Mid [динамични]\">Функция Mid и оператор Mid [динамични]</link>"
-#: 03103900.xhp
+#: 03120306.xhp
msgctxt ""
-"03103900.xhp\n"
-"par_id3154285\n"
+"03120306.xhp\n"
+"par_id3148473\n"
"2\n"
"help.text"
-msgid "Enables objects to be addressed at run-time as a string parameter using the object name."
-msgstr "Позволява обект да бъде адресиран по време на изпълнение като параметър – низ посредством името му."
+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 "Връща указаната част от стойност – низ (<emph>функция Mid</emph>) или заменя част от низ с друг низ (<emph>оператор Mid</emph>)."
-#: 03103900.xhp
+#: 03120306.xhp
msgctxt ""
-"03103900.xhp\n"
-"par_id3147573\n"
+"03120306.xhp\n"
+"hd_id3154285\n"
"3\n"
"help.text"
-msgid "For instance, the command:"
-msgstr "Например следната команда:"
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 03103900.xhp
+#: 03120306.xhp
msgctxt ""
-"03103900.xhp\n"
-"par_id3145610\n"
+"03120306.xhp\n"
+"par_id3147530\n"
"4\n"
"help.text"
-msgid "MyObj.Prop1.Command = 5"
-msgstr "MyObj.Prop1.Command = 5"
+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 "Mid (Text As String, Start As Long [, Length As Long]) или Mid (Text As String, Start As Long, Length As Long, Text As String)"
-#: 03103900.xhp
+#: 03120306.xhp
msgctxt ""
-"03103900.xhp\n"
-"par_id3147265\n"
+"03120306.xhp\n"
+"hd_id3145068\n"
"5\n"
"help.text"
-msgid "corresponds to the following command block:"
-msgstr "съответства на блока от команди:"
+msgid "Return value:"
+msgstr "Връщана стойност:"
-#: 03103900.xhp
+#: 03120306.xhp
msgctxt ""
-"03103900.xhp\n"
-"par_id3153896\n"
+"03120306.xhp\n"
+"par_id3149295\n"
"6\n"
"help.text"
-msgid "Dim ObjVar as Object"
-msgstr "Dim ObjVar As Object"
+msgid "String (only by Function)"
+msgstr "String (само то функция)"
-#: 03103900.xhp
+#: 03120306.xhp
msgctxt ""
-"03103900.xhp\n"
-"par_id3148664\n"
+"03120306.xhp\n"
+"hd_id3154347\n"
"7\n"
"help.text"
-msgid "Dim ObjProp as Object"
-msgstr "Dim ObjProp As Object"
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 03103900.xhp
+#: 03120306.xhp
msgctxt ""
-"03103900.xhp\n"
-"par_id3150792\n"
+"03120306.xhp\n"
+"par_id3148664\n"
"8\n"
"help.text"
-msgid "ObjName As String = \"MyObj\""
-msgstr "ObjName As String = \"MyObj\""
+msgid "<emph>Text:</emph> Any string expression that you want to modify."
+msgstr "<emph>Text:</emph> низов израз, чиято стойност да бъде променена."
-#: 03103900.xhp
+#: 03120306.xhp
msgctxt ""
-"03103900.xhp\n"
-"par_id3154365\n"
+"03120306.xhp\n"
+"par_id3150359\n"
"9\n"
"help.text"
-msgid "ObjVar = FindObject( ObjName As String )"
-msgstr "ObjVar = FindObject(ObjName As String)"
+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 maximum allowed value is 65535."
+msgstr "<emph>Start:</emph> числов израз, който задава началната позиция за замяна на текст или за извличане на резултат. Максималната разрешена стойност е 65535."
-#: 03103900.xhp
+#: 03120306.xhp
msgctxt ""
-"03103900.xhp\n"
-"par_id3148453\n"
+"03120306.xhp\n"
+"par_id3148451\n"
"10\n"
"help.text"
-msgid "PropName As String = \"Prop1\""
-msgstr "PropName As String = \"Prop1\""
+msgid "<emph>Length:</emph> Numeric expression that returns the number of characters that you want to replace or return. The maximum allowed value is 65535."
+msgstr "<emph>Length:</emph> числов израз, който задава желания брой на знаците в резултата. Максималната разрешена стойност е 65535."
-#: 03103900.xhp
+#: 03120306.xhp
msgctxt ""
-"03103900.xhp\n"
-"par_id3150449\n"
+"03120306.xhp\n"
+"par_id3125864\n"
"11\n"
"help.text"
-msgid "ObjProp = FindPropertyObject( ObjVar, PropName As String )"
-msgstr "ObjProp = FindPropertyObject(ObjVar, PropName As String)"
+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 "Ако параметърът Length бъде пропуснат във <emph>функцията Mid</emph>, се връщат всички знаци от началната позиция до края на низа."
-#: 03103900.xhp
+#: 03120306.xhp
msgctxt ""
-"03103900.xhp\n"
-"par_id3159152\n"
+"03120306.xhp\n"
+"par_id3144762\n"
"12\n"
"help.text"
-msgid "ObjProp.Command = 5"
-msgstr "ObjProp.Command = 5"
+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 "Ако параметърът Length в <emph>оператора Mid</emph> е по-малък от дължината на текста, който трябва да бъде заменен, текстът се скъсява до зададената дължина."
-#: 03103900.xhp
+#: 03120306.xhp
msgctxt ""
-"03103900.xhp\n"
-"par_id3156214\n"
+"03120306.xhp\n"
+"par_id3150769\n"
"13\n"
"help.text"
-msgid "To dynamically create Names at run-time, use:"
-msgstr "За да създавате динамично имена по време на изпълнение, използвайте например:"
+msgid "<emph>Text:</emph> The string to replace the string expression (<emph>Mid statement</emph>)."
+msgstr "<emph>Text:</emph> низът, с който да се замести указаната част от стойността (<emph>оператор Mid</emph>)."
-#: 03103900.xhp
+#: 03120306.xhp
msgctxt ""
-"03103900.xhp\n"
-"par_id3154686\n"
+"03120306.xhp\n"
+"hd_id3149560\n"
"14\n"
"help.text"
-msgid "\"TextEdit1\" to TextEdit5\" in a loop to create five names."
-msgstr "от „TextEdit1“ до „TextEdit5“ в цикъл за създаване на пет имена."
-
-#: 03103900.xhp
-msgctxt ""
-"03103900.xhp\n"
-"par_id3150868\n"
-"15\n"
-"help.text"
-msgid "See also: <link href=\"text/sbasic/shared/03103800.xhp\" name=\"FindObject\">FindObject</link>"
-msgstr "Виж също: <link href=\"text/sbasic/shared/03103800.xhp\" name=\"FindObject\">FindObject</link>"
-
-#: 03103900.xhp
-msgctxt ""
-"03103900.xhp\n"
-"hd_id3147287\n"
-"16\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
-
-#: 03103900.xhp
-msgctxt ""
-"03103900.xhp\n"
-"par_id3149560\n"
-"17\n"
-"help.text"
-msgid "FindPropertyObject( ObjVar, PropName As String )"
-msgstr "FindPropertyObject(ObjVar, PropName As String)"
+msgid "Example:"
+msgstr "Пример:"
-#: 03103900.xhp
+#: 03120306.xhp
msgctxt ""
-"03103900.xhp\n"
-"hd_id3150012\n"
+"03120306.xhp\n"
+"par_id3153189\n"
"18\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
-
-#: 03103900.xhp
-msgctxt ""
-"03103900.xhp\n"
-"par_id3109839\n"
-"19\n"
-"help.text"
-msgid "<emph>ObjVar:</emph> Object variable that you want to dynamically define at run-time."
-msgstr "<emph>ObjVar:</emph> обектна променлива, която искате да дефинирате динамично по време на изпълнение."
-
-#: 03103900.xhp
-msgctxt ""
-"03103900.xhp\n"
-"par_id3153363\n"
-"20\n"
-"help.text"
-msgid "<emph>PropName:</emph> String that specifies the name of the property that you want to address at run-time."
-msgstr "<emph>PropName:</emph> низ, задаващ името на свойство, което искате да адресирате по време на изпълнение."
+msgid "sInput = InputBox(\"Please input a date in the international format 'YYYY-MM-DD'\")"
+msgstr "sInput = InputBox(\"Моля, въведете дата в международния формат „ГГГГ-ММ-ДД“\")"
-#: 03090303.xhp
+#: 03120307.xhp
msgctxt ""
-"03090303.xhp\n"
+"03120307.xhp\n"
"tit\n"
"help.text"
-msgid "On...GoSub Statement; On...GoTo Statement [Runtime]"
-msgstr "Оператори On…GoSub и On…GoTo [динамични]"
+msgid "Right Function [Runtime]"
+msgstr "Функция Right [динамична]"
-#: 03090303.xhp
+#: 03120307.xhp
msgctxt ""
-"03090303.xhp\n"
-"bm_id3153897\n"
+"03120307.xhp\n"
+"bm_id3153311\n"
"help.text"
-msgid "<bookmark_value>On...GoSub statement</bookmark_value><bookmark_value>On...GoTo statement</bookmark_value>"
-msgstr "<bookmark_value>On…GoSub, оператор</bookmark_value><bookmark_value>On…GoTo, оператор</bookmark_value>"
+msgid "<bookmark_value>Right function</bookmark_value>"
+msgstr "<bookmark_value>Right, функция</bookmark_value>"
-#: 03090303.xhp
+#: 03120307.xhp
msgctxt ""
-"03090303.xhp\n"
-"hd_id3153897\n"
+"03120307.xhp\n"
+"hd_id3153311\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090303.xhp\" name=\"On...GoSub Statement; On...GoTo Statement [Runtime]\">On...GoSub Statement; On...GoTo Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090303.xhp\" name=\"Оператори On…GoSub и On…GoTo [динамични]\">Оператори On…GoSub и On…GoTo [динамични]</link>"
+msgid "<link href=\"text/sbasic/shared/03120307.xhp\" name=\"Right Function [Runtime]\">Right Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120307.xhp\" name=\"Функция Right [динамична]\">Функция Right [динамична]</link>"
-#: 03090303.xhp
+#: 03120307.xhp
msgctxt ""
-"03090303.xhp\n"
-"par_id3150359\n"
+"03120307.xhp\n"
+"par_id3150984\n"
"2\n"
"help.text"
-msgid "Branches to one of several specified lines in the program code, depending on the value of a numeric expression."
-msgstr "Извършва преход към един от няколко зададени реда от програмния код според стойността на числов израз."
+msgid "Returns the rightmost \"n\" characters of a string expression."
+msgstr "Връща най-десните n знака от низ."
-#: 03090303.xhp
+#: 03120307.xhp
msgctxt ""
-"03090303.xhp\n"
-"hd_id3148798\n"
+"03120307.xhp\n"
+"par_id3149763\n"
"3\n"
"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
+msgid "See also: <link href=\"text/sbasic/shared/03120303.xhp\" name=\"Left Function\">Left Function</link>."
+msgstr "Виж също: функция <link href=\"text/sbasic/shared/03120303.xhp\" name=\"Left\">Left</link>."
-#: 03090303.xhp
+#: 03120307.xhp
msgctxt ""
-"03090303.xhp\n"
-"par_id3154366\n"
+"03120307.xhp\n"
+"hd_id3145315\n"
"4\n"
"help.text"
-msgid "On N GoSub Label1[, Label2[, Label3[,...]]]"
-msgstr "On NumExpression GoSub Label1[, Label2[, Label3[,...]]]"
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 03090303.xhp
+#: 03120307.xhp
msgctxt ""
-"03090303.xhp\n"
-"par_id3150769\n"
+"03120307.xhp\n"
+"par_id3153061\n"
"5\n"
"help.text"
-msgid "On NumExpression GoTo Label1[, Label2[, Label3[,...]]]"
-msgstr "On NumExpression GoTo Label1[, Label2[, Label3[,...]]]"
+msgid "Right (Text As String, n As Long)"
+msgstr "Right (Text As String, n As Long)"
-#: 03090303.xhp
+#: 03120307.xhp
msgctxt ""
-"03090303.xhp\n"
-"hd_id3156215\n"
+"03120307.xhp\n"
+"hd_id3145068\n"
"6\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "Return value:"
+msgstr "Връщана стойност:"
-#: 03090303.xhp
+#: 03120307.xhp
msgctxt ""
-"03090303.xhp\n"
-"par_id3148673\n"
+"03120307.xhp\n"
+"par_id3156344\n"
"7\n"
"help.text"
-msgid "<emph>NumExpression:</emph> Any numeric expression between 0 and 255 that determines which of the lines the program branches to. If NumExpression is 0, the statement is not executed. If NumExpression 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 "<emph>NumExpression:</emph> числов израз със стойност между 0 и 255, който определя към кой ред да се извърши преход. Ако NumExpression е 0, операторът не се изпълнява. Ако NumExpression е по-голям от 0, управлението преминава към етикета, чиято позиция съответства на стойността (1 = първи етикет; 2 = втори етикет)."
+msgid "String"
+msgstr "String"
-#: 03090303.xhp
+#: 03120307.xhp
msgctxt ""
-"03090303.xhp\n"
-"par_id3153194\n"
+"03120307.xhp\n"
+"hd_id3146795\n"
"8\n"
"help.text"
-msgid "<emph>Label:</emph> Target line according to<emph> GoTo </emph>or <emph>GoSub</emph> structure."
-msgstr "<emph>Label:</emph> ред – местоназначение според структурата на <emph>GoTo</emph> или <emph>GoSub</emph>."
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 03090303.xhp
+#: 03120307.xhp
msgctxt ""
-"03090303.xhp\n"
-"par_id3156442\n"
+"03120307.xhp\n"
+"par_id3153526\n"
"9\n"
"help.text"
-msgid "The <emph>GoTo</emph> or <emph>GoSub </emph>conventions are valid."
-msgstr "Важат правилата за <emph>GoTo</emph> или <emph>GoSub</emph>."
+msgid "<emph>Text:</emph> Any string expression that you want to return the rightmost characters of."
+msgstr "<emph>Text:</emph> низов израз, от чиято стойност да се извлекат най-десните знаци."
-#: 03090303.xhp
+#: 03120307.xhp
msgctxt ""
-"03090303.xhp\n"
-"hd_id3148645\n"
+"03120307.xhp\n"
+"par_id3151211\n"
"10\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
-
-#: 03090303.xhp
-msgctxt ""
-"03090303.xhp\n"
-"par_id3153948\n"
-"21\n"
-"help.text"
-msgid "sVar =sVar & \" From Sub 1 to\" : Return"
-msgstr "sVar =sVar & \" From Sub 1 to \" : Return"
+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 65535."
+msgstr "<emph>n:</emph> числов израз, който задава желания брой на знаците в резултата. Ако <emph>n</emph> = 0, се връща низ с нулева дължина. Максималната разрешена стойност е 65535."
-#: 03090303.xhp
+#: 03120307.xhp
msgctxt ""
-"03090303.xhp\n"
-"par_id3153708\n"
-"23\n"
+"03120307.xhp\n"
+"par_id3158410\n"
+"11\n"
"help.text"
-msgid "sVar =sVar & \" From Sub 2 to\" : Return"
-msgstr "sVar = sVar & \" From Sub 2 to \" : Return"
+msgid "The following example converts a date in YYYY-MM-DD format to the US date format (MM/DD/YYYY)."
+msgstr "Следващият пример преобразува дата от формат ГГГГ-ММ-ДД в американския формат ММ/ДД/ГГГГ."
-#: 03090303.xhp
+#: 03120307.xhp
msgctxt ""
-"03090303.xhp\n"
-"par_id3150321\n"
-"25\n"
+"03120307.xhp\n"
+"hd_id3156212\n"
+"12\n"
"help.text"
-msgid "sVar =sVar & \" Label 1\" : GoTo Ende"
-msgstr "sVar = sVar & \" Label 1\" : GoTo Ende"
+msgid "Example:"
+msgstr "Пример:"
-#: 03090303.xhp
+#: 03120307.xhp
msgctxt ""
-"03090303.xhp\n"
-"par_id3155764\n"
-"27\n"
+"03120307.xhp\n"
+"par_id3159252\n"
+"16\n"
"help.text"
-msgid "sVar =sVar & \" Label 2\""
-msgstr "sVar = sVar & \" Label 2\""
+msgid "sInput = InputBox(\"Please input a date in the international format 'YYYY-MM-DD'\")"
+msgstr "sInput = InputBox(\"Моля, въведете дата в международния формат „ГГГГ-ММ-ДД“\")"
-#: 03120202.xhp
+#: 03120308.xhp
msgctxt ""
-"03120202.xhp\n"
+"03120308.xhp\n"
"tit\n"
"help.text"
-msgid "String Function [Runtime]"
-msgstr "Функция String [динамична]"
+msgid "RSet Statement [Runtime]"
+msgstr "Оператор RSet [динамичен]"
-#: 03120202.xhp
+#: 03120308.xhp
msgctxt ""
-"03120202.xhp\n"
-"bm_id3147291\n"
+"03120308.xhp\n"
+"bm_id3153345\n"
"help.text"
-msgid "<bookmark_value>String function</bookmark_value>"
-msgstr "<bookmark_value>String, функция</bookmark_value>"
+msgid "<bookmark_value>RSet statement</bookmark_value>"
+msgstr "<bookmark_value>RSet, оператор</bookmark_value>"
-#: 03120202.xhp
+#: 03120308.xhp
msgctxt ""
-"03120202.xhp\n"
-"hd_id3147291\n"
+"03120308.xhp\n"
+"hd_id3153345\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120202.xhp\" name=\"String Function [Runtime]\">String Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120202.xhp\" name=\"Функция String [динамична]\">Функция String [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03120308.xhp\" name=\"RSet Statement [Runtime]\">RSet Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120308.xhp\" name=\"Оператор RSet [динамичен]\">Оператор RSet [динамичен]</link>"
-#: 03120202.xhp
+#: 03120308.xhp
msgctxt ""
-"03120202.xhp\n"
-"par_id3147242\n"
+"03120308.xhp\n"
+"par_id3150503\n"
"2\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 "Създава низ от зададен знак или първия знак на низов израз, подаден на функцията."
+msgid "Right-aligns a string within a string variable, or copies a user-defined variable type into another."
+msgstr "Подравнява низ от лявата страна или копира стойност от потребителски тип в друга променлива от друг потребителски тип."
-#: 03120202.xhp
+#: 03120308.xhp
msgctxt ""
-"03120202.xhp\n"
-"hd_id3149516\n"
+"03120308.xhp\n"
+"hd_id3149234\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03120202.xhp
+#: 03120308.xhp
msgctxt ""
-"03120202.xhp\n"
-"par_id3149233\n"
+"03120308.xhp\n"
+"par_id3150669\n"
"4\n"
"help.text"
-msgid "String (n As Long, {expression As Integer | character As String})"
-msgstr "String (n As Long, {expression As Integer | character As String})"
+msgid "RSet Text As String = Text or RSet Variable1 = Variable2"
+msgstr "RSet Text As String = Text или RSet Variable1 = Variable2"
-#: 03120202.xhp
+#: 03120308.xhp
msgctxt ""
-"03120202.xhp\n"
-"hd_id3143270\n"
+"03120308.xhp\n"
+"hd_id3156024\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Връщана стойност:"
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 03120202.xhp
+#: 03120308.xhp
msgctxt ""
-"03120202.xhp\n"
-"par_id3147530\n"
+"03120308.xhp\n"
+"par_id3148552\n"
"6\n"
"help.text"
-msgid "String"
-msgstr "String"
+msgid "<emph>Text:</emph> Any string variable."
+msgstr "<emph>Text:</emph> низова променлива."
-#: 03120202.xhp
+#: 03120308.xhp
msgctxt ""
-"03120202.xhp\n"
-"hd_id3154923\n"
+"03120308.xhp\n"
+"par_id3154924\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "<emph>Text</emph>: String that you want to right-align in the string variable."
+msgstr "<emph>Text:</emph> низ, който искате да подравните надясно."
-#: 03120202.xhp
+#: 03120308.xhp
msgctxt ""
-"03120202.xhp\n"
-"par_id3154347\n"
+"03120308.xhp\n"
+"par_id3149456\n"
"8\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 65535."
-msgstr "<emph>n:</emph> числов израз, определящ колко знака да съдържа низът – резултат. Максималната разрешена стойност на n е 65535."
+msgid "<emph>Variable1:</emph> User-defined variable that is the target for the copied variable."
+msgstr "<emph>Variable1:</emph> име на променлива от потребителски тип, в която искате да копирате."
-#: 03120202.xhp
+#: 03120308.xhp
msgctxt ""
-"03120202.xhp\n"
-"par_id3148664\n"
+"03120308.xhp\n"
+"par_id3153381\n"
"9\n"
"help.text"
-msgid "<emph>Expression:</emph> Numeric expression that defines the ASCII code for the character."
-msgstr "<emph>Expression:</emph> числов израз, който задава знаков код от ASCII."
+msgid "<emph>Variable2:</emph> User-defined variable that you want to copy to another variable."
+msgstr "<emph>Variable2:</emph> име на променлива от потребителски тип, от която искате да копирате."
-#: 03120202.xhp
+#: 03120308.xhp
msgctxt ""
-"03120202.xhp\n"
-"par_id3150359\n"
+"03120308.xhp\n"
+"par_id3154140\n"
"10\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 "<emph>Character:</emph> единичен знак, от който да бъде изграден низът – резултат, или низ, от който ще бъде използван само първият знак."
+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 "Ако низът е по-къс от низовата променлива, <emph>LSet</emph> го подравнява надясно в нея. Останалите позиции в променливата се заместват с интервали. Ако низът е по-дълъг от променливата, излишните знаци се отрязват и само останалите се подравняват надясно в променливата."
-#: 03120202.xhp
+#: 03120308.xhp
msgctxt ""
-"03120202.xhp\n"
-"hd_id3152920\n"
+"03120308.xhp\n"
+"par_id3149202\n"
"11\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "You can also use the <emph>RSet statement</emph> to assign variables of one user-defined type to another."
+msgstr "С оператора <emph>RSet</emph> можете също така да копирате стойността на променлива от потребителски тип в друга."
-#: 01030100.xhp
+#: 03120308.xhp
msgctxt ""
-"01030100.xhp\n"
-"tit\n"
+"03120308.xhp\n"
+"par_id3151042\n"
+"12\n"
"help.text"
-msgid "IDE Overview"
-msgstr "Общ преглед"
+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 "В следващия пример операторите <emph>RSet</emph> и <emph>LSet</emph> са използвани за промяна на подравняването на низ."
-#: 01030100.xhp
+#: 03120308.xhp
msgctxt ""
-"01030100.xhp\n"
-"hd_id3147291\n"
-"1\n"
+"03120308.xhp\n"
+"hd_id3154909\n"
+"13\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/01030100.xhp\" name=\"IDE Overview\">IDE Overview</link>"
-msgstr "<link href=\"text/sbasic/shared/01030100.xhp\" name=\"Интегрирана развойна среда – общ преглед\">Интегрирана развойна среда – общ преглед</link>"
+msgid "Example:"
+msgstr "Пример:"
-#: 01030100.xhp
+#: 03120308.xhp
msgctxt ""
-"01030100.xhp\n"
-"par_id3156344\n"
-"3\n"
+"03120308.xhp\n"
+"par_id3155856\n"
+"20\n"
"help.text"
-msgid "The <link href=\"text/sbasic/shared/main0211.xhp\" name=\"Macro Toolbar\"><emph>Macro Toolbar</emph></link> in the IDE provides various icons for editing and testing programs."
-msgstr "Лента <link href=\"text/sbasic/shared/main0211.xhp\" name=\"Лента Макрос\"><emph>Макрос</emph></link> в развойната среда предлага икони за редактиране и изпитване на програми."
+msgid "' Right-align \"SBX\" in a 40-character string"
+msgstr "' Подравняваме надясно „SBX“ в 40-знаков низ"
-#: 01030100.xhp
+#: 03120308.xhp
msgctxt ""
-"01030100.xhp\n"
-"par_id3151210\n"
-"4\n"
+"03120308.xhp\n"
+"par_id3152577\n"
+"21\n"
"help.text"
-msgid "In the <link href=\"text/sbasic/shared/01030200.xhp\" name=\"Editor window\"><emph>Editor window</emph></link>, directly below the Macro toolbar, you can edit the Basic program code. The column on the left side is used to set breakpoints in the program code."
-msgstr "В <link href=\"text/sbasic/shared/01030200.xhp\" name=\"Прозорец на редактора\"><emph>прозореца на редактора</emph></link>, точно под лентата „Макрос“, можете да редактирате програмния код на Basic. Колоната отляво служи за поставяне точки на прекъсване в програмния код."
+msgid "' Replace asterisks with spaces"
+msgstr "' Заменяме звездичките с интервали"
-#: 01030100.xhp
+#: 03120308.xhp
msgctxt ""
-"01030100.xhp\n"
-"par_id3154686\n"
-"5\n"
+"03120308.xhp\n"
+"par_id3145801\n"
+"32\n"
"help.text"
-msgid "The <link href=\"text/sbasic/shared/01050100.xhp\" name=\"Watch\"><emph>Watch window</emph></link> (observer) is located below the Editor window at the left, and displays the contents of variables or arrays during a single step process."
-msgstr "Прозорецът <link href=\"text/sbasic/shared/01050100.xhp\" name=\"Следене\"><emph>Следене</emph></link> се намира вляво под редактора и показва съдържанието на променливи и масиви при постъпково изпълнение на програмата."
+msgid "' Left-align \"SBX\" in a 40-character string"
+msgstr "' Подравняваме наляво „SBX“ в 40-знаков низ"
-#: 01030100.xhp
+#: 03120309.xhp
msgctxt ""
-"01030100.xhp\n"
-"par_id3145787\n"
-"8\n"
+"03120309.xhp\n"
+"tit\n"
"help.text"
-msgid "The <emph>Call Stack</emph> window to the right provides information about the call stack of SUBS and FUNCTIONS when a program runs."
-msgstr "Прозорецът <emph>Извиквания</emph> вдясно предлага информация за стека на обръщенията към процедури и функции по време на изпълнение на програма."
+msgid "RTrim Function [Runtime]"
+msgstr "Функция RTrim [динамична]"
-#: 01030100.xhp
+#: 03120309.xhp
msgctxt ""
-"01030100.xhp\n"
-"par_id3147434\n"
-"6\n"
+"03120309.xhp\n"
+"bm_id3154286\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/01050000.xhp\" name=\"Basic IDE\">Basic IDE</link>"
-msgstr "<link href=\"text/sbasic/shared/01050000.xhp\" name=\"Интегрирана развойна среда на Basic\">Интегрирана развойна среда на Basic</link>"
+msgid "<bookmark_value>RTrim function</bookmark_value>"
+msgstr "<bookmark_value>RTrim, функция</bookmark_value>"
-#: 01050100.xhp
+#: 03120309.xhp
msgctxt ""
-"01050100.xhp\n"
-"tit\n"
+"03120309.xhp\n"
+"hd_id3154286\n"
+"1\n"
"help.text"
-msgid "Watch Window"
-msgstr "Прозорец за следене"
+msgid "<link href=\"text/sbasic/shared/03120309.xhp\" name=\"RTrim Function [Runtime]\">RTrim Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120309.xhp\" name=\"Функция RTrim [динамична]\">Функция RTrim [динамична]</link>"
-#: 01050100.xhp
+#: 03120309.xhp
msgctxt ""
-"01050100.xhp\n"
-"hd_id3149457\n"
-"1\n"
+"03120309.xhp\n"
+"par_id3153127\n"
+"2\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/01050100.xhp\">Watch Window</link>"
-msgstr "<link href=\"text/sbasic/shared/01050100.xhp\">Прозорец за следене</link>"
+msgid "Deletes the spaces at the end of a string expression."
+msgstr "Изтрива интервалите в края на низ."
-#: 01050100.xhp
+#: 03120309.xhp
msgctxt ""
-"01050100.xhp\n"
-"par_id3154908\n"
-"9\n"
+"03120309.xhp\n"
+"par_id3153062\n"
+"3\n"
"help.text"
-msgid "The Watch window allows you to observe the value of variables during the execution of a program. Define the variable in the Watch text box. Click on <link href=\"text/sbasic/shared/02/11080000.xhp\">Enable Watch</link> to add the variable to the list box and to display its values."
-msgstr "Прозорецът за следене ви позволява да наблюдавате стойностите на променливи по време на изпълнение на програма. Задайте променливата в текстовото поле Следене. Щракнете върху <link href=\"text/sbasic/shared/02/11080000.xhp\">Разрешаване на следенето</link>, за да добавите променливата към списъка и да виждате стойностите й."
+msgid "See also: <link href=\"text/sbasic/shared/03120305.xhp\" name=\"LTrim Function\">LTrim Function</link>"
+msgstr "Виж също: функция <link href=\"text/sbasic/shared/03120305.xhp\" name=\"LTrim\">LTrim</link>"
-#: 01050100.xhp
+#: 03120309.xhp
msgctxt ""
-"01050100.xhp\n"
-"hd_id3145173\n"
+"03120309.xhp\n"
+"hd_id3154924\n"
"4\n"
"help.text"
-msgid "Watch"
-msgstr "Следене"
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 01050100.xhp
+#: 03120309.xhp
msgctxt ""
-"01050100.xhp\n"
-"par_id3155132\n"
+"03120309.xhp\n"
+"par_id3154347\n"
"5\n"
"help.text"
-msgid "<ahelp hid=\"HID_BASICIDE_WATCHWINDOW_EDIT\">Enter the name of the variable whose value is to be monitored.</ahelp>"
-msgstr "<ahelp hid=\"HID_BASICIDE_WATCHWINDOW_EDIT\">Въведете името на променливата, чиято стойност ще наблюдавате.</ahelp>"
+msgid "RTrim (Text As String)"
+msgstr "RTrim (Text As String)"
-#: 01050100.xhp
+#: 03120309.xhp
msgctxt ""
-"01050100.xhp\n"
-"hd_id3148645\n"
+"03120309.xhp\n"
+"hd_id3149457\n"
"6\n"
"help.text"
-msgid "Remove Watch"
-msgstr "Премахване от списъка за следене"
+msgid "Return value:"
+msgstr "Връщана стойност:"
-#: 01050100.xhp
+#: 03120309.xhp
msgctxt ""
-"01050100.xhp\n"
-"par_id3148576\n"
+"03120309.xhp\n"
+"par_id3153381\n"
"7\n"
"help.text"
-msgid "<ahelp hid=\"HID_BASICIDE_REMOVEWATCH\">Removes the selected variable from the list of watched variables.</ahelp>"
-msgstr "<ahelp hid=\"HID_BASICIDE_REMOVEWATCH\">Премахва избраната променлива от списъка със следени променливи.</ahelp>"
-
-#: 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 "<image id=\"img_id3152460\" src=\"res/baswatr.png\" width=\"0.25inch\" height=\"0.222inch\"><alt id=\"alt_id3152460\">Икона</alt></image>"
+msgid "String"
+msgstr "String"
-#: 01050100.xhp
+#: 03120309.xhp
msgctxt ""
-"01050100.xhp\n"
-"par_id3154012\n"
+"03120309.xhp\n"
+"hd_id3148798\n"
"8\n"
"help.text"
-msgid "Remove Watch"
-msgstr "Премахване от списъка за следене"
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 01050100.xhp
+#: 03120309.xhp
msgctxt ""
-"01050100.xhp\n"
-"hd_id3154491\n"
-"10\n"
+"03120309.xhp\n"
+"par_id3151380\n"
+"9\n"
"help.text"
-msgid "Editing the Value of a Watched Variable"
-msgstr "Редактиране стойността на наблюдавана променлива"
+msgid "<emph>Text: </emph>Any string expression."
+msgstr "<emph>Text:</emph> израз със стойност низ."
-#: 01050100.xhp
+#: 03120309.xhp
msgctxt ""
-"01050100.xhp\n"
-"par_id3156283\n"
-"11\n"
+"03120309.xhp\n"
+"hd_id3151041\n"
+"10\n"
"help.text"
-msgid "<ahelp hid=\"HID_BASICIDE_WATCHWINDOW_LIST\">Displays the list of watched variables. Click twice with a short pause in between on an entry to edit its value.</ahelp> The new value will be taken as the variable's value for the program."
-msgstr "<ahelp hid=\"HID_BASICIDE_WATCHWINDOW_LIST\">Показва списъка със следени променливи. Щракнете два пъти върху елемент с кратка пауза между щракванията, за да редактирате стойността.</ahelp> Новата стойност ще бъде приета като стойност на променливата в програмата."
+msgid "Example:"
+msgstr "Пример:"
-#: 03020301.xhp
+#: 03120310.xhp
msgctxt ""
-"03020301.xhp\n"
+"03120310.xhp\n"
"tit\n"
"help.text"
-msgid "Eof Function [Runtime]"
-msgstr "Функция Eof [динамична]"
+msgid "UCase Function [Runtime]"
+msgstr "Функция UCase [динамична]"
-#: 03020301.xhp
+#: 03120310.xhp
msgctxt ""
-"03020301.xhp\n"
-"bm_id3154598\n"
+"03120310.xhp\n"
+"bm_id3153527\n"
"help.text"
-msgid "<bookmark_value>Eof function</bookmark_value>"
-msgstr "<bookmark_value>Eof, функция</bookmark_value>"
+msgid "<bookmark_value>UCase function</bookmark_value>"
+msgstr "<bookmark_value>UCase, функция</bookmark_value>"
-#: 03020301.xhp
+#: 03120310.xhp
msgctxt ""
-"03020301.xhp\n"
-"hd_id3154598\n"
+"03120310.xhp\n"
+"hd_id3153527\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020301.xhp\" name=\"Eof Function [Runtime]\">Eof Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03020301.xhp\" name=\"Функция Eof [динамична]\">Функция Eof [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase Function [Runtime]\">UCase Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120310.xhp\" name=\"Функция UCase [динамична]\">Функция UCase [динамична]</link>"
-#: 03020301.xhp
+#: 03120310.xhp
msgctxt ""
-"03020301.xhp\n"
-"par_id3147182\n"
+"03120310.xhp\n"
+"par_id3155420\n"
"2\n"
"help.text"
-msgid "Determines if the file pointer has reached the end of a file."
-msgstr "Определя дали файловият указател е достигнал края на файла."
+msgid "Converts lowercase characters in a string to uppercase."
+msgstr "Преобразува малките букви в низ в главни."
-#: 03020301.xhp
+#: 03120310.xhp
msgctxt ""
-"03020301.xhp\n"
-"hd_id3149119\n"
+"03120310.xhp\n"
+"par_id3150771\n"
"3\n"
"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
+msgid "See also: <link href=\"text/sbasic/shared/03120302.xhp\" name=\"LCase Function\">LCase Function</link>"
+msgstr "Виж също: функция <link href=\"text/sbasic/shared/03120302.xhp\" name=\"LCase\">LCase</link>"
-#: 03020301.xhp
+#: 03120310.xhp
msgctxt ""
-"03020301.xhp\n"
-"par_id3147399\n"
+"03120310.xhp\n"
+"par_id3149233\n"
"4\n"
"help.text"
-msgid "Eof (intexpression As Integer)"
-msgstr "Eof (IntExpression As Integer)"
+msgid "<emph>Syntax</emph>:"
+msgstr "<emph>Синтаксис</emph>:"
-#: 03020301.xhp
+#: 03120310.xhp
msgctxt ""
-"03020301.xhp\n"
-"hd_id3153539\n"
+"03120310.xhp\n"
+"par_id3153061\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Връщана стойност:"
+msgid "UCase (Text As String)"
+msgstr "UCase (Text As String)"
-#: 03020301.xhp
+#: 03120310.xhp
msgctxt ""
-"03020301.xhp\n"
-"par_id3156027\n"
+"03120310.xhp\n"
+"par_id3159414\n"
"6\n"
"help.text"
-msgid "Bool"
-msgstr "Bool"
+msgid "<emph>Return value</emph>:"
+msgstr "Връщана стойност:"
-#: 03020301.xhp
+#: 03120310.xhp
msgctxt ""
-"03020301.xhp\n"
-"hd_id3152924\n"
+"03120310.xhp\n"
+"par_id3146795\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "String"
+msgstr "String"
-#: 03020301.xhp
+#: 03120310.xhp
msgctxt ""
-"03020301.xhp\n"
-"par_id3153990\n"
+"03120310.xhp\n"
+"hd_id3149457\n"
"8\n"
"help.text"
-msgid "<emph>Intexpression:</emph> Any integer expression that evaluates to the number of an open file."
-msgstr "<emph>IntExpression:</emph> целочислен израз – номер на отворен файл."
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 03020301.xhp
+#: 03120310.xhp
msgctxt ""
-"03020301.xhp\n"
-"par_id3153527\n"
+"03120310.xhp\n"
+"par_id3150791\n"
"9\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 "Използвайте EOF, за да избегнете грешки при опит за четене след края на файл. Когато четете от файл с оператора Input или Get, файловият указател нараства с броя на прочетените байтове. Когато бъде достигнат краят на файла, EOF връща стойността True (-1)."
+msgid "<emph>Text:</emph> Any string expression that you want to convert."
+msgstr "<emph>Text:</emph> низов израз, чиято стойност да бъде преобразувана."
-#: 03020301.xhp
+#: 03120310.xhp
msgctxt ""
-"03020301.xhp\n"
-"hd_id3154046\n"
+"03120310.xhp\n"
+"hd_id3154125\n"
"10\n"
"help.text"
msgid "Example:"
msgstr "Пример:"
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3153360\n"
-"19\n"
-"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr "Print #iNumber, \"Първият ред с текст\""
-
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3148797\n"
-"20\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr "Print #iNumber, \"Още един ред с текст\""
-
-#: 03120000.xhp
-msgctxt ""
-"03120000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Strings"
-msgstr "Низове"
-
-#: 03120000.xhp
-msgctxt ""
-"03120000.xhp\n"
-"hd_id3156153\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03120000.xhp\" name=\"Strings\">Strings</link>"
-msgstr "<link href=\"text/sbasic/shared/03120000.xhp\" name=\"Низове\">Низове</link>"
-
-#: 03120000.xhp
+#: 03120310.xhp
msgctxt ""
-"03120000.xhp\n"
-"par_id3159176\n"
-"2\n"
+"03120310.xhp\n"
+"par_id3149204\n"
+"14\n"
"help.text"
-msgid "The following functions and statements validate and return strings."
-msgstr "Следващите функции и оператори обработват и връщат низове."
+msgid "Print LCase(sVar) ' returns \"las vegas\""
+msgstr "Print LCase(sVar) ' връща \"лас вегас\""
-#: 03120000.xhp
+#: 03120310.xhp
msgctxt ""
-"03120000.xhp\n"
-"par_id3154285\n"
-"3\n"
+"03120310.xhp\n"
+"par_id3156280\n"
+"15\n"
"help.text"
-msgid "You can use strings to edit text within $[officename] Basic programs."
-msgstr "Низовете служат за работа с текст в програмите на $[officename] Basic."
+msgid "Print UCase(sVar) ' returns \"LAS VEGAS\""
+msgstr "Print UCase(sVar) ' връща \"ЛАС ВЕГАС\""
-#: 03060400.xhp
+#: 03120311.xhp
msgctxt ""
-"03060400.xhp\n"
+"03120311.xhp\n"
"tit\n"
"help.text"
-msgid "Not-Operator [Runtime]"
-msgstr "Операция Not [динамична]"
+msgid "Trim Function [Runtime]"
+msgstr "Функция Trim [динамична]"
-#: 03060400.xhp
+#: 03120311.xhp
msgctxt ""
-"03060400.xhp\n"
-"bm_id3156024\n"
+"03120311.xhp\n"
+"bm_id3150616\n"
"help.text"
-msgid "<bookmark_value>Not operator (logical)</bookmark_value>"
-msgstr "<bookmark_value>Not, логическа операция</bookmark_value>"
+msgid "<bookmark_value>Trim function</bookmark_value>"
+msgstr "<bookmark_value>Trim, функция</bookmark_value>"
-#: 03060400.xhp
+#: 03120311.xhp
msgctxt ""
-"03060400.xhp\n"
-"hd_id3156024\n"
+"03120311.xhp\n"
+"hd_id3150616\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03060400.xhp\" name=\"Not-Operator [Runtime]\">Not-Operator [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03060400.xhp\" name=\"Операция Not [динамична]\">Операция Not [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03120311.xhp\" name=\"Trim Function [Runtime]\">Trim Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120311.xhp\" name=\"Функция Trim [динамична]\">Функция Trim [динамична]</link>"
-#: 03060400.xhp
+#: 03120311.xhp
msgctxt ""
-"03060400.xhp\n"
-"par_id3159414\n"
+"03120311.xhp\n"
+"par_id3149177\n"
"2\n"
"help.text"
-msgid "Negates an expression by inverting the bit values."
-msgstr "Обръща стойността на израз, като инвертира стойностите на битовете."
+msgid "Removes all leading and trailing spaces from a string expression."
+msgstr "Премахва всички интервали от началото и края на низ."
-#: 03060400.xhp
+#: 03120311.xhp
msgctxt ""
-"03060400.xhp\n"
-"hd_id3149457\n"
+"03120311.xhp\n"
+"hd_id3159157\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03060400.xhp
+#: 03120311.xhp
msgctxt ""
-"03060400.xhp\n"
-"par_id3150360\n"
+"03120311.xhp\n"
+"par_id3155341\n"
"4\n"
"help.text"
-msgid "Result = Not Expression"
-msgstr "Result = Not Expression"
+msgid "Trim( Text As String )"
+msgstr "Trim( Text As String )"
-#: 03060400.xhp
+#: 03120311.xhp
msgctxt ""
-"03060400.xhp\n"
-"hd_id3151211\n"
+"03120311.xhp\n"
+"hd_id3155388\n"
"5\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "Return value:"
+msgstr "Връщана стойност:"
-#: 03060400.xhp
+#: 03120311.xhp
msgctxt ""
-"03060400.xhp\n"
-"par_id3147228\n"
+"03120311.xhp\n"
+"par_id3143228\n"
"6\n"
"help.text"
-msgid "<emph>Result:</emph> Any numeric variable that contains the result of the negation."
-msgstr "<emph>Result:</emph> числова променлива, в която да се запази резултатът от отрицанието."
+msgid "String"
+msgstr "String"
-#: 03060400.xhp
+#: 03120311.xhp
msgctxt ""
-"03060400.xhp\n"
-"par_id3154124\n"
+"03120311.xhp\n"
+"hd_id3145609\n"
"7\n"
"help.text"
-msgid "<emph>Expression:</emph> Any expression that you want to negate."
-msgstr "<emph>Expression:</emph> израз, чиято стойност искате да обърнете."
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 03060400.xhp
+#: 03120311.xhp
msgctxt ""
-"03060400.xhp\n"
-"par_id3150868\n"
+"03120311.xhp\n"
+"par_id3159414\n"
"8\n"
"help.text"
-msgid "When a Boolean expression is negated, the value True changes to False, and the value False changes to True."
-msgstr "При отрицание на булева стойност стойността True се превръща във False и обратно."
-
-#: 03060400.xhp
-msgctxt ""
-"03060400.xhp\n"
-"par_id3145785\n"
-"9\n"
-"help.text"
-msgid "In a bitwise negation each individual bit is inverted."
-msgstr "При отрицание бит по бит се обръща всеки отделен бит."
+msgid "<emph>Text:</emph> Any string expression."
+msgstr "<emph>Text:</emph> израз със стойност низ."
-#: 03060400.xhp
+#: 03120311.xhp
msgctxt ""
-"03060400.xhp\n"
-"hd_id3153093\n"
+"03120311.xhp\n"
+"hd_id3148663\n"
"10\n"
"help.text"
msgid "Example:"
msgstr "Пример:"
-#: 03060400.xhp
+#: 03120312.xhp
msgctxt ""
-"03060400.xhp\n"
-"par_id3145749\n"
-"15\n"
+"03120312.xhp\n"
+"tit\n"
"help.text"
-msgid "vOut = Not vA ' Returns -11"
-msgstr "vOut = Not vA ' връща -11"
+msgid "ConvertToURL Function [Runtime]"
+msgstr "Функция ConvertToURL [динамична]"
-#: 03060400.xhp
+#: 03120312.xhp
msgctxt ""
-"03060400.xhp\n"
-"par_id3148645\n"
-"16\n"
+"03120312.xhp\n"
+"bm_id3152801\n"
"help.text"
-msgid "vOut = Not(vC > vD) ' Returns -1"
-msgstr "vOut = Not(vC > vD) ' връща -1"
+msgid "<bookmark_value>ConvertToURL function</bookmark_value>"
+msgstr "<bookmark_value>ConvertToURL, функция</bookmark_value>"
-#: 03060400.xhp
+#: 03120312.xhp
msgctxt ""
-"03060400.xhp\n"
-"par_id3156441\n"
-"17\n"
+"03120312.xhp\n"
+"hd_id3152801\n"
+"1\n"
"help.text"
-msgid "vOut = Not(vB > vA) ' Returns -1"
-msgstr "vOut = Not(vB > vA) ' връща -1"
+msgid "<link href=\"text/sbasic/shared/03120312.xhp\" name=\"ConvertToURL Function [Runtime]\">ConvertToURL Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120312.xhp\" name=\"Функция ConvertToURL [динамична]\">Функция ConvertToURL [динамична]</link>"
-#: 03060400.xhp
+#: 03120312.xhp
msgctxt ""
-"03060400.xhp\n"
-"par_id3152596\n"
-"18\n"
+"03120312.xhp\n"
+"par_id3148538\n"
+"2\n"
"help.text"
-msgid "vOut = Not(vA > vB) ' Returns 0"
-msgstr "vOut = Not(vA > vB) ' връща 0"
+msgid "Converts a system file name to a file URL."
+msgstr "Преобразува системно файлово име в URL."
-#: 03090409.xhp
+#: 03120312.xhp
msgctxt ""
-"03090409.xhp\n"
-"tit\n"
+"03120312.xhp\n"
+"hd_id3150669\n"
+"3\n"
"help.text"
-msgid "Sub Statement [Runtime]"
-msgstr "Оператор Sub [динамичен]"
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 03090409.xhp
+#: 03120312.xhp
msgctxt ""
-"03090409.xhp\n"
-"bm_id3147226\n"
+"03120312.xhp\n"
+"par_id3154285\n"
+"4\n"
"help.text"
-msgid "<bookmark_value>Sub statement</bookmark_value>"
-msgstr "<bookmark_value>Sub, оператор</bookmark_value>"
+msgid "ConvertToURL(filename)"
+msgstr "ConvertToURL(Filename)"
-#: 03090409.xhp
+#: 03120312.xhp
msgctxt ""
-"03090409.xhp\n"
-"hd_id3147226\n"
-"1\n"
+"03120312.xhp\n"
+"hd_id3150984\n"
+"5\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090409.xhp\" name=\"Sub Statement [Runtime]\">Sub Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090409.xhp\" name=\"Оператор Sub [динамичен]\">Оператор Sub [динамичен]</link>"
+msgid "Return value:"
+msgstr "Връщана стойност:"
-#: 03090409.xhp
+#: 03120312.xhp
msgctxt ""
-"03090409.xhp\n"
-"par_id3153311\n"
-"2\n"
+"03120312.xhp\n"
+"par_id3147530\n"
+"6\n"
"help.text"
-msgid "Defines a subroutine."
-msgstr "Дефинира подпрограма."
+msgid "String"
+msgstr "String"
-#: 03090409.xhp
+#: 03120312.xhp
msgctxt ""
-"03090409.xhp\n"
-"hd_id3149416\n"
-"3\n"
+"03120312.xhp\n"
+"hd_id3148550\n"
+"7\n"
"help.text"
-msgid "Syntax"
-msgstr "Синтаксис"
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 03090409.xhp
+#: 03120312.xhp
msgctxt ""
-"03090409.xhp\n"
-"par_id3147530\n"
-"5\n"
+"03120312.xhp\n"
+"par_id3148947\n"
+"8\n"
"help.text"
-msgid "statement block"
-msgstr "операторен блок"
+msgid "<emph>Filename:</emph> A file name as string."
+msgstr "<emph>Filename:</emph> низ – име на файл."
-#: 03090409.xhp
+#: 03120312.xhp
msgctxt ""
-"03090409.xhp\n"
-"hd_id3153525\n"
+"03120312.xhp\n"
+"hd_id3153361\n"
"9\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "Example:"
+msgstr "Пример:"
-#: 03090409.xhp
+#: 03120312.xhp
msgctxt ""
-"03090409.xhp\n"
+"03120312.xhp\n"
"par_id3150792\n"
"10\n"
"help.text"
-msgid "<emph>Name:</emph> Name of the subroutine ."
-msgstr "<emph>Name:</emph> име на подпрограмата."
+msgid "systemFile$ = \"c:\\folder\\mytext.txt\""
+msgstr "systemFile$ = \"c:\\folder\\mytext.txt\""
-#: 03090409.xhp
+#: 03120312.xhp
msgctxt ""
-"03090409.xhp\n"
-"par_id3154138\n"
+"03120312.xhp\n"
+"par_id3154365\n"
"11\n"
"help.text"
-msgid "<emph>VarName: </emph>Parameter that you want to pass to the subroutine."
-msgstr "<emph>VarName:</emph> параметър, който ще бъде подаван на подпрограмата."
+msgid "url$ = ConvertToURL( systemFile$ )"
+msgstr "url$ = ConvertToURL(systemFile$)"
-#: 03090409.xhp
+#: 03120312.xhp
msgctxt ""
-"03090409.xhp\n"
-"par_id3154908\n"
+"03120312.xhp\n"
+"par_id3151042\n"
"12\n"
"help.text"
-msgid "<emph>Type:</emph> Type-declaration key word."
-msgstr "<emph>Type:</emph> ключова дума за обявяване на тип."
-
-#: 03090409.xhp
-msgctxt ""
-"03090409.xhp\n"
-"hd_id3153770\n"
-"16\n"
-"help.text"
-msgid "Example:"
-msgstr "Пример:"
-
-#: 03090409.xhp
-msgctxt ""
-"03090409.xhp\n"
-"par_idN1063F\n"
-"help.text"
-msgid "' some statements"
-msgstr "' Оператори"
-
-#: 01020000.xhp
-msgctxt ""
-"01020000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Syntax"
-msgstr "Синтаксис"
+msgid "print url$"
+msgstr "print url$"
-#: 01020000.xhp
+#: 03120312.xhp
msgctxt ""
-"01020000.xhp\n"
-"hd_id3148946\n"
-"1\n"
+"03120312.xhp\n"
+"par_id3154909\n"
+"13\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/01020000.xhp\" name=\"Syntax\">Syntax</link>"
-msgstr "<link href=\"text/sbasic/shared/01020000.xhp\" name=\"Синтаксис\">Синтаксис</link>"
+msgid "systemFileAgain$ = ConvertFromURL( url$ )"
+msgstr "systemFileAgain$ = ConvertFromURL(url$)"
-#: 01020000.xhp
+#: 03120312.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3150793\n"
-"2\n"
+"03120312.xhp\n"
+"par_id3144762\n"
+"14\n"
"help.text"
-msgid "This section describes the basic syntax elements of $[officename] Basic. For a detailed description please refer to the $[officename] Basic Guide which is available separately."
-msgstr "Този раздел описва основните елементи от синтаксиса на $[officename] Basic. За подробно описание се обърнете към отделното ръководство по $[officename] Basic."
+msgid "print systemFileAgain$"
+msgstr "print systemFileAgain$"
-#: 03090412.xhp
+#: 03120313.xhp
msgctxt ""
-"03090412.xhp\n"
+"03120313.xhp\n"
"tit\n"
"help.text"
-msgid "Exit Statement [Runtime]"
-msgstr "Оператор Exit [динамичен]"
+msgid "ConvertFromURL Function [Runtime]"
+msgstr "Функция ConvertFromURL [динамична]"
-#: 03090412.xhp
+#: 03120313.xhp
msgctxt ""
-"03090412.xhp\n"
-"bm_id3152924\n"
+"03120313.xhp\n"
+"bm_id3153894\n"
"help.text"
-msgid "<bookmark_value>Exit statement</bookmark_value>"
-msgstr "<bookmark_value>Exit, оператор</bookmark_value>"
+msgid "<bookmark_value>ConvertFromURL function</bookmark_value>"
+msgstr "<bookmark_value>ConvertFromURL, функция</bookmark_value>"
-#: 03090412.xhp
+#: 03120313.xhp
msgctxt ""
-"03090412.xhp\n"
-"hd_id3152924\n"
+"03120313.xhp\n"
+"hd_id3153894\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090412.xhp\" name=\"Exit Statement [Runtime]\">Exit Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090412.xhp\" name=\"Оператор Exit [динамичен]\">Оператор Exit [динамичен]</link>"
+msgid "<link href=\"text/sbasic/shared/03120313.xhp\" name=\"ConvertFromURL Function [Runtime]\">ConvertFromURL Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120313.xhp\" name=\"Функция ConvertFromURL [динамична]\">Функция ConvertFromURL [динамична]</link>"
-#: 03090412.xhp
+#: 03120313.xhp
msgctxt ""
-"03090412.xhp\n"
-"par_id3153394\n"
+"03120313.xhp\n"
+"par_id3147226\n"
"2\n"
"help.text"
-msgid "Exits a <emph>Do...Loop</emph>, <emph>For...Next</emph>, a function, or a subroutine."
-msgstr "Прекъсва <emph>Do…Loop</emph>, <emph>For…Next</emph>, функция или процедура."
+msgid "Converts a file URL to a system file name."
+msgstr "Преобразува файлов URL в системно файлово име."
-#: 03090412.xhp
+#: 03120313.xhp
msgctxt ""
-"03090412.xhp\n"
-"hd_id3149763\n"
+"03120313.xhp\n"
+"hd_id3143267\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03090412.xhp
+#: 03120313.xhp
msgctxt ""
-"03090412.xhp\n"
-"par_id3159157\n"
+"03120313.xhp\n"
+"par_id3154142\n"
"4\n"
"help.text"
-msgid "see Parameters"
-msgstr "виж Параметри"
+msgid "ConvertFromURL(filename)"
+msgstr "ConvertFromURL(Filename)"
-#: 03090412.xhp
+#: 03120313.xhp
msgctxt ""
-"03090412.xhp\n"
-"hd_id3148943\n"
+"03120313.xhp\n"
+"hd_id3159157\n"
"5\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "Return value:"
+msgstr "Връщана стойност:"
-#: 03090412.xhp
+#: 03120313.xhp
msgctxt ""
-"03090412.xhp\n"
-"par_id3154760\n"
+"03120313.xhp\n"
+"par_id3150669\n"
"6\n"
"help.text"
-msgid "<emph>Exit Do</emph>"
-msgstr "<emph>Exit Do</emph>"
+msgid "String"
+msgstr "String"
-#: 03090412.xhp
+#: 03120313.xhp
msgctxt ""
-"03090412.xhp\n"
-"par_id3147559\n"
+"03120313.xhp\n"
+"hd_id3143270\n"
"7\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 "Валиден е само за напускане на цикъла в оператор <emph>Do…Loop</emph>. Изпълнението на програмата продължава от оператора след Loop. Ако операторите <emph>Do…Loop</emph> са вложени, управлението се предава на следващото по-външно ниво."
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 03090412.xhp
+#: 03120313.xhp
msgctxt ""
-"03090412.xhp\n"
-"par_id3150398\n"
+"03120313.xhp\n"
+"par_id3156023\n"
"8\n"
"help.text"
-msgid "<emph>Exit For</emph>"
-msgstr "<emph>Exit For</emph>"
+msgid "<emph>Filename:</emph> A file name as a string."
+msgstr "<emph>Filename:</emph> низ – име на файл."
-#: 03090412.xhp
+#: 03120313.xhp
msgctxt ""
-"03090412.xhp\n"
-"par_id3148797\n"
+"03120313.xhp\n"
+"hd_id3154760\n"
"9\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 "Валиден е само за напускане на цикъла в оператор <emph>Do…Next</emph>. Изпълнението на програмата продължава от оператора след Loop. Ако операторите <emph>Do…Next</emph> са вложени, управлението се предава на следващото по-външно ниво."
+msgid "Example:"
+msgstr "Пример:"
-#: 03090412.xhp
+#: 03120313.xhp
msgctxt ""
-"03090412.xhp\n"
-"par_id3147229\n"
+"03120313.xhp\n"
+"par_id3148664\n"
"10\n"
"help.text"
-msgid "<emph>Exit Function</emph>"
-msgstr "<emph>Exit Function</emph>"
+msgid "systemFile$ = \"c:\\folder\\mytext.txt\""
+msgstr "systemFile$ = \"c:\\folder\\mytext.txt\""
-#: 03090412.xhp
+#: 03120313.xhp
msgctxt ""
-"03090412.xhp\n"
-"par_id3154685\n"
+"03120313.xhp\n"
+"par_id3150541\n"
"11\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 "Прекратява незабавно изпълнението на функцията. Изпълнението на програмата продължава от оператора след извикването на функцията."
+msgid "url$ = ConvertToURL( systemFile$ )"
+msgstr "url$ = ConvertToURL(systemFile$)"
-#: 03090412.xhp
+#: 03120313.xhp
msgctxt ""
-"03090412.xhp\n"
-"par_id3155132\n"
+"03120313.xhp\n"
+"par_id3150792\n"
"12\n"
"help.text"
-msgid "<emph>Exit Sub</emph>"
-msgstr "<emph>Exit Sub</emph>"
+msgid "print url$"
+msgstr "print url$"
-#: 03090412.xhp
+#: 03120313.xhp
msgctxt ""
-"03090412.xhp\n"
-"par_id3149561\n"
+"03120313.xhp\n"
+"par_id3154367\n"
"13\n"
"help.text"
-msgid "Exits the subroutine immediately. Program execution continues with the statement that follows the <emph>Sub</emph> call."
-msgstr "Предизвиква незабавен изход от процедура. Изпълнението на програмата продължава от оператора, непосредствено следващ извикването на процедурата."
+msgid "systemFileAgain$ = ConvertFromURL( url$ )"
+msgstr "systemFileAgain$ = ConvertFromURL(url$)"
-#: 03090412.xhp
+#: 03120313.xhp
msgctxt ""
-"03090412.xhp\n"
-"par_id3153143\n"
+"03120313.xhp\n"
+"par_id3153194\n"
"14\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 "Операторът Exit не обозначава края на структура и не трябва да се бърка с End."
-
-#: 03090412.xhp
-msgctxt ""
-"03090412.xhp\n"
-"hd_id3147348\n"
-"15\n"
-"help.text"
-msgid "Example:"
-msgstr "Пример:"
-
-#: 03090412.xhp
-msgctxt ""
-"03090412.xhp\n"
-"par_id3153158\n"
-"20\n"
-"help.text"
-msgid "For siStep = 0 To 10 ' Fill array with test data"
-msgstr "For siStep = 0 To 10 ' Запълваме масива с тестови данни"
-
-#: 03090412.xhp
-msgctxt ""
-"03090412.xhp\n"
-"par_id3153764\n"
-"31\n"
-"help.text"
-msgid "' LinSearch searches a TextArray:sList() for a TextEntry:"
-msgstr "' LinSearch претърсва TextArray:sList() за TextEntry:"
-
-#: 03090412.xhp
-msgctxt ""
-"03090412.xhp\n"
-"par_id3148995\n"
-"32\n"
-"help.text"
-msgid "' Returns the index of the entry or 0 (Null)"
-msgstr "' Връща индекса на елемента или 0 (Null)"
-
-#: 03090412.xhp
-msgctxt ""
-"03090412.xhp\n"
-"par_id3149567\n"
-"35\n"
-"help.text"
-msgid "Exit For ' sItem found"
-msgstr "Exit For ' sItem е намерен"
+msgid "print systemFileAgain$"
+msgstr "print systemFileAgain$"
-#: 03020204.xhp
+#: 03120314.xhp
msgctxt ""
-"03020204.xhp\n"
+"03120314.xhp\n"
"tit\n"
"help.text"
-msgid "Put Statement [Runtime]"
-msgstr "Оператор Put [динамичен]"
+msgid "Split Function [Runtime]"
+msgstr "Функция Split [динамична]"
-#: 03020204.xhp
+#: 03120314.xhp
msgctxt ""
-"03020204.xhp\n"
-"bm_id3150360\n"
+"03120314.xhp\n"
+"bm_id3156027\n"
"help.text"
-msgid "<bookmark_value>Put statement</bookmark_value>"
-msgstr "<bookmark_value>Put, оператор</bookmark_value>"
+msgid "<bookmark_value>Split function</bookmark_value>"
+msgstr "<bookmark_value>Split, функция</bookmark_value>"
-#: 03020204.xhp
+#: 03120314.xhp
msgctxt ""
-"03020204.xhp\n"
-"hd_id3150360\n"
+"03120314.xhp\n"
+"hd_id3156027\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020204.xhp\" name=\"Put Statement [Runtime]\">Put Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03020204.xhp\" name=\"Оператор Put [динамичен]\">Оператор Put [динамичен]</link>"
+msgid "<link href=\"text/sbasic/shared/03120314.xhp\" name=\"Split Function [Runtime]\">Split Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120314.xhp\" name=\"Функция Split [динамична]\">Функция Split [динамична]</link>"
-#: 03020204.xhp
+#: 03120314.xhp
msgctxt ""
-"03020204.xhp\n"
-"par_id3154909\n"
+"03120314.xhp\n"
+"par_id3155805\n"
"2\n"
"help.text"
-msgid "Writes a record to a relative file or a sequence of bytes to a binary file."
-msgstr "Записва запис във файл с произволен достъп или последователност от байтове в двоичен файл."
+msgid "Returns an array of substrings from a string expression."
+msgstr "Връща масив от поднизове на даден низ."
-#: 03020204.xhp
+#: 03120314.xhp
msgctxt ""
-"03020204.xhp\n"
-"par_id3156281\n"
+"03120314.xhp\n"
+"hd_id3149177\n"
"3\n"
"help.text"
-msgid "See also: <link href=\"text/sbasic/shared/03020201.xhp\" name=\"Get\"><item type=\"literal\">Get</item></link> statement"
-msgstr "Виж също: оператор <link href=\"text/sbasic/shared/03020201.xhp\" name=\"Get\"><item type=\"literal\">Get</item></link>"
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 03020204.xhp
+#: 03120314.xhp
msgctxt ""
-"03020204.xhp\n"
-"hd_id3125863\n"
+"03120314.xhp\n"
+"par_id3153824\n"
"4\n"
"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
+msgid "Split (Text As String, delimiter, number)"
+msgstr "Split (Text As String, delimiter, number)"
-#: 03020204.xhp
+#: 03120314.xhp
msgctxt ""
-"03020204.xhp\n"
-"par_id3155132\n"
+"03120314.xhp\n"
+"hd_id3149763\n"
"5\n"
"help.text"
-msgid "Put [#] FileNumber As Integer, [position], Variable"
-msgstr "Put [#] FileNumber As Integer, [position], Variable"
+msgid "Return value:"
+msgstr "Връщана стойност:"
-#: 03020204.xhp
+#: 03120314.xhp
msgctxt ""
-"03020204.xhp\n"
-"hd_id3153190\n"
+"03120314.xhp\n"
+"par_id3154285\n"
"6\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "String"
+msgstr "String"
-#: 03020204.xhp
+#: 03120314.xhp
msgctxt ""
-"03020204.xhp\n"
-"par_id3146120\n"
+"03120314.xhp\n"
+"hd_id3145315\n"
"7\n"
"help.text"
-msgid "<emph>FileNumber:</emph> Any integer expression that defines the file that you want to write to."
-msgstr "<emph>FileNumber:</emph> целочислен израз, задаващ файла, в който желаете да записвате."
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 03020204.xhp
+#: 03120314.xhp
msgctxt ""
-"03020204.xhp\n"
-"par_id3155411\n"
+"03120314.xhp\n"
+"par_id3156023\n"
"8\n"
"help.text"
-msgid "<emph>Position: </emph>For relative files (random access files), the number of the record that you want to write."
-msgstr "<emph>Position:</emph>за файлове с последователен достъп – номерът на записа, който желаете да запишете."
+msgid "<emph>Text:</emph> Any string expression."
+msgstr "<emph>Text:</emph> израз със стойност низ."
-#: 03020204.xhp
+#: 03120314.xhp
msgctxt ""
-"03020204.xhp\n"
-"par_id3148576\n"
+"03120314.xhp\n"
+"par_id3147560\n"
"9\n"
"help.text"
-msgid "For binary files (binary access), the position of the byte in the file where you want to start writing."
-msgstr "За двоични файлове – позицията на байта, от който трябва да започне записването."
-
-#: 03020204.xhp
-msgctxt ""
-"03020204.xhp\n"
-"par_id3153729\n"
-"10\n"
-"help.text"
-msgid "<emph>Variable:</emph> Name of the variable that you want to write to the file."
-msgstr "<emph>Variable:</emph> името на променливата, чиято стойност да бъде записана във файла."
-
-#: 03020204.xhp
-msgctxt ""
-"03020204.xhp\n"
-"par_id3146974\n"
-"11\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 "Забележка за файлове с произволен достъп: ако съдържанието на тази променлива не отговаря на дължината на записа, зададена в клаузата <emph>Len</emph> на оператора <emph>Open</emph>, пространството между новозаписания и следващия го запис се запълва със съществуващи данни от файла, в който записвате."
+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 "<emph>delimiter (незадължителен):</emph> низ от един или повече знака, който се използва за разделител в текста. Подразбира се знакът интервал."
-#: 03020204.xhp
+#: 03120314.xhp
msgctxt ""
-"03020204.xhp\n"
-"par_id3155855\n"
+"03120314.xhp\n"
+"par_id3145069\n"
"12\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 "Забележка за двоични файлове: съдържанието на променливите се записва в зададената позиция и файловият указател се поставя точно след последния байт. Между записите не се оставя място."
+msgid "<emph>number (optional):</emph> The number of substrings that you want to return."
+msgstr "<emph>number (незадължителен):</emph> броят поднизове, които да бъдат върнати."
-#: 03020204.xhp
+#: 03120314.xhp
msgctxt ""
-"03020204.xhp\n"
-"hd_id3154491\n"
-"13\n"
+"03120314.xhp\n"
+"hd_id3150398\n"
+"10\n"
"help.text"
msgid "Example:"
msgstr "Пример:"
-#: 03020204.xhp
-msgctxt ""
-"03020204.xhp\n"
-"par_id3154729\n"
-"16\n"
-"help.text"
-msgid "Dim sText As Variant ' Must be a variant type"
-msgstr "Dim sText As Variant ' Трябва да бъде тип Variant"
-
-#: 03020204.xhp
-msgctxt ""
-"03020204.xhp\n"
-"par_id3156278\n"
-"22\n"
-"help.text"
-msgid "Seek #iNumber,1 ' Position To start writing"
-msgstr "Seek #iNumber, 1 ' Позиционираме за начало на записването"
-
-#: 03020204.xhp
-msgctxt ""
-"03020204.xhp\n"
-"par_id3153711\n"
-"23\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the first line of text\" ' Fill line with text"
-msgstr "Put #iNumber,, \"Това е първият ред с текст\" ' Запълваме ред с текст"
-
-#: 03020204.xhp
-msgctxt ""
-"03020204.xhp\n"
-"par_id3155446\n"
-"24\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the second line of text\""
-msgstr "Put #iNumber,, \"Това е вторият ред с текст\""
-
-#: 03020204.xhp
-msgctxt ""
-"03020204.xhp\n"
-"par_id3154255\n"
-"25\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the third line of text\""
-msgstr "Put #iNumber,, \"Това е третият ред с текст\""
-
-#: 03020204.xhp
-msgctxt ""
-"03020204.xhp\n"
-"par_id3150940\n"
-"34\n"
-"help.text"
-msgid "Put #iNumber,,\"This is new text\""
-msgstr "Put #iNumber,, \"Това е нов текст\""
-
-#: 03020204.xhp
-msgctxt ""
-"03020204.xhp\n"
-"par_id3159102\n"
-"37\n"
-"help.text"
-msgid "Put #iNumber,20,\"This is the text in record 20\""
-msgstr "Put #iNumber, 20, \"Това е текстът в запис номер 20\""
-
-#: 03020415.xhp
+#: 03120315.xhp
msgctxt ""
-"03020415.xhp\n"
+"03120315.xhp\n"
"tit\n"
"help.text"
-msgid "FileExists Function [Runtime]"
-msgstr "Функция FileExists [динамична]"
+msgid "Join Function [Runtime]"
+msgstr "Функция Join [динамична]"
-#: 03020415.xhp
+#: 03120315.xhp
msgctxt ""
-"03020415.xhp\n"
-"bm_id3148946\n"
+"03120315.xhp\n"
+"bm_id3149416\n"
"help.text"
-msgid "<bookmark_value>FileExists function</bookmark_value>"
-msgstr "<bookmark_value>FileExists, функция</bookmark_value>"
+msgid "<bookmark_value>Join function</bookmark_value>"
+msgstr "<bookmark_value>Join, функция</bookmark_value>"
-#: 03020415.xhp
+#: 03120315.xhp
msgctxt ""
-"03020415.xhp\n"
-"hd_id3148946\n"
+"03120315.xhp\n"
+"hd_id3149416\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020415.xhp\" name=\"FileExists Function [Runtime]\">FileExists Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03020415.xhp\" name=\"Функция FileExists [динамична]\">Функция FileExists [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03120315.xhp\" name=\"Join Function [Runtime]\">Join Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120315.xhp\" name=\"Функция Join [динамична]\">Функция Join [динамична]</link>"
-#: 03020415.xhp
+#: 03120315.xhp
msgctxt ""
-"03020415.xhp\n"
-"par_id3153361\n"
+"03120315.xhp\n"
+"par_id3149670\n"
"2\n"
"help.text"
-msgid "Determines if a file or a directory is available on the data medium."
-msgstr "Определя дали файл или директория е налице върху носител на данни."
+msgid "Returns a string from a number of substrings in a string array."
+msgstr "Връща низ, образуван от подредени в масив поднизове."
-#: 03020415.xhp
+#: 03120315.xhp
msgctxt ""
-"03020415.xhp\n"
-"hd_id3150447\n"
+"03120315.xhp\n"
+"hd_id3159414\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03020415.xhp
+#: 03120315.xhp
msgctxt ""
-"03020415.xhp\n"
-"par_id3154685\n"
+"03120315.xhp\n"
+"par_id3156344\n"
"4\n"
"help.text"
-msgid "FileExists(FileName As String | DirectoryName As String)"
-msgstr "FileExists(FileName As String | DirectoryName As String)"
+msgid "Join (Text As String Array, delimiter)"
+msgstr "Join (Text As String Array, delimiter)"
-#: 03020415.xhp
+#: 03120315.xhp
msgctxt ""
-"03020415.xhp\n"
-"hd_id3154126\n"
+"03120315.xhp\n"
+"hd_id3150400\n"
"5\n"
"help.text"
msgid "Return value:"
msgstr "Връщана стойност:"
-#: 03020415.xhp
+#: 03120315.xhp
msgctxt ""
-"03020415.xhp\n"
-"par_id3150769\n"
+"03120315.xhp\n"
+"par_id3150359\n"
"6\n"
"help.text"
-msgid "Bool"
-msgstr "Bool"
+msgid "String"
+msgstr "String"
-#: 03020415.xhp
+#: 03120315.xhp
msgctxt ""
-"03020415.xhp\n"
-"hd_id3153770\n"
+"03120315.xhp\n"
+"hd_id3148798\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Параметри:"
-#: 03020415.xhp
-msgctxt ""
-"03020415.xhp\n"
-"par_id3147349\n"
-"8\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 "<emph>FileName | DirectoryName:</emph> низов израз, който еднозначно посочва файл. Може да е във вид на <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL\">URL</link>."
-
-#: 03020415.xhp
-msgctxt ""
-"03020415.xhp\n"
-"hd_id3149664\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr "Пример:"
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"tit\n"
-"help.text"
-msgid "Organizing Libraries and Modules"
-msgstr "Организиране на библиотеки и модули"
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"bm_id3148797\n"
-"help.text"
-msgid "<bookmark_value>libraries;organizing</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 "<bookmark_value>библиотеки;организиране</bookmark_value><bookmark_value>модули;организиране</bookmark_value><bookmark_value>копиране;модули</bookmark_value><bookmark_value>добавяне на библиотеки</bookmark_value><bookmark_value>изтриване;библиотеки/модули/диалогови прозорци</bookmark_value><bookmark_value>диалогови прозорци;организиране</bookmark_value><bookmark_value>преместване;модули</bookmark_value><bookmark_value>организиране;модули/библиотеки/диалогови прозорци</bookmark_value><bookmark_value>преименуване на модули и диалогови прозорци</bookmark_value>"
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"hd_id3148797\n"
-"1\n"
-"help.text"
-msgid "<variable id=\"01030400\"><link href=\"text/sbasic/shared/01030400.xhp\">Organizing Libraries and Modules</link></variable>"
-msgstr "<variable id=\"01030400\"><link href=\"text/sbasic/shared/01030400.xhp\">Организиране на библиотеки и модули</link></variable>"
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"hd_id3150868\n"
-"4\n"
-"help.text"
-msgid "Organizing Libraries"
-msgstr "Организиране на библиотеки"
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"hd_id3125864\n"
-"5\n"
-"help.text"
-msgid "Creating a New Library"
-msgstr "Създаване на нова библиотека"
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"par_id3152576\n"
-"6\n"
-"help.text"
-msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
-msgstr "Изберете <emph>Инструменти - Макроси - Управление на макроси - %PRODUCTNAME Basic</emph> и щракнете върху <emph>Организатор</emph> или щракнете върху иконата <emph>Избор на модул</emph> в развойната среда на Basic, за да отворите диалоговия прозорец <emph>Управление на макроси</emph>."
-
-#: 01030400.xhp
+#: 03120315.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3153726\n"
+"03120315.xhp\n"
+"par_id3145171\n"
"8\n"
"help.text"
-msgid "Click the <emph>Libraries</emph> tab."
-msgstr "Щракнете върху раздела <emph>Библиотеки</emph>."
+msgid "<emph>Text:</emph> A string array."
+msgstr "<emph>Text:</emph> масив от низове."
-#: 01030400.xhp
+#: 03120315.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3149664\n"
+"03120315.xhp\n"
+"par_id3154908\n"
"9\n"
"help.text"
-msgid "Select to where you want to attach the library in the <emph>Location</emph> list. If you select %PRODUCTNAME Macros & Dialogs, the library will belong to the $[officename] application and will be available for all documents. If you select a document the library will be attached to this document and only available from there."
-msgstr "Посочете в списъка <emph>Местонахождение</emph> къде желаете да прикрепите библиотеката. Ако изберете Макроси и диалогови прозорци на %PRODUCTNAME, библиотеката ще принадлежи на приложението $[officename] и ще бъде достъпна за всички документи. Ако изберете документ, библиотеката ще бъде прикрепена към документа и ще бъде достъпна само от него."
+msgid "<emph>delimiter (optional):</emph> A string character that is used to separate the substrings in the resulting string. The default delimiter is the space character. If delimiter is a string of length zero \"\", the substrings are joined without separator."
+msgstr "<emph>delimiter (незадължителен):</emph> низ, с който се разделят поднизовете в резултата. Подразбира се знакът интервал. Ако разделителят е низ с дължина нула (\"\"), поднизовете се долепват без разделител."
-#: 01030400.xhp
+#: 03120315.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3153365\n"
+"03120315.xhp\n"
+"hd_id3154218\n"
"10\n"
"help.text"
-msgid "Click <emph>New</emph> and insert a name to create a new library."
-msgstr "Щракнете върху <emph>Нова</emph> и въведете име, за да създадете нова библиотека."
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"hd_id3147394\n"
-"48\n"
-"help.text"
-msgid "Import a Library"
-msgstr "Импортиране на библиотека"
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"par_id3153157\n"
-"49\n"
-"help.text"
-msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
-msgstr "Изберете <emph>Инструменти - Макроси - Управление на макроси - %PRODUCTNAME Basic</emph> и щракнете върху <emph>Организатор</emph> или щракнете върху иконата <emph>Избор на модул</emph> в развойната среда на Basic, за да отворите диалоговия прозорец <emph>Управление на макроси</emph>."
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"par_id3146972\n"
-"50\n"
-"help.text"
-msgid "Click the <emph>Libraries</emph> tab."
-msgstr "Щракнете върху раздела <emph>Библиотеки</emph>."
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"par_id3145640\n"
-"51\n"
-"help.text"
-msgid "Select to where you want to import the library in the <emph>Location</emph> list. If you select %PRODUCTNAME Macros & Dialogs, the library will belong to the $[officename] application and will be available for all documents. If you select a document the library will be imported to this document and only available from there."
-msgstr "Посочете в списъка <emph>Местонахождение</emph> къде желаете да импортирате библиотеката. Ако изберете Макроси и диалогови прозорци на %PRODUCTNAME, библиотеката ще принадлежи на приложението $[officename] и ще бъде достъпна за всички документи. Ако изберете документ, библиотеката ще бъде импортирана в документа и ще бъде достъпна само от него."
+msgid "Example:"
+msgstr "Пример:"
-#: 01030400.xhp
+#: 03120400.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3154253\n"
-"52\n"
+"03120400.xhp\n"
+"tit\n"
"help.text"
-msgid "Click <emph>Import...</emph> and select an external library to import."
-msgstr "Щракнете върху <emph>Импортиране...</emph> и изберете външна библиотека за импортиране."
+msgid "Editing String Length"
+msgstr "Редактиране на дължината на низове"
-#: 01030400.xhp
+#: 03120400.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3154705\n"
-"53\n"
+"03120400.xhp\n"
+"hd_id3155150\n"
+"1\n"
"help.text"
-msgid "Select all libraries to be imported in the <emph>Import Libraries</emph> dialog. The dialog displays all libraries that are contained in the selected file."
-msgstr "Изберете библиотеките, които да бъдат импортирани, в диалоговия прозорец <emph>Импортиране на библиотеки</emph>. Той показва всички библиотеки, съдържащи се в избрания файл."
+msgid "<link href=\"text/sbasic/shared/03120400.xhp\" name=\"Editing String Length\">Editing String Length</link>"
+msgstr "<link href=\"text/sbasic/shared/03120400.xhp\" name=\"Редактиране на дължината на низове\">Редактиране на дължината на низове</link>"
-#: 01030400.xhp
+#: 03120400.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3163807\n"
-"54\n"
+"03120400.xhp\n"
+"par_id3159201\n"
+"2\n"
"help.text"
-msgid "If you want to insert the library as a reference only check the <emph>Insert as reference (read-only)</emph> box. Read-only libraries are fully functional but cannot be modified in the Basic IDE."
-msgstr "Ако искате да вмъкнете библиотека само като обръщение, отметнете <emph>Вмъкване като обръщение (само за четене)</emph>. Библиотеките само за четене са напълно функционални, но не могат да бъдат променяни в развойната среда на Basic."
+msgid "The following functions determine string lengths and compare strings."
+msgstr "Следващите функции определят дължини на низове и сравняват низове."
-#: 01030400.xhp
+#: 03120401.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3145228\n"
-"55\n"
+"03120401.xhp\n"
+"tit\n"
"help.text"
-msgid "Check the <emph>Replace existing libraries</emph> box if you want existing libraries of the same name to be overwritten."
-msgstr "Ако желаете съществуващите библиотеки със същите имена да бъдат замествани, отметнете <emph>Замяна на съществуващи библиотеки</emph>."
+msgid "InStr Function [Runtime]"
+msgstr "Функция InStr [динамична]"
-#: 01030400.xhp
+#: 03120401.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3147004\n"
-"56\n"
+"03120401.xhp\n"
+"bm_id3155934\n"
"help.text"
-msgid "Click <emph>OK</emph> to import the library."
-msgstr "Щракнете върху <emph>OK</emph>, за да импортирате библиотеката."
+msgid "<bookmark_value>InStr function</bookmark_value>"
+msgstr "<bookmark_value>InStr, функция</bookmark_value>"
-#: 01030400.xhp
+#: 03120401.xhp
msgctxt ""
-"01030400.xhp\n"
-"hd_id3159099\n"
-"17\n"
+"03120401.xhp\n"
+"hd_id3155934\n"
+"1\n"
"help.text"
-msgid "Export a Library"
-msgstr "Експортиране на библиотека"
+msgid "<link href=\"text/sbasic/shared/03120401.xhp\" name=\"InStr Function [Runtime]\">InStr Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120401.xhp\" name=\"Функция InStr [динамична]\">Функция InStr [динамична]</link>"
-#: 01030400.xhp
+#: 03120401.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3147005\n"
-"70\n"
+"03120401.xhp\n"
+"par_id3153990\n"
+"2\n"
"help.text"
-msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
-msgstr "Изберете <emph>Инструменти - Макроси - Управление на макроси - %PRODUCTNAME Basic</emph> и щракнете върху <emph>Организатор</emph> или щракнете върху иконата <emph>Избор на модул</emph> в развойната среда на Basic, за да отворите диалоговия прозорец <emph>Управление на макроси</emph>."
+msgid "Returns the position of a string within another string."
+msgstr "Връща позицията на низ в друг низ."
-#: 01030400.xhp
+#: 03120401.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3147006\n"
-"71\n"
+"03120401.xhp\n"
+"par_id3147303\n"
+"3\n"
"help.text"
-msgid "Click the <emph>Libraries</emph> tab."
-msgstr "Щракнете върху раздела <emph>Библиотеки</emph>."
+msgid "The Instr function returns the position at which the match was found. If the string was not found, the function returns 0."
+msgstr "Функцията InStr връща позицията, в която е намерено съответствие. Ако низът не бъде намерен, функцията връща 0."
-#: 01030400.xhp
+#: 03120401.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3147007\n"
-"72\n"
+"03120401.xhp\n"
+"hd_id3145090\n"
+"4\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 "В списъка <emph>Местоположение</emph> задайте къде е запазена библиотеката. Изберете библиотеката, която искате да експортирате. Забележете, че не можете да експортирате библиотеката <emph>Standard</emph>."
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 01030400.xhp
+#: 03120401.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3147008\n"
-"73\n"
+"03120401.xhp\n"
+"par_id3146957\n"
+"5\n"
"help.text"
-msgid "Click <emph>Export...</emph>"
-msgstr "Щракнете върху <emph>Експортиране...</emph>"
+msgid "InStr ([Start As Long,] Text1 As String, Text2 As String[, Compare])"
+msgstr "InStr ([Start As Long,] Text1 As String, Text2 As String[, Compare])"
-#: 01030400.xhp
+#: 03120401.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3147009\n"
-"74\n"
+"03120401.xhp\n"
+"hd_id3148538\n"
+"6\n"
"help.text"
-msgid "Choose whether you want to export the library as an extension or as a basic library."
-msgstr "Изберете дали искате да експортирате библиотеката като разширение или като обикновена библиотека."
+msgid "Return value:"
+msgstr "Връщана стойност:"
-#: 01030400.xhp
+#: 03120401.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3147010\n"
-"75\n"
+"03120401.xhp\n"
+"par_id3149763\n"
+"7\n"
"help.text"
-msgid "Click <emph>OK</emph>."
-msgstr "Щракнете върху <emph>OK</emph>."
+msgid "Integer"
+msgstr "Integer"
-#: 01030400.xhp
+#: 03120401.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3147011\n"
-"76\n"
+"03120401.xhp\n"
+"hd_id3148473\n"
+"8\n"
"help.text"
-msgid "Select where you want your library exported."
-msgstr "Изберете къде желаете да бъде експортирана библиотеката."
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 01030400.xhp
+#: 03120401.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3147012\n"
-"77\n"
+"03120401.xhp\n"
+"par_id3153126\n"
+"9\n"
"help.text"
-msgid "Click <emph>Save</emph> to export the library."
-msgstr "Щракнете върху <emph>Съхраняване</emph>, за да експортирате библиотеката."
+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 maximum allowed value is 65535."
+msgstr "<emph>Start:</emph> числов израз – позиция в низа, от която започва търсенето. Ако бъде пропуснат, търсенето започва от първия знак. Максималната разрешена стойност е 65535."
-#: 01030400.xhp
+#: 03120401.xhp
msgctxt ""
-"01030400.xhp\n"
-"hd_id3159100\n"
-"17\n"
+"03120401.xhp\n"
+"par_id3145609\n"
+"10\n"
"help.text"
-msgid "Deleting a Library"
-msgstr "Изтриване на библиотека"
+msgid "<emph>Text1:</emph> The string expression that you want to search."
+msgstr "<emph>Text1:</emph> низът, който да бъде претърсен."
-#: 01030400.xhp
+#: 03120401.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3150086\n"
-"18\n"
+"03120401.xhp\n"
+"par_id3147559\n"
+"11\n"
"help.text"
-msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
-msgstr "Изберете <emph>Инструменти - Макроси - Управление на макроси - %PRODUCTNAME Basic</emph> и щракнете върху <emph>Организатор</emph> или щракнете върху иконата <emph>Избор на модул</emph> в развойната среда на Basic, за да отворите диалоговия прозорец <emph>Управление на макроси</emph>."
+msgid "<emph>Text2:</emph> The string expression that you want to search for."
+msgstr "<emph>Text2:</emph> низът, който се търси."
-#: 01030400.xhp
+#: 03120401.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3146808\n"
-"57\n"
+"03120401.xhp\n"
+"par_id3154758\n"
+"12\n"
"help.text"
-msgid "Click the <emph>Libraries</emph> tab."
-msgstr "Щракнете върху раздела <emph>Библиотеки</emph>."
+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 "<emph>Compare:</emph> незадължителен числов израз, определящ начина на сравняване. Възможните стойности са 0 и 1. Подразбираната стойност 1 означава сравняване с игнориране на регистъра на буквите. Стойност 0 означава двоично сравняване, чувствително към регистъра."
-#: 01030400.xhp
+#: 03120401.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3158212\n"
-"58\n"
+"03120401.xhp\n"
+"par_id3153361\n"
+"13\n"
"help.text"
-msgid "Select the library to be deleted from the list."
-msgstr "Изберете от списъка библиотеката, която да бъде изтрита."
+msgid "To avoid a run-time error, do not set the Compare parameter if the first return parameter is omitted."
+msgstr "За да избегнете грешки при изпълнение, не задавайте параметър Compare ако първият параметър е пропуснат."
-#: 01030400.xhp
+#: 03120401.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3150361\n"
-"20\n"
+"03120401.xhp\n"
+"hd_id3154366\n"
+"14\n"
"help.text"
-msgid "Click <emph>Delete</emph>."
-msgstr "Щракнете върху <emph>Изтриване</emph>."
+msgid "Example:"
+msgstr "Пример:"
-#: 01030400.xhp
+#: 03120401.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3152986\n"
+"03120401.xhp\n"
+"par_id3144760\n"
"19\n"
"help.text"
-msgid "Deleting a library permanently deletes all existing modules and corresponding procedures and functions."
-msgstr "Безвъзвратното изтриване на библиотека изтрива всички съществуващи модули и съответните процедури и функции."
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"par_id3148868\n"
-"59\n"
-"help.text"
-msgid "You cannot delete the default library named \"Standard\"."
-msgstr "Не можете да изтриете подразбираната библиотека с име „Standard“."
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"par_id3146869\n"
-"60\n"
-"help.text"
-msgid "If you delete a library that was inserted as reference only the reference is deleted but not the library itself."
-msgstr "Ако изтриете библиотека, която е била вмъкната като обръщение, се премахва само обръщението, но не и самата библиотека."
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"hd_id3147070\n"
-"21\n"
-"help.text"
-msgid "Organizing Modules and Dialogs"
-msgstr "Организиране на модули и диалогови прозорци"
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"hd_id3155265\n"
-"61\n"
-"help.text"
-msgid "Creating a New Module or Dialog"
-msgstr "Създаване на нов модул или диалогов прозорец"
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"par_id3154537\n"
-"62\n"
-"help.text"
-msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
-msgstr "Изберете <emph>Инструменти - Макроси - Управление на макроси - %PRODUCTNAME Basic</emph> и щракнете върху <emph>Организатор</emph> или щракнете върху иконата <emph>Избор на модул</emph> в развойната среда на Basic, за да отворите диалоговия прозорец <emph>Управление на макроси</emph>."
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"par_id3146781\n"
-"63\n"
-"help.text"
-msgid "Click the <emph>Modules</emph> tab or the <emph>Dialogs</emph> tab."
-msgstr "Щракнете върху раздела <emph>Модули</emph> или <emph>Диалогови прозорци</emph>."
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"par_id3159206\n"
-"64\n"
-"help.text"
-msgid "Select the library where the module will be inserted and click <emph>New</emph>."
-msgstr "Изберете библиотеката, в която да бъде вмъкнат модулът, и натиснете <emph>Нов</emph>."
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"par_id3152389\n"
-"65\n"
-"help.text"
-msgid "Enter a name for the module or the dialog and click <emph>OK</emph>."
-msgstr "Въведете име за модула или диалоговия прозорец и щракнете върху <emph>OK</emph>."
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"hd_id3152872\n"
-"25\n"
-"help.text"
-msgid "Renaming a Module or Dialog"
-msgstr "Преименуване на модул или диалогов прозорец"
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"par_id3159230\n"
-"66\n"
-"help.text"
-msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
-msgstr "Изберете <emph>Инструменти - Макроси - Управление на макроси - %PRODUCTNAME Basic</emph> и щракнете върху <emph>Организатор</emph> или щракнете върху иконата <emph>Избор на модул</emph> в развойната среда на Basic, за да отворите диалоговия прозорец <emph>Управление на макроси</emph>."
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"par_id3150046\n"
-"67\n"
-"help.text"
-msgid "Click the module to be renamed twice, with a pause between the clicks. Enter the new name."
-msgstr "Щракнете два пъти върху модула, който искате да преименувате, с пауза между щракванията. Въведете новото име."
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"par_id3153801\n"
-"27\n"
-"help.text"
-msgid "In the Basic IDE, right-click the name of the module or dialog in the tabs at the bottom of the screen, choose <emph>Rename</emph> and type in the new name."
-msgstr "В развойната среда на Basic щракнете с десния бутон върху името на модула или диалоговия прозорец сред етикетите в долния край на екрана, изберете <emph>Преименуване</emph> и въведете новото име."
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"par_id3155526\n"
-"28\n"
-"help.text"
-msgid "Press Enter to confirm your changes."
-msgstr "Натиснете Enter, за да потвърдите промените."
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"hd_id3146963\n"
-"29\n"
-"help.text"
-msgid "Deleting a Module or Dialog"
-msgstr "Изтриване на модул или диалогов прозорец"
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"par_id3147547\n"
-"68\n"
-"help.text"
-msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
-msgstr "Изберете <emph>Инструменти - Макроси - Управление на макроси - %PRODUCTNAME Basic</emph> и щракнете върху <emph>Организатор</emph> или щракнете върху иконата <emph>Избор на модул</emph> в развойната среда на Basic, за да отворите диалоговия прозорец <emph>Управление на макроси</emph>."
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"par_id3150958\n"
-"69\n"
-"help.text"
-msgid "Click the <emph>Modules</emph> tab or the <emph>Dialogs</emph> tab."
-msgstr "Щракнете върху раздела <emph>Модули</emph> или <emph>Диалогови прозорци</emph>."
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"par_id3149870\n"
-"30\n"
-"help.text"
-msgid "Select the module or dialog to be deleted from the list. Double-click an entry to reveal sub-entries, if required."
-msgstr "Изберете модула или диалоговия прозорец, който да бъде изтрит от списъка. Ако е необходимо, щракнете двукратно върху елемент, за да видите подчинените му елементи."
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"par_id3147248\n"
-"32\n"
-"help.text"
-msgid "Click <emph>Delete</emph>."
-msgstr "Щракнете върху <emph>Изтриване</emph>."
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"par_id3151339\n"
-"31\n"
-"help.text"
-msgid "Deleting a module permanently deletes all existing procedures and functions in that module."
-msgstr "Изтриването на модул изтрива безвъзвратно всички съществуващи процедури и функции в него."
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"hd_id3151392\n"
-"33\n"
-"help.text"
-msgid "Organizing Projects among Documents or Templates"
-msgstr "Организиране на проекти в документи или шаблони"
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"hd_id3156400\n"
-"36\n"
-"help.text"
-msgid "Moving or copying modules between documents, templates and the application."
-msgstr "Преместване или копиране на модули между документи, шаблони и самото приложение"
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"par_id3146819\n"
-"37\n"
-"help.text"
-msgid "Open all documents or templates among which you want to move or copy the modules or dialogs."
-msgstr "Отворете всички документи или шаблони, между които желаете да местите или копирате модули или диалогови прозорци."
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"par_id3149319\n"
-"38\n"
-"help.text"
-msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
-msgstr "Изберете <emph>Инструменти - Макроси - Управление на макроси - %PRODUCTNAME Basic</emph> и щракнете върху <emph>Организатор</emph> или щракнете върху иконата <emph>Избор на модул</emph> в развойната среда на Basic, за да отворите диалоговия прозорец <emph>Управление на макроси</emph>."
+msgid "sInput = \"Office\""
+msgstr "sInput = \"Офис\""
-#: 01030400.xhp
+#: 03120401.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3145637\n"
-"39\n"
+"03120401.xhp\n"
+"par_id3154125\n"
+"20\n"
"help.text"
-msgid "To move a module or dialog to another document, click the corresponding object in the list and drag it to the desired position. A horizontal line indicates the target position of the current object while dragging. Hold the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key while dragging to copy the object instead of moving it."
-msgstr "За да преместите модул или диалогов прозорец в друг документ, щракнете върху съответния обект в списъка и го плъзнете до желаната позиция. По време на плъзгането позицията – цел се показва с хоризонтална линия. Задръжте клавиша <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> докато плъзгате, за да копирате обекта, вместо да го преместите."
+msgid "iPos = Instr(sInput,\"c\")"
+msgstr "iPos = InStr(sInput, \"и\")"
-#: 03020403.xhp
+#: 03120402.xhp
msgctxt ""
-"03020403.xhp\n"
+"03120402.xhp\n"
"tit\n"
"help.text"
-msgid "CurDir Function [Runtime]"
-msgstr "Функция CurDir [динамична]"
+msgid "Len Function [Runtime]"
+msgstr "Функция Len [динамична]"
-#: 03020403.xhp
+#: 03120402.xhp
msgctxt ""
-"03020403.xhp\n"
-"bm_id3153126\n"
+"03120402.xhp\n"
+"bm_id3154136\n"
"help.text"
-msgid "<bookmark_value>CurDir function</bookmark_value>"
-msgstr "<bookmark_value>CurDir, функция</bookmark_value>"
+msgid "<bookmark_value>Len function</bookmark_value>"
+msgstr "<bookmark_value>Len, функция</bookmark_value>"
-#: 03020403.xhp
+#: 03120402.xhp
msgctxt ""
-"03020403.xhp\n"
-"hd_id3153126\n"
+"03120402.xhp\n"
+"hd_id3154136\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020403.xhp\">CurDir Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03020403.xhp\">Функция CurDir [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03120402.xhp\" name=\"Len Function [Runtime]\">Len Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120402.xhp\" name=\"Функция Len [динамична]\">Функция Len [динамична]</link>"
-#: 03020403.xhp
+#: 03120402.xhp
msgctxt ""
-"03020403.xhp\n"
-"par_id3156343\n"
+"03120402.xhp\n"
+"par_id3147576\n"
"2\n"
"help.text"
-msgid "Returns a variant string that represents the current path of the specified drive."
-msgstr "Връща вариантен низ, който представлява текущия път на зададеното устройство."
+msgid "Returns the number of characters in a string, or the number of bytes that are required to store a variable."
+msgstr "Връща броя на знаците в низ или броя байтове, необходими за съхраняването на променлива."
-#: 03020403.xhp
+#: 03120402.xhp
msgctxt ""
-"03020403.xhp\n"
-"hd_id3149457\n"
+"03120402.xhp\n"
+"hd_id3159177\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03020403.xhp
+#: 03120402.xhp
msgctxt ""
-"03020403.xhp\n"
-"par_id3153381\n"
+"03120402.xhp\n"
+"par_id3150669\n"
"4\n"
"help.text"
-msgid "CurDir [(Text As String)]"
-msgstr "CurDir [(Text As String)]"
+msgid "Len (Text As String)"
+msgstr "Len (Text As String)"
-#: 03020403.xhp
+#: 03120402.xhp
msgctxt ""
-"03020403.xhp\n"
-"hd_id3154366\n"
+"03120402.xhp\n"
+"hd_id3148473\n"
"5\n"
"help.text"
msgid "Return value:"
msgstr "Връщана стойност:"
-#: 03020403.xhp
+#: 03120402.xhp
msgctxt ""
-"03020403.xhp\n"
-"par_id3156281\n"
+"03120402.xhp\n"
+"par_id3143270\n"
"6\n"
"help.text"
-msgid "String"
-msgstr "String"
+msgid "Long"
+msgstr "Long"
-#: 03020403.xhp
+#: 03120402.xhp
msgctxt ""
-"03020403.xhp\n"
-"hd_id3156423\n"
+"03120402.xhp\n"
+"hd_id3147531\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Параметри:"
-#: 03020403.xhp
+#: 03120402.xhp
msgctxt ""
-"03020403.xhp\n"
-"par_id3153193\n"
+"03120402.xhp\n"
+"par_id3147265\n"
"8\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)."
-msgstr "<emph>Text:</emph> низов израз, задаващ съществуващо устройство (например \"C\" за първия дял на първия твърд диск)."
+msgid "<emph>Text:</emph> Any string expression or a variable of another type."
+msgstr "<emph>Text:</emph> низов израз или променлива от друг тип."
-#: 03020403.xhp
+#: 03120402.xhp
msgctxt ""
-"03020403.xhp\n"
-"par_id3155133\n"
+"03120402.xhp\n"
+"hd_id3153360\n"
"9\n"
"help.text"
-msgid "If no drive is specified or if the drive is a zero-length string (\"\"), CurDir returns the path for the current drive. $[officename] Basic reports an error if the syntax of the drive description is incorrect, the drive does not exist, or if the drive letter occurs after the letter defined in the CONFIG.SYS with the Lastdrive statement."
-msgstr "Ако не е зададено устройство или ако е зададен низ с нулева дължина (\"\"), CurDir връща пътя за текущото устройство. $[officename] Basic докладва грешка, ако синтаксисът на описанието на устройство е неправилен, ако устройството не съществува или ако буквата на устройство е след тази, зададена в CONFIG.SYS с оператора Lastdrive."
-
-#: 03020403.xhp
-msgctxt ""
-"03020403.xhp\n"
-"par_id3150010\n"
-"10\n"
-"help.text"
-msgid "This function is not case-sensitive."
-msgstr "Тази функция е нечувствителна към регистъра на буквите."
+msgid "Example:"
+msgstr "Пример:"
-#: 03020403.xhp
+#: 03120402.xhp
msgctxt ""
-"03020403.xhp\n"
-"hd_id3155411\n"
-"11\n"
+"03120402.xhp\n"
+"par_id3156214\n"
+"13\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "MsgBox Len(sText) REM Returns 9"
+msgstr "MsgBox Len(sText) REM връща 9"
-#: 03080202.xhp
+#: 03120403.xhp
msgctxt ""
-"03080202.xhp\n"
+"03120403.xhp\n"
"tit\n"
"help.text"
-msgid "Log Function [Runtime]"
-msgstr "Функция Log [динамична]"
+msgid "StrComp Function [Runtime]"
+msgstr "Функция StrComp [динамична]"
-#: 03080202.xhp
+#: 03120403.xhp
msgctxt ""
-"03080202.xhp\n"
-"bm_id3149416\n"
+"03120403.xhp\n"
+"bm_id3156027\n"
"help.text"
-msgid "<bookmark_value>Log function</bookmark_value>"
-msgstr "<bookmark_value>Log, функция</bookmark_value>"
+msgid "<bookmark_value>StrComp function</bookmark_value>"
+msgstr "<bookmark_value>StrComp, функция</bookmark_value>"
-#: 03080202.xhp
+#: 03120403.xhp
msgctxt ""
-"03080202.xhp\n"
-"hd_id3149416\n"
+"03120403.xhp\n"
+"hd_id3156027\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080202.xhp\" name=\"Log Function [Runtime]\">Log Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03080202.xhp\" name=\"Функция Log [динамична]\">Функция Log [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03120403.xhp\" name=\"StrComp Function [Runtime]\">StrComp Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120403.xhp\" name=\"Функция StrComp [динамична]\">Функция StrComp [динамична]</link>"
-#: 03080202.xhp
+#: 03120403.xhp
msgctxt ""
-"03080202.xhp\n"
-"par_id3145066\n"
+"03120403.xhp\n"
+"par_id3155805\n"
"2\n"
"help.text"
-msgid "Returns the natural logarithm of a number."
-msgstr "Връща натуралния логаритъм на число."
+msgid "Compares two strings and returns an integer value that represents the result of the comparison."
+msgstr "Сравмява два низа и връща числова стойност, представяща резултата от сравнението."
-#: 03080202.xhp
+#: 03120403.xhp
msgctxt ""
-"03080202.xhp\n"
-"hd_id3159414\n"
+"03120403.xhp\n"
+"hd_id3153345\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03080202.xhp
+#: 03120403.xhp
msgctxt ""
-"03080202.xhp\n"
-"par_id3154760\n"
+"03120403.xhp\n"
+"par_id3150503\n"
"4\n"
"help.text"
-msgid "Log (Number)"
-msgstr "Log (Number)"
+msgid "StrComp (Text1 As String, Text2 As String[, Compare])"
+msgstr "StrComp (Text1 As String, Text2 As String[, Compare])"
-#: 03080202.xhp
+#: 03120403.xhp
msgctxt ""
-"03080202.xhp\n"
-"hd_id3149457\n"
+"03120403.xhp\n"
+"hd_id3147574\n"
"5\n"
"help.text"
msgid "Return value:"
msgstr "Връщана стойност:"
-#: 03080202.xhp
+#: 03120403.xhp
msgctxt ""
-"03080202.xhp\n"
-"par_id3150791\n"
+"03120403.xhp\n"
+"par_id3156152\n"
"6\n"
"help.text"
-msgid "Double"
-msgstr "Double"
+msgid "Integer"
+msgstr "Integer"
-#: 03080202.xhp
+#: 03120403.xhp
msgctxt ""
-"03080202.xhp\n"
-"hd_id3151211\n"
+"03120403.xhp\n"
+"hd_id3150984\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "Parameter:"
+msgstr "Параметър:"
-#: 03080202.xhp
+#: 03120403.xhp
msgctxt ""
-"03080202.xhp\n"
-"par_id3151041\n"
+"03120403.xhp\n"
+"par_id3153061\n"
"8\n"
"help.text"
-msgid "<emph>Number:</emph> Any numeric expression that you want to calculate the natural logarithm for."
-msgstr "<emph>Number:</emph> числов израз, чийто натурален логаритъм искате да изчислите."
+msgid "<emph>Text1:</emph> Any string expression"
+msgstr "<emph>Text1:</emph> израз със стойност низ."
-#: 03080202.xhp
+#: 03120403.xhp
msgctxt ""
-"03080202.xhp\n"
-"par_id3150869\n"
+"03120403.xhp\n"
+"par_id3147560\n"
"9\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 "Натуралният логаритъм е логаритъм с основа e. Това е константа с приближителна стойност 2,718282…"
+msgid "<emph>Text2:</emph> Any string expression"
+msgstr "<emph>Text2:</emph> израз със стойност низ."
-#: 03080202.xhp
+#: 03120403.xhp
msgctxt ""
-"03080202.xhp\n"
-"par_id3153968\n"
+"03120403.xhp\n"
+"par_id3146796\n"
"10\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 "Можете да пресмятате логаритми с всякаква основа n за всяко число x, като разделите натуралния логаритъм на x на натуралния логаритъм на n, както следва:"
-
-#: 03080202.xhp
-msgctxt ""
-"03080202.xhp\n"
-"par_id3145420\n"
-"11\n"
-"help.text"
-msgid "Log n(x) = Log(x) / Log(n)"
-msgstr "Log n(x) = Log(x) / Log(n)"
-
-#: 03080202.xhp
-msgctxt ""
-"03080202.xhp\n"
-"hd_id3155131\n"
-"12\n"
-"help.text"
-msgid "Example:"
-msgstr "Пример:"
-
-#: 03080202.xhp
-msgctxt ""
-"03080202.xhp\n"
-"par_id3149262\n"
-"18\n"
-"help.text"
-msgid "MsgBox \"\" & a & chr(13) & (b1*b2) ,0,\"Multiplication by logarithm function\""
-msgstr "MsgBox \"\" & a & Chr(13) & (b1 * b2), 0, \"Умножение чрез логаритъм\""
-
-#: 03090103.xhp
-msgctxt ""
-"03090103.xhp\n"
-"tit\n"
-"help.text"
-msgid "IIf Statement [Runtime]"
-msgstr "Оператор IIf [динамичен]"
+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 "<emph>Compare:</emph> незадължителен параметър за начин на сравняване. Ако Compare = 1, сравняването е чувствително към регистъра на буквите. Ако Compare = 0, малките и главните букви не се различават."
-#: 03090103.xhp
+#: 03120403.xhp
msgctxt ""
-"03090103.xhp\n"
-"bm_id3155420\n"
+"03120403.xhp\n"
+"hd_id3154940\n"
+"13\n"
"help.text"
-msgid "<bookmark_value>IIf statement</bookmark_value>"
-msgstr "<bookmark_value>IIf statement</bookmark_value>"
+msgid "Return value"
+msgstr "Връщана стойност:"
-#: 03090103.xhp
+#: 03120403.xhp
msgctxt ""
-"03090103.xhp\n"
-"hd_id3155420\n"
-"1\n"
+"03120403.xhp\n"
+"par_id3150358\n"
+"27\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090103.xhp\" name=\"IIf Statement [Runtime]\">IIf Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090103.xhp\" name=\"Оператор IIf [динамичен]\">Оператор IIf [динамичен]</link>"
+msgid "If Text1 < Text2 the function returns -1"
+msgstr "Ако Text1 < Text2, функцията връща -1."
-#: 03090103.xhp
+#: 03120403.xhp
msgctxt ""
-"03090103.xhp\n"
-"par_id3145610\n"
-"2\n"
+"03120403.xhp\n"
+"par_id3151043\n"
+"28\n"
"help.text"
-msgid "Returns one of two possible function results, depending on the logical value of the evaluated expression."
-msgstr "Връща един от два възможни резултата според логическата стойност на оценяван израз."
+msgid "If Text1 = Text2 the function returns 0"
+msgstr "Ако Text1 = Text2, функцията връща 0."
-#: 03090103.xhp
+#: 03120403.xhp
msgctxt ""
-"03090103.xhp\n"
-"hd_id3159413\n"
-"3\n"
+"03120403.xhp\n"
+"par_id3158410\n"
+"29\n"
"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
+msgid "If Text1 > Text2 the function returns 1"
+msgstr "Ако Text1 > Text2, функцията връща 1."
-#: 03090103.xhp
+#: 03120403.xhp
msgctxt ""
-"03090103.xhp\n"
-"par_id3147560\n"
-"4\n"
+"03120403.xhp\n"
+"hd_id3153968\n"
+"18\n"
"help.text"
-msgid "IIf (Expression, ExpressionTrue, ExpressionFalse)"
-msgstr "IIf (Expression, ExpressionTrue, ExpressionFalse)"
+msgid "Example:"
+msgstr "Пример:"
-#: 03090103.xhp
+#: 03130000.xhp
msgctxt ""
-"03090103.xhp\n"
-"hd_id3150541\n"
-"5\n"
+"03130000.xhp\n"
+"tit\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "Other Commands"
+msgstr "Други команди"
-#: 03090103.xhp
+#: 03130000.xhp
msgctxt ""
-"03090103.xhp\n"
-"par_id3153381\n"
-"6\n"
+"03130000.xhp\n"
+"hd_id3156027\n"
+"1\n"
"help.text"
-msgid "<emph>Expression:</emph> Any expression that you want to evaluate. If the expression evaluates to <emph>True</emph>, the function returns the result of ExpressionTrue, otherwise it returns the result of ExpressionFalse."
-msgstr "<emph>Expression:</emph> израз – условие. Ако стойността му е <emph>True</emph>, функцията връща резултата от изчисляването на ExpressionTrue, в противен случай – от това на ExpressionFalse."
+msgid "<link href=\"text/sbasic/shared/03130000.xhp\" name=\"Other Commands\">Other Commands</link>"
+msgstr "<link href=\"text/sbasic/shared/03130000.xhp\" name=\"Други команди\">Други команди</link>"
-#: 03090103.xhp
+#: 03130000.xhp
msgctxt ""
-"03090103.xhp\n"
-"par_id3150870\n"
-"7\n"
+"03130000.xhp\n"
+"par_id3153312\n"
+"2\n"
"help.text"
-msgid "<emph>ExpressionTrue, ExpressionFalse:</emph> Any expression, one of which will be returned as the function result, depending on the logical evaluation."
-msgstr "<emph>ExpressionTrue, ExpressionFalse:</emph> изрази, една от чиито стойности ще бъде върната според резултата от оценката на логическото условие."
+msgid "This is a list of the functions and the statements that are not included in the other categories."
+msgstr "Това е списък на функциите и операторите, които не са включени в останалите категории."
-#: 03090410.xhp
+#: 03130100.xhp
msgctxt ""
-"03090410.xhp\n"
+"03130100.xhp\n"
"tit\n"
"help.text"
-msgid "Switch Function [Runtime]"
-msgstr "Функция Switch [динамична]"
+msgid "Beep Statement [Runtime]"
+msgstr "Оператор Beep [динамичен]"
-#: 03090410.xhp
+#: 03130100.xhp
msgctxt ""
-"03090410.xhp\n"
-"bm_id3148554\n"
+"03130100.xhp\n"
+"bm_id3143284\n"
"help.text"
-msgid "<bookmark_value>Switch function</bookmark_value>"
-msgstr "<bookmark_value>Switch, функция</bookmark_value>"
+msgid "<bookmark_value>Beep statement</bookmark_value>"
+msgstr "<bookmark_value>Beep, оператор</bookmark_value>"
-#: 03090410.xhp
+#: 03130100.xhp
msgctxt ""
-"03090410.xhp\n"
-"hd_id3148554\n"
+"03130100.xhp\n"
+"hd_id3143284\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090410.xhp\" name=\"Switch Function [Runtime]\">Switch Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090410.xhp\" name=\"Функция Switch [динамична]\">Функция Switch [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03130100.xhp\" name=\"Beep Statement [Runtime]\">Beep Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03130100.xhp\" name=\"Оператор Beep [динамичен]\">Оператор Beep [динамичен]</link>"
-#: 03090410.xhp
+#: 03130100.xhp
msgctxt ""
-"03090410.xhp\n"
-"par_id3148522\n"
+"03130100.xhp\n"
+"par_id3159201\n"
"2\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 "Оценява списък от аргументи, състоящ се от изрази, последвани от стойности. Функцията Switch връща стойността, свързана със израза, който има стойност True."
+msgid "Plays a tone through the computer's speaker. The tone is system-dependent and you cannot modify its volume or pitch."
+msgstr "Изсвирва тон през високоговорителя на компютъра. Звукът зависи от системата и не можете да променяте силата или височината му."
-#: 03090410.xhp
+#: 03130100.xhp
msgctxt ""
-"03090410.xhp\n"
-"hd_id3154863\n"
+"03130100.xhp\n"
+"hd_id3153990\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03090410.xhp
+#: 03130100.xhp
msgctxt ""
-"03090410.xhp\n"
-"par_id3155934\n"
+"03130100.xhp\n"
+"par_id3147291\n"
"4\n"
"help.text"
-msgid "Switch (Expression1, Value1[, Expression2, Value2[..., Expression_n, Value_n]])"
-msgstr "Switch (Expression1, Value1[, Expression2, Value2[..., Expression_n, Value_n]])"
+msgid "Beep"
+msgstr "Beep"
-#: 03090410.xhp
+#: 03130100.xhp
msgctxt ""
-"03090410.xhp\n"
-"hd_id3149119\n"
+"03130100.xhp\n"
+"hd_id3148538\n"
"5\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
-
-#: 03090410.xhp
-msgctxt ""
-"03090410.xhp\n"
-"par_id3153894\n"
-"6\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 "Функцията <emph>Switch</emph> оценява всички параметри отляво надясно и връща стойността, свързана с първия израз, който има стойност True. Ако не са дадени израз и стойност като двойка, възниква грешка при изпълнение."
-
-#: 03090410.xhp
-msgctxt ""
-"03090410.xhp\n"
-"par_id3153990\n"
-"7\n"
-"help.text"
-msgid "<emph>Expression:</emph> The expression that you want to evaluate."
-msgstr "<emph>Expression:</emph> изразът, който трябва да бъде изчислен."
-
-#: 03090410.xhp
-msgctxt ""
-"03090410.xhp\n"
-"par_id3153394\n"
-"8\n"
-"help.text"
-msgid "<emph>Value:</emph> The value that you want to return if the expression is True."
-msgstr "<emph>Value:</emph> стойността, която трябва да се върне, ако изразът има стойност True."
-
-#: 03090410.xhp
-msgctxt ""
-"03090410.xhp\n"
-"par_id3153346\n"
-"9\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 "В следващия пример функцията <emph>Switch</emph> приписва правилния пол на името, което е подадено:"
-
-#: 03090410.xhp
-msgctxt ""
-"03090410.xhp\n"
-"hd_id3159157\n"
-"10\n"
-"help.text"
msgid "Example:"
msgstr "Пример:"
-#: 03090410.xhp
-msgctxt ""
-"03090410.xhp\n"
-"par_id3149579\n"
-"13\n"
-"help.text"
-msgid "sGender = GetGenderIndex( \"John\" )"
-msgstr "sGender = GetGenderIndex( \"Иван\" )"
-
-#: 03090410.xhp
+#: 03130500.xhp
msgctxt ""
-"03090410.xhp\n"
-"par_id3153361\n"
-"18\n"
+"03130500.xhp\n"
+"tit\n"
"help.text"
-msgid "GetGenderIndex = Switch(sName = \"Jane\", \"female\", sName = \"John\", \"male\")"
-msgstr "GetGenderIndex = Switch(sName = \"Петя\", \"жена\", sName = \"Иван\", \"мъж\")"
+msgid "Shell Function [Runtime]"
+msgstr "Функция Shell [динамична]"
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"tit\n"
+"03130500.xhp\n"
+"bm_id3150040\n"
"help.text"
-msgid "QBColor Function [Runtime]"
-msgstr "Функция QBColor [динамична]"
+msgid "<bookmark_value>Shell function</bookmark_value>"
+msgstr "<bookmark_value>Shell, функция</bookmark_value>"
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"hd_id3149670\n"
+"03130500.xhp\n"
+"hd_id3150040\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03010304.xhp\" name=\"QBColor Function [Runtime]\">QBColor Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03010304.xhp\" name=\"Функция QBColor [динамична]\">Функция QBColor [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03130500.xhp\" name=\"Shell Function [Runtime]\">Shell Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03130500.xhp\" name=\"Функция Shell [динамична]\">Функция Shell [динамична]</link>"
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"par_id3150359\n"
+"03130500.xhp\n"
+"par_id3153394\n"
"2\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 "Връща цветовия код <link href=\"text/sbasic/shared/03010305.xhp\" name=\"RGB\">RGB</link> на цвят, зададен като цветова стойност от по-стара система за програмиране, базирана на MS-DOS."
-
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"hd_id3154140\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
+msgid "Starts another application and defines the respective window style, if necessary."
+msgstr "Стартира друго приложение и ако е необходимо определя съответния стил на прозорец."
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"par_id3151042\n"
+"03130500.xhp\n"
+"hd_id3153345\n"
"4\n"
"help.text"
-msgid "QBColor (ColorNumber As Integer)"
-msgstr "QBColor (ColorNumber As Integer)"
+msgid "Syntax"
+msgstr "Синтаксис"
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"hd_id3145172\n"
+"03130500.xhp\n"
+"par_id3147576\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Връщана стойност:"
+msgid "Shell (Pathname As String[, Windowstyle As Integer][, Param As String][, bSync])"
+msgstr "Shell (Pathname As String[, Windowstyle As Integer][, Param As String][, bSync])"
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"par_id3154685\n"
+"03130500.xhp\n"
+"hd_id3149235\n"
"6\n"
"help.text"
-msgid "Long"
-msgstr "Long"
+msgid "Parameter"
+msgstr "Параметър"
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"hd_id3156560\n"
+"03130500.xhp\n"
+"hd_id3154306\n"
+"23\n"
+"help.text"
+msgid "Pathname"
+msgstr "Pathname"
+
+#: 03130500.xhp
+msgctxt ""
+"03130500.xhp\n"
+"par_id3155419\n"
"7\n"
"help.text"
-msgid "Parameter:"
-msgstr "Параметър:"
+msgid "Complete path and program name of the program that you want to start."
+msgstr "Пълен път и име на програмата, която да бъде стартирана."
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"par_id3161832\n"
-"8\n"
+"03130500.xhp\n"
+"hd_id3150771\n"
+"24\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 "<emph>ColorNumber</emph>: целочислен израз, който задава цветовата стойност, подадена от по-стара система за програмиране, базирана на MS-DOS."
+msgid "Windowstyle"
+msgstr "Windowstyle"
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"par_id3147318\n"
-"9\n"
+"03130500.xhp\n"
+"par_id3145609\n"
+"8\n"
"help.text"
-msgid "<emph>ColorNumber</emph> can be assigned the following values:"
-msgstr "<emph>ColorNumber</emph> може да има следните стойности:"
+msgid "Optional integer expression that specifies the style of the window that the program is executed in. The following values are possible:"
+msgstr "Незадължителен целочислен параметър – стил на прозореца, в който се изпълнява програмата. Възможни са следните стойности:"
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"par_id3152576\n"
-"10\n"
+"03130500.xhp\n"
+"par_id3148663\n"
+"25\n"
"help.text"
-msgid "0 : Black"
-msgstr "0: черно"
+msgid "0"
+msgstr ""
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"par_id3146975\n"
-"11\n"
+"03130500.xhp\n"
+"par_id3153360\n"
+"10\n"
"help.text"
-msgid "1 : Blue"
-msgstr "1: синьо"
+msgid "The focus is on the hidden program window."
+msgstr "Фокусът е върху скрития прозорец на програмата."
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"par_id3151116\n"
-"12\n"
+"03130500.xhp\n"
+"par_id3154123\n"
+"26\n"
"help.text"
-msgid "2 : Green"
-msgstr "2: зелено"
+msgid "1"
+msgstr ""
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"par_id3155412\n"
-"13\n"
+"03130500.xhp\n"
+"par_id3144760\n"
+"11\n"
"help.text"
-msgid "3 : Cyan"
-msgstr "3: синьозелено"
+msgid "The focus is on the program window in standard size."
+msgstr "Фокусът е върху прозорец на програмата с нормален размер."
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"par_id3155306\n"
-"14\n"
+"03130500.xhp\n"
+"par_id3156422\n"
+"27\n"
"help.text"
-msgid "4 : Red"
-msgstr "4: червено"
+msgid "2"
+msgstr ""
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"par_id3153364\n"
-"15\n"
+"03130500.xhp\n"
+"par_id3148451\n"
+"12\n"
"help.text"
-msgid "5 : Magenta"
-msgstr "5: пурпурно"
+msgid "The focus is on the minimized program window."
+msgstr "Фокусът е върху минимизиран прозорец на програмата."
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"par_id3146119\n"
-"16\n"
+"03130500.xhp\n"
+"par_id3149561\n"
+"28\n"
"help.text"
-msgid "6 : Yellow"
-msgstr "6: жълто"
+msgid "3"
+msgstr ""
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"par_id3154730\n"
-"17\n"
+"03130500.xhp\n"
+"par_id3146921\n"
+"13\n"
"help.text"
-msgid "7 : White"
-msgstr "7: бяло"
+msgid "focus is on the maximized program window."
+msgstr "Докусът е върху максимизирания прозорец на програмата."
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"par_id3153877\n"
-"18\n"
+"03130500.xhp\n"
+"par_id3149481\n"
+"29\n"
"help.text"
-msgid "8 : Gray"
-msgstr "8: сиво"
+msgid "4"
+msgstr ""
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"par_id3147124\n"
-"19\n"
+"03130500.xhp\n"
+"par_id3155854\n"
+"14\n"
"help.text"
-msgid "9 : Light Blue"
-msgstr "9: светло синьо"
+msgid "Standard size program window, without focus."
+msgstr "Прозорец на програмата със стандартен размер, без фокус."
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"par_id3145646\n"
-"20\n"
+"03130500.xhp\n"
+"par_id3145271\n"
+"30\n"
"help.text"
-msgid "10 : Light Green"
-msgstr "10: светло зелено"
+msgid "6"
+msgstr ""
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"par_id3149958\n"
-"21\n"
+"03130500.xhp\n"
+"par_id3152938\n"
+"15\n"
"help.text"
-msgid "11 : Light Cyan"
-msgstr "11: светло синьозелено"
+msgid "Minimized program window, focus remains on the active window."
+msgstr "Минимизиран прозорец на програмата, фокусът остава в текущия прозорец."
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"par_id3154943\n"
-"22\n"
+"03130500.xhp\n"
+"par_id3146119\n"
+"31\n"
"help.text"
-msgid "12 : Light Red"
-msgstr "12: светло червено"
+msgid "10"
+msgstr "10"
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"par_id3150715\n"
-"23\n"
+"03130500.xhp\n"
+"par_id3151112\n"
+"16\n"
"help.text"
-msgid "13 : Light Magenta"
-msgstr "13: светло пурпурно"
+msgid "Full-screen display."
+msgstr "Показване върху целия екран."
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"par_id3146970\n"
-"24\n"
+"03130500.xhp\n"
+"hd_id3150419\n"
+"33\n"
"help.text"
-msgid "14 : Light Yellow"
-msgstr "14: светло жълто"
+msgid "Param"
+msgstr "Param"
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"par_id3150750\n"
-"25\n"
+"03130500.xhp\n"
+"par_id3149412\n"
+"17\n"
"help.text"
-msgid "15 : Bright White"
-msgstr "15: ярко бяло"
+msgid "Any string expression that specifies the command line that want to pass."
+msgstr "Израз със стойност низ, съдържащ командния ред за програмата."
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"par_id3146914\n"
-"26\n"
+"03130500.xhp\n"
+"hd_id3148456\n"
+"32\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 "Тази функция служи само за преобразуване от по-стари приложени на BASIC, базирани на MS-DOS, които използват горните цветови кодове. Функцията връща стойност от тип long integer, представяща цвета, който да бъде използван в развойната среда на $[officename]."
+msgid "bSync"
+msgstr "bSync"
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"hd_id3148406\n"
-"27\n"
+"03130500.xhp\n"
+"par_id3154096\n"
+"18\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
+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 "Ако тази стойност е <emph>True</emph>, командата<emph>Shell</emph> и всички задачи на $[officename] ще чакат завършването на процеса. Ако стойността е <emph>False</emph>, управлението се връща директно. Подразбираната стойност е <emph>False</emph>."
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"par_id3149566\n"
-"33\n"
+"03130500.xhp\n"
+"hd_id3154270\n"
+"19\n"
"help.text"
-msgid "MsgBox stext,0,\"Color \" & iColor"
-msgstr "MsgBox stext, 0, \"Цвят \" & iColor"
+msgid "Example"
+msgstr "Пример"
-#: 03030105.xhp
+#: 03130600.xhp
msgctxt ""
-"03030105.xhp\n"
+"03130600.xhp\n"
"tit\n"
"help.text"
-msgid "WeekDay Function [Runtime]"
-msgstr "Функция WeekDay [динамична]"
+msgid "Wait Statement [Runtime]"
+msgstr "Оператор Wait [динамичен]"
-#: 03030105.xhp
+#: 03130600.xhp
msgctxt ""
-"03030105.xhp\n"
-"bm_id3153127\n"
+"03130600.xhp\n"
+"bm_id3154136\n"
"help.text"
-msgid "<bookmark_value>WeekDay function</bookmark_value>"
-msgstr "<bookmark_value>WeekDay, функция</bookmark_value>"
+msgid "<bookmark_value>Wait statement</bookmark_value>"
+msgstr "<bookmark_value>Wait, оператор</bookmark_value>"
-#: 03030105.xhp
+#: 03130600.xhp
msgctxt ""
-"03030105.xhp\n"
-"hd_id3153127\n"
+"03130600.xhp\n"
+"hd_id3154136\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03030105.xhp\" name=\"WeekDay Function [Runtime]\">WeekDay Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03030105.xhp\" name=\"Функция WeekDay [динамична]\">Функция WeekDay [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03130600.xhp\" name=\"Wait Statement [Runtime]\">Wait Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03130600.xhp\" name=\"Оператор Wait [динамичен]\">Оператор Wait [динамичен]</link>"
-#: 03030105.xhp
+#: 03130600.xhp
msgctxt ""
-"03030105.xhp\n"
-"par_id3146795\n"
+"03130600.xhp\n"
+"par_id3149236\n"
"2\n"
"help.text"
-msgid "Returns the number corresponding to the weekday represented by a serial date number that is generated by the DateSerial or the DateValue function."
-msgstr "Приема серийно число, генерирано от функцията DateSerial или DateValue и връща число, съответстващо на деня от седмицата."
+msgid "Interrupts the program execution for the amount of time that you specify in milliseconds."
+msgstr "Прекъсва изпълнението на програмата за времето, зададено от вас в милисекунди."
-#: 03030105.xhp
+#: 03130600.xhp
msgctxt ""
-"03030105.xhp\n"
-"hd_id3145068\n"
+"03130600.xhp\n"
+"hd_id3143229\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03030105.xhp
+#: 03130600.xhp
msgctxt ""
-"03030105.xhp\n"
-"par_id3149655\n"
+"03130600.xhp\n"
+"par_id3150669\n"
"4\n"
"help.text"
-msgid "WeekDay (Number)"
-msgstr "WeekDay (Number)"
+msgid "Wait millisec"
+msgstr "Wait millisec"
-#: 03030105.xhp
+#: 03130600.xhp
msgctxt ""
-"03030105.xhp\n"
-"hd_id3148799\n"
+"03130600.xhp\n"
+"hd_id3148943\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Връщана стойност:"
+msgid "Parameters:"
+msgstr "Параметри:"
-#: 03030105.xhp
+#: 03130600.xhp
msgctxt ""
-"03030105.xhp\n"
-"par_id3154125\n"
+"03130600.xhp\n"
+"par_id3154924\n"
"6\n"
"help.text"
-msgid "Integer"
-msgstr "Integer"
+msgid "<emph>millisec:</emph> Numeric expression that contains the amount of time (in milliseconds) to wait before the program is executed."
+msgstr "<emph>millisec:</emph> числов израз – брой милисекунди за изчакване преди продължаване на изпълнението на програмата."
-#: 03030105.xhp
+#: 03130600.xhp
msgctxt ""
-"03030105.xhp\n"
-"hd_id3150768\n"
+"03130600.xhp\n"
+"hd_id3150541\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
-
-#: 03030105.xhp
-msgctxt ""
-"03030105.xhp\n"
-"par_id3151042\n"
-"8\n"
-"help.text"
-msgid "<emph>Number:</emph> Integer expression that contains the serial date number that is used to calculate the day of the week (1-7)."
-msgstr "<emph>Number:</emph> числов израз – серийно число на дата, за която искате да бъде изчислен денят от седмицата (1-7)."
+msgid "Example:"
+msgstr "Пример:"
-#: 03030105.xhp
+#: 03130600.xhp
msgctxt ""
-"03030105.xhp\n"
-"par_id3159254\n"
-"9\n"
+"03130600.xhp\n"
+"par_id3156214\n"
+"13\n"
"help.text"
-msgid "The following example determines the day of the week using the WeekDay function when you enter a date."
-msgstr "Следващият пример определя деня от седмицата чрез функцията WeekDay според въведена от вас дата."
+msgid "MsgBox \"\" & lTick & \" Ticks\" ,0,\"The pause lasted\""
+msgstr "MsgBox \"\" & lTick & \" мс\", 0, \"Паузата трая\""
-#: 03030105.xhp
+#: 03130700.xhp
msgctxt ""
-"03030105.xhp\n"
-"hd_id3148616\n"
-"10\n"
+"03130700.xhp\n"
+"tit\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "GetSystemTicks Function [Runtime]"
+msgstr "Функция GetSystemTicks [динамична]"
-#: 03030105.xhp
+#: 03130700.xhp
msgctxt ""
-"03030105.xhp\n"
-"par_id3148576\n"
-"13\n"
+"03130700.xhp\n"
+"bm_id3147143\n"
"help.text"
-msgid "' Return And display the day of the week"
-msgstr "' Връща и показва деня от седмицата"
+msgid "<bookmark_value>GetSystemTicks function</bookmark_value>"
+msgstr "<bookmark_value>GetSystemTicks, функция</bookmark_value>"
-#: 03030105.xhp
+#: 03130700.xhp
msgctxt ""
-"03030105.xhp\n"
-"par_id3151117\n"
-"16\n"
+"03130700.xhp\n"
+"hd_id3147143\n"
+"1\n"
"help.text"
-msgid "sDay=\"Sunday\""
-msgstr "sDay=\"Неделя\""
+msgid "<link href=\"text/sbasic/shared/03130700.xhp\" name=\"GetSystemTicks Function [Runtime]\">GetSystemTicks Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03130700.xhp\" name=\"Функция GetSystemTicks [динамична]\">Функция GetSystemTicks [динамична]</link>"
-#: 03030105.xhp
+#: 03130700.xhp
msgctxt ""
-"03030105.xhp\n"
-"par_id3153952\n"
-"18\n"
+"03130700.xhp\n"
+"par_id3153750\n"
+"2\n"
"help.text"
-msgid "sDay=\"Monday\""
-msgstr "sDay=\"Понеделник\""
+msgid "Returns the number of system ticks provided by the operating system. You can use this function to optimize certain processes."
+msgstr "Връща броя системни тактове, докладван от операционната система. Можете да използвате тази функция, за да оптимизирате някои процеси."
-#: 03030105.xhp
+#: 03130700.xhp
msgctxt ""
-"03030105.xhp\n"
-"par_id3153157\n"
-"20\n"
+"03130700.xhp\n"
+"hd_id3153311\n"
+"3\n"
"help.text"
-msgid "sDay=\"Tuesday\""
-msgstr "sDay=\"Вторник\""
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 03030105.xhp
+#: 03130700.xhp
msgctxt ""
-"03030105.xhp\n"
-"par_id3154942\n"
-"22\n"
+"03130700.xhp\n"
+"par_id3147242\n"
+"4\n"
"help.text"
-msgid "sDay=\"Wednesday\""
-msgstr "sDay=\"Сряда\""
+msgid "GetSystemTicks()"
+msgstr "GetSystemTicks()"
-#: 03030105.xhp
+#: 03130700.xhp
msgctxt ""
-"03030105.xhp\n"
-"par_id3155416\n"
-"24\n"
+"03130700.xhp\n"
+"hd_id3149233\n"
+"5\n"
"help.text"
-msgid "sDay=\"Thursday\""
-msgstr "sDay=\"Четвъртък\""
+msgid "Return value:"
+msgstr "Връщана стойност:"
-#: 03030105.xhp
+#: 03130700.xhp
msgctxt ""
-"03030105.xhp\n"
-"par_id3154015\n"
-"26\n"
+"03130700.xhp\n"
+"par_id3149762\n"
+"6\n"
"help.text"
-msgid "sDay=\"Friday\""
-msgstr "sDay=\"Петък\""
+msgid "Long"
+msgstr "Long"
-#: 03030105.xhp
+#: 03130700.xhp
msgctxt ""
-"03030105.xhp\n"
-"par_id3153707\n"
-"28\n"
+"03130700.xhp\n"
+"hd_id3156152\n"
+"7\n"
"help.text"
-msgid "sDay=\"Saturday\""
-msgstr "sDay=\"Събота\""
+msgid "Example:"
+msgstr "Пример:"
-#: 03030105.xhp
+#: 03130700.xhp
msgctxt ""
-"03030105.xhp\n"
-"par_id3148993\n"
-"30\n"
+"03130700.xhp\n"
+"par_id3154938\n"
+"13\n"
"help.text"
-msgid "MsgBox \"\" + sDay,64,\"Today Is\""
-msgstr "MsgBox \"\" + sDay, 64, \"Днес е\""
+msgid "MsgBox \"\" & lTick & \" Ticks\" ,0,\"The pause lasted\""
+msgstr "MsgBox \"\" & lTick & \" мс\", 0, \"Паузата трая\""
#: 03130800.xhp
msgctxt ""
@@ -33793,3505 +34690,2608 @@ msgctxt ""
msgid "MsgBox \"'\" & sTemp & \"'\" ,64,\"Directory of temporary files:\""
msgstr "MsgBox \"'\" & sTemp & \"'\" , 64, \"Директория за временни файлове:\""
-#: 03020200.xhp
-msgctxt ""
-"03020200.xhp\n"
-"tit\n"
-"help.text"
-msgid "File Input/Output Functions"
-msgstr "Входно-изходни функции за файлове"
-
-#: 03020200.xhp
-msgctxt ""
-"03020200.xhp\n"
-"hd_id3150791\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03020200.xhp\" name=\"File Input/Output Functions\">File Input/Output Functions</link>"
-msgstr "<link href=\"text/sbasic/shared/03020200.xhp\" name=\"Входно-изходни функции за файлове\">Входно-изходни функции за файлове</link>"
-
-#: 03050300.xhp
+#: 03131000.xhp
msgctxt ""
-"03050300.xhp\n"
+"03131000.xhp\n"
"tit\n"
"help.text"
-msgid "Error Function [Runtime]"
-msgstr "Функция Error [динамична]"
+msgid "GetSolarVersion Function [Runtime]"
+msgstr "Функция GetSolarVersion [динамична]"
-#: 03050300.xhp
+#: 03131000.xhp
msgctxt ""
-"03050300.xhp\n"
-"bm_id3159413\n"
+"03131000.xhp\n"
+"bm_id3157898\n"
"help.text"
-msgid "<bookmark_value>Error function</bookmark_value>"
-msgstr "<bookmark_value>Error, функция</bookmark_value>"
+msgid "<bookmark_value>GetSolarVersion function</bookmark_value>"
+msgstr "<bookmark_value>GetSolarVersion, функция</bookmark_value>"
-#: 03050300.xhp
+#: 03131000.xhp
msgctxt ""
-"03050300.xhp\n"
-"hd_id3159413\n"
+"03131000.xhp\n"
+"hd_id3157898\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03050300.xhp\" name=\"Error Function [Runtime]\">Error Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03050300.xhp\" name=\"Функция Error [динамична]\">Функция Error [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03131000.xhp\" name=\"GetSolarVersion Function [Runtime]\">GetSolarVersion Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03131000.xhp\" name=\"Функция GetSolarVersion [динамична]\">Функция GetSolarVersion [динамична]</link>"
-#: 03050300.xhp
+#: 03131000.xhp
msgctxt ""
-"03050300.xhp\n"
-"par_id3148663\n"
+"03131000.xhp\n"
+"par_id3152801\n"
"2\n"
"help.text"
-msgid "Returns the error message that corresponds to a given error code."
-msgstr "Връща съобщението за грешка, съответстващо на даден код на грешка."
+msgid "Returns the internal number of the current $[officename] version."
+msgstr "Връща вътрешния номер на текущата версия на $[officename]."
-#: 03050300.xhp
+#: 03131000.xhp
msgctxt ""
-"03050300.xhp\n"
-"hd_id3153379\n"
+"03131000.xhp\n"
+"hd_id3153311\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03050300.xhp
+#: 03131000.xhp
msgctxt ""
-"03050300.xhp\n"
-"par_id3154366\n"
+"03131000.xhp\n"
+"par_id3155388\n"
"4\n"
"help.text"
-msgid "Error (Expression)"
-msgstr "Error (Expression)"
+msgid "s = GetSolarVersion"
+msgstr "s = GetSolarVersion"
-#: 03050300.xhp
+#: 03131000.xhp
msgctxt ""
-"03050300.xhp\n"
-"hd_id3145173\n"
+"03131000.xhp\n"
+"hd_id3149514\n"
"5\n"
"help.text"
msgid "Return value:"
msgstr "Връщана стойност:"
-#: 03050300.xhp
+#: 03131000.xhp
msgctxt ""
-"03050300.xhp\n"
-"par_id3154125\n"
+"03131000.xhp\n"
+"par_id3148685\n"
"6\n"
"help.text"
msgid "String"
msgstr "String"
-#: 03050300.xhp
-msgctxt ""
-"03050300.xhp\n"
-"hd_id3150869\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
-
-#: 03050300.xhp
-msgctxt ""
-"03050300.xhp\n"
-"par_id3153193\n"
-"8\n"
-"help.text"
-msgid "<emph>Expression:</emph> Any numeric expression that contains the error code of the error message that you want to return."
-msgstr "<emph>Expression:</emph> числов израз със стойност кода на грешката, чието съобщение искате да получите."
-
-#: 03050300.xhp
-msgctxt ""
-"03050300.xhp\n"
-"par_id3159254\n"
-"9\n"
-"help.text"
-msgid "If no parameters are passed, the Error function returns the error message of the most recent error that occurred during program execution."
-msgstr "Ако не е подаден параметър, функцията Error връща съобщението за грешка на най-скоро възникналата грешка при изпълнението на програмата."
-
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"tit\n"
-"help.text"
-msgid "RmDir Statement [Runtime]"
-msgstr "Оператор RmDir [динамичен]"
-
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"bm_id3148947\n"
-"help.text"
-msgid "<bookmark_value>RmDir statement</bookmark_value>"
-msgstr "<bookmark_value>RmDir, оператор</bookmark_value>"
-
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3148947\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03020413.xhp\" name=\"RmDir Statement [Runtime]\">RmDir Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03020413.xhp\" name=\"Оператор RmDir [динамичен]\">Оператор RmDir [динамичен]</link>"
-
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"par_id3149457\n"
-"2\n"
-"help.text"
-msgid "Deletes an existing directory from a data medium."
-msgstr "Изтрива съществуваща директория от носител на данни."
-
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3153361\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
-
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"par_id3154367\n"
-"4\n"
-"help.text"
-msgid "RmDir Text As String"
-msgstr "RmDir Text As String"
-
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3156281\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
-
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"par_id3151042\n"
-"6\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 "<emph>Text:</emph> низов израз – име и път на изтриваната директория. Може да е зададен във вид на <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL\">URL</link>."
-
-#: 03020413.xhp
+#: 03131000.xhp
msgctxt ""
-"03020413.xhp\n"
-"par_id3153192\n"
+"03131000.xhp\n"
+"hd_id3143270\n"
"7\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 "Ако не е зададен път, оперторът <emph>RmDir</emph> търси директорията за изтриване в текущия път. Ако не бъде намерена там, се показва съобщение за грешка."
+msgid "Example:"
+msgstr "Пример:"
-#: 03020413.xhp
+#: 03131000.xhp
msgctxt ""
-"03020413.xhp\n"
-"hd_id3145271\n"
-"8\n"
+"03131000.xhp\n"
+"par_id3148947\n"
+"11\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "MsgBox sSep,64,\"Version number of the solar technology\""
+msgstr "MsgBox sSep, 64, \"Номер на версия на технологията на Sun\""
-#: 03020302.xhp
+#: 03131300.xhp
msgctxt ""
-"03020302.xhp\n"
+"03131300.xhp\n"
"tit\n"
"help.text"
-msgid "Loc Function [Runtime]"
-msgstr "Функция Loc [динамична]"
+msgid "TwipsPerPixelX Function [Runtime]"
+msgstr "Функция TwipsPerPixelX [динамична]"
-#: 03020302.xhp
+#: 03131300.xhp
msgctxt ""
-"03020302.xhp\n"
-"bm_id3148663\n"
+"03131300.xhp\n"
+"bm_id3153539\n"
"help.text"
-msgid "<bookmark_value>Loc function</bookmark_value>"
-msgstr "<bookmark_value>Loc, функция</bookmark_value>"
+msgid "<bookmark_value>TwipsPerPixelX function</bookmark_value>"
+msgstr "<bookmark_value>TwipsPerPixelX, функция</bookmark_value>"
-#: 03020302.xhp
+#: 03131300.xhp
msgctxt ""
-"03020302.xhp\n"
-"hd_id3148663\n"
+"03131300.xhp\n"
+"hd_id3153539\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020302.xhp\" name=\"Loc Function [Runtime]\">Loc Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03020302.xhp\" name=\"Функция Loc [динамична]\">Функция Loc [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03131300.xhp\" name=\"TwipsPerPixelX Function [Runtime]\">TwipsPerPixelX Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03131300.xhp\" name=\"Функция TwipsPerPixelX [динамична]\">Функция TwipsPerPixelX [динамична]</link>"
-#: 03020302.xhp
+#: 03131300.xhp
msgctxt ""
-"03020302.xhp\n"
-"par_id3154138\n"
+"03131300.xhp\n"
+"par_id3153394\n"
"2\n"
"help.text"
-msgid "Returns the current position in an open file."
-msgstr "Връща текущата позиция в отворен файл."
+msgid "Returns the number of twips that represent the width of a pixel."
+msgstr "Връща броя туипове, съответстващ на ширината на един пиксел."
-#: 03020302.xhp
+#: 03131300.xhp
msgctxt ""
-"03020302.xhp\n"
-"hd_id3156422\n"
+"03131300.xhp\n"
+"hd_id3153527\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03020302.xhp
+#: 03131300.xhp
msgctxt ""
-"03020302.xhp\n"
-"par_id3150768\n"
+"03131300.xhp\n"
+"par_id3151110\n"
"4\n"
"help.text"
-msgid "Loc(FileNumber)"
-msgstr "Loc(FileNumber)"
+msgid "n = TwipsPerPixelX"
+msgstr "n = TwipsPerPixelX"
-#: 03020302.xhp
+#: 03131300.xhp
msgctxt ""
-"03020302.xhp\n"
-"hd_id3150440\n"
+"03131300.xhp\n"
+"hd_id3150669\n"
"5\n"
"help.text"
msgid "Return value:"
msgstr "Връщана стойност:"
-#: 03020302.xhp
+#: 03131300.xhp
msgctxt ""
-"03020302.xhp\n"
-"par_id3152578\n"
+"03131300.xhp\n"
+"par_id3150503\n"
"6\n"
"help.text"
-msgid "Long"
-msgstr "Long"
+msgid "Integer"
+msgstr "Integer"
-#: 03020302.xhp
+#: 03131300.xhp
msgctxt ""
-"03020302.xhp\n"
-"hd_id3152462\n"
+"03131300.xhp\n"
+"hd_id3159176\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
-
-#: 03020302.xhp
-msgctxt ""
-"03020302.xhp\n"
-"par_id3153363\n"
-"8\n"
-"help.text"
-msgid "<emph>FileNumber:</emph> Any numeric expression that contains the file number that is set by the Open statement for the respective file."
-msgstr "<emph>FileNumber:</emph> целочислен израз – номер на файл, отворен с оператора Open."
-
-#: 03020302.xhp
-msgctxt ""
-"03020302.xhp\n"
-"par_id3154320\n"
-"9\n"
-"help.text"
-msgid "If the Loc function is used for an open random access file, it returns the number of the last record that was last read or written."
-msgstr "Функцията Loc се използва за отворен файл с произволен достъп и връща номера на последния запис, който е бил четен или записван."
-
-#: 03020302.xhp
-msgctxt ""
-"03020302.xhp\n"
-"par_id3151115\n"
-"10\n"
-"help.text"
-msgid "For a sequential file, the Loc function returns the position in a file divided by 128. For binary files, the position of the last read or written byte is returned."
-msgstr "Във файл с последователен достъп функцията Loc връща позицията във файла, разделена на 128. За двоични файлове се връща позицията на последния прочетен или записан байт."
-
-#: 03101120.xhp
-msgctxt ""
-"03101120.xhp\n"
-"tit\n"
-"help.text"
-msgid "DefErr Statement [Runtime]"
-msgstr "Оператор DefErr [динамичен]"
-
-#: 03101120.xhp
-msgctxt ""
-"03101120.xhp\n"
-"bm_id8177739\n"
-"help.text"
-msgid "<bookmark_value>DefErr statement</bookmark_value>"
-msgstr "<bookmark_value>DefErr, оператор</bookmark_value>"
-
-#: 03101120.xhp
-msgctxt ""
-"03101120.xhp\n"
-"par_idN1057D\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03101120.xhp\">DefErr Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03101120.xhp\">Оператор DefErr [динамичен]</link>"
-
-#: 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 "Операторът DefErr установява подразбиран тип данни според диапазон от букви в случай, че не е зададена ключова дума или знак за деклариране на тип."
-
-#: 03101120.xhp
-msgctxt ""
-"03101120.xhp\n"
-"par_idN10590\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
-
-#: 03101120.xhp
-msgctxt ""
-"03101120.xhp\n"
-"par_idN10594\n"
-"help.text"
-msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
-msgstr "Defxxx Characterrange1[, Characterrange2[,...]]"
-
-#: 03101120.xhp
-msgctxt ""
-"03101120.xhp\n"
-"par_idN10597\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
-
-#: 03101120.xhp
-msgctxt ""
-"03101120.xhp\n"
-"par_idN1059B\n"
-"help.text"
-msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set a default data type for."
-msgstr "<emph>Characterrange:</emph> букви, определящи диапазона от променливи, за които искате да зададете подразбиран тип данни."
-
-#: 03101120.xhp
-msgctxt ""
-"03101120.xhp\n"
-"par_idN105A2\n"
-"help.text"
-msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
-msgstr "<emph>xxx:</emph> ключова дума, дефинираща подразбирания тип данни:"
-
-#: 03101120.xhp
-msgctxt ""
-"03101120.xhp\n"
-"par_idN105A9\n"
-"help.text"
-msgid "<emph>Keyword:</emph> Default variable type"
-msgstr "<emph>Ключова дума:</emph> Подразбиран тип данни"
-
-#: 03101120.xhp
-msgctxt ""
-"03101120.xhp\n"
-"par_idN105B0\n"
-"help.text"
-msgid "<emph>DefErr:</emph> Error"
-msgstr "<emph>DefErr:</emph> Error"
-
-#: 03101120.xhp
-msgctxt ""
-"03101120.xhp\n"
-"par_idN105B7\n"
-"help.text"
msgid "Example:"
msgstr "Пример:"
-#: 03101120.xhp
-msgctxt ""
-"03101120.xhp\n"
-"par_idN105BB\n"
-"help.text"
-msgid "' Prefix definitions for variable types:"
-msgstr "' Дефиниране с префикс за променливи от даден тип:"
-
-#: 03101120.xhp
-msgctxt ""
-"03101120.xhp\n"
-"par_idN105D9\n"
-"help.text"
-msgid "eErr=Error ' eErr is an implicit error variable"
-msgstr "eErr = Error ' eErr е променлива с неявен тип Error"
-
-#: 03060300.xhp
-msgctxt ""
-"03060300.xhp\n"
-"tit\n"
-"help.text"
-msgid "Imp-Operator [Runtime]"
-msgstr "Операция Imp [динамична]"
-
-#: 03060300.xhp
-msgctxt ""
-"03060300.xhp\n"
-"bm_id3156024\n"
-"help.text"
-msgid "<bookmark_value>Imp operator (logical)</bookmark_value>"
-msgstr "<bookmark_value>Imp, логическа операция</bookmark_value>"
-
-#: 03060300.xhp
-msgctxt ""
-"03060300.xhp\n"
-"hd_id3156024\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03060300.xhp\" name=\"Imp-Operator [Runtime]\">Imp Operator [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03060300.xhp\" name=\"Операция Imp [динамична]\">Операция Imp [динамична]</link>"
-
-#: 03060300.xhp
-msgctxt ""
-"03060300.xhp\n"
-"par_id3148947\n"
-"2\n"
-"help.text"
-msgid "Performs a logical implication on two expressions."
-msgstr "Изчислява логическа импликация на две стойности."
-
-#: 03060300.xhp
-msgctxt ""
-"03060300.xhp\n"
-"hd_id3148664\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
-
-#: 03060300.xhp
-msgctxt ""
-"03060300.xhp\n"
-"par_id3149656\n"
-"4\n"
-"help.text"
-msgid "Result = Expression1 Imp Expression2"
-msgstr "Result = Expression1 Imp Expression2"
-
-#: 03060300.xhp
-msgctxt ""
-"03060300.xhp\n"
-"hd_id3151212\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
-
-#: 03060300.xhp
-msgctxt ""
-"03060300.xhp\n"
-"par_id3154910\n"
-"6\n"
-"help.text"
-msgid "<emph>Result:</emph> Any numeric variable that contains the result of the implication."
-msgstr "<emph>Result:</emph> числова променлива, в която да се запази резултатът от импликацията."
-
-#: 03060300.xhp
-msgctxt ""
-"03060300.xhp\n"
-"par_id3156281\n"
-"7\n"
-"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any expressions that you want to evaluate with the Imp operator."
-msgstr "<emph>Expression1, Expression2:</emph> изразите, чиито стойности искате да комбинирате чрез импликация."
-
-#: 03060300.xhp
-msgctxt ""
-"03060300.xhp\n"
-"par_id3150440\n"
-"8\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 "Ако използвате оператора Imp с булеви изрази, резултатът е False само ако първият израз има стойност True, а вторият – False."
-
-#: 03060300.xhp
+#: 03131300.xhp
msgctxt ""
-"03060300.xhp\n"
-"par_id3163710\n"
+"03131300.xhp\n"
+"par_id3153061\n"
"9\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 "Ако използвате операцията Imp бит по бит, битовете в резултата се нулират само ако съответният им бит е единица в първата стойност и нула във втората."
-
-#: 03060300.xhp
-msgctxt ""
-"03060300.xhp\n"
-"hd_id3147318\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Пример:"
-
-#: 03060300.xhp
-msgctxt ""
-"03060300.xhp\n"
-"par_id3145750\n"
-"15\n"
-"help.text"
-msgid "vOut = A > B Imp B > C ' returns -1"
-msgstr "vOut = A > B Imp B > C ' връща -1"
-
-#: 03060300.xhp
-msgctxt ""
-"03060300.xhp\n"
-"par_id3156441\n"
-"16\n"
-"help.text"
-msgid "vOut = B > A Imp B > C ' returns -1"
-msgstr "vOut = B > A Imp B > C ' връща -1"
-
-#: 03060300.xhp
-msgctxt ""
-"03060300.xhp\n"
-"par_id3152596\n"
-"17\n"
-"help.text"
-msgid "vOut = A > B Imp B > D ' returns 0"
-msgstr "vOut = A > B Imp B > D ' връща 0"
-
-#: 03060300.xhp
-msgctxt ""
-"03060300.xhp\n"
-"par_id3154942\n"
-"18\n"
-"help.text"
-msgid "vOut = (B > D Imp B > A) ' returns -1"
-msgstr "vOut = (B > D Imp B > A) ' връща -1"
-
-#: 03060300.xhp
-msgctxt ""
-"03060300.xhp\n"
-"par_id3154492\n"
-"19\n"
-"help.text"
-msgid "vOut = B Imp A ' returns -1"
-msgstr "vOut = B Imp A ' връща -1"
-
-#: 03100070.xhp
-msgctxt ""
-"03100070.xhp\n"
-"tit\n"
-"help.text"
-msgid "CVar Function [Runtime]"
-msgstr "Функция CVar [динамична]"
-
-#: 03100070.xhp
-msgctxt ""
-"03100070.xhp\n"
-"bm_id2338633\n"
-"help.text"
-msgid "<bookmark_value>CVar function</bookmark_value>"
-msgstr "<bookmark_value>CVar, функция</bookmark_value>"
-
-#: 03100070.xhp
-msgctxt ""
-"03100070.xhp\n"
-"par_idN1054B\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03100070.xhp\">CVar Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03100070.xhp\">Функция CVar [динамична]</link>"
-
-#: 03100070.xhp
-msgctxt ""
-"03100070.xhp\n"
-"par_idN1055B\n"
-"help.text"
-msgid "Converts a string expression or numeric expression to a variant expression."
-msgstr "Преобразува низ или число към стойност от тип Variant."
-
-#: 03100070.xhp
-msgctxt ""
-"03100070.xhp\n"
-"par_idN1055E\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
-
-#: 03100070.xhp
-msgctxt ""
-"03100070.xhp\n"
-"par_idN10562\n"
-"help.text"
-msgid "CVar(Expression)"
-msgstr "CVar(Expression)"
-
-#: 03100070.xhp
-msgctxt ""
-"03100070.xhp\n"
-"par_idN10565\n"
-"help.text"
-msgid "Return value:"
-msgstr "Връщана стойност:"
-
-#: 03100070.xhp
-msgctxt ""
-"03100070.xhp\n"
-"par_idN10569\n"
-"help.text"
-msgid "Variant."
-msgstr "Variant"
-
-#: 03100070.xhp
-msgctxt ""
-"03100070.xhp\n"
-"par_idN1056C\n"
-"help.text"
-msgid "Parameter:"
-msgstr "Параметър:"
-
-#: 03100070.xhp
-msgctxt ""
-"03100070.xhp\n"
-"par_idN10570\n"
-"help.text"
-msgid "Expression: Any string or numeric expression that you want to convert."
-msgstr "<emph>Expression:</emph> низов или числов израз, който да бъде преобразуван."
+msgid "MsgBox \"\" & TwipsPerPixelX() & \" Twips * \" & TwipsPerPixelY() & \" Twips\",0,\"Pixel size\""
+msgstr "MsgBox \"\" & TwipsPerPixelX() & \" туипа * \" & TwipsPerPixelY() & \" туипа\", 0, \"Размер на пиксела\""
-#: 03070600.xhp
+#: 03131400.xhp
msgctxt ""
-"03070600.xhp\n"
+"03131400.xhp\n"
"tit\n"
"help.text"
-msgid "Mod-Operator [Runtime]"
-msgstr "Операция Mod [динамична]"
+msgid "TwipsPerPixelY Function [Runtime]"
+msgstr "Функция TwipsPerPixelY [динамична]"
-#: 03070600.xhp
+#: 03131400.xhp
msgctxt ""
-"03070600.xhp\n"
-"bm_id3150669\n"
+"03131400.xhp\n"
+"bm_id3150040\n"
"help.text"
-msgid "<bookmark_value>MOD operator (mathematical)</bookmark_value>"
-msgstr "<bookmark_value>Mod, математическа операция</bookmark_value>"
+msgid "<bookmark_value>TwipsPerPixelY function</bookmark_value>"
+msgstr "<bookmark_value>TwipsPerPixelY, функция</bookmark_value>"
-#: 03070600.xhp
+#: 03131400.xhp
msgctxt ""
-"03070600.xhp\n"
-"hd_id3150669\n"
+"03131400.xhp\n"
+"hd_id3150040\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod-Operator [Runtime]\">Mod Operator [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Операция Mod [динамична]\">Операция Mod [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03131400.xhp\" name=\"TwipsPerPixelY Function [Runtime]\">TwipsPerPixelY Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03131400.xhp\" name=\"Функция TwipsPerPixelY [динамична]\">Функция TwipsPerPixelY [динамична]</link>"
-#: 03070600.xhp
+#: 03131400.xhp
msgctxt ""
-"03070600.xhp\n"
-"par_id3148686\n"
+"03131400.xhp\n"
+"par_id3154186\n"
"2\n"
"help.text"
-msgid "Returns the integer remainder of a division."
-msgstr "Връща целочисления остатък от деление."
+msgid "Returns the number of twips that represent the height of a pixel."
+msgstr "Връща броя туипове, съответстващ на височината на един пиксел."
-#: 03070600.xhp
+#: 03131400.xhp
msgctxt ""
-"03070600.xhp\n"
-"hd_id3146795\n"
+"03131400.xhp\n"
+"hd_id3145090\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03070600.xhp
+#: 03131400.xhp
msgctxt ""
-"03070600.xhp\n"
-"par_id3147560\n"
+"03131400.xhp\n"
+"par_id3153681\n"
"4\n"
"help.text"
-msgid "Result = Expression1 MOD Expression2"
-msgstr "Result = Expression1 Mod Expression2"
+msgid "n = TwipsPerPixelY"
+msgstr "n = TwipsPerPixelY"
-#: 03070600.xhp
+#: 03131400.xhp
msgctxt ""
-"03070600.xhp\n"
-"hd_id3149657\n"
+"03131400.xhp\n"
+"hd_id3148473\n"
"5\n"
"help.text"
msgid "Return value:"
msgstr "Връщана стойност:"
-#: 03070600.xhp
+#: 03131400.xhp
msgctxt ""
-"03070600.xhp\n"
-"par_id3153380\n"
+"03131400.xhp\n"
+"par_id3154306\n"
"6\n"
"help.text"
msgid "Integer"
msgstr "Integer"
-#: 03070600.xhp
+#: 03131400.xhp
msgctxt ""
-"03070600.xhp\n"
-"hd_id3154365\n"
+"03131400.xhp\n"
+"hd_id3149235\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
-
-#: 03070600.xhp
-msgctxt ""
-"03070600.xhp\n"
-"par_id3145172\n"
-"8\n"
-"help.text"
-msgid "<emph>Result:</emph> Any numeric variable that contains the result of the MOD operation."
-msgstr "<emph>Result:</emph> числов израз, който съдържа остатъка от делението."
-
-#: 03070600.xhp
-msgctxt ""
-"03070600.xhp\n"
-"par_id3151042\n"
-"9\n"
-"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to divide."
-msgstr "<emph>Expression1, Expression2:</emph> числовите изрази, чиито стойности искате да разделите."
-
-#: 03070600.xhp
-msgctxt ""
-"03070600.xhp\n"
-"hd_id3147287\n"
-"10\n"
-"help.text"
msgid "Example:"
msgstr "Пример:"
-#: 03070600.xhp
-msgctxt ""
-"03070600.xhp\n"
-"par_id3161832\n"
-"12\n"
-"help.text"
-msgid "Print 10 Mod 2.5 ' returns 0"
-msgstr "Print 10 Mod 2.5 ' връща 0"
-
-#: 03070600.xhp
-msgctxt ""
-"03070600.xhp\n"
-"par_id3146922\n"
-"13\n"
-"help.text"
-msgid "Print 10 / 2.5 ' returns 4"
-msgstr "Print 10 / 2.5 ' връща 4"
-
-#: 03070600.xhp
-msgctxt ""
-"03070600.xhp\n"
-"par_id3145273\n"
-"14\n"
-"help.text"
-msgid "Print 10 Mod 5 ' returns 0"
-msgstr "Print 10 Mod 5 ' връща 0"
-
-#: 03070600.xhp
-msgctxt ""
-"03070600.xhp\n"
-"par_id3150011\n"
-"15\n"
-"help.text"
-msgid "Print 10 / 5 ' returns 2"
-msgstr "Print 10 / 5 ' връща 2"
-
-#: 03070600.xhp
-msgctxt ""
-"03070600.xhp\n"
-"par_id3149483\n"
-"16\n"
-"help.text"
-msgid "Print 5 Mod 10 ' returns 5"
-msgstr "Print 5 Mod 10 ' връща 5"
-
-#: 03070600.xhp
+#: 03131400.xhp
msgctxt ""
-"03070600.xhp\n"
-"par_id3151114\n"
-"17\n"
+"03131400.xhp\n"
+"par_id3154142\n"
+"9\n"
"help.text"
-msgid "Print 5 / 10 ' returns 0.5"
-msgstr "Print 5 / 10 ' връща 0.5"
+msgid "MsgBox \"\" & TwipsPerPixelX() & \" Twips * \" & TwipsPerPixelY() & \" Twips\",0,\"Pixel size\""
+msgstr "MsgBox \"\" & TwipsPerPixelX() & \" туипа * \" & TwipsPerPixelY() & \" туипа\", 0, \"Размер на пиксела\""
-#: 03020406.xhp
+#: 03131500.xhp
msgctxt ""
-"03020406.xhp\n"
+"03131500.xhp\n"
"tit\n"
"help.text"
-msgid "FileCopy Statement [Runtime]"
-msgstr "Оператор FileCopy [динамичен]"
+msgid "CreateUnoStruct Function [Runtime]"
+msgstr "Функция CreateUnoStruct [динамична]"
-#: 03020406.xhp
+#: 03131500.xhp
msgctxt ""
-"03020406.xhp\n"
-"bm_id3154840\n"
+"03131500.xhp\n"
+"bm_id3150499\n"
"help.text"
-msgid "<bookmark_value>FileCopy statement</bookmark_value>"
-msgstr "<bookmark_value>FileCopy, оператор</bookmark_value>"
+msgid "<bookmark_value>CreateUnoStruct function</bookmark_value>"
+msgstr "<bookmark_value>CreateUnoStruct, функция</bookmark_value>"
-#: 03020406.xhp
+#: 03131500.xhp
msgctxt ""
-"03020406.xhp\n"
-"hd_id3154840\n"
+"03131500.xhp\n"
+"hd_id3150499\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020406.xhp\" name=\"FileCopy Statement [Runtime]\">FileCopy Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03020406.xhp\" name=\"Оператор FileCopy [динамичен]\">Оператор FileCopy [динамичен]</link>"
+msgid "<link href=\"text/sbasic/shared/03131500.xhp\" name=\"CreateUnoStruct Function [Runtime]\">CreateUnoStruct Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03131500.xhp\" name=\"Функция CreateUnoStruct [динамична]\">Функция CreateUnoStruct [динамична]</link>"
-#: 03020406.xhp
+#: 03131500.xhp
msgctxt ""
-"03020406.xhp\n"
-"par_id3149497\n"
+"03131500.xhp\n"
+"par_id3150713\n"
"2\n"
"help.text"
-msgid "Copies a file."
-msgstr "Копира файл."
+msgid "<ahelp hid=\".\">Creates an instance of a Uno structure type.</ahelp>"
+msgstr "<ahelp hid=\".\">Създава екземпляр от структурен тип на Uno.</ahelp>"
-#: 03020406.xhp
+#: 03131500.xhp
msgctxt ""
-"03020406.xhp\n"
-"hd_id3147443\n"
+"03131500.xhp\n"
+"par_id3147226\n"
"3\n"
"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
+msgid "Use the following structure for your statement:"
+msgstr "Използвайте следната структура за оператора:"
-#: 03020406.xhp
+#: 03131500.xhp
msgctxt ""
-"03020406.xhp\n"
-"par_id3146957\n"
+"03131500.xhp\n"
+"par_id3149177\n"
"4\n"
"help.text"
-msgid "FileCopy TextFrom As String, TextTo As String"
-msgstr "FileCopy TextFrom As String, TextTo As String"
+msgid "Dim oStruct as new com.sun.star.beans.Property"
+msgstr "Dim oStruct as new com.sun.star.beans.Property"
-#: 03020406.xhp
+#: 03131500.xhp
msgctxt ""
-"03020406.xhp\n"
-"hd_id3153825\n"
+"03131500.xhp\n"
+"hd_id3156153\n"
"5\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 03020406.xhp
+#: 03131500.xhp
msgctxt ""
-"03020406.xhp\n"
-"par_id3155390\n"
+"03131500.xhp\n"
+"par_id3155341\n"
"6\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 "<emph>TextFrom:</emph> низов израз със стойност името на файла, който искате да се копира. Изразът може да включва информация за път и устройство. Ако желаете, можете да въведете пътя във вид на <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL\">URL</link>."
+msgid "oStruct = CreateUnoStruct( Uno type name )"
+msgstr "oStruct = CreateUnoStruct(име на тип на Uno)"
-#: 03020406.xhp
+#: 03131500.xhp
msgctxt ""
-"03020406.xhp\n"
-"par_id3150669\n"
+"03131500.xhp\n"
+"hd_id3145316\n"
"7\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 "<emph>TextTo:</emph> низов израз, който задава къде да бъде копиран файлът. Може да съдържа устройство, път и име на файл – местоназначение или път във вид на URL."
+msgid "Example:"
+msgstr "Пример:"
-#: 03020406.xhp
+#: 03131500.xhp
msgctxt ""
-"03020406.xhp\n"
-"par_id3150791\n"
+"03131500.xhp\n"
+"par_id3149762\n"
"8\n"
"help.text"
-msgid "You can only use the FileCopy statement to copy files that are not opened."
-msgstr "С оператора FileCopy можете да копирате само файлове, които не са отворени."
-
-#: 03020406.xhp
-msgctxt ""
-"03020406.xhp\n"
-"hd_id3125863\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "oStruct = CreateUnoStruct( \"com.sun.star.beans.Property\" )"
+msgstr "oStruct = CreateUnoStruct( \"com.sun.star.beans.Property\" )"
-#: 03101500.xhp
+#: 03131600.xhp
msgctxt ""
-"03101500.xhp\n"
+"03131600.xhp\n"
"tit\n"
"help.text"
-msgid "DefInt Statement [Runtime]"
-msgstr "Оператор DefInt [динамичен]"
+msgid "CreateUnoService Function [Runtime]"
+msgstr "Функция CreateUnoService [динамична]"
-#: 03101500.xhp
+#: 03131600.xhp
msgctxt ""
-"03101500.xhp\n"
-"bm_id3149811\n"
+"03131600.xhp\n"
+"bm_id3150682\n"
"help.text"
-msgid "<bookmark_value>DefInt statement</bookmark_value>"
-msgstr "<bookmark_value>DefInt, оператор</bookmark_value>"
+msgid "<bookmark_value>CreateUnoService function</bookmark_value>"
+msgstr "<bookmark_value>CreateUnoService, функция</bookmark_value>"
-#: 03101500.xhp
+#: 03131600.xhp
msgctxt ""
-"03101500.xhp\n"
-"hd_id3149811\n"
+"03131600.xhp\n"
+"hd_id3150682\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03101500.xhp\" name=\"DefInt Statement [Runtime]\">DefInt Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03101500.xhp\" name=\"Оператор DefInt [динамичен]\">Оператор DefInt [динамичен]</link>"
+msgid "<link href=\"text/sbasic/shared/03131600.xhp\" name=\"CreateUnoService Function [Runtime]\">CreateUnoService Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03131600.xhp\" name=\"Функция CreateUnoService [динамична]\">Функция CreateUnoService [динамична]</link>"
-#: 03101500.xhp
+#: 03131600.xhp
msgctxt ""
-"03101500.xhp\n"
-"par_id3149762\n"
+"03131600.xhp\n"
+"par_id3152924\n"
"2\n"
"help.text"
-msgid "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified."
-msgstr "Операторът DefInt установява подразбиран тип данни според диапазон от букви в случай, че не е зададена ключова дума или знак за деклариране на тип."
+msgid "Instantiates a Uno service with the ProcessServiceManager."
+msgstr "Връща екземпляр на услуга на Uno от ProcessServiceManager."
-#: 03101500.xhp
+#: 03131600.xhp
msgctxt ""
-"03101500.xhp\n"
-"hd_id3148686\n"
+"03131600.xhp\n"
+"hd_id3152801\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03101500.xhp
+#: 03131600.xhp
msgctxt ""
-"03101500.xhp\n"
-"par_id3156023\n"
+"03131600.xhp\n"
+"par_id3153346\n"
"4\n"
"help.text"
-msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
-msgstr "Defxxx Characterrange1[, Characterrange2[,...]]"
-
-#: 03101500.xhp
-msgctxt ""
-"03101500.xhp\n"
-"hd_id3156344\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "oService = CreateUnoService( Uno service name )"
+msgstr "oService = CreateUnoService(име на услуга на Uno)"
-#: 03101500.xhp
+#: 03131600.xhp
msgctxt ""
-"03101500.xhp\n"
-"par_id3147560\n"
-"6\n"
+"03131600.xhp\n"
+"par_idN1060F\n"
"help.text"
-msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set a default data type for."
-msgstr "<emph>Characterrange:</emph> букви, определящи диапазона от променливи, за които искате да зададете подразбиран тип данни."
+msgid "For a list of available services, go to: http://api.libreoffice.org/docs/common/ref/com/sun/star/module-ix.html"
+msgstr "За списък на наличните услуги вижте http://api.libreoffice.org/docs/common/ref/com/sun/star/module-ix.html"
-#: 03101500.xhp
+#: 03131600.xhp
msgctxt ""
-"03101500.xhp\n"
-"par_id3150398\n"
-"7\n"
+"03131600.xhp\n"
+"hd_id3151111\n"
+"5\n"
"help.text"
-msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
-msgstr "<emph>xxx:</emph> ключова дума, дефинираща подразбирания тип данни:"
+msgid "Examples:"
+msgstr "Примери:"
-#: 03101500.xhp
+#: 03131600.xhp
msgctxt ""
-"03101500.xhp\n"
-"par_id3154365\n"
-"8\n"
+"03131600.xhp\n"
+"par_id3154046\n"
+"6\n"
"help.text"
-msgid "<emph>Keyword:</emph> Default variable type"
-msgstr "<emph>Ключова дума:</emph> Подразбиран тип данни"
+msgid "oIntrospection = CreateUnoService( \"com.sun.star.beans.Introspection\" )"
+msgstr "oIntrospection = CreateUnoService(\"com.sun.star.beans.Introspection\")"
-#: 03101500.xhp
+#: 03131600.xhp
msgctxt ""
-"03101500.xhp\n"
-"par_id3125863\n"
-"9\n"
+"03131600.xhp\n"
+"bm_id8334604\n"
"help.text"
-msgid "<emph>DefInt:</emph> Integer"
-msgstr "<emph>DefInt:</emph> Integer"
+msgid "<bookmark_value>filepicker;API service</bookmark_value>"
+msgstr "<bookmark_value>избор на файл;услуга на ППИ</bookmark_value>"
-#: 03101500.xhp
+#: 03131600.xhp
msgctxt ""
-"03101500.xhp\n"
-"hd_id3154123\n"
-"10\n"
+"03131600.xhp\n"
+"par_idN10625\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "The following code uses a service to open a file open dialog:"
+msgstr "Следващият код използва услуга, за да покаже диалог за отваряне на файл:"
-#: 03101500.xhp
+#: 03131600.xhp
msgctxt ""
-"03101500.xhp\n"
-"par_id3151042\n"
-"12\n"
+"03131600.xhp\n"
+"par_idN1062B\n"
"help.text"
-msgid "' Prefix definitions for variable types"
-msgstr "' Дефиниране с префикс за променливи от даден тип:"
+msgid "fName = FileOpenDialog (\"Please select a file\")"
+msgstr "fName = FileOpenDialog (\"Моля, изберете файл\")"
-#: 03101500.xhp
+#: 03131600.xhp
msgctxt ""
-"03101500.xhp\n"
-"par_id3153728\n"
-"22\n"
+"03131600.xhp\n"
+"par_idN10630\n"
"help.text"
-msgid "iCount=200 ' iCount is an implicit integer variable"
-msgstr "iCount = 200 ' iCount е променлива с неявен тип Integer"
+msgid "Print \"file chosen: \"+fName"
+msgstr "Print \"Избран файл: \" + fName"
-#: 03020304.xhp
+#: 03131700.xhp
msgctxt ""
-"03020304.xhp\n"
+"03131700.xhp\n"
"tit\n"
"help.text"
-msgid "Seek Function [Runtime]"
-msgstr "Функция Seek [динамична]"
+msgid "GetProcessServiceManager Function [Runtime]"
+msgstr "Функция GetProcessServiceManager [динамична]"
-#: 03020304.xhp
+#: 03131700.xhp
msgctxt ""
-"03020304.xhp\n"
-"bm_id3154367\n"
+"03131700.xhp\n"
+"bm_id3153255\n"
"help.text"
-msgid "<bookmark_value>Seek function</bookmark_value>"
-msgstr "<bookmark_value>Seek, функция</bookmark_value>"
+msgid "<bookmark_value>GetProcessServiceManager function</bookmark_value><bookmark_value>ProcessServiceManager</bookmark_value>"
+msgstr "<bookmark_value>GetProcessServiceManager, функция</bookmark_value><bookmark_value>ProcessServiceManager</bookmark_value>"
-#: 03020304.xhp
+#: 03131700.xhp
msgctxt ""
-"03020304.xhp\n"
-"hd_id3154367\n"
+"03131700.xhp\n"
+"hd_id3153255\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020304.xhp\" name=\"Seek Function [Runtime]\">Seek Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03020304.xhp\" name=\"Функция Seek [динамична]\">Функция Seek [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03131700.xhp\" name=\"GetProcessServiceManager Function [Runtime]\">GetProcessServiceManager Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03131700.xhp\" name=\"Функция GetProcessServiceManager [динамична]\">Функция GetProcessServiceManager [динамична]</link>"
-#: 03020304.xhp
+#: 03131700.xhp
msgctxt ""
-"03020304.xhp\n"
-"par_id3156280\n"
+"03131700.xhp\n"
+"par_id3156414\n"
"2\n"
"help.text"
-msgid "Returns the position for the next writing or reading in a file that was opened with the open statement."
-msgstr "Връща позицията за следващото записване или четене във файл, отворен с оператора Open."
+msgid "Returns the ProcessServiceManager (central Uno ServiceManager)."
+msgstr "Връща диспечера на услуги ProcessServiceManager (централният обект ServiceManager на Uno)."
-#: 03020304.xhp
+#: 03131700.xhp
msgctxt ""
-"03020304.xhp\n"
-"par_id3153194\n"
+"03131700.xhp\n"
+"par_id3145136\n"
"3\n"
"help.text"
-msgid "For random access files, the Seek function returns the number of the next record to be read."
-msgstr "За файлове с произволен достъп функцията Seek връща номера на следващия запис, който ще бъде прочетен."
+msgid "This function is required when you want to instantiate a service using CreateInstanceWithArguments."
+msgstr "Тази функция е необходима, когато искате да получите екземпляр на услуга чрез CreateInstanceWithArguments."
-#: 03020304.xhp
+#: 03131700.xhp
msgctxt ""
-"03020304.xhp\n"
-"par_id3161831\n"
+"03131700.xhp\n"
+"hd_id3153681\n"
"4\n"
"help.text"
-msgid "For all other files, the function returns the byte position at which the next operation is to occur."
-msgstr "За всички други файлове функцията връща позицията на байта, с който ще бъде извършена следващата операция."
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 03020304.xhp
+#: 03131700.xhp
msgctxt ""
-"03020304.xhp\n"
-"par_id3155854\n"
+"03131700.xhp\n"
+"par_id3151110\n"
"5\n"
"help.text"
-msgid "See also: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>, <link href=\"text/sbasic/shared/03020305.xhp\" name=\"Seek\">Seek</link>."
-msgstr "Виж също: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>, <link href=\"text/sbasic/shared/03020305.xhp\" name=\"Seek\">Seek</link>."
+msgid "oServiceManager = GetProcessServiceManager()"
+msgstr "oServiceManager = GetProcessServiceManager()"
-#: 03020304.xhp
+#: 03131700.xhp
msgctxt ""
-"03020304.xhp\n"
-"hd_id3152460\n"
+"03131700.xhp\n"
+"hd_id3149516\n"
"6\n"
"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
+msgid "Example:"
+msgstr "Пример:"
-#: 03020304.xhp
+#: 03131700.xhp
msgctxt ""
-"03020304.xhp\n"
-"par_id3145365\n"
+"03131700.xhp\n"
+"par_id3143270\n"
"7\n"
"help.text"
-msgid "Seek (FileNumber)"
-msgstr "Seek (FileNumber)"
+msgid "oServiceManager = GetProcessServiceManager()"
+msgstr "oServiceManager = GetProcessServiceManager()"
-#: 03020304.xhp
+#: 03131700.xhp
msgctxt ""
-"03020304.xhp\n"
-"hd_id3148575\n"
+"03131700.xhp\n"
+"par_id3153825\n"
"8\n"
"help.text"
-msgid "Return value:"
-msgstr "Връщана стойност:"
+msgid "oIntrospection = oServiceManager.createInstance(\"com.sun.star.beans.Introspection\");"
+msgstr "oIntrospection = oServiceManager.createInstance(\"com.sun.star.beans.Introspection\");"
-#: 03020304.xhp
+#: 03131700.xhp
msgctxt ""
-"03020304.xhp\n"
-"par_id3159156\n"
+"03131700.xhp\n"
+"par_id3148473\n"
"9\n"
"help.text"
-msgid "Long"
-msgstr "Long"
+msgid "this is the same as the following statement:"
+msgstr "Това е същото като долния оператор:"
-#: 03020304.xhp
+#: 03131700.xhp
msgctxt ""
-"03020304.xhp\n"
-"hd_id3149665\n"
+"03131700.xhp\n"
+"par_id3145609\n"
"10\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
-
-#: 03020304.xhp
-msgctxt ""
-"03020304.xhp\n"
-"par_id3148645\n"
-"11\n"
-"help.text"
-msgid "<emph>FileNumber:</emph> The data channel number used in the Open statement."
-msgstr "<emph>FileNumber:</emph> номерът на канал за данни, използван в оператора Open."
+msgid "oIntrospection = CreateUnoService(\"com.sun.star.beans.Introspection\")"
+msgstr "oIntrospection = CreateUnoService(\"com.sun.star.beans.Introspection\")"
-#: 03030202.xhp
+#: 03131800.xhp
msgctxt ""
-"03030202.xhp\n"
+"03131800.xhp\n"
"tit\n"
"help.text"
-msgid "Minute Function [Runtime]"
-msgstr "Функция Minute [динамична]"
+msgid "CreateUnoDialog Function [Runtime]"
+msgstr "Функция CreateUnoDialog [динамична]"
-#: 03030202.xhp
+#: 03131800.xhp
msgctxt ""
-"03030202.xhp\n"
-"bm_id3155419\n"
+"03131800.xhp\n"
+"bm_id3150040\n"
"help.text"
-msgid "<bookmark_value>Minute function</bookmark_value>"
-msgstr "<bookmark_value>Minute, функция</bookmark_value>"
+msgid "<bookmark_value>CreateUnoDialog function</bookmark_value>"
+msgstr "<bookmark_value>CreateUnoDialog, функция</bookmark_value>"
-#: 03030202.xhp
+#: 03131800.xhp
msgctxt ""
-"03030202.xhp\n"
-"hd_id3155419\n"
+"03131800.xhp\n"
+"hd_id3150040\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03030202.xhp\" name=\"Minute Function [Runtime]\">Minute Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03030202.xhp\" name=\"Функция Minute [динамична]\">Функция Minute [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03131800.xhp\" name=\"CreateUnoDialog Function [Runtime]\">CreateUnoDialog Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03131800.xhp\" name=\"Функция CreateUnoDialog [динамична]\">Функция CreateUnoDialog [динамична]</link>"
-#: 03030202.xhp
+#: 03131800.xhp
msgctxt ""
-"03030202.xhp\n"
-"par_id3156344\n"
+"03131800.xhp\n"
+"par_id3154186\n"
"2\n"
"help.text"
-msgid "Returns the minute of the hour that corresponds to the serial time value that is generated by the TimeSerial or the TimeValue function."
-msgstr "Връща минутата от часа, която съответства на серийна стойност за час, генерирана от функцията TimeSerial или TimeValue."
+msgid "Creates a Basic Uno object that represents a Uno dialog control during Basic runtime."
+msgstr "Създава Uno обект на Basic, който представя диалогов прозорец на Uno по време на изпълнението на програма на Basic."
-#: 03030202.xhp
+#: 03131800.xhp
msgctxt ""
-"03030202.xhp\n"
-"hd_id3154758\n"
+"03131800.xhp\n"
+"par_id3153750\n"
"3\n"
"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
+msgid "Dialogs are defined in the dialog libraries. To display a dialog, a \"live\" dialog must be created from the library."
+msgstr "Диалоговите прозорци са дефинирани в библиотеки. За да покажете диалогов прозорец, от библиотеката трябва да се създаде „жив“ („live“) прозорец."
-#: 03030202.xhp
+#: 03131800.xhp
msgctxt ""
-"03030202.xhp\n"
-"par_id3149656\n"
+"03131800.xhp\n"
+"par_id3153681\n"
"4\n"
"help.text"
-msgid "Minute (Number)"
-msgstr "Minute (Number)"
+msgid "See <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Examples\">Examples</link>."
+msgstr "Вижте <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Примери\">Примери</link>."
-#: 03030202.xhp
+#: 03131800.xhp
msgctxt ""
-"03030202.xhp\n"
-"hd_id3148798\n"
+"03131800.xhp\n"
+"hd_id3154286\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Връщана стойност:"
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 03030202.xhp
+#: 03131800.xhp
msgctxt ""
-"03030202.xhp\n"
-"par_id3150449\n"
+"03131800.xhp\n"
+"par_id3159176\n"
"6\n"
"help.text"
-msgid "Integer"
-msgstr "Integer"
+msgid "CreateUnoDialog( oDlgDesc )"
+msgstr "CreateUnoDialog(oDlgDesc)"
-#: 03030202.xhp
+#: 03131800.xhp
msgctxt ""
-"03030202.xhp\n"
-"hd_id3153193\n"
+"03131800.xhp\n"
+"hd_id3143270\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "Example:"
+msgstr "Пример:"
-#: 03030202.xhp
+#: 03131800.xhp
msgctxt ""
-"03030202.xhp\n"
-"par_id3153969\n"
+"03131800.xhp\n"
+"par_id3159157\n"
"8\n"
"help.text"
-msgid "<emph>Number:</emph> Numeric expression that contains the serial time value that is used to return the minute value."
-msgstr "<emph>Number:</emph> числов израз – серийната стойност за точен час, от която се изчислява стойността на минутите."
+msgid "' Get dialog description from the dialog library"
+msgstr "' Извличаме описание на диалоговия прозорец от библиотеката"
-#: 03030202.xhp
+#: 03131800.xhp
msgctxt ""
-"03030202.xhp\n"
-"par_id3150869\n"
+"03131800.xhp\n"
+"par_id3149234\n"
"9\n"
"help.text"
-msgid "This function is the opposite of the <emph>TimeSerial </emph>function. It returns the minute of the serial time value that is generated by the <emph>TimeSerial</emph> or the <emph>TimeValue </emph>function. For example, the expression:"
-msgstr "Тази функция е противоположна на <emph>TimeSerial</emph>. Тя връща минутите от стойност за час, генерирана от функцията <emph>TimeSerial</emph> или<emph>TimeValue</emph>. Например изразът"
+msgid "oDlgDesc = DialogLibraries.Standard.Dialog1"
+msgstr "oDlgDesc = DialogLibraries.Standard.Dialog1"
-#: 03030202.xhp
+#: 03131800.xhp
msgctxt ""
-"03030202.xhp\n"
-"par_id3149262\n"
+"03131800.xhp\n"
+"par_id3154923\n"
"10\n"
"help.text"
-msgid "Print Minute(TimeSerial(12,30,41))"
-msgstr "Print Minute(TimeSerial(12,30,41))"
+msgid "' generate \"live\" dialog"
+msgstr "' Създаваме „жив“ диалогов прозорец"
-#: 03030202.xhp
+#: 03131800.xhp
msgctxt ""
-"03030202.xhp\n"
-"par_id3148576\n"
+"03131800.xhp\n"
+"par_id3149670\n"
"11\n"
"help.text"
-msgid "returns the value 30."
-msgstr "връща стойността 30."
+msgid "oDlgControl = CreateUnoDialog( oDlgDesc )"
+msgstr "oDlgControl = CreateUnoDialog(oDlgDesc)"
-#: 03030202.xhp
+#: 03131800.xhp
msgctxt ""
-"03030202.xhp\n"
-"hd_id3150010\n"
+"03131800.xhp\n"
+"par_id3148550\n"
"12\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "' display \"live\" dialog"
+msgstr "' Показваме „живия“ диалогов прозорец"
-#: 03030202.xhp
+#: 03131800.xhp
msgctxt ""
-"03030202.xhp\n"
-"par_id3159154\n"
+"03131800.xhp\n"
+"par_id3154072\n"
"13\n"
"help.text"
-msgid "Sub ExampleMinute"
-msgstr "Sub ExampleMinute"
-
-#: 03030202.xhp
-msgctxt ""
-"03030202.xhp\n"
-"par_id3146119\n"
-"14\n"
-"help.text"
-msgid "MsgBox \"The current minute is \"& Minute(Now)& \".\""
-msgstr "MsgBox \"Текущата минута е \" & Minute(Now) & \".\""
-
-#: 03030202.xhp
-msgctxt ""
-"03030202.xhp\n"
-"par_id3153726\n"
-"15\n"
-"help.text"
-msgid "end sub"
-msgstr "End Sub"
+msgid "oDlgControl.execute"
+msgstr "oDlgControl.execute"
-#: 03103200.xhp
+#: 03131900.xhp
msgctxt ""
-"03103200.xhp\n"
+"03131900.xhp\n"
"tit\n"
"help.text"
-msgid "Option Base Statement [Runtime]"
-msgstr "Оператор Option Base [динамичен]"
+msgid "GlobalScope [Runtime]"
+msgstr "Функция GlobalScope [динамична]"
-#: 03103200.xhp
+#: 03131900.xhp
msgctxt ""
-"03103200.xhp\n"
-"bm_id3155805\n"
+"03131900.xhp\n"
+"bm_id3150682\n"
"help.text"
-msgid "<bookmark_value>Option Base statement</bookmark_value>"
-msgstr "<bookmark_value>Option Base, оператор</bookmark_value>"
+msgid "<bookmark_value>GlobalScope function</bookmark_value><bookmark_value>library systems</bookmark_value><bookmark_value>LibraryContainer</bookmark_value><bookmark_value>BasicLibraries (LibraryContainer)</bookmark_value><bookmark_value>DialogLibraries (LibraryContainer)</bookmark_value>"
+msgstr "<bookmark_value>GlobalScope, функция</bookmark_value><bookmark_value>библиотеки, системи от</bookmark_value><bookmark_value>LibraryContainer</bookmark_value><bookmark_value>BasicLibraries (LibraryContainer)</bookmark_value><bookmark_value>DialogLibraries (LibraryContainer)</bookmark_value>"
-#: 03103200.xhp
+#: 03131900.xhp
msgctxt ""
-"03103200.xhp\n"
-"hd_id3155805\n"
+"03131900.xhp\n"
+"hd_id3150682\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03103200.xhp\" name=\"Option Base Statement [Runtime]\">Option Base Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03103200.xhp\" name=\"Оператор Option Base [динамичен]\">Оператор Option Base [динамичен]</link>"
+msgid "<link href=\"text/sbasic/shared/03131900.xhp\" name=\"GlobalScope [Runtime]\">GlobalScope [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03131900.xhp\" name=\"Функция GlobalScope [динамична]\">Функция GlobalScope [динамична]</link>"
-#: 03103200.xhp
+#: 03131900.xhp
msgctxt ""
-"03103200.xhp\n"
-"par_id3147242\n"
+"03131900.xhp\n"
+"par_id3153345\n"
"2\n"
"help.text"
-msgid "Defines the default lower boundary for arrays as 0 or 1."
-msgstr "Дефинира подразбираната долната граница за масиви като 0 или 1."
+msgid "Basic source code and dialogs are organized in a library system."
+msgstr "Изходният код и диалоговите прозорци на Basic са организирани в система от библиотеки."
-#: 03103200.xhp
+#: 03131900.xhp
msgctxt ""
-"03103200.xhp\n"
-"hd_id3150771\n"
+"03131900.xhp\n"
+"par_id3145315\n"
"3\n"
"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
+msgid "The LibraryContainer contains libraries"
+msgstr "Контейнерът LibraryContainer съдържа библиотеки."
-#: 03103200.xhp
+#: 03131900.xhp
msgctxt ""
-"03103200.xhp\n"
-"par_id3147573\n"
+"03131900.xhp\n"
+"par_id3149514\n"
"4\n"
"help.text"
-msgid "Option Base { 0 | 1}"
-msgstr "Option Base { 0 | 1}"
+msgid "Libraries can contain modules and dialogs"
+msgstr "Библиотеките могат да съдържат модули и диалогови прозорци."
-#: 03103200.xhp
+#: 03131900.xhp
msgctxt ""
-"03103200.xhp\n"
-"hd_id3145315\n"
+"03131900.xhp\n"
+"hd_id3143271\n"
"5\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "In Basic:"
+msgstr "В Basic:"
-#: 03103200.xhp
+#: 03131900.xhp
msgctxt ""
-"03103200.xhp\n"
-"par_id3147229\n"
+"03131900.xhp\n"
+"par_id3153061\n"
"6\n"
"help.text"
-msgid "This statement must be added before the executable program code in a module."
-msgstr "Този оператор трябва да бъде поставен в модул преди изпълнимия програмен код."
+msgid "The LibraryContainer is called <emph>BasicLibraries</emph>."
+msgstr "Контейнерът LibraryContainer се нарича <emph>BasicLibraries</emph>."
-#: 03103200.xhp
+#: 03131900.xhp
msgctxt ""
-"03103200.xhp\n"
-"hd_id3150870\n"
+"03131900.xhp\n"
+"hd_id3154346\n"
"7\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
-
-#: 03080401.xhp
-msgctxt ""
-"03080401.xhp\n"
-"tit\n"
-"help.text"
-msgid "Sqr Function [Runtime]"
-msgstr "Функция Sqr [динамична]"
-
-#: 03080401.xhp
-msgctxt ""
-"03080401.xhp\n"
-"bm_id3156027\n"
-"help.text"
-msgid "<bookmark_value>Sqr function</bookmark_value>"
-msgstr "<bookmark_value>Sqr, функция</bookmark_value>"
+msgid "In dialogs:"
+msgstr "В диалогови прозорци:"
-#: 03080401.xhp
+#: 03131900.xhp
msgctxt ""
-"03080401.xhp\n"
-"hd_id3156027\n"
-"1\n"
+"03131900.xhp\n"
+"par_id3148663\n"
+"8\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080401.xhp\" name=\"Sqr Function [Runtime]\">Sqr Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03080401.xhp\" name=\"Функция Sqr [динамична]\">Функция Sqr [динамична]</link>"
+msgid "The LibraryContainer is called <emph>DialogLibraries</emph>."
+msgstr "Контейнерът LibraryContainer се нарича <emph>DialogLibraries</emph>."
-#: 03080401.xhp
+#: 03131900.xhp
msgctxt ""
-"03080401.xhp\n"
-"par_id3147226\n"
-"2\n"
+"03131900.xhp\n"
+"par_id3150543\n"
+"9\n"
"help.text"
-msgid "Calculates the square root of a numeric expression."
-msgstr "Изчислява квадратния корен на числов израз."
+msgid "Both LibraryContainers exist in an application level and within every document. In the document Basic, the document's LibraryContainers are called automatically. If you want to call the global LibraryContainers from within a document, you must use the keyword <emph>GlobalScope</emph>."
+msgstr "И двата вида контейнери съществуват на ниво приложенив и във всеки документ. В Basic на документа автоматично се използват контейнерите на документа. Ако искате да осъществите достъп до глобалните контейнери от документ, трябва да използвате ключовата дума <emph>GlobalScope</emph>."
-#: 03080401.xhp
+#: 03131900.xhp
msgctxt ""
-"03080401.xhp\n"
-"hd_id3143267\n"
-"3\n"
+"03131900.xhp\n"
+"hd_id3148920\n"
+"10\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03080401.xhp
+#: 03131900.xhp
msgctxt ""
-"03080401.xhp\n"
-"par_id3149415\n"
-"4\n"
+"03131900.xhp\n"
+"par_id3149203\n"
+"11\n"
"help.text"
-msgid "Sqr (Number)"
-msgstr "Sqr (Number)"
+msgid "GlobalScope"
+msgstr "GlobalScope"
-#: 03080401.xhp
+#: 03131900.xhp
msgctxt ""
-"03080401.xhp\n"
-"hd_id3156023\n"
-"5\n"
+"03131900.xhp\n"
+"hd_id3154685\n"
+"12\n"
"help.text"
-msgid "Return value:"
-msgstr "Връщана стойност:"
+msgid "Example:"
+msgstr "Пример:"
-#: 03080401.xhp
+#: 03131900.xhp
msgctxt ""
-"03080401.xhp\n"
-"par_id3156343\n"
-"6\n"
+"03131900.xhp\n"
+"par_id3154124\n"
+"13\n"
"help.text"
-msgid "Double"
-msgstr "Double"
+msgid "Example in the document Basic"
+msgstr "Пример в Basic на документ"
-#: 03080401.xhp
+#: 03131900.xhp
msgctxt ""
-"03080401.xhp\n"
-"hd_id3147265\n"
-"7\n"
+"03131900.xhp\n"
+"par_id3158408\n"
+"14\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "' calling Dialog1 in the document library Standard"
+msgstr "' Извикване на Dialog1 в библиотеката на документ Standard"
-#: 03080401.xhp
+#: 03131900.xhp
msgctxt ""
-"03080401.xhp\n"
-"par_id3149457\n"
-"8\n"
+"03131900.xhp\n"
+"par_id3125865\n"
+"15\n"
"help.text"
-msgid "<emph>Number:</emph> Any numeric expression that you want to calculate the square root for."
-msgstr "<emph>Number:</emph> числов израз, чийто квадратен корен искате да намерите."
+msgid "oDlgDesc = DialogLibraries.Standard.Dialog1"
+msgstr "oDlgDesc = DialogLibraries.Standard.Dialog1"
-#: 03080401.xhp
+#: 03131900.xhp
msgctxt ""
-"03080401.xhp\n"
-"par_id3154365\n"
-"9\n"
+"03131900.xhp\n"
+"par_id3154910\n"
+"16\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 "Квадратният корен е число, което, умножено по себе си, дава друго число, например квадратният корен на 36 е 6."
+msgid "' calling Dialog2 in the application library Library1"
+msgstr "' Извикване на Dialog2 в библиотеката на приложение Library1"
-#: 03080401.xhp
+#: 03131900.xhp
msgctxt ""
-"03080401.xhp\n"
-"hd_id3153192\n"
-"10\n"
+"03131900.xhp\n"
+"par_id3156424\n"
+"17\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "oDlgDesc = GlobalScope.DialogLibraries.Library1.Dialog2"
+msgstr "oDlgDesc = GlobalScope.DialogLibraries.Library1.Dialog2"
-#: 03130700.xhp
+#: 03132000.xhp
msgctxt ""
-"03130700.xhp\n"
+"03132000.xhp\n"
"tit\n"
"help.text"
-msgid "GetSystemTicks Function [Runtime]"
-msgstr "Функция GetSystemTicks [динамична]"
-
-#: 03130700.xhp
-msgctxt ""
-"03130700.xhp\n"
-"bm_id3147143\n"
-"help.text"
-msgid "<bookmark_value>GetSystemTicks function</bookmark_value>"
-msgstr "<bookmark_value>GetSystemTicks, функция</bookmark_value>"
+msgid "CreateUnoListener Function [Runtime]"
+msgstr "Функция CreateUnoListener [динамична]"
-#: 03130700.xhp
+#: 03132000.xhp
msgctxt ""
-"03130700.xhp\n"
-"hd_id3147143\n"
-"1\n"
+"03132000.xhp\n"
+"bm_id3155150\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03130700.xhp\" name=\"GetSystemTicks Function [Runtime]\">GetSystemTicks Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03130700.xhp\" name=\"Функция GetSystemTicks [динамична]\">Функция GetSystemTicks [динамична]</link>"
+msgid "<bookmark_value>CreateUnoListener function</bookmark_value>"
+msgstr "<bookmark_value>CreateUnoListener, функция</bookmark_value>"
-#: 03130700.xhp
+#: 03132000.xhp
msgctxt ""
-"03130700.xhp\n"
-"par_id3153750\n"
-"2\n"
+"03132000.xhp\n"
+"hd_id3155150\n"
+"53\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 "Връща броя системни тактове, докладван от операционната система. Можете да използвате тази функция, за да оптимизирате някои процеси."
+msgid "<link href=\"text/sbasic/shared/03132000.xhp\" name=\"CreateUnoListener Function [Runtime]\">CreateUnoListener Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03132000.xhp\" name=\"Функция CreateUnoListener [динамична]\">Функция CreateUnoListener [динамична]</link>"
-#: 03130700.xhp
+#: 03132000.xhp
msgctxt ""
-"03130700.xhp\n"
-"hd_id3153311\n"
-"3\n"
+"03132000.xhp\n"
+"par_id3149346\n"
+"52\n"
"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
+msgid "Creates a Listener instance."
+msgstr "Създава екземпляр на интерфейса Listener."
-#: 03130700.xhp
+#: 03132000.xhp
msgctxt ""
-"03130700.xhp\n"
-"par_id3147242\n"
-"4\n"
+"03132000.xhp\n"
+"par_id3153681\n"
+"51\n"
"help.text"
-msgid "GetSystemTicks()"
-msgstr "GetSystemTicks()"
+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 "Много интерфейси на Uno ви позволяват да регистрирате слушател чрез специален интерфейс (Listener). Така можете да следите за определени събития и да извиквате съответния метод на слушателя. Функцията CreateUnoListener изчаква извикания интерфейс на слушател, след което подава на интерфейса обект, поддържан от него. Този обект се предава на метода, за да регистрира слушателя."
-#: 03130700.xhp
+#: 03132000.xhp
msgctxt ""
-"03130700.xhp\n"
-"hd_id3149233\n"
-"5\n"
+"03132000.xhp\n"
+"hd_id3148685\n"
+"50\n"
"help.text"
-msgid "Return value:"
-msgstr "Връщана стойност:"
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 03130700.xhp
+#: 03132000.xhp
msgctxt ""
-"03130700.xhp\n"
-"par_id3149762\n"
-"6\n"
+"03132000.xhp\n"
+"par_id3143228\n"
+"49\n"
"help.text"
-msgid "Long"
-msgstr "Long"
+msgid "oListener = CreateUnoListener( Prefixname, ListenerInterfaceName )"
+msgstr "oListener = CreateUnoListener(Prefixname, ListenerInterfaceName)"
-#: 03130700.xhp
+#: 03132000.xhp
msgctxt ""
-"03130700.xhp\n"
-"hd_id3156152\n"
-"7\n"
+"03132000.xhp\n"
+"hd_id3147574\n"
+"48\n"
"help.text"
msgid "Example:"
msgstr "Пример:"
-#: 03130700.xhp
+#: 03132000.xhp
msgctxt ""
-"03130700.xhp\n"
-"par_id3154938\n"
-"13\n"
+"03132000.xhp\n"
+"par_id3154046\n"
+"47\n"
"help.text"
-msgid "MsgBox \"\" & lTick & \" Ticks\" ,0,\"The pause lasted\""
-msgstr "MsgBox \"\" & lTick & \" мс\", 0, \"Паузата трая\""
+msgid "The following example is based on a Basic library object."
+msgstr "Следващият пример е базиран на обект от библиотека на Basic."
-#: 03090101.xhp
+#: 03132000.xhp
msgctxt ""
-"03090101.xhp\n"
-"tit\n"
+"03132000.xhp\n"
+"par_id3149294\n"
+"44\n"
"help.text"
-msgid "If...Then...Else Statement [Runtime]"
-msgstr "Оператор If…Then…Else [динамичен]"
+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 "Методът CreateUnoListener изисква два параметъра. Първият – префикс – е обяснен подробно по-долу. Вторият параметър е напълно квалифицирано име на интерфейса за слушател, който искате да използвате."
-#: 03090101.xhp
+#: 03132000.xhp
msgctxt ""
-"03090101.xhp\n"
-"bm_id3154422\n"
+"03132000.xhp\n"
+"par_id3149670\n"
+"43\n"
"help.text"
-msgid "<bookmark_value>If statement</bookmark_value>"
-msgstr "<bookmark_value>If, оператор</bookmark_value>"
+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 "След това слушателят трябва да бъде добавен към обект от тип Broadcaster. Това става чрез извикване на съответния метод за добавяне на слушател. Тези методи винаги следват схемата \"addFooListener\", където \"Foo\" е типът на интерфейса за слушател без „X“. В този пример се извиква методът addContainerListener, за да се регистрира слушател от типа XContainerListener:"
-#: 03090101.xhp
+#: 03132000.xhp
msgctxt ""
-"03090101.xhp\n"
-"hd_id3154422\n"
-"1\n"
+"03132000.xhp\n"
+"par_id3154940\n"
+"41\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090101.xhp\" name=\"If...Then...Else Statement [Runtime]\">If...Then...Else Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090101.xhp\" name=\"Оператор If…Then…Else [динамичен]\">Оператор If…Then…Else [динамичен]</link>"
+msgid "oLib = BasicLibraries.Library1 ' Library1 must exist!"
+msgstr "oLib = BasicLibraries.Library1 ' Library1 трябва да съществува!"
-#: 03090101.xhp
+#: 03132000.xhp
msgctxt ""
-"03090101.xhp\n"
-"par_id3155555\n"
-"2\n"
+"03132000.xhp\n"
+"par_id3150359\n"
+"40\n"
"help.text"
-msgid "Defines one or more statement blocks that you only want to execute if a given condition is True."
-msgstr "Определя един или повече операторни блока, които да се изпълнят само ако дадено условие е удовлетворено."
+msgid "oLib.addContainerListener( oListener ) ' Register the listener"
+msgstr "oLib.addContainerListener(oListener) ' Регистрираме слушателя"
-#: 03090101.xhp
+#: 03132000.xhp
msgctxt ""
-"03090101.xhp\n"
-"hd_id3146957\n"
-"3\n"
+"03132000.xhp\n"
+"par_id3154138\n"
+"39\n"
"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
+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 "Сега слушателят е регистриран. Когато възникне събитие, съответният слушател извиква подходящия метод от интерфейса com.sun.star.container.XContainerListener."
-#: 03090101.xhp
+#: 03132000.xhp
msgctxt ""
-"03090101.xhp\n"
-"par_id3153126\n"
-"4\n"
+"03132000.xhp\n"
+"par_id3148922\n"
+"38\n"
"help.text"
-msgid "If condition=true Then Statement block [ElseIf condition=true Then] Statement block [Else] Statement block EndIf"
-msgstr "If условие=true Then Операторен блок [ElseIf условие=true Then] Операторен блок [Else] Операторен блок EndIf"
+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 "Префиксът извиква регистрирани слушатели от подпрограми на Basic. Системата за изпълнение на Basic търси процедури или функции с името „PrefixListenerMethode“ и ги извиква, ако бъдат намерени. В противен случай възниква грешка по време на изпълнение."
-#: 03090101.xhp
+#: 03132000.xhp
msgctxt ""
-"03090101.xhp\n"
-"par_id3123476\n"
+"03132000.xhp\n"
+"par_id3150768\n"
+"37\n"
"help.text"
-msgid "Instead of Else If you can write ElseIf, instead of End If you can write EndIf."
-msgstr "Вместо Else If можете да пишете ElseIf и вместо End If – EndIf."
+msgid "In this example, the Listener-Interface uses the following methods:"
+msgstr "В този пример интерфейсът на слушател използва следните методи:"
-#: 03090101.xhp
+#: 03132000.xhp
msgctxt ""
-"03090101.xhp\n"
-"hd_id3155419\n"
-"5\n"
+"03132000.xhp\n"
+"par_id3151176\n"
+"36\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "disposing:"
+msgstr "disposing:"
-#: 03090101.xhp
+#: 03132000.xhp
msgctxt ""
-"03090101.xhp\n"
-"par_id3153062\n"
-"6\n"
+"03132000.xhp\n"
+"par_id3145173\n"
+"35\n"
"help.text"
-msgid "The <emph>If...Then</emph> statement executes program blocks depending on given conditions. When $[officename] Basic encounters an <emph>If</emph> statement, the condition is tested. If the condition is True, all subsequent statements up to the next <emph>Else</emph> or <emph>ElseIf</emph> statement are executed. If the condition is False, and an <emph>ElseIf</emph> statement follows, $[officename] Basic tests the next condition and executes the following statements if the condition is True. If False, 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 True. After all conditions are evaluated, and the corresponding statements executed, the program continues with the statement following <emph>EndIf</emph>."
-msgstr "Операторът <emph>If…Then</emph> изпълнява блокове от програмата в зависимост от дадено условие. Когато $[officename] Basic срещне оператор <emph>If</emph>, се проверява условието му. Ако то е удовлетворено (True), се изпълняват всички оператори до следващия оператор <emph>Else</emph> или <emph>ElseIf</emph>. В противен случай (при стойност False) и ако има оператор <emph>ElseIf</emph>, $[officename] Basic проверява следващото условие и изпълнява следващите оператори, ако то има стойност True. Ако стойността е False, изпълнението продължава със следващия оператор <emph>ElseIf</emph> или <emph>Else</emph>. Операторите, следващи <emph>Else</emph>, се изпълняват само ако никое от проверените условия не е било удовлетворено. След като са проверени всички условия и са изпълнени съответните оператори, изпълнението на програмата продължава с оператора след <emph>EndIf</emph>."
+msgid "Listener base interface (com.sun.star.lang.XEventListener): base interface for all Listener Interfaces"
+msgstr "Базов интерфейс Listener (com.sun.star.lang.XEventListener): базов интерфейс за всички интерфейси на слушатели"
-#: 03090101.xhp
+#: 03132000.xhp
msgctxt ""
-"03090101.xhp\n"
-"par_id3153192\n"
-"7\n"
+"03132000.xhp\n"
+"par_id3156212\n"
+"34\n"
"help.text"
-msgid "You can nest multiple <emph>If...Then</emph> statements."
-msgstr "Можете да влагате операторите <emph>If…Then</emph> един в друг."
+msgid "elementInserted:"
+msgstr "elementInserted:"
-#: 03090101.xhp
+#: 03132000.xhp
msgctxt ""
-"03090101.xhp\n"
-"par_id3154684\n"
-"8\n"
+"03132000.xhp\n"
+"par_id3159254\n"
+"33\n"
"help.text"
-msgid "<emph>Else</emph> and <emph>ElseIf</emph> statements are optional."
-msgstr "Операторите <emph>Else</emph> и <emph>ElseIf</emph> не са задължителни."
+msgid "Method of the com.sun.star.container.XContainerListener interface"
+msgstr "Метод на интерфейса com.sun.star.container.XContainerListener"
-#: 03090101.xhp
+#: 03132000.xhp
msgctxt ""
-"03090101.xhp\n"
-"par_id3152939\n"
-"9\n"
+"03132000.xhp\n"
+"par_id3147287\n"
+"32\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 "Чрез операторите <emph>GoTo</emph> и <emph>GoSub</emph> можете да организирате преход навън от блок <emph>If…Then</emph>, но не и преход отвън към вътрешността на структура <emph>If…Then</emph>."
+msgid "elementRemoved:"
+msgstr "elementRemoved:"
-#: 03090101.xhp
+#: 03132000.xhp
msgctxt ""
-"03090101.xhp\n"
-"par_id3153951\n"
-"10\n"
+"03132000.xhp\n"
+"par_id3146119\n"
+"31\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 "Следващият пример ви позволява да въведете крайната дата на срока на годност на продукт и определя дали срокът е изтекъл."
+msgid "Method of the com.sun.star.container.XContainerListener interface"
+msgstr "Метод на интерфейса com.sun.star.container.XContainerListener"
-#: 03090101.xhp
+#: 03132000.xhp
msgctxt ""
-"03090101.xhp\n"
-"hd_id3152576\n"
-"11\n"
+"03132000.xhp\n"
+"par_id3153951\n"
+"30\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "elementReplaced:"
+msgstr "elementReplaced:"
-#: 03090101.xhp
+#: 03132000.xhp
msgctxt ""
-"03090101.xhp\n"
-"par_id3154490\n"
-"16\n"
+"03132000.xhp\n"
+"par_id3154013\n"
+"29\n"
"help.text"
-msgid "sDate = InputBox(\"Enter the expiration date (MM.DD.YYYY)\")"
-msgstr "sDate = InputBox(\"Въведете датата на изтичане на срока (ММ.ДД.ГГГГ)\")"
+msgid "Method of the com.sun.star.container.XContainerListener interface"
+msgstr "Метод на интерфейса com.sun.star.container.XContainerListener"
-#: 03090101.xhp
+#: 03132000.xhp
msgctxt ""
-"03090101.xhp\n"
-"par_id3155601\n"
-"21\n"
+"03132000.xhp\n"
+"par_id3147435\n"
+"28\n"
"help.text"
-msgid "MsgBox \"The expiration date has passed\""
-msgstr "MsgBox \"Срокът е изтекъл.\""
+msgid "In this example, the prefix is ContListener_. The following subroutines must therefore be implemented in Basic:"
+msgstr "В този пример префиксът е ContListener_. Следователно в кода на Basic трябва да са реализирани следните подпрограми:"
-#: 03090101.xhp
+#: 03132000.xhp
msgctxt ""
-"03090101.xhp\n"
-"par_id3146912\n"
-"23\n"
+"03132000.xhp\n"
+"par_id3155411\n"
+"27\n"
"help.text"
-msgid "MsgBox \"The expiration date has not yet passed\""
-msgstr "MsgBox \"Срокът още не е изтекъл.\""
+msgid "ContListener_disposing"
+msgstr "ContListener_disposing"
-#: 03090101.xhp
+#: 03132000.xhp
msgctxt ""
-"03090101.xhp\n"
-"par_id3154754\n"
-"25\n"
+"03132000.xhp\n"
+"par_id3146923\n"
+"26\n"
"help.text"
-msgid "MsgBox \"The expiration date is today\""
-msgstr "MsgBox \"Срокът изтича днес\""
+msgid "ContListener_elementInserted"
+msgstr "ContListener_elementInserted"
-#: 03120201.xhp
+#: 03132000.xhp
msgctxt ""
-"03120201.xhp\n"
-"tit\n"
+"03132000.xhp\n"
+"par_id3147318\n"
+"25\n"
"help.text"
-msgid "Space Function [Runtime]"
-msgstr "Функция Space [динамична]"
+msgid "ContListener_elementRemoved"
+msgstr "ContListener_elementRemoved"
-#: 03120201.xhp
+#: 03132000.xhp
msgctxt ""
-"03120201.xhp\n"
-"bm_id3150499\n"
+"03132000.xhp\n"
+"par_id3152578\n"
+"24\n"
"help.text"
-msgid "<bookmark_value>Space function</bookmark_value>"
-msgstr "<bookmark_value>Space, функция</bookmark_value>"
+msgid "ContListener_elementReplaced"
+msgstr "ContListener_elementReplaced"
-#: 03120201.xhp
+#: 03132000.xhp
msgctxt ""
-"03120201.xhp\n"
-"hd_id3150499\n"
-"1\n"
+"03132000.xhp\n"
+"par_id3150592\n"
+"23\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120201.xhp\" name=\"Space Function [Runtime]\">Space Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120201.xhp\" name=\"Функция Space [динамична]\">Функция Space [динамична]</link>"
+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 "За всеки тип слушател съществува тип – структура, който съдържа информация за събитие. Когато се изпълни метод на слушателя, екземпляр на събитието се изпраща на метода като параметър. Базовите методи на слушателя също могат да извикват тези обекти – събития, стига в декларацията Sub да е включен съответният параметър. Например:"
-#: 03120201.xhp
+#: 03132000.xhp
msgctxt ""
-"03120201.xhp\n"
-"par_id3154927\n"
-"2\n"
+"03132000.xhp\n"
+"par_id3153876\n"
+"21\n"
"help.text"
-msgid "Returns a string that consists of a specified amount of spaces."
-msgstr "Връща низ, състоящ се от указания брой интервали."
+msgid "MsgBox \"disposing\""
+msgstr "MsgBox \"disposing\""
-#: 03120201.xhp
+#: 03132000.xhp
msgctxt ""
-"03120201.xhp\n"
-"hd_id3153394\n"
-"3\n"
+"03132000.xhp\n"
+"par_id3154098\n"
+"17\n"
"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
+msgid "MsgBox \"elementInserted\""
+msgstr "MsgBox \"elementInserted\""
-#: 03120201.xhp
+#: 03132000.xhp
msgctxt ""
-"03120201.xhp\n"
-"par_id3143267\n"
-"4\n"
+"03132000.xhp\n"
+"par_id3153947\n"
+"13\n"
"help.text"
-msgid "Space (n As Long)"
-msgstr "Space (n As Long)"
+msgid "MsgBox \"elementRemoved\""
+msgstr "MsgBox \"elementRemoved\""
-#: 03120201.xhp
+#: 03132000.xhp
msgctxt ""
-"03120201.xhp\n"
-"hd_id3147242\n"
-"5\n"
+"03132000.xhp\n"
+"par_id3148915\n"
+"9\n"
"help.text"
-msgid "Return value:"
-msgstr "Връщана стойност:"
+msgid "MsgBox \"elementReplaced\""
+msgstr "MsgBox \"elementReplaced\""
-#: 03120201.xhp
+#: 03132000.xhp
msgctxt ""
-"03120201.xhp\n"
-"par_id3149233\n"
+"03132000.xhp\n"
+"par_id3156056\n"
"6\n"
"help.text"
-msgid "String"
-msgstr "String"
-
-#: 03120201.xhp
-msgctxt ""
-"03120201.xhp\n"
-"hd_id3156152\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
-
-#: 03120201.xhp
-msgctxt ""
-"03120201.xhp\n"
-"par_id3143228\n"
-"8\n"
-"help.text"
-msgid "<emph>n:</emph> Numeric expression that defines the number of spaces in the string. The maximum allowed value of n is 65535."
-msgstr "<emph>n:</emph> числов израз, определящ броя на интервалите в низа. Максималната разрешена стойнсот на n е 65535."
+msgid "You do not need to include the parameter of an event object if the object is not used:"
+msgstr "Не е необходимо да включвате параметъра за обект – събитие, ако обектът не се използва:"
-#: 03120201.xhp
+#: 03132000.xhp
msgctxt ""
-"03120201.xhp\n"
-"hd_id3154760\n"
-"9\n"
+"03132000.xhp\n"
+"par_id3150042\n"
+"5\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "' Minimal implementation of Sub disposing"
+msgstr "' Минимална реализация на Sub disposing"
-#: 03120201.xhp
+#: 03132000.xhp
msgctxt ""
-"03120201.xhp\n"
-"par_id3154216\n"
-"18\n"
+"03132000.xhp\n"
+"par_id3150940\n"
+"2\n"
"help.text"
-msgid "MsgBox sOut,0,\"Info:\""
-msgstr "MsgBox sOut, 0, \"Информация:\""
+msgid "Listener methods must <emph>always</emph> be implemented to avoid Basic run-time errors."
+msgstr "Методите на слушателя трябва <emph>винаги</emph> да са реализирани, за да се избегнат грешки по време на изпълнение."
-#: 03030101.xhp
+#: 03132100.xhp
msgctxt ""
-"03030101.xhp\n"
+"03132100.xhp\n"
"tit\n"
"help.text"
-msgid "DateSerial Function [Runtime]"
-msgstr "Функция DateSerial [динамична]"
+msgid "GetGuiType Function [Runtime]"
+msgstr "Функция GetGuiType [динамична]"
-#: 03030101.xhp
+#: 03132100.xhp
msgctxt ""
-"03030101.xhp\n"
-"bm_id3157896\n"
+"03132100.xhp\n"
+"bm_id3147143\n"
"help.text"
-msgid "<bookmark_value>DateSerial function</bookmark_value>"
-msgstr "<bookmark_value>DateSerial, функция</bookmark_value>"
+msgid "<bookmark_value>GetGuiType function</bookmark_value>"
+msgstr "<bookmark_value>GetGuiType function</bookmark_value>"
-#: 03030101.xhp
+#: 03132100.xhp
msgctxt ""
-"03030101.xhp\n"
-"hd_id3157896\n"
+"03132100.xhp\n"
+"hd_id3155310\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03030101.xhp\" name=\"DateSerial Function [Runtime]\">DateSerial Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03030101.xhp\" name=\"Функция DateSerial [динамична]\">Функция DateSerial [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03132100.xhp\" name=\"GetGuiType Function [Runtime]\">GetGuiType Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03132100.xhp\" name=\"Функция GetGuiType [динамична]\">Функция GetGuiType [динамична]</link>"
-#: 03030101.xhp
+#: 03132100.xhp
msgctxt ""
-"03030101.xhp\n"
-"par_id3143267\n"
+"03132100.xhp\n"
+"par_id3152459\n"
"2\n"
"help.text"
-msgid "Returns a <emph>Date</emph> value for a specified year, month, or day."
-msgstr "Връща стойност от тип <emph>Date</emph> за зададена година, месец или ден."
+msgid "Returns a numerical value that specifies the graphical user interface."
+msgstr "Връща числова стойност, отразяваща вида на графичния потребителски интерфейс."
-#: 03030101.xhp
+#: 03132100.xhp
msgctxt ""
-"03030101.xhp\n"
-"hd_id3147264\n"
+"03132100.xhp\n"
+"par_id3153323\n"
"3\n"
"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
+msgid "This runtime function is only provided for downward compatibility to previous versions. The return value is not defined in client-server environments."
+msgstr "Тази функция служи само за съвместимост с предишни версии. Резултатът не е дефиниран в среда от типа „клиент – сървър“."
-#: 03030101.xhp
+#: 03132100.xhp
msgctxt ""
-"03030101.xhp\n"
-"par_id3149670\n"
+"03132100.xhp\n"
+"hd_id3154894\n"
"4\n"
"help.text"
-msgid "DateSerial (year, month, day)"
-msgstr "DateSerial (Year, Month, Day)"
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 03030101.xhp
+#: 03132100.xhp
msgctxt ""
-"03030101.xhp\n"
-"hd_id3150792\n"
+"03132100.xhp\n"
+"par_id3147143\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Връщана стойност:"
+msgid "GetGUIType()"
+msgstr "GetGUIType()"
-#: 03030101.xhp
+#: 03132100.xhp
msgctxt ""
-"03030101.xhp\n"
-"par_id3150398\n"
+"03132100.xhp\n"
+"hd_id3149346\n"
"6\n"
"help.text"
-msgid "Date"
-msgstr "Date"
+msgid "Return value:"
+msgstr "Връщана стойност:"
-#: 03030101.xhp
+#: 03132100.xhp
msgctxt ""
-"03030101.xhp\n"
-"hd_id3154141\n"
+"03132100.xhp\n"
+"par_id3153748\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "Integer"
+msgstr "Integer"
-#: 03030101.xhp
+#: 03132100.xhp
msgctxt ""
-"03030101.xhp\n"
-"par_id3147229\n"
+"03132100.xhp\n"
+"hd_id3149177\n"
"8\n"
"help.text"
-msgid "<emph>Year:</emph> Integer expression that indicates a year. All values between 0 and 99 are interpreted as the years 1900-1999. For years that fall outside this range, you must enter all four digits."
-msgstr "<emph>Year:</emph> целочислен израз, означаващ година. Стойностите между 0 и 99 се тълкуват като годините от 1900 до 1999. За години извън този диапазон трябва да зададете и четирите цифри."
+msgid "Return values:"
+msgstr "Връщани стойности:"
-#: 03030101.xhp
+#: 03132100.xhp
msgctxt ""
-"03030101.xhp\n"
-"par_id3156280\n"
+"03132100.xhp\n"
+"par_id3147242\n"
"9\n"
"help.text"
-msgid "<emph>Month:</emph> Integer expression that indicates the month of the specified year. The accepted range is from 1-12."
-msgstr "<emph>Month:</emph> целочислен израз, задаващ месеца от указаната година. Допустимите стойности са от 1 до 12."
-
-#: 03030101.xhp
-msgctxt ""
-"03030101.xhp\n"
-"par_id3151043\n"
-"10\n"
-"help.text"
-msgid "<emph>Day:</emph> Integer expression that indicates the day of the specified month. The accepted range is from 1-31. No error is returned when you enter a non-existing day for a month shorter than 31 days."
-msgstr "<emph>Day:</emph> целочислен израз, означаващ деня от указания месец. Допустимите стойности са от 1 до 31. Не се връща грешка, ако въведете несъществуващ ден за месец, по-къс от 31 дни."
+msgid "1: Windows"
+msgstr "1: Windows"
-#: 03030101.xhp
+#: 03132100.xhp
msgctxt ""
-"03030101.xhp\n"
-"par_id3161832\n"
+"03132100.xhp\n"
+"par_id3156152\n"
"11\n"
"help.text"
-msgid "The <emph>DateSerial function</emph> returns the number of days between December 30,1899 and the given date. You can use this function to calculate the difference between two dates."
-msgstr "Функцията <emph>DateSerial</emph> връща броя дни между 30 декември 1899 г. и дадената дата. С помощта на тази функция можете да пресметнете разликата между две дати."
+msgid "4: UNIX"
+msgstr "4: UNIX"
-#: 03030101.xhp
+#: 03132100.xhp
msgctxt ""
-"03030101.xhp\n"
-"par_id3155306\n"
+"03132100.xhp\n"
+"hd_id3148685\n"
"12\n"
"help.text"
-msgid "The <emph>DateSerial function</emph> returns the data type Variant with VarType 7 (Date). Internally, this value is stored as a Double value, so that when the given date is 1.1.1900, the returned value is 2. Negative values correspond to dates before December 30, 1899 (not inclusive)."
-msgstr "Функцията <emph>DateSerial</emph> връща стойности от тип Variant с VarType 7 (Date). Вътрешно стойността се съхранява като стойност от тип Double, например ако дадената дата е 1.1.1900 г., върнатата стойност е 2. Отрицателните стойности съответстват на дати преди 30 декември 1899 г. (без нея самата)."
-
-#: 03030101.xhp
-msgctxt ""
-"03030101.xhp\n"
-"par_id3152576\n"
-"13\n"
-"help.text"
-msgid "If a date is defined that lies outside of the accepted range, $[officename] Basic returns an error message."
-msgstr "Ако е зададена дата извън допустимия диапазон, $[officename] Basic показва съобщение за грешка."
-
-#: 03030101.xhp
-msgctxt ""
-"03030101.xhp\n"
-"par_id3149481\n"
-"14\n"
-"help.text"
-msgid "Whereas you define the <emph>DateValue function</emph> as a string that contains the date, the <emph>DateSerial function</emph> evaluates each of the parameters (year, month, day) as separate numeric expressions."
-msgstr "Докато <emph>DateValue</emph> очаква низ, съдържащ датата, функцията <emph>DateSerial</emph> приема като параметри отделни числови изрази за година, месец и ден."
-
-#: 03030101.xhp
-msgctxt ""
-"03030101.xhp\n"
-"hd_id3155411\n"
-"15\n"
-"help.text"
msgid "Example:"
msgstr "Пример:"
-#: 03030101.xhp
-msgctxt ""
-"03030101.xhp\n"
-"par_id3154942\n"
-"help.text"
-msgid "MsgBox lDate ' returns 23476"
-msgstr "MsgBox lDate ' връща 23476"
-
-#: 03030101.xhp
-msgctxt ""
-"03030101.xhp\n"
-"par_id3151074\n"
-"help.text"
-msgid "MsgBox sDate ' returns 04/09/1964"
-msgstr "MsgBox sDate ' връща 04/09/1964"
-
-#: 03020305.xhp
-msgctxt ""
-"03020305.xhp\n"
-"tit\n"
-"help.text"
-msgid "Seek Statement [Runtime]"
-msgstr "Оператор Seek [динамичен]"
-
-#: 03020305.xhp
-msgctxt ""
-"03020305.xhp\n"
-"bm_id3159413\n"
-"help.text"
-msgid "<bookmark_value>Seek statement</bookmark_value>"
-msgstr "<bookmark_value>Seek, оператор</bookmark_value>"
-
-#: 03020305.xhp
-msgctxt ""
-"03020305.xhp\n"
-"hd_id3159413\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03020305.xhp\" name=\"Seek Statement [Runtime]\">Seek Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03020305.xhp\" name=\"Оператор Seek [динамичен]\">Оператор Seek [динамичен]</link>"
-
-#: 03020305.xhp
-msgctxt ""
-"03020305.xhp\n"
-"par_id3153381\n"
-"2\n"
-"help.text"
-msgid "Sets the position for the next writing or reading in a file that was opened with the Open statement."
-msgstr "Задава позицията за следващото записване или четене във файл, отворен с оператора Open."
-
-#: 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 "За файлове с произволен достъп операторът Seek задава номера на следващия запис, до който ще бъде осъществен достъп."
-
-#: 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 "За всички други файлове операторът задава позицията на байта, с който ще бъде извършена следващата операция."
-
-#: 03020305.xhp
-msgctxt ""
-"03020305.xhp\n"
-"par_id3156280\n"
-"5\n"
-"help.text"
-msgid "See also: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>, <link href=\"text/sbasic/shared/03020304.xhp\" name=\"Seek\">Seek</link>."
-msgstr "Виж също: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>, <link href=\"text/sbasic/shared/03020304.xhp\" name=\"Seek\">Seek</link>."
-
-#: 03020305.xhp
-msgctxt ""
-"03020305.xhp\n"
-"hd_id3145785\n"
-"6\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
-
-#: 03020305.xhp
-msgctxt ""
-"03020305.xhp\n"
-"par_id3145273\n"
-"7\n"
-"help.text"
-msgid "Seek[#FileNumber], Position (As Long)"
-msgstr "Seek[#FileNumber], Position (As Long)"
-
-#: 03020305.xhp
-msgctxt ""
-"03020305.xhp\n"
-"hd_id3154321\n"
-"8\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
-
-#: 03020305.xhp
-msgctxt ""
-"03020305.xhp\n"
-"par_id3153952\n"
-"9\n"
-"help.text"
-msgid "<emph>FileNumber: </emph>The data channel number used in the Open statement."
-msgstr "<emph>FileNumber:</emph> номерът на канал за данни, използван в оператора Open."
-
-#: 03020305.xhp
-msgctxt ""
-"03020305.xhp\n"
-"par_id3145366\n"
-"10\n"
-"help.text"
-msgid "<emph>Position: </emph>Position for the next writing or reading. Position can be a number between 1 and 2,147,483,647. According to the file type, the position indicates the number of the record (files in the Random mode) or the byte position (files in the Binary, Output, Append or Input mode). The first byte in a file is position 1, the second byte is position 2, and so on."
-msgstr "<emph>Position:</emph> позиция за следващото записване или четене. Тя може да бъде число между 1 и 2147483647. В зависимост от типа на файла, позицията означава номера на записа (файлове в режима Random) или позицията на байта (файлове в режимите Binary, Output, Append или Input). Първият байт във файла оговаря на позиция 1, вторият – на позиция 2 и т.н."
-
-#: 03030206.xhp
+#: 03132200.xhp
msgctxt ""
-"03030206.xhp\n"
+"03132200.xhp\n"
"tit\n"
"help.text"
-msgid "TimeValue Function [Runtime]"
-msgstr "Функция TimeValue [динамична]"
+msgid "ThisComponent Statement [Runtime]"
+msgstr "Функция ThisComponent [динамична]"
-#: 03030206.xhp
+#: 03132200.xhp
msgctxt ""
-"03030206.xhp\n"
-"bm_id3149670\n"
+"03132200.xhp\n"
+"bm_id3155342\n"
"help.text"
-msgid "<bookmark_value>TimeValue function</bookmark_value>"
-msgstr "<bookmark_value>TimeValue, функция</bookmark_value>"
+msgid "<bookmark_value>ThisComponent property</bookmark_value><bookmark_value>components;addressing</bookmark_value>"
+msgstr "<bookmark_value>ThisComponent, свойство</bookmark_value><bookmark_value>компоненти;адресиране</bookmark_value>"
-#: 03030206.xhp
+#: 03132200.xhp
msgctxt ""
-"03030206.xhp\n"
-"hd_id3149670\n"
+"03132200.xhp\n"
+"hd_id3155342\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03030206.xhp\" name=\"TimeValue Function [Runtime]\">TimeValue Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03030206.xhp\" name=\"Функция TimeValue [динамична]\">Функция TimeValue [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03132200.xhp\" name=\"ThisComponent [Runtime]\">ThisComponent [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03132200.xhp\" name=\"Функция ThisComponent [динамична]\">Функция ThisComponent [динамична]</link>"
-#: 03030206.xhp
+#: 03132200.xhp
msgctxt ""
-"03030206.xhp\n"
-"par_id3153361\n"
+"03132200.xhp\n"
+"par_id3154923\n"
"2\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 "Изчислява серийна стойност за час по зададени като низове час, минута и секунда. Стойността представя часа като едно единствено число. Тя може да се използва за изчисляване на разлики между часове."
+msgid "Addresses the active component so that its properties can be read and set. ThisComponent is used from document Basic, where it represents the document the Basic belongs to. The type of object accessed by ThisComponent depends on the document type."
+msgstr "Адресира активния компонент с цел четене и промяна на свойствата му. ThisComponent се използва в кода на Basic в документ и представя документа, на който принадлежи кодът. Типът на обекта, връщан от ThisComponent, зависи от типа на документа."
-#: 03030206.xhp
+#: 03132200.xhp
msgctxt ""
-"03030206.xhp\n"
-"hd_id3154138\n"
+"03132200.xhp\n"
+"hd_id3154346\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03030206.xhp
+#: 03132200.xhp
msgctxt ""
-"03030206.xhp\n"
-"par_id3156282\n"
+"03132200.xhp\n"
+"par_id3151056\n"
"4\n"
"help.text"
-msgid "TimeValue (Text As String)"
-msgstr "TimeValue (Text As String)"
+msgid "ThisComponent"
+msgstr "ThisComponent"
-#: 03030206.xhp
+#: 03132200.xhp
msgctxt ""
-"03030206.xhp\n"
-"hd_id3153969\n"
+"03132200.xhp\n"
+"hd_id3154940\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Връщана стойност:"
-
-#: 03030206.xhp
-msgctxt ""
-"03030206.xhp\n"
-"par_id3156424\n"
-"6\n"
-"help.text"
-msgid "Date"
-msgstr "Date"
+msgid "Example:"
+msgstr "Пример:"
-#: 03030206.xhp
+#: 03132200.xhp
msgctxt ""
-"03030206.xhp\n"
-"hd_id3145172\n"
+"03132200.xhp\n"
+"par_id3154123\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
-
-#: 03030206.xhp
-msgctxt ""
-"03030206.xhp\n"
-"par_id3145786\n"
-"8\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 "<emph>Text:</emph> низов израз, съдържащ часа във формат „ЧЧ:ММ:СС“."
-
-#: 03030206.xhp
-msgctxt ""
-"03030206.xhp\n"
-"par_id3152578\n"
-"9\n"
-"help.text"
-msgid "Use the TimeValue function to convert any time into a single value, so that you can calculate time differences."
-msgstr "С функцията TimeValue можете да преобразувате произволен точен час в числова стойност, за да изчислявате разлики между моменти във времето."
+msgid "' updates the \"Table of Contents\" in a text doc"
+msgstr "' Обновява таблицата на съдържанието в текстов документ"
-#: 03030206.xhp
+#: 03132200.xhp
msgctxt ""
-"03030206.xhp\n"
-"par_id3163710\n"
+"03132200.xhp\n"
+"par_id3153194\n"
"10\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 "Функцията TimeValue връща стойност от типа Variant с VarType 7 (Date) и съхранява вътрешно стойността като число с двойна точност между 0 и 0,9999999999."
+msgid "index = allindexes.getByName(\"Table of Contents1\")"
+msgstr "index = allindexes.getByName(\"Table of Contents1\")"
-#: 03030206.xhp
+#: 03132200.xhp
msgctxt ""
-"03030206.xhp\n"
-"par_id3151117\n"
+"03132200.xhp\n"
+"par_id3156422\n"
"11\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 "За разлика от функциите DateSerial и DateValue, при които серийните стойности за дати съответстват на относителен резултат в дни спрямо фиксирана дата, с резултатите от функцията TimeValue можете да извършвате изчисления, но не можете да ги преобразувате обратно."
-
-#: 03030206.xhp
-msgctxt ""
-"03030206.xhp\n"
-"par_id3147426\n"
-"12\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 "При фукцията TimeSerial можете да подадете отделните параметри (час, минута и секунда) като отделни числови изрази. При TimeValue можете да подадете параметър низ, съдържащ желания час."
-
-#: 03030206.xhp
-msgctxt ""
-"03030206.xhp\n"
-"hd_id3145271\n"
-"13\n"
-"help.text"
-msgid "Example:"
-msgstr "Пример:"
-
-#: 03030206.xhp
-msgctxt ""
-"03030206.xhp\n"
-"par_id3149378\n"
-"33\n"
-"help.text"
-msgid "a1 = \"start time\""
-msgstr "a1 = \"начален час\""
-
-#: 03030206.xhp
-msgctxt ""
-"03030206.xhp\n"
-"par_id3145800\n"
-"34\n"
-"help.text"
-msgid "b1 = \"end time\""
-msgstr "b1 = \"краен час\""
-
-#: 03030206.xhp
-msgctxt ""
-"03030206.xhp\n"
-"par_id3151074\n"
-"35\n"
-"help.text"
-msgid "c1 = \"total time\""
-msgstr "c1 = \"общо време\""
+msgid "' use the default name for Table of Contents and a 1"
+msgstr "' Използваме подразбираното име за таблицата и 1"
-#: 03120403.xhp
+#: 03132300.xhp
msgctxt ""
-"03120403.xhp\n"
+"03132300.xhp\n"
"tit\n"
"help.text"
-msgid "StrComp Function [Runtime]"
-msgstr "Функция StrComp [динамична]"
+msgid "CreateUnoValue Function [Runtime]"
+msgstr "Функция CreateUnoValue [динамична]"
-#: 03120403.xhp
+#: 03132300.xhp
msgctxt ""
-"03120403.xhp\n"
-"bm_id3156027\n"
+"03132300.xhp\n"
+"bm_id3150682\n"
"help.text"
-msgid "<bookmark_value>StrComp function</bookmark_value>"
-msgstr "<bookmark_value>StrComp, функция</bookmark_value>"
+msgid "<bookmark_value>CreateUnoValue function</bookmark_value>"
+msgstr "<bookmark_value>CreateUnoValue, функция</bookmark_value>"
-#: 03120403.xhp
+#: 03132300.xhp
msgctxt ""
-"03120403.xhp\n"
-"hd_id3156027\n"
+"03132300.xhp\n"
+"hd_id3150682\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120403.xhp\" name=\"StrComp Function [Runtime]\">StrComp Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120403.xhp\" name=\"Функция StrComp [динамична]\">Функция StrComp [динамична]</link>"
+msgid "<link href=\"text/sbasic/shared/03132300.xhp\" name=\"CreateUnoValue Function [Runtime]\">CreateUnoValue Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03132300.xhp\" name=\"Функция CreateUnoValue [динамична]\">Функция CreateUnoValue [динамична]</link>"
-#: 03120403.xhp
+#: 03132300.xhp
msgctxt ""
-"03120403.xhp\n"
-"par_id3155805\n"
+"03132300.xhp\n"
+"par_id3147291\n"
"2\n"
"help.text"
-msgid "Compares two strings and returns an integer value that represents the result of the comparison."
-msgstr "Сравмява два низа и връща числова стойност, представяща резултата от сравнението."
+msgid "Returns an object that represents a strictly typed value referring to the Uno type system."
+msgstr "Връща обект, който представлява стойност със строг тип, базиран на системата от типове на Uno."
-#: 03120403.xhp
+#: 03132300.xhp
msgctxt ""
-"03120403.xhp\n"
-"hd_id3153345\n"
+"03132300.xhp\n"
+"par_id3143267\n"
"3\n"
"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
+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 "Този обект се преобразува автоматично към тип Any от съответния тип, когато се предава към Uno. Типът трябва да бъде зададен като напълно квалифицирано тиме на тип на Uno."
-#: 03120403.xhp
+#: 03132300.xhp
msgctxt ""
-"03120403.xhp\n"
-"par_id3150503\n"
+"03132300.xhp\n"
+"par_id3153626\n"
"4\n"
"help.text"
-msgid "StrComp (Text1 As String, Text2 As String[, Compare])"
-msgstr "StrComp (Text1 As String, Text2 As String[, Compare])"
+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 "Типът Any се използва често в програмния интерфейс $[officename] API. Той съответства на типа Variant, изпозлван в други среди за програмиране. Променливите от тип Any могат съдържат произволен тип на Uno и се използват в общите интерфейси на Uno."
-#: 03120403.xhp
+#: 03132300.xhp
msgctxt ""
-"03120403.xhp\n"
-"hd_id3147574\n"
+"03132300.xhp\n"
+"hd_id3147560\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Връщана стойност:"
+msgid "Syntax:"
+msgstr "Синтаксис:"
-#: 03120403.xhp
+#: 03132300.xhp
msgctxt ""
-"03120403.xhp\n"
-"par_id3156152\n"
+"03132300.xhp\n"
+"par_id3154760\n"
"6\n"
"help.text"
-msgid "Integer"
-msgstr "Integer"
+msgid "oUnoValue = CreateUnoValue( \"[]byte\", MyBasicValue ) to get a byte sequence."
+msgstr "oUnoValue = CreateUnoValue(\"[]byte\", MyBasicValue) за получаване на последователност от байтове."
-#: 03120403.xhp
+#: 03132300.xhp
msgctxt ""
-"03120403.xhp\n"
-"hd_id3150984\n"
+"03132300.xhp\n"
+"par_id3150541\n"
"7\n"
"help.text"
-msgid "Parameter:"
-msgstr "Параметър:"
+msgid "If CreateUnoValue cannot be converted to the specified Uno type, and error occurs. For the conversion, the TypeConverter service is used."
+msgstr "Ако резултатът от CreateUnoValue не може да бъде преобразуван към зададения тип на Uno, възниква грешка. За преобразуване се използва услугата TypeConverter."
-#: 03120403.xhp
+#: 03132300.xhp
msgctxt ""
-"03120403.xhp\n"
-"par_id3153061\n"
+"03132300.xhp\n"
+"par_id3153524\n"
"8\n"
"help.text"
-msgid "<emph>Text1:</emph> Any string expression"
-msgstr "<emph>Text1:</emph> израз със стойност низ."
+msgid "This function is intended for use in situations where the default Basic to Uno type converting mechanism is insufficient. This can happen when you try to access generic Any based interfaces, such as XPropertySet::setPropertyValue( Name, Value ) or X???Container::insertBy???( ???, Value ), from $[officename] Basic. The Basic runtime does not recognize these types as they are only defined in the corresponding service."
+msgstr "Тази функция е предназначена за употреба в ситуации, когато подразбиранят механизъм за преобразуване на типове от Basic към Uno е недостатъчен. Това може да се случи, ако се опитате да работите от $[officename] Basic с общи, базирани на Any интерфейси като XPropertySet::setPropertyValue(Name, Value) или X???Container::insertBy???( ???, Value ). Средата за изпълнение на Basic не разпознава тези типове, тъй като те са дефинирани само в съответната услуга."
-#: 03120403.xhp
+#: 03132300.xhp
msgctxt ""
-"03120403.xhp\n"
-"par_id3147560\n"
+"03132300.xhp\n"
+"par_id3154366\n"
"9\n"
"help.text"
-msgid "<emph>Text2:</emph> Any string expression"
-msgstr "<emph>Text2:</emph> израз със стойност низ."
+msgid "In this type of situation, $[officename] Basic chooses the best matching type for the Basic type that you want to convert. However, if the wrong type is selected, an error occurs. You use the CreateUnoValue() function to create a value for the unknown Uno type."
+msgstr "В такава ситуация $[officename] Basic избира най-точно съответстващия тип за типа от Basic, който искате да се преобразува. Ако обаче бъде избран погрешен тип, възниква грешка. Можете да използвате функцията CreateUnoValue(), за да създадете стойност за неизвестен тип на Uno."
-#: 03120403.xhp
+#: 03132300.xhp
msgctxt ""
-"03120403.xhp\n"
-"par_id3146796\n"
+"03132300.xhp\n"
+"par_id3150769\n"
"10\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 "<emph>Compare:</emph> незадължителен параметър за начин на сравняване. Ако Compare = 1, сравняването е чувствително към регистъра на буквите. Ако Compare = 0, малките и главните букви не се различават."
-
-#: 03120403.xhp
-msgctxt ""
-"03120403.xhp\n"
-"hd_id3154940\n"
-"13\n"
-"help.text"
-msgid "Return value"
-msgstr "Връщана стойност:"
-
-#: 03120403.xhp
-msgctxt ""
-"03120403.xhp\n"
-"par_id3150358\n"
-"27\n"
-"help.text"
-msgid "If Text1 < Text2 the function returns -1"
-msgstr "Ако Text1 < Text2, функцията връща -1."
-
-#: 03120403.xhp
-msgctxt ""
-"03120403.xhp\n"
-"par_id3151043\n"
-"28\n"
-"help.text"
-msgid "If Text1 = Text2 the function returns 0"
-msgstr "Ако Text1 = Text2, функцията връща 0."
-
-#: 03120403.xhp
-msgctxt ""
-"03120403.xhp\n"
-"par_id3158410\n"
-"29\n"
-"help.text"
-msgid "If Text1 > Text2 the function returns 1"
-msgstr "Ако Text1 > Text2, функцията връща 1."
+msgid "You can also use this function to pass non-Any values, but this is not recommend. If Basic already knows the target type, using the CreateUnoValue() function will only lead to additional converting operations that slow down the Basic execution."
+msgstr "Можете да използвате тази функция и за предаване на стойности не от тип Any, но това не се препоръчва. Ако Basic познава целевия тип, използването на CreateUnoValue() ще доведе до излишни преобразувания, които само ще забавят изпълнението на кода на Basic."
-#: 03120403.xhp
+#: 03132400.xhp
msgctxt ""
-"03120403.xhp\n"
-"hd_id3153968\n"
-"18\n"
+"03132400.xhp\n"
+"tit\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "CreateObject Function [Runtime]"
+msgstr "CreateObject Function [Runtime]"
-#: 03120402.xhp
+#: 03132400.xhp
msgctxt ""
-"03120402.xhp\n"
-"tit\n"
+"03132400.xhp\n"
+"bm_id659810\n"
"help.text"
-msgid "Len Function [Runtime]"
-msgstr "Функция Len [динамична]"
+msgid "<bookmark_value>CreateObject function</bookmark_value>"
+msgstr "<bookmark_value>CreateObject, функция</bookmark_value>"
-#: 03120402.xhp
+#: 03132400.xhp
msgctxt ""
-"03120402.xhp\n"
-"bm_id3154136\n"
+"03132400.xhp\n"
+"par_idN10580\n"
"help.text"
-msgid "<bookmark_value>Len function</bookmark_value>"
-msgstr "<bookmark_value>Len, функция</bookmark_value>"
+msgid "<link href=\"text/sbasic/shared/03132400.xhp\">CreateObject Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03132400.xhp\">Функция CreateObject [динамична]</link>"
-#: 03120402.xhp
+#: 03132400.xhp
msgctxt ""
-"03120402.xhp\n"
-"hd_id3154136\n"
-"1\n"
+"03132400.xhp\n"
+"par_idN10590\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120402.xhp\" name=\"Len Function [Runtime]\">Len Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120402.xhp\" name=\"Функция Len [динамична]\">Функция Len [динамична]</link>"
+msgid "<ahelp hid=\".\">Creates a UNO object. On Windows, can also create OLE objects.</ahelp>"
+msgstr "<ahelp hid=\".\">Създава обект на UNO. В Windows може да създава и OLE обекти.</ahelp>"
-#: 03120402.xhp
+#: 03132400.xhp
msgctxt ""
-"03120402.xhp\n"
-"par_id3147576\n"
-"2\n"
+"03132400.xhp\n"
+"par_idN1059F\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 "Връща броя на знаците в низ или броя байтове, необходими за съхраняването на променлива."
+msgid "This method creates instances of the type that is passed as parameter."
+msgstr "Този метод създава екземпляри на класа, подаден като параметър."
-#: 03120402.xhp
+#: 03132400.xhp
msgctxt ""
-"03120402.xhp\n"
-"hd_id3159177\n"
-"3\n"
+"03132400.xhp\n"
+"par_idN105A2\n"
"help.text"
msgid "Syntax:"
msgstr "Синтаксис:"
-#: 03120402.xhp
+#: 03132400.xhp
msgctxt ""
-"03120402.xhp\n"
-"par_id3150669\n"
-"4\n"
+"03132400.xhp\n"
+"par_idN105A6\n"
"help.text"
-msgid "Len (Text As String)"
-msgstr "Len (Text As String)"
+msgid "oObj = CreateObject( type )"
+msgstr "oObj = CreateObject(тип)"
-#: 03120402.xhp
+#: 03132400.xhp
msgctxt ""
-"03120402.xhp\n"
-"hd_id3148473\n"
-"5\n"
+"03132400.xhp\n"
+"par_idN105A9\n"
"help.text"
-msgid "Return value:"
-msgstr "Връщана стойност:"
+msgid "Example:"
+msgstr "Пример:"
-#: 03120402.xhp
+#: 03132500.xhp
msgctxt ""
-"03120402.xhp\n"
-"par_id3143270\n"
-"6\n"
+"03132500.xhp\n"
+"tit\n"
"help.text"
-msgid "Long"
-msgstr "Long"
+msgid "GetDefaultContext Function [Runtime]"
+msgstr "Функция GetDefaultContext [динамична]"
-#: 03120402.xhp
+#: 03132500.xhp
msgctxt ""
-"03120402.xhp\n"
-"hd_id3147531\n"
-"7\n"
+"03132500.xhp\n"
+"bm_id4761192\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "<bookmark_value>GetDefaultContext function</bookmark_value>"
+msgstr "<bookmark_value>GetDefaultContext, функция</bookmark_value>"
-#: 03120402.xhp
+#: 03132500.xhp
msgctxt ""
-"03120402.xhp\n"
-"par_id3147265\n"
-"8\n"
+"03132500.xhp\n"
+"par_idN10580\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression or a variable of another type."
-msgstr "<emph>Text:</emph> низов израз или променлива от друг тип."
+msgid "<link href=\"text/sbasic/shared/03132500.xhp\">GetDefaultContext Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03132500.xhp\">Функция GetDefaultContext [динамична]</link>"
-#: 03120402.xhp
+#: 03132500.xhp
msgctxt ""
-"03120402.xhp\n"
-"hd_id3153360\n"
-"9\n"
+"03132500.xhp\n"
+"par_idN10590\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "Returns the default context of the process service factory, if existent, else returns a null reference."
+msgstr "Връща подразбирания контекст на фабриката за услуги на процеса, ако съществува, и null в противен случай."
-#: 03120402.xhp
+#: 03132500.xhp
msgctxt ""
-"03120402.xhp\n"
-"par_id3156214\n"
-"13\n"
+"03132500.xhp\n"
+"par_idN10593\n"
"help.text"
-msgid "MsgBox Len(sText) REM Returns 9"
-msgstr "MsgBox Len(sText) REM връща 9"
+msgid "This runtime 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=\"http://api.libreoffice.org\">api.libreoffice.org</link> for more information."
+msgstr "Тази функция връща подразбирания контекст на компонент, който се използва при създаване на екземпляри на услуги с XmultiServiceFactory. Вижте главата <item type=\"literal\">Professional UNO</item> в <item type=\"literal\">Developer's Guide</item> на адрес <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> за повече информация."
-#: 03130600.xhp
+#: 05060700.xhp
msgctxt ""
-"03130600.xhp\n"
+"05060700.xhp\n"
"tit\n"
"help.text"
-msgid "Wait Statement [Runtime]"
-msgstr "Оператор Wait [динамичен]"
+msgid "Macro"
+msgstr "Макрос"
-#: 03130600.xhp
+#: 05060700.xhp
msgctxt ""
-"03130600.xhp\n"
-"bm_id3154136\n"
+"05060700.xhp\n"
+"bm_id3153894\n"
"help.text"
-msgid "<bookmark_value>Wait statement</bookmark_value>"
-msgstr "<bookmark_value>Wait, оператор</bookmark_value>"
+msgid "<bookmark_value>events;linked to objects</bookmark_value>"
+msgstr "<bookmark_value>събития;свързани с обекти</bookmark_value>"
-#: 03130600.xhp
+#: 05060700.xhp
msgctxt ""
-"03130600.xhp\n"
-"hd_id3154136\n"
+"05060700.xhp\n"
+"hd_id3153894\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03130600.xhp\" name=\"Wait Statement [Runtime]\">Wait Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03130600.xhp\" name=\"Оператор Wait [динамичен]\">Оператор Wait [динамичен]</link>"
+msgid "<link href=\"text/sbasic/shared/05060700.xhp\" name=\"Macro\">Macro</link>"
+msgstr "<link href=\"text/sbasic/shared/05060700.xhp\" name=\"Макрос\">Макрос</link>"
-#: 03130600.xhp
+#: 05060700.xhp
msgctxt ""
-"03130600.xhp\n"
-"par_id3149236\n"
+"05060700.xhp\n"
+"par_id3153748\n"
"2\n"
"help.text"
-msgid "Interrupts the program execution for the amount of time that you specify in milliseconds."
-msgstr "Прекъсва изпълнението на програмата за времето, зададено от вас в милисекунди."
+msgid "<ahelp hid=\".\">Choose the macro that you want to execute when the selected graphic, frame, or OLE object is selected.</ahelp> Depending on the object that is selected, the function is either found on the <emph>Macro</emph> tab of the <emph>Object</emph> dialog, or in the <emph>Assign Macro</emph> dialog."
+msgstr "<ahelp hid=\".\">Изберете макроса, който желаете да се изпълнява при избирането на съответната графика, рамка или OLE обект.</ahelp> Според избрания обект функцията е или в раздела <emph>Макрос</emph> на диалоговия прозорец <emph>Обект</emph>, или в диалоговия прозорец <emph>Приписване на макрос</emph>."
-#: 03130600.xhp
+#: 05060700.xhp
msgctxt ""
-"03130600.xhp\n"
-"hd_id3143229\n"
+"05060700.xhp\n"
+"hd_id3150503\n"
"3\n"
"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
+msgid "Event"
+msgstr "Събитие"
-#: 03130600.xhp
+#: 05060700.xhp
msgctxt ""
-"03130600.xhp\n"
-"par_id3150669\n"
+"05060700.xhp\n"
+"par_id3149763\n"
"4\n"
"help.text"
-msgid "Wait millisec"
-msgstr "Wait millisec"
+msgid "<ahelp hid=\"HID_MACRO_LB_EVENT\">Lists the events that are relevant to the macros that are currently assigned to the selected object.</ahelp>"
+msgstr "<ahelp hid=\"HID_MACRO_LB_EVENT\">Изброява събитията, свързани с макросите, които са приписани в момента на избрания обект.</ahelp>"
-#: 03130600.xhp
+#: 05060700.xhp
msgctxt ""
-"03130600.xhp\n"
-"hd_id3148943\n"
-"5\n"
+"05060700.xhp\n"
+"par_id3150670\n"
+"23\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "The following table describes the macros and the events that can by linked to objects in your document:"
+msgstr "Следващата таблица описва макросите и събитията, които могат да се свързват с обекти в документа:"
-#: 03130600.xhp
+#: 05060700.xhp
msgctxt ""
-"03130600.xhp\n"
-"par_id3154924\n"
-"6\n"
+"05060700.xhp\n"
+"par_id3153360\n"
+"24\n"
"help.text"
-msgid "<emph>millisec:</emph> Numeric expression that contains the amount of time (in milliseconds) to wait before the program is executed."
-msgstr "<emph>millisec:</emph> числов израз – брой милисекунди за изчакване преди продължаване на изпълнението на програмата."
+msgid "Event"
+msgstr "Събитие"
-#: 03130600.xhp
+#: 05060700.xhp
msgctxt ""
-"03130600.xhp\n"
-"hd_id3150541\n"
-"7\n"
+"05060700.xhp\n"
+"par_id3154365\n"
+"25\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "Event trigger"
+msgstr "Възниква, когато"
-#: 03130600.xhp
+#: 05060700.xhp
msgctxt ""
-"03130600.xhp\n"
-"par_id3156214\n"
-"13\n"
+"05060700.xhp\n"
+"par_id3159149\n"
+"26\n"
"help.text"
-msgid "MsgBox \"\" & lTick & \" Ticks\" ,0,\"The pause lasted\""
-msgstr "MsgBox \"\" & lTick & \" мс\", 0, \"Паузата трая\""
+msgid "OLE object"
+msgstr "OLE обект"
-#: 03010300.xhp
+#: 05060700.xhp
msgctxt ""
-"03010300.xhp\n"
-"tit\n"
+"05060700.xhp\n"
+"par_id3148451\n"
+"27\n"
"help.text"
-msgid "Color Functions"
-msgstr "Функции за цветове"
+msgid "Graphics"
+msgstr "Графика"
-#: 03010300.xhp
+#: 05060700.xhp
msgctxt ""
-"03010300.xhp\n"
-"hd_id3157896\n"
-"1\n"
+"05060700.xhp\n"
+"par_id3125863\n"
+"28\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03010300.xhp\" name=\"Color Functions\">Color Functions</link>"
-msgstr "<link href=\"text/sbasic/shared/03010300.xhp\" name=\"Функции за цветове\">Функции за цветове</link>"
+msgid "Frame"
+msgstr "Рамка"
-#: 03010300.xhp
+#: 05060700.xhp
msgctxt ""
-"03010300.xhp\n"
-"par_id3155555\n"
-"2\n"
+"05060700.xhp\n"
+"par_id3154216\n"
+"29\n"
"help.text"
-msgid "This section describes Runtime functions used to define colors."
-msgstr "В този раздел са описани функциите за задаване на цветове."
+msgid "AutoText"
+msgstr "Автотекст"
-#: 03132100.xhp
+#: 05060700.xhp
msgctxt ""
-"03132100.xhp\n"
-"tit\n"
+"05060700.xhp\n"
+"par_id3145785\n"
+"30\n"
"help.text"
-msgid "GetGuiType Function [Runtime]"
-msgstr "Функция GetGuiType [динамична]"
+msgid "ImageMap area"
+msgstr "Област от ImageMap"
-#: 03132100.xhp
+#: 05060700.xhp
msgctxt ""
-"03132100.xhp\n"
-"bm_id3147143\n"
+"05060700.xhp\n"
+"par_id3153138\n"
+"31\n"
"help.text"
-msgid "<bookmark_value>GetGuiType function</bookmark_value>"
-msgstr "<bookmark_value>GetGuiType function</bookmark_value>"
+msgid "Hyperlink"
+msgstr "Хипервръзка"
-#: 03132100.xhp
+#: 05060700.xhp
msgctxt ""
-"03132100.xhp\n"
-"hd_id3155310\n"
-"1\n"
+"05060700.xhp\n"
+"par_id3155306\n"
+"32\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03132100.xhp\" name=\"GetGuiType Function [Runtime]\">GetGuiType Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03132100.xhp\" name=\"Функция GetGuiType [динамична]\">Функция GetGuiType [динамична]</link>"
+msgid "Click object"
+msgstr "Щракване върху обект"
-#: 03132100.xhp
+#: 05060700.xhp
msgctxt ""
-"03132100.xhp\n"
-"par_id3152459\n"
-"2\n"
+"05060700.xhp\n"
+"par_id3152460\n"
+"33\n"
"help.text"
-msgid "Returns a numerical value that specifies the graphical user interface."
-msgstr "Връща числова стойност, отразяваща вида на графичния потребителски интерфейс."
+msgid "Object is selected."
+msgstr "Обектът е избран."
-#: 03132100.xhp
+#: 05060700.xhp
msgctxt ""
-"03132100.xhp\n"
-"par_id3153323\n"
-"3\n"
+"05060700.xhp\n"
+"par_id3147348\n"
+"34\n"
"help.text"
-msgid "This runtime function is only provided for downward compatibility to previous versions. The return value is not defined in client-server environments."
-msgstr "Тази функция служи само за съвместимост с предишни версии. Резултатът не е дефиниран в среда от типа „клиент – сървър“."
+msgid "x"
+msgstr ""
-#: 03132100.xhp
+#: 05060700.xhp
msgctxt ""
-"03132100.xhp\n"
-"hd_id3154894\n"
-"4\n"
+"05060700.xhp\n"
+"par_id3147426\n"
+"35\n"
"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
+msgid "x"
+msgstr ""
-#: 03132100.xhp
+#: 05060700.xhp
msgctxt ""
-"03132100.xhp\n"
-"par_id3147143\n"
-"5\n"
+"05060700.xhp\n"
+"par_id3153951\n"
+"36\n"
"help.text"
-msgid "GetGUIType()"
-msgstr "GetGUIType()"
+msgid "x"
+msgstr ""
-#: 03132100.xhp
+#: 05060700.xhp
msgctxt ""
-"03132100.xhp\n"
-"hd_id3149346\n"
-"6\n"
+"05060700.xhp\n"
+"par_id3150116\n"
+"37\n"
"help.text"
-msgid "Return value:"
-msgstr "Връщана стойност:"
+msgid "Mouse over object"
+msgstr "Мишката е върху обекта"
-#: 03132100.xhp
+#: 05060700.xhp
msgctxt ""
-"03132100.xhp\n"
-"par_id3153748\n"
-"7\n"
+"05060700.xhp\n"
+"par_id3145253\n"
+"38\n"
"help.text"
-msgid "Integer"
-msgstr "Integer"
+msgid "Mouse moves over the object."
+msgstr "Показалецът на мишката се премества над обекта."
-#: 03132100.xhp
+#: 05060700.xhp
msgctxt ""
-"03132100.xhp\n"
-"hd_id3149177\n"
-"8\n"
+"05060700.xhp\n"
+"par_id3144765\n"
+"39\n"
"help.text"
-msgid "Return values:"
-msgstr "Връщани стойности:"
+msgid "x"
+msgstr ""
-#: 03132100.xhp
+#: 05060700.xhp
msgctxt ""
-"03132100.xhp\n"
-"par_id3147242\n"
-"9\n"
+"05060700.xhp\n"
+"par_id3153418\n"
+"40\n"
"help.text"
-msgid "1: Windows"
-msgstr "1: Windows"
+msgid "x"
+msgstr ""
-#: 03132100.xhp
+#: 05060700.xhp
msgctxt ""
-"03132100.xhp\n"
-"par_id3156152\n"
-"11\n"
+"05060700.xhp\n"
+"par_id3153948\n"
+"41\n"
"help.text"
-msgid "4: UNIX"
-msgstr "4: UNIX"
+msgid "x"
+msgstr ""
-#: 03132100.xhp
+#: 05060700.xhp
msgctxt ""
-"03132100.xhp\n"
-"hd_id3148685\n"
-"12\n"
+"05060700.xhp\n"
+"par_id3145652\n"
+"42\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "x"
+msgstr ""
-#: 03050200.xhp
+#: 05060700.xhp
msgctxt ""
-"03050200.xhp\n"
-"tit\n"
+"05060700.xhp\n"
+"par_id3155066\n"
+"43\n"
"help.text"
-msgid "Err Function [Runtime]"
-msgstr "Функция Err [динамична]"
+msgid "x"
+msgstr ""
-#: 03050200.xhp
+#: 05060700.xhp
msgctxt ""
-"03050200.xhp\n"
-"bm_id3156343\n"
+"05060700.xhp\n"
+"par_id3155446\n"
+"44\n"
"help.text"
-msgid "<bookmark_value>Err function</bookmark_value>"
-msgstr "<bookmark_value>Err, функция</bookmark_value>"
+msgid "Trigger Hyperlink"
+msgstr "Задействане на хипервръзка"
-#: 03050200.xhp
+#: 05060700.xhp
msgctxt ""
-"03050200.xhp\n"
-"hd_id3156343\n"
-"1\n"
+"05060700.xhp\n"
+"par_id3154756\n"
+"45\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03050200.xhp\" name=\"Err Function [Runtime]\">Err Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03050200.xhp\" name=\"Функция Err [динамична]\">Функция Err [динамична]</link>"
+msgid "Hyperlink assigned to the object is clicked."
+msgstr "Щракнато е върху хипервръзка, приписана на обекта."
-#: 03050200.xhp
+#: 05060700.xhp
msgctxt ""
-"03050200.xhp\n"
-"par_id3150541\n"
-"2\n"
+"05060700.xhp\n"
+"par_id3150042\n"
+"46\n"
"help.text"
-msgid "Returns an error code that identifies the error that occurred during program execution."
-msgstr "Връща кода на грешката, възникнала по време на изпълнение на програмата."
+msgid "x"
+msgstr ""
-#: 03050200.xhp
+#: 05060700.xhp
msgctxt ""
-"03050200.xhp\n"
-"hd_id3149656\n"
-"3\n"
+"05060700.xhp\n"
+"par_id3151252\n"
+"47\n"
"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
+msgid "x"
+msgstr ""
-#: 03050200.xhp
+#: 05060700.xhp
msgctxt ""
-"03050200.xhp\n"
-"par_id3154123\n"
-"4\n"
+"05060700.xhp\n"
+"par_id3147344\n"
+"48\n"
"help.text"
-msgid "Err"
-msgstr "Err"
+msgid "x"
+msgstr ""
-#: 03050200.xhp
+#: 05060700.xhp
msgctxt ""
-"03050200.xhp\n"
-"hd_id3147229\n"
-"5\n"
+"05060700.xhp\n"
+"par_id3146920\n"
+"49\n"
"help.text"
-msgid "Return value:"
-msgstr "Връщана стойност:"
+msgid "x"
+msgstr ""
-#: 03050200.xhp
+#: 05060700.xhp
msgctxt ""
-"03050200.xhp\n"
-"par_id3150869\n"
-"6\n"
+"05060700.xhp\n"
+"par_id3159333\n"
+"50\n"
"help.text"
-msgid "Integer"
-msgstr "Integer"
+msgid "Mouse leaves object"
+msgstr "Мишката напуска обекта"
-#: 03050200.xhp
+#: 05060700.xhp
msgctxt ""
-"03050200.xhp\n"
-"hd_id3153193\n"
-"7\n"
+"05060700.xhp\n"
+"par_id3147003\n"
+"51\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "Mouse moves off of the object."
+msgstr "Показалецът на мишката се премества извън обекта."
-#: 03050200.xhp
+#: 05060700.xhp
msgctxt ""
-"03050200.xhp\n"
-"par_id3149561\n"
-"8\n"
+"05060700.xhp\n"
+"par_id3151278\n"
+"52\n"
"help.text"
-msgid "The Err function is used in error-handling routines to determine the error and the corrective action."
-msgstr "Функцията Err се използва в подпрограмите за обработка на грешки, за да се определи грешката и действието за коригирането й."
+msgid "x"
+msgstr ""
-#: 03050200.xhp
+#: 05060700.xhp
msgctxt ""
-"03050200.xhp\n"
-"hd_id3147317\n"
-"9\n"
+"05060700.xhp\n"
+"par_id3145257\n"
+"53\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "x"
+msgstr ""
-#: 03050200.xhp
+#: 05060700.xhp
msgctxt ""
-"03050200.xhp\n"
-"par_id3147426\n"
-"11\n"
+"05060700.xhp\n"
+"par_id3154122\n"
+"54\n"
"help.text"
-msgid "On Error Goto ErrorHandler REM Set up error handler"
-msgstr "On Error Goto ErrorHandler ' Настройка на обработката на грешки"
+msgid "x"
+msgstr ""
-#: 03050200.xhp
+#: 05060700.xhp
msgctxt ""
-"03050200.xhp\n"
-"par_id3149481\n"
-"14\n"
+"05060700.xhp\n"
+"par_id3156139\n"
+"55\n"
"help.text"
-msgid "REM Error occurs due to non-existent file"
-msgstr "REM Грешка заради несъществуващ файл"
+msgid "x"
+msgstr ""
-#: 03050200.xhp
+#: 05060700.xhp
msgctxt ""
-"03050200.xhp\n"
-"par_id3145646\n"
-"21\n"
+"05060700.xhp\n"
+"par_id3149036\n"
+"56\n"
"help.text"
-msgid "MsgBox \"Error \" & Err & \": \" & Error$ + chr(13) + \"At line : \" + Erl + chr(13) + Now , 16 ,\"an error occurred\""
-msgstr "MsgBox \"Грешка \" & Err & \": \" & Error$ + Chr(13) + \"Ред: \" + Erl + Chr(13) + Now, 16, \"Възникна грешка\""
+msgid "x"
+msgstr ""
-#: 03103800.xhp
+#: 05060700.xhp
msgctxt ""
-"03103800.xhp\n"
-"tit\n"
+"05060700.xhp\n"
+"par_id3150785\n"
+"57\n"
"help.text"
-msgid "FindObject Function [Runtime]"
-msgstr "Функция FindObject [динамична]"
+msgid "Graphics load successful"
+msgstr "Графиката е заредена успешно"
-#: 03103800.xhp
+#: 05060700.xhp
msgctxt ""
-"03103800.xhp\n"
-"bm_id3145136\n"
+"05060700.xhp\n"
+"par_id3153705\n"
+"58\n"
"help.text"
-msgid "<bookmark_value>FindObject function</bookmark_value>"
-msgstr "<bookmark_value>FindObject, функция</bookmark_value>"
+msgid "Graphics are loaded successfully."
+msgstr "Графиката е заредена успешно."
-#: 03103800.xhp
+#: 05060700.xhp
msgctxt ""
-"03103800.xhp\n"
-"hd_id3145136\n"
-"1\n"
+"05060700.xhp\n"
+"par_id3150343\n"
+"59\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03103800.xhp\" name=\"FindObject Function [Runtime]\">FindObject Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03103800.xhp\" name=\"Функция FindObject [динамична]\">Функция FindObject [динамична]</link>"
+msgid "x"
+msgstr ""
-#: 03103800.xhp
+#: 05060700.xhp
msgctxt ""
-"03103800.xhp\n"
-"par_id3155341\n"
-"2\n"
+"05060700.xhp\n"
+"par_id3150202\n"
+"60\n"
"help.text"
-msgid "Enables an object to be addressed at run-time as a string parameter through the object name."
-msgstr "Позволява обект да бъде адресиран по време на изпълнение като параметър – низ посредством името му."
+msgid "Graphics load terminated"
+msgstr "Зареждането на графиката е прекъснато"
-#: 03103800.xhp
+#: 05060700.xhp
msgctxt ""
-"03103800.xhp\n"
-"par_id3150669\n"
-"3\n"
+"05060700.xhp\n"
+"par_id3145584\n"
+"61\n"
"help.text"
-msgid "For example, the following command:"
-msgstr "Например следната команда:"
+msgid "Loading of graphics is stopped by the user (for example, when downloading the page)."
+msgstr "Зареждането на графика е спряно от потребителя (например при изтегляне на страницата)."
-#: 03103800.xhp
+#: 05060700.xhp
msgctxt ""
-"03103800.xhp\n"
-"par_id3148473\n"
-"4\n"
+"05060700.xhp\n"
+"par_id3154259\n"
+"62\n"
"help.text"
-msgid "MyObj.Prop1.Command = 5"
-msgstr "MyObj.Prop1.Command = 5"
+msgid "x"
+msgstr ""
-#: 03103800.xhp
+#: 05060700.xhp
msgctxt ""
-"03103800.xhp\n"
-"par_id3156023\n"
-"5\n"
+"05060700.xhp\n"
+"par_id3155089\n"
+"63\n"
"help.text"
-msgid "corresponds to the command block:"
-msgstr "съответства на блока от команди:"
+msgid "Graphics load faulty"
+msgstr "Грешка при зареждане на графиката"
-#: 03103800.xhp
+#: 05060700.xhp
msgctxt ""
-"03103800.xhp\n"
-"par_id3153896\n"
-"6\n"
+"05060700.xhp\n"
+"par_id3153307\n"
+"64\n"
"help.text"
-msgid "Dim ObjVar as Object"
-msgstr "Dim ObjVar As Object"
+msgid "Graphics not successfully loaded, for example, if a graphic was not found."
+msgstr "Графика не е заредена успешно, например не е била намерена."
-#: 03103800.xhp
+#: 05060700.xhp
msgctxt ""
-"03103800.xhp\n"
-"par_id3154760\n"
-"7\n"
+"05060700.xhp\n"
+"par_id3148840\n"
+"65\n"
"help.text"
-msgid "Dim ObjProp as Object"
-msgstr "Dim ObjProp As Object"
+msgid "x"
+msgstr ""
-#: 03103800.xhp
+#: 05060700.xhp
msgctxt ""
-"03103800.xhp\n"
-"par_id3145069\n"
-"8\n"
+"05060700.xhp\n"
+"par_id3154533\n"
+"66\n"
"help.text"
-msgid "ObjName As String = \"MyObj\""
-msgstr "ObjName As String = \"MyObj\""
+msgid "Input of alpha characters"
+msgstr "Въвеждане на буквени знаци"
-#: 03103800.xhp
+#: 05060700.xhp
msgctxt ""
-"03103800.xhp\n"
-"par_id3154939\n"
-"9\n"
+"05060700.xhp\n"
+"par_id3155266\n"
+"67\n"
"help.text"
-msgid "ObjVar = FindObject( ObjName As String )"
-msgstr "ObjVar = FindObject(ObjName As String)"
+msgid "Text is entered from the keyboard."
+msgstr "От клавиатурата е въведен текст."
-#: 03103800.xhp
+#: 05060700.xhp
msgctxt ""
-"03103800.xhp\n"
-"par_id3150793\n"
-"10\n"
+"05060700.xhp\n"
+"par_id3144768\n"
+"68\n"
"help.text"
-msgid "PropName As String = \"Prop1\""
-msgstr "PropName As String = \"Prop1\""
+msgid "x"
+msgstr ""
-#: 03103800.xhp
+#: 05060700.xhp
msgctxt ""
-"03103800.xhp\n"
-"par_id3154141\n"
-"11\n"
+"05060700.xhp\n"
+"par_id3145659\n"
+"69\n"
"help.text"
-msgid "ObjProp = FindPropertyObject( ObjVar, PropName As String )"
-msgstr "ObjProp = FindPropertyObject(ObjVar, PropName As String)"
+msgid "Input of non-alpha characters"
+msgstr "Въвеждене на небуквени знаци"
-#: 03103800.xhp
+#: 05060700.xhp
msgctxt ""
-"03103800.xhp\n"
-"par_id3156424\n"
-"12\n"
+"05060700.xhp\n"
+"par_id3151131\n"
+"70\n"
"help.text"
-msgid "ObjProp.Command = 5"
-msgstr "ObjProp.Command = 5"
+msgid "Nonprinting characters are entered from the keyboard, for example, tabs and line breaks."
+msgstr "От клавиатурата са въведени непечатаеми знаци, например табулатори и нови редове."
-#: 03103800.xhp
+#: 05060700.xhp
msgctxt ""
-"03103800.xhp\n"
-"par_id3145420\n"
-"13\n"
+"05060700.xhp\n"
+"par_id3159206\n"
+"71\n"
"help.text"
-msgid "This allows names to be dynamically created at run-time. For example:"
-msgstr "Това ви позволява да създавате имена по време на изпълнение, например:"
+msgid "x"
+msgstr ""
-#: 03103800.xhp
+#: 05060700.xhp
msgctxt ""
-"03103800.xhp\n"
-"par_id3153104\n"
-"14\n"
+"05060700.xhp\n"
+"par_id3150405\n"
+"72\n"
"help.text"
-msgid "\"TextEdit1\" to TextEdit5\" in a loop to create five control names."
-msgstr "от „TextEdit1“ до „TextEdit5“ в цикъл за създаване на пет имена на елементи за управление."
+msgid "Resize frame"
+msgstr "Преоразмеряване на рамка"
-#: 03103800.xhp
+#: 05060700.xhp
msgctxt ""
-"03103800.xhp\n"
-"par_id3150767\n"
-"15\n"
+"05060700.xhp\n"
+"par_id3153972\n"
+"73\n"
"help.text"
-msgid "See also: <link href=\"text/sbasic/shared/03103900.xhp\" name=\"FindPropertyObject\">FindPropertyObject</link>"
-msgstr "Виж също: <link href=\"text/sbasic/shared/03103900.xhp\" name=\"FindPropertyObject\">FindPropertyObject</link>"
+msgid "Frame is resized with the mouse."
+msgstr "Рамка е преоразмерена с мишката."
-#: 03103800.xhp
+#: 05060700.xhp
msgctxt ""
-"03103800.xhp\n"
-"hd_id3150868\n"
-"16\n"
+"05060700.xhp\n"
+"par_id3152873\n"
+"74\n"
"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
+msgid "x"
+msgstr ""
-#: 03103800.xhp
+#: 05060700.xhp
msgctxt ""
-"03103800.xhp\n"
-"par_id3151042\n"
-"17\n"
+"05060700.xhp\n"
+"par_id3148900\n"
+"75\n"
"help.text"
-msgid "FindObject( ObjName As String )"
-msgstr "FindObject(ObjName As String)"
+msgid "Move frame"
+msgstr "Местене на рамка"
-#: 03103800.xhp
+#: 05060700.xhp
msgctxt ""
-"03103800.xhp\n"
-"hd_id3159254\n"
-"18\n"
+"05060700.xhp\n"
+"par_id3154767\n"
+"76\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "Frame is moved with the mouse."
+msgstr "Рамка е преместена с мишката."
-#: 03103800.xhp
+#: 05060700.xhp
msgctxt ""
-"03103800.xhp\n"
-"par_id3150439\n"
-"19\n"
+"05060700.xhp\n"
+"par_id3155914\n"
+"77\n"
"help.text"
-msgid "<emph>ObjName: </emph>String that specifies the name of the object that you want to address at run-time."
-msgstr "<emph>ObjName:</emph> низ, задаващ името на обекта, който искате да се адресира по време на изпълнение."
+msgid "x"
+msgstr ""
-#: 03020303.xhp
+#: 05060700.xhp
msgctxt ""
-"03020303.xhp\n"
-"tit\n"
+"05060700.xhp\n"
+"par_id3153010\n"
+"78\n"
"help.text"
-msgid "Lof Function [Runtime]"
-msgstr "Функция Lof [динамична]"
+msgid "Before inserting AutoText"
+msgstr "Преди вмъкване на автотекст"
-#: 03020303.xhp
+#: 05060700.xhp
msgctxt ""
-"03020303.xhp\n"
-"bm_id3156024\n"
+"05060700.xhp\n"
+"par_id3147515\n"
+"79\n"
"help.text"
-msgid "<bookmark_value>Lof function</bookmark_value>"
-msgstr "<bookmark_value>Lof, функция</bookmark_value>"
+msgid "Before a text block is inserted."
+msgstr "Ще бъде вмъкнат текстов блок."
-#: 03020303.xhp
+#: 05060700.xhp
msgctxt ""
-"03020303.xhp\n"
-"hd_id3156024\n"
-"1\n"
+"05060700.xhp\n"
+"par_id3151191\n"
+"80\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020303.xhp\" name=\"Lof Function [Runtime]\">Lof Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03020303.xhp\" name=\"Функция Lof [динамична]\">Функция Lof [динамична]</link>"
+msgid "x"
+msgstr ""
-#: 03020303.xhp
+#: 05060700.xhp
msgctxt ""
-"03020303.xhp\n"
-"par_id3146794\n"
-"2\n"
+"05060700.xhp\n"
+"par_id3150956\n"
+"81\n"
"help.text"
-msgid "Returns the size of an open file in bytes."
-msgstr "Връща размера на отворен файл в байтове."
+msgid "After inserting AutoText"
+msgstr "След вмъкване на автотекст"
-#: 03020303.xhp
+#: 05060700.xhp
msgctxt ""
-"03020303.xhp\n"
-"hd_id3153380\n"
-"3\n"
+"05060700.xhp\n"
+"par_id3147502\n"
+"82\n"
"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
+msgid "After a text block is inserted."
+msgstr "Вмъкнат е бил текстов блок."
-#: 03020303.xhp
+#: 05060700.xhp
msgctxt ""
-"03020303.xhp\n"
-"par_id3150359\n"
-"4\n"
+"05060700.xhp\n"
+"par_id3147555\n"
+"83\n"
"help.text"
-msgid "Lof (FileNumber)"
-msgstr "Lof (FileNumber)"
+msgid "x"
+msgstr ""
-#: 03020303.xhp
+#: 05060700.xhp
msgctxt ""
-"03020303.xhp\n"
-"hd_id3154141\n"
+"05060700.xhp\n"
+"hd_id3153958\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Връщана стойност:"
+msgid "Macros"
+msgstr "Макроси"
-#: 03020303.xhp
+#: 05060700.xhp
msgctxt ""
-"03020303.xhp\n"
-"par_id3147230\n"
+"05060700.xhp\n"
+"par_id3150432\n"
"6\n"
"help.text"
-msgid "Long"
-msgstr "Long"
+msgid "Choose the macro that you want to execute when the selected event occurs."
+msgstr "Изберете макроса, който да се изпълнява при възникване на избраното събитие."
-#: 03020303.xhp
+#: 05060700.xhp
msgctxt ""
-"03020303.xhp\n"
-"hd_id3156281\n"
+"05060700.xhp\n"
+"par_id3147296\n"
+"84\n"
+"help.text"
+msgid "Frames allow you to link events to a function, so that the function can determine if it processes the event or $[officename] Writer."
+msgstr "Рамките ви позволяват да свържете събития с функция, така че функцията да може да определи дали тя ще обработи събитието, или $[officename] Writer."
+
+#: 05060700.xhp
+msgctxt ""
+"05060700.xhp\n"
+"hd_id3155587\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "Category"
+msgstr "Категория"
-#: 03020303.xhp
+#: 05060700.xhp
msgctxt ""
-"03020303.xhp\n"
-"par_id3150869\n"
+"05060700.xhp\n"
+"par_id3154068\n"
"8\n"
"help.text"
-msgid "<emph>FileNumber:</emph> Any numeric expression that contains the file number that is specified in the Open statement."
-msgstr "<emph>FileNumber:</emph> целочислен израз – номер на файл, отворен с оператора Open."
+msgid "<ahelp hid=\"HID_MACRO_GROUP\">Lists the open $[officename] documents and applications. Click the name of the location where you want to save the macros.</ahelp>"
+msgstr "<ahelp hid=\"HID_MACRO_GROUP\">Изброява отворените документи и приложения на $[officename]. Щракнете върху името на местоположението, където желаете да запазите макросите.</ahelp>"
-#: 03020303.xhp
+#: 05060700.xhp
msgctxt ""
-"03020303.xhp\n"
-"par_id3147349\n"
+"05060700.xhp\n"
+"hd_id3149744\n"
"9\n"
"help.text"
-msgid "To obtain the length of a file that is not open, use the <emph>FileLen</emph> function."
-msgstr "За да намерите дължината на файл, който не е отворен, използвайте функцията <emph>FileLen</emph>."
+msgid "Macro name"
+msgstr "Име на макрос"
-#: 03020303.xhp
+#: 05060700.xhp
msgctxt ""
-"03020303.xhp\n"
-"hd_id3155415\n"
+"05060700.xhp\n"
+"par_id3151391\n"
"10\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
-
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3154730\n"
-"13\n"
-"help.text"
-msgid "Dim sText As Variant REM must be a Variant"
-msgstr "Dim sText As Variant REM Трябва да бъде Variant"
+msgid "<ahelp hid=\"HID_MACRO_MACROS\">Lists the available macros. Click the macro that you want to assign to the selected object.</ahelp>"
+msgstr "<ahelp hid=\"HID_MACRO_MACROS\">Изброява наличните макроси. Щракнете върху макроса, който искате да припишете на избрания обект.</ahelp>"
-#: 03020303.xhp
+#: 05060700.xhp
msgctxt ""
-"03020303.xhp\n"
-"par_id3156276\n"
-"19\n"
+"05060700.xhp\n"
+"hd_id3159260\n"
+"11\n"
"help.text"
-msgid "Seek #iNumber,1 REM Position at start"
-msgstr "Seek #iNumber,1 REM Позиционираме в началото"
+msgid "Assign"
+msgstr "Приписване"
-#: 03020303.xhp
+#: 05060700.xhp
msgctxt ""
-"03020303.xhp\n"
-"par_id3148405\n"
-"20\n"
+"05060700.xhp\n"
+"par_id3147406\n"
+"12\n"
"help.text"
-msgid "Put #iNumber,, \"This is the first line of text\" REM Fill with text"
-msgstr "Put #iNumber,, \"Това е първият ред с текст\" REM Запълваме с текст"
+msgid "<ahelp hid=\"SFX2_PUSHBUTTON_RID_SFX_TP_MACROASSIGN_PB_ASSIGN\">Assigns the selected macro to the specified event.</ahelp> The assigned macro's entries are set after the event."
+msgstr "<ahelp hid=\"SFX2_PUSHBUTTON_RID_SFX_TP_MACROASSIGN_PB_ASSIGN\">Приписва избрания макрос на зададеното събитие.</ahelp> Записите за присвоения макрос се задават след събитието."
-#: 03020303.xhp
+#: 05060700.xhp
msgctxt ""
-"03020303.xhp\n"
-"par_id3154756\n"
-"21\n"
+"05060700.xhp\n"
+"hd_id3150533\n"
+"15\n"
"help.text"
-msgid "Put #iNumber,, \"This is the second line of text\""
-msgstr "Put #iNumber,, \"Това е вторият ред с текст\""
+msgid "Remove"
+msgstr "Премахване"
-#: 03020303.xhp
+#: 05060700.xhp
msgctxt ""
-"03020303.xhp\n"
-"par_id3145643\n"
-"22\n"
+"05060700.xhp\n"
+"par_id3166456\n"
+"16\n"
"help.text"
-msgid "Put #iNumber,, \"This is the third line of text\""
-msgstr "Put #iNumber,, \"Това е третият ред с текст\""
+msgid "<variable id=\"aufheb\"><ahelp hid=\"SFX2_PUSHBUTTON_RID_SFX_TP_MACROASSIGN_PB_DELETE\">Removes the macro that is assigned to the selected item.</ahelp></variable>"
+msgstr "<variable id=\"aufheb\"><ahelp hid=\"SFX2_PUSHBUTTON_RID_SFX_TP_MACROASSIGN_PB_DELETE\">Премахва макроса, приписан на избрания елемент.</ahelp></variable>"
-#: 03020303.xhp
+#: 05060700.xhp
msgctxt ""
-"03020303.xhp\n"
-"par_id3150299\n"
-"31\n"
+"05060700.xhp\n"
+"hd_id3159126\n"
+"85\n"
"help.text"
-msgid "Put #iNumber,,\"This is a new line of text\""
-msgstr "Put #iNumber,, \"Това е нов ред с текст\""
+msgid "Macro selection"
+msgstr "Избор на макрос"
-#: 03020303.xhp
+#: 05060700.xhp
msgctxt ""
-"03020303.xhp\n"
-"par_id3166425\n"
-"34\n"
+"05060700.xhp\n"
+"par_id3149149\n"
+"86\n"
"help.text"
-msgid "Put #iNumber,20,\"This is the text in record 20\""
-msgstr "Put #iNumber, 20, \"Това е текстът в запис номер 20\""
+msgid "<ahelp hid=\"SFX2_LISTBOX_RID_SFX_TP_MACROASSIGN_LB_SCRIPTTYPE\">Select the macro that you want to assign.</ahelp>"
+msgstr "<ahelp hid=\"SFX2_LISTBOX_RID_SFX_TP_MACROASSIGN_LB_SCRIPTTYPE\">Изберете макроса, който желаете да припишете.</ahelp>"
-#: 03090401.xhp
+#: keys.xhp
msgctxt ""
-"03090401.xhp\n"
+"keys.xhp\n"
"tit\n"
"help.text"
-msgid "Call Statement [Runtime]"
-msgstr "Оператор Call [динамичен]"
+msgid "Keyboard Shortcuts in the Basic IDE"
+msgstr "Клавишни комбинации за развойната среда на Basic"
-#: 03090401.xhp
+#: keys.xhp
msgctxt ""
-"03090401.xhp\n"
-"bm_id3154422\n"
+"keys.xhp\n"
+"bm_id3154760\n"
"help.text"
-msgid "<bookmark_value>Call statement</bookmark_value>"
-msgstr "<bookmark_value>Call, оператор</bookmark_value>"
+msgid "<bookmark_value>keyboard;in IDE</bookmark_value><bookmark_value>shortcut keys;Basic IDE</bookmark_value><bookmark_value>IDE;keyboard shortcuts</bookmark_value>"
+msgstr "<bookmark_value>клавиатура;в развойната среда</bookmark_value><bookmark_value>клавишни комбинации;развойна среда на Basic</bookmark_value><bookmark_value>развойна среда;клавишни комбинации</bookmark_value>"
-#: 03090401.xhp
+#: keys.xhp
msgctxt ""
-"03090401.xhp\n"
-"hd_id3154422\n"
+"keys.xhp\n"
+"hd_id3154760\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090401.xhp\" name=\"Call Statement [Runtime]\">Call Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090401.xhp\" name=\"Оператор Call [динамичен]\">Оператор Call [динамичен]</link>"
+msgid "<link href=\"text/sbasic/shared/keys.xhp\" name=\"Keyboard Shortcuts in the Basic IDE\">Keyboard Shortcuts in the Basic IDE</link>"
+msgstr "<link href=\"text/sbasic/shared/keys.xhp\" name=\"Клавишни комбинации за развойната среда на Basic\">Клавишни комбинации за развойната среда на Basic</link>"
-#: 03090401.xhp
+#: keys.xhp
msgctxt ""
-"03090401.xhp\n"
-"par_id3153394\n"
+"keys.xhp\n"
+"par_id3149655\n"
"2\n"
"help.text"
-msgid "Transfers the control of the program to a subroutine, a function, or a DLL procedure."
-msgstr "Прехвърля управлението към процедура, функция или процедура от DLL."
+msgid "In the Basic IDE you can use the following keyboard shortcuts:"
+msgstr "В развойната среда на Basic можете да използвате следните клавишни комбинации:"
-#: 03090401.xhp
+#: keys.xhp
msgctxt ""
-"03090401.xhp\n"
-"hd_id3153345\n"
+"keys.xhp\n"
+"par_id3154908\n"
"3\n"
"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
+msgid "Action"
+msgstr "Действие"
-#: 03090401.xhp
+#: keys.xhp
msgctxt ""
-"03090401.xhp\n"
-"par_id3150984\n"
+"keys.xhp\n"
+"par_id3153192\n"
"4\n"
"help.text"
-msgid "[Call] Name [Parameter]"
-msgstr "[Call] Name [Parameter]"
+msgid "Keyboard shortcut"
+msgstr "Клавишна комбинация"
-#: 03090401.xhp
+#: keys.xhp
msgctxt ""
-"03090401.xhp\n"
-"hd_id3150771\n"
+"keys.xhp\n"
+"par_id3159254\n"
"5\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "Run code starting from the first line, or from the current breakpoint, if the program stopped there before"
+msgstr "Стартиране на програмата от първия ред или от текущата точка на прекъсване, ако изпълнението е спряно там"
-#: 03090401.xhp
+#: keys.xhp
msgctxt ""
-"03090401.xhp\n"
-"par_id3148473\n"
+"keys.xhp\n"
+"par_id3163712\n"
"6\n"
"help.text"
-msgid "<emph>Name:</emph> Name of the subroutine, the function, or the DLL that you want to call"
-msgstr "<emph>Name:</emph> име на процедурата, функцията или подпрограмата от DLL файл."
+msgid "F5"
+msgstr "F5"
-#: 03090401.xhp
+#: keys.xhp
msgctxt ""
-"03090401.xhp\n"
-"par_id3148946\n"
+"keys.xhp\n"
+"par_id3150010\n"
"7\n"
"help.text"
-msgid "<emph>Parameter:</emph> Parameters to pass to the procedure. The type and number of parameters is dependent on the routine that is executing."
-msgstr "<emph>Parameter:</emph> параметри, които да бъдат подадени на подпрограмата. Броят и типовете им зависят от извикваната подпрограма."
+msgid "Stop"
+msgstr "Stop"
-#: 03090401.xhp
+#: keys.xhp
msgctxt ""
-"03090401.xhp\n"
-"par_id3154216\n"
+"keys.xhp\n"
+"par_id3154319\n"
"8\n"
"help.text"
-msgid "A keyword is optional when you call a procedure. If a function is executed as an expression, the parameters must be enclosed by brackets in the statement. If a DLL is called, it must first be specified in the <emph>Declare-Statement</emph>."
-msgstr "Когато извиквате процедура, ключовата дума не е задължителна. Ако функция се изпълнява като израз, параметрите трябва да са заградени в скоби в оператора. При извикване към DLL е необходима предварителна декларация с оператора <emph>Declare</emph>."
-
-#: 03090401.xhp
-msgctxt ""
-"03090401.xhp\n"
-"hd_id3125865\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "Shift+F5"
+msgstr "Shift+F5"
-#: 03130100.xhp
+#: keys.xhp
msgctxt ""
-"03130100.xhp\n"
-"tit\n"
+"keys.xhp\n"
+"par_id3151073\n"
+"11\n"
"help.text"
-msgid "Beep Statement [Runtime]"
-msgstr "Оператор Beep [динамичен]"
+msgid "Add <link href=\"text/sbasic/shared/01050100.xhp\" name=\"watch\">watch</link> for the variable at the cursor"
+msgstr "Добавяне на променливата под курсора в <link href=\"text/sbasic/shared/01050100.xhp\" name=\"следене\">списъка за следене</link>"
-#: 03130100.xhp
+#: keys.xhp
msgctxt ""
-"03130100.xhp\n"
-"bm_id3143284\n"
+"keys.xhp\n"
+"par_id3154731\n"
+"12\n"
"help.text"
-msgid "<bookmark_value>Beep statement</bookmark_value>"
-msgstr "<bookmark_value>Beep, оператор</bookmark_value>"
+msgid "F7"
+msgstr "F7"
-#: 03130100.xhp
+#: keys.xhp
msgctxt ""
-"03130100.xhp\n"
-"hd_id3143284\n"
-"1\n"
+"keys.xhp\n"
+"par_id3148455\n"
+"13\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03130100.xhp\" name=\"Beep Statement [Runtime]\">Beep Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03130100.xhp\" name=\"Оператор Beep [динамичен]\">Оператор Beep [динамичен]</link>"
+msgid "Single step through each statement, starting at the first line or at that statement where the program execution stopped before."
+msgstr "Единична стъпка през всеки оператор, от първия ред или от последния оператор, на който е спряло изпълнението"
-#: 03130100.xhp
+#: keys.xhp
msgctxt ""
-"03130100.xhp\n"
-"par_id3159201\n"
-"2\n"
+"keys.xhp\n"
+"par_id3150716\n"
+"14\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 "Изсвирва тон през високоговорителя на компютъра. Звукът зависи от системата и не можете да променяте силата или височината му."
+msgid "F8"
+msgstr "F8"
-#: 03130100.xhp
+#: keys.xhp
msgctxt ""
-"03130100.xhp\n"
-"hd_id3153990\n"
-"3\n"
+"keys.xhp\n"
+"par_id3156275\n"
+"15\n"
"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
+msgid "Single step as with F8, but a function call is considered to be only <emph>one</emph> statement"
+msgstr "Единична стъпка като F8, но извикването на функция се счита за <emph>един</emph> оператор"
-#: 03130100.xhp
+#: keys.xhp
msgctxt ""
-"03130100.xhp\n"
-"par_id3147291\n"
-"4\n"
+"keys.xhp\n"
+"par_id3153764\n"
+"16\n"
"help.text"
-msgid "Beep"
-msgstr "Beep"
+msgid "Shift+F8"
+msgstr "Shift+F8"
-#: 03130100.xhp
+#: keys.xhp
msgctxt ""
-"03130100.xhp\n"
-"hd_id3148538\n"
-"5\n"
+"keys.xhp\n"
+"par_id3150323\n"
+"17\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "Set or remove a <link href=\"text/sbasic/shared/01030300.xhp\" name=\"breakpoint\">breakpoint</link> at the current line or all breakpoints in the current selection"
+msgstr "Поставяне/премахване на <link href=\"text/sbasic/shared/01030300.xhp\" name=\"точка на прекъсване\">точка на прекъсване</link> на текущия ред или всички точки на прекъсване в текущата селекция"
-#: 03101110.xhp
+#: keys.xhp
msgctxt ""
-"03101110.xhp\n"
-"tit\n"
+"keys.xhp\n"
+"par_id3147339\n"
+"18\n"
"help.text"
-msgid "DefCur Statement [Runtime]"
-msgstr "Оператор DefCur [динамичен]"
+msgid "F9"
+msgstr "F9"
-#: 03101110.xhp
+#: keys.xhp
msgctxt ""
-"03101110.xhp\n"
-"bm_id9555345\n"
+"keys.xhp\n"
+"par_id3153963\n"
+"19\n"
"help.text"
-msgid "<bookmark_value>DefCur statement</bookmark_value>"
-msgstr "<bookmark_value>DefCur, оператор</bookmark_value>"
+msgid "Enable/disable the breakpoint at the current line or all breakpoints in the current selection"
+msgstr "Разрешаване/забраняване на точката на прекъсване на текущия ред или всички точки на прекъсване в текущата селекция"
-#: 03101110.xhp
+#: keys.xhp
msgctxt ""
-"03101110.xhp\n"
-"par_idN1057D\n"
+"keys.xhp\n"
+"par_id3155175\n"
+"20\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03101110.xhp\">DefCur Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03101110.xhp\">Оператор DefCur [динамичен]</link>"
+msgid "Shift+F9"
+msgstr "Shift+F9"
-#: 03101110.xhp
+#: keys.xhp
msgctxt ""
-"03101110.xhp\n"
-"par_idN1058D\n"
+"keys.xhp\n"
+"par_id3154702\n"
+"21\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 "Операторът DefCur установява подразбиран тип данни според диапазон от букви в случай, че не е зададена ключова дума или знак за деклариране на тип."
+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 "Изпълнението на макрос може да бъде спряно с Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Q и извън развойната среда на Basic. Ако работите в развойната среда и макросът спре в точка на прекъсване, Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Q спира изпълнението на макроса, но можете да разберете това чак след следващото натискане на F5, F8 или Shift+F8."
-#: 03101110.xhp
+#: main0211.xhp
msgctxt ""
-"03101110.xhp\n"
-"par_idN10590\n"
+"main0211.xhp\n"
+"tit\n"
"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
+msgid "Macro Toolbar"
+msgstr "Лента с инструменти Макрос"
-#: 03101110.xhp
+#: main0211.xhp
msgctxt ""
-"03101110.xhp\n"
-"par_idN10594\n"
+"main0211.xhp\n"
+"bm_id3150543\n"
"help.text"
-msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
-msgstr "Defxxx Characterrange1[, Characterrange2[,...]]"
+msgid "<bookmark_value>toolbars; Basic IDE</bookmark_value><bookmark_value>macro toolbar</bookmark_value>"
+msgstr "<bookmark_value>ленти с инструменти; в развойната среда на Basic</bookmark_value><bookmark_value>Макрос, лента с инструменти</bookmark_value>"
-#: 03101110.xhp
+#: main0211.xhp
msgctxt ""
-"03101110.xhp\n"
-"par_idN10597\n"
+"main0211.xhp\n"
+"hd_id3150543\n"
+"1\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "<link href=\"text/sbasic/shared/main0211.xhp\" name=\"Macro Toolbar\">Macro Toolbar</link>"
+msgstr "<link href=\"text/sbasic/shared/main0211.xhp\" name=\"Лента с инструменти Макрос\">Лента с инструменти Макрос</link>"
-#: 03101110.xhp
+#: main0211.xhp
msgctxt ""
-"03101110.xhp\n"
-"par_idN1059B\n"
+"main0211.xhp\n"
+"par_id3147288\n"
+"2\n"
"help.text"
-msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set a default data type for."
-msgstr "<emph>Characterrange:</emph> букви, определящи диапазона от променливи, за които искате да зададете подразбиран тип данни."
+msgid "<ahelp visibility=\"visible\" hid=\".uno:MacroBarVisible\">The <emph>Macro Toolbar </emph>contains commands to create, edit, and run macros.</ahelp>"
+msgstr "<ahelp visibility=\"visible\" hid=\".uno:MacroBarVisible\">Лентата с инструменти <emph>Макрос</emph> съдържа команди за създаване, редактиране и изпълнение на макроси.</ahelp>"
-#: 03101110.xhp
+#: main0601.xhp
msgctxt ""
-"03101110.xhp\n"
-"par_idN105A2\n"
+"main0601.xhp\n"
+"tit\n"
"help.text"
-msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
-msgstr "<emph>xxx:</emph> ключова дума, дефинираща подразбирания тип данни:"
+msgid "$[officename] Basic Help"
+msgstr "Помощ за $[officename] Basic"
-#: 03101110.xhp
+#: main0601.xhp
msgctxt ""
-"03101110.xhp\n"
-"par_idN105A9\n"
+"main0601.xhp\n"
+"hd_id3154232\n"
+"1\n"
"help.text"
-msgid "<emph>Keyword:</emph> Default variable type"
-msgstr "<emph>Ключова дума:</emph> Подразбиран тип данни"
+msgid "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link>"
+msgstr "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"Помощ за $[officename] Basic\">Помощ за %PRODUCTNAME Basic</link>"
-#: 03101110.xhp
+#: main0601.xhp
msgctxt ""
-"03101110.xhp\n"
-"par_idN105B0\n"
+"main0601.xhp\n"
+"par_id3153894\n"
+"4\n"
"help.text"
-msgid "<emph>DefCur:</emph> Currency"
-msgstr "<emph>DefCur:</emph> Currency"
+msgid "%PRODUCTNAME provides an Application Programming Interface (API) that allows controlling the $[officename] components with different programming languages by using the $[officename] Software Development Kit (SDK). For more information about the $[officename] API and the Software Development Kit, visit <link href=\"http://api.libreoffice.org/\" name=\"http://api.libreoffice.org\">http://api.libreoffice.org</link>"
+msgstr ""
-#: 03101110.xhp
+#: main0601.xhp
msgctxt ""
-"03101110.xhp\n"
-"par_idN105B7\n"
+"main0601.xhp\n"
+"par_id3147226\n"
+"10\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "This help section explains the most common runtime functions of %PRODUCTNAME Basic. For more in-depth information please refer to the <link href=\"http://wiki.documentfoundation.org/Documentation/BASIC_Guide\">OpenOffice.org BASIC Programming Guide</link> on the Wiki."
+msgstr "Този раздел от помощта обяснява най-често използваните динамични (runtime) функции на %PRODUCTNAME Basic. За по-подробна информация вижте ръководството <link href=\"http://wiki.documentfoundation.org/Documentation/BASIC_Guide\">OpenOffice.org BASIC Programming Guide</link> в уикисайта."
-#: 03101110.xhp
+#: main0601.xhp
msgctxt ""
-"03101110.xhp\n"
-"par_idN105BB\n"
+"main0601.xhp\n"
+"hd_id3146957\n"
+"9\n"
"help.text"
-msgid "REM Prefix definitions for variable types:"
-msgstr "REM Дефиниране с префикс за променливи от даден тип:"
+msgid "Working with %PRODUCTNAME Basic"
+msgstr "Работа с %PRODUCTNAME Basic"
-#: 03101110.xhp
+#: main0601.xhp
msgctxt ""
-"03101110.xhp\n"
-"par_idN105D9\n"
+"main0601.xhp\n"
+"hd_id3148473\n"
+"7\n"
"help.text"
-msgid "cCur=Currency REM cCur is an implicit currency variable"
-msgstr "cCur = Currency REM cCur е променлива с неявен тип Currency"
+msgid "Help about the Help"
+msgstr "Помощ за помощта"
diff --git a/source/bg/helpcontent2/source/text/sbasic/shared/01.po b/source/bg/helpcontent2/source/text/sbasic/shared/01.po
index 36a229d210b..0f4ee78025b 100644
--- a/source/bg/helpcontent2/source/text/sbasic/shared/01.po
+++ b/source/bg/helpcontent2/source/text/sbasic/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-10 11:44+0100\n"
+"POT-Creation-Date: 2013-05-23 12:05+0200\n"
"PO-Revision-Date: 2012-12-03 01:13+0000\n"
"Last-Translator: mbalabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,201 +16,6 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-POOTLE-MTIME: 1354497180.0\n"
-#: 06130500.xhp
-msgctxt ""
-"06130500.xhp\n"
-"tit\n"
-"help.text"
-msgid "Append libraries"
-msgstr "Добавяне на библиотеки"
-
-#: 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>библиотеки; добавяне</bookmark_value><bookmark_value>вмъкване; библиотеки на Basic</bookmark_value>"
-
-#: 06130500.xhp
-msgctxt ""
-"06130500.xhp\n"
-"hd_id3150502\n"
-"1\n"
-"help.text"
-msgid "Append libraries"
-msgstr "Добавяне на библиотеки"
-
-#: 06130500.xhp
-msgctxt ""
-"06130500.xhp\n"
-"par_id3154840\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".\">Locate that <item type=\"productname\">%PRODUCTNAME</item> Basic library that you want to add to the current list, and then click Open.</ahelp>"
-msgstr "<ahelp hid=\".\">Намерете библиотеката на <item type=\"productname\">%PRODUCTNAME</item> Basic, която желаете да добавите към текущия списък, и щракнете върху Отваряне.</ahelp>"
-
-#: 06130500.xhp
-msgctxt ""
-"06130500.xhp\n"
-"hd_id3149119\n"
-"3\n"
-"help.text"
-msgid "File name:"
-msgstr "Име на файл"
-
-#: 06130500.xhp
-msgctxt ""
-"06130500.xhp\n"
-"par_id3147102\n"
-"4\n"
-"help.text"
-msgid "<ahelp hid=\"HID_BASICIDE_LIBSDLG_TREE\">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=\"HID_BASICIDE_LIBSDLG_TREE\">Въведете име или път до библиотеката, която желаете да добавите.</ahelp> Можете и да изберете библиотека от списъка."
-
-#: 06130500.xhp
-msgctxt ""
-"06130500.xhp\n"
-"hd_id3147291\n"
-"5\n"
-"help.text"
-msgid "Options"
-msgstr "Настройки"
-
-#: 06130500.xhp
-msgctxt ""
-"06130500.xhp\n"
-"hd_id3147226\n"
-"7\n"
-"help.text"
-msgid "Insert as reference (read-only)"
-msgstr "Вмъкване като обръщение (само за четене)"
-
-#: 06130500.xhp
-msgctxt ""
-"06130500.xhp\n"
-"par_id3155892\n"
-"8\n"
-"help.text"
-msgid "<ahelp hid=\"BASCTL_CHECKBOX_RID_DLG_LIBS_RID_CB_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=\"BASCTL_CHECKBOX_RID_DLG_LIBS_RID_CB_REF\">Добавя избраната библиотека като файл само за четене. Библиотеката се презарежда при всяко стартиране на <item type=\"productname\">%PRODUCTNAME</item>.</ahelp>"
-
-#: 06130500.xhp
-msgctxt ""
-"06130500.xhp\n"
-"hd_id3145071\n"
-"9\n"
-"help.text"
-msgid "Replace existing libraries"
-msgstr "Замества съществуващите библиотеки"
-
-#: 06130500.xhp
-msgctxt ""
-"06130500.xhp\n"
-"par_id3149812\n"
-"10\n"
-"help.text"
-msgid "<ahelp hid=\"BASCTL_CHECKBOX_RID_DLG_LIBS_RID_CB_REPL\">Replaces a library that has the same name with the current library.</ahelp>"
-msgstr "<ahelp hid=\"BASCTL_CHECKBOX_RID_DLG_LIBS_RID_CB_REPL\">Заменя библиотека със същото име с текущата библиотека.</ahelp>"
-
-#: 06130100.xhp
-msgctxt ""
-"06130100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Change Password"
-msgstr "Смяна на парола"
-
-#: 06130100.xhp
-msgctxt ""
-"06130100.xhp\n"
-"hd_id3159399\n"
-"1\n"
-"help.text"
-msgid "Change Password"
-msgstr "Смяна на парола"
-
-#: 06130100.xhp
-msgctxt ""
-"06130100.xhp\n"
-"par_id3150276\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\"HID_PASSWORD\">Protects the selected library with a password.</ahelp> You can enter a new password, or change the current password."
-msgstr "<ahelp hid=\"HID_PASSWORD\">Защитава избраната библиотека с парола.</ahelp> Можете да въведете нова парола или да смените текущата."
-
-#: 06130100.xhp
-msgctxt ""
-"06130100.xhp\n"
-"hd_id3154285\n"
-"3\n"
-"help.text"
-msgid "Old password"
-msgstr "Стара парола"
-
-#: 06130100.xhp
-msgctxt ""
-"06130100.xhp\n"
-"hd_id3153665\n"
-"4\n"
-"help.text"
-msgid "Password"
-msgstr "Парола"
-
-#: 06130100.xhp
-msgctxt ""
-"06130100.xhp\n"
-"par_id3155628\n"
-"5\n"
-"help.text"
-msgid "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_PASSWORD:ED_OLD_PASSWD\">Enter the current password for the selected library.</ahelp>"
-msgstr "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_PASSWORD:ED_OLD_PASSWD\">Въведете текущата парола за избраната библиотека.</ahelp>"
-
-#: 06130100.xhp
-msgctxt ""
-"06130100.xhp\n"
-"hd_id3153126\n"
-"6\n"
-"help.text"
-msgid "New password"
-msgstr "Нова парола"
-
-#: 06130100.xhp
-msgctxt ""
-"06130100.xhp\n"
-"hd_id3153628\n"
-"7\n"
-"help.text"
-msgid "Password"
-msgstr "Парола"
-
-#: 06130100.xhp
-msgctxt ""
-"06130100.xhp\n"
-"par_id3159413\n"
-"8\n"
-"help.text"
-msgid "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_PASSWORD:ED_NEW_PASSWD\">Enter a new password for the selected library.</ahelp>"
-msgstr "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_PASSWORD:ED_NEW_PASSWD\">Въведете нова парола за избраната библиотека.</ahelp>"
-
-#: 06130100.xhp
-msgctxt ""
-"06130100.xhp\n"
-"hd_id3148947\n"
-"9\n"
-"help.text"
-msgid "Confirm"
-msgstr "Потвърждение"
-
-#: 06130100.xhp
-msgctxt ""
-"06130100.xhp\n"
-"par_id3149457\n"
-"10\n"
-"help.text"
-msgid "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_PASSWORD:ED_REPEAT_PASSWD\">Repeat the new password for the selected library.</ahelp>"
-msgstr "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_PASSWORD:ED_REPEAT_PASSWD\">Повторете новата парола за избраната библиотека.</ahelp>"
-
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -613,3 +418,198 @@ msgctxt ""
"help.text"
msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_LIBS_RID_PB_APPEND\">Locate that $[officename] Basic library that you want to add to the current list, and then click Open.</ahelp>"
msgstr "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_LIBS_RID_PB_APPEND\">Намерете библиотеката на $[officename] Basic, която искате да добавите към текущия списък и щракнете върху Отваряне.</ahelp>"
+
+#: 06130100.xhp
+msgctxt ""
+"06130100.xhp\n"
+"tit\n"
+"help.text"
+msgid "Change Password"
+msgstr "Смяна на парола"
+
+#: 06130100.xhp
+msgctxt ""
+"06130100.xhp\n"
+"hd_id3159399\n"
+"1\n"
+"help.text"
+msgid "Change Password"
+msgstr "Смяна на парола"
+
+#: 06130100.xhp
+msgctxt ""
+"06130100.xhp\n"
+"par_id3150276\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\"HID_PASSWORD\">Protects the selected library with a password.</ahelp> You can enter a new password, or change the current password."
+msgstr "<ahelp hid=\"HID_PASSWORD\">Защитава избраната библиотека с парола.</ahelp> Можете да въведете нова парола или да смените текущата."
+
+#: 06130100.xhp
+msgctxt ""
+"06130100.xhp\n"
+"hd_id3154285\n"
+"3\n"
+"help.text"
+msgid "Old password"
+msgstr "Стара парола"
+
+#: 06130100.xhp
+msgctxt ""
+"06130100.xhp\n"
+"hd_id3153665\n"
+"4\n"
+"help.text"
+msgid "Password"
+msgstr "Парола"
+
+#: 06130100.xhp
+msgctxt ""
+"06130100.xhp\n"
+"par_id3155628\n"
+"5\n"
+"help.text"
+msgid "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_PASSWORD:ED_OLD_PASSWD\">Enter the current password for the selected library.</ahelp>"
+msgstr "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_PASSWORD:ED_OLD_PASSWD\">Въведете текущата парола за избраната библиотека.</ahelp>"
+
+#: 06130100.xhp
+msgctxt ""
+"06130100.xhp\n"
+"hd_id3153126\n"
+"6\n"
+"help.text"
+msgid "New password"
+msgstr "Нова парола"
+
+#: 06130100.xhp
+msgctxt ""
+"06130100.xhp\n"
+"hd_id3153628\n"
+"7\n"
+"help.text"
+msgid "Password"
+msgstr "Парола"
+
+#: 06130100.xhp
+msgctxt ""
+"06130100.xhp\n"
+"par_id3159413\n"
+"8\n"
+"help.text"
+msgid "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_PASSWORD:ED_NEW_PASSWD\">Enter a new password for the selected library.</ahelp>"
+msgstr "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_PASSWORD:ED_NEW_PASSWD\">Въведете нова парола за избраната библиотека.</ahelp>"
+
+#: 06130100.xhp
+msgctxt ""
+"06130100.xhp\n"
+"hd_id3148947\n"
+"9\n"
+"help.text"
+msgid "Confirm"
+msgstr "Потвърждение"
+
+#: 06130100.xhp
+msgctxt ""
+"06130100.xhp\n"
+"par_id3149457\n"
+"10\n"
+"help.text"
+msgid "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_PASSWORD:ED_REPEAT_PASSWD\">Repeat the new password for the selected library.</ahelp>"
+msgstr "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_PASSWORD:ED_REPEAT_PASSWD\">Повторете новата парола за избраната библиотека.</ahelp>"
+
+#: 06130500.xhp
+msgctxt ""
+"06130500.xhp\n"
+"tit\n"
+"help.text"
+msgid "Append libraries"
+msgstr "Добавяне на библиотеки"
+
+#: 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>библиотеки; добавяне</bookmark_value><bookmark_value>вмъкване; библиотеки на Basic</bookmark_value>"
+
+#: 06130500.xhp
+msgctxt ""
+"06130500.xhp\n"
+"hd_id3150502\n"
+"1\n"
+"help.text"
+msgid "Append libraries"
+msgstr "Добавяне на библиотеки"
+
+#: 06130500.xhp
+msgctxt ""
+"06130500.xhp\n"
+"par_id3154840\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\".\">Locate that <item type=\"productname\">%PRODUCTNAME</item> Basic library that you want to add to the current list, and then click Open.</ahelp>"
+msgstr "<ahelp hid=\".\">Намерете библиотеката на <item type=\"productname\">%PRODUCTNAME</item> Basic, която желаете да добавите към текущия списък, и щракнете върху Отваряне.</ahelp>"
+
+#: 06130500.xhp
+msgctxt ""
+"06130500.xhp\n"
+"hd_id3149119\n"
+"3\n"
+"help.text"
+msgid "File name:"
+msgstr "Име на файл"
+
+#: 06130500.xhp
+msgctxt ""
+"06130500.xhp\n"
+"par_id3147102\n"
+"4\n"
+"help.text"
+msgid "<ahelp hid=\"HID_BASICIDE_LIBSDLG_TREE\">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=\"HID_BASICIDE_LIBSDLG_TREE\">Въведете име или път до библиотеката, която желаете да добавите.</ahelp> Можете и да изберете библиотека от списъка."
+
+#: 06130500.xhp
+msgctxt ""
+"06130500.xhp\n"
+"hd_id3147291\n"
+"5\n"
+"help.text"
+msgid "Options"
+msgstr "Настройки"
+
+#: 06130500.xhp
+msgctxt ""
+"06130500.xhp\n"
+"hd_id3147226\n"
+"7\n"
+"help.text"
+msgid "Insert as reference (read-only)"
+msgstr "Вмъкване като обръщение (само за четене)"
+
+#: 06130500.xhp
+msgctxt ""
+"06130500.xhp\n"
+"par_id3155892\n"
+"8\n"
+"help.text"
+msgid "<ahelp hid=\"BASCTL_CHECKBOX_RID_DLG_LIBS_RID_CB_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=\"BASCTL_CHECKBOX_RID_DLG_LIBS_RID_CB_REF\">Добавя избраната библиотека като файл само за четене. Библиотеката се презарежда при всяко стартиране на <item type=\"productname\">%PRODUCTNAME</item>.</ahelp>"
+
+#: 06130500.xhp
+msgctxt ""
+"06130500.xhp\n"
+"hd_id3145071\n"
+"9\n"
+"help.text"
+msgid "Replace existing libraries"
+msgstr "Замества съществуващите библиотеки"
+
+#: 06130500.xhp
+msgctxt ""
+"06130500.xhp\n"
+"par_id3149812\n"
+"10\n"
+"help.text"
+msgid "<ahelp hid=\"BASCTL_CHECKBOX_RID_DLG_LIBS_RID_CB_REPL\">Replaces a library that has the same name with the current library.</ahelp>"
+msgstr "<ahelp hid=\"BASCTL_CHECKBOX_RID_DLG_LIBS_RID_CB_REPL\">Заменя библиотека със същото име с текущата библиотека.</ahelp>"
diff --git a/source/bg/helpcontent2/source/text/sbasic/shared/02.po b/source/bg/helpcontent2/source/text/sbasic/shared/02.po
index 95edf979ce8..f215fc5bf0c 100644
--- a/source/bg/helpcontent2/source/text/sbasic/shared/02.po
+++ b/source/bg/helpcontent2/source/text/sbasic/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-10 11:44+0100\n"
+"POT-Creation-Date: 2013-05-23 12:05+0200\n"
"PO-Revision-Date: 2012-08-03 13:12+0000\n"
"Last-Translator: mbalabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,143 +16,134 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-POOTLE-MTIME: 1343999542.0\n"
-#: 11150000.xhp
+#: 11010000.xhp
msgctxt ""
-"11150000.xhp\n"
+"11010000.xhp\n"
"tit\n"
"help.text"
-msgid "Save Source As"
-msgstr "Съхраняване на изходния код като"
+msgid "Library"
+msgstr "Библиотека"
-#: 11150000.xhp
+#: 11010000.xhp
msgctxt ""
-"11150000.xhp\n"
-"hd_id3149497\n"
+"11010000.xhp\n"
+"hd_id3151100\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/02/11150000.xhp\" name=\"Save Source As\">Save Source As</link>"
-msgstr "<link href=\"text/sbasic/shared/02/11150000.xhp\" name=\"Съхраняване на изходния код като\">Съхраняване на изходния код като</link>"
+msgid "<link href=\"text/sbasic/shared/02/11010000.xhp\" name=\"Library\">Library</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11010000.xhp\" name=\"Библиотека\">Библиотека</link>"
-#: 11150000.xhp
+#: 11010000.xhp
msgctxt ""
-"11150000.xhp\n"
-"par_id3147261\n"
-"3\n"
+"11010000.xhp\n"
+"par_id3154136\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:SaveBasicAs\">Saves the source code of the selected Basic macro.</ahelp>"
-msgstr "<ahelp hid=\".uno:SaveBasicAs\">Съхранява изходния код на избрания макрос на Basic.</ahelp>"
+msgid "<ahelp hid=\".uno:LibSelector\" visibility=\"visible\">Select the library that you want to edit.</ahelp> The first module of the library that you select is displayed in the Basic IDE."
+msgstr "<ahelp hid=\".uno:LibSelector\" visibility=\"visible\">Изберете библиотеката, която искате да редактирате.</ahelp> Първия модул на избраната библиотека ще се покаже в развойната среда на Basic."
-#: 11150000.xhp
+#: 11010000.xhp
msgctxt ""
-"11150000.xhp\n"
-"par_id3145071\n"
+"11010000.xhp\n"
+"par_id3149095\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\">Икона</alt></image>"
+msgid "<image src=\"res/helpimg/feldalle.png\" id=\"img_id3147576\" localize=\"true\"><alt id=\"alt_id3147576\">List box Library</alt></image>"
+msgstr "<image src=\"res/helpimg/feldalle.png\" id=\"img_id3147576\" localize=\"true\"><alt id=\"alt_id3147576\">Списъчно поле Библиотека</alt></image>"
-#: 11150000.xhp
+#: 11010000.xhp
msgctxt ""
-"11150000.xhp\n"
-"par_id3151110\n"
-"2\n"
+"11010000.xhp\n"
+"par_id3147654\n"
+"3\n"
"help.text"
-msgid "Save Source As"
-msgstr "Съхраняване на изходния код като"
+msgid "Library List Box"
+msgstr "Списъчно поле Библиотека"
-#: 11140000.xhp
+#: 11020000.xhp
msgctxt ""
-"11140000.xhp\n"
+"11020000.xhp\n"
"tit\n"
"help.text"
-msgid "Insert Source Text"
-msgstr "Вмъкване на изходен код"
+msgid "Compile"
+msgstr "Компилиране"
-#: 11140000.xhp
+#: 11020000.xhp
msgctxt ""
-"11140000.xhp\n"
-"hd_id3154044\n"
+"11020000.xhp\n"
+"hd_id3148983\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/02/11140000.xhp\" name=\"Insert Source Text\">Insert Source Text</link>"
-msgstr "<link href=\"text/sbasic/shared/02/11140000.xhp\" name=\"Вмъкване на изходен код\">Вмъкване на изходен код</link>"
+msgid "<link href=\"text/sbasic/shared/02/11020000.xhp\" name=\"Compile\">Compile</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11020000.xhp\" name=\"Компилиране\">Компилиране</link>"
-#: 11140000.xhp
+#: 11020000.xhp
msgctxt ""
-"11140000.xhp\n"
-"par_id3150702\n"
+"11020000.xhp\n"
+"par_id3159201\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:LoadBasic\">Opens the Basic source text in the Basic IDE window.</ahelp>"
-msgstr "<ahelp hid=\".uno:LoadBasic\">Отваря изходния код на Basic в прозореца на развойната среда на Basic.</ahelp>"
-
-#: 11140000.xhp
-msgctxt ""
-"11140000.xhp\n"
-"par_id3150445\n"
-"3\n"
-"help.text"
-msgid "Place the cursor in the code where you want to insert the source text, and then click the <emph>Insert source text</emph> icon. Locate the file that contains the Basic source text that you want to insert, and then click <emph>Open</emph>."
-msgstr "Поставете курсора в кода там, където желаете да вмъквате, и щракнете върху иконата <emph>Вмъкване на изходен код</emph>. Намерете файла, съдържащ изходния код на Basic, който желаете да вмъкнете, и натиснете <emph>Отваряне</emph>."
+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\">Компилира макроса на Basic.</ahelp> Необходимо е да компилирате макроса, след като го промените или ако желаете да го изпълнявате стъпка по стъпка или процедура по процедура."
-#: 11140000.xhp
+#: 11020000.xhp
msgctxt ""
-"11140000.xhp\n"
-"par_id3145136\n"
+"11020000.xhp\n"
+"par_id3156426\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\">Икона</alt></image>"
+msgid "<image src=\"cmd/sc_compilebasic.png\" id=\"img_id3147576\"><alt id=\"alt_id3147576\">Icon</alt></image>"
+msgstr "<image src=\"cmd/sc_compilebasic.png\" id=\"img_id3147576\"><alt id=\"alt_id3147576\">Икона</alt></image>"
-#: 11140000.xhp
+#: 11020000.xhp
msgctxt ""
-"11140000.xhp\n"
-"par_id3145346\n"
-"4\n"
+"11020000.xhp\n"
+"par_id3149399\n"
+"3\n"
"help.text"
-msgid "Insert source text"
-msgstr "Вмъкване на изходен код"
+msgid "Compile"
+msgstr "Компилиране"
-#: 11190000.xhp
+#: 11030000.xhp
msgctxt ""
-"11190000.xhp\n"
+"11030000.xhp\n"
"tit\n"
"help.text"
-msgid "Export Dialog"
-msgstr "Експортиране на диалогов прозорец"
+msgid "Run"
+msgstr "Стартиране"
-#: 11190000.xhp
+#: 11030000.xhp
msgctxt ""
-"11190000.xhp\n"
-"hd_id3156183\n"
+"11030000.xhp\n"
+"hd_id3153255\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/02/11190000.xhp\" name=\"Export Dialog\">Export Dialog</link>"
-msgstr "<link href=\"text/sbasic/shared/02/11190000.xhp\" name=\"Експортиране на диалогов прозорец\">Експортиране на диалогов прозорец</link>"
+msgid "<link href=\"text/sbasic/shared/02/11030000.xhp\" name=\"Run\">Run</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11030000.xhp\" name=\"Стартиране\">Стартиране</link>"
-#: 11190000.xhp
+#: 11030000.xhp
msgctxt ""
-"11190000.xhp\n"
-"par_id3152363\n"
+"11030000.xhp\n"
+"par_id3159201\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".\">In the dialog editor, this command calls a \"Save as\" dialog to export the current BASIC dialog.</ahelp>"
-msgstr "<ahelp hid=\".\">Показва диалогов прозорец „Съхраняване като“ за експортиране на текущия диалогов прозорец на BASIC.</ahelp>"
+msgid "<ahelp hid=\".uno:RunBasic\">Runs the first macro of the current module.</ahelp>"
+msgstr "<ahelp hid=\".uno:RunBasic\">Стартира първия макрос на текущия модул.</ahelp>"
-#: 11190000.xhp
+#: 11030000.xhp
msgctxt ""
-"11190000.xhp\n"
-"par_id3143267\n"
+"11030000.xhp\n"
+"par_id3156410\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\">Икона</alt></image>"
+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\">Икона</alt></image>"
-#: 11190000.xhp
+#: 11030000.xhp
msgctxt ""
-"11190000.xhp\n"
-"par_id3145383\n"
+"11030000.xhp\n"
+"par_id3154750\n"
"3\n"
"help.text"
-msgid "Export Dialog"
-msgstr "Експортиране на диалогов прозорец"
+msgid "Run"
+msgstr "Стартиране"
#: 11040000.xhp
msgctxt ""
@@ -205,6 +196,311 @@ msgctxt ""
msgid "Stop"
msgstr "Спиране"
+#: 11050000.xhp
+msgctxt ""
+"11050000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Single Step"
+msgstr "Единична стъпка"
+
+#: 11050000.xhp
+msgctxt ""
+"11050000.xhp\n"
+"hd_id3155934\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/02/11050000.xhp\" name=\"Single Step\">Single Step</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11050000.xhp\" name=\"Единична стъпка\">Единична стъпка</link>"
+
+#: 11050000.xhp
+msgctxt ""
+"11050000.xhp\n"
+"par_id3146117\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\".uno:BasicStepInto\">Runs the macro and stops it after the next command.</ahelp>"
+msgstr "<ahelp hid=\".uno:BasicStepInto\">Изпълнява макроса и го спира след следващата команда.</ahelp>"
+
+#: 11050000.xhp
+msgctxt ""
+"11050000.xhp\n"
+"par_id3152801\n"
+"4\n"
+"help.text"
+msgid "You can use this command in conjunction with the <link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Watch\">Watch</link> command to troubleshoot errors."
+msgstr "Можете да използвате тази команда заедно с командата <link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Наблюдение\">Наблюдение</link>, за да отстранявате грешки."
+
+#: 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\">Икона</alt></image>"
+
+#: 11050000.xhp
+msgctxt ""
+"11050000.xhp\n"
+"par_id3147573\n"
+"3\n"
+"help.text"
+msgid "Single Step"
+msgstr "Единична стъпка"
+
+#: 11050000.xhp
+msgctxt ""
+"11050000.xhp\n"
+"par_id3149235\n"
+"6\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/02/11060000.xhp\" name=\"Procedure Step function\">Procedure Step function</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11060000.xhp\" name=\"Функция Стъпка през процедура\">Функция „Стъпка през процедура“</link>"
+
+#: 11060000.xhp
+msgctxt ""
+"11060000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Procedure Step"
+msgstr "Стъпка през процедура"
+
+#: 11060000.xhp
+msgctxt ""
+"11060000.xhp\n"
+"hd_id3148520\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/02/11060000.xhp\" name=\"Procedure Step\">Procedure Step</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11060000.xhp\" name=\"Стъпка през процедура\">Стъпка през процедура</link>"
+
+#: 11060000.xhp
+msgctxt ""
+"11060000.xhp\n"
+"par_id3152363\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\".uno:BasicStepOver\">Runs the macro and stops it after the next procedure.</ahelp>"
+msgstr "<ahelp hid=\".uno:BasicStepOver\">Стартира макроса и го спира след следващата процедура.</ahelp>"
+
+#: 11060000.xhp
+msgctxt ""
+"11060000.xhp\n"
+"par_id3153394\n"
+"4\n"
+"help.text"
+msgid "You can use this command in conjunction with the <link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Watch\">Watch</link> command to troubleshoot errors."
+msgstr "Можете да използвате тази команда заедно с командата <link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Наблюдение\">Наблюдение</link>, за да отстранявате грешки."
+
+#: 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\">Икона</alt></image>"
+
+#: 11060000.xhp
+msgctxt ""
+"11060000.xhp\n"
+"par_id3154307\n"
+"3\n"
+"help.text"
+msgid "Procedure Step"
+msgstr "Стъпка през процедура"
+
+#: 11060000.xhp
+msgctxt ""
+"11060000.xhp\n"
+"par_id3153562\n"
+"6\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/02/11050000.xhp\" name=\"Single Step function\">Single Step function</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11050000.xhp\" name=\"Функция Единична стъпка\">Функция „Единична стъпка“</link>"
+
+#: 11070000.xhp
+msgctxt ""
+"11070000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Breakpoint"
+msgstr "Точка на прекъсване"
+
+#: 11070000.xhp
+msgctxt ""
+"11070000.xhp\n"
+"hd_id3154863\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/02/11070000.xhp\" name=\"Breakpoint\">Breakpoint</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11070000.xhp\" name=\"Точка на прекъсване\">Точка на прекъсване</link>"
+
+#: 11070000.xhp
+msgctxt ""
+"11070000.xhp\n"
+"par_id3155364\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\".uno:ToggleBreakPoint\">Inserts a breakpoint in the program line.</ahelp>"
+msgstr "<ahelp hid=\".uno:ToggleBreakPoint\">Вмъква точка на прекъсване в реда от програмата.</ahelp>"
+
+#: 11070000.xhp
+msgctxt ""
+"11070000.xhp\n"
+"par_id3149346\n"
+"4\n"
+"help.text"
+msgid "The breakpoint is inserted at the cursor position. Use a breakpoint to interrupt a program just before an error occurs. You can then troubleshoot the program by running it in <link href=\"text/sbasic/shared/02/11050000.xhp\" name=\"Single Step\">Single Step</link> mode until the error occurs. You can also use the <link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Watch\">Watch</link> icon to check the content of the relevant variables."
+msgstr "Точката на прекъсване се вмъква в позицията на курсора. Можете да използвате точка на прекъсване, за да спрете изпълнението на програма точно преди да възникне грешка. След това можете да проследите изпълнението в режим <link href=\"text/sbasic/shared/02/11050000.xhp\" name=\"Единична стъпка\">Единична стъпка</link>, докато стигнете до грешката. Можете да използвате и иконата <link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Наблюдение\">Наблюдение</link>, за да проверите стойностите на свързаните с проблема променливи."
+
+#: 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\">Икона</alt></image>"
+
+#: 11070000.xhp
+msgctxt ""
+"11070000.xhp\n"
+"par_id3149416\n"
+"3\n"
+"help.text"
+msgid "Breakpoint"
+msgstr "Точка на прекъсване"
+
+#: 11080000.xhp
+msgctxt ""
+"11080000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Enable Watch"
+msgstr "Включване на наблюдение"
+
+#: 11080000.xhp
+msgctxt ""
+"11080000.xhp\n"
+"hd_id3154863\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Enable Watch\">Enable Watch</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Включване на наблюдение\">Включване на наблюдение</link>"
+
+#: 11080000.xhp
+msgctxt ""
+"11080000.xhp\n"
+"par_id3093440\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\".uno:AddWatch\">Click this icon to view the variables in a macro. The contents of the variable are displayed in a separate window.</ahelp>"
+msgstr "<ahelp hid=\".uno:AddWatch\">Щракнете върху тази икона, за да наблюдавате променливите в макроса. Съдържанието на променливите се показва в отделен прозорец.</ahelp>"
+
+#: 11080000.xhp
+msgctxt ""
+"11080000.xhp\n"
+"par_id3147399\n"
+"6\n"
+"help.text"
+msgid "Click the name of a variable to select it, then click the <emph>Enable Watch</emph> icon. The value that is assigned to the variable is displayed next to its name. This value is constantly updated."
+msgstr "Щракнете върху името на променлива, за да да я изберете, после щракнете върху иконата <emph>Включване на наблюдение</emph>. Стойността, присвоена на променливата, се показва до името й и се обновява постоянно."
+
+#: 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\">Икона</alt></image>"
+
+#: 11080000.xhp
+msgctxt ""
+"11080000.xhp\n"
+"par_id3150276\n"
+"3\n"
+"help.text"
+msgid "Enable Watch"
+msgstr "Включване на наблюдение"
+
+#: 11080000.xhp
+msgctxt ""
+"11080000.xhp\n"
+"par_id3159158\n"
+"4\n"
+"help.text"
+msgid "To remove the variable watch, select the variable in the Watch window, and then click on the <emph>Remove Watch</emph> icon."
+msgstr "За да премахнете следенето на променлива, изберете я в прозореца Следене и щракнете върху иконата <emph>Премахване от списъка за следене</emph>."
+
+#: 11090000.xhp
+msgctxt ""
+"11090000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Object Catalog"
+msgstr "Каталог на обектите"
+
+#: 11090000.xhp
+msgctxt ""
+"11090000.xhp\n"
+"hd_id3153255\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/02/11090000.xhp\" name=\"Object Catalog\">Object Catalog</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11090000.xhp\" name=\"Каталог на обектите\">Каталог на обектите</link>"
+
+#: 11090000.xhp
+msgctxt ""
+"11090000.xhp\n"
+"par_id3151384\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\".uno:ObjectCatalog\">Opens the <emph>Objects</emph> pane, where you can view Basic objects.</ahelp>"
+msgstr ""
+
+#: 11090000.xhp
+msgctxt ""
+"11090000.xhp\n"
+"par_id3147576\n"
+"15\n"
+"help.text"
+msgid "Double click the name of a function or sub to load the module that contains that function or sub, and to position the cursor. Double click the name of a module or dialog to load and display that module or dialog."
+msgstr ""
+
+#: 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\">Икона</alt></image>"
+
+#: 11090000.xhp
+msgctxt ""
+"11090000.xhp\n"
+"par_id3154515\n"
+"3\n"
+"help.text"
+msgid "Object Catalog"
+msgstr "Каталог на обектите"
+
+#: 11090000.xhp
+msgctxt ""
+"11090000.xhp\n"
+"hd_id3146794\n"
+"13\n"
+"help.text"
+msgid "Window Area"
+msgstr "Оновна област на прозореца"
+
+#: 11090000.xhp
+msgctxt ""
+"11090000.xhp\n"
+"par_id3149655\n"
+"14\n"
+"help.text"
+msgid "<ahelp hid=\"HID_BASICIDE_OBJECTCAT\">Displays a hierarchical view of the current $[officename] macro libraries, modules, and dialogs. To display the contents of an item in the window, double click its name.</ahelp>"
+msgstr ""
+
#: 11100000.xhp
msgctxt ""
"11100000.xhp\n"
@@ -248,48 +544,48 @@ msgctxt ""
msgid "Macros"
msgstr "Макроси"
-#: 11160000.xhp
+#: 11110000.xhp
msgctxt ""
-"11160000.xhp\n"
+"11110000.xhp\n"
"tit\n"
"help.text"
-msgid "Step Out"
-msgstr "Стъпка навън"
+msgid "Modules"
+msgstr "Модули"
-#: 11160000.xhp
+#: 11110000.xhp
msgctxt ""
-"11160000.xhp\n"
-"hd_id3148983\n"
+"11110000.xhp\n"
+"hd_id3148520\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/02/11160000.xhp\" name=\"Step Out\">Step Out</link>"
-msgstr "<link href=\"text/sbasic/shared/02/11160000.xhp\" name=\"Стъпка навън\">Стъпка навън</link>"
+msgid "<link href=\"text/sbasic/shared/02/11110000.xhp\" name=\"Modules\">Modules</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11110000.xhp\" name=\"Модули\">Модули</link>"
-#: 11160000.xhp
+#: 11110000.xhp
msgctxt ""
-"11160000.xhp\n"
-"par_id3157898\n"
+"11110000.xhp\n"
+"par_id3156414\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:BasicStepOut\" visibility=\"visible\">Jumps back to the previous routine in the current macro.</ahelp>"
-msgstr "<ahelp hid=\".uno:BasicStepOut\" visibility=\"visible\">Преминава назад към по-външната подпрограма в текущия макрос.</ahelp>"
+msgid "<ahelp visibility=\"visible\" hid=\".uno:ModuleDialog\">Click here to open the <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Macro Organizer\"><emph>Macro Organizer</emph></link> dialog.</ahelp>"
+msgstr "<ahelp visibility=\"visible\" hid=\".uno:ModuleDialog\">Щракнете тук за да отворите диалоговия прозорец <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Управление на макроси\"><emph>Управление на макроси</emph></link>.</ahelp>"
-#: 11160000.xhp
+#: 11110000.xhp
msgctxt ""
-"11160000.xhp\n"
-"par_id3156410\n"
+"11110000.xhp\n"
+"par_id3157958\n"
"help.text"
-msgid "<image src=\"cmd/sc_basicstepout.png\" id=\"img_id3159233\"><alt id=\"alt_id3159233\">Icon</alt></image>"
-msgstr "<image src=\"cmd/sc_basicstepout.png\" id=\"img_id3159233\"><alt id=\"alt_id3159233\">Икона</alt></image>"
+msgid "<image src=\"cmd/sc_moduledialog.png\" id=\"img_id3155535\"><alt id=\"alt_id3155535\">Icon</alt></image>"
+msgstr "<image src=\"cmd/sc_moduledialog.png\" id=\"img_id3155535\"><alt id=\"alt_id3155535\">Икона</alt></image>"
-#: 11160000.xhp
+#: 11110000.xhp
msgctxt ""
-"11160000.xhp\n"
-"par_id3158421\n"
+"11110000.xhp\n"
+"par_id3145383\n"
"3\n"
"help.text"
-msgid "Step Out"
-msgstr "Стъпка навън"
+msgid "Modules"
+msgstr "Модули"
#: 11120000.xhp
msgctxt ""
@@ -334,309 +630,329 @@ msgctxt ""
msgid "Find Parentheses"
msgstr "Търсене на скоба"
-#: 11110000.xhp
+#: 11140000.xhp
msgctxt ""
-"11110000.xhp\n"
+"11140000.xhp\n"
"tit\n"
"help.text"
-msgid "Modules"
-msgstr "Модули"
+msgid "Insert Source Text"
+msgstr "Вмъкване на изходен код"
-#: 11110000.xhp
+#: 11140000.xhp
msgctxt ""
-"11110000.xhp\n"
-"hd_id3148520\n"
+"11140000.xhp\n"
+"hd_id3154044\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/02/11110000.xhp\" name=\"Modules\">Modules</link>"
-msgstr "<link href=\"text/sbasic/shared/02/11110000.xhp\" name=\"Модули\">Модули</link>"
+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=\"Вмъкване на изходен код\">Вмъкване на изходен код</link>"
-#: 11110000.xhp
+#: 11140000.xhp
msgctxt ""
-"11110000.xhp\n"
-"par_id3156414\n"
+"11140000.xhp\n"
+"par_id3150702\n"
"2\n"
"help.text"
-msgid "<ahelp visibility=\"visible\" hid=\".uno:ModuleDialog\">Click here to open the <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Macro Organizer\"><emph>Macro Organizer</emph></link> dialog.</ahelp>"
-msgstr "<ahelp visibility=\"visible\" hid=\".uno:ModuleDialog\">Щракнете тук за да отворите диалоговия прозорец <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Управление на макроси\"><emph>Управление на макроси</emph></link>.</ahelp>"
+msgid "<ahelp hid=\".uno:LoadBasic\">Opens the Basic source text in the Basic IDE window.</ahelp>"
+msgstr "<ahelp hid=\".uno:LoadBasic\">Отваря изходния код на Basic в прозореца на развойната среда на Basic.</ahelp>"
-#: 11110000.xhp
+#: 11140000.xhp
msgctxt ""
-"11110000.xhp\n"
-"par_id3157958\n"
+"11140000.xhp\n"
+"par_id3150445\n"
+"3\n"
"help.text"
-msgid "<image src=\"cmd/sc_moduledialog.png\" id=\"img_id3155535\"><alt id=\"alt_id3155535\">Icon</alt></image>"
-msgstr "<image src=\"cmd/sc_moduledialog.png\" id=\"img_id3155535\"><alt id=\"alt_id3155535\">Икона</alt></image>"
+msgid "Place the cursor in the code where you want to insert the source text, and then click the <emph>Insert source text</emph> icon. Locate the file that contains the Basic source text that you want to insert, and then click <emph>Open</emph>."
+msgstr "Поставете курсора в кода там, където желаете да вмъквате, и щракнете върху иконата <emph>Вмъкване на изходен код</emph>. Намерете файла, съдържащ изходния код на Basic, който желаете да вмъкнете, и натиснете <emph>Отваряне</emph>."
-#: 11110000.xhp
+#: 11140000.xhp
msgctxt ""
-"11110000.xhp\n"
-"par_id3145383\n"
-"3\n"
+"11140000.xhp\n"
+"par_id3145136\n"
"help.text"
-msgid "Modules"
-msgstr "Модули"
+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\">Икона</alt></image>"
-#: 11060000.xhp
+#: 11140000.xhp
msgctxt ""
-"11060000.xhp\n"
+"11140000.xhp\n"
+"par_id3145346\n"
+"4\n"
+"help.text"
+msgid "Insert source text"
+msgstr "Вмъкване на изходен код"
+
+#: 11150000.xhp
+msgctxt ""
+"11150000.xhp\n"
"tit\n"
"help.text"
-msgid "Procedure Step"
-msgstr "Стъпка през процедура"
+msgid "Save Source As"
+msgstr "Съхраняване на изходния код като"
-#: 11060000.xhp
+#: 11150000.xhp
msgctxt ""
-"11060000.xhp\n"
-"hd_id3148520\n"
+"11150000.xhp\n"
+"hd_id3149497\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/02/11060000.xhp\" name=\"Procedure Step\">Procedure Step</link>"
-msgstr "<link href=\"text/sbasic/shared/02/11060000.xhp\" name=\"Стъпка през процедура\">Стъпка през процедура</link>"
+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=\"Съхраняване на изходния код като\">Съхраняване на изходния код като</link>"
-#: 11060000.xhp
+#: 11150000.xhp
msgctxt ""
-"11060000.xhp\n"
-"par_id3152363\n"
+"11150000.xhp\n"
+"par_id3147261\n"
+"3\n"
+"help.text"
+msgid "<ahelp hid=\".uno:SaveBasicAs\">Saves the source code of the selected Basic macro.</ahelp>"
+msgstr "<ahelp hid=\".uno:SaveBasicAs\">Съхранява изходния код на избрания макрос на Basic.</ahelp>"
+
+#: 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\">Икона</alt></image>"
+
+#: 11150000.xhp
+msgctxt ""
+"11150000.xhp\n"
+"par_id3151110\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:BasicStepOver\">Runs the macro and stops it after the next procedure.</ahelp>"
-msgstr "<ahelp hid=\".uno:BasicStepOver\">Стартира макроса и го спира след следващата процедура.</ahelp>"
+msgid "Save Source As"
+msgstr "Съхраняване на изходния код като"
-#: 11060000.xhp
+#: 11160000.xhp
msgctxt ""
-"11060000.xhp\n"
-"par_id3153394\n"
-"4\n"
+"11160000.xhp\n"
+"tit\n"
"help.text"
-msgid "You can use this command in conjunction with the <link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Watch\">Watch</link> command to troubleshoot errors."
-msgstr "Можете да използвате тази команда заедно с командата <link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Наблюдение\">Наблюдение</link>, за да отстранявате грешки."
+msgid "Step Out"
+msgstr "Стъпка навън"
-#: 11060000.xhp
+#: 11160000.xhp
msgctxt ""
-"11060000.xhp\n"
-"par_id3147576\n"
+"11160000.xhp\n"
+"hd_id3148983\n"
+"1\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\">Икона</alt></image>"
+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=\"Стъпка навън\">Стъпка навън</link>"
-#: 11060000.xhp
+#: 11160000.xhp
msgctxt ""
-"11060000.xhp\n"
-"par_id3154307\n"
-"3\n"
+"11160000.xhp\n"
+"par_id3157898\n"
+"2\n"
"help.text"
-msgid "Procedure Step"
-msgstr "Стъпка през процедура"
+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\">Преминава назад към по-външната подпрограма в текущия макрос.</ahelp>"
-#: 11060000.xhp
+#: 11160000.xhp
msgctxt ""
-"11060000.xhp\n"
-"par_id3153562\n"
-"6\n"
+"11160000.xhp\n"
+"par_id3156410\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=\"Функция Единична стъпка\">Функция „Единична стъпка“</link>"
+msgid "<image src=\"cmd/sc_basicstepout.png\" id=\"img_id3159233\"><alt id=\"alt_id3159233\">Icon</alt></image>"
+msgstr "<image src=\"cmd/sc_basicstepout.png\" id=\"img_id3159233\"><alt id=\"alt_id3159233\">Икона</alt></image>"
-#: 11090000.xhp
+#: 11160000.xhp
msgctxt ""
-"11090000.xhp\n"
-"tit\n"
+"11160000.xhp\n"
+"par_id3158421\n"
+"3\n"
"help.text"
-msgid "Object Catalog"
-msgstr "Каталог на обектите"
+msgid "Step Out"
+msgstr "Стъпка навън"
-#: 11090000.xhp
+#: 11170000.xhp
msgctxt ""
-"11090000.xhp\n"
-"hd_id3153255\n"
-"1\n"
+"11170000.xhp\n"
+"tit\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=\"Каталог на обектите\">Каталог на обектите</link>"
+msgid "Manage Breakpoints"
+msgstr "Управление на точките на прекъсване"
-#: 11090000.xhp
+#: 11170000.xhp
msgctxt ""
-"11090000.xhp\n"
-"par_id3151384\n"
-"2\n"
+"11170000.xhp\n"
+"hd_id3156183\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\".uno:ObjectCatalog\">Opens the <emph>Objects</emph> dialog, where you can view Basic objects.</ahelp>"
-msgstr "<ahelp hid=\".uno:ObjectCatalog\">Отваря диалоговия прозорец <emph>Обекти</emph>, в който можете да преглеждате обектите на Basic.</ahelp>"
+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=\"Управление на точките на прекъсване\">Управление на точките на прекъсване</link>"
-#: 11090000.xhp
+#: 11170000.xhp
msgctxt ""
-"11090000.xhp\n"
-"par_id3147576\n"
-"15\n"
+"11170000.xhp\n"
+"par_id3152363\n"
+"2\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. Click the name of a module or dialog and then click the <emph>Show</emph> icon to load and display that module or dialog."
-msgstr "Щракнете двукратно върху функция или подпрограма, за да заредите модула, който я съдържа, и да позиционирате курсора. Щракнете върху името на модул или диалогов прозорец и после – върху иконата <emph>Показване</emph>, за да заредите и видите на екрана този модул или диалог."
+msgid "<ahelp hid=\".\">Calls a dialog to manage breakpoints.</ahelp>"
+msgstr "<ahelp hid=\".\">Отваря диалогов прозорец за управление на точките на прекъсване.</ahelp>"
-#: 11090000.xhp
+#: 11170000.xhp
msgctxt ""
-"11090000.xhp\n"
-"par_id3148538\n"
+"11170000.xhp\n"
+"par_id3143267\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\">Икона</alt></image>"
+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\">Икона</alt></image>"
-#: 11090000.xhp
+#: 11170000.xhp
msgctxt ""
-"11090000.xhp\n"
-"par_id3154515\n"
+"11170000.xhp\n"
+"par_id3145383\n"
"3\n"
"help.text"
-msgid "Object Catalog"
-msgstr "Каталог на обектите"
+msgid "Manage Breakpoints"
+msgstr "Управление на точките на прекъсване"
-#: 11090000.xhp
+#: 11170000.xhp
msgctxt ""
-"11090000.xhp\n"
-"hd_id3155388\n"
+"11170000.xhp\n"
+"par_id3154897\n"
"4\n"
"help.text"
-msgid "Show"
-msgstr "Показване"
+msgid "<link href=\"text/sbasic/shared/01050300.xhp\" name=\"Manage Breakpoints dialog\"><emph>Manage Breakpoints</emph> dialog</link>"
+msgstr "<link href=\"text/sbasic/shared/01050300.xhp\" name=\"Диалогов прозорец Управление на точките на прекъсване\">Диалогов прозорец <emph>Управление на точките на прекъсване</emph></link>"
-#: 11090000.xhp
+#: 11180000.xhp
msgctxt ""
-"11090000.xhp\n"
-"par_id3155630\n"
-"5\n"
+"11180000.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"HID_BASICIDE_OBJCAT_SHOW\">Display the source text or dialog of a selected object.</ahelp>"
-msgstr "<ahelp hid=\"HID_BASICIDE_OBJCAT_SHOW\">Показва изходния текст или диалогов прозорец на избрания обект.</ahelp>"
+msgid "Import Dialog"
+msgstr "Импортиране на диалогов прозорец"
-#: 11090000.xhp
+#: 11180000.xhp
msgctxt ""
-"11090000.xhp\n"
-"par_id3153126\n"
+"11180000.xhp\n"
+"hd_id3156183\n"
+"1\n"
"help.text"
-msgid "<image id=\"img_id3148474\" src=\"basctl/res/im01.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148474\">Icon</alt></image>"
-msgstr "<image id=\"img_id3148474\" src=\"basctl/res/im01.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148474\">Икона</alt></image>"
+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=\"Импортиране на диалогов прозорец\">Импортиране на диалогов прозорец</link>"
-#: 11090000.xhp
+#: 11180000.xhp
msgctxt ""
-"11090000.xhp\n"
-"par_id3147560\n"
-"6\n"
+"11180000.xhp\n"
+"par_id3152363\n"
+"2\n"
"help.text"
-msgid "Show"
-msgstr "Показване"
+msgid "<ahelp hid=\".\">Calls an \"Open\" dialog to import a BASIC dialog file.</ahelp>"
+msgstr "<ahelp hid=\".\">Показва диалогов прозорец „Отваряне“ за импортиране на файл с диалогов прозорец на BASIC.</ahelp>"
-#: 11090000.xhp
+#: 11180000.xhp
msgctxt ""
-"11090000.xhp\n"
-"hd_id3146794\n"
-"13\n"
+"11180000.xhp\n"
+"par_id0929200903505211\n"
"help.text"
-msgid "Window Area"
-msgstr "Оновна област на прозореца"
+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 "Ако името на импортирания диалогов прозорец вече присъства в библиотеката, ще получите възможност за избор дали той да бъде преименуван със следващото свободно „автоматично“ име, както при създаване на нов, или съществуващият диалогов прозорец да бъде заместен с импортирания. Ако изберете „Отказ“, диалоговият прозорец няма да бъде импортиран."
-#: 11090000.xhp
+#: 11180000.xhp
msgctxt ""
-"11090000.xhp\n"
-"par_id3149655\n"
-"14\n"
+"11180000.xhp\n"
+"par_id0929200903505360\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 or select the name and click the <emph>Show</emph> icon.</ahelp>"
-msgstr "<ahelp hid=\"HID_BASICIDE_OBJECTCAT\">Показва йерархичен изглед на текущите библиотеки с макроси, модули и диалогови прозорци на $[officename]. За да видите съдържанието на елемент в прозореца, щракнете върху името му или изберете името и щракнете върху иконата <emph>Показване</emph>.</ahelp>"
+msgid "Dialogs can contain localization data. When importing a dialog, a mismatch of the dialogs' localization status can occur."
+msgstr "Диалоговите прозорци могат да съдържат данни за локализация. При импортиране може да възникне несъответствие в състоянието на локализацията им."
-#: 11070000.xhp
+#: 11180000.xhp
msgctxt ""
-"11070000.xhp\n"
-"tit\n"
+"11180000.xhp\n"
+"par_id0929200903505320\n"
"help.text"
-msgid "Breakpoint"
-msgstr "Точка на прекъсване"
+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 "Ако библиотеката съдържа повече езици от импортирания диалогов прозорец, или ако той изобщо не е локализиран, допълнителните езици ще бъдат добавени към него без предупреждение, като се използват низовете от подразбирания му локал."
-#: 11070000.xhp
+#: 11180000.xhp
msgctxt ""
-"11070000.xhp\n"
-"hd_id3154863\n"
-"1\n"
+"11180000.xhp\n"
+"par_id0929200903505383\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=\"Точка на прекъсване\">Точка на прекъсване</link>"
+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 "Ако импортираният диалогов прозорец съдържа повече езици от библиотеката или ако тя изобщо не е локализирана, ще видите прозорец за съобщение с бутони „Добавяне“, „Пропускане“ и „Отказ“."
-#: 11070000.xhp
+#: 11180000.xhp
msgctxt ""
-"11070000.xhp\n"
-"par_id3155364\n"
-"2\n"
+"11180000.xhp\n"
+"par_id0929200903505340\n"
"help.text"
-msgid "<ahelp hid=\".uno:ToggleBreakPoint\">Inserts a breakpoint in the program line.</ahelp>"
-msgstr "<ahelp hid=\".uno:ToggleBreakPoint\">Вмъква точка на прекъсване в реда от програмата.</ahelp>"
+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 "Добавяне: допълнителните езици от импортирания диалогов прозорец ще бъдат добавени в съществуващия. За новите езици ще бъдат използвани ресурсите от подразбирания език на библиотеката – точно както при ръчно добавяне на езици."
-#: 11070000.xhp
+#: 11180000.xhp
msgctxt ""
-"11070000.xhp\n"
-"par_id3149346\n"
-"4\n"
+"11180000.xhp\n"
+"par_id0929200903505367\n"
"help.text"
-msgid "The breakpoint is inserted at the cursor position. Use a breakpoint to interrupt a program just before an error occurs. You can then troubleshoot the program by running it in <link href=\"text/sbasic/shared/02/11050000.xhp\" name=\"Single Step\">Single Step</link> mode until the error occurs. You can also use the <link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Watch\">Watch</link> icon to check the content of the relevant variables."
-msgstr "Точката на прекъсване се вмъква в позицията на курсора. Можете да използвате точка на прекъсване, за да спрете изпълнението на програма точно преди да възникне грешка. След това можете да проследите изпълнението в режим <link href=\"text/sbasic/shared/02/11050000.xhp\" name=\"Единична стъпка\">Единична стъпка</link>, докато стигнете до грешката. Можете да използвате и иконата <link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Наблюдение\">Наблюдение</link>, за да проверите стойностите на свързаните с проблема променливи."
+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 "Пропускане: езиковите настройки на библиотеката няма да се променят. Ресурсите за пропуснатите езици в импортирания диалогов прозорец няма да се копират в библиотеката, но ще останат в изходните му файлове."
-#: 11070000.xhp
+#: 11180000.xhp
msgctxt ""
-"11070000.xhp\n"
-"par_id3156346\n"
+"11180000.xhp\n"
+"par_id3143267\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\">Икона</alt></image>"
+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\">Икона</alt></image>"
-#: 11070000.xhp
+#: 11180000.xhp
msgctxt ""
-"11070000.xhp\n"
-"par_id3149416\n"
+"11180000.xhp\n"
+"par_id3145383\n"
"3\n"
"help.text"
-msgid "Breakpoint"
-msgstr "Точка на прекъсване"
+msgid "Import Dialog"
+msgstr "Импортиране на диалогов прозорец"
-#: 11020000.xhp
+#: 11190000.xhp
msgctxt ""
-"11020000.xhp\n"
+"11190000.xhp\n"
"tit\n"
"help.text"
-msgid "Compile"
-msgstr "Компилиране"
+msgid "Export Dialog"
+msgstr "Експортиране на диалогов прозорец"
-#: 11020000.xhp
+#: 11190000.xhp
msgctxt ""
-"11020000.xhp\n"
-"hd_id3148983\n"
+"11190000.xhp\n"
+"hd_id3156183\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/02/11020000.xhp\" name=\"Compile\">Compile</link>"
-msgstr "<link href=\"text/sbasic/shared/02/11020000.xhp\" name=\"Компилиране\">Компилиране</link>"
+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=\"Експортиране на диалогов прозорец\">Експортиране на диалогов прозорец</link>"
-#: 11020000.xhp
+#: 11190000.xhp
msgctxt ""
-"11020000.xhp\n"
-"par_id3159201\n"
+"11190000.xhp\n"
+"par_id3152363\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:CompileBasic\" visibility=\"visible\">Compiles the Basic macro.</ahelp> You need to compile a macro after you make changes to it, or if the macro uses single or procedure steps."
-msgstr "<ahelp hid=\".uno:CompileBasic\" visibility=\"visible\">Компилира макроса на Basic.</ahelp> Необходимо е да компилирате макроса, след като го промените или ако желаете да го изпълнявате стъпка по стъпка или процедура по процедура."
+msgid "<ahelp hid=\".\">In the dialog editor, this command calls a \"Save as\" dialog to export the current BASIC dialog.</ahelp>"
+msgstr "<ahelp hid=\".\">Показва диалогов прозорец „Съхраняване като“ за експортиране на текущия диалогов прозорец на BASIC.</ahelp>"
-#: 11020000.xhp
+#: 11190000.xhp
msgctxt ""
-"11020000.xhp\n"
-"par_id3156426\n"
+"11190000.xhp\n"
+"par_id3143267\n"
"help.text"
-msgid "<image src=\"cmd/sc_compilebasic.png\" id=\"img_id3147576\"><alt id=\"alt_id3147576\">Icon</alt></image>"
-msgstr "<image src=\"cmd/sc_compilebasic.png\" id=\"img_id3147576\"><alt id=\"alt_id3147576\">Икона</alt></image>"
+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\">Икона</alt></image>"
-#: 11020000.xhp
+#: 11190000.xhp
msgctxt ""
-"11020000.xhp\n"
-"par_id3149399\n"
+"11190000.xhp\n"
+"par_id3145383\n"
"3\n"
"help.text"
-msgid "Compile"
-msgstr "Компилиране"
+msgid "Export Dialog"
+msgstr "Експортиране на диалогов прозорец"
#: 20000000.xhp
msgctxt ""
@@ -1405,354 +1721,3 @@ msgctxt ""
"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=\".\">Добавя елемент за управление, който може да показва йерархичен списък. Можете да попълните списъка със своята програма, използвайки функциите на приложния програмен интерфейс (XtreeControl).</ahelp>"
-
-#: 11010000.xhp
-msgctxt ""
-"11010000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Library"
-msgstr "Библиотека"
-
-#: 11010000.xhp
-msgctxt ""
-"11010000.xhp\n"
-"hd_id3151100\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/02/11010000.xhp\" name=\"Library\">Library</link>"
-msgstr "<link href=\"text/sbasic/shared/02/11010000.xhp\" name=\"Библиотека\">Библиотека</link>"
-
-#: 11010000.xhp
-msgctxt ""
-"11010000.xhp\n"
-"par_id3154136\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:LibSelector\" visibility=\"visible\">Select the library that you want to edit.</ahelp> The first module of the library that you select is displayed in the Basic IDE."
-msgstr "<ahelp hid=\".uno:LibSelector\" visibility=\"visible\">Изберете библиотеката, която искате да редактирате.</ahelp> Първия модул на избраната библиотека ще се покаже в развойната среда на Basic."
-
-#: 11010000.xhp
-msgctxt ""
-"11010000.xhp\n"
-"par_id3149095\n"
-"help.text"
-msgid "<image src=\"res/helpimg/feldalle.png\" id=\"img_id3147576\" localize=\"true\"><alt id=\"alt_id3147576\">List box Library</alt></image>"
-msgstr "<image src=\"res/helpimg/feldalle.png\" id=\"img_id3147576\" localize=\"true\"><alt id=\"alt_id3147576\">Списъчно поле Библиотека</alt></image>"
-
-#: 11010000.xhp
-msgctxt ""
-"11010000.xhp\n"
-"par_id3147654\n"
-"3\n"
-"help.text"
-msgid "Library List Box"
-msgstr "Списъчно поле Библиотека"
-
-#: 11180000.xhp
-msgctxt ""
-"11180000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Import Dialog"
-msgstr "Импортиране на диалогов прозорец"
-
-#: 11180000.xhp
-msgctxt ""
-"11180000.xhp\n"
-"hd_id3156183\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/02/11180000.xhp\" name=\"Import Dialog\">Import Dialog</link>"
-msgstr "<link href=\"text/sbasic/shared/02/11180000.xhp\" name=\"Импортиране на диалогов прозорец\">Импортиране на диалогов прозорец</link>"
-
-#: 11180000.xhp
-msgctxt ""
-"11180000.xhp\n"
-"par_id3152363\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".\">Calls an \"Open\" dialog to import a BASIC dialog file.</ahelp>"
-msgstr "<ahelp hid=\".\">Показва диалогов прозорец „Отваряне“ за импортиране на файл с диалогов прозорец на BASIC.</ahelp>"
-
-#: 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 "Ако името на импортирания диалогов прозорец вече присъства в библиотеката, ще получите възможност за избор дали той да бъде преименуван със следващото свободно „автоматично“ име, както при създаване на нов, или съществуващият диалогов прозорец да бъде заместен с импортирания. Ако изберете „Отказ“, диалоговият прозорец няма да бъде импортиран."
-
-#: 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 "Диалоговите прозорци могат да съдържат данни за локализация. При импортиране може да възникне несъответствие в състоянието на локализацията им."
-
-#: 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 "Ако библиотеката съдържа повече езици от импортирания диалогов прозорец, или ако той изобщо не е локализиран, допълнителните езици ще бъдат добавени към него без предупреждение, като се използват низовете от подразбирания му локал."
-
-#: 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 "Ако импортираният диалогов прозорец съдържа повече езици от библиотеката или ако тя изобщо не е локализирана, ще видите прозорец за съобщение с бутони „Добавяне“, „Пропускане“ и „Отказ“."
-
-#: 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 "Добавяне: допълнителните езици от импортирания диалогов прозорец ще бъдат добавени в съществуващия. За новите езици ще бъдат използвани ресурсите от подразбирания език на библиотеката – точно както при ръчно добавяне на езици."
-
-#: 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 "Пропускане: езиковите настройки на библиотеката няма да се променят. Ресурсите за пропуснатите езици в импортирания диалогов прозорец няма да се копират в библиотеката, но ще останат в изходните му файлове."
-
-#: 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\">Икона</alt></image>"
-
-#: 11180000.xhp
-msgctxt ""
-"11180000.xhp\n"
-"par_id3145383\n"
-"3\n"
-"help.text"
-msgid "Import Dialog"
-msgstr "Импортиране на диалогов прозорец"
-
-#: 11050000.xhp
-msgctxt ""
-"11050000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Single Step"
-msgstr "Единична стъпка"
-
-#: 11050000.xhp
-msgctxt ""
-"11050000.xhp\n"
-"hd_id3155934\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/02/11050000.xhp\" name=\"Single Step\">Single Step</link>"
-msgstr "<link href=\"text/sbasic/shared/02/11050000.xhp\" name=\"Единична стъпка\">Единична стъпка</link>"
-
-#: 11050000.xhp
-msgctxt ""
-"11050000.xhp\n"
-"par_id3146117\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:BasicStepInto\">Runs the macro and stops it after the next command.</ahelp>"
-msgstr "<ahelp hid=\".uno:BasicStepInto\">Изпълнява макроса и го спира след следващата команда.</ahelp>"
-
-#: 11050000.xhp
-msgctxt ""
-"11050000.xhp\n"
-"par_id3152801\n"
-"4\n"
-"help.text"
-msgid "You can use this command in conjunction with the <link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Watch\">Watch</link> command to troubleshoot errors."
-msgstr "Можете да използвате тази команда заедно с командата <link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Наблюдение\">Наблюдение</link>, за да отстранявате грешки."
-
-#: 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\">Икона</alt></image>"
-
-#: 11050000.xhp
-msgctxt ""
-"11050000.xhp\n"
-"par_id3147573\n"
-"3\n"
-"help.text"
-msgid "Single Step"
-msgstr "Единична стъпка"
-
-#: 11050000.xhp
-msgctxt ""
-"11050000.xhp\n"
-"par_id3149235\n"
-"6\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/02/11060000.xhp\" name=\"Procedure Step function\">Procedure Step function</link>"
-msgstr "<link href=\"text/sbasic/shared/02/11060000.xhp\" name=\"Функция Стъпка през процедура\">Функция „Стъпка през процедура“</link>"
-
-#: 11030000.xhp
-msgctxt ""
-"11030000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Run"
-msgstr "Стартиране"
-
-#: 11030000.xhp
-msgctxt ""
-"11030000.xhp\n"
-"hd_id3153255\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/02/11030000.xhp\" name=\"Run\">Run</link>"
-msgstr "<link href=\"text/sbasic/shared/02/11030000.xhp\" name=\"Стартиране\">Стартиране</link>"
-
-#: 11030000.xhp
-msgctxt ""
-"11030000.xhp\n"
-"par_id3159201\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:RunBasic\">Runs the first macro of the current module.</ahelp>"
-msgstr "<ahelp hid=\".uno:RunBasic\">Стартира първия макрос на текущия модул.</ahelp>"
-
-#: 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\">Икона</alt></image>"
-
-#: 11030000.xhp
-msgctxt ""
-"11030000.xhp\n"
-"par_id3154750\n"
-"3\n"
-"help.text"
-msgid "Run"
-msgstr "Стартиране"
-
-#: 11080000.xhp
-msgctxt ""
-"11080000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Enable Watch"
-msgstr "Включване на наблюдение"
-
-#: 11080000.xhp
-msgctxt ""
-"11080000.xhp\n"
-"hd_id3154863\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Enable Watch\">Enable Watch</link>"
-msgstr "<link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Включване на наблюдение\">Включване на наблюдение</link>"
-
-#: 11080000.xhp
-msgctxt ""
-"11080000.xhp\n"
-"par_id3093440\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:AddWatch\">Click this icon to view the variables in a macro. The contents of the variable are displayed in a separate window.</ahelp>"
-msgstr "<ahelp hid=\".uno:AddWatch\">Щракнете върху тази икона, за да наблюдавате променливите в макроса. Съдържанието на променливите се показва в отделен прозорец.</ahelp>"
-
-#: 11080000.xhp
-msgctxt ""
-"11080000.xhp\n"
-"par_id3147399\n"
-"6\n"
-"help.text"
-msgid "Click the name of a variable to select it, then click the <emph>Enable Watch</emph> icon. The value that is assigned to the variable is displayed next to its name. This value is constantly updated."
-msgstr "Щракнете върху името на променлива, за да да я изберете, после щракнете върху иконата <emph>Включване на наблюдение</emph>. Стойността, присвоена на променливата, се показва до името й и се обновява постоянно."
-
-#: 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\">Икона</alt></image>"
-
-#: 11080000.xhp
-msgctxt ""
-"11080000.xhp\n"
-"par_id3150276\n"
-"3\n"
-"help.text"
-msgid "Enable Watch"
-msgstr "Включване на наблюдение"
-
-#: 11080000.xhp
-msgctxt ""
-"11080000.xhp\n"
-"par_id3159158\n"
-"4\n"
-"help.text"
-msgid "To remove the variable watch, select the variable in the Watch window, and then click on the <emph>Remove Watch</emph> icon."
-msgstr "За да премахнете следенето на променлива, изберете я в прозореца Следене и щракнете върху иконата <emph>Премахване от списъка за следене</emph>."
-
-#: 11170000.xhp
-msgctxt ""
-"11170000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Manage Breakpoints"
-msgstr "Управление на точките на прекъсване"
-
-#: 11170000.xhp
-msgctxt ""
-"11170000.xhp\n"
-"hd_id3156183\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/02/11170000.xhp\" name=\"Manage Breakpoints\">Manage Breakpoints</link>"
-msgstr "<link href=\"text/sbasic/shared/02/11170000.xhp\" name=\"Управление на точките на прекъсване\">Управление на точките на прекъсване</link>"
-
-#: 11170000.xhp
-msgctxt ""
-"11170000.xhp\n"
-"par_id3152363\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".\">Calls a dialog to manage breakpoints.</ahelp>"
-msgstr "<ahelp hid=\".\">Отваря диалогов прозорец за управление на точките на прекъсване.</ahelp>"
-
-#: 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\">Икона</alt></image>"
-
-#: 11170000.xhp
-msgctxt ""
-"11170000.xhp\n"
-"par_id3145383\n"
-"3\n"
-"help.text"
-msgid "Manage Breakpoints"
-msgstr "Управление на точките на прекъсване"
-
-#: 11170000.xhp
-msgctxt ""
-"11170000.xhp\n"
-"par_id3154897\n"
-"4\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/01050300.xhp\" name=\"Manage Breakpoints dialog\"><emph>Manage Breakpoints</emph> dialog</link>"
-msgstr "<link href=\"text/sbasic/shared/01050300.xhp\" name=\"Диалогов прозорец Управление на точките на прекъсване\">Диалогов прозорец <emph>Управление на точките на прекъсване</emph></link>"
diff --git a/source/bg/helpcontent2/source/text/scalc.po b/source/bg/helpcontent2/source/text/scalc.po
index e09dd11899e..405a18883d0 100644
--- a/source/bg/helpcontent2/source/text/scalc.po
+++ b/source/bg/helpcontent2/source/text/scalc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-10 11:44+0100\n"
+"POT-Creation-Date: 2013-05-23 12:06+0200\n"
"PO-Revision-Date: 2012-08-03 13:12+0000\n"
"Last-Translator: mbalabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,572 +16,313 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-POOTLE-MTIME: 1343999542.0\n"
-#: main0208.xhp
-msgctxt ""
-"main0208.xhp\n"
-"tit\n"
-"help.text"
-msgid "Status Bar"
-msgstr "Лента за състоянието"
-
-#: main0208.xhp
-msgctxt ""
-"main0208.xhp\n"
-"hd_id3151385\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/main0208.xhp\" name=\"Status Bar\">Status Bar</link>"
-msgstr "<link href=\"text/scalc/main0208.xhp\" name=\"Лента за състоянието\">Лента за състоянието</link>"
-
-#: main0208.xhp
-msgctxt ""
-"main0208.xhp\n"
-"par_id3149669\n"
-"2\n"
-"help.text"
-msgid "The <emph>Status Bar</emph> displays information about the current sheet."
-msgstr "<emph>Лентата за състоянието</emph> показва информация за текущия лист."
-
-#: main0208.xhp
-msgctxt ""
-"main0208.xhp\n"
-"hd_id0821200911024321\n"
-"help.text"
-msgid "Digital Signature"
-msgstr "Цифров подпис"
-
-#: 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 "Вижте също <link href=\"text/shared/guide/digital_signatures.xhp\">Цифров подписи</link>."
-
-#: main0112.xhp
+#: main0000.xhp
msgctxt ""
-"main0112.xhp\n"
+"main0000.xhp\n"
"tit\n"
"help.text"
-msgid "Data"
-msgstr "Данни"
+msgid "Welcome to the $[officename] Calc Help"
+msgstr "Добре дошли в помощта на $[officename] Calc"
-#: main0112.xhp
+#: main0000.xhp
msgctxt ""
-"main0112.xhp\n"
-"hd_id3153254\n"
+"main0000.xhp\n"
+"hd_id3147338\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/main0112.xhp\" name=\"Data\">Data</link>"
-msgstr "<link href=\"text/scalc/main0112.xhp\" name=\"Данни\">Данни</link>"
-
-#: main0112.xhp
-msgctxt ""
-"main0112.xhp\n"
-"par_id3147264\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".\">Use the <emph>Data</emph> menu commands to edit the data in the current sheet. You can define ranges, sort and filter the data, calculate results, outline data, and create a pivot table.</ahelp>"
-msgstr "<ahelp hid=\".\">Командите от менюто <emph>Данни</emph> служат за редактиране на данните в текущия лист. Можете да дефинирате области, да сортирате и филтрирате данните, да изчислявате резултати, да групирате данни и да създавате обобщаващи таблици.</ahelp>"
+msgid "Welcome to the $[officename] Calc Help"
+msgstr "Добре дошли в помощта на $[officename] Calc"
-#: main0112.xhp
+#: main0000.xhp
msgctxt ""
-"main0112.xhp\n"
-"hd_id3150400\n"
+"main0000.xhp\n"
+"hd_id3153965\n"
"3\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12010000.xhp\" name=\"Define Range\">Define Range</link>"
-msgstr "<link href=\"text/scalc/01/12010000.xhp\" name=\"Дефиниране на област\">Дефиниране на област</link>"
-
-#: main0112.xhp
-msgctxt ""
-"main0112.xhp\n"
-"hd_id3125863\n"
-"4\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/12020000.xhp\" name=\"Select Range\">Select Range</link>"
-msgstr "<link href=\"text/scalc/01/12020000.xhp\" name=\"Избор на област\">Избор на област</link>"
+msgid "How to Work With $[officename] Calc"
+msgstr "Указания за работа с $[officename] Calc"
-#: main0112.xhp
+#: main0000.xhp
msgctxt ""
-"main0112.xhp\n"
-"hd_id3153726\n"
+"main0000.xhp\n"
+"par_id3147004\n"
"5\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12030000.xhp\" name=\"Sort\">Sort</link>"
-msgstr "<link href=\"text/scalc/01/12030000.xhp\" name=\"Сортиране\">Сортиране</link>"
+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=\"Списък на функциите по категория\">Списък на функциите по категория</link>"
-#: main0112.xhp
+#: main0000.xhp
msgctxt ""
-"main0112.xhp\n"
-"hd_id3153142\n"
+"main0000.xhp\n"
+"hd_id3154659\n"
"6\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12050000.xhp\" name=\"Subtotals\">Subtotals</link>"
-msgstr "<link href=\"text/scalc/01/12050000.xhp\" name=\"Междинни суми\">Междинни суми</link>"
-
-#: main0112.xhp
-msgctxt ""
-"main0112.xhp\n"
-"hd_id3151073\n"
-"10\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/12120000.xhp\" name=\"Validity\">Validity</link>"
-msgstr "<link href=\"text/scalc/01/12120000.xhp\" name=\"Валидност\">Валидност</link>"
-
-#: main0112.xhp
-msgctxt ""
-"main0112.xhp\n"
-"hd_id3145254\n"
-"7\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/12060000.xhp\" name=\"Multiple Operations\">Multiple Operations</link>"
-msgstr "<link href=\"text/scalc/01/12060000.xhp\" name=\"Успоредни операции\">Успоредни операции</link>"
-
-#: main0112.xhp
-msgctxt ""
-"main0112.xhp\n"
-"hd_id1387066\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/text2columns.xhp\">Text to Columns</link>"
-msgstr "<link href=\"text/scalc/01/text2columns.xhp\">Текст към колони</link>"
-
-#: main0112.xhp
-msgctxt ""
-"main0112.xhp\n"
-"hd_id3150717\n"
-"8\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/12070000.xhp\" name=\"Consolidate\">Consolidate</link>"
-msgstr "<link href=\"text/scalc/01/12070000.xhp\" name=\"Консолидиране\">Консолидиране</link>"
+msgid "$[officename] Calc Menus, Toolbars, and Keys"
+msgstr "$[officename] Calc - менюта, ленти с инструменти и клавиши"
-#: main0112.xhp
+#: main0000.xhp
msgctxt ""
-"main0112.xhp\n"
-"hd_id3154754\n"
-"9\n"
+"main0000.xhp\n"
+"hd_id3150883\n"
+"4\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12100000.xhp\" name=\"Refresh Range\">Refresh Range</link>"
-msgstr "<link href=\"text/scalc/01/12100000.xhp\" name=\"Опресняване на област\">Опресняване на област</link>"
+msgid "Help about the Help"
+msgstr "Помощ за помощта"
-#: main0106.xhp
+#: main0100.xhp
msgctxt ""
-"main0106.xhp\n"
+"main0100.xhp\n"
"tit\n"
"help.text"
-msgid "Tools"
-msgstr "Инструменти"
+msgid "Menus"
+msgstr "Менюта"
-#: main0106.xhp
+#: main0100.xhp
msgctxt ""
-"main0106.xhp\n"
-"hd_id3150769\n"
+"main0100.xhp\n"
+"hd_id3156023\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/main0106.xhp\" name=\"Tools\">Tools</link>"
-msgstr "<link href=\"text/scalc/main0106.xhp\" name=\"Инструменти\">Инструменти</link>"
+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=\"Менюта\">Менюта</link></variable>"
-#: main0106.xhp
+#: main0100.xhp
msgctxt ""
-"main0106.xhp\n"
-"par_id3150440\n"
+"main0100.xhp\n"
+"par_id3154760\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".\">The <emph>Tools </emph>menu contains commands to check spelling, to trace sheet references, to find mistakes and to define scenarios.</ahelp>"
-msgstr "<ahelp hid=\".\">Менюто <emph>Инструменти</emph> съдържа команди за проверка на правописа, проследяване на обръщенията в листа, търсене на грешки и дефиниране на сценарии.</ahelp>"
-
-#: main0106.xhp
-msgctxt ""
-"main0106.xhp\n"
-"par_id3152576\n"
-"10\n"
-"help.text"
-msgid "You can also create and assign macros and configure the look and feel of toolbars, menus, keyboard, and set the default options for $[officename] applications."
-msgstr "Също така, можете да създавате и присвоявате макроси и да конфигурирате лентите с инструменти, менютата, клавишните комбинации и подразбираните настройки за приложенията от $[officename]."
-
-#: main0106.xhp
-msgctxt ""
-"main0106.xhp\n"
-"hd_id3149122\n"
-"12\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/06040000.xhp\" name=\"Goal Seek\">Goal Seek</link>"
-msgstr "<link href=\"text/scalc/01/06040000.xhp\" name=\"Удовлетворяване на условие\">Удовлетворяване на условие</link>"
-
-#: main0106.xhp
-msgctxt ""
-"main0106.xhp\n"
-"hd_id3155768\n"
-"6\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/06050000.xhp\" name=\"Scenarios\">Scenarios</link>"
-msgstr "<link href=\"text/scalc/01/06050000.xhp\" name=\"Сценарии\">Сценарии</link>"
-
-#: main0106.xhp
-msgctxt ""
-"main0106.xhp\n"
-"hd_id3154015\n"
-"9\n"
-"help.text"
-msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect Options</link>"
-msgstr "<link href=\"text/shared/01/06040000.xhp\" name=\"Автокорекция\">Настройки на автокорекция</link>"
-
-#: main0106.xhp
-msgctxt ""
-"main0106.xhp\n"
-"hd_id3150086\n"
-"8\n"
-"help.text"
-msgid "<link href=\"text/shared/01/06140000.xhp\" name=\"Customize\">Customize</link>"
-msgstr "<link href=\"text/shared/01/06140000.xhp\" name=\"Персонализиране\">Персонализиране</link>"
+msgid "The following menu commands are available for spreadsheets."
+msgstr "Следват командите от менютата за работа с електронни таблици."
-#: main0503.xhp
+#: main0101.xhp
msgctxt ""
-"main0503.xhp\n"
+"main0101.xhp\n"
"tit\n"
"help.text"
-msgid "$[officename] Calc Features"
-msgstr "Възможности на $[officename] Calc"
+msgid "File"
+msgstr "Файл"
-#: main0503.xhp
+#: main0101.xhp
msgctxt ""
-"main0503.xhp\n"
-"hd_id3154758\n"
+"main0101.xhp\n"
+"hd_id3156023\n"
"1\n"
"help.text"
-msgid "<variable id=\"main0503\"><link href=\"text/scalc/main0503.xhp\" name=\"$[officename] Calc Features\">$[officename] Calc Features</link></variable>"
-msgstr "<variable id=\"main0503\"><link href=\"text/scalc/main0503.xhp\" name=\"Възможности на $[officename] Calc\">Възможности на $[officename] Calc</link></variable>"
+msgid "<link href=\"text/scalc/main0101.xhp\" name=\"File\">File</link>"
+msgstr "<link href=\"text/scalc/main0101.xhp\" name=\"Файл\">Файл</link>"
-#: main0503.xhp
+#: main0101.xhp
msgctxt ""
-"main0503.xhp\n"
-"par_id3149457\n"
+"main0101.xhp\n"
+"par_id3151112\n"
"2\n"
"help.text"
-msgid "$[officename] Calc is a spreadsheet application that you can use to calculate, analyze, and manage your data. You can also import and modify Microsoft Excel spreadsheets."
-msgstr "$[officename] Calc представлява приложение за електронни таблици, с което можете да извършвате изчисления, анализи и организиране на данни. Можете също така да импортирате и променяте електронни таблици на Microsoft Excel."
+msgid "<ahelp hid=\".\">These commands apply to the current document, open a new document, or close the application.</ahelp>"
+msgstr "<ahelp hid=\".\">These commands apply to the current document, open a new document, or close the application.</ahelp>"
-#: main0503.xhp
+#: main0101.xhp
msgctxt ""
-"main0503.xhp\n"
-"hd_id3148797\n"
+"main0101.xhp\n"
+"hd_id3154684\n"
"4\n"
"help.text"
-msgid "Calculations"
-msgstr "Изчисления"
+msgid "<link href=\"text/shared/01/01020000.xhp\" name=\"Open\">Open</link>"
+msgstr "<link href=\"text/shared/01/01020000.xhp\" name=\"Отваряне\">Отваряне</link>"
-#: main0503.xhp
+#: main0101.xhp
msgctxt ""
-"main0503.xhp\n"
-"par_id3145172\n"
+"main0101.xhp\n"
+"hd_id3147434\n"
"5\n"
"help.text"
-msgid "$[officename] Calc provides you with <link href=\"text/scalc/01/04060100.xhp\" name=\"functions\">functions</link>, including statistical and banking functions, that you can use to create formulas to perform complex calculations on your data."
-msgstr "$[officename] Calc ви предлага различни <link href=\"text/scalc/01/04060100.xhp\" name=\"функции\">функции</link>, включително статистически и финансови, които можете да използвате във формули, за да извършвате сложни изчисления с данни."
-
-#: main0503.xhp
-msgctxt ""
-"main0503.xhp\n"
-"par_id3145271\n"
-"6\n"
-"help.text"
-msgid "You can also use the <link href=\"text/scalc/01/04060000.xhp\" name=\"AutoPilots\">Function Wizard</link> to help you create your formulas."
-msgstr "За да улесните създаването на формули, можете да ползвате <link href=\"text/scalc/01/04060000.xhp\" name=\"Помощници\">помощника за функции</link>."
-
-#: main0503.xhp
-msgctxt ""
-"main0503.xhp\n"
-"hd_id3152596\n"
-"13\n"
-"help.text"
-msgid "What-If Calculations"
-msgstr "Изчисления от вида \"Какво, ако?\""
+msgid "<link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">Save As</link>"
+msgstr "<link href=\"text/shared/01/01070000.xhp\" name=\"Съхраняване като\">Съхраняване като</link>"
-#: main0503.xhp
+#: main0101.xhp
msgctxt ""
-"main0503.xhp\n"
-"par_id3156444\n"
-"14\n"
+"main0101.xhp\n"
+"hd_id3147396\n"
+"11\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 "Интересна възможност е незабавното проследяване на резултата от промяната на един фактор в изчисления, зависещи от няколко фактора. Например, можете да видите как промяната на периода в изчисление за заем се отразява върху лихвите или вноските. Освен това можете да работите с по-големи таблици с помощта на различни предварително дефинирани сценарии."
+msgid "<link href=\"text/shared/01/01190000.xhp\" name=\"Versions\">Versions</link>"
+msgstr "<link href=\"text/shared/01/01190000.xhp\" name=\"Версии\">Версии</link>"
-#: main0503.xhp
+#: main0101.xhp
msgctxt ""
-"main0503.xhp\n"
-"hd_id3148576\n"
+"main0101.xhp\n"
+"hd_id3149400\n"
"7\n"
"help.text"
-msgid "Database Functions"
-msgstr "Функции за бази от данни"
-
-#: main0503.xhp
-msgctxt ""
-"main0503.xhp\n"
-"par_id3154011\n"
-"8\n"
-"help.text"
-msgid "Use spreadsheets to arrange, store, and filter your data."
-msgstr "Ползвайте електронни таблици, за да подреждате, съхранявате и филтрирате вашите данни."
-
-#: main0503.xhp
-msgctxt ""
-"main0503.xhp\n"
-"par_id3154942\n"
-"25\n"
-"help.text"
-msgid "$[officename] Calc lets you drag-and-drop tables from databases, or lets you use a spreadsheet as a data source for creating form letters in $[officename] Writer."
-msgstr "$[officename] Calc ви позволява да влачите и пускате таблици от бази от данни, както и да ползвате електронна таблица като източник за създаване на циркулярни писма в $[officename] Writer."
+msgid "<link href=\"text/shared/01/01100000.xhp\" name=\"Properties\">Properties</link>"
+msgstr "<link href=\"text/shared/01/01100000.xhp\" name=\"Свойства\">Свойства</link>"
-#: main0503.xhp
+#: main0101.xhp
msgctxt ""
-"main0503.xhp\n"
-"hd_id3145800\n"
+"main0101.xhp\n"
+"hd_id3155445\n"
"9\n"
"help.text"
-msgid "Arranging Data"
-msgstr "Подреждане на данни"
+msgid "<link href=\"text/shared/01/01130000.xhp\" name=\"Print\">Print</link>"
+msgstr "<link href=\"text/shared/01/01130000.xhp\" name=\"Печат\">Печат</link>"
-#: main0503.xhp
+#: main0101.xhp
msgctxt ""
-"main0503.xhp\n"
-"par_id3154490\n"
+"main0101.xhp\n"
+"hd_id3147339\n"
"10\n"
"help.text"
-msgid "With a few mouse-clicks, you can reorganize your spreadsheet to show or hide certain data ranges, or to format ranges according to special conditions, or to quickly calculate subtotals and totals."
-msgstr "Чрез няколко щраквания с мишката можете да реорганизирате електронната таблица, като показвате или скривате определени области с данни, форматирате областите според специални условия или изчислявате междинни и крайни резултати."
-
-#: main0503.xhp
-msgctxt ""
-"main0503.xhp\n"
-"hd_id3155601\n"
-"16\n"
-"help.text"
-msgid "Dynamic Charts"
-msgstr "Динамични диаграми"
-
-#: main0503.xhp
-msgctxt ""
-"main0503.xhp\n"
-"par_id3149121\n"
-"17\n"
-"help.text"
-msgid "$[officename] Calc lets you present spreadsheet data in dynamic charts that update automatically when the data changes."
-msgstr "$[officename] Calc ви позволява да представяте данните от електронните таблици в динамични диаграми, които се обновяват автоматично, когато данните бъдат променени."
-
-#: main0503.xhp
-msgctxt ""
-"main0503.xhp\n"
-"hd_id3153707\n"
-"18\n"
-"help.text"
-msgid "Opening and Saving Microsoft Files"
-msgstr "Отваряне и записване на файлове от Microsoft"
-
-#: main0503.xhp
-msgctxt ""
-"main0503.xhp\n"
-"par_id3157867\n"
-"19\n"
-"help.text"
-msgid "Use the $[officename] filters to convert Excel files, or to open and save in a variety of other <link href=\"text/shared/00/00000020.xhp\" name=\"formats\">formats</link>."
-msgstr "С филтрите на $[officename] можете да конвертирате файлове на Excel или да отваряте и записвате файлове в множество други <link href=\"text/shared/00/00000020.xhp\" name=\"формати\">формати</link>."
+msgid "<link href=\"text/shared/01/01140000.xhp\" name=\"Printer Setup\">Printer Setup</link>"
+msgstr "<link href=\"text/shared/01/01140000.xhp\" name=\"Настройки на принтера\">Настройки на принтера</link>"
-#: main0205.xhp
+#: main0102.xhp
msgctxt ""
-"main0205.xhp\n"
+"main0102.xhp\n"
"tit\n"
"help.text"
-msgid "Text Formatting Bar"
-msgstr "Лента Форматиране на текст"
+msgid "Edit"
+msgstr "Редактиране"
-#: main0205.xhp
+#: main0102.xhp
msgctxt ""
-"main0205.xhp\n"
-"hd_id3156330\n"
+"main0102.xhp\n"
+"hd_id3156023\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/main0205.xhp\" name=\"Text Formatting Bar\">Text Formatting Bar</link>"
-msgstr "<link href=\"text/scalc/main0205.xhp\" name=\"Лента Форматиране на текст\">Лента Форматиране на текст</link>"
+msgid "<link href=\"text/scalc/main0102.xhp\" name=\"Edit\">Edit</link>"
+msgstr "<link href=\"text/scalc/main0102.xhp\" name=\"Редактиране\">Редактиране</link>"
-#: main0205.xhp
+#: main0102.xhp
msgctxt ""
-"main0205.xhp\n"
-"par_id3151112\n"
+"main0102.xhp\n"
+"par_id3154758\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_TOOLBOX_DRTEXT\">The <emph>Text Formatting</emph> Bar that is displayed when the cursor is in a text object, such as a text frame or a drawing object, contains formatting and alignment commands.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_TOOLBOX_DRTEXT\">Лентата <emph>Форматиране на текст</emph> се вижда, когато курсорът е в текстов обект - например текстова рамка или графичен обект с текст. Тя съдържа команди за форматиране и подравняване.</ahelp>"
-
-#: main0205.xhp
-msgctxt ""
-"main0205.xhp\n"
-"hd_id3148575\n"
-"7\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05020200.xhp\" name=\"Font Color\">Font Color</link>"
-msgstr "<link href=\"text/shared/01/05020200.xhp\" name=\"Цвят на шрифта\">Цвят на шрифта</link>"
-
-#: main0205.xhp
-msgctxt ""
-"main0205.xhp\n"
-"hd_id3154944\n"
-"8\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05030100.xhp\" name=\"Line Spacing: 1\">Line Spacing: 1</link>"
-msgstr "<link href=\"text/shared/01/05030100.xhp\" name=\"Междуредие: 1\">Междуредие: 1</link>"
-
-#: main0205.xhp
-msgctxt ""
-"main0205.xhp\n"
-"hd_id3146969\n"
-"9\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05030100.xhp\" name=\"Line Spacing: 1.5\">Line Spacing: 1.5</link>"
-msgstr "<link href=\"text/shared/01/05030100.xhp\" name=\"Междуредие: 1,5\">Междуредие: 1,5</link>"
-
-#: main0205.xhp
-msgctxt ""
-"main0205.xhp\n"
-"hd_id3153711\n"
-"10\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05030100.xhp\" name=\"Line Spacing: 2\">Line Spacing: 2</link>"
-msgstr "<link href=\"text/shared/01/05030100.xhp\" name=\"Междуредие: 2\">Междуредие: 2</link>"
+msgid "<ahelp hid=\".\">This menu contains commands for editing the contents of the current document.</ahelp>"
+msgstr "<ahelp hid=\".\">Менюто съдържа команди за редактиране на съдържанието на документа.</ahelp>"
-#: main0205.xhp
+#: main0102.xhp
msgctxt ""
-"main0205.xhp\n"
-"hd_id3147345\n"
-"11\n"
+"main0102.xhp\n"
+"hd_id3146119\n"
+"3\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=\"Подравняване отляво\">Подравняване отляво</link>"
+msgid "<link href=\"text/shared/01/02070000.xhp\" name=\"Paste Special\">Paste Special</link>"
+msgstr "<link href=\"text/shared/01/02070000.xhp\" name=\"Специално поставяне\">Специално поставяне</link>"
-#: main0205.xhp
+#: main0102.xhp
msgctxt ""
-"main0205.xhp\n"
-"hd_id3155337\n"
+"main0102.xhp\n"
+"hd_id3153728\n"
"12\n"
"help.text"
-msgid "<link href=\"text/shared/01/05030700.xhp\" name=\"Centered\">Centered</link>"
-msgstr "<link href=\"text/shared/01/05030700.xhp\" name=\"Центриране\">Центриране</link>"
+msgid "<link href=\"text/shared/01/02240000.xhp\" name=\"Compare Document\">Compare Document</link>"
+msgstr "<link href=\"text/shared/01/02240000.xhp\" name=\"Сравняване с документ\">Сравняване с документ</link>"
-#: main0205.xhp
+#: main0102.xhp
msgctxt ""
-"main0205.xhp\n"
-"hd_id3147001\n"
-"13\n"
+"main0102.xhp\n"
+"hd_id3154492\n"
+"4\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=\"Подравняване отдясно\">Подравняване отдясно</link>"
+msgid "<link href=\"text/shared/01/02100000.xhp\" name=\"Find & Replace\">Find & Replace</link>"
+msgstr "<link href=\"text/shared/01/02100000.xhp\" name=\"Търсене и замяна\">Търсене и замяна</link>"
-#: main0205.xhp
+#: main0102.xhp
msgctxt ""
-"main0205.xhp\n"
-"hd_id3155115\n"
-"14\n"
+"main0102.xhp\n"
+"hd_id3150715\n"
+"5\n"
"help.text"
-msgid "<link href=\"text/shared/01/05030700.xhp\" name=\"Justify\">Justify</link>"
-msgstr "<link href=\"text/shared/01/05030700.xhp\" name=\"Двустранно подравняване\">Двустранно подравняване</link>"
+msgid "<link href=\"text/scalc/01/02120000.xhp\" name=\"Headers & Footers\">Headers & Footers</link>"
+msgstr "<link href=\"text/scalc/01/02120000.xhp\" name=\"Колонтитули\">Колонтитули</link>"
-#: main0205.xhp
+#: main0102.xhp
msgctxt ""
-"main0205.xhp\n"
-"hd_id3150202\n"
-"15\n"
+"main0102.xhp\n"
+"hd_id3149018\n"
+"6\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020500.xhp\" name=\"Superscript\">Superscript</link>"
-msgstr "<link href=\"text/shared/01/05020500.xhp\" name=\"Горен индекс\">Горен индекс</link>"
+msgid "<link href=\"text/scalc/01/02150000.xhp\" name=\"Delete Contents\">Delete Contents</link>"
+msgstr "<link href=\"text/scalc/01/02150000.xhp\" name=\"Изтриване на съдържание\">Изтриване на съдържание</link>"
-#: main0205.xhp
+#: main0102.xhp
msgctxt ""
-"main0205.xhp\n"
-"hd_id3155531\n"
-"16\n"
+"main0102.xhp\n"
+"hd_id3156384\n"
+"7\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020500.xhp\" name=\"Subscript\">Subscript</link>"
-msgstr "<link href=\"text/shared/01/05020500.xhp\" name=\"Долен индекс\">Долен индекс</link>"
+msgid "<link href=\"text/scalc/01/02160000.xhp\" name=\"Delete Cells\">Delete Cells</link>"
+msgstr "<link href=\"text/scalc/01/02160000.xhp\" name=\"Изтриване на клетки\">Изтриване на клетки</link>"
-#: main0205.xhp
+#: main0102.xhp
msgctxt ""
-"main0205.xhp\n"
-"hd_id3145387\n"
-"17\n"
+"main0102.xhp\n"
+"hd_id3146919\n"
+"10\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Character</link>"
-msgstr "<link href=\"text/shared/01/05020000.xhp\" name=\"Знак\">Знак</link>"
+msgid "<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">Links</link>"
+msgstr "<link href=\"text/shared/01/02180000.xhp\" name=\"Връзки\">Връзки</link>"
-#: main0205.xhp
+#: main0102.xhp
msgctxt ""
-"main0205.xhp\n"
-"hd_id3153067\n"
-"18\n"
+"main0102.xhp\n"
+"hd_id3148488\n"
+"11\n"
"help.text"
-msgid "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Paragraph</link>"
-msgstr "<link href=\"text/shared/01/05030000.xhp\" name=\"Абзац\">Абзац</link>"
+msgid "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">ImageMap</link>"
+msgstr "<link href=\"text/shared/01/02220000.xhp\" name=\"Чувствително изображение\">Чувствително изображение</link>"
-#: main0203.xhp
+#: main0103.xhp
msgctxt ""
-"main0203.xhp\n"
+"main0103.xhp\n"
"tit\n"
"help.text"
-msgid "Drawing Object Properties Bar"
-msgstr "Лента Свойства на графичен обект"
+msgid "View"
+msgstr "Изглед"
-#: main0203.xhp
+#: main0103.xhp
msgctxt ""
-"main0203.xhp\n"
-"hd_id3154346\n"
+"main0103.xhp\n"
+"hd_id3151112\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/main0203.xhp\" name=\"Drawing Object Properties Bar\">Drawing Object Properties Bar</link>"
-msgstr "<link href=\"text/scalc/main0203.xhp\" name=\"Лента Свойства на графичен обект\">Лента Свойства на графичен обект</link>"
+msgid "<link href=\"text/scalc/main0103.xhp\" name=\"View\">View</link>"
+msgstr "<link href=\"text/scalc/main0103.xhp\" name=\"Изглед\">Изглед</link>"
-#: main0203.xhp
+#: main0103.xhp
msgctxt ""
-"main0203.xhp\n"
-"par_id3149656\n"
+"main0103.xhp\n"
+"par_id3149456\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_TOOLBOX_DRAW\">The <emph>Drawing Object Properties</emph> Bar for objects that you select in the sheet contains formatting and alignment commands.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_TOOLBOX_DRAW\">Лентата <emph>Свойства на графичен обект</emph> съдържа команди за форматиране и подравняване на избраните обекти от листа.</ahelp>"
-
-#: main0203.xhp
-msgctxt ""
-"main0203.xhp\n"
-"hd_id3145748\n"
-"3\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Style\">Line Style</link>"
-msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Стил на линия\">Стил на линия</link>"
+msgid "<ahelp hid=\".\">This menu contains commands for controlling the on-screen display of the document.</ahelp>"
+msgstr "<ahelp hid=\".\">Менюто съдържа команди контролиращи визуализацията на документа.</ahelp>"
-#: main0203.xhp
+#: main0103.xhp
msgctxt ""
-"main0203.xhp\n"
-"hd_id3151073\n"
-"4\n"
+"main0103.xhp\n"
+"par_idN105AB\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=\"Ширина на линия\">Ширина на линия</link>"
+msgid "Normal"
+msgstr "Обикновен"
-#: main0203.xhp
+#: main0103.xhp
msgctxt ""
-"main0203.xhp\n"
-"hd_id3153417\n"
-"5\n"
+"main0103.xhp\n"
+"par_idN105AF\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=\"Цвят на линия\">Цвят на линия</link>"
+msgid "<ahelp hid=\".\">Displays the normal view of the sheet.</ahelp>"
+msgstr "<ahelp hid=\".\">Покзва обикновен изглед към листа.</ahelp>"
-#: main0203.xhp
+#: main0103.xhp
msgctxt ""
-"main0203.xhp\n"
-"hd_id3147338\n"
-"6\n"
+"main0103.xhp\n"
+"hd_id3125863\n"
+"3\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=\"Цвят на фон\">Цвят на фон</link>"
+msgid "<link href=\"text/shared/01/03010000.xhp\" name=\"Zoom\">Zoom</link>"
+msgstr "<link href=\"text/shared/01/03010000.xhp\" name=\"Мащаб\">Мащаб</link>"
#: main0104.xhp
msgctxt ""
@@ -698,89 +439,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/04160500.xhp\" name=\"Floating Frame\">Floating Frame</link>"
msgstr "<link href=\"text/shared/01/04160500.xhp\" name=\"Плаваща рамка\">Плаваща рамка</link>"
-#: main0218.xhp
-msgctxt ""
-"main0218.xhp\n"
-"tit\n"
-"help.text"
-msgid "Tools Bar"
-msgstr "Лента Инструменти"
-
-#: main0218.xhp
-msgctxt ""
-"main0218.xhp\n"
-"hd_id3143268\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/main0218.xhp\" name=\"Tools Bar\">Tools Bar</link>"
-msgstr "<link href=\"text/scalc/main0218.xhp\" name=\"Лента Инструменти\">Лента Инструменти</link>"
-
-#: main0218.xhp
-msgctxt ""
-"main0218.xhp\n"
-"par_id3151112\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\"HID_SC_TOOLBOX_TOOLS\">Use the Tools bar to access commonly used commands.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_TOOLBOX_TOOLS\">Лентата Инструменти служи за достъп до най-често използваните команди.</ahelp>"
-
-#: 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=\"Елементи за управление\">Елементи за управление</link>"
-
-#: main0218.xhp
-msgctxt ""
-"main0218.xhp\n"
-"hd_id3154730\n"
-"6\n"
-"help.text"
-msgid "<link href=\"text/scalc/02/06080000.xhp\" name=\"Choose Themes\">Choose Themes</link>"
-msgstr "<link href=\"text/scalc/02/06080000.xhp\" name=\"Избор на теми\">Избор на теми</link>"
-
-#: 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=\"Разширен филтър\">Разширен филтър</link>"
-
-#: 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\">Начало</link>"
-
-#: 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=\"Преобразувател за евро\">Преобразувател за евро</link>"
-
-#: 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\">Дефиниране</link>"
-
-#: 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=\"Удовлетворяване на условие\">Удовлетворяване на условие</link>"
-
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
@@ -879,283 +537,234 @@ msgctxt ""
msgid "<link href=\"text/shared/02/01170200.xhp\" name=\"Form\">Form</link>"
msgstr "<link href=\"text/shared/02/01170200.xhp\" name=\"Формуляр\">Формуляр</link>"
-#: main0107.xhp
-msgctxt ""
-"main0107.xhp\n"
-"tit\n"
-"help.text"
-msgid "Window"
-msgstr "Прозорец"
-
-#: main0107.xhp
-msgctxt ""
-"main0107.xhp\n"
-"hd_id3154758\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/main0107.xhp\" name=\"Window\">Window</link>"
-msgstr "<link href=\"text/scalc/main0107.xhp\" name=\"Прозорец\">Прозорец</link>"
-
-#: main0107.xhp
-msgctxt ""
-"main0107.xhp\n"
-"par_id3150398\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:WindowList\">Contains commands for manipulating and displaying document windows.</ahelp>"
-msgstr "<ahelp hid=\".uno:WindowList\">Съдържа команди за манипулиране и показване на прозорците с документи.</ahelp>"
-
-#: main0210.xhp
+#: main0106.xhp
msgctxt ""
-"main0210.xhp\n"
+"main0106.xhp\n"
"tit\n"
"help.text"
-msgid "Page Preview Bar"
-msgstr "Лента Мостра на страница"
+msgid "Tools"
+msgstr "Инструменти"
-#: main0210.xhp
+#: main0106.xhp
msgctxt ""
-"main0210.xhp\n"
-"hd_id3156023\n"
+"main0106.xhp\n"
+"hd_id3150769\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/main0210.xhp\" name=\"Page Preview Bar\">Page Preview Bar</link>"
-msgstr "<link href=\"text/scalc/main0210.xhp\" name=\"Лента Мостра на страница\">Лента Мостра на страница</link>"
+msgid "<link href=\"text/scalc/main0106.xhp\" name=\"Tools\">Tools</link>"
+msgstr "<link href=\"text/scalc/main0106.xhp\" name=\"Инструменти\">Инструменти</link>"
-#: main0210.xhp
+#: main0106.xhp
msgctxt ""
-"main0210.xhp\n"
-"par_id3148663\n"
+"main0106.xhp\n"
+"par_id3150440\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_WIN_PREVIEW\">The <emph>Page Preview</emph> Bar is displayed when you choose <emph>File - Page Preview</emph>.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_WIN_PREVIEW\">Лентата <emph>Мостра на страница</emph> се показва, когато изберете <emph>Файл - Мостра на страница</emph>.</ahelp>"
-
-#: main0210.xhp
-msgctxt ""
-"main0210.xhp\n"
-"hd_id3147393\n"
-"3\n"
-"help.text"
-msgid "Full Screen"
-msgstr "Цял екран"
+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=\".\">Менюто <emph>Инструменти</emph> съдържа команди за проверка на правописа, проследяване на обръщенията в листа, търсене на грешки и дефиниране на сценарии.</ahelp>"
-#: main0210.xhp
+#: main0106.xhp
msgctxt ""
-"main0210.xhp\n"
-"par_id460828\n"
+"main0106.xhp\n"
+"par_id3152576\n"
+"10\n"
"help.text"
-msgid "Hides the menus and toolbars. To exit the full screen mode, click the <emph>Full Screen On/Off</emph> button."
-msgstr "Скрива менютата и лентите с инструменти. За да изключите режима „цял екран“, щракнете върху бутона <emph>Цял екран - вкл./изкл.</emph>."
+msgid "You can also create and assign macros and configure the look and feel of toolbars, menus, keyboard, and set the default options for $[officename] applications."
+msgstr "Също така, можете да създавате и присвоявате макроси и да конфигурирате лентите с инструменти, менютата, клавишните комбинации и подразбираните настройки за приложенията от $[officename]."
-#: main0210.xhp
+#: main0106.xhp
msgctxt ""
-"main0210.xhp\n"
-"hd_id3147394\n"
-"3\n"
+"main0106.xhp\n"
+"hd_id3149122\n"
+"12\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=\"Форматиране на страница\">Форматиране на страница</link>"
+msgid "<link href=\"text/scalc/01/06040000.xhp\" name=\"Goal Seek\">Goal Seek</link>"
+msgstr "<link href=\"text/scalc/01/06040000.xhp\" name=\"Удовлетворяване на условие\">Удовлетворяване на условие</link>"
-#: main0210.xhp
+#: main0106.xhp
msgctxt ""
-"main0210.xhp\n"
-"hd_id3147494\n"
-"3\n"
+"main0106.xhp\n"
+"hd_id3155768\n"
+"6\n"
"help.text"
-msgid "Margins"
-msgstr "Бели полета"
+msgid "<link href=\"text/scalc/01/06050000.xhp\" name=\"Scenarios\">Scenarios</link>"
+msgstr "<link href=\"text/scalc/01/06050000.xhp\" name=\"Сценарии\">Сценарии</link>"
-#: main0210.xhp
+#: main0106.xhp
msgctxt ""
-"main0210.xhp\n"
-"par_id460929\n"
+"main0106.xhp\n"
+"hd_id3154015\n"
+"9\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 "Скрива или показва белите полета на страницата. Можете да ги плъзгате с мишката, както и да ги задавате в раздела <emph>Страница</emph> на диалоговия прозорец <emph>Стил за страници</emph>."
+msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect Options</link>"
+msgstr "<link href=\"text/shared/01/06040000.xhp\" name=\"Автокорекция\">Настройки на автокорекция</link>"
-#: main0210.xhp
+#: main0106.xhp
msgctxt ""
-"main0210.xhp\n"
-"hd_id3245494\n"
-"3\n"
+"main0106.xhp\n"
+"hd_id3150086\n"
+"8\n"
"help.text"
-msgid "Scaling Factor"
-msgstr "Коеф. на мащабиране"
+msgid "<link href=\"text/shared/01/06140000.xhp\" name=\"Customize\">Customize</link>"
+msgstr "<link href=\"text/shared/01/06140000.xhp\" name=\"Персонализиране\">Персонализиране</link>"
-#: main0210.xhp
+#: main0107.xhp
msgctxt ""
-"main0210.xhp\n"
-"par_id460939\n"
+"main0107.xhp\n"
+"tit\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 "Този плъзгач задава мащаб на страницата в разпечатката. Коефициентът на мащабиране може да бъде зададен и в раздела <emph>Лист</emph> на диалоговия прозорец <emph>Стил за страници</emph>."
+msgid "Window"
+msgstr "Прозорец"
-#: main0210.xhp
+#: main0107.xhp
msgctxt ""
-"main0210.xhp\n"
-"hd_id3147395\n"
-"3\n"
+"main0107.xhp\n"
+"hd_id3154758\n"
+"1\n"
"help.text"
-msgid "Close Preview"
-msgstr "Затваряне на мострата"
+msgid "<link href=\"text/scalc/main0107.xhp\" name=\"Window\">Window</link>"
+msgstr "<link href=\"text/scalc/main0107.xhp\" name=\"Прозорец\">Прозорец</link>"
-#: main0210.xhp
+#: main0107.xhp
msgctxt ""
-"main0210.xhp\n"
-"par_id460829\n"
+"main0107.xhp\n"
+"par_id3150398\n"
+"2\n"
"help.text"
-msgid "To exit the page preview, click the <emph>Close Preview</emph> button."
-msgstr "За да затворите мострата на страница, щракнете върху бутона <emph>Затваряне на мострата</emph>."
+msgid "<ahelp hid=\".uno:WindowList\">Contains commands for manipulating and displaying document windows.</ahelp>"
+msgstr "<ahelp hid=\".uno:WindowList\">Съдържа команди за манипулиране и показване на прозорците с документи.</ahelp>"
-#: main0103.xhp
+#: main0112.xhp
msgctxt ""
-"main0103.xhp\n"
+"main0112.xhp\n"
"tit\n"
"help.text"
-msgid "View"
-msgstr "Изглед"
+msgid "Data"
+msgstr "Данни"
-#: main0103.xhp
+#: main0112.xhp
msgctxt ""
-"main0103.xhp\n"
-"hd_id3151112\n"
+"main0112.xhp\n"
+"hd_id3153254\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/main0103.xhp\" name=\"View\">View</link>"
-msgstr "<link href=\"text/scalc/main0103.xhp\" name=\"Изглед\">Изглед</link>"
+msgid "<link href=\"text/scalc/main0112.xhp\" name=\"Data\">Data</link>"
+msgstr "<link href=\"text/scalc/main0112.xhp\" name=\"Данни\">Данни</link>"
-#: main0103.xhp
+#: main0112.xhp
msgctxt ""
-"main0103.xhp\n"
-"par_id3149456\n"
+"main0112.xhp\n"
+"par_id3147264\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".\">This menu contains commands for controlling the on-screen display of the document.</ahelp>"
-msgstr "<ahelp hid=\".\">Менюто съдържа команди контролиращи визуализацията на документа.</ahelp>"
-
-#: main0103.xhp
-msgctxt ""
-"main0103.xhp\n"
-"par_idN105AB\n"
-"help.text"
-msgid "Normal"
-msgstr "Обикновен"
-
-#: main0103.xhp
-msgctxt ""
-"main0103.xhp\n"
-"par_idN105AF\n"
-"help.text"
-msgid "<ahelp hid=\".\">Displays the normal view of the sheet.</ahelp>"
-msgstr "<ahelp hid=\".\">Покзва обикновен изглед към листа.</ahelp>"
+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=\".\">Командите от менюто <emph>Данни</emph> служат за редактиране на данните в текущия лист. Можете да дефинирате области, да сортирате и филтрирате данните, да изчислявате резултати, да групирате данни и да създавате обобщаващи таблици.</ahelp>"
-#: main0103.xhp
+#: main0112.xhp
msgctxt ""
-"main0103.xhp\n"
-"hd_id3125863\n"
+"main0112.xhp\n"
+"hd_id3150400\n"
"3\n"
"help.text"
-msgid "<link href=\"text/shared/01/03010000.xhp\" name=\"Zoom\">Zoom</link>"
-msgstr "<link href=\"text/shared/01/03010000.xhp\" name=\"Мащаб\">Мащаб</link>"
+msgid "<link href=\"text/scalc/01/12010000.xhp\" name=\"Define Range\">Define Range</link>"
+msgstr "<link href=\"text/scalc/01/12010000.xhp\" name=\"Дефиниране на област\">Дефиниране на област</link>"
-#: main0102.xhp
+#: main0112.xhp
msgctxt ""
-"main0102.xhp\n"
-"tit\n"
+"main0112.xhp\n"
+"hd_id3125863\n"
+"4\n"
"help.text"
-msgid "Edit"
-msgstr "Редактиране"
+msgid "<link href=\"text/scalc/01/12020000.xhp\" name=\"Select Range\">Select Range</link>"
+msgstr "<link href=\"text/scalc/01/12020000.xhp\" name=\"Избор на област\">Избор на област</link>"
-#: main0102.xhp
+#: main0112.xhp
msgctxt ""
-"main0102.xhp\n"
-"hd_id3156023\n"
-"1\n"
+"main0112.xhp\n"
+"hd_id3153726\n"
+"5\n"
"help.text"
-msgid "<link href=\"text/scalc/main0102.xhp\" name=\"Edit\">Edit</link>"
-msgstr "<link href=\"text/scalc/main0102.xhp\" name=\"Редактиране\">Редактиране</link>"
+msgid "<link href=\"text/scalc/01/12030000.xhp\" name=\"Sort\">Sort</link>"
+msgstr "<link href=\"text/scalc/01/12030000.xhp\" name=\"Сортиране\">Сортиране</link>"
-#: main0102.xhp
+#: main0112.xhp
msgctxt ""
-"main0102.xhp\n"
-"par_id3154758\n"
-"2\n"
+"main0112.xhp\n"
+"hd_id3153142\n"
+"6\n"
"help.text"
-msgid "<ahelp hid=\".\">This menu contains commands for editing the contents of the current document.</ahelp>"
-msgstr "<ahelp hid=\".\">Менюто съдържа команди за редактиране на съдържанието на документа.</ahelp>"
+msgid "<link href=\"text/scalc/01/12050000.xhp\" name=\"Subtotals\">Subtotals</link>"
+msgstr "<link href=\"text/scalc/01/12050000.xhp\" name=\"Междинни суми\">Междинни суми</link>"
-#: main0102.xhp
+#: main0112.xhp
msgctxt ""
-"main0102.xhp\n"
-"hd_id3146119\n"
-"3\n"
+"main0112.xhp\n"
+"hd_id3151073\n"
+"10\n"
"help.text"
-msgid "<link href=\"text/shared/01/02070000.xhp\" name=\"Paste Special\">Paste Special</link>"
-msgstr "<link href=\"text/shared/01/02070000.xhp\" name=\"Специално поставяне\">Специално поставяне</link>"
+msgid "<link href=\"text/scalc/01/12120000.xhp\" name=\"Validity\">Validity</link>"
+msgstr "<link href=\"text/scalc/01/12120000.xhp\" name=\"Валидност\">Валидност</link>"
-#: main0102.xhp
+#: main0112.xhp
msgctxt ""
-"main0102.xhp\n"
-"hd_id3153728\n"
-"12\n"
+"main0112.xhp\n"
+"hd_id3145254\n"
+"7\n"
"help.text"
-msgid "<link href=\"text/shared/01/02240000.xhp\" name=\"Compare Document\">Compare Document</link>"
-msgstr "<link href=\"text/shared/01/02240000.xhp\" name=\"Сравняване с документ\">Сравняване с документ</link>"
+msgid "<link href=\"text/scalc/01/12060000.xhp\" name=\"Multiple Operations\">Multiple Operations</link>"
+msgstr "<link href=\"text/scalc/01/12060000.xhp\" name=\"Успоредни операции\">Успоредни операции</link>"
-#: main0102.xhp
+#: main0112.xhp
msgctxt ""
-"main0102.xhp\n"
-"hd_id3154492\n"
-"4\n"
+"main0112.xhp\n"
+"hd_id1387066\n"
"help.text"
-msgid "<link href=\"text/shared/01/02100000.xhp\" name=\"Find & Replace\">Find & Replace</link>"
-msgstr "<link href=\"text/shared/01/02100000.xhp\" name=\"Търсене и замяна\">Търсене и замяна</link>"
+msgid "<link href=\"text/scalc/01/text2columns.xhp\">Text to Columns</link>"
+msgstr "<link href=\"text/scalc/01/text2columns.xhp\">Текст към колони</link>"
-#: main0102.xhp
+#: main0112.xhp
msgctxt ""
-"main0102.xhp\n"
-"hd_id3150715\n"
-"5\n"
+"main0112.xhp\n"
+"hd_id3150717\n"
+"8\n"
"help.text"
-msgid "<link href=\"text/scalc/01/02120000.xhp\" name=\"Headers & Footers\">Headers & Footers</link>"
-msgstr "<link href=\"text/scalc/01/02120000.xhp\" name=\"Колонтитули\">Колонтитули</link>"
+msgid "<link href=\"text/scalc/01/12070000.xhp\" name=\"Consolidate\">Consolidate</link>"
+msgstr "<link href=\"text/scalc/01/12070000.xhp\" name=\"Консолидиране\">Консолидиране</link>"
-#: main0102.xhp
+#: main0112.xhp
msgctxt ""
-"main0102.xhp\n"
-"hd_id3149018\n"
-"6\n"
+"main0112.xhp\n"
+"hd_id3154754\n"
+"9\n"
"help.text"
-msgid "<link href=\"text/scalc/01/02150000.xhp\" name=\"Delete Contents\">Delete Contents</link>"
-msgstr "<link href=\"text/scalc/01/02150000.xhp\" name=\"Изтриване на съдържание\">Изтриване на съдържание</link>"
+msgid "<link href=\"text/scalc/01/12100000.xhp\" name=\"Refresh Range\">Refresh Range</link>"
+msgstr "<link href=\"text/scalc/01/12100000.xhp\" name=\"Опресняване на област\">Опресняване на област</link>"
-#: main0102.xhp
+#: main0200.xhp
msgctxt ""
-"main0102.xhp\n"
-"hd_id3156384\n"
-"7\n"
+"main0200.xhp\n"
+"tit\n"
"help.text"
-msgid "<link href=\"text/scalc/01/02160000.xhp\" name=\"Delete Cells\">Delete Cells</link>"
-msgstr "<link href=\"text/scalc/01/02160000.xhp\" name=\"Изтриване на клетки\">Изтриване на клетки</link>"
+msgid "Toolbars"
+msgstr "Ленти с инструменти"
-#: main0102.xhp
+#: main0200.xhp
msgctxt ""
-"main0102.xhp\n"
-"hd_id3146919\n"
-"10\n"
+"main0200.xhp\n"
+"hd_id3154758\n"
+"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">Links</link>"
-msgstr "<link href=\"text/shared/01/02180000.xhp\" name=\"Връзки\">Връзки</link>"
+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=\"Ленти с инструменти\">Ленти с инструменти</link></variable>"
-#: main0102.xhp
+#: main0200.xhp
msgctxt ""
-"main0102.xhp\n"
-"hd_id3148488\n"
-"11\n"
+"main0200.xhp\n"
+"par_id3148798\n"
+"2\n"
"help.text"
-msgid "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">ImageMap</link>"
-msgstr "<link href=\"text/shared/01/02220000.xhp\" name=\"Чувствително изображение\">Чувствително изображение</link>"
+msgid "This submenu lists the toolbars that are available in spreadsheets.<embedvar href=\"text/shared/00/00000007.xhp#symbolleistenneu\"/>"
+msgstr "В това подменю са изброени лентите с инструменти за работа с електронни таблици.<embedvar href=\"text/shared/00/00000007.xhp#symbolleistenneu\"/>"
#: main0202.xhp
msgctxt ""
@@ -1383,84 +992,201 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Aligns the contents of the cell to the left and right cell borders.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Подравнява съдържанието на клетката едновременно по левия и десния й край.</ahelp>"
-#: main0000.xhp
+#: main0203.xhp
msgctxt ""
-"main0000.xhp\n"
+"main0203.xhp\n"
"tit\n"
"help.text"
-msgid "Welcome to the $[officename] Calc Help"
-msgstr "Добре дошли в помощта на $[officename] Calc"
+msgid "Drawing Object Properties Bar"
+msgstr "Лента Свойства на графичен обект"
-#: main0000.xhp
+#: main0203.xhp
msgctxt ""
-"main0000.xhp\n"
-"hd_id3147338\n"
+"main0203.xhp\n"
+"hd_id3154346\n"
"1\n"
"help.text"
-msgid "Welcome to the $[officename] Calc Help"
-msgstr "Добре дошли в помощта на $[officename] Calc"
+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=\"Лента Свойства на графичен обект\">Лента Свойства на графичен обект</link>"
-#: main0000.xhp
+#: main0203.xhp
msgctxt ""
-"main0000.xhp\n"
-"hd_id3153965\n"
+"main0203.xhp\n"
+"par_id3149656\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\"HID_SC_TOOLBOX_DRAW\">The <emph>Drawing Object Properties</emph> Bar for objects that you select in the sheet contains formatting and alignment commands.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_TOOLBOX_DRAW\">Лентата <emph>Свойства на графичен обект</emph> съдържа команди за форматиране и подравняване на избраните обекти от листа.</ahelp>"
+
+#: main0203.xhp
+msgctxt ""
+"main0203.xhp\n"
+"hd_id3145748\n"
"3\n"
"help.text"
-msgid "How to Work With $[officename] Calc"
-msgstr "Указания за работа с $[officename] Calc"
+msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Style\">Line Style</link>"
+msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Стил на линия\">Стил на линия</link>"
-#: main0000.xhp
+#: main0203.xhp
msgctxt ""
-"main0000.xhp\n"
-"par_id3147004\n"
-"5\n"
+"main0203.xhp\n"
+"hd_id3151073\n"
+"4\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=\"Списък на функциите по категория\">Списък на функциите по категория</link>"
+msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Width\">Line Width</link>"
+msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Ширина на линия\">Ширина на линия</link>"
-#: main0000.xhp
+#: main0203.xhp
msgctxt ""
-"main0000.xhp\n"
-"hd_id3154659\n"
-"6\n"
+"main0203.xhp\n"
+"hd_id3153417\n"
+"5\n"
"help.text"
-msgid "$[officename] Calc Menus, Toolbars, and Keys"
-msgstr "$[officename] Calc - менюта, ленти с инструменти и клавиши"
+msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Color\">Line Color</link>"
+msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Цвят на линия\">Цвят на линия</link>"
-#: main0000.xhp
+#: main0203.xhp
msgctxt ""
-"main0000.xhp\n"
-"hd_id3150883\n"
-"4\n"
+"main0203.xhp\n"
+"hd_id3147338\n"
+"6\n"
"help.text"
-msgid "Help about the Help"
-msgstr "Помощ за помощта"
+msgid "<link href=\"text/shared/01/05210100.xhp\" name=\"Background Color\">Background Color</link>"
+msgstr "<link href=\"text/shared/01/05210100.xhp\" name=\"Цвят на фон\">Цвят на фон</link>"
-#: main0100.xhp
+#: main0205.xhp
msgctxt ""
-"main0100.xhp\n"
+"main0205.xhp\n"
"tit\n"
"help.text"
-msgid "Menus"
-msgstr "Менюта"
+msgid "Text Formatting Bar"
+msgstr "Лента Форматиране на текст"
-#: main0100.xhp
+#: main0205.xhp
msgctxt ""
-"main0100.xhp\n"
-"hd_id3156023\n"
+"main0205.xhp\n"
+"hd_id3156330\n"
"1\n"
"help.text"
-msgid "<variable id=\"main0100\"><link href=\"text/scalc/main0100.xhp\" name=\"Menus\">Menus</link></variable>"
-msgstr "<variable id=\"main0100\"><link href=\"text/scalc/main0100.xhp\" name=\"Менюта\">Менюта</link></variable>"
+msgid "<link href=\"text/scalc/main0205.xhp\" name=\"Text Formatting Bar\">Text Formatting Bar</link>"
+msgstr "<link href=\"text/scalc/main0205.xhp\" name=\"Лента Форматиране на текст\">Лента Форматиране на текст</link>"
-#: main0100.xhp
+#: main0205.xhp
msgctxt ""
-"main0100.xhp\n"
-"par_id3154760\n"
+"main0205.xhp\n"
+"par_id3151112\n"
"2\n"
"help.text"
-msgid "The following menu commands are available for spreadsheets."
-msgstr "Следват командите от менютата за работа с електронни таблици."
+msgid "<ahelp hid=\"HID_SC_TOOLBOX_DRTEXT\">The <emph>Text Formatting</emph> Bar that is displayed when the cursor is in a text object, such as a text frame or a drawing object, contains formatting and alignment commands.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_TOOLBOX_DRTEXT\">Лентата <emph>Форматиране на текст</emph> се вижда, когато курсорът е в текстов обект - например текстова рамка или графичен обект с текст. Тя съдържа команди за форматиране и подравняване.</ahelp>"
+
+#: main0205.xhp
+msgctxt ""
+"main0205.xhp\n"
+"hd_id3148575\n"
+"7\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05020200.xhp\" name=\"Font Color\">Font Color</link>"
+msgstr "<link href=\"text/shared/01/05020200.xhp\" name=\"Цвят на шрифта\">Цвят на шрифта</link>"
+
+#: main0205.xhp
+msgctxt ""
+"main0205.xhp\n"
+"hd_id3154944\n"
+"8\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05030100.xhp\" name=\"Line Spacing: 1\">Line Spacing: 1</link>"
+msgstr "<link href=\"text/shared/01/05030100.xhp\" name=\"Междуредие: 1\">Междуредие: 1</link>"
+
+#: main0205.xhp
+msgctxt ""
+"main0205.xhp\n"
+"hd_id3146969\n"
+"9\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05030100.xhp\" name=\"Line Spacing: 1.5\">Line Spacing: 1.5</link>"
+msgstr "<link href=\"text/shared/01/05030100.xhp\" name=\"Междуредие: 1,5\">Междуредие: 1,5</link>"
+
+#: main0205.xhp
+msgctxt ""
+"main0205.xhp\n"
+"hd_id3153711\n"
+"10\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05030100.xhp\" name=\"Line Spacing: 2\">Line Spacing: 2</link>"
+msgstr "<link href=\"text/shared/01/05030100.xhp\" name=\"Междуредие: 2\">Междуредие: 2</link>"
+
+#: main0205.xhp
+msgctxt ""
+"main0205.xhp\n"
+"hd_id3147345\n"
+"11\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05030700.xhp\" name=\"Align Left\">Align Left</link>"
+msgstr "<link href=\"text/shared/01/05030700.xhp\" name=\"Подравняване отляво\">Подравняване отляво</link>"
+
+#: main0205.xhp
+msgctxt ""
+"main0205.xhp\n"
+"hd_id3155337\n"
+"12\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05030700.xhp\" name=\"Centered\">Centered</link>"
+msgstr "<link href=\"text/shared/01/05030700.xhp\" name=\"Центриране\">Центриране</link>"
+
+#: main0205.xhp
+msgctxt ""
+"main0205.xhp\n"
+"hd_id3147001\n"
+"13\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05030700.xhp\" name=\"Align Right\">Align Right</link>"
+msgstr "<link href=\"text/shared/01/05030700.xhp\" name=\"Подравняване отдясно\">Подравняване отдясно</link>"
+
+#: main0205.xhp
+msgctxt ""
+"main0205.xhp\n"
+"hd_id3155115\n"
+"14\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05030700.xhp\" name=\"Justify\">Justify</link>"
+msgstr "<link href=\"text/shared/01/05030700.xhp\" name=\"Двустранно подравняване\">Двустранно подравняване</link>"
+
+#: main0205.xhp
+msgctxt ""
+"main0205.xhp\n"
+"hd_id3150202\n"
+"15\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05020500.xhp\" name=\"Superscript\">Superscript</link>"
+msgstr "<link href=\"text/shared/01/05020500.xhp\" name=\"Горен индекс\">Горен индекс</link>"
+
+#: main0205.xhp
+msgctxt ""
+"main0205.xhp\n"
+"hd_id3155531\n"
+"16\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05020500.xhp\" name=\"Subscript\">Subscript</link>"
+msgstr "<link href=\"text/shared/01/05020500.xhp\" name=\"Долен индекс\">Долен индекс</link>"
+
+#: main0205.xhp
+msgctxt ""
+"main0205.xhp\n"
+"hd_id3145387\n"
+"17\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Character</link>"
+msgstr "<link href=\"text/shared/01/05020000.xhp\" name=\"Знак\">Знак</link>"
+
+#: main0205.xhp
+msgctxt ""
+"main0205.xhp\n"
+"hd_id3153067\n"
+"18\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Paragraph</link>"
+msgstr "<link href=\"text/shared/01/05030000.xhp\" name=\"Абзац\">Абзац</link>"
#: main0206.xhp
msgctxt ""
@@ -1488,111 +1214,150 @@ msgctxt ""
msgid "<ahelp hid=\"HID_SC_INPUTWIN\">Use this bar to enter formulas.</ahelp>"
msgstr "<ahelp hid=\"HID_SC_INPUTWIN\">Тази лента служи за въвеждане на формули.</ahelp>"
-#: main0200.xhp
+#: main0208.xhp
msgctxt ""
-"main0200.xhp\n"
+"main0208.xhp\n"
"tit\n"
"help.text"
-msgid "Toolbars"
-msgstr "Ленти с инструменти"
+msgid "Status Bar"
+msgstr "Лента за състоянието"
-#: main0200.xhp
+#: main0208.xhp
msgctxt ""
-"main0200.xhp\n"
-"hd_id3154758\n"
+"main0208.xhp\n"
+"hd_id3151385\n"
"1\n"
"help.text"
-msgid "<variable id=\"main0200\"><link href=\"text/scalc/main0200.xhp\" name=\"Toolbars\">Toolbars</link></variable>"
-msgstr "<variable id=\"main0200\"><link href=\"text/scalc/main0200.xhp\" name=\"Ленти с инструменти\">Ленти с инструменти</link></variable>"
+msgid "<link href=\"text/scalc/main0208.xhp\" name=\"Status Bar\">Status Bar</link>"
+msgstr "<link href=\"text/scalc/main0208.xhp\" name=\"Лента за състоянието\">Лента за състоянието</link>"
-#: main0200.xhp
+#: main0208.xhp
msgctxt ""
-"main0200.xhp\n"
-"par_id3148798\n"
+"main0208.xhp\n"
+"par_id3149669\n"
"2\n"
"help.text"
-msgid "This submenu lists the toolbars that are available in spreadsheets.<embedvar href=\"text/shared/00/00000007.xhp#symbolleistenneu\"/>"
-msgstr "В това подменю са изброени лентите с инструменти за работа с електронни таблици.<embedvar href=\"text/shared/00/00000007.xhp#symbolleistenneu\"/>"
+msgid "The <emph>Status Bar</emph> displays information about the current sheet."
+msgstr "<emph>Лентата за състоянието</emph> показва информация за текущия лист."
-#: main0101.xhp
+#: main0208.xhp
msgctxt ""
-"main0101.xhp\n"
+"main0208.xhp\n"
+"hd_id0821200911024321\n"
+"help.text"
+msgid "Digital Signature"
+msgstr "Цифров подпис"
+
+#: 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 "Вижте също <link href=\"text/shared/guide/digital_signatures.xhp\">Цифров подписи</link>."
+
+#: main0210.xhp
+msgctxt ""
+"main0210.xhp\n"
"tit\n"
"help.text"
-msgid "File"
-msgstr "Файл"
+msgid "Page Preview Bar"
+msgstr "Лента Мостра на страница"
-#: main0101.xhp
+#: main0210.xhp
msgctxt ""
-"main0101.xhp\n"
+"main0210.xhp\n"
"hd_id3156023\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/main0101.xhp\" name=\"File\">File</link>"
-msgstr "<link href=\"text/scalc/main0101.xhp\" name=\"Файл\">Файл</link>"
+msgid "<link href=\"text/scalc/main0210.xhp\" name=\"Page Preview Bar\">Page Preview Bar</link>"
+msgstr "<link href=\"text/scalc/main0210.xhp\" name=\"Лента Мостра на страница\">Лента Мостра на страница</link>"
-#: main0101.xhp
+#: main0210.xhp
msgctxt ""
-"main0101.xhp\n"
-"par_id3151112\n"
+"main0210.xhp\n"
+"par_id3148663\n"
"2\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=\".\">These commands apply to the current document, open a new document, or close the application.</ahelp>"
+msgid "<ahelp hid=\"HID_SC_WIN_PREVIEW\">The <emph>Page Preview</emph> Bar is displayed when you choose <emph>File - Page Preview</emph>.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_WIN_PREVIEW\">Лентата <emph>Мостра на страница</emph> се показва, когато изберете <emph>Файл - Мостра на страница</emph>.</ahelp>"
-#: main0101.xhp
+#: main0210.xhp
msgctxt ""
-"main0101.xhp\n"
-"hd_id3154684\n"
-"4\n"
+"main0210.xhp\n"
+"hd_id3147393\n"
+"3\n"
"help.text"
-msgid "<link href=\"text/shared/01/01020000.xhp\" name=\"Open\">Open</link>"
-msgstr "<link href=\"text/shared/01/01020000.xhp\" name=\"Отваряне\">Отваряне</link>"
+msgid "Full Screen"
+msgstr "Цял екран"
-#: main0101.xhp
+#: main0210.xhp
msgctxt ""
-"main0101.xhp\n"
-"hd_id3147434\n"
-"5\n"
+"main0210.xhp\n"
+"par_id460828\n"
"help.text"
-msgid "<link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">Save As</link>"
-msgstr "<link href=\"text/shared/01/01070000.xhp\" name=\"Съхраняване като\">Съхраняване като</link>"
+msgid "Hides the menus and toolbars. To exit the full screen mode, click the <emph>Full Screen On/Off</emph> button."
+msgstr "Скрива менютата и лентите с инструменти. За да изключите режима „цял екран“, щракнете върху бутона <emph>Цял екран - вкл./изкл.</emph>."
-#: main0101.xhp
+#: main0210.xhp
msgctxt ""
-"main0101.xhp\n"
-"hd_id3147396\n"
-"11\n"
+"main0210.xhp\n"
+"hd_id3147394\n"
+"3\n"
"help.text"
-msgid "<link href=\"text/shared/01/01190000.xhp\" name=\"Versions\">Versions</link>"
-msgstr "<link href=\"text/shared/01/01190000.xhp\" name=\"Версии\">Версии</link>"
+msgid "<link href=\"text/scalc/01/05070000.xhp\" name=\"Format Page\">Format Page</link>"
+msgstr "<link href=\"text/scalc/01/05070000.xhp\" name=\"Форматиране на страница\">Форматиране на страница</link>"
-#: main0101.xhp
+#: main0210.xhp
msgctxt ""
-"main0101.xhp\n"
-"hd_id3149400\n"
-"7\n"
+"main0210.xhp\n"
+"hd_id3147494\n"
+"3\n"
"help.text"
-msgid "<link href=\"text/shared/01/01100000.xhp\" name=\"Properties\">Properties</link>"
-msgstr "<link href=\"text/shared/01/01100000.xhp\" name=\"Свойства\">Свойства</link>"
+msgid "Margins"
+msgstr "Бели полета"
-#: main0101.xhp
+#: main0210.xhp
msgctxt ""
-"main0101.xhp\n"
-"hd_id3155445\n"
-"9\n"
+"main0210.xhp\n"
+"par_id460929\n"
"help.text"
-msgid "<link href=\"text/shared/01/01130000.xhp\" name=\"Print\">Print</link>"
-msgstr "<link href=\"text/shared/01/01130000.xhp\" name=\"Печат\">Печат</link>"
+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 "Скрива или показва белите полета на страницата. Можете да ги плъзгате с мишката, както и да ги задавате в раздела <emph>Страница</emph> на диалоговия прозорец <emph>Стил за страници</emph>."
-#: main0101.xhp
+#: main0210.xhp
msgctxt ""
-"main0101.xhp\n"
-"hd_id3147339\n"
-"10\n"
+"main0210.xhp\n"
+"hd_id3245494\n"
+"3\n"
"help.text"
-msgid "<link href=\"text/shared/01/01140000.xhp\" name=\"Printer Setup\">Printer Setup</link>"
-msgstr "<link href=\"text/shared/01/01140000.xhp\" name=\"Настройки на принтера\">Настройки на принтера</link>"
+msgid "Scaling Factor"
+msgstr "Коеф. на мащабиране"
+
+#: 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 "Този плъзгач задава мащаб на страницата в разпечатката. Коефициентът на мащабиране може да бъде зададен и в раздела <emph>Лист</emph> на диалоговия прозорец <emph>Стил за страници</emph>."
+
+#: main0210.xhp
+msgctxt ""
+"main0210.xhp\n"
+"hd_id3147395\n"
+"3\n"
+"help.text"
+msgid "Close Preview"
+msgstr "Затваряне на мострата"
+
+#: main0210.xhp
+msgctxt ""
+"main0210.xhp\n"
+"par_id460829\n"
+"help.text"
+msgid "To exit the page preview, click the <emph>Close Preview</emph> button."
+msgstr "За да затворите мострата на страница, щракнете върху бутона <emph>Затваряне на мострата</emph>."
#: main0214.xhp
msgctxt ""
@@ -1619,3 +1384,238 @@ msgctxt ""
"help.text"
msgid "<ahelp hid=\".\">The <emph>Picture</emph> bar is displayed when you insert or select a picture in a sheet.</ahelp>"
msgstr "<ahelp hid=\".\">Лентата <emph>Картина</emph> се показва, когато вмъкнете или изберете картина в лист.</ahelp>"
+
+#: main0218.xhp
+msgctxt ""
+"main0218.xhp\n"
+"tit\n"
+"help.text"
+msgid "Tools Bar"
+msgstr "Лента Инструменти"
+
+#: main0218.xhp
+msgctxt ""
+"main0218.xhp\n"
+"hd_id3143268\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/scalc/main0218.xhp\" name=\"Tools Bar\">Tools Bar</link>"
+msgstr "<link href=\"text/scalc/main0218.xhp\" name=\"Лента Инструменти\">Лента Инструменти</link>"
+
+#: main0218.xhp
+msgctxt ""
+"main0218.xhp\n"
+"par_id3151112\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\"HID_SC_TOOLBOX_TOOLS\">Use the Tools bar to access commonly used commands.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_TOOLBOX_TOOLS\">Лентата Инструменти служи за достъп до най-често използваните команди.</ahelp>"
+
+#: 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=\"Елементи за управление\">Елементи за управление</link>"
+
+#: main0218.xhp
+msgctxt ""
+"main0218.xhp\n"
+"hd_id3154730\n"
+"6\n"
+"help.text"
+msgid "<link href=\"text/scalc/02/06080000.xhp\" name=\"Choose Themes\">Choose Themes</link>"
+msgstr "<link href=\"text/scalc/02/06080000.xhp\" name=\"Избор на теми\">Избор на теми</link>"
+
+#: 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=\"Разширен филтър\">Разширен филтър</link>"
+
+#: 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\">Начало</link>"
+
+#: 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=\"Преобразувател за евро\">Преобразувател за евро</link>"
+
+#: 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\">Дефиниране</link>"
+
+#: 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=\"Удовлетворяване на условие\">Удовлетворяване на условие</link>"
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"tit\n"
+"help.text"
+msgid "$[officename] Calc Features"
+msgstr "Възможности на $[officename] Calc"
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"hd_id3154758\n"
+"1\n"
+"help.text"
+msgid "<variable id=\"main0503\"><link href=\"text/scalc/main0503.xhp\" name=\"$[officename] Calc Features\">$[officename] Calc Features</link></variable>"
+msgstr "<variable id=\"main0503\"><link href=\"text/scalc/main0503.xhp\" name=\"Възможности на $[officename] Calc\">Възможности на $[officename] Calc</link></variable>"
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"par_id3149457\n"
+"2\n"
+"help.text"
+msgid "$[officename] Calc is a spreadsheet application that you can use to calculate, analyze, and manage your data. You can also import and modify Microsoft Excel spreadsheets."
+msgstr "$[officename] Calc представлява приложение за електронни таблици, с което можете да извършвате изчисления, анализи и организиране на данни. Можете също така да импортирате и променяте електронни таблици на Microsoft Excel."
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"hd_id3148797\n"
+"4\n"
+"help.text"
+msgid "Calculations"
+msgstr "Изчисления"
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"par_id3145172\n"
+"5\n"
+"help.text"
+msgid "$[officename] Calc provides you with <link href=\"text/scalc/01/04060100.xhp\" name=\"functions\">functions</link>, including statistical and banking functions, that you can use to create formulas to perform complex calculations on your data."
+msgstr "$[officename] Calc ви предлага различни <link href=\"text/scalc/01/04060100.xhp\" name=\"функции\">функции</link>, включително статистически и финансови, които можете да използвате във формули, за да извършвате сложни изчисления с данни."
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"par_id3145271\n"
+"6\n"
+"help.text"
+msgid "You can also use the <link href=\"text/scalc/01/04060000.xhp\" name=\"AutoPilots\">Function Wizard</link> to help you create your formulas."
+msgstr "За да улесните създаването на формули, можете да ползвате <link href=\"text/scalc/01/04060000.xhp\" name=\"Помощници\">помощника за функции</link>."
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"hd_id3152596\n"
+"13\n"
+"help.text"
+msgid "What-If Calculations"
+msgstr "Изчисления от вида \"Какво, ако?\""
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"par_id3156444\n"
+"14\n"
+"help.text"
+msgid "An interesting feature is to be able to immediately view the results of changes made to one factor of calculations that are composed of several factors. For instance, you can see how changing the time period in a loan calculation affects the interest rates or repayment amounts. Furthermore, you can manage larger tables by using different predefined scenarios."
+msgstr "Интересна възможност е незабавното проследяване на резултата от промяната на един фактор в изчисления, зависещи от няколко фактора. Например, можете да видите как промяната на периода в изчисление за заем се отразява върху лихвите или вноските. Освен това можете да работите с по-големи таблици с помощта на различни предварително дефинирани сценарии."
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"hd_id3148576\n"
+"7\n"
+"help.text"
+msgid "Database Functions"
+msgstr "Функции за бази от данни"
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"par_id3154011\n"
+"8\n"
+"help.text"
+msgid "Use spreadsheets to arrange, store, and filter your data."
+msgstr "Ползвайте електронни таблици, за да подреждате, съхранявате и филтрирате вашите данни."
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"par_id3154942\n"
+"25\n"
+"help.text"
+msgid "$[officename] Calc lets you drag-and-drop tables from databases, or lets you use a spreadsheet as a data source for creating form letters in $[officename] Writer."
+msgstr "$[officename] Calc ви позволява да влачите и пускате таблици от бази от данни, както и да ползвате електронна таблица като източник за създаване на циркулярни писма в $[officename] Writer."
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"hd_id3145800\n"
+"9\n"
+"help.text"
+msgid "Arranging Data"
+msgstr "Подреждане на данни"
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"par_id3154490\n"
+"10\n"
+"help.text"
+msgid "With a few mouse-clicks, you can reorganize your spreadsheet to show or hide certain data ranges, or to format ranges according to special conditions, or to quickly calculate subtotals and totals."
+msgstr "Чрез няколко щраквания с мишката можете да реорганизирате електронната таблица, като показвате или скривате определени области с данни, форматирате областите според специални условия или изчислявате междинни и крайни резултати."
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"hd_id3155601\n"
+"16\n"
+"help.text"
+msgid "Dynamic Charts"
+msgstr "Динамични диаграми"
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"par_id3149121\n"
+"17\n"
+"help.text"
+msgid "$[officename] Calc lets you present spreadsheet data in dynamic charts that update automatically when the data changes."
+msgstr "$[officename] Calc ви позволява да представяте данните от електронните таблици в динамични диаграми, които се обновяват автоматично, когато данните бъдат променени."
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"hd_id3153707\n"
+"18\n"
+"help.text"
+msgid "Opening and Saving Microsoft Files"
+msgstr "Отваряне и записване на файлове от Microsoft"
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"par_id3157867\n"
+"19\n"
+"help.text"
+msgid "Use the $[officename] filters to convert Excel files, or to open and save in a variety of other <link href=\"text/shared/00/00000020.xhp\" name=\"formats\">formats</link>."
+msgstr "С филтрите на $[officename] можете да конвертирате файлове на Excel или да отваряте и записвате файлове в множество други <link href=\"text/shared/00/00000020.xhp\" name=\"формати\">формати</link>."
diff --git a/source/bg/helpcontent2/source/text/scalc/00.po b/source/bg/helpcontent2/source/text/scalc/00.po
index 569435e4296..2ac63966037 100644
--- a/source/bg/helpcontent2/source/text/scalc/00.po
+++ b/source/bg/helpcontent2/source/text/scalc/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-10 11:44+0100\n"
+"POT-Creation-Date: 2013-05-23 12:06+0200\n"
"PO-Revision-Date: 2012-08-03 13:12+0000\n"
"Last-Translator: mbalabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,828 +16,287 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-POOTLE-MTIME: 1343999542.0\n"
-#: 00000407.xhp
+#: 00000004.xhp
msgctxt ""
-"00000407.xhp\n"
+"00000004.xhp\n"
"tit\n"
"help.text"
-msgid "Window Menu"
-msgstr "Меню Прозорец"
+msgid "To access this function..."
+msgstr "За достъп до тази функция..."
-#: 00000407.xhp
+#: 00000004.xhp
msgctxt ""
-"00000407.xhp\n"
-"hd_id3155628\n"
+"00000004.xhp\n"
+"hd_id3155535\n"
"1\n"
"help.text"
-msgid "Window Menu"
-msgstr "Меню Прозорец"
+msgid "<variable id=\"wie\">To access this function... </variable>"
+msgstr "<variable id=\"wie\">За достъп до тази функция... </variable>"
-#: 00000407.xhp
+#: 00000004.xhp
msgctxt ""
-"00000407.xhp\n"
-"par_id3147335\n"
-"2\n"
+"00000004.xhp\n"
+"par_idN1056E\n"
"help.text"
-msgid "<variable id=\"fete\">Choose <emph>Window - Split</emph></variable>"
-msgstr "<variable id=\"fete\">Изберете <emph>Прозорец - Разделяне</emph></variable>"
+msgid "<variable id=\"moreontop\">More explanations on top of this page. </variable>"
+msgstr "<variable id=\"moreontop\">Още обяснения има в началото на тази страница. </variable>"
-#: 00000407.xhp
+#: 00000004.xhp
msgctxt ""
-"00000407.xhp\n"
-"par_id3153663\n"
-"3\n"
+"00000004.xhp\n"
+"par_idN105AF\n"
"help.text"
-msgid "<variable id=\"fefix\">Choose <emph>Window - Freeze</emph></variable>"
-msgstr "<variable id=\"fefix\">Изберете <emph>Прозорец - Замразяване</emph></variable>"
+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\">Във функциите на %PRODUCTNAME Calc параметрите, отбелязани като „незадължителни“, могат да се пропускат само ако след тях не следват още параметри. Например, ако функцията приема четири параметъра, от които последните два са незадължителни, можете да изпуснете четвъртия параметър или третия и четвъртия, но не и само третия. </variable>"
-#: 00000412.xhp
+#: 00000004.xhp
msgctxt ""
-"00000412.xhp\n"
+"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\">Кодовете, по-големи от 127, зависят от кодовата таблица на системата (например iso-8859-1, iso-8859-2, Windows-1252, Windows-1250) и поради това може да не са преносими.</variable>"
+
+#: 00000402.xhp
+msgctxt ""
+"00000402.xhp\n"
"tit\n"
"help.text"
-msgid "Data Menu"
-msgstr "Меню Данни"
+msgid "Edit Menu"
+msgstr "Меню Редактиране"
-#: 00000412.xhp
+#: 00000402.xhp
msgctxt ""
-"00000412.xhp\n"
-"hd_id3145136\n"
+"00000402.xhp\n"
+"hd_id3147303\n"
"1\n"
"help.text"
-msgid "Data Menu"
-msgstr "Меню Данни"
+msgid "Edit Menu"
+msgstr "Меню Редактиране"
-#: 00000412.xhp
+#: 00000402.xhp
msgctxt ""
-"00000412.xhp\n"
-"par_id8366954\n"
+"00000402.xhp\n"
+"par_id3155555\n"
+"2\n"
"help.text"
-msgid "<variable id=\"text2columns\">Choose <emph>Data - Text to Columns</emph></variable>"
-msgstr "<variable id=\"text2columns\">Изберете <emph>Данни - Текст към колони</emph></variable>"
+msgid "<variable id=\"kopffuss\">Choose <emph>Edit - Headers & Footers</emph></variable>"
+msgstr "<variable id=\"kopffuss\">Изберете <emph>Редактиране - Колонтитули</emph></variable>"
-#: 00000412.xhp
+#: 00000402.xhp
msgctxt ""
-"00000412.xhp\n"
-"par_id3147399\n"
+"00000402.xhp\n"
+"par_id3159233\n"
"3\n"
"help.text"
-msgid "<variable id=\"dbrbf\">Choose <emph>Data - Define Range</emph></variable>"
-msgstr "<variable id=\"dbrbf\">Изберете <emph>Данни - Дефиниране на област</emph></variable>"
+msgid "<variable id=\"bkopfzeile\">Choose <emph>Edit - Headers & Footers - Header/Footer</emph> tabs</variable>"
+msgstr "<variable id=\"bkopfzeile\">Изберете <emph>Редактиране - Колонтитули - Горен колонтитул/Долен колонтитул</emph> раздел</variable>"
-#: 00000412.xhp
+#: 00000402.xhp
msgctxt ""
-"00000412.xhp\n"
-"par_id3145345\n"
+"00000402.xhp\n"
+"par_id3150443\n"
"4\n"
"help.text"
-msgid "<variable id=\"dbrba\">Choose <emph>Data - Select Range</emph></variable>"
-msgstr "<variable id=\"dbrba\">Изберете <emph>Данни - Избор на област</emph></variable>"
+msgid "<variable id=\"bausfullen\">Choose <emph>Edit - Fill</emph></variable>"
+msgstr "<variable id=\"bausfullen\">Изберете <emph>Редактиране - Запълване</emph></variable>"
-#: 00000412.xhp
+#: 00000402.xhp
msgctxt ""
-"00000412.xhp\n"
-"par_id3150443\n"
+"00000402.xhp\n"
+"par_id3143267\n"
"5\n"
"help.text"
-msgid "<variable id=\"dnsrt\">Choose <emph>Data - Sort</emph></variable>"
-msgstr "<variable id=\"dnsrt\">Изберете <emph>Данни - Сортиране</emph></variable>"
+msgid "<variable id=\"bausunten\">Choose <emph>Edit - Fill - Down</emph></variable>"
+msgstr "<variable id=\"bausunten\">Изберете <emph>Редактиране - Запълване - Надолу</emph></variable>"
-#: 00000412.xhp
+#: 00000402.xhp
msgctxt ""
-"00000412.xhp\n"
-"par_id3148491\n"
+"00000402.xhp\n"
+"par_id3153880\n"
"6\n"
"help.text"
-msgid "Choose <emph>Data - Sort - Sort Criteria</emph> tab"
-msgstr "Изберете <emph>Данни - Сортиране</emph> - раздел <emph>Критерии за сортиране</emph>"
+msgid "<variable id=\"bausrechts\">Choose <emph>Edit - Fill - Right</emph></variable>"
+msgstr "<variable id=\"bausrechts\">Изберете <emph>Редактиране - Запълване - Надясно</emph></variable>"
-#: 00000412.xhp
+#: 00000402.xhp
msgctxt ""
-"00000412.xhp\n"
-"par_id3154516\n"
+"00000402.xhp\n"
+"par_id3151245\n"
"7\n"
"help.text"
-msgid "On Standard bar, click"
-msgstr "От основната лента с инструменти изберете"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3148663\n"
-"help.text"
-msgid "<image id=\"img_id3150543\" src=\"cmd/sc_sortup.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3150543\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150543\" src=\"cmd/sc_sortup.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3150543\">Икона</alt></image>"
+msgid "<variable id=\"bausoben\">Choose <emph>Edit - Fill - Up</emph></variable>"
+msgstr "<variable id=\"bausoben\">Изберете <emph>Редактиране - Запълване - Нагоре</emph></variable>"
-#: 00000412.xhp
+#: 00000402.xhp
msgctxt ""
-"00000412.xhp\n"
-"par_id3150767\n"
+"00000402.xhp\n"
+"par_id3145068\n"
"8\n"
"help.text"
-msgid "Sort Ascending"
-msgstr "Възходящо сортиране"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3153969\n"
-"help.text"
-msgid "<image id=\"img_id3125863\" src=\"cmd/sc_sortdown.png\" width=\"0.1701inch\" height=\"0.1701inch\"><alt id=\"alt_id3125863\">Icon</alt></image>"
-msgstr "<image id=\"img_id3125863\" src=\"cmd/sc_sortdown.png\" width=\"0.1701inch\" height=\"0.1701inch\"><alt id=\"alt_id3125863\">Икона</alt></image>"
+msgid "<variable id=\"bauslinks\">Choose <emph>Edit - Fill - Left</emph></variable>"
+msgstr "<variable id=\"bauslinks\">Изберете <emph>Редактиране - Запълване - Наляво</emph></variable>"
-#: 00000412.xhp
+#: 00000402.xhp
msgctxt ""
-"00000412.xhp\n"
-"par_id3145364\n"
+"00000402.xhp\n"
+"par_id3150400\n"
"9\n"
"help.text"
-msgid "Sort Descending"
-msgstr "Низходящо сортиране"
+msgid "<variable id=\"baustab\">Choose <emph>Edit - Fill - Sheet</emph></variable>"
+msgstr "<variable id=\"baustab\">Изберете <emph>Редактиране - Запълване - Лист</emph></variable>"
-#: 00000412.xhp
+#: 00000402.xhp
msgctxt ""
-"00000412.xhp\n"
-"par_id3146984\n"
+"00000402.xhp\n"
+"par_id3154910\n"
"10\n"
"help.text"
-msgid "<variable id=\"dnstot\">Choose <emph>Data - Sort - Options</emph> tab</variable>"
-msgstr "<variable id=\"dnstot\">Изберете <emph>Данни - Сортиране</emph> - раздел <emph>Настройки</emph></variable>"
+msgid "<variable id=\"bausreihe\">Choose <emph>Edit - Fill - Series</emph></variable>"
+msgstr "<variable id=\"bausreihe\">Изберете <emph>Редактиране - Запълване - Предица</emph></variable>"
-#: 00000412.xhp
+#: 00000402.xhp
msgctxt ""
-"00000412.xhp\n"
-"par_id3155308\n"
+"00000402.xhp\n"
+"par_id3154123\n"
"11\n"
"help.text"
-msgid "<variable id=\"dnftr\">Choose <emph>Data - Filter</emph></variable>"
-msgstr "<variable id=\"dnftr\">Изберете <emph>Данни - Филтър</emph></variable>"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3148646\n"
-"12\n"
-"help.text"
-msgid "Choose <emph>Data - Filter - AutoFilter</emph>"
-msgstr "Изберете <emph>Данни - Филтър - Автофилтър</emph>"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3151113\n"
-"13\n"
-"help.text"
-msgid "On Tools bar or Table Data bar, click"
-msgstr "В лентата Инструменти или Данни от таблица щракнете върху"
-
-#: 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\">Икона</alt></image>"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3149401\n"
-"14\n"
-"help.text"
-msgid "AutoFilter"
-msgstr "Автофилтър"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3156278\n"
-"17\n"
-"help.text"
-msgid "<variable id=\"dnfspz\">Choose <emph>Data - Filter - Advanced Filter</emph></variable>"
-msgstr "<variable id=\"dnfspz\">Изберете <emph>Данни - Филтър - Разширен филтър</emph></variable>"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3153764\n"
-"18\n"
-"help.text"
-msgid "Choose <emph>Data - Filter - Standard Filter - More>></emph> button"
-msgstr "Изберете <emph>Данни - Филтър - Стандартен филтър</emph> - бутон <emph>Повече>></emph>"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3155444\n"
-"19\n"
-"help.text"
-msgid "Choose <emph>Data - Filter - Advanced Filter - More>></emph> button"
-msgstr "Изберете <emph>Данни - Филтър - Разширен филтър</emph> - бутон <emph>Повече</emph>"
+msgid "Choose <emph>Edit - Delete Contents</emph>"
+msgstr "Изберете <emph>Редактиране - Изтриване на съдържание</emph>"
-#: 00000412.xhp
+#: 00000402.xhp
msgctxt ""
-"00000412.xhp\n"
-"par_id3156382\n"
+"00000402.xhp\n"
+"par_id3145785\n"
"20\n"
"help.text"
-msgid "Choose <emph>Data - Filter - Remove Filter</emph>"
-msgstr "Изберете <emph>Данни - Филтър - Премахване на филтъра</emph>"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3155961\n"
-"48\n"
-"help.text"
-msgid "On Table Data bar, click <emph>Remove Filter/Sort</emph>"
-msgstr "В лентата Данни от таблица щракнете върху <emph>Изключване на филтрирането/сортирането</emph>"
-
-#: 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\">Икона</alt></image>"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3149207\n"
-"49\n"
-"help.text"
-msgid "Remove Filter/Sort"
-msgstr "Изключване на филтрирането/сортирането"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3152778\n"
-"21\n"
-"help.text"
-msgid "<variable id=\"dnaftas\">Choose <emph>Data - Filter - Hide AutoFilter</emph></variable>"
-msgstr "<variable id=\"dnaftas\">Изберете <emph>Данни - Филтър - Скриване на автофилтъра</emph></variable>"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3166424\n"
-"22\n"
-"help.text"
-msgid "<variable id=\"dntegs\">Choose <emph>Data - Subtotals</emph></variable>"
-msgstr "<variable id=\"dntegs\">Изберете <emph>Данни - Междинни суми</emph></variable>"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3154574\n"
-"23\n"
-"help.text"
-msgid "<variable id=\"dntezd\">Choose <emph>Data - Subtotals - 1st, 2nd, 3rd Group</emph> tabs</variable>"
-msgstr "<variable id=\"dntezd\">Изберете <emph>Данни - Междинни суми</emph> - раздели <emph>1ва, 2ра, 3та група</emph></variable>"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3151277\n"
-"24\n"
-"help.text"
-msgid "<variable id=\"dntopi\">Choose <emph>Data - Subtotals - Options</emph> tab</variable>"
-msgstr "<variable id=\"dntopi\">Изберете <emph>Данни - Междинни суми</emph> - раздел <emph>Настройки</emph></variable>"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3145133\n"
-"25\n"
-"help.text"
-msgid "<variable id=\"datengueltig\">Choose <emph>Data - Validity</emph></variable>"
-msgstr "<variable id=\"datengueltig\">Изберете <emph>Данни - Валидност</emph></variable>"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3152992\n"
-"26\n"
-"help.text"
-msgid "<variable id=\"datengueltigwerte\">Menu <emph>Data - Validity - Criteria</emph> tab</variable>"
-msgstr "<variable id=\"datengueltigwerte\">Изберете <emph>Данни - Валидност</emph> - раздел <emph>Критерии</emph></variable>"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3150367\n"
-"27\n"
-"help.text"
-msgid "<variable id=\"datengueltigeingabe\">Choose <emph>Data - Validity - Input Help</emph> tab</variable>"
-msgstr "<variable id=\"datengueltigeingabe\">Изберете <emph>Данни - Валидност</emph> - раздел <emph>Помощ при въвеждане</emph></variable>"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3154486\n"
-"28\n"
-"help.text"
-msgid "<variable id=\"datengueltigfehler\">Choose <emph>Data - Validity - Error Alert</emph> tab</variable>"
-msgstr "<variable id=\"datengueltigfehler\">Изберете <emph>Данни - Валидност</emph> - раздел <emph>Предупреждение за грешка</emph></variable>"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3146978\n"
-"29\n"
-"help.text"
-msgid "<variable id=\"dnmfo\">Choose <emph>Data - Multiple Operations</emph></variable>"
-msgstr "<variable id=\"dnmfo\">Изберете <emph>Данни - Успоредни операции</emph></variable>"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3155809\n"
-"30\n"
-"help.text"
-msgid "<variable id=\"dnksd\">Choose <emph>Data - Consolidate</emph></variable>"
-msgstr "<variable id=\"dnksd\">Изберете <emph>Данни - Консолидиране</emph></variable>"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3148701\n"
-"31\n"
-"help.text"
-msgid "<variable id=\"dngld\">Choose <emph>Data - Group and Outline</emph></variable>"
-msgstr "<variable id=\"dngld\">Изберете <emph>Данни - Групиране и план - Автоплан</emph></variable>"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3153815\n"
-"32\n"
-"help.text"
-msgid "<variable id=\"dngda\">Choose <emph>Data - Group and Outline - Hide Details</emph></variable>"
-msgstr "<variable id=\"dngda\">Изберете <emph>Данни - Групиране и план - Премахване</emph></variable>"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3159223\n"
-"33\n"
-"help.text"
-msgid "<variable id=\"dngde\">Choose <emph>Data - Group and Outline - Show Details</emph></variable>"
-msgstr "<variable id=\"dngde\">Изберете <emph>Данни - Групиране и план - Премахване</emph></variable>"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3146870\n"
-"34\n"
-"help.text"
-msgid "Choose <emph>Data - Group and Outline - Group</emph>"
-msgstr "Изберете <emph>Данни - Групиране и план - Групиране</emph>"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3144507\n"
-"51\n"
-"help.text"
-msgid "F12"
-msgstr "F12"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3144772\n"
-"35\n"
-"help.text"
-msgid "On <emph>Tools</emph> bar, click"
-msgstr "На лентата <emph>Инструменти</emph> натиснете"
-
-#: 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\">Икона</alt></image>"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3150214\n"
-"36\n"
-"help.text"
-msgid "Group"
-msgstr "Групиране"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3146781\n"
-"37\n"
-"help.text"
-msgid "Choose <emph>Data - Group and Outline - Ungroup</emph>"
-msgstr "Изберете <emph>Данни - Групиране и план - Разгрупиране</emph>"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3150892\n"
-"52\n"
-"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F12"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F12"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3155097\n"
-"38\n"
-"help.text"
-msgid "On <emph>Tools</emph> bar, click"
-msgstr "На лентата <emph>Инструменти</emph> натиснете"
-
-#: 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\">Икона</alt></image>"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3153555\n"
-"39\n"
-"help.text"
-msgid "Ungroup"
-msgstr "Разгрупиране"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3153008\n"
-"40\n"
-"help.text"
-msgid "<variable id=\"dnglagl\">Choose <emph>Data - Group and Outline - AutoOutline</emph></variable>"
-msgstr "<variable id=\"dnglagl\">Изберете <emph>Данни - Групиране и план - Автоплан</emph></variable>"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3154709\n"
-"41\n"
-"help.text"
-msgid "<variable id=\"dnglef\">Choose <emph>Data - Group and Outline - Remove</emph></variable>"
-msgstr "<variable id=\"dnglef\">Изберете <emph>Данни - Групиране и план - Премахване</emph></variable>"
-
-#: 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\">Изберете <emph>Данни - Групиране и план - Видими детайли</emph> (за някои обобщаващи таблици)</variable>"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3155759\n"
-"42\n"
-"help.text"
-msgid "<variable id=\"dndtpt\">Choose <emph>Data - Pivot Table</emph></variable>"
-msgstr "<variable id=\"dndtpt\">Изберете <emph>Данни - Обобщаваща таблица</emph></variable>"
+msgid "Backspace"
+msgstr "Backspace"
-#: 00000412.xhp
+#: 00000402.xhp
msgctxt ""
-"00000412.xhp\n"
-"par_id3154625\n"
-"43\n"
+"00000402.xhp\n"
+"par_id3150011\n"
+"12\n"
"help.text"
-msgid "<variable id=\"dndpa\">Choose <emph>Data - Pivot Table - Create</emph></variable>"
-msgstr "<variable id=\"dndpa\">Изберете <emph>Данни - Обобщаваща таблица - Начало</emph></variable>"
+msgid "<variable id=\"bzelo\">Choose <emph>Edit - Delete Cells</emph></variable>"
+msgstr "<variable id=\"bzelo\">Изберете <emph>Редактиране - Изтриване на клетки</emph></variable>"
-#: 00000412.xhp
+#: 00000402.xhp
msgctxt ""
-"00000412.xhp\n"
-"par_id3147558\n"
-"53\n"
+"00000402.xhp\n"
+"par_id3153951\n"
+"13\n"
"help.text"
-msgid "<variable id=\"dndq\">Choose <emph>Data - Pivot Table - Create</emph>, in the Select Source dialog choose the option <emph>Data source registered in $[officename]</emph>.</variable>"
-msgstr "<variable id=\"dndq\">Изберете <emph>Данни - Обобщаваща таблица - Начало</emph>, в диалоговия прозорец Избор на източник изберете <emph>Източник на данни, регистриран в $[officename]</emph>.</variable>"
+msgid "Choose <emph>Edit – Sheet - Delete</emph>"
+msgstr "Изберете <emph>Редактиране – Лист - Изтриване</emph>"
-#: 00000412.xhp
+#: 00000402.xhp
msgctxt ""
-"00000412.xhp\n"
-"par_id3153297\n"
-"50\n"
+"00000402.xhp\n"
+"par_id3155306\n"
+"18\n"
"help.text"
-msgid "Choose <emph>Data - Pivot Table - Create</emph>, in the Select Source dialog choose the option <emph>Current selection</emph>."
-msgstr "Изберете <emph>Данни - Обобщаваща таблица - Начало</emph>, в диалоговия прозорец Избор на източник изберете <emph>Текуща избрана област</emph>."
+msgid "Open context menu for a sheet tab"
+msgstr "Отворете контекстното меню за лист"
-#: 00000412.xhp
+#: 00000402.xhp
msgctxt ""
-"00000412.xhp\n"
-"par_id3145118\n"
-"54\n"
+"00000402.xhp\n"
+"par_id3146119\n"
+"14\n"
"help.text"
-msgid "Choose <emph>Data - Pivot Table - Create</emph>, in the Select Source dialog choose the option <emph>Data source registered in $[officename]</emph>, click <emph>OK</emph> to see <emph>Select Data Source</emph> dialog."
-msgstr "Изберете <emph>Данни - Обобщаваща таблица - Начало</emph>, в диалоговия прозорец Избор на източник изберете <emph>Източник на данни, регистриран в $[officename]</emph>, натиснете<emph>OK</emph>, за да видите диалоговия прозорец <emph>Избор на източник на данни</emph>."
+msgid "Choose <emph>Edit – Sheets – Move/Copy</emph>"
+msgstr "Изберете <emph>Редактиране – Лист – Местене/копиране</emph>"
-#: 00000412.xhp
+#: 00000402.xhp
msgctxt ""
-"00000412.xhp\n"
-"par_id3153294\n"
-"44\n"
+"00000402.xhp\n"
+"par_id3148645\n"
+"19\n"
"help.text"
-msgid "<variable id=\"dndpak\">Choose <emph>Data - Pivot Table - Refresh</emph></variable>"
-msgstr "<variable id=\"dndpak\">Изберете <emph>Данни - Обобщаваща таблица - Опресняване</emph></variable>"
+msgid "Open context menu for a sheet tab"
+msgstr "Отворете контекстното меню за лист"
-#: 00000412.xhp
+#: 00000402.xhp
msgctxt ""
-"00000412.xhp\n"
-"par_id3151344\n"
-"45\n"
+"00000402.xhp\n"
+"par_id3153093\n"
+"15\n"
"help.text"
-msgid "<variable id=\"dndploe\">Choose <emph>Data - Pivot Table - Delete</emph></variable>"
-msgstr "<variable id=\"dndploe\">Изберете <emph>Данни - Обобщаващ таблица - Изтриване</emph></variable>"
+msgid "<variable id=\"bmaumloe\">Choose <emph>Edit - Delete Manual Break</emph></variable>"
+msgstr "<variable id=\"bmaumloe\">Изберете <emph>Редактиране - Изтриване на ръчен разделител</emph></variable>"
-#: 00000412.xhp
+#: 00000402.xhp
msgctxt ""
-"00000412.xhp\n"
-"par_id3150397\n"
-"46\n"
+"00000402.xhp\n"
+"par_id3153191\n"
+"16\n"
"help.text"
-msgid "<variable id=\"dndakt\">Choose <emph>Data - Refresh Range</emph></variable>"
-msgstr "<variable id=\"dndakt\">Изберете <emph>Данни - Опресняване на област</emph></variable>"
+msgid "<variable id=\"bzeilum\">Choose <emph>Edit - Delete Manual Break - Row Break</emph></variable>"
+msgstr "<variable id=\"bzeilum\">Изберете <emph>Редактиране - Изтриване на ръчен разделител - Разделител на редове</emph></variable>"
-#: 00000412.xhp
+#: 00000402.xhp
msgctxt ""
-"00000412.xhp\n"
-"par_idN10B8F\n"
+"00000402.xhp\n"
+"par_id3145645\n"
+"17\n"
"help.text"
-msgid "<variable id=\"grouping\">Choose <emph>Data - Group and Outline - Group</emph></variable>"
-msgstr "<variable id=\"grouping\">Изберете <emph>Данни - Групиране и план - Групиране</emph></variable>"
+msgid "<variable id=\"bspaum\">Choose <emph>Edit - Delete Manual Break - Column Break</emph></variable>"
+msgstr "<variable id=\"bspaum\">Изберете <emph>Редактиране - Изтриване на ръчен разделител - Разделител на колони</emph></variable>"
-#: 00000405.xhp
+#: 00000403.xhp
msgctxt ""
-"00000405.xhp\n"
+"00000403.xhp\n"
"tit\n"
"help.text"
-msgid "Format Menu"
-msgstr "Меню Форматиране"
+msgid "View Menu"
+msgstr "Меню Изглед"
-#: 00000405.xhp
+#: 00000403.xhp
msgctxt ""
-"00000405.xhp\n"
-"hd_id3150769\n"
+"00000403.xhp\n"
+"hd_id3145673\n"
"1\n"
"help.text"
-msgid "Format Menu"
-msgstr "Меню Форматиране"
+msgid "View Menu"
+msgstr "Меню Изглед"
-#: 00000405.xhp
+#: 00000403.xhp
msgctxt ""
-"00000405.xhp\n"
-"par_id3154685\n"
+"00000403.xhp\n"
+"par_id3150275\n"
"2\n"
"help.text"
-msgid "<variable id=\"fozelle\">Choose <emph>Format - Cells</emph></variable>"
-msgstr "<variable id=\"fozelle\">Изберете <emph>Форматиране - Клетки</emph></variable>"
+msgid "<variable id=\"aspze\">Choose <emph>View - Column & Row Headers</emph></variable>"
+msgstr "<variable id=\"aspze\">Изберете <emph>Изглед - Заглавия на редове и колони</emph></variable>"
-#: 00000405.xhp
+#: 00000403.xhp
msgctxt ""
-"00000405.xhp\n"
-"par_id3153194\n"
+"00000403.xhp\n"
+"par_id3154514\n"
"3\n"
"help.text"
-msgid "<variable id=\"fozelstz\">Choose <emph>Format - Cells - Cell Protection</emph> tab </variable>"
-msgstr "<variable id=\"fozelstz\">Изберете <emph>Форматиране - Клетки - Защита на клетки</emph> tab </variable>"
+msgid "<variable id=\"awehe\">Choose <emph>View - Value Highlighting</emph></variable>"
+msgstr "<variable id=\"awehe\">Изберете <emph>Изглед - Осветяване на стойностите</emph></variable>"
-#: 00000405.xhp
+#: 00000403.xhp
msgctxt ""
-"00000405.xhp\n"
-"par_id3155854\n"
+"00000403.xhp\n"
+"par_id3148947\n"
"4\n"
"help.text"
-msgid "<variable id=\"fozei\">Choose <emph>Format - Row</emph></variable>"
-msgstr "<variable id=\"fozei\">Изберете <emph>Форматиране - Ред</emph></variable>"
+msgid "<variable id=\"rechenleiste\">Choose <emph>View - Toolbars - Formula Bar</emph></variable>"
+msgstr "<variable id=\"rechenleiste\">Изберете <emph>Изглед - Ленти с интрументи - Лента Формули</emph></variable>"
-#: 00000405.xhp
+#: 00000403.xhp
msgctxt ""
-"00000405.xhp\n"
-"par_id3150012\n"
+"00000403.xhp\n"
+"par_id3148663\n"
"5\n"
"help.text"
-msgid "<variable id=\"fozeiophoe\">Choose <emph>Format - Row - Optimal Height</emph></variable>"
-msgstr "<variable id=\"fozeiophoe\">Изберете <emph>Форматиране - Ред - Оптимална височина</emph></variable>"
-
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id3148645\n"
-"6\n"
-"help.text"
-msgid "Choose <emph>Format - Row - Hide</emph>"
-msgstr "Изберете <emph>Форматиране - Ред - Скриване</emph>"
-
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id3153728\n"
-"7\n"
-"help.text"
-msgid "Choose <emph>Format - Column - Hide</emph>"
-msgstr "Изберете <emph>Форматиране - Колона - Скриване</emph>"
-
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id3151114\n"
-"8\n"
-"help.text"
-msgid "Choose <emph>Format - Sheet - Hide</emph>"
-msgstr "Изберете <emph>Форматиране - Лист - Скриване</emph>"
-
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id3148576\n"
-"9\n"
-"help.text"
-msgid "Choose <emph>Format - Row - Show</emph>"
-msgstr "Изберете <emph>Форматиране - Ред - Показване</emph>"
-
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id3156286\n"
-"10\n"
-"help.text"
-msgid "Choose <emph>Format - Column - Show</emph>"
-msgstr "Изберете <emph>Форматиране - Колона - Показване</emph>"
-
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id3145645\n"
-"11\n"
-"help.text"
-msgid "<variable id=\"fospa\">Choose <emph>Format - Column</emph></variable>"
-msgstr "<variable id=\"fospa\">Изберете <emph>Форматиране - Колона</emph></variable>"
-
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id3145252\n"
-"12\n"
-"help.text"
-msgid "Choose <emph>Format - Column - Optimal Width</emph>"
-msgstr "Изберете <emph>Форматиране- Колона - Оптимална ширина</emph>"
-
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id3146971\n"
-"36\n"
-"help.text"
-msgid "Double-click right column separator in column headers"
-msgstr "Щракнете двукратно върху десния разделител на колона в заглавията на колоните"
-
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id3147362\n"
-"15\n"
-"help.text"
-msgid "<variable id=\"fot\">Choose <emph>Format - Sheet</emph></variable>"
-msgstr "<variable id=\"fot\">Изберете <emph>Форматиране - Лист</emph></variable>"
-
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id3163805\n"
-"16\n"
-"help.text"
-msgid "<variable id=\"fotu\">Choose <emph>Format - Sheet - Rename</emph></variable>"
-msgstr "<variable id=\"fotu\">Изберете <emph>Форматиране - Лист - Преименуване</emph></variable>"
-
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id3155333\n"
-"17\n"
-"help.text"
-msgid "<variable id=\"fotenb\">Choose <emph>Format - Sheet - Show</emph></variable>"
-msgstr "<variable id=\"fotenb\">Изберете <emph>Форматиране - Лист - Показване</emph></variable>"
-
-#: 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\">Изберете <emph>Форматиране - Страница</emph></variable>"
-
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id3155508\n"
-"25\n"
-"help.text"
-msgid "<variable id=\"fostel\">Choose <emph>Format - Page - Sheet</emph> tab </variable>"
-msgstr "<variable id=\"fostel\">Изберете <emph>Форматиране - Страница - Лист</emph> tab </variable>"
-
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id3150883\n"
-"26\n"
-"help.text"
-msgid "<variable id=\"fodrbe\">Choose <emph>Format - Print Ranges</emph></variable>"
-msgstr "<variable id=\"fodrbe\">Изберете <emph>Форматиране - Области за печат</emph></variable>"
-
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id3156448\n"
-"27\n"
-"help.text"
-msgid "<variable id=\"fodrfe\">Choose <emph>Format - Print Ranges - Define</emph></variable>"
-msgstr "<variable id=\"fodrfe\">Изберете <emph>Форматиране - Области за печат - Дефиниране</emph></variable>"
-
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id3156290\n"
-"35\n"
-"help.text"
-msgid "<variable id=\"fodrhin\">Choose <emph>Format - Print Ranges - Add</emph></variable>"
-msgstr "<variable id=\"fodrhin\">Изберете <emph>Форматиране - Области за печат - Добавяне</emph></variable>"
-
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id3155812\n"
-"28\n"
-"help.text"
-msgid "<variable id=\"fodbah\">Choose <emph>Format - Print Ranges - Remove</emph></variable>"
-msgstr "<variable id=\"fodbah\">Изберете <emph>Форматиране - Области за печат - Премахване</emph></variable>"
-
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id3153307\n"
-"29\n"
-"help.text"
-msgid "<variable id=\"fodbbe\">Choose <emph>Format - Print Ranges - Edit</emph></variable>"
-msgstr "<variable id=\"fodbbe\">Изберете <emph>Форматиране - Области за печат - Редактиране</emph></variable>"
-
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id3153916\n"
-"31\n"
-"help.text"
-msgid "Choose <emph>Format - AutoFormat</emph>"
-msgstr "Изберете <emph>Форматиране - Автоформат</emph>"
-
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id3154532\n"
-"32\n"
-"help.text"
-msgid "On the Tools bar, click"
-msgstr "От лентата Инструменти изберете"
-
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id3149332\n"
-"help.text"
-msgid "<image id=\"img_id3156020\" src=\"cmd/sc_autoformat.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156020\">Icon</alt></image>"
-msgstr "<image id=\"img_id3156020\" src=\"cmd/sc_autoformat.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156020\">Икона</alt></image>"
-
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id3154060\n"
-"33\n"
-"help.text"
-msgid "AutoFormat"
-msgstr "Автоформат"
-
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id3154618\n"
-"34\n"
-"help.text"
-msgid "<variable id=\"bedingte\">Choose <emph>Format - Conditional Formatting</emph></variable>"
-msgstr "<variable id=\"bedingte\">Изберете <emph>Форматиране - Условно форматиране</emph></variable>"
+msgid "<variable id=\"seumvo\">Choose <emph>View - Page Break Preview</emph></variable>"
+msgstr "<variable id=\"seumvo\">Изберете <emph>Изглед - Разделители на страници</emph></variable>"
#: 00000404.xhp
msgctxt ""
@@ -1245,58 +704,263 @@ msgctxt ""
msgid "<variable id=\"einabesch\">Choose <emph>Insert - Names - Labels</emph></variable>"
msgstr "<variable id=\"einabesch\">Изберете <emph>Вмъкване - Имена - Етикети</emph></variable>"
-#: 00000403.xhp
+#: 00000405.xhp
msgctxt ""
-"00000403.xhp\n"
+"00000405.xhp\n"
"tit\n"
"help.text"
-msgid "View Menu"
-msgstr "Меню Изглед"
+msgid "Format Menu"
+msgstr "Меню Форматиране"
-#: 00000403.xhp
+#: 00000405.xhp
msgctxt ""
-"00000403.xhp\n"
-"hd_id3145673\n"
+"00000405.xhp\n"
+"hd_id3150769\n"
"1\n"
"help.text"
-msgid "View Menu"
-msgstr "Меню Изглед"
+msgid "Format Menu"
+msgstr "Меню Форматиране"
-#: 00000403.xhp
+#: 00000405.xhp
msgctxt ""
-"00000403.xhp\n"
-"par_id3150275\n"
+"00000405.xhp\n"
+"par_id3154685\n"
"2\n"
"help.text"
-msgid "<variable id=\"aspze\">Choose <emph>View - Column & Row Headers</emph></variable>"
-msgstr "<variable id=\"aspze\">Изберете <emph>Изглед - Заглавия на редове и колони</emph></variable>"
+msgid "<variable id=\"fozelle\">Choose <emph>Format - Cells</emph></variable>"
+msgstr "<variable id=\"fozelle\">Изберете <emph>Форматиране - Клетки</emph></variable>"
-#: 00000403.xhp
+#: 00000405.xhp
msgctxt ""
-"00000403.xhp\n"
-"par_id3154514\n"
+"00000405.xhp\n"
+"par_id3153194\n"
"3\n"
"help.text"
-msgid "<variable id=\"awehe\">Choose <emph>View - Value Highlighting</emph></variable>"
-msgstr "<variable id=\"awehe\">Изберете <emph>Изглед - Осветяване на стойностите</emph></variable>"
+msgid "<variable id=\"fozelstz\">Choose <emph>Format - Cells - Cell Protection</emph> tab </variable>"
+msgstr "<variable id=\"fozelstz\">Изберете <emph>Форматиране - Клетки - Защита на клетки</emph> tab </variable>"
-#: 00000403.xhp
+#: 00000405.xhp
msgctxt ""
-"00000403.xhp\n"
-"par_id3148947\n"
+"00000405.xhp\n"
+"par_id3155854\n"
"4\n"
"help.text"
-msgid "<variable id=\"rechenleiste\">Choose <emph>View - Toolbars - Formula Bar</emph></variable>"
-msgstr "<variable id=\"rechenleiste\">Изберете <emph>Изглед - Ленти с интрументи - Лента Формули</emph></variable>"
+msgid "<variable id=\"fozei\">Choose <emph>Format - Row</emph></variable>"
+msgstr "<variable id=\"fozei\">Изберете <emph>Форматиране - Ред</emph></variable>"
-#: 00000403.xhp
+#: 00000405.xhp
msgctxt ""
-"00000403.xhp\n"
-"par_id3148663\n"
+"00000405.xhp\n"
+"par_id3150012\n"
"5\n"
"help.text"
-msgid "<variable id=\"seumvo\">Choose <emph>View - Page Break Preview</emph></variable>"
-msgstr "<variable id=\"seumvo\">Изберете <emph>Изглед - Разделители на страници</emph></variable>"
+msgid "<variable id=\"fozeiophoe\">Choose <emph>Format - Row - Optimal Height</emph></variable>"
+msgstr "<variable id=\"fozeiophoe\">Изберете <emph>Форматиране - Ред - Оптимална височина</emph></variable>"
+
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3148645\n"
+"6\n"
+"help.text"
+msgid "Choose <emph>Format - Row - Hide</emph>"
+msgstr "Изберете <emph>Форматиране - Ред - Скриване</emph>"
+
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3153728\n"
+"7\n"
+"help.text"
+msgid "Choose <emph>Format - Column - Hide</emph>"
+msgstr "Изберете <emph>Форматиране - Колона - Скриване</emph>"
+
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3151114\n"
+"8\n"
+"help.text"
+msgid "Choose <emph>Format - Sheet - Hide</emph>"
+msgstr "Изберете <emph>Форматиране - Лист - Скриване</emph>"
+
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3148576\n"
+"9\n"
+"help.text"
+msgid "Choose <emph>Format - Row - Show</emph>"
+msgstr "Изберете <emph>Форматиране - Ред - Показване</emph>"
+
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3156286\n"
+"10\n"
+"help.text"
+msgid "Choose <emph>Format - Column - Show</emph>"
+msgstr "Изберете <emph>Форматиране - Колона - Показване</emph>"
+
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3145645\n"
+"11\n"
+"help.text"
+msgid "<variable id=\"fospa\">Choose <emph>Format - Column</emph></variable>"
+msgstr "<variable id=\"fospa\">Изберете <emph>Форматиране - Колона</emph></variable>"
+
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3145252\n"
+"12\n"
+"help.text"
+msgid "Choose <emph>Format - Column - Optimal Width</emph>"
+msgstr "Изберете <emph>Форматиране- Колона - Оптимална ширина</emph>"
+
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3146971\n"
+"36\n"
+"help.text"
+msgid "Double-click right column separator in column headers"
+msgstr "Щракнете двукратно върху десния разделител на колона в заглавията на колоните"
+
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3147362\n"
+"15\n"
+"help.text"
+msgid "<variable id=\"fot\">Choose <emph>Format - Sheet</emph></variable>"
+msgstr "<variable id=\"fot\">Изберете <emph>Форматиране - Лист</emph></variable>"
+
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3163805\n"
+"16\n"
+"help.text"
+msgid "<variable id=\"fotu\">Choose <emph>Format - Sheet - Rename</emph></variable>"
+msgstr "<variable id=\"fotu\">Изберете <emph>Форматиране - Лист - Преименуване</emph></variable>"
+
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3155333\n"
+"17\n"
+"help.text"
+msgid "<variable id=\"fotenb\">Choose <emph>Format - Sheet - Show</emph></variable>"
+msgstr "<variable id=\"fotenb\">Изберете <emph>Форматиране - Лист - Показване</emph></variable>"
+
+#: 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\">Изберете <emph>Форматиране - Страница</emph></variable>"
+
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3155508\n"
+"25\n"
+"help.text"
+msgid "<variable id=\"fostel\">Choose <emph>Format - Page - Sheet</emph> tab </variable>"
+msgstr "<variable id=\"fostel\">Изберете <emph>Форматиране - Страница - Лист</emph> tab </variable>"
+
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3150883\n"
+"26\n"
+"help.text"
+msgid "<variable id=\"fodrbe\">Choose <emph>Format - Print Ranges</emph></variable>"
+msgstr "<variable id=\"fodrbe\">Изберете <emph>Форматиране - Области за печат</emph></variable>"
+
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3156448\n"
+"27\n"
+"help.text"
+msgid "<variable id=\"fodrfe\">Choose <emph>Format - Print Ranges - Define</emph></variable>"
+msgstr "<variable id=\"fodrfe\">Изберете <emph>Форматиране - Области за печат - Дефиниране</emph></variable>"
+
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3156290\n"
+"35\n"
+"help.text"
+msgid "<variable id=\"fodrhin\">Choose <emph>Format - Print Ranges - Add</emph></variable>"
+msgstr "<variable id=\"fodrhin\">Изберете <emph>Форматиране - Области за печат - Добавяне</emph></variable>"
+
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3155812\n"
+"28\n"
+"help.text"
+msgid "<variable id=\"fodbah\">Choose <emph>Format - Print Ranges - Remove</emph></variable>"
+msgstr "<variable id=\"fodbah\">Изберете <emph>Форматиране - Области за печат - Премахване</emph></variable>"
+
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3153307\n"
+"29\n"
+"help.text"
+msgid "<variable id=\"fodbbe\">Choose <emph>Format - Print Ranges - Edit</emph></variable>"
+msgstr "<variable id=\"fodbbe\">Изберете <emph>Форматиране - Области за печат - Редактиране</emph></variable>"
+
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3153916\n"
+"31\n"
+"help.text"
+msgid "Choose <emph>Format - AutoFormat</emph>"
+msgstr "Изберете <emph>Форматиране - Автоформат</emph>"
+
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3154532\n"
+"32\n"
+"help.text"
+msgid "On the Tools bar, click"
+msgstr "От лентата Инструменти изберете"
+
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3149332\n"
+"help.text"
+msgid "<image id=\"img_id3156020\" src=\"cmd/sc_autoformat.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156020\">Icon</alt></image>"
+msgstr "<image id=\"img_id3156020\" src=\"cmd/sc_autoformat.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156020\">Икона</alt></image>"
+
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3154060\n"
+"33\n"
+"help.text"
+msgid "AutoFormat"
+msgstr "Автоформат"
+
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3154618\n"
+"34\n"
+"help.text"
+msgid "<variable id=\"bedingte\">Choose <emph>Format - Conditional Formatting</emph></variable>"
+msgstr "<variable id=\"bedingte\">Изберете <emph>Форматиране - Условно форматиране</emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -1547,231 +1211,567 @@ msgctxt ""
msgid "<variable id=\"autoeingabe\">Choose <emph>Tools - Cell Contents - AutoInput</emph></variable>"
msgstr "<variable id=\"autoeingabe\">Изберете <emph>Инструменти - Съдържание на клетките - Автовъвеждане</emph></variable>"
-#: 00000004.xhp
+#: 00000407.xhp
msgctxt ""
-"00000004.xhp\n"
+"00000407.xhp\n"
"tit\n"
"help.text"
-msgid "To access this function..."
-msgstr "За достъп до тази функция..."
+msgid "Window Menu"
+msgstr "Меню Прозорец"
-#: 00000004.xhp
+#: 00000407.xhp
msgctxt ""
-"00000004.xhp\n"
-"hd_id3155535\n"
+"00000407.xhp\n"
+"hd_id3155628\n"
"1\n"
"help.text"
-msgid "<variable id=\"wie\">To access this function... </variable>"
-msgstr "<variable id=\"wie\">За достъп до тази функция... </variable>"
-
-#: 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\">Още обяснения има в началото на тази страница. </variable>"
+msgid "Window Menu"
+msgstr "Меню Прозорец"
-#: 00000004.xhp
+#: 00000407.xhp
msgctxt ""
-"00000004.xhp\n"
-"par_idN105AF\n"
+"00000407.xhp\n"
+"par_id3147335\n"
+"2\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\">Във функциите на %PRODUCTNAME Calc параметрите, отбелязани като „незадължителни“, могат да се пропускат само ако след тях не следват още параметри. Например, ако функцията приема четири параметъра, от които последните два са незадължителни, можете да изпуснете четвъртия параметър или третия и четвъртия, но не и само третия. </variable>"
+msgid "<variable id=\"fete\">Choose <emph>Window - Split</emph></variable>"
+msgstr "<variable id=\"fete\">Изберете <emph>Прозорец - Разделяне</emph></variable>"
-#: 00000004.xhp
+#: 00000407.xhp
msgctxt ""
-"00000004.xhp\n"
-"par_id9751884\n"
+"00000407.xhp\n"
+"par_id3153663\n"
+"3\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\">Кодовете, по-големи от 127, зависят от кодовата таблица на системата (например iso-8859-1, iso-8859-2, Windows-1252, Windows-1250) и поради това може да не са преносими.</variable>"
+msgid "<variable id=\"fefix\">Choose <emph>Window - Freeze</emph></variable>"
+msgstr "<variable id=\"fefix\">Изберете <emph>Прозорец - Замразяване</emph></variable>"
-#: 00000402.xhp
+#: 00000412.xhp
msgctxt ""
-"00000402.xhp\n"
+"00000412.xhp\n"
"tit\n"
"help.text"
-msgid "Edit Menu"
-msgstr "Меню Редактиране"
+msgid "Data Menu"
+msgstr "Меню Данни"
-#: 00000402.xhp
+#: 00000412.xhp
msgctxt ""
-"00000402.xhp\n"
-"hd_id3147303\n"
+"00000412.xhp\n"
+"hd_id3145136\n"
"1\n"
"help.text"
-msgid "Edit Menu"
-msgstr "Меню Редактиране"
+msgid "Data Menu"
+msgstr "Меню Данни"
-#: 00000402.xhp
+#: 00000412.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3155555\n"
-"2\n"
+"00000412.xhp\n"
+"par_id8366954\n"
"help.text"
-msgid "<variable id=\"kopffuss\">Choose <emph>Edit - Headers & Footers</emph></variable>"
-msgstr "<variable id=\"kopffuss\">Изберете <emph>Редактиране - Колонтитули</emph></variable>"
+msgid "<variable id=\"text2columns\">Choose <emph>Data - Text to Columns</emph></variable>"
+msgstr "<variable id=\"text2columns\">Изберете <emph>Данни - Текст към колони</emph></variable>"
-#: 00000402.xhp
+#: 00000412.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3159233\n"
+"00000412.xhp\n"
+"par_id3147399\n"
"3\n"
"help.text"
-msgid "<variable id=\"bkopfzeile\">Choose <emph>Edit - Headers & Footers - Header/Footer</emph> tabs</variable>"
-msgstr "<variable id=\"bkopfzeile\">Изберете <emph>Редактиране - Колонтитули - Горен колонтитул/Долен колонтитул</emph> раздел</variable>"
+msgid "<variable id=\"dbrbf\">Choose <emph>Data - Define Range</emph></variable>"
+msgstr "<variable id=\"dbrbf\">Изберете <emph>Данни - Дефиниране на област</emph></variable>"
-#: 00000402.xhp
+#: 00000412.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3150443\n"
+"00000412.xhp\n"
+"par_id3145345\n"
"4\n"
"help.text"
-msgid "<variable id=\"bausfullen\">Choose <emph>Edit - Fill</emph></variable>"
-msgstr "<variable id=\"bausfullen\">Изберете <emph>Редактиране - Запълване</emph></variable>"
+msgid "<variable id=\"dbrba\">Choose <emph>Data - Select Range</emph></variable>"
+msgstr "<variable id=\"dbrba\">Изберете <emph>Данни - Избор на област</emph></variable>"
-#: 00000402.xhp
+#: 00000412.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3143267\n"
+"00000412.xhp\n"
+"par_id3150443\n"
"5\n"
"help.text"
-msgid "<variable id=\"bausunten\">Choose <emph>Edit - Fill - Down</emph></variable>"
-msgstr "<variable id=\"bausunten\">Изберете <emph>Редактиране - Запълване - Надолу</emph></variable>"
+msgid "<variable id=\"dnsrt\">Choose <emph>Data - Sort</emph></variable>"
+msgstr "<variable id=\"dnsrt\">Изберете <emph>Данни - Сортиране</emph></variable>"
-#: 00000402.xhp
+#: 00000412.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3153880\n"
+"00000412.xhp\n"
+"par_id3148491\n"
"6\n"
"help.text"
-msgid "<variable id=\"bausrechts\">Choose <emph>Edit - Fill - Right</emph></variable>"
-msgstr "<variable id=\"bausrechts\">Изберете <emph>Редактиране - Запълване - Надясно</emph></variable>"
+msgid "Choose <emph>Data - Sort - Sort Criteria</emph> tab"
+msgstr "Изберете <emph>Данни - Сортиране</emph> - раздел <emph>Критерии за сортиране</emph>"
-#: 00000402.xhp
+#: 00000412.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3151245\n"
+"00000412.xhp\n"
+"par_id3154516\n"
"7\n"
"help.text"
-msgid "<variable id=\"bausoben\">Choose <emph>Edit - Fill - Up</emph></variable>"
-msgstr "<variable id=\"bausoben\">Изберете <emph>Редактиране - Запълване - Нагоре</emph></variable>"
+msgid "On Standard bar, click"
+msgstr "От основната лента с инструменти изберете"
-#: 00000402.xhp
+#: 00000412.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3145068\n"
+"00000412.xhp\n"
+"par_id3148663\n"
+"help.text"
+msgid "<image id=\"img_id3150543\" src=\"cmd/sc_sortup.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3150543\">Icon</alt></image>"
+msgstr "<image id=\"img_id3150543\" src=\"cmd/sc_sortup.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3150543\">Икона</alt></image>"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3150767\n"
"8\n"
"help.text"
-msgid "<variable id=\"bauslinks\">Choose <emph>Edit - Fill - Left</emph></variable>"
-msgstr "<variable id=\"bauslinks\">Изберете <emph>Редактиране - Запълване - Наляво</emph></variable>"
+msgid "Sort Ascending"
+msgstr "Възходящо сортиране"
-#: 00000402.xhp
+#: 00000412.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3150400\n"
-"9\n"
+"00000412.xhp\n"
+"par_id3153969\n"
"help.text"
-msgid "<variable id=\"baustab\">Choose <emph>Edit - Fill - Sheet</emph></variable>"
-msgstr "<variable id=\"baustab\">Изберете <emph>Редактиране - Запълване - Лист</emph></variable>"
+msgid "<image id=\"img_id3125863\" src=\"cmd/sc_sortdown.png\" width=\"0.1701inch\" height=\"0.1701inch\"><alt id=\"alt_id3125863\">Icon</alt></image>"
+msgstr "<image id=\"img_id3125863\" src=\"cmd/sc_sortdown.png\" width=\"0.1701inch\" height=\"0.1701inch\"><alt id=\"alt_id3125863\">Икона</alt></image>"
-#: 00000402.xhp
+#: 00000412.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3154910\n"
-"10\n"
+"00000412.xhp\n"
+"par_id3145364\n"
+"9\n"
"help.text"
-msgid "<variable id=\"bausreihe\">Choose <emph>Edit - Fill - Series</emph></variable>"
-msgstr "<variable id=\"bausreihe\">Изберете <emph>Редактиране - Запълване - Предица</emph></variable>"
+msgid "Sort Descending"
+msgstr "Низходящо сортиране"
-#: 00000402.xhp
+#: 00000412.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3154123\n"
-"11\n"
+"00000412.xhp\n"
+"par_id3146984\n"
+"10\n"
"help.text"
-msgid "Choose <emph>Edit - Delete Contents</emph>"
-msgstr "Изберете <emph>Редактиране - Изтриване на съдържание</emph>"
+msgid "<variable id=\"dnstot\">Choose <emph>Data - Sort - Options</emph> tab</variable>"
+msgstr "<variable id=\"dnstot\">Изберете <emph>Данни - Сортиране</emph> - раздел <emph>Настройки</emph></variable>"
-#: 00000402.xhp
+#: 00000412.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3145785\n"
-"20\n"
+"00000412.xhp\n"
+"par_id3155308\n"
+"11\n"
"help.text"
-msgid "Backspace"
-msgstr "Backspace"
+msgid "<variable id=\"dnftr\">Choose <emph>Data - Filter</emph></variable>"
+msgstr "<variable id=\"dnftr\">Изберете <emph>Данни - Филтър</emph></variable>"
-#: 00000402.xhp
+#: 00000412.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3150011\n"
+"00000412.xhp\n"
+"par_id3148646\n"
"12\n"
"help.text"
-msgid "<variable id=\"bzelo\">Choose <emph>Edit - Delete Cells</emph></variable>"
-msgstr "<variable id=\"bzelo\">Изберете <emph>Редактиране - Изтриване на клетки</emph></variable>"
+msgid "Choose <emph>Data - Filter - AutoFilter</emph>"
+msgstr "Изберете <emph>Данни - Филтър - Автофилтър</emph>"
-#: 00000402.xhp
+#: 00000412.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3153951\n"
+"00000412.xhp\n"
+"par_id3151113\n"
"13\n"
"help.text"
-msgid "Choose <emph>Edit – Sheet - Delete</emph>"
-msgstr "Изберете <emph>Редактиране – Лист - Изтриване</emph>"
+msgid "On Tools bar or Table Data bar, click"
+msgstr "В лентата Инструменти или Данни от таблица щракнете върху"
-#: 00000402.xhp
+#: 00000412.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3155306\n"
-"18\n"
+"00000412.xhp\n"
+"par_id3145799\n"
"help.text"
-msgid "Open context menu for a sheet tab"
-msgstr "Отворете контекстното меню за лист"
+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\">Икона</alt></image>"
-#: 00000402.xhp
+#: 00000412.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3146119\n"
+"00000412.xhp\n"
+"par_id3149401\n"
"14\n"
"help.text"
-msgid "Choose <emph>Edit – Sheets – Move/Copy</emph>"
-msgstr "Изберете <emph>Редактиране – Лист – Местене/копиране</emph>"
+msgid "AutoFilter"
+msgstr "Автофилтър"
-#: 00000402.xhp
+#: 00000412.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3148645\n"
+"00000412.xhp\n"
+"par_id3156278\n"
+"17\n"
+"help.text"
+msgid "<variable id=\"dnfspz\">Choose <emph>Data - Filter - Advanced Filter</emph></variable>"
+msgstr "<variable id=\"dnfspz\">Изберете <emph>Данни - Филтър - Разширен филтър</emph></variable>"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3153764\n"
+"18\n"
+"help.text"
+msgid "Choose <emph>Data - Filter - Standard Filter - More>></emph> button"
+msgstr "Изберете <emph>Данни - Филтър - Стандартен филтър</emph> - бутон <emph>Повече>></emph>"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3155444\n"
"19\n"
"help.text"
-msgid "Open context menu for a sheet tab"
-msgstr "Отворете контекстното меню за лист"
+msgid "Choose <emph>Data - Filter - Advanced Filter - More>></emph> button"
+msgstr "Изберете <emph>Данни - Филтър - Разширен филтър</emph> - бутон <emph>Повече</emph>"
-#: 00000402.xhp
+#: 00000412.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3153093\n"
-"15\n"
+"00000412.xhp\n"
+"par_id3156382\n"
+"20\n"
"help.text"
-msgid "<variable id=\"bmaumloe\">Choose <emph>Edit - Delete Manual Break</emph></variable>"
-msgstr "<variable id=\"bmaumloe\">Изберете <emph>Редактиране - Изтриване на ръчен разделител</emph></variable>"
+msgid "Choose <emph>Data - Filter - Remove Filter</emph>"
+msgstr "Изберете <emph>Данни - Филтър - Премахване на филтъра</emph>"
-#: 00000402.xhp
+#: 00000412.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3153191\n"
-"16\n"
+"00000412.xhp\n"
+"par_id3155961\n"
+"48\n"
"help.text"
-msgid "<variable id=\"bzeilum\">Choose <emph>Edit - Delete Manual Break - Row Break</emph></variable>"
-msgstr "<variable id=\"bzeilum\">Изберете <emph>Редактиране - Изтриване на ръчен разделител - Разделител на редове</emph></variable>"
+msgid "On Table Data bar, click <emph>Remove Filter/Sort</emph>"
+msgstr "В лентата Данни от таблица щракнете върху <emph>Изключване на филтрирането/сортирането</emph>"
-#: 00000402.xhp
+#: 00000412.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3145645\n"
-"17\n"
+"00000412.xhp\n"
+"par_id3148485\n"
"help.text"
-msgid "<variable id=\"bspaum\">Choose <emph>Edit - Delete Manual Break - Column Break</emph></variable>"
-msgstr "<variable id=\"bspaum\">Изберете <emph>Редактиране - Изтриване на ръчен разделител - Разделител на колони</emph></variable>"
+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\">Икона</alt></image>"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3149207\n"
+"49\n"
+"help.text"
+msgid "Remove Filter/Sort"
+msgstr "Изключване на филтрирането/сортирането"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3152778\n"
+"21\n"
+"help.text"
+msgid "<variable id=\"dnaftas\">Choose <emph>Data - Filter - Hide AutoFilter</emph></variable>"
+msgstr "<variable id=\"dnaftas\">Изберете <emph>Данни - Филтър - Скриване на автофилтъра</emph></variable>"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3166424\n"
+"22\n"
+"help.text"
+msgid "<variable id=\"dntegs\">Choose <emph>Data - Subtotals</emph></variable>"
+msgstr "<variable id=\"dntegs\">Изберете <emph>Данни - Междинни суми</emph></variable>"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3154574\n"
+"23\n"
+"help.text"
+msgid "<variable id=\"dntezd\">Choose <emph>Data - Subtotals - 1st, 2nd, 3rd Group</emph> tabs</variable>"
+msgstr "<variable id=\"dntezd\">Изберете <emph>Данни - Междинни суми</emph> - раздели <emph>1ва, 2ра, 3та група</emph></variable>"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3151277\n"
+"24\n"
+"help.text"
+msgid "<variable id=\"dntopi\">Choose <emph>Data - Subtotals - Options</emph> tab</variable>"
+msgstr "<variable id=\"dntopi\">Изберете <emph>Данни - Междинни суми</emph> - раздел <emph>Настройки</emph></variable>"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3145133\n"
+"25\n"
+"help.text"
+msgid "<variable id=\"datengueltig\">Choose <emph>Data - Validity</emph></variable>"
+msgstr "<variable id=\"datengueltig\">Изберете <emph>Данни - Валидност</emph></variable>"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3152992\n"
+"26\n"
+"help.text"
+msgid "<variable id=\"datengueltigwerte\">Menu <emph>Data - Validity - Criteria</emph> tab</variable>"
+msgstr "<variable id=\"datengueltigwerte\">Изберете <emph>Данни - Валидност</emph> - раздел <emph>Критерии</emph></variable>"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3150367\n"
+"27\n"
+"help.text"
+msgid "<variable id=\"datengueltigeingabe\">Choose <emph>Data - Validity - Input Help</emph> tab</variable>"
+msgstr "<variable id=\"datengueltigeingabe\">Изберете <emph>Данни - Валидност</emph> - раздел <emph>Помощ при въвеждане</emph></variable>"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3154486\n"
+"28\n"
+"help.text"
+msgid "<variable id=\"datengueltigfehler\">Choose <emph>Data - Validity - Error Alert</emph> tab</variable>"
+msgstr "<variable id=\"datengueltigfehler\">Изберете <emph>Данни - Валидност</emph> - раздел <emph>Предупреждение за грешка</emph></variable>"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3146978\n"
+"29\n"
+"help.text"
+msgid "<variable id=\"dnmfo\">Choose <emph>Data - Multiple Operations</emph></variable>"
+msgstr "<variable id=\"dnmfo\">Изберете <emph>Данни - Успоредни операции</emph></variable>"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3155809\n"
+"30\n"
+"help.text"
+msgid "<variable id=\"dnksd\">Choose <emph>Data - Consolidate</emph></variable>"
+msgstr "<variable id=\"dnksd\">Изберете <emph>Данни - Консолидиране</emph></variable>"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3148701\n"
+"31\n"
+"help.text"
+msgid "<variable id=\"dngld\">Choose <emph>Data - Group and Outline</emph></variable>"
+msgstr "<variable id=\"dngld\">Изберете <emph>Данни - Групиране и план - Автоплан</emph></variable>"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3153815\n"
+"32\n"
+"help.text"
+msgid "<variable id=\"dngda\">Choose <emph>Data - Group and Outline - Hide Details</emph></variable>"
+msgstr "<variable id=\"dngda\">Изберете <emph>Данни - Групиране и план - Премахване</emph></variable>"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3159223\n"
+"33\n"
+"help.text"
+msgid "<variable id=\"dngde\">Choose <emph>Data - Group and Outline - Show Details</emph></variable>"
+msgstr "<variable id=\"dngde\">Изберете <emph>Данни - Групиране и план - Премахване</emph></variable>"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3146870\n"
+"34\n"
+"help.text"
+msgid "Choose <emph>Data - Group and Outline - Group</emph>"
+msgstr "Изберете <emph>Данни - Групиране и план - Групиране</emph>"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3144507\n"
+"51\n"
+"help.text"
+msgid "F12"
+msgstr "F12"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3144772\n"
+"35\n"
+"help.text"
+msgid "On <emph>Tools</emph> bar, click"
+msgstr "На лентата <emph>Инструменти</emph> натиснете"
+
+#: 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\">Икона</alt></image>"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3150214\n"
+"36\n"
+"help.text"
+msgid "Group"
+msgstr "Групиране"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3146781\n"
+"37\n"
+"help.text"
+msgid "Choose <emph>Data - Group and Outline - Ungroup</emph>"
+msgstr "Изберете <emph>Данни - Групиране и план - Разгрупиране</emph>"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3150892\n"
+"52\n"
+"help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F12"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F12"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3155097\n"
+"38\n"
+"help.text"
+msgid "On <emph>Tools</emph> bar, click"
+msgstr "На лентата <emph>Инструменти</emph> натиснете"
+
+#: 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\">Икона</alt></image>"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3153555\n"
+"39\n"
+"help.text"
+msgid "Ungroup"
+msgstr "Разгрупиране"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3153008\n"
+"40\n"
+"help.text"
+msgid "<variable id=\"dnglagl\">Choose <emph>Data - Group and Outline - AutoOutline</emph></variable>"
+msgstr "<variable id=\"dnglagl\">Изберете <emph>Данни - Групиране и план - Автоплан</emph></variable>"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3154709\n"
+"41\n"
+"help.text"
+msgid "<variable id=\"dnglef\">Choose <emph>Data - Group and Outline - Remove</emph></variable>"
+msgstr "<variable id=\"dnglef\">Изберете <emph>Данни - Групиране и план - Премахване</emph></variable>"
+
+#: 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\">Изберете <emph>Данни - Групиране и план - Видими детайли</emph> (за някои обобщаващи таблици)</variable>"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3155759\n"
+"42\n"
+"help.text"
+msgid "<variable id=\"dndtpt\">Choose <emph>Data - Pivot Table</emph></variable>"
+msgstr "<variable id=\"dndtpt\">Изберете <emph>Данни - Обобщаваща таблица</emph></variable>"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3154625\n"
+"43\n"
+"help.text"
+msgid "<variable id=\"dndpa\">Choose <emph>Data - Pivot Table - Create</emph></variable>"
+msgstr "<variable id=\"dndpa\">Изберете <emph>Данни - Обобщаваща таблица - Начало</emph></variable>"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3147558\n"
+"53\n"
+"help.text"
+msgid "<variable id=\"dndq\">Choose <emph>Data - Pivot Table - Create</emph>, in the Select Source dialog choose the option <emph>Data source registered in $[officename]</emph>.</variable>"
+msgstr "<variable id=\"dndq\">Изберете <emph>Данни - Обобщаваща таблица - Начало</emph>, в диалоговия прозорец Избор на източник изберете <emph>Източник на данни, регистриран в $[officename]</emph>.</variable>"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3153297\n"
+"50\n"
+"help.text"
+msgid "Choose <emph>Data - Pivot Table - Create</emph>, in the Select Source dialog choose the option <emph>Current selection</emph>."
+msgstr "Изберете <emph>Данни - Обобщаваща таблица - Начало</emph>, в диалоговия прозорец Избор на източник изберете <emph>Текуща избрана област</emph>."
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3145118\n"
+"54\n"
+"help.text"
+msgid "Choose <emph>Data - Pivot Table - Create</emph>, in the Select Source dialog choose the option <emph>Data source registered in $[officename]</emph>, click <emph>OK</emph> to see <emph>Select Data Source</emph> dialog."
+msgstr "Изберете <emph>Данни - Обобщаваща таблица - Начало</emph>, в диалоговия прозорец Избор на източник изберете <emph>Източник на данни, регистриран в $[officename]</emph>, натиснете<emph>OK</emph>, за да видите диалоговия прозорец <emph>Избор на източник на данни</emph>."
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3153294\n"
+"44\n"
+"help.text"
+msgid "<variable id=\"dndpak\">Choose <emph>Data - Pivot Table - Refresh</emph></variable>"
+msgstr "<variable id=\"dndpak\">Изберете <emph>Данни - Обобщаваща таблица - Опресняване</emph></variable>"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3151344\n"
+"45\n"
+"help.text"
+msgid "<variable id=\"dndploe\">Choose <emph>Data - Pivot Table - Delete</emph></variable>"
+msgstr "<variable id=\"dndploe\">Изберете <emph>Данни - Обобщаващ таблица - Изтриване</emph></variable>"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3150397\n"
+"46\n"
+"help.text"
+msgid "<variable id=\"dndakt\">Choose <emph>Data - Refresh Range</emph></variable>"
+msgstr "<variable id=\"dndakt\">Изберете <emph>Данни - Опресняване на област</emph></variable>"
+
+#: 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\">Изберете <emph>Данни - Групиране и план - Групиране</emph></variable>"
diff --git a/source/bg/helpcontent2/source/text/scalc/01.po b/source/bg/helpcontent2/source/text/scalc/01.po
index 169f248a36b..96e36942627 100644
--- a/source/bg/helpcontent2/source/text/scalc/01.po
+++ b/source/bg/helpcontent2/source/text/scalc/01.po