summaryrefslogtreecommitdiff
path: root/slideshow/manifest.txt
blob: 12d2daecb002015eeb359f94eaeb0d77b72eac51 (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
#
# This file is part of the LibreOffice project.
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#
# This file incorporates work covered by the following license notice:
#
#   Licensed to the Apache Software Foundation (ASF) under one or more
#   contributor license agreements. See the NOTICE file distributed
#   with this work for additional information regarding copyright
#   ownership. The ASF licenses this file to you under the Apache
#   License, Version 2.0 (the "License"); you may not use this file
#   except in compliance with the License. You may obtain a copy of
#   the License at http://www.apache.org/licenses/LICENSE-2.0 .
#

Slideshow module design & coding manifest
=========================================

Coding style:
-------------

 - modified BSD style:
   if( !test )
   {
       function( arg1,
                 arg2,
                 arg3 );                
   }

 - members are always named maSomething

 - no tabs, indent four spaces

 - Class names (and type names in general) are UpperCamelCase, method
   names lowerCamelCase

 - all file names are lowercase, header files end in hxx, source files
   in cxx; one header per class, only one linkable class per cxx.

 - header guards follow this scheme: INCLUDED_SLIDESHOW_<CLASSNAME>_HXX

 - module-external headers, and system headers are included like this:
   #include <module/header.hxx> or #include <boost/shared_ptr.hpp>. 
   module-internal headers are included like this:
   #include "header.hxx"
   No external header guards are used in cxx files


Design
------
 
 - currently, the slideshow module is basically
   single-threaded. Therefore, the XSlideShow interface must be called
   from the _main thread_ (this precondition is asserted). Other
   listener interfaces, which we could not impose this limitation upon
   (XSlideShowView's XMouseMotionListener, XMouseListener,
   XPaintListener and XModifyListener) will queue the events, and
   process them in the main thread. Therefore, XSlideShow::update()
   needs to be called frequently from the slideshow client.

   This design is necessitated by the fact that at least one XCanvas
   implementation (vclcanvas) must be called from the main thread
   only. Once the UNO threading framework is integrated, this can be
   changed. 

   As of now, SlideView, SlideShowImpl, EventMultiplexerListener and
   DummyRenderer are exposed to calls from the outside world; of
   those, SlideView and EventMultiplexerListener serialize the calls
   by enqueuing events, SlideShowImpl imposes the hard constraint of
   being called from the main thread, and DummyRenderer is content
   with a simple object mutex. As a side effect, the global EventQueue
   must be thread-safe (as one of the few internal objects having an
   object mutex)

 - wherever possible, abstract interfaces and shared_ptr are used.
   * exception: global objects like EventQueue,
     and tightly collaborating classes, like Slide/LayerManager/Layer

 - since shared_ptr can lead to circular references (resulting in
   memory leaks), some care needs to be taken to avoid those. Where
   circular references are inevitable, or can happen by accident,
   classes implement the Disposable interface. The owner of the object
   then calls dispose() on its owned objects.
   Another way of avoiding circular references are weak_ptr, which are
   used in a few places.
   One of those places are the ViewEventHandlers, which are held weak
   on the EventMultiplexer. Otherwise, every class in need of view
   events would have to delegate listening to a dedicated child
   object, or burden their clients with the Disposable interface.

 - Pattern: Separate Listener
   To avoid circular shared_ptr references, classes in need to
   register a listener at EventMultiplexer often implement the
   corresponding listener interface in a separate object. This object
   is held via shared_ptr by the original class, and normally
   registered at the EventMultiplexer (and thus held by shared_ptr
   there, too). The separate listener object in turn holds the
   original object by plain reference. This is safe, if the original
   object removes the listener from the EventMultiplexer, before or
   within the destructor.


Testing
=======

Before merging changes to HEAD, besides making sure the usual QA has
been done, also run the unit and integration tests in the
slideshow/test directory. Issuing a "dmake test" should run the unit
tests, and generate a "demoshow" binary, that should also be run and
checked to work properly.
class='add' style='width: 0.0%;'/> -rw-r--r--source/om/svtools/uiconfig/ui.po11
-rw-r--r--source/om/svx/source/dialog.po10
-rw-r--r--source/om/svx/source/form.po6
-rw-r--r--source/om/svx/source/src.po6
-rw-r--r--source/om/svx/source/tbxctrls.po10
-rw-r--r--source/om/svx/uiconfig/ui.po13
-rw-r--r--source/om/sw/source/ui/docvw.po6
-rw-r--r--source/om/sw/source/ui/index.po6
-rw-r--r--source/om/sw/source/ui/utlui.po6
-rw-r--r--source/om/sw/uiconfig/swriter/ui.po11
-rw-r--r--source/om/xmlsecurity/uiconfig/ui.po11
90 files changed, 214295 insertions, 217055 deletions
diff --git a/source/om/android/sdremote/res/values.po b/source/om/android/sdremote/res/values.po
index 01014d68ac6..3120a90a946 100644
--- a/source/om/android/sdremote/res/values.po
+++ b/source/om/android/sdremote/res/values.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-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"
@@ -149,8 +149,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 ""
@@ -447,8 +447,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
diff --git a/source/om/connectivity/registry/mork/org/openoffice/Office/DataAccess.po b/source/om/connectivity/registry/mork/org/openoffice/Office/DataAccess.po
index 24781c88206..c21259ef219 100644
--- a/source/om/connectivity/registry/mork/org/openoffice/Office/DataAccess.po
+++ b/source/om/connectivity/registry/mork/org/openoffice/Office/DataAccess.po
@@ -1,4 +1,4 @@
-#
+#. extracted from connectivity/registry/mork/org/openoffice/Office/DataAccess
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
@@ -7,12 +7,12 @@ msgstr ""
"PO-Revision-Date: 2011-09-03 11:26+0200\n"
"Last-Translator: sanyii <sanyiidh@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: om\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: om\n"
-"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
+"X-Accelerator-Marker: ~\n"
#: Drivers.xcu
#, fuzzy
diff --git a/source/om/cui/source/options.po b/source/om/cui/source/options.po
index d6f8200388e..81dc140e10a 100644
--- a/source/om/cui/source/options.po
+++ b/source/om/cui/source/options.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-05-28 18:08+0200\n"
"PO-Revision-Date: 2013-02-17 21:18+0000\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1352,8 +1352,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 "Fakkeenyaaf: -Dmyprop=c:\\program files\\java"
#: optjava.src
msgctxt ""
diff --git a/source/om/cui/uiconfig/ui.po b/source/om/cui/uiconfig/ui.po
index dd8d7e8e857..52e572e54f3 100644
--- a/source/om/cui/uiconfig/ui.po
+++ b/source/om/cui/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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"
+"POT-Creation-Date: 2013-06-02 13:55+0200\n"
"PO-Revision-Date: 2012-11-17 19:02+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -440,6 +440,15 @@ msgstr "Halluu duubbee"
#: 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"
@@ -1739,7 +1748,7 @@ msgctxt ""
"modellb\n"
"1\n"
"stringlist.text"
-msgid "CYMK"
+msgid "CMYK"
msgstr ""
#: colorpage.ui
@@ -2009,7 +2018,7 @@ msgctxt ""
"label4\n"
"label\n"
"string.text"
-msgid "LiberOffice Writer Menus"
+msgid "%PRODUCTNAME Writer Menus"
msgstr ""
#: customize.ui
@@ -2216,7 +2225,7 @@ msgctxt ""
"label29\n"
"label\n"
"string.text"
-msgid "_Toolbare"
+msgid "_Toolbars"
msgstr ""
#: customize.ui
@@ -2288,7 +2297,7 @@ msgctxt ""
"label26\n"
"label\n"
"string.text"
-msgid "LiberOffice Writer Toolbars"
+msgid "%PRODUCTNAME Writer Toolbars"
msgstr ""
#: customize.ui
@@ -4787,6 +4796,15 @@ msgstr "JREn durumayyuu ijaaramee jira:"
#: 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"
@@ -4889,7 +4907,7 @@ msgctxt ""
"macrorecording\n"
"label\n"
"string.text"
-msgid "Enable macro recording"
+msgid "Enable macro recording (limited)"
msgstr ""
#: optadvancedpage.ui
@@ -5657,6 +5675,15 @@ msgctxt ""
msgid "_Default"
msgstr "Durtii"
+#: optpathspage.ui
+msgctxt ""
+"optpathspage.ui\n"
+"edit\n"
+"label\n"
+"string.text"
+msgid "_Edit..."
+msgstr ""
+
#: optproxypage.ui
msgctxt ""
"optproxypage.ui\n"
@@ -6077,7 +6104,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
diff --git a/source/om/dbaccess/uiconfig/ui.po b/source/om/dbaccess/uiconfig/ui.po
index 093e1e3c280..6809495c843 100644
--- a/source/om/dbaccess/uiconfig/ui.po
+++ b/source/om/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/om/dictionaries/is.po b/source/om/dictionaries/is.po
new file mode 100644
index 00000000000..53befecd51e
--- /dev/null
+++ b/source/om/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: om\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/om/dictionaries/no.po b/source/om/dictionaries/no.po
index 1b7db31d911..b021e38921e 100644
--- a/source/om/dictionaries/no.po
+++ b/source/om/dictionaries/no.po
@@ -3,7 +3,7 @@ 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"
+"POT-Creation-Date: 2013-05-28 18:07+0200\n"
"PO-Revision-Date: 2011-10-07 14:46+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -19,7 +19,5 @@ msgctxt ""
"description.xml\n"
"dispname\n"
"description.text"
-msgid ""
-"\n"
-"Norwegian (Nynorsk and Bokmål) spelling dictionary, hyphenation rules, and thesaurus\n"
+msgid "Norwegian (Nynorsk and Bokmål) spelling dictionary, hyphenation rules, and thesaurus"
msgstr ""
diff --git a/source/om/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po b/source/om/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po
index 9a6b2b1d572..c755bcf1e3c 100644
--- a/source/om/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po
+++ b/source/om/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: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -29,5 +29,5 @@ msgctxt ""
"..OptionsDialog.Nodes.LanguageSettings.Leaves.org.openoffice.lightproof.pt_BR\n"
"Label\n"
"value.text"
-msgid "Grammar checking (Portuguese)"
+msgid "Portuguese sentence checking"
msgstr ""
diff --git a/source/om/editeng/source/items.po b/source/om/editeng/source/items.po
index e7dfb201aff..0be11d30aff 100644
--- a/source/om/editeng/source/items.po
+++ b/source/om/editeng/source/items.po
@@ -1,4 +1,4 @@
-#
+#. extracted from editeng/source/items
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
@@ -7,12 +7,12 @@ msgstr ""
"PO-Revision-Date: 2013-02-17 21:18+0000\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: om\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: om\n"
-"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
+"X-Accelerator-Marker: ~\n"
"X-POOTLE-MTIME: 1361135926.0\n"
#: page.src
diff --git a/source/om/editeng/source/outliner.po b/source/om/editeng/source/outliner.po
index 39cba27ba4d..301d0f1202e 100644
--- a/source/om/editeng/source/outliner.po
+++ b/source/om/editeng/source/outliner.po
@@ -1,4 +1,4 @@
-#
+#. extracted from editeng/source/outliner
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
@@ -7,12 +7,12 @@ msgstr ""
"PO-Revision-Date: 2011-04-06 13:57+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: om\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: om\n"
-"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
+"X-Accelerator-Marker: ~\n"
#: outliner.src
#, fuzzy
diff --git a/source/om/helpcontent2/source/auxiliary.po b/source/om/helpcontent2/source/auxiliary.po
index 62991a93c73..34221676c98 100644
--- a/source/om/helpcontent2/source/auxiliary.po
+++ b/source/om/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: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -62,141 +62,149 @@ 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 "Wardiiwwan"
-#: 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
+#: scalc.tree
msgctxt ""
-"simpress.tree\n"
-"040201\n"
+"scalc.tree\n"
+"080201\n"
"node.text"
-msgid "Presentations (%PRODUCTNAME Impress)"
-msgstr ""
+msgid "Menus"
+msgstr "Baafattoota"
-#: simpress.tree
+#: scalc.tree
msgctxt ""
-"simpress.tree\n"
-"04020101\n"
+"scalc.tree\n"
+"080202\n"
"node.text"
-msgid "Menus"
-msgstr ""
+msgid "Toolbars"
+msgstr "Kamshaalee"
-#: simpress.tree
+#: scalc.tree
msgctxt ""
-"simpress.tree\n"
-"04020102\n"
+"scalc.tree\n"
+"0803\n"
"node.text"
-msgid "Toolbars"
+msgid "Functions Types and Operators"
msgstr ""
-#: simpress.tree
+#: scalc.tree
msgctxt ""
-"simpress.tree\n"
-"040202\n"
+"scalc.tree\n"
+"0804\n"
"node.text"
-msgid "Drawings (%PRODUCTNAME Draw)"
+msgid "Loading, Saving, Importing, and Exporting"
msgstr ""
-#: simpress.tree
+#: scalc.tree
msgctxt ""
-"simpress.tree\n"
-"04020201\n"
+"scalc.tree\n"
+"0805\n"
"node.text"
-msgid "Menus"
-msgstr ""
+msgid "Formatting"
+msgstr "Dhangeessuu"
-#: simpress.tree
+#: scalc.tree
msgctxt ""
-"simpress.tree\n"
-"04020202\n"
+"scalc.tree\n"
+"0806\n"
"node.text"
-msgid "Toolbars"
+msgid "Filtering and Sorting"
msgstr ""
-#: simpress.tree
+#: scalc.tree
msgctxt ""
-"simpress.tree\n"
-"0403\n"
+"scalc.tree\n"
+"0807\n"
"node.text"
-msgid "Loading, Saving, Importing, and Exporting"
-msgstr ""
+msgid "Printing"
+msgstr "Maxxansuu"
-#: simpress.tree
+#: scalc.tree
msgctxt ""
-"simpress.tree\n"
-"0404\n"
+"scalc.tree\n"
+"0808\n"
"node.text"
-msgid "Formatting"
+msgid "Data Ranges"
msgstr ""
-#: simpress.tree
+#: scalc.tree
msgctxt ""
-"simpress.tree\n"
-"0405\n"
+"scalc.tree\n"
+"0809\n"
"node.text"
-msgid "Printing"
+msgid "Pivot Table"
msgstr ""
-#: simpress.tree
+#: scalc.tree
msgctxt ""
-"simpress.tree\n"
-"0406\n"
+"scalc.tree\n"
+"0810\n"
"node.text"
-msgid "Effects"
-msgstr ""
+msgid "Scenarios"
+msgstr "Mul'inoota"
-#: simpress.tree
+#: scalc.tree
msgctxt ""
-"simpress.tree\n"
-"0407\n"
+"scalc.tree\n"
+"0811\n"
"node.text"
-msgid "Objects, Graphics, and Bitmaps"
+msgid "References"
msgstr ""
-#: simpress.tree
+#: scalc.tree
msgctxt ""
-"simpress.tree\n"
-"0408\n"
+"scalc.tree\n"
+"0812\n"
"node.text"
-msgid "Groups and Layers"
+msgid "Viewing, Selecting, Copying"
msgstr ""
-#: simpress.tree
+#: scalc.tree
msgctxt ""
-"simpress.tree\n"
-"0409\n"
+"scalc.tree\n"
+"0813\n"
"node.text"
-msgid "Text in Presentations and Drawings"
+msgid "Formulas and Calculations"
msgstr ""
-#: simpress.tree
+#: scalc.tree
msgctxt ""
-"simpress.tree\n"
-"0410\n"
+"scalc.tree\n"
+"0814\n"
"node.text"
-msgid "Viewing"
-msgstr ""
+msgid "Protection"
+msgstr "Hayyisa"
+
+#: scalc.tree
+msgctxt ""
+"scalc.tree\n"
+"0815\n"
+"node.text"
+msgid "Miscellaneous"
+msgstr "Wal makaa"
#: schart.tree
msgctxt ""
@@ -214,254 +222,6 @@ msgctxt ""
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
-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 ""
-
-#: smath.tree
-msgctxt ""
-"smath.tree\n"
-"03\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 ""
-
-#: smath.tree
-msgctxt ""
-"smath.tree\n"
-"0303\n"
-"node.text"
-msgid "Working with Formulas"
-msgstr ""
-
#: shared.tree
msgctxt ""
"shared.tree\n"
@@ -516,7 +276,7 @@ msgctxt ""
"100501\n"
"node.text"
msgid "Letter Wizard"
-msgstr ""
+msgstr "Masakaa Xalayaa"
#: shared.tree
msgctxt ""
@@ -524,7 +284,7 @@ msgctxt ""
"100502\n"
"node.text"
msgid "Fax Wizard"
-msgstr ""
+msgstr "Masakaa Fakasii"
#: shared.tree
msgctxt ""
@@ -532,7 +292,7 @@ msgctxt ""
"100504\n"
"node.text"
msgid "Agenda Wizard"
-msgstr ""
+msgstr "Masaka Ajandaa"
#: shared.tree
msgctxt ""
@@ -540,7 +300,7 @@ msgctxt ""
"100505\n"
"node.text"
msgid "Presentation Wizard"
-msgstr ""
+msgstr "Masakaa Pirezanteeshinii"
#: shared.tree
msgctxt ""
@@ -686,146 +446,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"
+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 "Menus"
+msgid "Presentations (%PRODUCTNAME Impress)"
msgstr ""
-#: scalc.tree
+#: simpress.tree
msgctxt ""
-"scalc.tree\n"
-"080202\n"
+"simpress.tree\n"
+"04020101\n"
+"node.text"
+msgid "Menus"
+msgstr "Baafattoota"
+
+#: simpress.tree
+msgctxt ""
+"simpress.tree\n"
+"04020102\n"
"node.text"
msgid "Toolbars"
-msgstr ""
+msgstr "Kamshaalee"
-#: scalc.tree
+#: simpress.tree
msgctxt ""
-"scalc.tree\n"
-"0803\n"
+"simpress.tree\n"
+"040202\n"
"node.text"
-msgid "Functions Types and Operators"
+msgid "Drawings (%PRODUCTNAME Draw)"
msgstr ""
-#: scalc.tree
+#: simpress.tree
msgctxt ""
-"scalc.tree\n"
-"0804\n"
+"simpress.tree\n"
+"04020201\n"
+"node.text"
+msgid "Menus"
+msgstr "Baafattoota"
+
+#: simpress.tree
+msgctxt ""
+"simpress.tree\n"
+"04020202\n"
+"node.text"
+msgid "Toolbars"
+msgstr "Kamshaalee"
+
+#: 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 "Dhangeessuu"
+
+#: simpress.tree
+msgctxt ""
+"simpress.tree\n"
+"0405\n"
+"node.text"
+msgid "Printing"
+msgstr "Maxxansuu"
+
+#: simpress.tree
+msgctxt ""
+"simpress.tree\n"
+"0406\n"
+"node.text"
+msgid "Effects"
+msgstr "Galteewwan"
+
+#: simpress.tree
+msgctxt ""
+"simpress.tree\n"
+"0407\n"
+"node.text"
+msgid "Objects, Graphics, and Bitmaps"
msgstr ""
-#: scalc.tree
+#: simpress.tree
msgctxt ""
-"scalc.tree\n"
-"0806\n"
+"simpress.tree\n"
+"0408\n"
"node.text"
-msgid "Filtering and Sorting"
+msgid "Groups and Layers"
msgstr ""
-#: scalc.tree
+#: simpress.tree
msgctxt ""
-"scalc.tree\n"
-"0807\n"
+"simpress.tree\n"
+"0409\n"
"node.text"
-msgid "Printing"
+msgid "Text in Presentations and Drawings"
msgstr ""
-#: scalc.tree
+#: simpress.tree
msgctxt ""
-"scalc.tree\n"
-"0808\n"
+"simpress.tree\n"
+"0410\n"
"node.text"
-msgid "Data Ranges"
+msgid "Viewing"
msgstr ""
-#: scalc.tree
+#: smath.tree
msgctxt ""
-"scalc.tree\n"
-"0809\n"
+"smath.tree\n"
+"03\n"
+"help_section.text"
+msgid "Formulas"
+msgstr "Foormulaawwan"
+
+#: smath.tree
+msgctxt ""
+"smath.tree\n"
+"0301\n"
"node.text"
-msgid "Pivot Table"
+msgid "General Information and User Interface Usage"
msgstr ""
-#: scalc.tree
+#: smath.tree
msgctxt ""
-"scalc.tree\n"
-"0810\n"
+"smath.tree\n"
+"0302\n"
"node.text"
-msgid "Scenarios"
+msgid "Command and Menu Reference"
msgstr ""
-#: scalc.tree
+#: smath.tree
msgctxt ""
-"scalc.tree\n"
-"0811\n"
+"smath.tree\n"
+"0303\n"
"node.text"
-msgid "References"
+msgid "Working with Formulas"
msgstr ""
-#: scalc.tree
+#: swriter.tree
msgctxt ""
-"scalc.tree\n"
-"0812\n"
+"swriter.tree\n"
+"02\n"
+"help_section.text"
+msgid "Text Documents"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0201\n"
"node.text"
-msgid "Viewing, Selecting, Copying"
+msgid "General Information and User Interface Usage"
msgstr ""
-#: scalc.tree
+#: swriter.tree
msgctxt ""
-"scalc.tree\n"
-"0813\n"
+"swriter.tree\n"
+"0202\n"
"node.text"
-msgid "Formulas and Calculations"
+msgid "Command and Menu Reference"
msgstr ""
-#: scalc.tree
+#: swriter.tree
msgctxt ""
-"scalc.tree\n"
-"0814\n"
+"swriter.tree\n"
+"020201\n"
"node.text"
-msgid "Protection"
+msgid "Menus"
+msgstr "Baafattoota"
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"020202\n"
+"node.text"
+msgid "Toolbars"
+msgstr "Kamshaalee"
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0203\n"
+"node.text"
+msgid "Creating Text Documents"
msgstr ""
-#: scalc.tree
+#: swriter.tree
msgctxt ""
-"scalc.tree\n"
-"0815\n"
+"swriter.tree\n"
+"0204\n"
"node.text"
-msgid "Miscellaneous"
+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 "Galmee Barruu keessatti herregu"
+
+#: 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 "Qajojiiwwanii fi Akkaataalee"
+
+#: 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 "Maxxansuu"
+
+#: 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 ""
diff --git a/source/om/helpcontent2/source/text/sbasic/guide.po b/source/om/helpcontent2/source/text/sbasic/guide.po
index 2263545450b..e2853c3e594 100644
--- a/source/om/helpcontent2/source/text/sbasic/guide.po
+++ b/source/om/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: 2011-04-06 09:22+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14,6 +14,49 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+#: control_properties.xhp
+msgctxt ""
+"control_properties.xhp\n"
+"tit\n"
+"help.text"
+msgid "Changing the Properties of Controls in the Dialog Editor"
+msgstr "Amaloota too'annoota Qaaqa Gulaalaa keessaa jijjiiruu"
+
+#: 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>amaloota; too'annoota qaaqa gulaalaa keessaa</bookmark_value><bookmark_value>jijjiiruu;amaloota too'annoo</bookmark_value>bookmark_value><bookmark_value>to'annoota;amaloota jijjiiraman</bookmark_value><bookmark_value>gulaalaa qaaqaa;amaloota too'annaa jijjiiruu</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=\"Changing the Properties of Controls in the Dialog Editor\">Amaloota too'annoota Qaaqa Gulaalaa keessaa jijjiiruu</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 "Amaloota too'annaa warra qaaqatti dabalte qindeessuu nidandeessa. Fakkeenyaaf, qabduu isa dabalteef, halluu, maqaa, fi hamamtaa jijjiiruu nidandeessa. Yammuu qaaqa tokko uumtuu ykn gulaaltuu, amaloota too'annaa baayee jijjiiruu nidandeessa. Haa tahu malee, yeroo ka'iinsaa amaloota muraasaaf qofa jijjiiruu dandeessa."
+
+#: 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 "haala saxaxaa keessatti amaloota too'annaa jijjiiruuf, too'annoocha irra mirga-cuqaasi, kana booda <emph>Amaloota</emph> filadhu."
+
#: create_dialog.xhp
msgctxt ""
"create_dialog.xhp\n"
@@ -206,7 +249,6 @@ msgid "Displaying a Dialog"
msgstr "Qaaqa tokko agarsiissuu"
#: sample_code.xhp
-#, fuzzy
msgctxt ""
"sample_code.xhp\n"
"par_id3145801\n"
@@ -296,7 +338,6 @@ msgid "REM execute dialog"
msgstr "Qaaqa REM raawwadhu"
#: sample_code.xhp
-#, fuzzy
msgctxt ""
"sample_code.xhp\n"
"par_id3146115\n"
@@ -346,48 +387,66 @@ msgctxt ""
msgid "REM remove the first entry from the ListBox"
msgstr "REM remove the first entry from the ListBox"
-#: 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 "Amaloota too'annoota Qaaqa Gulaalaa keessaa jijjiiruu"
+msgid "Opening a Dialog With Program Code"
+msgstr "Opening a Dialog With Program Code"
-#: 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>amaloota; too'annoota qaaqa gulaalaa keessaa</bookmark_value><bookmark_value>jijjiiruu;amaloota too'annoo</bookmark_value>bookmark_value><bookmark_value>to'annoota;amaloota jijjiiraman</bookmark_value><bookmark_value>gulaalaa qaaqaa;amaloota too'annaa jijjiiruu</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>moojuulii/qaaqa ceetuu</bookmark_value><bookmark_value>qaaqalee;lakkadda sagantaa gargaaramuun agarsiisuu (fakkeenya)</bookmark_value><bookmark_value>fakkeenyota; qaaqa lakkadda sagantaa gargaaramuun agarsiisuu</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=\"Changing the Properties of Controls in the Dialog Editor\">Amaloota too'annoota Qaaqa Gulaalaa keessaa jijjiiruu</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=\"Opening a Dialog With Program Code\">Lakkadda Sagantaa Waliin Qaaqa tokko banuu</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 "Amaloota too'annaa warra qaaqatti dabalte qindeessuu nidandeessa. Fakkeenyaaf, qabduu isa dabalteef, halluu, maqaa, fi hamamtaa jijjiiruu nidandeessa. Yammuu qaaqa tokko uumtuu ykn gulaaltuu, amaloota too'annaa baayee jijjiiruu nidandeessa. Haa tahu malee, yeroo ka'iinsaa amaloota muraasaaf qofa jijjiiruu dandeessa."
+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 "Qaaqa isa ati uumtee, foddaa <item type=\"productname\">%PRODUCTNAME</item> BASIC keessaatiif, gulaalaa qaaqaa isa Muraa qaaqichi itti ramadame caancalaa maqaa cuqaasuun dhiisi. Caancalii maqaa gara foddaa jalatti argama."
-#: 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 "haala saxaxaa keessatti amaloota too'annaa jijjiiruuf, too'annoocha irra mirga-cuqaasi, kana booda <emph>Amaloota</emph> filadhu."
+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 "Sagantaa xiqqaa <emph>QaaqaAgarsiisi</emph> jedhamuuf lakkadda armaan gadii saagi. Fakkeenya kana keessatti, maqaan qaaqa kan ati uumte \"qaaqa1\" dha:"
+
+#: 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\" osoo hinfayyadamin akka armaan gadiitti lakkadda waamuu nidandeessa:"
+
+#: 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 "Yammuu lakkadda kana raawwatuu, \"Qaaqa1\" banama. Qaaqicha cufuudhaaf, kabala mataduree isaa irraa (x) qabduu cufi cuqaasi."
#: translation.xhp
msgctxt ""
@@ -660,64 +719,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 "Yoo fayyadamaan qaaqoota Basictiif fooyya'aa moofaa kan %PRODUCTNAME isa qabeenya diraa biyyoomsuu hin beeknee qaba tahe, fayyadamaan diraawwan afaan durtii arga."
-
-#: show_dialog.xhp
-msgctxt ""
-"show_dialog.xhp\n"
-"tit\n"
-"help.text"
-msgid "Opening a Dialog With Program Code"
-msgstr "Opening a Dialog With Program Code"
-
-#: 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>moojuulii/qaaqa ceetuu</bookmark_value><bookmark_value>qaaqalee;lakkadda sagantaa gargaaramuun agarsiisuu (fakkeenya)</bookmark_value><bookmark_value>fakkeenyota; qaaqa lakkadda sagantaa gargaaramuun agarsiisuu</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=\"Opening a Dialog With Program Code\">Lakkadda Sagantaa Waliin Qaaqa tokko banuu</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 "Qaaqa isa ati uumtee, foddaa <item type=\"productname\">%PRODUCTNAME</item> BASIC keessaatiif, gulaalaa qaaqaa isa Muraa qaaqichi itti ramadame caancalaa maqaa cuqaasuun dhiisi. Caancalii maqaa gara foddaa jalatti argama."
-
-#: 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 "Sagantaa xiqqaa <emph>QaaqaAgarsiisi</emph> jedhamuuf lakkadda armaan gadii saagi. Fakkeenya kana keessatti, maqaan qaaqa kan ati uumte \"qaaqa1\" dha:"
-
-#: 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\" osoo hinfayyadamin akka armaan gadiitti lakkadda waamuu nidandeessa:"
-
-#: 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 "Yammuu lakkadda kana raawwatuu, \"Qaaqa1\" banama. Qaaqicha cufuudhaaf, kabala mataduree isaa irraa (x) qabduu cufi cuqaasi."
diff --git a/source/om/helpcontent2/source/text/sbasic/shared.po b/source/om/helpcontent2/source/text/sbasic/shared.po
index 217f26a1100..fa9cb18efae 100644
--- a/source/om/helpcontent2/source/text/sbasic/shared.po
+++ b/source/om/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-09-04 22:09+0200\n"
"Last-Translator: Diriba Kuma <diribakw@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14,6 +14,5040 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"tit\n"
+"help.text"
+msgid "$[officename] Basic Glossary"
+msgstr "Jibsoo Basic $[officename]"
+
+#: 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 Glossary\">Jibsoo Bu`uura $[officename]</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 "Jibsoon kun ogummaa jechoota tokko tokkoo Bu`uura $[officename] wajin hojetan ibsa."
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"hd_id3155133\n"
+"7\n"
+"help.text"
+msgid "Decimal Point"
+msgstr "Akeeki Kurnyee"
+
+#: 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 "Yeroo lakkoofsota, $[officename] Bu`uura jijjiirtu gosa kurnyee fi gargareessaa lakkoofssaa addaanbaasuuf sirna Qindaa'ina gitoo biyyaatti gargaarami."
+
+#: 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 "Amali kalattii maleen jijjiiruu ( 1 + \"2.3\" = 3.3 ) akkasumas fankishinii sa`aa darbee irratti gara lachuunuu galtee qaba <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 "Halluuwwan"
+
+#: 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 "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>."
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"hd_id3146119\n"
+"32\n"
+"help.text"
+msgid "Measurement Units"
+msgstr "Safartuuwwan"
+
+#: 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 ""
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"bm_id3145801\n"
+"help.text"
+msgid "<bookmark_value>twips; definition</bookmark_value>"
+msgstr "<bookmark_value>twips; Hiika</bookmark_value>"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"hd_id3145801\n"
+"5\n"
+"help.text"
+msgid "Twips"
+msgstr "Twiipsi"
+
+#: 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 "twiipsin safartuu argii hirkattoo malee ta`ee iddoo murtaa`aa fi dheerina argii maalimootaa cirna hundaa keessatti kan hiiku dha. Twiipsin inchii 1/1440ffaa yookiin 1/20 tuqaa maxxansaa ti. Twiipsin inchii 1440 yookiin 567 saantiimeetiraan jiru."
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"hd_id3153159\n"
+"106\n"
+"help.text"
+msgid "URL Notation"
+msgstr "Ibsa 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 "URLiin (<emph>Uniform Resource Locators</emph>) iddoo qabeenya kan akka faayilii sirna faayilii keessaa,haalaan Cimdaa qeeyyaa keessaa murteessuuf nama garagara. URLiin murteesituu aaloo, murteesituu Affeertuu fi faayilii fi murteesituu xurree irraa kan ijaarame dha:"
+
+#: 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>aaloo</emph>://<emph>host.name</emph>/<emph>path/to/the/file.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 "Faayidaan URLootaa inni gudaan Intarneetii irrati yeroo fuula saphaphuun ifteessamu dha.Fakkeenyaaf <emph>http</emph>, <emph>ftp</emph>, yookiin <emph>faaayilii</emph> aalootaafi dha.<emph>Faayilii</emph> murteeesituun aaloo kan gargaaru faayilii qe`ee sirna faayilii irratti yeroo ibsinu dha."
+
+#: 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 "Ibsi URLii arfiilee addaa tokko tokko tajaajilaaf hin Hayyamu.Isaan kunis Arfiilee biroon yookiin Lakkaddaaye bakk bu`a. Haxaaroon (<emph>/</emph>) akka Gargareessaa xurreetti gargaara. Fakeenyaaf, faayiliin akka <emph>C:\\My File.sxw</emph> ibsamu affeertuu qe`ee \"ibsa foddaalee\" ibsa URL keessatti <emph> file:///C|/My%20File.sxw</emph> ni ta`a."
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"tit\n"
+"help.text"
+msgid "Information"
+msgstr "Odeeffannoo"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id3148550\n"
+"1\n"
+"help.text"
+msgid "Information"
+msgstr "Odeeffannoo"
+
+#: 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 ""
+
+#: 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 "Haala walfakaatuun qindaa`ina gitoo biyyaa guyyaa, sa`atii fi sharafa dhangiiwwan irratis ni raawata. Bu`uuri dhangii Lakkadda akkaataa qindaa`ina gitoo biyyaatiin ni hiikama akasumas ni argisiifama."
+
+#: 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 "Gatiin halluu halluuwwan 16 akka armaan gadiiti ibsama:"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3153091\n"
+"3\n"
+"help.text"
+msgid "<emph>Color Value</emph>"
+msgstr "<emph>Gatii halluu</emph>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3154319\n"
+"4\n"
+"help.text"
+msgid "<emph>Color Name</emph>"
+msgstr "<emph>Maqaa Halluu</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 "Gurraacha"
+
+#: 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 "Cuquliisa"
+
+#: 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 "Magariisa"
+
+#: 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 "Hallataa"
+
+#: 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 "Diimaa"
+
+#: 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 "Maagneetaa"
+
+#: 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 "Keelloo"
+
+#: 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 "Adii"
+
+#: 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 "Kajajaa"
+
+#: 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 "Cuquliisa ibsi"
+
+#: 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 "Magariisa ibsi"
+
+#: 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 "Hallataa ibsi"
+
+#: 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 "Diimaa ibsi"
+
+#: 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 "Maagentaa ibsi"
+
+#: 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 "Keelloo ibsi"
+
+#: 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 "Dabarsoo adii"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id3152869\n"
+"37\n"
+"help.text"
+msgid "<variable id=\"errorcode\">Error Codes</variable>"
+msgstr "<variable id=\"errorcode\">Dogoggora lakkaddoota </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id315509599\n"
+"help.text"
+msgid "<variable id=\"err1\">1 An exception occurred</variable>"
+msgstr "<variable id=\"err18\">18 Itti fayyadamaan addan citaa </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 Dogoggora caasimaa hinmuurtoofnee </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 Deebii Gosuubii malee </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=\"err14\">14 Ulaagaa fashalaa </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 Ejjatoo fashalaan waamu </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 Guutinsa darbaa </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 Qaabataa keessaa </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 Arree duraan qophaa`e </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 Hammanga keessaa mallatto-jalee </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 Hiika jalteenya </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 Zeeroof hiruu </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 Gegeeddaramaa ibsa hin qabne </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 Akaakuu wal hin madaale </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 Ulaagaa fashalaa </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 Itti fayyadamaan addan citaa </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 Dogoggora qabatamaa malee </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 Tartiibaa duwwaanaa keessaa </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 Cita yookiin fankishinii hin ibsamne </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 Dogoggora buustu DLL keessattii </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 waamicha walii galtee DLL yaraa </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 Dogoggora keesaa </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 Maqaa faayiylii yookiin lakkoofsa yaraa </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 Faayilii hin argamne </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 Haalata faayilii yaraa </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 Faayilii dura baname </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 Dogoggora mi`a I/O </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 Faayilii duraan jiru </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 Dheerina kuusaa yaraa </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 Baxxee guutuu </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=\"err67\">67 Faayiloota hedduu </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 Kuusaaa lakkoofsa yaraa </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 Faayiloota hedduu </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 mi`a hin jire </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 heeyyamni didameera </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 Baxxeen qophaa`aa miti </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 Kolatiin hin raawwatamu </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 Ooftuu adda addaa faana jijjiiraan maqaa hin jiru </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 Dogoggora gahii xurree/faayilii </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 Xurree hin argamne </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\">Jijjiiramii Wantaa 91 hinqindoofne</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 Diraa sarxaa fashalaa </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=\"err4\">4 Eegaltii reedoo irraa </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469429\n"
+"help.text"
+msgid "<variable id=\"err250\">250 DDE Error</variable>"
+msgstr "<variable id=\"err57\">57 Dogoggora mi`a I/O </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469428\n"
+"help.text"
+msgid "<variable id=\"err280\">280 Awaiting response to DDE connection</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469427\n"
+"help.text"
+msgid "<variable id=\"err281\">281 No DDE channels available</variable>"
+msgstr "<variable id=\"err68\">68 mi`a hin jire </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=\"err425\">425 Gargaaramuu fashala wantaa </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=\"err425\">425 Gargaaramuu fashala wantaa </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469424\n"
+"help.text"
+msgid "<variable id=\"err284\">284 DDE channel locked</variable>"
+msgstr "<variable id=\"err28\">28 Tartiibaa duwwaanaa keessaa </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=\"err451\">451 Wanti walitti-qabiisa miti </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=\"err28\">28 Tartiibaa duwwaanaa keessaa </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=\"err8\">8 Arree duraan qophaa`e </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469420\n"
+"help.text"
+msgid "<variable id=\"err288\">288 External application busy</variable>"
+msgstr "<variable id=\"err51\">51 Dogoggora keesaa </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=\"err3\">3 Deebii Gosuubii malee </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=\"err10\">10 Hiika jalteenya </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=\"err93\">93 Diraa sarxaa fashalaa </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=\"err18\">18 Itti fayyadamaan addan citaa </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=\"err423\">423 Amala yookiin tooftaa hin argamne </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=\"err460\">460 Dhangii gabatee fashalaat </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=\"err55\">55 Faayilii dura baname </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=\"err76\">76 Xurree hin argamne </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=\"err71\">71 Baxxeen qophaa`aa miti </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=\"err424\">424 Wanta barbaadame </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 Mojuulii fe`uu hin dandeesu </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 Fashala kasaa wantaa </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=\"err68\">68 mi`a hin jire </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 Gatii amala yaraa </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 Amala dubisuu qofaa </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 Amala barreessuu qofaaa </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 Barreefama wanta fashalaa </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 Amala yookiin tooftaa hin argamne </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 Wanta barbaadame </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 Gargaaramuu fashala wantaa </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=\"err440\">440 Dogoggora OLE offiin hojjachiisaa </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=\"err423\">423 Amala yookiin tooftaa hin argamne </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 Dogoggora OLE offiin hojjachiisaa </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 Wanti gocha hin deggaru </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=\"err448\">448 morkallaan moggaafamaa hin jiru </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=\"err445\">445 Wanti gocha hin deggaru </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 morkallaan moggaafamaa hin jiru </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 Morkallaan dirqalee miti </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 Dogoggora lakkofsa morkallootaa </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 Wanti walitti-qabiisa miti </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 Sadarkaa fashalaa </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 Fankishiniin DLL ifteessamaan hin argamu </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 Dhangii gabatee fashalaat </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455951\n"
+"help.text"
+msgid "<variable id=\"err951\">951 Unexpected symbol:</variable>"
+msgstr "<variable id=\"err51\">51 Dogoggora keesaa </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455952\n"
+"help.text"
+msgid "<variable id=\"err952\">952 Expected:</variable>"
+msgstr "<variable id=\"err424\">424 Wanta barbaadame </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455953\n"
+"help.text"
+msgid "<variable id=\"err953\">953 Symbol expected</variable>"
+msgstr "<variable id=\"err53\">53 Faayilii hin argamne </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455954\n"
+"help.text"
+msgid "<variable id=\"err954\">954 Variable expected</variable>"
+msgstr "<variable id=\"err12\">12 Gegeeddaramaa ibsa hin qabne </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455955\n"
+"help.text"
+msgid "<variable id=\"err955\">955 Label expected</variable>"
+msgstr "<variable id=\"err55\">55 Faayilii dura baname </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=\"err53\">53 Faayilii hin argamne </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455957\n"
+"help.text"
+msgid "<variable id=\"err957\">957 Variable already defined</variable>"
+msgstr "<variable id=\"err55\">55 Faayilii dura baname </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=\"err35\">35 Cita yookiin fankishinii hin ibsamne </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455959\n"
+"help.text"
+msgid "<variable id=\"err959\">959 Label already defined</variable>"
+msgstr "<variable id=\"err55\">55 Faayilii dura baname </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455960\n"
+"help.text"
+msgid "<variable id=\"err960\">960 Variable not found</variable>"
+msgstr "<variable id=\"err53\">53 Faayilii hin argamne </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=\"err76\">76 Xurree hin argamne </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455962\n"
+"help.text"
+msgid "<variable id=\"err962\">962 Procedure not found</variable>"
+msgstr "<variable id=\"err76\">76 Xurree hin argamne </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455963\n"
+"help.text"
+msgid "<variable id=\"err963\">963 Label undefined</variable>"
+msgstr "<variable id=\"err12\">12 Gegeeddaramaa ibsa hin qabne </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455964\n"
+"help.text"
+msgid "<variable id=\"err964\">964 Unknown data type</variable>"
+msgstr "<variable id=\"err6\">6 Guutinsa darbaa </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455965\n"
+"help.text"
+msgid "<variable id=\"err965\">965 Exit expected</variable>"
+msgstr "<variable id=\"err53\">53 Faayilii hin argamne </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=\"err62\">62 Faaayilii naqaa isa dhuma </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=\"err76\">76 Xurree hin argamne </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=\"err8\">8 Arree duraan qophaa`e </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=\"err76\">76 Xurree hin argamne </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=\"err93\">93 Diraa sarxaa fashalaa </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=\"err8\">8 Arree duraan qophaa`e </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=\"err20\">20 Dogoggora qabatamaa malee </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=\"err5\">5 Ejjatoo fashalaan waamu </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=\"err94\">94 Gargaaramuu dhabeesa fashalaa </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=\"err53\">53 Faayilii hin argamne </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455976\n"
+"help.text"
+msgid "<variable id=\"err976\">976 Unknown option:</variable>"
+msgstr "<variable id=\"err76\">76 Xurree hin argamne </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455977\n"
+"help.text"
+msgid "<variable id=\"err977\">977 Constant redefined</variable>"
+msgstr "<variable id=\"err67\">67 Faayiloota hedduu </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455978\n"
+"help.text"
+msgid "<variable id=\"err978\">978 Program too large</variable>"
+msgstr "<variable id=\"err76\">76 Xurree hin argamne </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=\"err71\">71 Baxxeen qophaa`aa miti </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=\"err91\">Jijjiiramii Wantaa 91 hinqindoofne</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=\"err438\">438 Wanti tooftaa hin deggaru </variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455982\n"
+"help.text"
+msgid "<variable id=\"err1002\">1002 Required argument lacking</variable>"
+msgstr "<variable id=\"err10\">10 Hiika jalteenya </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=\"err450\">450 Dogoggora lakkofsa morkallootaa </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=\"err48\">48 Dogoggora buustu DLL keessattii </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=\"err51\">51 Dogoggora keesaa </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=\"err12\">12 Gegeeddaramaa ibsa hin qabne </variable>"
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Programming with $[officename] Basic"
+msgstr "Bu`uura $[officename] wajjin saganteessu"
+
+#: 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=\"Programming with $[officename] Basic \">Bu`uura $[officename] wajjin saganteessu </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 "Kun waliigalatti iddoo odeefannoo waa`ee dalaga maakroosi fi bu`ura$[officename] hojjetamu barbannu dha."
+
+#: 01010210.xhp
+msgctxt ""
+"01010210.xhp\n"
+"tit\n"
+"help.text"
+msgid "Basics"
+msgstr "Bu`uurota"
+
+#: 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>bu`uureessoota</bookmark_value><bookmark_value>sagantaa xiqqaa</bookmark_value><bookmark_value>jijjiiramoota;hundataa and qe`ee</bookmark_value><bookmark_value>muraa;sagantaa xiqqaa and fankishinoota</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=\"Basics\">Bu`uurota</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 "Kutaan kun bu`uura $[officename] wajjin akka hojennu bu`uureessota nuuf kenna."
+
+#: 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 "Bu`uurri lakkadda $[officename] sagantaa xiqqaa fi fankishinii irratti hundaa`a isaan kunis kutaalee <emph>cita...dhuma cita</emph> fi <emph>fankishinii...dhuma fankishinii</emph> gidduutti ifteessamu. Tokkoon tokkoo citaa yookiin fankishinii citootaa fi fankishinoota biroo ni waamu.yoo ofeegannoo barreessuu lakkada dhortuu citaa yookiin fankishinii goote, sagantaalee biroo keessatti dabalataan akka tasaa gargaaramuu ni danda`ama.Dabalataa <link href=\"text/sbasic/shared/01020300.xhp\" name=\"Procedures and Functions\">Adeemsa fi Fankishinoota</link> ilaali."
+
+#: 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 "Cita jechuun maali?"
+
+#: 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>Citni</emph> unka gabaabaa <emph>sagantaa xiqqaa</emph> ta`ee, hojii xiqqoo sagantaa keessatti kan qabachuuf gargaaru dha. Subs are used to split a task into individual procedures. Sagantaa adeemsaa fi cita-adeemsaatti addaabuun dubbifammummaa dabaluu fi dogoggora xixiqqoo ni hir`isa. Citni morkalloota tokko tokko akka ulaagaa ni fudhata garuu gatii tokkolee gara cita yookiin fankishinii waamameetti hin deebissu, fakkeenyaaf:"
+
+#: 01010210.xhp
+msgctxt ""
+"01010210.xhp\n"
+"par_id3150868\n"
+"15\n"
+"help.text"
+msgid "DoSomethingWithTheValues(MyFirstValue,MySecondValue)"
+msgstr "DoSomethingWithTheValues(MyFirstValue,MySecondValue)"
+
+#: 01010210.xhp
+msgctxt ""
+"01010210.xhp\n"
+"hd_id3156282\n"
+"5\n"
+"help.text"
+msgid "What is a Function?"
+msgstr "Fankishiniin maali?"
+
+#: 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>Fankishiniin</emph> cita barbaachisaa ta`ee, kan gatii kennu dha. Fankishinii ibsa jijjiiramaa gama harka mirgaan gargaaramu ni danda`ama, yookiin bakka biroo iddoo baratamoo gatii ati itti gargaaramtu, fakkeenyaaf:"
+
+#: 01010210.xhp
+msgctxt ""
+"01010210.xhp\n"
+"par_id3146985\n"
+"7\n"
+"help.text"
+msgid "MySecondValue = myFunction(MyFirstValue)"
+msgstr "MySecondValue = myFunction(MyFirstValue)"
+
+#: 01010210.xhp
+msgctxt ""
+"01010210.xhp\n"
+"hd_id3153364\n"
+"8\n"
+"help.text"
+msgid "Global and local variables"
+msgstr "Hundataa fi qe`ee jijjiiramtootaa"
+
+#: 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 "Jijjiiramtootni hundataa muraa keessatti citootaa fi fankishinootaa hundaaf gataa`aa dha. Isaan kunis calqaba muraa irratti osoo citni yookiin fankishiniin hin calqabiin ibsamu."
+
+#: 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 "Ibsi Jijjiiramtootaa cita yookiin fankishinii keessatti gataa`aa kan ta`u cita yookiin fankishinii keessatti duwwaa dha. Jijjiiramtootni kunis jijjiiramtoota hundataa Sadarkaa citoota yookiin fankishinii maqaa walfakkaataa irraa dhufuun maqaa fi jijjiiramtoota qe`ee walfakkaatuun ni faccisu."
+
+#: 01010210.xhp
+msgctxt ""
+"01010210.xhp\n"
+"hd_id3150010\n"
+"11\n"
+"help.text"
+msgid "Structuring"
+msgstr "Caasessuu"
+
+#: 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 "Iddoo sagantaake akka adeemsaa fi fankishinootatti (citoota fi fankishinoota)tti addaan baastee, dabalataan piroojektii biraa keessatti gargaaramuuf adeeemsa fi fankishinoota kana akka faayilootaatti olkaa`uun ni danda`ama.Bu`uuri $[officename] <link href=\"text/sbasic/shared/01020500.xhp\" name=\"Modules and Libraries\">Muraa and Kuusota sagantaa</link>. citootni fi fankishinootni yeroo hundaa muraa keessatti qabatamu.Muraan hundataa yookiin gosa galmeeti.Muraa baay`een kuusota sagantaatti ni makama."
+
+#: 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 "Citoota, fankishinoota, muraa fi kuusota sagantaa faayilii tokko irraa gara birootti <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Macro\">Maakroo</link> qaaqa gargaaramuun jalteessuun yookiin siqsuun ni danda`ama."
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Syntax"
+msgstr "Caasimaa:"
+
+#: 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=\"Syntax\">Caasima</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 "Kutaan kun maalimoota bu`uura caasima bu`uura $[officename] ibsa. Ibsa gadifageenyaaf qajeelcha bu`uura $[officename] addaan ba`ee jiru dubbisuu ni dandeessu."
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"tit\n"
+"help.text"
+msgid "Using Variables"
+msgstr "Jijjiiramoota gargaaramuu"
+
+#: 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>maqoota jijjiiramootaa</bookmark_value><bookmark_value>jijjiiramoota; gargaaramuu</bookmark_value><bookmark_value>akaakuu jijjiiramootaa</bookmark_value><bookmark_value>ibsa jijjiramootaa</bookmark_value><bookmark_value>gatii;kan jijjiramoota</bookmark_value><bookmark_value>seranoota</bookmark_value><bookmark_value>waraantoota;ibsuu</bookmark_value><bookmark_value>ibsa;seranoota</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=\"Using Variables\">Jijjiiramtoota gargaaramuu</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 "Kanneen arman gadii tajaajila bu`uri jijjiiramootaa bu`uura $[officename] keessatti qaban ibsu."
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3153361\n"
+"4\n"
+"help.text"
+msgid "Naming Conventions for Variable Identifiers"
+msgstr "Seera maqaa kannuu addiroota jijjiiramootaaf"
+
+#: 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 "Maqaan jijjiramaa olaantee fakkaattoota 225 irraa kan ijaarame dha. Maqaa fakkaattoo jijjiiramaa inni duraa <emph>dirqama</emph> qubee A-Z yookiin a-z ta`uu qaba. Akasumas lakkoofsotni maqaa jijjiiramaa keessatti ni garagaaru,garuu mallattoota tuqoolii fi fakkaattotni addaa hin hayyamamani, fakkaattoota Mmurgadii(\"_\") quxaaloota irraa kan hafe. Bu`uura$[officename] keessatti addirootni jijjiiramaa dubbee miiraa miti. maqoonni jijjiiramaa iddoo ofkeessaatti ni qabatu garuu hojechuuf golbee arfakkuu keessatti hammatamu qabu."
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3156422\n"
+"6\n"
+"help.text"
+msgid "Examples for variable identifiers:"
+msgstr "Fakkeenyota addiroota jijjiiramootaaf:"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3156441\n"
+"126\n"
+"help.text"
+msgid "Correct"
+msgstr "sirreessi"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3149664\n"
+"127\n"
+"help.text"
+msgid "Correct"
+msgstr "sirreessi"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3146119\n"
+"128\n"
+"help.text"
+msgid "Correct"
+msgstr "sirreessi"
+
+#: 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 "Gataa`aa kan hin taane, jijjiiramaan iddoo dirqama golbee arfakkuu keessatti hammatamuu qaba"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3154510\n"
+"15\n"
+"help.text"
+msgid "Correct"
+msgstr "sirreessi"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3150330\n"
+"129\n"
+"help.text"
+msgid "Not valid, special characters are not allowed"
+msgstr "Gataa`aa kan hin taane, fakkaattotni addaa hin hayyamamani"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3154254\n"
+"130\n"
+"help.text"
+msgid "Not valid, variable may not begin with a number"
+msgstr "Gataa`aa kan hin taane, jijjiiramaan lakkofsaan hin eegalu"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3149256\n"
+"131\n"
+"help.text"
+msgid "Not valid, punctuation marks are not allowed"
+msgstr "Gataa`aa kan hin taane, mallattoon tuqoolii hin hayyamamu"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3146317\n"
+"17\n"
+"help.text"
+msgid "Declaring Variables"
+msgstr "Ibsa jijjiiramootaa"
+
+#: 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 "Bu`uura $[officename] keessatti jijjiiramaa duwwaa ibsuun nurraa hin eegamu. Ibsi jijjiirama hima <emph>Dim</emph> waliin hojjetama. Maqaalee qoodduudhaan addaan baasuun jijjiiramaa tokkoo ol altakkaatti ibsuu ni danda`ama.akaakuu jijjiiramaa hiikuuf, maqaa, yookiin jefuraa sirrii booda mallattoo ibsa akaakuu gargaarami."
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3154118\n"
+"140\n"
+"help.text"
+msgid "Examples for variable declarations:"
+msgstr "Fakkeenyota ibsa jijjiiramaatiif:"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3150982\n"
+"132\n"
+"help.text"
+msgid "Declares the variable \"a\" as a String"
+msgstr "Jijjiiramaa \"a\" akka caasimaatti ibsi"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3150343\n"
+"133\n"
+"help.text"
+msgid "Declares the variable \"a\" as a String"
+msgstr "Jijjiiramaa \"a\" akka caasimaatti ibsi"
+
+#: 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 "Jijjiirama tokko akka caasimaati fi tokkommoo akka intergaati ibsi"
+
+#: 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 akka jijjiiramaa Buuliyaaniitti kan TRUE yookiin FALSE ta`uu danda`uuti ibsi"
+
+#: 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 "Kun yommuu jijjiiramaawwan arfii ibsa akaakuu gargaaramtu baay`ee barbaachisa, jefuraa malee ibsa keessatti gargaaruyyuu. Himmoonni armaan gadii fashala dha:"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3154527\n"
+"134\n"
+"help.text"
+msgid "Declares \"a\" as a String"
+msgstr "Declares \"a\" as a String"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3153064\n"
+"135\n"
+"help.text"
+msgid "Type-declaration missing: \"a$=\""
+msgstr "Type-declaration missing: \"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 "Jijjiiramaa takkaa akka akaakuu tokkootti ergaa ibsitee booda, jijjiiramaa kana dabalataan maqaa walfakkaataa jalatti akka akaakuu adda addaatti hiikuun hin danda`amu."
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3149331\n"
+"27\n"
+"help.text"
+msgid "Forcing Variable Declarations"
+msgstr "Ibsa jijjiiramaa dhiibuu"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3149443\n"
+"28\n"
+"help.text"
+msgid "To force declaration of variables, use the following command:"
+msgstr "Ibsa jijjiiramaawwan dhiibuuf, ajajaja armaan gadii gargaarami:"
+
+#: 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 "Himni <emph>Option Explicit</emph> SUB jalqabaa dura, mojuulii keessatti sarara jalqabaa ta`uu qaba. Waliigalaati, waraantoolee qofaatu ibsamuu qaba. Jijjiiramaawwan biraan hundi akkaataa akaakuu ibsa arfiitti ibsamu, yookiin yoo akka akaakuu <emph>qeenxee</emph> durtiitti ibsamu.."
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3154614\n"
+"34\n"
+"help.text"
+msgid "Variable Types"
+msgstr "Akaakuuwwan jijjiirama"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3155383\n"
+"35\n"
+"help.text"
+msgid "$[officename] Basic supports four variable classes:"
+msgstr "Bu`uuri $[officename] kutaalee jijjiiramaawwanii afur deggara:"
+
+#: 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 "Jijjiiramaawwan<emph>lakkoofsa</emph> gatiiwwan lakkoofsa ofkeessatti ni qabatu.Jijjiiramaawwan tokko tokko lakkoofsota guddaa fi xixiqqoo kuusuuf gargaaru, kanneen biroon immoo tuqaa bololi`u yookiin lakkoofsota firaakshiniif gargaaru."
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3159226\n"
+"37\n"
+"help.text"
+msgid "<emph>String</emph> variables contain character strings."
+msgstr "Jijjiiramaawwan <emph>diraa</emph> diraawwan arfii ofkeessaa qabu."
+
+#: 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 "Jijjiiramaawwan <emph>Buuliyaanii</emph> TRUE yookiin FALSE ofkeessatti qabatu."
+
+#: 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 "Jijjiiramaawwan<emph>wantaa</emph> akaakuuwwan wantoota adda addaa, kan akka gabatootaa fi galmeewwanii galmee keessatti ni kuusa."
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3153805\n"
+"40\n"
+"help.text"
+msgid "Integer Variables"
+msgstr "Jijjiiramaawwan Intergaa"
+
+#: 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 "Jijjiiramaawwan intergaa dheeraa -32768 hanga 32767tti ni hangaa`u. Osoo gatii tuqaa bololi`u jijjiiramaa intergaa dheerraa ramadne, bakkootni kurnyee gara intergaa itti aanuutti ni siiqu. Jijjiiramaawwan intergaa dheeraan adeemsa keessa ariitiin ni hediisamu akasumas lakkaawwiidhaaf ni mijatu. Jijjiiramaa intergaa dheeraan baayitiisi kuufannoo lama ni barbaadu. \"&\"n arfii ibsa akaakuuti."
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3147546\n"
+"45\n"
+"help.text"
+msgid "Long Integer Variables"
+msgstr "Jijjiiramaawwan Intergaa dheeraa"
+
+#: 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 "Jijjiiramaawwan intergaa dheeraa -2147483648 hanga 2147483647tti ni hangaa`u.Osoo gatii tuqaa bololi`u jijjiiramaa intergaa dheerraa ramadne, bakkootni kurnyee gara intergaa itti aanuutti ni siiqu. Jijjiiramaawwan intergaa dheeraan adeemsa keessa ariitiin ni hediisamu akasumas lakkaawwiidhaaf ni mijatu. Jijjiiramaa intergaa dheeraan baayitiisi kuufannoo afur ni barbaadu. \"&\"n arfii ibsaa akaakuuti."
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id7596972\n"
+"help.text"
+msgid "Decimal Variables"
+msgstr "Jijjiiramaa kurnyee"
+
+#: 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 "Jijjiiramaawwan kurnyee lakkoofsata poozatiivii yookiin Negeetivii yookiin zeeroo fudhachuu ni danda`u.gigiitonni sirrinaa hanga 29ti dha."
+
+#: 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 "Mallattoota idaatii (+) yookiin hir`isuu (-) lakkoofsota kurnyeef (bakkoota wajjin yookiin bakkota malee) akka dureetti gargaaramuun ni danda`ama."
+
+#: 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 "Lakkoofsi kurnyee osoo gara jijjiiramaa intergaatti ramadame, bu`uuri %PRODUCTNAME fakkii ol yookiin gadi ni buta."
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3147500\n"
+"50\n"
+"help.text"
+msgid "Single Variables"
+msgstr "Jijjiiramaawwan baaxxee"
+
+#: 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 "Jijjiiramaawwan baaxxee gatiiwwan poozatiivii yookiin negeetivii hangii 3.402823 x 10E38 gara 1.401298 x 10E-45ti ni fudhata.yeroo Lakkoofsi kurnyee hintaane dabala lakkofsi kurnyee sirreenyaa immoo yeroo hir`atan, jijjiiramaawwan baaxxee tutaa bololi`uu dha. Jijjiiramaawwan baaxxee gidduu galeessa sirreenyaa hediisa herregaaf mijatoo dha.Jijjiiramaawwan intergaa caalaa hediisaan sa`atii barbaada, garuu jijjiiramaa dheeraa wajjin hediisa irra saffisaa dha. Jijjiiramaa baaxxeen baayitiisi kuufannoo afur ni barbaadu. Arfii ibsa akaakuu \"!\" dha."
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3155753\n"
+"54\n"
+"help.text"
+msgid "Double Variables"
+msgstr "Double Variables"
+
+#: 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 "Jijjiiramaawwan dachaa gatiiwwan poozatiivii yookiin negeetivii hangii 1.79769313486232 x 10E308 gara 4.94065645841247 x 10E-324ti ni fudhata.yeroo Lakkoofsi kurnyee hintaane dabala lakkofsi kurnyee sirreenyaa immoo yeroo hir`atan, jijjiiramaawwan dachaa tutaa bololi`uu dha. Jijjiiramaawwan dachaa gidduu galeessa sirreenyaa hediisa herregaaf mijatoo dha.Jijjiiramaawwan intergaa caalaa hediisaan sa`atii barbaada, garuu jijjiiramaa dheeraa wajjin hediisa irra saffisaa dha. Jijjiiramaa dachaa baayitiisi kuufannoo saddet ni barbaadu. Arfii ibsa akaakuu \"#\" dha."
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3155747\n"
+"95\n"
+"help.text"
+msgid "Currency Variables"
+msgstr "Jijjiiramaawwan sharafa"
+
+#: 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 "Jijjiiiramaawwan sharafaa akka lakkoofsota biiti 64ti (8 Bytes) ni kuufamu akasumas akka lakkoofsa kurnyee dhaabbataa kurnyee hin taane 15 wajjintii fi bakkoota kurnyee 4tti agarsiisamu. Gatiiwwan -922337203685477.5808 hanga +922337203685477.5807t ni hangaa`u.Jijjiiramaawwan sharafaa gattiiwwan sharafaa sirreefama guddaa wajjin hediisuuf gargaara. Arfii ibsa akaakuu \"@\" dha."
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3148742\n"
+"58\n"
+"help.text"
+msgid "String Variables"
+msgstr "Jijjiiramaawwan diraa"
+
+#: 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 "Jijjiiramaawwan diraa diraawwan arfii hanga arfiilee 65,535ti ni qabata. Jijjiiramaawwan diraa hojii jecha sagantaalee fi kuusaa yeroo kan arfii maxxansamuu hin dandeenye hanga dheerina alaantoo baayitiisi 64tiif mijataadha. Yaadduuun lakkoofsa arfiilee jijjiiramaa irratti hundaa`uudhaan jijjiiramaawwan diraa olkaa`uuf ni barbaachisa. Arfii ibsa akaakuu \"$\" dha."
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3150534\n"
+"62\n"
+"help.text"
+msgid "Boolean Variables"
+msgstr "Jijjiiramaawwan buuliyaanii"
+
+#: 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 "Jijjiiramaawwan buuliyaanii gatiiwwan: TRUE yookiin FALSE keessaa tokko kuusa. lakkofsi 0n FALSE madaala, gatiin kan biraan hundi TRUE madaalu."
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3149722\n"
+"65\n"
+"help.text"
+msgid "Date Variables"
+msgstr "Jijjiiramaawwan guyyaa"
+
+#: 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 "Jijjiiramaawwan guyyaa gatiiwwan guyyootaa fi sa`atii dhangii keessatti kuufaman qabata.Gatiiwwan jijjiiramaawwan guyyaatti <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> yookiin <link href=\"text/sbasic/shared/03030206.xhp\" name=\"Timevalue\"><emph>Timevalue</emph></link> wajjin ramadaman dhangii keessatti ofumaan ni jijjiramu. Jijjiiramaawwan-guyyaa lakkoofsota jumootti faankishinii <link href=\"text/sbasic/shared/03030103.xhp\" name=\"Day\"><emph>Guyyaa</emph></link>, <link href=\"text/sbasic/shared/03030104.xhp\" name=\"Month\"><emph>Ji`aa</emph></link>, <link href=\"text/sbasic/shared/03030106.xhp\" name=\"Year\"><emph>Waggaa</emph></link> yookiin <link href=\"text/sbasic/shared/03030201.xhp\" name=\"Hour\"><emph>Sa`atii</emph></link>, <link href=\"text/sbasic/shared/03030202.xhp\" name=\"Minute\"><emph>Daqiiqaa</emph></link>, <link href=\"text/sbasic/shared/03030204.xhp\" name=\"Second\"><emph>sekoondii</emph></link> gargaaramuudhaan ni jijjiiramu. Dhangiin kessaa gatiiwwan addaddummaa guyyaa/sa`atii lamaan gidduu jiru addaan baasuun walmadaalsisuuf dandeesisa.Jijjiiramaawwan kunis jefuraa <emph>Guyyaa</emph> tiin ibsamu.."
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3148732\n"
+"68\n"
+"help.text"
+msgid "Initial Variable Values"
+msgstr "Gatiiwwan jijjiiramaa qubduraa"
+
+#: 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 "Jijjiiramaan akkuma ibsameen, ofumaan gatii \"Null\" ni ta`a.Jijjiiraawwan armaan gadii ilaali:"
+
+#: 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 "Jijjiiramaawwan <emph>lakkoofsaa</emph> akkuma ibsamaniin gara gatii \"0\"tti ni ramadamu."
+
+#: 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>Jijjiiramaawwan guyyaa</emph> gatii 0 ofkeessaatti ramada; akasumas gatii \"0\" fankishinii <link href=\"text/sbasic/shared/03030103.xhp\" name=\"Day\"><emph>Guyyaa</emph></link>, <link href=\"text/sbasic/shared/03030104.xhp\" name=\"Month\"><emph>Ji`a</emph></link>, <link href=\"text/sbasic/shared/03030106.xhp\" name=\"Year\"><emph>Waggaa</emph></link> yookiin <link href=\"text/sbasic/shared/03030201.xhp\" name=\"Hour\"><emph>Sa`atii</emph></link>, <link href=\"text/sbasic/shared/03030202.xhp\" name=\"Minute\"><emph>Daqiiqaa</emph></link>, <link href=\"text/sbasic/shared/03030204.xhp\" name=\"Second\"><emph>sekoondii</emph></link> wajjin ni jijjiiru."
+
+#: 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>Jijjiiramaawwan diraa</emph> yommuu ibsaman diraa-qullaaa (\"\") ni ramadu."
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3153936\n"
+"83\n"
+"help.text"
+msgid "Arrays"
+msgstr "Waraantoolee"
+
+#: 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 "Bu`uuri $[officename] waraantoolee fuul-tokko yookiin fuul-baay`ee, akaakuu jijjiiramaa ifteessamanii ni beeka. Waraantooleen gulaalii tarreeewwannii fi gabateewwan sagantaalee keessaatiif mijaa`oodha.Tokko tokkoon maalimoota waraanta kasaa lakkoofsaa keessaan ni qajeelchamu."
+
+#: 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 "Waraantooleen <emph>dirqamat</emph> hima <emph>Golgolii</emph> wajjin ibsamu.Hangii kasaa warantoo ibsuuf tooftaaleen baay`een ni jiru."
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3154567\n"
+"136\n"
+"help.text"
+msgid "21 elements numbered from 0 to 20"
+msgstr "0 hanga 20 maalimoota kennaman 21"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3154397\n"
+"137\n"
+"help.text"
+msgid "30 elements (a matrix of 6 x 5 elements)"
+msgstr "maalimoota 30 (a matrix of 6 x 5 elements)"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3149690\n"
+"138\n"
+"help.text"
+msgid "21 elements numbered from 5 to 25"
+msgstr "5 hanga 25ti maalimoota kennaman 21"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3153113\n"
+"89\n"
+"help.text"
+msgid "21 elements (including 0), numbered from -15 to 5"
+msgstr "-15 hanga 5ti maalimoota kennaman 21 (including 0)"
+
+#: 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 "hangiin kasaa lakkoofsota poozatiivii akasumas negeetiivii qabaachuu ni danda`a."
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3154507\n"
+"91\n"
+"help.text"
+msgid "Constants"
+msgstr "dhaabbatoota"
+
+#: 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 "dhaabbattootni gatii dhaabbataa qabu. Isaan kunis sagantaa keessatti takkaa iddoo ibsamee booda dabalataan ibsuun hin danda`amu:"
+
+#: 01020200.xhp
+msgctxt ""
+"01020200.xhp\n"
+"tit\n"
+"help.text"
+msgid "Using Objects"
+msgstr "Wantoota gargaaramuu"
+
+#: 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\">Galaalee wantaa gargaaramuu</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 "Galaaleen wantaa mojuuloota fi qaaqalee $[officename] keessatti uumaman hundaaf ilaalcha gubbaa kenna."
+
+#: 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 "Galaalee wantaa agarsiisuuf sajoo <emph>Galaalee Wantaa</emph> <image id=\"img_id3147341\" src=\"cmd/sc_objectcatalog.png\" width=\"0.564cm\" height=\"0.564cm\"><alt id=\"alt_id3147341\">Icon</alt></image> kamshaa Maakroo keessa jiru cuqaasi."
+
+#: 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 "Qaaqan tarree wantootaa hundaa walqabannoodhaan kaa`aman argisiisa.Galfata tarree irratti kuruuchuun lama jaldhufa wantootaa ni bana."
+
+#: 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 "Adeemsa fi fankishinootati gargaaramuu"
+
+#: 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>adeemsa</bookmark_value><bookmark_value>fankishinoota;gargaaramuu</bookmark_value><bookmark_value>jijjiiramaawwan;gara adeemsaa fi fankishinootati darbuu</bookmark_value><bookmark_value>ulaagaalee;adeemsaaf fi fankishinootaaf</bookmark_value><bookmark_value>ulaagaalee;barreefamaan yookiin gatiidhaan</bookmark_value><bookmark_value>jijjiiramaaawwan;qabatama</bookmark_value><bookmark_value>qabatama jijjiiramaawwanii</bookmark_value><bookmark_value>jijjiiramaawwan GLOBAL</bookmark_value><bookmark_value>jijjiiramaawwan PUBLIC</bookmark_value><bookmark_value>jijjiiramaawwan PRIVATE</bookmark_value><bookmark_value>fankishinii;gatii akaakuu deebii</bookmark_value><bookmark_value>deebii gatii akaakuu fankishinoota</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\">Gargaaramuu adeemsaa fi fankishinoota</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 "Kanneen armaan gadii tajaajila guddaa adeemsii fi fankishinootaa bu`uura $[officename] keessattii ibsu."
+
+#: 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 "Yeroo mojuulii haaraa uumtu, bu`uuri $[officename] ofumaan SUB \"Main\" jedhamu saagi. Maqaan durtii tartiiba yookiin tuqaa eegalii projektii bu`uura $[officename] wajjin waan tokkolee hojjetu hin qabu. SUB kanas ofeegannoon maqaa isaa jijjiiruun ni danda`ama."
+
+#: 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 "Adeemsi (SUBS) fi fankishinootni (FUNCTIONS) ilaalcha guddaa qaamotaa sagantaa isaanii loogikii xixiqqoon addanbasee akka eegnu nugargaru."
+
+#: 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 "Tajaajili adeemsaa fi fankishinii inni tokko, lakkadda sagantaa kutaalee hojiif uumame qabu tokko, projektii biroo keessatti gargaaramuun ni danda`ama."
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"hd_id3153770\n"
+"26\n"
+"help.text"
+msgid "Passing Variables to Procedures (SUB) and Functions (FUNCTION)"
+msgstr "Jijjiiramaawwan gara adeemsaa (SUB) fi fankishinii (FUNCTION)tti dabarsuu"
+
+#: 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 "Jijjiiramaawwan gara adeemsaa fi fankishinootaatti dadarbbuu ni danda`u. SUBiin yookiin FUNCTIONiin dirqama ulaagaalee barbaadameetti ibsamuu qabu."
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3151114\n"
+"29\n"
+"help.text"
+msgid "Program code"
+msgstr "Lakkaddaa sagantaa"
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3152577\n"
+"31\n"
+"help.text"
+msgid "The SUB is called using the following syntax:"
+msgstr "SUBiin caasimaa armaaan gadii gargaaramuun waamama:"
+
+#: 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 "Ulaagaaleen SUBtti darban dirqama hiika SUB ifteessame taasisuu qabu."
+
+#: 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 "Haala walfakaatuun FUNCTIONS irrattis ni boba`a. Dabalataanni,fankishiniin yeroo hundaa bu`aa fankishinii kenna.Bu`aan fankishinii kan hiikamu gatii deebii maqaa fankishinii ramadammuuni:"
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3156284\n"
+"36\n"
+"help.text"
+msgid "Program code"
+msgstr "Lakkaddaa sagantaa"
+
+#: 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 "SUBiin caasimaa armaaan gadii gargaaramuun waamama:"
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3146914\n"
+"40\n"
+"help.text"
+msgid "Variable=FunctionName(Parameter1, Parameter2,...)"
+msgstr "Variable=FunctionName(Parameter1, Parameter2,...)"
+
+#: 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 "Adeemsa yookiin fankishinii waamuuf maqaa beekamoo: <br/><item type=\"literal\">Library.Module.Macro()</item><br/> gargaaramuun ni danda`ama Fakeenyaaf, maakroo BarruuUfmaa Manbarroo Gimmicksii keesaa waamuuf, ajaja armaan gadii:<br/><item type=\"literal\">Gimmicks.AutoText.Main()</item> gargaarami."
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"hd_id3156276\n"
+"45\n"
+"help.text"
+msgid "Passing Variables by Value or Reference"
+msgstr "jijjiiramaawwan gatiidhaan yookiin Barreefamaan dabarsuu"
+
+#: 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 "Ulaagaaleen ilaalchaan yookiin gatiidhaan gara SUBtti yookiin FUNCTIONtti darbuu ni danda`u. Ulaagaan ifteessamuu yoo baatan yeroo hundaa ilaalchaan darbu. Kana jechuun SUBiin yookiin FUNCTIONiin gatii ulaagaa argachuu fi dubbisuu fi jijjiiruu ni danda`a."
+
+#: 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 "SUB yookiin FUNCTION waamuudhaan yeroo gatiidhaan ulaaagaa dabarsuu barbaadu jifuraa \"ByVal\" fuuldura ulaagaa saagi, fakkeenyaaf:"
+
+#: 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 "Akkaataa kanaan, qabeentoon xabboo ulaagaa sababa gatii ulaagaa malee ulaagaa mataasaa hin arganneef FUNCTIONitiin hin jijjiiramu."
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"hd_id3150982\n"
+"57\n"
+"help.text"
+msgid "Scope of Variables"
+msgstr "Qabatama jijjiiramaawwanii"
+
+#: 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 "Jijjiiramaan SUB yookiin FUNCTION keessatti hiikama, gataa`aa ta`uudhaan hanga adeemsi bahutti tura.Kunis jijjiiramaa \"local\" jedhama. Sababa baay`eedhaan, adeemsa hundaa keessaatti , manbarroo hundaaf mojuulii kamiyyuu keessatti, yookiin SUB yookiin FUNCTIONiin erga bahee booda jijjiiramaan gataa`aa akka ta`uu ni barbaadama."
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"hd_id3154186\n"
+"59\n"
+"help.text"
+msgid "Declaring Variables Outside a SUB or FUNCTION"
+msgstr "Jijjiiiramaawwan SUBii yookiin FUNCTIONii ala ibsuu"
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3150208\n"
+"111\n"
+"help.text"
+msgid "Global VarName As TYPENAME"
+msgstr "GLOBAL VarName As TYPENAME"
+
+#: 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 "Jijjiiramaan dhuma hiramuu $[officename]tti gataa`aa dha."
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3153198\n"
+"60\n"
+"help.text"
+msgid "Public VarName As TYPENAME"
+msgstr "PUBLIC VarName As TYPENAME"
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3150088\n"
+"61\n"
+"help.text"
+msgid "The variable is valid in all modules."
+msgstr "jijjiiiramaan mojuulii hundaa keessatti gataa`aa dha."
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3158212\n"
+"62\n"
+"help.text"
+msgid "Private VarName As TYPENAME"
+msgstr "PUBLIC VarName As TYPENAME"
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3152994\n"
+"63\n"
+"help.text"
+msgid "The variable is only valid in this module."
+msgstr "Jijjiiramaan mojuulii kana keessatti qofa gataa`aa dha."
+
+#: 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 "Jijjiiramaan mojuulii kana keessatti qofa gataa`aa dha."
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"hd_id5097506\n"
+"help.text"
+msgid "Example for private variables"
+msgstr "Fakkeenya jijjiiramaawwan dhuunfaaf"
+
+#: 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 "Jijjiiramaawwan dhuunfaa CompatibilityMode(true)tiin kaa`uudhaan akka naannoo mojuulii dhuunfaa ta`an dhiibbaa gochuu."
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id9475997\n"
+"help.text"
+msgid "myText = \"Hello\""
+msgstr "myText = \"Hello\""
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id6933500\n"
+"help.text"
+msgid "Print \"In module1 : \", myText"
+msgstr "print \"in module1 : \", myText"
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id4104129\n"
+"help.text"
+msgid "' Now returns empty string"
+msgstr "' Now returns empty string"
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id7906125\n"
+"help.text"
+msgid "' (or rises error for Option Explicit)"
+msgstr "' (or rises error for Option Explicit)"
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id8055970\n"
+"help.text"
+msgid "Print \"Now in module2 : \", myText"
+msgstr "print \"Now in 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 "SUB yookiin FUNCTION erga basanii qabeetoo jijjiiramaa olkaa`uu"
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3156288\n"
+"67\n"
+"help.text"
+msgid "Static VarName As TYPENAME"
+msgstr "STATIC VarName As TYPENAME"
+
+#: 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 "Jijjiiramaan hanga FUNCTIONiin yookiin SUBiin yeroo itti aanu seenutti gatii isaa qabaqa. Ibsi kuni dirqama SUB yookiin FUNCTION keessa jiraachuu qaba."
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"hd_id3155809\n"
+"41\n"
+"help.text"
+msgid "Specifying the Return Value Type of a FUNCTION"
+msgstr "Specifying the Return Value Type of a FUNCTION"
+
+#: 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 "Akkaataa jijjiiramaawwaniin, maqaa fankishinii booda arfii ibsa akaakuu, yookiin akaakuu \"As\"tiin argisiifamee fi jefuraa walgittaa dhuma ulaagaa irratti tarreeffaman akaakuu fankishinii gatii deebisan ibsan qabata, fakeenyaaf:"
+
+#: 01020500.xhp
+msgctxt ""
+"01020500.xhp\n"
+"tit\n"
+"help.text"
+msgid "Libraries, Modules and Dialogs"
+msgstr "Manbarroo, Mojuulii fi Qaaqalee"
+
+#: 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=\"Libraries, Modules and Dialogs\">Manbarroo, Mojuulii fi Qaaqalee</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 "Kanneen armaan gadii tajaajila guddaa manbarroo, mojuulii fi qaaqalee bu`uura $[officename] keessattii ibsu."
+
+#: 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 "Bu`uuri $[officename] projektii caaseessuuf kamshaalee kennuu tajaajila. Deggarsa \"units\" adda addaa kan projektii bu`uuraa keessatti tokko tokkoo SUBS fi FUNCTIONS ramaduuf nu danddeesisan kenna."
+
+#: 01020500.xhp
+msgctxt ""
+"01020500.xhp\n"
+"hd_id3148575\n"
+"5\n"
+"help.text"
+msgid "Libraries"
+msgstr "Manbarroo"
+
+#: 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 "Manbarroon akka kamshaatti mojuulii qindddeessuf, yookiin galmeetti yookiin qajojiitti miltoo ta`uuf gargaara. Yeroo galmeen yookiin qajojiin olkaa`amu, mojuuliin manbarroo keessatti qabaman ofumaan oltaa`u."
+
+#: 01020500.xhp
+msgctxt ""
+"01020500.xhp\n"
+"par_id3151112\n"
+"7\n"
+"help.text"
+msgid "A library can contain up to 16,000 modules."
+msgstr "Manbarroon mojuulii hanga 16,000 qabaachuu ni danda`u."
+
+#: 01020500.xhp
+msgctxt ""
+"01020500.xhp\n"
+"hd_id3149262\n"
+"8\n"
+"help.text"
+msgid "Modules"
+msgstr "Mojuulii"
+
+#: 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 "Mojuuliin SUBS fi FUNCTIONS ibsa jijjiiramaa wajjin qabata."
+
+#: 01020500.xhp
+msgctxt ""
+"01020500.xhp\n"
+"hd_id3152577\n"
+"11\n"
+"help.text"
+msgid "Dialog Modules"
+msgstr "Mojuulii Qaaqa"
+
+#: 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 "Mojuuliin qaaqa hiika qaaqa, kan akk amaloota saaxinii qaaqa, amaloota tokko tokko maalimaa qaaqa fi mudatoota ramadaman ofkeessatti qabata.Mojuuliin qaaqa baaxxee qaaqa qofa ijaa qabaatuuf, takka takka \"dialogs\" jedhama."
+
+#: 01030000.xhp
+msgctxt ""
+"01030000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Integrated Development Environment (IDE)"
+msgstr "Integrated Development Environment (IDE)"
+
+#: 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 IDE;Integrated Development Environment</bookmark_value><bookmark_value>IDE;Integrated Development Environment</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=\"Integrated Development Environment (IDE)\">Integrated Development Environment (IDE)</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 "Kutaan kun Integrated Development Environment bu`uura $[officename] ibsa."
+
+#: 01030100.xhp
+msgctxt ""
+"01030100.xhp\n"
+"tit\n"
+"help.text"
+msgid "IDE Overview"
+msgstr "Ilaalcha gubbaa IDE"
+
+#: 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=\"IDE Overview\">Ilaalcha gubbaa IDE</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=\"Macro Toolbar\"><emph>Kamshaaleen Maakroo</emph></link> IDE keessatti sajoolee adda addaa sagantaalee gulaalii fi yaaliif ni kennu."
+
+#: 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=\"Editor window\"><emph>Gulaalaa foddaa</emph></link> keessatti, kamshaalee maakroo gad kallattiithaan, lakkaddaa sagantaa bu`uuraa gulaaluun ni danda`ama. tarjaan inni harka bitaa Sarqurxa lakkaddaa sagantaa keessa kaa`uuf gargaara."
+
+#: 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=\"Watch\"><emph>Ilaaliin foddaa</emph></link> (observer) Gulaalaa foddaa gad gama bitaan argama, akasumas qabeentoota jijjiiramaawwan yookiin waraantoolee yeroo deemsa ejjatoo baaxxee ni agarsiisa."
+
+#: 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>Call waliirra</emph> window to the right provides information about the call stack of SUBS and FUNCTIONS when a program runs."
+
+#: 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 IDE\">Bu`uura IDE</link>"
+
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"tit\n"
+"help.text"
+msgid "The Basic Editor"
+msgstr "Bu`uura gulaalaa"
+
+#: 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>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>"
+
+#: 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=\"The Basic Editor\">Gulaalaa bu`uuraa</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 "Gulaalaan bu`uuraa yeroo galmee barruu keessaa hojjetan fankishinii gulaali durtii siniif kenna. Fankishinii baafata <emph>Gulaali</emph> (Cut, Delete, Paste), dandeetii barruu jijjiiruu furtuu wajjin filuu, akasumas fankishinii iddoo qaree (for example, moving from word to word with <switchinline select=\"sys\"><caseinline select=\"MAC\">Dirqala </caseinline><defaultinline>Ctrl</defaultinline></switchinline> and the arrow keys) ni deggara."
+
+#: 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 "Sararootni dheeraan bakkaa fi fakkaattoo jalamuraa akka sarara fakkaatoota dhumaa lamaatti iddoo adda addaatti saagamuudhaan addaba`u. Kunis sarara tokko sarara itti aanutii fi sarara loojikii faana walqunnamsiisa.(If \"Option Compatible\" is used in the same Basic module, the line continuation feature is also valid for comment lines.)"
+
+#: 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 "Osoo sajoo <emph>BASIC Kaasi</emph> kabala <emph>Maakroo</emph> irratti dhiibdan, sagantaan hojjetamu gulaalaa Basic sarara duraa irratti calqaba. Sagantaan Sub yookiin Function duraa ni hojjeta itti aansuudhaan sagantaan hojii ni dhaabata. Hojii sagantaa irratti \"Sub Main\"nuun adeemsa hin fudhatu."
+
+#: 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 "Yeroo jalqaba IDE bantu lakkaddaa Basic sararoota Sub Main fi End Sub gidduu saagi.Filmaataaf,sararoota hunda haqi itti aansuudhaan lakkaddaa Basic mataakee saagi."
+
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"hd_id3125863\n"
+"4\n"
+"help.text"
+msgid "Navigating in a Project"
+msgstr "Naanna`iinsa projektii kessaa"
+
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"hd_id3145785\n"
+"6\n"
+"help.text"
+msgid "The Library List"
+msgstr "Manbarroo Tarree"
+
+#: 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 "Manbarroo gulaalaa keessaatti gara kamshaa bitaan fe`uuf tarree <emph>Manbarroo</emph> keessaa manbarroo fili."
+
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"hd_id3153190\n"
+"8\n"
+"help.text"
+msgid "The Object Catalog"
+msgstr "Gulaalee wantaa"
+
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"hd_id3148647\n"
+"15\n"
+"help.text"
+msgid "Saving and Loading Basic Source Code"
+msgstr "Olkaa`uu fi Fe`uu Madda Lakkaddaa Bu`uura"
+
+#: 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 "Barruu faayilii keessaa olkaa`uu fi cirna saganteessuu biraa keessatti alaaguunf lakkaddaa Bu`uuraa olkaa`uun ni danda`ama."
+
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"par_id3149959\n"
+"25\n"
+"help.text"
+msgid "You cannot save Basic dialogs to a text file."
+msgstr "Barruu faayiliif gulaalee Basic olkaa`uun hin danda`amu."
+
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"hd_id3149403\n"
+"17\n"
+"help.text"
+msgid "Saving Source Code to a Text File"
+msgstr "Barruu Faayiliif Madda Lakkaaddaa Olkaa`uu"
+
+#: 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 "Akka barruutti gulaalee wanta irraa alerguuf mojuulii barbaaddan filaa."
+
+#: 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 "Sajoo <emph>Madda Olkaa`ii</emph> kamshaa Maakroo keessaa cuuqaasi."
+
+#: 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 "Faayilii olkaa`uuf maqaa faayilii filuudhaan <emph>TOLE</emph> cuuqaasi."
+
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"hd_id3159264\n"
+"21\n"
+"help.text"
+msgid "Loading Source Code From a Text File"
+msgstr "Faayilii Barruu Keessaa Madda Lakkaaddaa Fe`uu"
+
+#: 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 "Madda lakkaddaa alaaguuf Gulaalee wanta keessaa mojuulii iddoo barbaaddanii filaa."
+
+#: 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 "Lakkaddaa sagantaa saaguuf qaree iddoo barbaadan kaa`aa."
+
+#: 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 "Kamshaa Maakroo keessaa Sajoo <emph>Madda Barruu Saagi</emph> cuuqaasi."
+
+#: 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 "Faayilii barruu madda lakkaddaa ofkeessaa qabu fili itti aansuun <emph>TOLE</emph> cuuqaasi."
+
+#: 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 IDE\">Bu`uura IDE</link>"
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"tit\n"
+"help.text"
+msgid "Debugging a Basic Program"
+msgstr "Sagantaa Bu`uura Qulqulleessuu"
+
+#: 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>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>"
+
+#: 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\">Sagantaa Bu`uura Qulqulleessuu</link>"
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"hd_id3159224\n"
+"4\n"
+"help.text"
+msgid "Breakpoints and Single Step Execution"
+msgstr "Sarqurxa fi Hojjoomuu Dhawaatii Baaxxee"
+
+#: 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 "Hojjoomuu dhawaatii baaxxee gargaaramuudhaan dogoggoraa tokko tokkoo sarara sagantaa Bu`uura keessaa mirkaneessuu ni dandeessu. Tokko tokko bu`aa dhawwaatii ennaa dhumasana ilaaluun waandanda`amuuf dogoggori salphaadhaan ni Sakkatta'ama. Akeektuun sarqurxa keessatti kan tarjaa gulaalaa sarara ammee agarsiisa.Akasumas yoo sagantaan akka iddoo murtaa`a tokkotti dhaabbatu dhiibbaa gochuu barbaaddan Sarqurxa qinddeessuun ni danda`ama."
+
+#: 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 "Sarara walqixaa irraatti sarqurxa raawwachuuf gama Gulaalaa foddaa bitaan tarjaa<emph>sarqurxa</emph> lama cuqaasi. Sagantaan yeroo sarqurxa ga`u, hojjoomuun sagantaa ni dhaabbata."
+
+#: 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 "Sajoo <emph>dhawaatii baaxxee </emph> gargaaramuun <emph>dhawaaatii baaxxeep</emph> hojjoomuun sagantaan gara adeemsaa fi fankishiniitti akka hiramu sababa ta.a."
+
+#: 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 "Sajoo <emph>dhawaatii adeemsa</emph> gargaaramuun adeemsa dhawaatii hojjoomuun sagantaan adeemsaa fi fankishinii irratti akkadhawaatii baaxxee fe`amu sababa ta`a."
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"hd_id3153825\n"
+"9\n"
+"help.text"
+msgid "Properties of a Breakpoint"
+msgstr "Amaloota sarqurxa"
+
+#: 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 "Amalootni sarqurxa baafata halqara keessaan mirga-cuuqaasuun sarqurxa tarjaa sarquxa keessatti argamu."
+
+#: 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 "Baafata halqara keesaa <emph>kakaasuu</emph> filuun sarqurxa <emph>kakaasuu</emph> fi <emph>kakaasuu dhiisuu </emph> ni danda`ama. Yeroo sarqurxan kakaasuu dhiifame, hojjoomuu sagantaa hin dhaabu."
+
+#: 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 "Iddoo filannoo sarqurxa biraa ifteessitu gulaalee <emph>sarqurxa</emph> waamuuf <emph>amaloota</emph> kan sarqurxa baafata halqara keessaa yookiin <emph>sarqurxa</emph> kan tarjaa sarqurxa baafata halqara keessaa fili."
+
+#: 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 "Tarreen <emph>sarqurxa</emph> hunda madda lakkaddaa keessatti sarara lakkoofsa walqixaa wajjin agarsiisa.Sanduuqa <emph>Kakaasuu</emph> mirkaneessuudhaan yookiin qulqulleessuudhaan sarqurxa filame kakaasuu yookiin kakaasuu dhiisuun ni danda`ama."
+
+#: 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>Lakkoofsi Darbii</emph> lakkoofsa sarqurxan osoo sagantaan addaan hin citiin dura dadarbuu danda`u ifteessa.Yeroo 0 (qindaa'inoota durtii) galchitan sagantaan akkuma sarqurxan uumameen yeroo hundaa ni dhaabata."
+
+#: 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 "Sarqurxa sagantaa keessaa haquuf <emph>Haqi</emph> cuuqaasi."
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"hd_id3150439\n"
+"14\n"
+"help.text"
+msgid "Observing the Value of Variables"
+msgstr "Doow`achuu gatii jijjiiramaawwanii"
+
+#: 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 "Gatiiwwan jijjiiramaa foddaa <emph>ilaali</emph>tti dabaluun torguun ni danda`ama. Tarree jijjiiramaawwan ilaalamanitti jijjiiramaa dabaluuf,maqaa jijjiiramaa sanduuqa barruu <emph>Ilaali</emph> keesaatti barreessi itti aansuudhaan Galchi dhiibi."
+
+#: 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 "Gatiiwwan jijjiiramaawwanii hammata keessa yoo jiratan qofa agarsiisamu. Jijjiiramaawwan iddoo madda lakkaddaa ammeetti hin hiikamne gatii isaanii osoo hin taane (\"Out of Scope\") argisiisamu."
+
+#: 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 "Akasumas waraantoolee foddaa ilaali keessatti dabaluun ni danda`ama. Osoo maqaa jijjiirama waraantoo gatii kasaa malee sanduuqa barruu ilaalchaatti galchitan, qabiyyeen waraantoo waamaraa ni argisiisamu."
+
+#: 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 "Hantuutee jijjiiramaa duraan hiikame irraa sa`aa darbee irratti gulaalaa keessa osoo keessan, qabiyyeen jijjiiramaa sanduuqa poopii olii keessatti agarsiisama."
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"hd_id3148618\n"
+"20\n"
+"help.text"
+msgid "The Call Stack Window"
+msgstr "Foddaa Tartiibaa Bilbilaa"
+
+#: 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\">Waamicha walqabataa kan adeemsa fi fankishiniif ilaalcha gubbaa kenna.</ahelp> Adeemsa fi fankishinii kamtu waamame adeemsa fi fankishinii biraa kamtummoo madda lakkaddaa keessa tuqaa ammeerratti jechuudhaan murteessuun ni danda`ama."
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"hd_id3150594\n"
+"24\n"
+"help.text"
+msgid "List of Run-Time Errors"
+msgstr "Tarree Dogongorawwan Sa'aa Darbee"
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"tit\n"
+"help.text"
+msgid "Organizing Libraries and Modules"
+msgstr "Qindeessuu Manbarroo fi Mojuulii"
+
+#: 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>manbarroo;qindeessuu</bookmark_value><bookmark_value>mojuulii;qindeessuu</bookmark_value><bookmark_value>garagalchu;mojuulii</bookmark_value><bookmark_value>dabaluu manbarroo</bookmark_value><bookmark_value>haquu;manbarroo/mojuulii/qaaqa</bookmark_value><bookmark_value>qaaqa;qindeessuu</bookmark_value><bookmark_value>siiqsi;mojuulii</bookmark_value><bookmark_value>qindeessuu;mojuulii/manbarroo/qaaqa</bookmark_value><bookmark_value>maqaa mojuulii fi qaaqa jijjiiruu</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\">Qindeessuu Manbarroo fi Mojuulii</link></variable>"
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"hd_id3150868\n"
+"4\n"
+"help.text"
+msgid "Organizing Libraries"
+msgstr "Manbarroo Qindeessuu"
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"hd_id3125864\n"
+"5\n"
+"help.text"
+msgid "Creating a New Library"
+msgstr "Manbarroo haraa uumuu"
+
+#: 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 "Qaaqa <emph>Qindeessaa Maacroo</emph> banuudhaaf <emph>Meeshaalee - Maakroota - Maakroota Qindeessi - Bu`uura %PRODUCTNAME</emph> fili itti aansuudhaan sajoo <emph>Qindeessaa</emph> yookiin <emph>Mojuulii Fili</emph> Bu`uura IDE keessaa cuuqaasi."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3153726\n"
+"8\n"
+"help.text"
+msgid "Click the <emph>Libraries</emph> tab."
+msgstr "Gabatee <emph>Manbarroo</emph> cuuqaasi."
+
+#: 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 "Tarree <emph>Iddoo</emph> keessaatti manbarroo iddootti walqabsiisuu barbaadan fila. Maacroota %PRODUCTNAME fi gulaalee osoo filtan, manbarroon fayyadama $[officename] keessatti argamuu fi galmeewwan maraaf ni jireessa. Osoo galmee filttan manbarroon galmee kanatti miilta`a akasumas iddoo sanarraa qofa jireessa."
+
+#: 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 "Manbarroo Haaraa uumuuf <emph>Haaraa</emph> cuuqaasuudhan maqaa saagi."
+
+#: 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 "Qaaqa <emph>Qindeessaa Maacroo</emph> banuudhaaf <emph>Meeshaalee - Maakroota - Maakroota Qindeessi - Bu`uura %PRODUCTNAME</emph> fili itti aansuudhaan sajoo <emph>Qindeessaa</emph> yookiin <emph>Mojuulii Fili</emph> Bu`uura IDE keessaa cuuqaasi."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3146972\n"
+"50\n"
+"help.text"
+msgid "Click the <emph>Libraries</emph> tab."
+msgstr "Gabatee <emph>Manbarroo</emph> cuuqaasi."
+
+#: 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 "Tarree <emph>Iddoo</emph> keessaatti manbarroo iddootti miiltessuu barbaadan fila. Maacroota %PRODUCTNAME fi gulaalee osoo filtan, manbarroon fayyadama $[officename] keessatti argamuu fi galmeewwan maraaf ni jireessa. Osoo galmee filttan manbarroon galmee kanatti miilta`a akasumas iddoo sanarraa qofa jireessa."
+
+#: 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 "Manbarroo alaantoo miiltessuuf <emph>Miiltessi</emph> cuuqaasuudhan fili."
+
+#: 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 "Qaaqa <emph>Manbarroo miiltessii</emph> keessatti manbarroo miiltessaman mara fili. Qaaqan manbarroota faayilii filame keessatti qabaman maraa agarsiisa.."
+
+#: 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 "Manbarroo akka ilaalchaati saaguu yoo barbaadan sanduuqa <emph>akka ilaalchaati Saagi (read-only)</emph> qofa mirkaneessi. Manbarroon dubbisuu-qofa fankishinii guutuu dha garuu Bu`uura IDE fooyyessuu hin danda`u."
+
+#: 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 "Sanduuqa <emph>manbarroo jiru bakka buusi</emph> mirkaneessi yoo manbarroon maqaatiin walfakaatu akka dabalamee barreefamu barbaade."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3147004\n"
+"56\n"
+"help.text"
+msgid "Click <emph>OK</emph> to import the library."
+msgstr "Manbarroo miiltessuuf <emph>TOLE</emph> cuuqaasi."
+
+#: 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 "Qaaqa <emph>Qindeessaa Maacroo</emph> banuudhaaf <emph>Meeshaalee - Maakroota - Maakroota Qindeessi - Bu`uura %PRODUCTNAME</emph> fili itti aansuudhaan sajoo <emph>Qindeessaa</emph> yookiin <emph>Mojuulii Fili</emph> Bu`uura IDE keessaa cuuqaasi."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3147006\n"
+"71\n"
+"help.text"
+msgid "Click the <emph>Libraries</emph> tab."
+msgstr "Gabatee <emph>Manbarroo</emph> cuuqaasi."
+
+#: 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 ""
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3147008\n"
+"73\n"
+"help.text"
+msgid "Click <emph>Export...</emph>"
+msgstr ""
+
+#: 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>Siiqsi</emph> cuuqaasi."
+
+#: 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 "Manbarroo miiltessuuf <emph>TOLE</emph> cuuqaasi."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"hd_id3159100\n"
+"17\n"
+"help.text"
+msgid "Deleting a Library"
+msgstr "Manbarroo haquu"
+
+#: 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 "Qaaqa <emph>Qindeessaa Maacroo</emph> banuudhaaf <emph>Meeshaalee - Maakroota - Maakroota Qindeessi - Bu`uura %PRODUCTNAME</emph> fili itti aansuudhaan sajoo <emph>Qindeessaa</emph> yookiin <emph>Mojuulii Fili</emph> Bu`uura IDE keessaa cuuqaasi."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3146808\n"
+"57\n"
+"help.text"
+msgid "Click the <emph>Libraries</emph> tab."
+msgstr "Gabatee <emph>Manbarroo</emph> cuuqaasi."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3158212\n"
+"58\n"
+"help.text"
+msgid "Select the library to be deleted from the list."
+msgstr "Tarree keessaa manbarroo haqamu fili."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3150361\n"
+"20\n"
+"help.text"
+msgid "Click <emph>Delete</emph>."
+msgstr "<emph>Haqi</emph> cuuqaasi."
+
+#: 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 "Manbarroo akka jiruun haquun mojuulii jiranii fi adeemsa fi fankishinii walqixaa hunda haqa."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3148868\n"
+"59\n"
+"help.text"
+msgid "You cannot delete the default library named \"Standard\"."
+msgstr "Manbarroo durtii \"Standard\" jedhamu haquun hin danda`amu."
+
+#: 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 "Manbarroo akka ilaalchaatti saagame osoo haqtan manbarroo mataa isaa osoo hin taane ilaalcha qofaatu haqama."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"hd_id3147070\n"
+"21\n"
+"help.text"
+msgid "Organizing Modules and Dialogs"
+msgstr "Qindeessuu mojuulii fi qaaqalee"
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"hd_id3155265\n"
+"61\n"
+"help.text"
+msgid "Creating a New Module or Dialog"
+msgstr "Mojuulii haaraa yookiin Qaaqa uumuu"
+
+#: 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 "Qaaqa <emph>Qindeessaa Maacroo</emph> banuudhaaf <emph>Meeshaalee - Maakroota - Maakroota Qindeessi - Bu`uura %PRODUCTNAME</emph> fili itti aansuudhaan sajoo <emph>Qindeessaa</emph> yookiin <emph>Mojuulii Fili</emph> Bu`uura IDE keessaa cuuqaasi."
+
+#: 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 "Gabatee <emph>Mojuulii</emph> yokiin <emph>Qaaqa</emph> cuuqaasi."
+
+#: 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 "Manbarroo iddoo mojuuliin saagamee filuudhaan <emph>Haaraa</emph> cuuqaasi."
+
+#: 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 "Mojuuliif yookiin qaaqaf maqaa saaguudhaan <emph>TOLE</emph> cuuqaasi."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"hd_id3152872\n"
+"25\n"
+"help.text"
+msgid "Renaming a Module or Dialog"
+msgstr "Maqaa Mojuulii yookiin Qaaqa jijjiiruu"
+
+#: 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 "Qaaqa <emph>Qindeessaa Maacroo</emph> banuudhaaf <emph>Meeshaalee - Maakroota - Maakroota Qindeessi - Bu`uura %PRODUCTNAME</emph> fili itti aansuudhaan sajoo <emph>Qindeessaa</emph> yookiin <emph>Mojuulii Fili</emph> Bu`uura IDE keessaa cuuqaasi."
+
+#: 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 "Maqaan akka si`a lama jijjiiramu,cuuqaasota gidduu afuurfannoo wajjin mojuuliin cuuqaasi. Maqaa haaraa saagi."
+
+#: 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 "Bu`uura IDE keessatti, maqaa mojuulii yookiin qaaqa jala gabatee argii irratti mirga cuuqaasi, <emph>Maqaa jijjiiri</emph> fila itti aansuudhaan maqaa haaraan barreessi."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3155526\n"
+"28\n"
+"help.text"
+msgid "Press Enter to confirm your changes."
+msgstr "Jijjiirama keessan dhugoomsuuf Saagi dhiiba."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"hd_id3146963\n"
+"29\n"
+"help.text"
+msgid "Deleting a Module or Dialog"
+msgstr "Mojuulii yookiin Qaaqa Haquu"
+
+#: 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 "Qaaqa <emph>Qindeessaa Maacroo</emph> banuudhaaf <emph>Meeshaalee - Maakroota - Maakroota Qindeessi - Bu`uura %PRODUCTNAME</emph> fili itti aansuudhaan sajoo <emph>Qindeessaa</emph> yookiin <emph>Mojuulii Fili</emph> Bu`uura IDE keessaa cuuqaasi."
+
+#: 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 "Gabatee <emph>Mojuulii</emph> yokiin <emph>Qaaqa</emph> cuuqaasi."
+
+#: 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 "Mojuulii yookiin qaaqa tarree keessaa haqamu fila. Cita galfata mullisuuf yoo barbaachise, galfata lama cuqaasi."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3147248\n"
+"32\n"
+"help.text"
+msgid "Click <emph>Delete</emph>."
+msgstr "<emph>Haqi</emph> cuuqaasi."
+
+#: 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 "Mojuulii akka jiruun haquun adeemsa fi fankishinii jiran hunda mojuulii keessaa haqa."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"hd_id3151392\n"
+"33\n"
+"help.text"
+msgid "Organizing Projects among Documents or Templates"
+msgstr "Projektii Galmee yookiin Qajoojii gidduutti qindeessuu"
+
+#: 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 "Mojuulii galmee, qajoojii fi fayyadama gidduu ssiiqsi yookiin galagalchu"
+
+#: 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 "Wanta barbadan gidduutti mojuulii yookiin qaaqa siiqsuuf yookiin galagalchuuf galmee yookiin qajoojii mara bani."
+
+#: 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 "Qaaqa <emph>Qindeessaa Maacroo</emph> banuudhaaf <emph>Meeshaalee - Maakroota - Maakroota Qindeessi - Bu`uura %PRODUCTNAME</emph> fili itti aansuudhaan sajoo <emph>Qindeessaa</emph> yookiin <emph>Mojuulii Fili</emph> Bu`uura IDE keessaa cuuqaasi."
+
+#: 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 "Mojuulii yookiin qaaqa gara galmee biraatti siiqsuuf, tarree keessaa wanta walqixeee cuuqaasi itti aansuun gara iddoo barbaadametti harkisi. sarari dalgee iddoo galtee wantaa ammee garsiisa garuu ni harkisa. Furtuu <switchinline select=\"sys\"><caseinline select=\"MAC\">Ajaja</caseinline><defaultinline>Ctrl</defaultinline></switchinline> iddooquun garuu wantaa galagalchuuf siiqsuurrayyuu ni harkisa."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Event-Driven Macros"
+msgstr "Ooftuu Mudata Maakroosi"
+
+#: 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>haquu; maayikiroo ramada muudataaf</bookmark_value> <bookmark_value>maaayikiroos; ramada muudataaf</bookmark_value> <bookmark_value>ramada muudataaf</bookmark_value> <bookmark_value>mudataa; ramada maayikiroos</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=\"Event-Driven Macros\">Ooftuu Mudata Maakroosi</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 "Kutaan kun akkaataalee sagantooleen Bu`uura mudatoota sagantati ramadaman ibsa."
+
+#: 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 "Yeroo madatni sooftiweerii ifteessame maakroo barbaadame gara mudatatti ramaduudhaan uumaman ofumaan maakroo hojjoomuun ni danda`ama. Gabateen armaan gadii mudatoota sagantaa fi maakroon ramadame hojii akkamii akkanni hojjomu ilaalcha guddaa kenna."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3148455\n"
+"5\n"
+"help.text"
+msgid "Event"
+msgstr "Mudata"
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3145799\n"
+"6\n"
+"help.text"
+msgid "An assigned macro is executed..."
+msgstr "Maakroon ramadame ni hojjooma..."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3149379\n"
+"7\n"
+"help.text"
+msgid "Program Start"
+msgstr "jalqaba sagantaa"
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3150715\n"
+"8\n"
+"help.text"
+msgid "... after a $[officename] application is started."
+msgstr "... fayyadamni $[officename] booda eegala."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3146914\n"
+"9\n"
+"help.text"
+msgid "Program End"
+msgstr "sagantaa End"
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3153765\n"
+"10\n"
+"help.text"
+msgid "...before a $[officename] application is terminated."
+msgstr "...fayyadamni $[officename] dura dhaabbata."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3145150\n"
+"11\n"
+"help.text"
+msgid "Create Document"
+msgstr "Galmee uumi"
+
+#: 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 "...Sajoo <emph>Faayilii - Haaraa</emph> yookiin <emph>Haaraa</emph> wajjin galmeen haaraan iddoo uumamee booda."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3145790\n"
+"13\n"
+"help.text"
+msgid "Open Document"
+msgstr "Galmee bani"
+
+#: 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 "...Sajoo <emph>Faayilii - Bani</emph> yookiin <emph>Bani</emph> wajjin galmeen iddoo banamee booda."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3153266\n"
+"15\n"
+"help.text"
+msgid "Save Document As"
+msgstr "Save Document As"
+
+#: 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 "...sajoo (<emph>Faayilii - Olkaaa`i Akka </emph>, yookiin <emph>Faayilii - olkaa`i</emph> yookiine <emph>Olkaa`i</emph> wajjin maqaa ifteessame jalatti galmeen osoo ol hin kaa`amiin dura, yoo maqaan galmee hamma amaatti hin ifteessamne ta`e)."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3158215\n"
+"43\n"
+"help.text"
+msgid "Document has been saved as"
+msgstr "Galmeen kan oltaa`e akka"
+
+#: 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 "...sajoo (<emph>Faayilii - Olkaaa`i Akka </emph>, yookiin <emph>Faayilii - olkaa`i</emph> yookiine <emph>Olkaa`i</emph> wajjin maqaa ifteessame jalatti galmeen osoo ol hin kaa`amiin dura, yoo maqaan galmee hamma amaatti hin ifteessamne ta`e)."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3150519\n"
+"17\n"
+"help.text"
+msgid "Save Document"
+msgstr "galmee olkaa`i"
+
+#: 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 "...sajoo <emph>Faayilii - Olkaa'i</emph> ykn <emph>Olkaa'i</emph> wajjin galmeen osoo ol hin kaa'amiin dura, maqaa galmee duraan kenname ifteessama."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3149404\n"
+"45\n"
+"help.text"
+msgid "Document has been saved"
+msgstr "Galmeen oltaa`eera"
+
+#: 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 "...sajoo <emph>Faayilii - Olkaa'i</emph> ykn <emph>Olkaa'i</emph> wajjin galmeen osoo ol hin kaa'amee booda, maqaa galmee duraan kenname ifteessama."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3159171\n"
+"19\n"
+"help.text"
+msgid "Document is closing"
+msgstr "Galmee cufi"
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3146868\n"
+"20\n"
+"help.text"
+msgid "...before a document is closed."
+msgstr "...galmeen dura cufama."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3159097\n"
+"47\n"
+"help.text"
+msgid "Document closed"
+msgstr "Galmeen ni cufama"
+
+#: 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 "...galmeen iddoo cufamee booda.yeroo galmeen osoo olhin kaa`amiin cufamu maddi \"Galmee Olkaa`i\" dabalatan tarii ni uumama."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3144772\n"
+"21\n"
+"help.text"
+msgid "Activate Document"
+msgstr "Galmee Kakaasi"
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3149442\n"
+"22\n"
+"help.text"
+msgid "...after a document is brought to the foreground."
+msgstr "...galmeen gara fuuldureetti dhufee booda."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3150888\n"
+"23\n"
+"help.text"
+msgid "Deactivate Document"
+msgstr "Galmee Hinkakaasiin"
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3154060\n"
+"24\n"
+"help.text"
+msgid "...after another document is brought to the foreground."
+msgstr "...galmeen gara fuuldureetti dhufee booda."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3152384\n"
+"25\n"
+"help.text"
+msgid "Print Document"
+msgstr "Galmee Maxxansi"
+
+#: 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 "...qaaqan <emph>Maxxansi</emph> iddoo cufamee booda, garuu jalqaba haalla maxxansi sirrii dura."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3159227\n"
+"49\n"
+"help.text"
+msgid "JavaScript run-time error"
+msgstr "Dogoggora sa`atii darbee JaavaaSkiriptii"
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3145362\n"
+"50\n"
+"help.text"
+msgid "...when a JavaScript run-time error occurs."
+msgstr "... yeroo dogoggori sa`atii darbee JaavaaSkiriptii uumamu."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3154767\n"
+"27\n"
+"help.text"
+msgid "Print Mail Merge"
+msgstr "Makiinsa Ergannoo Maxxansi"
+
+#: 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 "...qaaqan <emph>Maxxansi</emph> iddoo cufamee booda, garuu jalqaba haalla maxxansi sirrii dura. Maddataan kun tokko tokkoo galagalcha maxxansameef uumama."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3156366\n"
+"51\n"
+"help.text"
+msgid "Change of the page count"
+msgstr "Jijjiira lakkoofsa fuulaa"
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3154627\n"
+"52\n"
+"help.text"
+msgid "...when the page count changes."
+msgstr "...yeroo lakkoofsa fuulaa jijjiiru."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3154737\n"
+"53\n"
+"help.text"
+msgid "Message received"
+msgstr "Ergaa fudhatame"
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3150952\n"
+"54\n"
+"help.text"
+msgid "...if a message was received."
+msgstr "...yoo Ergaa fudhatame."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"hd_id3153299\n"
+"30\n"
+"help.text"
+msgid "Assigning a Macro to an Event"
+msgstr "Ramada Maakroo mudata"
+
+#: 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 "Gabatee <emph>Meeshaalee - Maamileesi</emph> fi <emph>Mudatoota</emph> cuuqaasi."
+
+#: 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 "Sanduuqa tarree<emph>keessa olkaa`i</emph> galmee ammee kessaa xurbeessaan gataa`aa yookiin gataa`aa sirrii ramadan akka ta`uu yoo barbaade fili."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3150431\n"
+"32\n"
+"help.text"
+msgid "Select the event from the <emph>Event</emph> list."
+msgstr "Tarree <emph>Madata</emph> keessaa madata fili."
+
+#: 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>Maakroo</emph> cuuqaasuudhaan maakroo gara madata filameetti ramadaman fili."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3146321\n"
+"35\n"
+"help.text"
+msgid "Click <emph>OK</emph> to assign the macro."
+msgstr "Maakroo ramaduuf <emph>TOLE</emph> cuuqaasi."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3147414\n"
+"56\n"
+"help.text"
+msgid "Click <emph>OK</emph> to close the dialog."
+msgstr "Qaaqa cufuuf <emph>Tole</emph> cuuqaasi."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"hd_id3154581\n"
+"36\n"
+"help.text"
+msgid "Removing the Assignment of a Macro to an Event"
+msgstr "Ramada Maakroo gara Mudatatti siiqsu"
+
+#: 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 "Gabatee <emph>Meeshaalee - Maamileesi</emph> fi <emph>Mudatoota</emph> cuuqaasi."
+
+#: 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 "Ramada xurbeessaa yookiin ramada gataa`aa galmee ammee keessaa filannoo sanduuqa tarree<emph>keessa olkaa`i</emph> kessaa filuudhaan siiqsuuf fili."
+
+#: 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 "Madata ramada tarree <emph>Madata</emph> keessaa siiqan ofkeessaatti qabatu fili."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3149143\n"
+"37\n"
+"help.text"
+msgid "Click <emph>Remove</emph>."
+msgstr "<emph>Siiqsi</emph> cuuqaasi."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3149351\n"
+"60\n"
+"help.text"
+msgid "Click <emph>OK</emph> to close the dialog."
+msgstr "Qaaqa cufuuf <emph>Tole</emph> cuuqaasi."
+
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"tit\n"
+"help.text"
+msgid "$[officename] Basic IDE"
+msgstr "Bu`uura IDE $[officename]"
+
+#: 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 IDE\">Bu`uura IDE $[officename] </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 "Kutaan kun caasaa Bu`uura IDE ibsa."
+
+#: 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\">Bu`uura IDE iddoo maakroosi barreessuu fi gulaaluu dandeessuutii bani.</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 "Ajaja baafata halqara kan Gabatee Mojuulii keessaa"
+
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"hd_id3154731\n"
+"6\n"
+"help.text"
+msgid "Insert"
+msgstr "Saagi"
+
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"hd_id3151074\n"
+"8\n"
+"help.text"
+msgid "Module"
+msgstr "Mojuulii"
+
+#: 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\">Mojuulii haaraa manbarroo ammeetti saagi.</ahelp>"
+
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"hd_id3147397\n"
+"10\n"
+"help.text"
+msgid "Dialog"
+msgstr "Qaaqa"
+
+#: 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\">Qaaqa haaraa manbarroo ammeetti saagi.</ahelp>"
+
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"hd_id3155602\n"
+"12\n"
+"help.text"
+msgid "Delete"
+msgstr "Haqi"
+
+#: 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\">Mojuulii filame haqi.</ahelp>"
+
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"hd_id3149018\n"
+"14\n"
+"help.text"
+msgid "Rename"
+msgstr "Maqaa jijjiiri"
+
+#: 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\">Mojuulii ammee bakkarratti maqaa jijjiiri.</ahelp>"
+
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"hd_id3150043\n"
+"16\n"
+"help.text"
+msgid "Hide"
+msgstr "Dhoksi"
+
+#: 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\">Mojuulii ammee dhoksi.</ahelp>"
+
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"hd_id3163805\n"
+"18\n"
+"help.text"
+msgid "Modules"
+msgstr "Mojuulii"
+
+#: 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 "Qaaqa <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Macro Organizer\"><emph>Qindeessaa maakroo</emph></link> bani."
+
+#: 01050100.xhp
+msgctxt ""
+"01050100.xhp\n"
+"tit\n"
+"help.text"
+msgid "Watch Window"
+msgstr "Foddaa Ilaali"
+
+#: 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\">Foddaa Ilaali</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 "Foddaa Ilaali gatii jijjiiramaawwanii yeroo sagantaa hojjoomuu akka ilaalu nuuf heeyyama. Jijjiiramaa ilaalcha sanduuqa barruu keessatti ni ibsa. Jijjiiramaa sanduuqa tarreetti dabaluu fi gatiiwwan isaanii agarsiisuuf <link href=\"text/sbasic/shared/02/11080000.xhp\">Ilaali Dandeessisi</link> cuuqaasi."
+
+#: 01050100.xhp
+msgctxt ""
+"01050100.xhp\n"
+"hd_id3145173\n"
+"4\n"
+"help.text"
+msgid "Watch"
+msgstr "Ilaali"
+
+#: 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\"> Maqaa jijjiiramaa gatiin isaanii torgaa`an saagi.</ahelp>"
+
+#: 01050100.xhp
+msgctxt ""
+"01050100.xhp\n"
+"hd_id3148645\n"
+"6\n"
+"help.text"
+msgid "Remove Watch"
+msgstr "Ilaalii Siiqsi"
+
+#: 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\">Jijjiiramaa filatame tarree jijjiiramaawwan ilaalamanii keessaa siiqsi.</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\">Sajoo</alt></image>"
+
+#: 01050100.xhp
+msgctxt ""
+"01050100.xhp\n"
+"par_id3154012\n"
+"8\n"
+"help.text"
+msgid "Remove Watch"
+msgstr "Ilaalii Siiqsi"
+
+#: 01050100.xhp
+msgctxt ""
+"01050100.xhp\n"
+"hd_id3154491\n"
+"10\n"
+"help.text"
+msgid "Editing the Value of a Watched Variable"
+msgstr "Gulaali gatii jijjiiramaa ilaalame"
+
+#: 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\">Tarree jijjiiramawwan ilaalamanii agarsiisi. Afuurfannoo gabaaba wajjin gidduu galfata gatii gulaalaa isaatti si`a lama cuuqaasi.</ahelp> Gatiin haaraan sagaantaaf akka gatii jijjiiramaatti fudhatama."
+
+#: 01050200.xhp
+msgctxt ""
+"01050200.xhp\n"
+"tit\n"
+"help.text"
+msgid "Call Stack Window (Calls)"
+msgstr "Tartiibaa Bilbilaa Foddaa (Bilbiloota)"
+
+#: 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=\"Call Stack Window (Calls)\">Tartiibaa Bilbilaa Foddaa (Bilbiloota)</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\">Yeroo sagantaa hojjoomuu adeemsaa fi fankishinii tartiibaatti agarsiisi.</ahelp><emph>Tartiibaa Bilbilaa</emph> sagantaa hojjoomuu adeemsaa fi fankishinii tartiibaa torgiif ni heeyyama. Adeemsii fi fankishiniin gad gara oliitti fankishinii yookiin adeemsa tarree olii dhiyoo wajjiniiti."
+
+#: 01050300.xhp
+msgctxt ""
+"01050300.xhp\n"
+"tit\n"
+"help.text"
+msgid "Manage Breakpoints"
+msgstr "Sarqurxa Taliigaa"
+
+#: 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=\"Manage Breakpoints\">Sarqurxa Taliigaa</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\">Dirqalaalee sarqurxaaf ifteessi</ahelp>"
+
+#: 01050300.xhp
+msgctxt ""
+"01050300.xhp\n"
+"hd_id3149670\n"
+"3\n"
+"help.text"
+msgid "Breakpoints"
+msgstr "Sarqurxa"
+
+#: 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\">Lakkoofsa sarara sarqurxa haaraaf saagi, itti aansuundhaan <emph>Haaraa</emph> cuuqaasi.</ahelp>"
+
+#: 01050300.xhp
+msgctxt ""
+"01050300.xhp\n"
+"hd_id3156280\n"
+"6\n"
+"help.text"
+msgid "Active"
+msgstr "Kakaasi"
+
+#: 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\">Sarqurxa ammee kakaasi yookiin kakaasuu dhiisi.</ahelp>"
+
+#: 01050300.xhp
+msgctxt ""
+"01050300.xhp\n"
+"hd_id3144500\n"
+"8\n"
+"help.text"
+msgid "Pass Count"
+msgstr "Lakkoofsa Darbii"
+
+#: 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\">Osoo sarqurxaan galtee hin fudhatiin dura hojjechuudhaaf lakkoofsa deddeebi`aa ifteessi.</ahelp>"
+
+#: 01050300.xhp
+msgctxt ""
+"01050300.xhp\n"
+"hd_id3152579\n"
+"10\n"
+"help.text"
+msgid "New"
+msgstr "Haaraa"
+
+#: 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\">Lakkoofsa sarara ifteessame irratti sarqurxa uumi.</ahelp>"
+
+#: 01050300.xhp
+msgctxt ""
+"01050300.xhp\n"
+"hd_id3147319\n"
+"12\n"
+"help.text"
+msgid "Delete"
+msgstr "Haqi"
+
+#: 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\">Sarqurxa filame haqi.</ahelp>"
+
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"tit\n"
+"help.text"
+msgid "Control and Dialog Properties"
+msgstr "To'annaa fi amaloota Qaaqa"
+
+#: 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>to`annoo; amaloota</bookmark_value><bookmark_value>amaloota; to`annoo fi qaaqalee</bookmark_value><bookmark_value>qaaqalee; amaloota</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=\"Control and Dialog Properties\">To'annaa fi amaloota Qaaqa</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=\".\">Amaloota qaaqa yookiin too`annaa filaman ifteessi.</ahelp> Ajaja kanatti gargaaramuuf diqama haalata saxaxa keessa ta`uu qabda."
+
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"hd_id3151043\n"
+"20\n"
+"help.text"
+msgid "Entering Data in the Properties Dialog"
+msgstr "Deetaa amaloota Qaaqa keessa saagi"
+
+#: 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 "Deetaa dirreewwan sarara hedduu keessa yookiin Sanduuqota makaa qaaqa <emph>amaloota</emph> saaguuf furtuu makaa kanneen armaan gadiitti gargaarami."
+
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"par_id3150010\n"
+"18\n"
+"help.text"
+msgid "Keys"
+msgstr "Furtoota"
+
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"par_id3147317\n"
+"19\n"
+"help.text"
+msgid "Effects"
+msgstr "Galteewwan"
+
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"par_id3146121\n"
+"4\n"
+"help.text"
+msgid "Alt+Down Arrow"
+msgstr "Xiyyaa Alt+Down"
+
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"par_id3149581\n"
+"5\n"
+"help.text"
+msgid "Opens a combo box"
+msgstr "Sanduuqa makaa bani"
+
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"par_id3147394\n"
+"6\n"
+"help.text"
+msgid "Alt+Up Arrow"
+msgstr "Xiyyaa Alt+Up"
+
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"par_id3148455\n"
+"7\n"
+"help.text"
+msgid "Closes a combo box"
+msgstr "Sanduuqa makaa cufi"
+
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"par_id3154511\n"
+"8\n"
+"help.text"
+msgid "Shift+Enter"
+msgstr "Jijjiiri+Saagi"
+
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"par_id3146971\n"
+"9\n"
+"help.text"
+msgid "Inserts a line break in multiline fields."
+msgstr "Cita sararaa dirreewwan sarara hedduu keessa saagi."
+
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"par_id3146914\n"
+"10\n"
+"help.text"
+msgid "(UpArrow)"
+msgstr "(UpArrow)"
+
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"par_id3153714\n"
+"11\n"
+"help.text"
+msgid "Goes to the previous line."
+msgstr "Gara sarara duraanii dhaqi"
+
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"par_id3159266\n"
+"12\n"
+"help.text"
+msgid "(DownArrow)"
+msgstr "(DownArrow)"
+
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"par_id3146314\n"
+"13\n"
+"help.text"
+msgid "Goes to the next line."
+msgstr "Gara sarara itti aanuu dhaqi"
+
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"par_id3149255\n"
+"14\n"
+"help.text"
+msgid "Enter"
+msgstr "Saagi"
+
+#: 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 "Jijjiirraan dirree fi bakkootaa iirratti gochuun qaree gara dirree itti aanuutti ni bobaasa."
+
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -394,7 +5428,7 @@ msgctxt ""
"95\n"
"help.text"
msgid "L"
-msgstr "L"
+msgstr ""
#: 01170101.xhp
msgctxt ""
@@ -412,7 +5446,7 @@ msgctxt ""
"97\n"
"help.text"
msgid "a"
-msgstr "a"
+msgstr ""
#: 01170101.xhp
msgctxt ""
@@ -430,7 +5464,7 @@ msgctxt ""
"99\n"
"help.text"
msgid "A"
-msgstr "A"
+msgstr ""
#: 01170101.xhp
msgctxt ""
@@ -448,7 +5482,7 @@ msgctxt ""
"101\n"
"help.text"
msgid "c"
-msgstr "c"
+msgstr ""
#: 01170101.xhp
msgctxt ""
@@ -466,7 +5500,7 @@ msgctxt ""
"103\n"
"help.text"
msgid "C"
-msgstr "C"
+msgstr ""
#: 01170101.xhp
msgctxt ""
@@ -484,7 +5518,7 @@ msgctxt ""
"105\n"
"help.text"
msgid "N"
-msgstr "N"
+msgstr ""
#: 01170101.xhp
msgctxt ""
@@ -502,7 +5536,7 @@ msgctxt ""
"107\n"
"help.text"
msgid "x"
-msgstr "x"
+msgstr ""
#: 01170101.xhp
msgctxt ""
@@ -520,7 +5554,7 @@ msgctxt ""
"109\n"
"help.text"
msgid "X"
-msgstr "X"
+msgstr ""
#: 01170101.xhp
msgctxt ""
@@ -686,7 +5720,6 @@ msgid "The default value is FALSE."
msgstr "Gatiin durtii FALSE dha."
#: 01170101.xhp
-#, fuzzy
msgctxt ""
"01170101.xhp\n"
"hd_id3150536\n"
@@ -1737,3177 +6770,2925 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the width of the current control or dialog.</ahelp>"
msgstr "<ahelp hid=\".\">Dheerina too`annaa yookiin qaaqa ammee ifteessi.</ahelp>"
-#: 03010301.xhp
+#: 01170103.xhp
msgctxt ""
-"03010301.xhp\n"
+"01170103.xhp\n"
"tit\n"
"help.text"
-msgid "Blue Function [Runtime]"
-msgstr "Faankishinii [Runtime] cuquliisa"
-
-#: 03010301.xhp
-msgctxt ""
-"03010301.xhp\n"
-"bm_id3149180\n"
-"help.text"
-msgid "<bookmark_value>Blue function</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii cuquliisa</bookmark_value>"
+msgid "Events"
+msgstr "Mudatoota"
-#: 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 Function [Runtime]\">Faankishinii [Runtime] cuquliisa</link>"
+msgid "<link href=\"text/sbasic/shared/01170103.xhp\" name=\"Events\">Events</link>"
+msgstr "<link href=\"text/sbasic/shared/01170103.xhp\" name=\"Events\">Mudatoota</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 "Gosa magariisa lakkaddaa halluu ifteessamee deebisi."
-
-#: 03010301.xhp
-msgctxt ""
-"03010301.xhp\n"
-"hd_id3149670\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "caasimaa:"
+msgid "Define event assignments for the selected control or dialog. The available events depend on the type of control selected."
+msgstr "Too`annaa yookiin qaaqa filatameef ramadamoota mudata hiiki. mudatootni argaman akaakuu too`annaa filatamee irratti hundaa`a."
-#: 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 "Xiyyeeffannoo yoo argatu"
-#: 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 "Gatii deebii:"
+msgid "<ahelp hid=\"HID_EVT_FOCUSGAINED\">This event takes place if a control receives the focus.</ahelp>"
+msgstr "<ahelp hid=\"HID_EVT_FOCUSGAINED\">Mudatni kun kan uumamu too`annaan xiyyeeffannoo yoo argatu.</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 "intergaa"
+msgid "When losing focus"
+msgstr "Xiyyeeffannoo yoo dhabu"
-#: 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 "ulaagaa:"
+msgid "<ahelp hid=\"HID_EVT_FOCUSLOST\">This event takes place if a control loses the focus.</ahelp>"
+msgstr "<ahelp hid=\"HID_EVT_FOCUSLOST\">Mudatni kun kan uumamu too`annaan Xiyyeeffannoo yoo dhabu.</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>Gatii halluu</emph>: ibsa intergaan dheeraa kan <link href=\"text/sbasic/shared/00000003.xhp#farbcodes\" name=\"color code\">lakkaddaa halluu </link> gosa magariisa kamiyyuu kan deebi`uu ibsa dha."
+msgid "Key pressed"
+msgstr "Furtuu dhiibame"
-#: 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 "Fakkeenya:"
+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\">Mudatni kun kan uumamu yeroo itti fayyadamaan furtuu kamiyyuu dhiibu garuu too`annaan immoo xiyyeeffatu.</ahelp>"
-#: 03010301.xhp
-#, fuzzy
+#: 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 \"The color \" & lVar & \" consists of:\" & Chr(13) &_"
+msgid "Key released"
+msgstr "Furtuu dhiibame"
-#: 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= \" & 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\">Mudatni kun kan uumamu yeroo itti fayyadamaan furtuu kamiyyuu gadhiisu garuu too`annaan immoo xiyyeeffatu.</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= \" & Green(lVar) & Chr(13)&_"
+msgid "Modified"
+msgstr "Fooyya`aa"
-#: 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= \" & Blue(lVar) & Chr(13) , 64,\"colors\""
+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\">Mudatni kun kan uumamu, yeroo too`annaan xiyyeeffanaa dhabuu fi qabeentootni too`annaa sababa dhabuu xiyyeeffanaan jijjiiramani dha.</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 "Qooyyaboota walmadaallii [Runtime]"
+msgid "Text modified"
+msgstr "Barruu fooyya`aa"
-#: 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>Qooyyaboota walmadaallii;%PRODUCTNAME Basic</bookmark_value><bookmark_value>Qooyyaboota; walmadaallii</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\">Mudatni kun kan uumamu yeroo barruu dirree naqaa keessaatti saagdu yookiin fooyyessitu dha.</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=\"Comparison Operators [Runtime]\">Qooyyaboota walmadaallii [Runtime]</link>"
+msgid "Item status changed"
+msgstr "Wanta haalojii jijjiirame"
-#: 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 "Qooyyabootni walmadaallii himata lama walmadaalchisu. Bu'aan isaa akka himata Boolean kan walmadaalliin True (-1) ykn False (0) ta'e murteessee deebisa."
+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\">Mudatni kun kan uumamu yeroo haalojiin dirree too`annaa jijjiiramu, fakkeenyaaf, filatame hanga hin filatamne.</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 "Caasimaa:"
+msgid "Mouse inside"
+msgstr "Keessa hantuutee"
-#: 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\">Mudatni kun kan uumamu yeroo hantuuteen too`anntti saagamu.</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 "Ulaagaalee:"
+msgid "Mouse moved while key pressed"
+msgstr "Hantuuteen siiqa garuu furtuun dhiibama"
-#: 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>Bu'aa:</emph> Himata Boolean kanneen bu'aa walmadaallii(True, or False) ibsu dha."
+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\">Mudatni kun kan uumamu yeroo hamtuuteen harkisamu garuu furtuun dhiibamu.</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>Himata1, Himata2:</emph> Gatiiwwan lakkoofsaa ykn diraawwan kamiyyuu kanneea walmadaalchisuu barbaaddu dha."
+msgid "Mouse moved"
+msgstr "Hantuutee siiqe"
-#: 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 "Qooyyaboota walmadaallii"
+msgid "<ahelp hid=\"HID_EVT_MOUSEMOVED\">This event takes place when the mouse moves over the control.</ahelp>"
+msgstr "<ahelp hid=\"HID_EVT_MOUSEMOVED\">Mudatni kun kan uumamu yeroo hantuuteen too`annaa irraa siiqu dha.</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 "= : Walqixa"
+msgid "Mouse button pressed"
+msgstr "Hantuutee qabduu dhiibame"
-#: 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 "< : Irra xiqqaa"
+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\">Mudatni kun kan uumamu yeroo hantuuteen qabduu dhiibamu garuu akeektuun hantuutee immoo too`annaa irra ta`u dha.</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 "> : Irra guddaa"
+msgid "Mouse button released"
+msgstr "Qabduu hantuutee gadhiifame"
-#: 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 "<= : Irra xiqqaa ykn walqixa"
+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\">Mudatni kun kan uumamu yeroo hantuuteen qabduu gadhiifamu garuu akeektuun hantuutee too`annaa irra ta`u dha.</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 ">= : Irra guddaa ykn walqixa"
+msgid "Mouse outside"
+msgstr "Hantuutee alaa"
-#: 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 "<> : Walqixa miti"
+msgid "<ahelp hid=\"HID_EVT_MOUSEEXITED\">This event takes place when the mouse leaves the control.</ahelp>"
+msgstr "<ahelp hid=\"HID_EVT_MOUSEEXITED\">Mudatni kun kan uumamu yeroo hantuuteen too`annaa gadhiisu dha.</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 "Fakkeenya:"
+msgid "While adjusting"
+msgstr "Yoo mijeessitu"
-#: 03110100.xhp
-#, fuzzy
+#: 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 REM ' Galeeloo karaa faayila galchuu fi baasuu"
+msgid "<ahelp hid=\"HID_EVT_MOUSEEXITED\">This event takes place when a scrollbar is being dragged.</ahelp>"
+msgstr "<ahelp hid=\"HID_EVT_MOUSEEXITED\">Mudatni kun kan uumamu yeroo kabali maraa harkisamu dha.</ahelp>"
-#: 03030303.xhp
+#: 03000000.xhp
msgctxt ""
-"03030303.xhp\n"
+"03000000.xhp\n"
"tit\n"
"help.text"
-msgid "Timer Function [Runtime]"
-msgstr "Fankishinii yeroo himtuu [Sa'aa darbe]"
-
-#: 03030303.xhp
-msgctxt ""
-"03030303.xhp\n"
-"bm_id3149346\n"
-"help.text"
-msgid "<bookmark_value>Timer function</bookmark_value>"
-msgstr "<bookmark_value>Fankishinii yeroo himtuu</bookmark_value>"
+msgid "Run-Time Functions"
+msgstr "Faankishinoota Sa`atii Darbee"
-#: 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 Function [Runtime]\">Fankishinii yeroo himtuu [Runtime]</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=\"Run-Time Functions\">Faankishinoota sa`atii darbee</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 "Gatii lakkoofsa sekandii giddugaleessa halkaniitii eegalee jiru deebisi."
-
-#: 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 "Yeroo himtuu waamuuf duraan dursitee gegeedaramaa ibsuu qabda.Karaa biroon immo gegeedaramaa gosa daataa \"Long\" ttii moogasi."
-
-#: 03030303.xhp
-msgctxt ""
-"03030303.xhp\n"
-"hd_id3153768\n"
-"4\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Caasima:"
+msgid "This section describes the Runtime Functions of <item type=\"productname\">%PRODUCTNAME</item> Basic."
+msgstr "Kutaan kun Bu`uura <item type=\"productname\">%PRODUCTNAME</item> ibsa."
-#: 03030303.xhp
+#: 03010000.xhp
msgctxt ""
-"03030303.xhp\n"
-"par_id3161831\n"
-"5\n"
+"03010000.xhp\n"
+"tit\n"
"help.text"
-msgid "Timer"
-msgstr "Yeroo Himtuu"
+msgid "Screen I/O Functions"
+msgstr "Faankishinoota I/O argii"
-#: 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 "Gatii deebisa:"
+msgid "<link href=\"text/sbasic/shared/03010000.xhp\" name=\"Screen I/O Functions\">Screen I/O Functions</link>"
+msgstr "<link href=\"text/sbasic/shared/03010000.xhp\" name=\"Screen I/O Functions\">Faankishinoota I/O argii</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 "Guyyaa"
+msgid "This section describes the Runtime Functions used to call dialogs for the input and output of user entries."
+msgstr "Kutaan kun Faankishinoota Sa`atii Darbee qaaqalee naqaa fi bahaa galiinsa itti fayyadamaa waamuuf gargaaru ibsa."
-#: 03030303.xhp
+#: 03010100.xhp
msgctxt ""
-"03030303.xhp\n"
-"hd_id3156442\n"
-"8\n"
+"03010100.xhp\n"
+"tit\n"
"help.text"
-msgid "Example:"
-msgstr "Fakkeentya:"
+msgid "Display Functions"
+msgstr "Faankishinoota Agarsiisi"
-#: 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,\"Halkan qixxee eegalee sekandii\""
+msgid "<link href=\"text/sbasic/shared/03010100.xhp\" name=\"Display Functions\">Display Functions</link>"
+msgstr "<link href=\"text/sbasic/shared/03010100.xhp\" name=\"Display Functions\">Faankishinoota Agarsiisi</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,\"Yeroon\""
+msgid "This section describes Runtime functions used to output information to the screen display."
+msgstr "Kutaan kun Faankishinoota Sa`atii Darbee bahaa odeeffannoof kan argii agarsiisu ibsa."
-#: 03020404.xhp
+#: 03010101.xhp
msgctxt ""
-"03020404.xhp\n"
+"03010101.xhp\n"
"tit\n"
"help.text"
-msgid "Dir Function [Runtime]"
-msgstr "Faankishinii Dir [Runtime]"
+msgid "MsgBox Statement [Runtime]"
+msgstr "Hima MsgBox [Runtime]"
-#: 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> Faankishinii Dir </bookmark_value>"
+msgid "<bookmark_value>MsgBox statement</bookmark_value>"
+msgstr "<bookmark_value>Hima 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 Function [Runtime]\"> Faankishinii Dir [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03010101.xhp\">MsgBox Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03010101.xhp\">Hima MsgBox [Runtime]</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 "Maqaa faayilii ,galeeloo ykn faayilii fi galeeloo hunda oofaa ykn galeeloo kan xurree barbaachisaa waliin wal gitu deebisi."
+msgid "Displays a dialog box containing a message."
+msgstr "Sanduuqa qaaqa ergaa ofkeessaa qabu agarsiisi."
-#: 03020404.xhp
+#: 03010101.xhp
msgctxt ""
-"03020404.xhp\n"
-"hd_id3154365\n"
+"03010101.xhp\n"
+"hd_id3153897\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasima:"
+msgstr "caasimaa:"
-#: 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 "Gatii deebisi:"
+msgid "Parameter:"
+msgstr "ulaagaa:"
-#: 03020404.xhp
+#: 03010101.xhp
msgctxt ""
-"03020404.xhp\n"
-"par_id3153193\n"
+"03010101.xhp\n"
+"par_id3148798\n"
"6\n"
"help.text"
-msgid "String"
-msgstr "Diraa"
+msgid "<emph>Text</emph>: String expression displayed as a message in the dialog box. Line breaks can be inserted with Chr$(13)."
+msgstr "<emph>Barruu</emph>n: ibsa diraa kan sanduuqa qaaqa keessatti akka ergaati argarsiifamu dha. Sarari cita Chr$(13) waliin saagamuu ni danda`a."
-#: 03020404.xhp
+#: 03010101.xhp
msgctxt ""
-"03020404.xhp\n"
-"hd_id3153770\n"
+"03010101.xhp\n"
+"par_id3150769\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Ulaagaalee:"
+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>QaaqaMatduree</emph>: ibsa diraa kabala matduree qaaqa keessatti agarsiifamu dha. Osoo gatame, kabali matduree maqaa fayyadama duraa duubaan agarsiisa."
-#: 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>Barruu:</emph>Himamsa itergaa kamiyyuu kan xurree barabaachisaa,galeeloo fi faayilii. Qajeelfamni kun kan ibsamu yommu ati faankishinii Dir waamtu. yoo barbaadde, xurree <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\"> sirnasxaa URL </link>haala kanaan galchuu dandeessa."
+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>Akaakuu</emph>n: ibsa intergaa kamiyyuu ta`ee kan gosa qaaqa, akasumas lakkoofsa fi gosa qabduuwwan agarsiifamaii, figaso sajoo ifteessa. <emph>Akaakuun</emph> walquunnama biiti sarxaa, kana jechuun, maalimoota walquunnama gattiiwwan dabalata isaanii bakka bu`a."
-#: 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> Himamsa itergaa kamiyyuu kan faayilii laklamee ibsu. Faankishiniin Dir jedhamu faayiliin ykn galeeloon amaloota ibsaman waliin wal madaalu deebisa. Amaloota hedduu gatii amalootaa ida'uun walitti makuu dandeessa."
-
-#: 03020404.xhp
-#, fuzzy
-msgctxt ""
-"03020404.xhp\n"
-"par_id3149666\n"
-"11\n"
-"help.text"
-msgid "0 : Normal files."
-msgstr "0: Faayilii baratamoo."
-
-#: 03020404.xhp
-msgctxt ""
-"03020404.xhp\n"
-"par_id3147427\n"
-"15\n"
-"help.text"
-msgid "16 : Returns the name of the directory only."
-msgstr "16 : Maqaa galeeloo qofa deebisi."
-
-#: 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 "Akka faayiliin ykn galeeloon jiru mirkaneessuu yoo barbaadde amaloota faayyadami ykn faayilii fi ukaankaa hunda galeeloo keessatti murteessi."
-
-#: 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 "Jiraachuu faayiliin mirkaneessuuf,xurree fi maqaa faayilii guutuu galchi. Yoo maqaan faayilii ykn galeeloon jiraachuu baate ,faankishiniin Dir dheerina diraa duwwaa (\" \") deebisa."
-
-#: 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 "Tarree faayiilota argaman hunda galeeloo ibsame kessaatti maddisiisuuf, akka armaan gadiitti itti fufi:Yeroo duraaf yoo faankishinii Dir jedhamu waamtu,faayiliidhaaf xurree barbaachaa guutuu ibsi, fakkenyaaf,\"D:\\Files\\*.sxw\".Yoo xurreen sirrii ta'ee barbaachisaan yoo xiqqaate faayilii tokko argate, faankishiniin Dir jedhamu maqaa faayilii xurree barbaachisaa waliin wal madaalu deebisa. Maqaa faayilii dabalataa xurree barbaachisaa waliin wal madaalu deebisuuf faankishinii Dir irra deebi'ii waami garuu falanaa malee ta'uu qaba."
-
-#: 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 "Galeelota qofa deebisi, amaloota ulaagaalee fayyadami.Qabiyyee maqaa murateessuf haaluma wal fakkaatu faayyadami (fakkeenyaaf, hirama oofuu jabaa)"
+msgid "0 : Display OK button only."
+msgstr "0 : Qabduu TOLE qofa agarsiisi."
-#: 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 "Fakkeenya:"
+msgid "1 : Display OK and Cancel buttons."
+msgstr "1 : Qabduuwwan TOLE fi Dhiisi agarsiisi."
-#: 03020404.xhp
-#, fuzzy
+#: 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 "REM Faayiloota fi galeeloota hunda agarsiisi."
+msgid "2 : Display Abort, Retry, and Ignore buttons."
+msgstr "2 : Qabduuwwan Kuti, Lamyaali, Tuffadhu agarsiisi."
-#: 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=\"Directories:\""
+msgid "3 : Display Yes, No and Cancel buttons."
+msgstr "3 :Qabduuwwan Eeyyee, Miti, Dhiisi agarsiisi."
-#: 03020404.xhp
-#, fuzzy
+#: 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 "REM Galeeloota argadhu"
+msgid "4 : Display Yes and No buttons."
+msgstr "4 :Qabduuwwan Eeyyee fi Miti agarsiisi."
-#: 03070500.xhp
+#: 03010101.xhp
msgctxt ""
-"03070500.xhp\n"
-"tit\n"
+"03010101.xhp\n"
+"par_id3146119\n"
+"14\n"
"help.text"
-msgid "\"^\" Operator [Runtime]"
-msgstr "\"^\" Ogeejjii [Runtime]"
+msgid "5 : Display Retry and Cancel buttons."
+msgstr "5 : Qabduuwwan Lamyaali fi Dhiisi agarsiisi."
-#: 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>\"^\" ogeejjii (herreega)</bookmark_value>"
+msgid "16 : Add the Stop icon to the dialog."
+msgstr "16 : Sajoo dhaabi qaaqatti dabali."
-#: 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\">\"^\" Ogeejjii [Runtime]</link>"
+msgid "32 : Add the Question icon to the dialog."
+msgstr "32 : Sajoo gaafii qaaqatti dabali."
-#: 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 "lakkofsa expoonantiitti Olkaasuu"
+msgid "48 : Add the Exclamation icon to the dialog."
+msgstr "48 : Sajoo raajjeffanaa qaaqatti dabali."
-#: 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 "Caasimaa:"
+msgid "64 : Add the Information icon to the dialog."
+msgstr "64 : Sajoo odeeffannoo qaaqatti dabali."
-#: 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 : Qabduun tokkooffaa qaaqa keessaa akka qabduu durtii ti."
-#: 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 "Ulaagaalee:"
+msgid "256 : Second button in the dialog as default button."
+msgstr "256 : qabduun lamaffaa qaaqa keessaa akka qabduu durtii ti."
-#: 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>Bu'aa:</emph> himannon lakkofsa kamu bu'aa lakkoofsa expoonentitti olkaasuu qabu."
+msgid "512 : Third button in the dialog as default button."
+msgstr "512 : qabduun sadaffaa qaaqa keessaa akka qabduu durtii ti."
-#: 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>Himannoo:</emph>Gatii Lakkoofsa expoonantiitti olkaasuu barbaaddu."
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 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>Mul'isaan :</emph> Gatii expoonantii at himannoo olkaasuu barbaadde."
+msgid "Const sText1 = \"An unexpected error occurred.\""
+msgstr "Const sText1 = \"An unexpected error occurred.\""
-#: 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 "Fakkeenya:"
+msgid "Const sText2 = \"The program execution will continue, however.\""
+msgstr "Const sText2 = \"The program execution will continue, however.\""
-#: 03070500.xhp
-#, fuzzy
+#: 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 ) ) REM Raises by forming a logarithm"
+msgid "Const sText3 = \"Error\""
+msgstr "Const sText3 = \"Error\""
-#: 03080701.xhp
+#: 03010102.xhp
msgctxt ""
-"03080701.xhp\n"
+"03010102.xhp\n"
"tit\n"
"help.text"
-msgid "Sgn Function [Runtime]"
-msgstr "Faankishinii Sgn[Runtime]"
+msgid "MsgBox Function [Runtime]"
+msgstr "Faankishinii MsgBox [Runtime]"
-#: 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>Faankishinii Sgn</bookmark_value>"
+msgid "<bookmark_value>MsgBox function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii 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 Function [Runtime]\">Faankishinii Sgn [Runtime]</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 [Runtime]\">Faankishinii MsgBox [Runtime]</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 "Lakkoofsa itergaa gidduu -1 fi 1 deebisi yoo lakkofsi faankishiniitti darbu poozatiivii, nageetivii, ykn zeeroo ta'u agarsiise."
+msgid "Displays a dialog box containing a message and returns a value."
+msgstr "Sanduuqa qaaqa ergaa ofkkeessaa qabu agarsii akasumas gatii deebisi."
-#: 03080701.xhp
+#: 03010102.xhp
msgctxt ""
-"03080701.xhp\n"
-"hd_id3156023\n"
+"03010102.xhp\n"
+"hd_id3156281\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasimaa:"
+msgstr "caasimaa:"
-#: 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 "Gatii deebii:"
-#: 03080701.xhp
+#: 03010102.xhp
msgctxt ""
-"03080701.xhp\n"
-"par_id3150359\n"
+"03010102.xhp\n"
+"par_id3146985\n"
"6\n"
"help.text"
msgid "Integer"
-msgstr "Itergaa"
+msgstr "intergaa"
-#: 03080701.xhp
+#: 03010102.xhp
msgctxt ""
-"03080701.xhp\n"
-"hd_id3150543\n"
+"03010102.xhp\n"
+"hd_id3153363\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Ulaagaalee:"
+msgid "Parameter:"
+msgstr "ulaagaa:"
-#: 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>lakkoofsa:</emph> himannoon lakkofsaa gatii faankishiniin deebi'u murteessa."
+msgid "<emph>Text</emph>: String expression displayed as a message in the dialog box. Line breaks can be inserted with Chr$(13)."
+msgstr "<emph>Barruu</emph>n: ibsa diraa kan sanduuqa qaaqa keessatti akka ergaati argarsiifamu dha. Sarari cita Chr$(13) waliin saagamuu ni danda`a."
-#: 03080701.xhp
+#: 03010102.xhp
msgctxt ""
-"03080701.xhp\n"
-"par_id3150767\n"
+"03010102.xhp\n"
+"par_id3147317\n"
"9\n"
"help.text"
-msgid "NumExpression"
-msgstr "NumExpression"
+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>QaaqaMatduree</emph>: ibsa diraa kabala matduree qaaqa keessatti agarsiifamu dha. Osoo gatame, kabali matduree maqaan fayyadama duraa duubaan agarsiifama."
-#: 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 "Gatii deebii"
+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>TAkaakuu</emph>n: ibsa intergaa kamiyyuu ta`ee kan gosa qaaqa, akasumas lakkoofsa fi gosa qabduuwwan agarsiifamaii, figaso sajoo ifteessa. <emph>Akaakuun</emph> walquunnama biiti sarxaalee (maalimoota walquunnama gattiiwwan dabalatan ibsamu):"
-#: 03080701.xhp
+#: 03010102.xhp
msgctxt ""
-"03080701.xhp\n"
-"par_id3161833\n"
+"03010102.xhp\n"
+"par_id3154319\n"
"11\n"
"help.text"
-msgid "negative"
-msgstr "nagatiivii"
+msgid "<emph>Values</emph>"
+msgstr "<emph>Gatiiwwan</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 returns -1."
+msgid "0 : Display OK button only."
+msgstr "0 : Qabduu TOLE qofa agarsiisi."
-#: 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 : Qabduuwwan TOLE fi Dhiisi agarsiisi."
-#: 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 returns 0."
+msgid "2 : Display Abort, Retry, and Ignore buttons."
+msgstr "2 : Qabduuwwan Kuti, Lamyaali, Tuffadhu agarsiisi."
-#: 03080701.xhp
+#: 03010102.xhp
msgctxt ""
-"03080701.xhp\n"
-"par_id3153139\n"
+"03010102.xhp\n"
+"par_id3151075\n"
"15\n"
"help.text"
-msgid "positive"
-msgstr "poozatiivitti"
+msgid "3 : Display Yes, No, and Cancel buttons."
+msgstr "3 : Qabduuwwan Eeyyee, Miti, Dhiisi agarsiisi."
-#: 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 returns 1."
+msgid "4 : Display Yes and No buttons."
+msgstr "4 :Qabduuwwan Eeyyee fi Miti agarsiisi."
-#: 03080701.xhp
+#: 03010102.xhp
msgctxt ""
-"03080701.xhp\n"
-"hd_id3152576\n"
+"03010102.xhp\n"
+"par_id3155601\n"
"17\n"
"help.text"
-msgid "Example:"
-msgstr "Fakkeenya:"
-
-#: 03080701.xhp
-#, fuzzy
-msgctxt ""
-"03080701.xhp\n"
-"par_id3155416\n"
-"19\n"
-"help.text"
-msgid "Print sgn(-10) ' returns -1"
-msgstr "Print sgn(-10) REM returns -1"
-
-#: 03080701.xhp
-#, fuzzy
-msgctxt ""
-"03080701.xhp\n"
-"par_id3154096\n"
-"20\n"
-"help.text"
-msgid "Print sgn(0) ' returns 0"
-msgstr "Print sgn(0) REM returns 0"
+msgid "5 : Display Retry and Cancel buttons."
+msgstr "5 : Qabduuwwan Lamyaali fi Dhiisi agarsiisi."
-#: 03080701.xhp
-#, fuzzy
+#: 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) REM returns 1"
+msgid "16 : Add the Stop icon to the dialog."
+msgstr "16 : Sajoo dhaabi qaaqatti dabali."
-#: 03090400.xhp
+#: 03010102.xhp
msgctxt ""
-"03090400.xhp\n"
-"tit\n"
+"03010102.xhp\n"
+"par_id3153837\n"
+"19\n"
"help.text"
-msgid "Further Statements"
-msgstr "Himoota Dabalataa"
+msgid "32 : Add the Question icon to the dialog."
+msgstr "32 : Sajoo gaafii qaaqatti dabali."
-#: 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=\"Further Statements\">Himoota Dabalataa</link>"
+msgid "48 : Add the Exclamation Point icon to the dialog."
+msgstr "48 : Sajoo raajjeffanaa qaaqatti dabali."
-#: 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 "himoonni sa'aa darbee biraa kamuu keessa hin turre asitti ibsama."
+msgid "64 : Add the Information icon to the dialog."
+msgstr "64 : Sajoo odeeffannoo qaaqatti dabali."
-#: 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 "faankishinii LBound [Runtime]"
+msgid "128 : First button in the dialog as default button."
+msgstr "128 : Qabduun tokkooffaa qaaqa keessaa akka qabduu durtii ti."
-#: 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>faankishinii LBound</bookmark_value>"
+msgid "256 : Second button in the dialog as default button."
+msgstr "256 : qabduun lamaffaa qaaqa keessaa akka qabduu durtii ti."
-#: 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 Function [Runtime]\">faankishinii LBound [Runtime]</link>"
+msgid "512 : Third button in the dialog as default button."
+msgstr "512 : qabduun sadaffaa qaaqa keessaa akka qabduu durtii ti."
-#: 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 "Daangaa waraantoo gara gad aanaa deebisa."
+msgid "<emph>Return value:</emph>"
+msgstr "<emph>Gatii deebii:</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 "Caasimaa:"
+msgid "1 : OK"
+msgstr "1 : TOLE"
-#: 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 : Dhiisi"
-#: 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 "Gatii deebii:"
+msgid "3 : Abort"
+msgstr "3 : Kuti"
-#: 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 "Itergaa"
+msgid "4 : Retry"
+msgstr "4 : Lamyaali"
-#: 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 "Ulaagaalee:"
+msgid "5 : Ignore"
+msgstr "5 : Tuffadhu"
-#: 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>MaqaaWaraantoo:</emph> Maqaa waraantoo kan daangaan isaa upper(<emph>Ubound</emph>) ykn lower (<emph>LBound</emph>) ta'e deebisuuf si fayyada."
+msgid "6 : Yes"
+msgstr "6 : Eeyyee"
-#: 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> Itergaa kan gara kam upper(<emph>Ubound</emph>) ykn lower (<emph>LBound</emph>) akka deebi'u ibsu dha.Yoo gatiin omtiyyuu hin ibsamne, Daangaa gara jalqabaatu deebi'a."
+msgid "7 : No"
+msgstr "7 : Miti"
-#: 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 "Fakkeenya:"
-#: 03102900.xhp
-#, fuzzy
-msgctxt ""
-"03102900.xhp\n"
-"par_id3145365\n"
-"18\n"
-"help.text"
-msgid "Print LBound(sVar()) ' Returns 10"
-msgstr "Print LBound(sVar()) REM Returns 10"
-
-#: 03102900.xhp
-#, fuzzy
+#: 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()) REM Returns 20"
+msgid "sVar = MsgBox(\"Las Vegas\")"
+msgstr "sVar = MsgBox(\"Las Vegas\")"
-#: 03102900.xhp
-#, fuzzy
+#: 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) REM Returns 5"
+msgid "sVar = MsgBox(\"Las Vegas\",1)"
+msgstr "sVar = MsgBox(\"Las Vegas\",1)"
-#: 03102900.xhp
-#, fuzzy
+#: 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) REM Returns 70"
+msgid "sVar = MsgBox( \"Las Vegas\",256 + 16 + 2,\"Dialog title\")"
+msgstr "sVar = MsgBox( \"Las Vegas\",256 + 16 + 2,\"Dialog title\")"
-#: 03103000.xhp
+#: 03010103.xhp
msgctxt ""
-"03103000.xhp\n"
+"03010103.xhp\n"
"tit\n"
"help.text"
-msgid "UBound Function [Runtime]"
-msgstr "Faankishinii UBound [Runtime]"
+msgid "Print Statement [Runtime]"
+msgstr "Hima [Runtime] turii"
-#: 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>Faankishinii UBound</bookmark_value>"
+msgid "<bookmark_value>Print statement</bookmark_value>"
+msgstr "<bookmark_value>Hima turii</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 Function [Runtime]\">Faankishinii UBound [Runtime]</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 Statement [Runtime]\">Hima [Runtime] turii</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 "Daangaa waraantoo gara ol aanaa deebisa."
+msgid "Outputs the specified strings or numeric expressions to a dialog or to a file."
+msgstr "Diraa ifteessame yookiin lakkoofsa qaaqatti hiikame yookiin faayiliif ibsi."
-#: 03103000.xhp
+#: 03010103.xhp
msgctxt ""
-"03103000.xhp\n"
-"hd_id3150984\n"
+"03010103.xhp\n"
+"hd_id3145785\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasimaa:"
+msgstr "caasimaa:"
-#: 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 "Gatii deebii:"
+msgid "Parameter:"
+msgstr "ulaagaa:"
-#: 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>MaqaaFaayilii:</emph> ibsa lakkoofsaa kammiiyyuu ta`ee kan lakkoofsa faayilii hima banuutiin ka ta`ee faayilii duraa dubaa ofkeessatti qabatu dha."
+
+#: 03010103.xhp
+msgctxt ""
+"03010103.xhp\n"
+"par_id3163712\n"
"6\n"
"help.text"
-msgid "Integer"
-msgstr "Itergaa"
+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>Himannoo </emph>: hima lakkoofsa yookiin diraa maxxansamu dha. Himannoo baay`een tuq lamee addaan ba`u. Osoo qoodduudhaan aaddaan ba`an, himannoon taabii itti aanee dhaabbatuti galumsaa`a. Taabiin dhaabbatu sirraa`uu hin danda`u."
-#: 03103000.xhp
+#: 03010103.xhp
msgctxt ""
-"03103000.xhp\n"
-"hd_id3154347\n"
+"03010103.xhp\n"
+"par_id3153092\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Ulaagaalee:"
+msgid "<emph>Number</emph>: Number of spaces to be inserted by the <emph>Spc</emph> function."
+msgstr "<emph>Lakkoofsa</emph>: Lakkoofsa bakkootaa faankishinii <emph>Spc</emph> saagaman.."
-#: 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>MaqaaWaraantoo:</emph> Maqaa waraantoo kan daangaan isaa upper(<emph>Ubound</emph>) ykn lower (<emph>LBound</emph>) ta'e murteessuuf si fayyada."
+msgid "<emph>Pos</emph>: Spaces are inserted until the specified position."
+msgstr "<emph>Pos</emph>: Bakkoota hanga iddoon ifteessammuti saagamani dha."
-#: 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> Itergaa kan gara kam upper(<emph>Ubound</emph>) ykn lower (<emph>LBound</emph>) akka deebi'u ibsu dha.Yoo gatiin omtiyyuu hin ibsamne, Daangaa gara jalqabaatu deebi'a."
+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 "Osoo tuq lameen yookiin qoodduun himannoo booda maxxanfamuuf argaman, bu`uuri $[officename] barruu sanduuqa yerommaa keessattii fi sagantaa hojjoomuu maxassa maleen itti fufa. Yommuu himni maxxansaa biroon tuq lamee yookiin qoodduu malee dhumarratti uumamu, barruun maxxansamuu qaban hundi altakkaa ni maxxansamu."
-#: 03103000.xhp
+#: 03010103.xhp
msgctxt ""
-"03103000.xhp\n"
-"hd_id3153192\n"
+"03010103.xhp\n"
+"par_id3145272\n"
"10\n"
"help.text"
-msgid "Example:"
-msgstr "Fakkeenya:"
-
-#: 03103000.xhp
-#, fuzzy
-msgctxt ""
-"03103000.xhp\n"
-"par_id3152596\n"
-"18\n"
-"help.text"
-msgid "Print LBound(sVar()) ' Returns 10"
-msgstr "Print LBound(sVar()) REM Returns 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 "Himannoon lakkoofsa poositiivii bakka duraa waliin ajajamuu.ni maxxansamu. Himannoon neegatiivii mallattoo hi`isuudhaan ajajamuun ni maxxansamu. Osoo gatiiwwan tokko tokko hangana tuqaa bololi`uuf dheeratan, himannoon lakkoofsa dara duubaan ibsa expooneentii keessatti ni maxxansamu."
-#: 03103000.xhp
-#, fuzzy
+#: 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()) REM Returns 20"
+msgid "If the expression to be printed exceeds a certain length, the display will automatically wrap to the next line."
+msgstr "Osoo himannoon maxxansamu dheerina tokko tokko caale, agarsiifamni ofummaan sarara itti aanu marsa."
-#: 03103000.xhp
-#, fuzzy
+#: 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) REM Returns 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 "Faankishinii taabii saaguu, tuq lameen hammachiisuu, gidduu hima iddoo murtaa`ee bahaa yaadame, yookiin faankishinii <emph>Spc</emph> lakkoofsa bakkootaa ifteessame saaguun ni danda`ama."
-#: 03103000.xhp
-#, fuzzy
+#: 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) REM Returns 70"
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 03103400.xhp
+#: 03010200.xhp
msgctxt ""
-"03103400.xhp\n"
+"03010200.xhp\n"
"tit\n"
"help.text"
-msgid "Public Statement [Runtime]"
-msgstr "Hima Hundaa [Runtime]"
-
-#: 03103400.xhp
-msgctxt ""
-"03103400.xhp\n"
-"bm_id3153311\n"
-"help.text"
-msgid "<bookmark_value>Public statement</bookmark_value>"
-msgstr "<bookmark_value>Hima Hundaa</bookmark_value>"
+msgid "Functions for Screen Input"
+msgstr "Faankishinii naqaa argii"
-#: 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 Statement [Runtime]\">Hima Hundaa[Runtime]</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=\"Functions for Screen Input\">Faankishinii naqaa argii</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 "Jijjiiramaa ykn waraantoo sadarkaa moojuliitti gareessa( kunimmoo karqurxa ykn faankishinii keessa miti),kanaaf jijjiramaa fi waraantoon mankitaabaa fi moojulii tursa ammaaf jiran eeyyamamoo dha."
-
-#: 03103400.xhp
-msgctxt ""
-"03103400.xhp\n"
-"hd_id3150772\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Caasimaa:"
-
-#: 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 "Fakkeenya:"
+msgid "This section describes Runtime functions used to control screen input."
+msgstr "Kutaan kun faankishinoota sa`atii darbee naqaa argii too`achuuf gargaaran ibsa."
-#: 03132300.xhp
+#: 03010201.xhp
msgctxt ""
-"03132300.xhp\n"
+"03010201.xhp\n"
"tit\n"
"help.text"
-msgid "CreateUnoValue Function [Runtime]"
-msgstr "Faankishinii [Runtime] CreateUnoValue"
+msgid "InputBox Function [Runtime]"
+msgstr "Faankishinii Sanduuqa Naqaa [Runtime]"
-#: 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>faankishinii CreateUnoValue </bookmark_value>"
+msgid "<bookmark_value>InputBox function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii Sanduuqa Naqaa</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 Function [Runtime]\"> Faankishinii [Runtime] 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 Function [Runtime]\">Faankishinii Sanduuqa Naqaa [Runtime]</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 "Wanta gatiin isaa sirritti beekame kan sirna akaakuu Uno wabeeffatu bakka bu'u deebisa."
+msgid "Displays a prompt in a dialog at which the user can input text. The input is assigned to a variable."
+msgstr "Proompitii qaaqa iddoo fayyadamaan barruu naqu agarsiisi.Naqaan gara jijjiiramaatti ramadameera."
-#: 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 "Yommuu wanti kun gara Uno darbe ufmaan gara akaakuu walgitaa kamittuu ni jijjiirama. Akaakuun kun maqaa akaakuu Uno gahaa dhaan dirqama adda baafamu qaba."
+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 "Himni <emph>Sanduuqa Naqaa</emph> barruu qaaqa keessaan saaguuf tooftaa mijataa dha. Naqaa TOLE cuuqaasuun yookiin Deebii dhiibuun dhugoomsi.Naqaan akka gatii deebii faankishiniiti ni deebi`a. Osoo qaaqa dhiisi waliin cufte, <emph>Sanduuqni Naqaa</emph> diraa (\"\")dheerina zeeroo deebisa."
-#: 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 "$[officename] API deddeebiitiin akaakuu Any fayyadama. Inni kun akaakuu jijjiiramaa gama biraatiin naannoo biraarraa beekamu dha. Akaakuun kan of keessatti qabatu akaakuu dhalata Uno tokkoo fi walquunnama Uno keessatti fayyada."
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 03132300.xhp
+#: 03010201.xhp
msgctxt ""
-"03132300.xhp\n"
-"hd_id3147560\n"
+"03010201.xhp\n"
+"par_id3159201\n"
"5\n"
"help.text"
-msgid "Syntax:"
-msgstr "Caasimaa:"
+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 ) tartiiba baayitii argachuuf."
+msgid "Return value:"
+msgstr "Gatii deebii:"
-#: 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 "yoo jijjiiruun CreateUnoValue gara akaakuu Uno adda baafameetti hin danda'amne, dogoggorri ni dhalata. tajaajila jijjiirraf TypeConverter ni fayyada."
+msgid "String"
+msgstr "Diraa"
-#: 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 "Faankishiniin kun ni fayyada jedhame kan yaadamee yoo haalli jijjiiruu durtii Basic gara akaakuu Uno ttii gahaa ta'uu baate dha. Haalli kun dhalachuu kan danda'u yeroo ati walquunnama generic any irratti hundaa'e kan akka XPropertySet::setPropertyValue( Name, Value ) or X???Container::insertBy???( ???, Value ), from $[officename] Basic dha. Sababa tajaajila walgitaa qofa keessatti ibsamaniif, Basic runtime akaaku akkanaa beekuu hin danda'u."
+msgid "Parameter:"
+msgstr "ulaagaa:"
-#: 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 "Haala akkanaa irratti , $[officename] Basic akaakuu walitti firoomsi gaarii kan Basic type ati jijjiruu barbaaddu filata. Haa ta'u malee, yoo akaakuun hin taane filatame,dogoggorri ni dhalata.Gatii akaakuu Uno hin beekamne uumuuf faankishinii CreateUnoValue() tti fayyadami."
+msgid "<emph>Msg</emph>: String expression displayed as the message in the dialog box."
+msgstr "<emph>Msg</emph>: Himannoo diraa akka ergaatti sanduuqa qaaqa keessaatti agarsiisamu dha."
-#: 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 "Gatiiwwan non-Any dabarsuufis itti fayyadamuu ni dandeessa, garuu hin gorfamu.yoo Basic durseetoo gosa galtee ni beeka ta'e, faankishinii CreateUnoValue() fayyadamuun dalagaalee jijjirraa dabalataa kan raawwii Basic suuta gochisiisu fida."
+msgid "<emph>Title</emph>: String expression displayed in the title bar of the dialog box."
+msgstr "<emph>Matduree</emph>: Himannoo diraa kabala matduree sanduuqa qaaqa keessaatti agarsiisamu dha."
-#: 03120303.xhp
+#: 03010201.xhp
msgctxt ""
-"03120303.xhp\n"
-"tit\n"
+"03010201.xhp\n"
+"par_id3154307\n"
+"11\n"
"help.text"
-msgid "Left Function [Runtime]"
-msgstr "Faankishinii Bitaa [Runtime]"
+msgid "<emph>Default</emph>: String expression displayed in the text box as default if no other input is given."
+msgstr "<emph>Durtii</emph>: Himannoo diraa sanduuqa barruu keessaatti akka durtiitti yoo naqaan biraan hin jiru ta`e agarsiisamu dha."
-#: 03120303.xhp
+#: 03010201.xhp
msgctxt ""
-"03120303.xhp\n"
-"bm_id3149346\n"
+"03010201.xhp\n"
+"par_id3147573\n"
+"12\n"
"help.text"
-msgid "<bookmark_value>Left function</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii Bitaa</bookmark_value>"
+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>: Himannoo intergaa kan iddoo sardalaa kan qaaqa ifteessu dha. Iddoon coordinaatii sirrii fi kan foddaa fayyadama ofisii hin ibsine dha."
-#: 03120303.xhp
+#: 03010201.xhp
msgctxt ""
-"03120303.xhp\n"
-"hd_id3149346\n"
-"1\n"
+"03010201.xhp\n"
+"par_id3156024\n"
+"13\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 Function [Runtime]\">Faankishinii Bitaa [Runtime]</link>"
+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>: Himannoo intergaa kan iddoo sarjaa kan qaaqa ifteessu dha. Iddoon coordinaatii sirrii fi kan foddaa fayyadama ofisii hin ibsine dha.."
-#: 03120303.xhp
+#: 03010201.xhp
msgctxt ""
-"03120303.xhp\n"
-"par_id3147242\n"
-"2\n"
+"03010201.xhp\n"
+"par_id3153897\n"
+"14\n"
"help.text"
-msgid "Returns the number of leftmost characters that you specify of a string expression."
-msgstr "Baay'ina arfiilee Moggaa bitaa kanneen himata diraa ibsan deebisa."
+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 "Osoo <emph>x_pos</emph> fi <emph>y_pos</emph> badan, qaaqan argii qixxalaman ta`a. Iddoon <link href=\"text/sbasic/shared/00000002.xhp#twips\" name=\"twips\">twiipsi</link> keessatti ifteessamu."
-#: 03120303.xhp
+#: 03010201.xhp
msgctxt ""
-"03120303.xhp\n"
-"hd_id3156153\n"
-"3\n"
+"03010201.xhp\n"
+"hd_id3149456\n"
+"15\n"
"help.text"
-msgid "Syntax:"
-msgstr "Caasimaa:"
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 03120303.xhp
+#: 03010201.xhp
msgctxt ""
-"03120303.xhp\n"
-"par_id3150771\n"
-"4\n"
+"03010201.xhp\n"
+"par_id3154367\n"
+"18\n"
"help.text"
-msgid "Left (Text As String, n As Long)"
-msgstr "Left (Text As String, n As Long)"
+msgid "sText = InputBox (\"Please enter a phrase:\",\"Dear User\")"
+msgstr "sText = InputBox (\"Please enter a phrase:\",\"Dear User\")"
-#: 03120303.xhp
+#: 03010201.xhp
msgctxt ""
-"03120303.xhp\n"
-"hd_id3153824\n"
-"5\n"
+"03010201.xhp\n"
+"par_id3151042\n"
+"19\n"
"help.text"
-msgid "Return value:"
-msgstr "Gatii deebii:"
+msgid "MsgBox ( sText , 64, \"Confirmation of phrase\")"
+msgstr "MsgBox ( sText , 64, \"Confirmation of phrase\")"
-#: 03120303.xhp
+#: 03010300.xhp
msgctxt ""
-"03120303.xhp\n"
-"par_id3147530\n"
-"6\n"
+"03010300.xhp\n"
+"tit\n"
"help.text"
-msgid "String"
-msgstr "Diraa"
+msgid "Color Functions"
+msgstr "Halluu faankishinoota"
-#: 03120303.xhp
+#: 03010300.xhp
msgctxt ""
-"03120303.xhp\n"
-"hd_id3148946\n"
-"7\n"
+"03010300.xhp\n"
+"hd_id3157896\n"
+"1\n"
"help.text"
-msgid "Parameters:"
-msgstr "Ulaagaalee:"
+msgid "<link href=\"text/sbasic/shared/03010300.xhp\" name=\"Color Functions\">Color Functions</link>"
+msgstr "<link href=\"text/sbasic/shared/03010300.xhp\" name=\"Color Functions\">Halluu faankishinoota</link>"
-#: 03120303.xhp
+#: 03010300.xhp
msgctxt ""
-"03120303.xhp\n"
-"par_id3148552\n"
-"8\n"
+"03010300.xhp\n"
+"par_id3155555\n"
+"2\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression that you want to return the leftmost characters from."
-msgstr "<emph>Barruu:</emph> Himata diraa kanneen arfiilee moggaa bitaa irraa deebisuuf barbaaddu dha."
+msgid "This section describes Runtime functions used to define colors."
+msgstr "kutaan kun faankishinii sa`atii darbee halluuwwan ibsuuf gargaaran hiika."
-#: 03120303.xhp
+#: 03010301.xhp
msgctxt ""
-"03120303.xhp\n"
-"par_id3149456\n"
-"9\n"
+"03010301.xhp\n"
+"tit\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> Himata lakkoofsaa kan baay'ina arfiilee akka deebi'an barbaadduu ibsa. Yoo <emph>n</emph> = 0 ta'e, Diraa dheerinni isaa zeeroo ta'etu deebi'a. Gatii eeyyamamaa inni guddaan 65535 dha."
+msgid "Blue Function [Runtime]"
+msgstr "Faankishinii [Runtime] cuquliisa"
-#: 03120303.xhp
+#: 03010301.xhp
msgctxt ""
-"03120303.xhp\n"
-"par_id3150791\n"
-"10\n"
+"03010301.xhp\n"
+"bm_id3149180\n"
"help.text"
-msgid "The following example converts a date in YYYY.MM.DD format to MM/DD/YYYY format."
-msgstr "Fakkeenyi armaan gadii haala guyyaa bifa YYYY.MM.DD irraa gara bifa MM/DD/YYYY tti jijjiira."
+msgid "<bookmark_value>Blue function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii cuquliisa</bookmark_value>"
-#: 03120303.xhp
+#: 03010301.xhp
msgctxt ""
-"03120303.xhp\n"
-"hd_id3125863\n"
-"11\n"
+"03010301.xhp\n"
+"hd_id3149180\n"
+"1\n"
"help.text"
-msgid "Example:"
-msgstr "Fakkeenya:"
+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 Function [Runtime]\">Faankishinii [Runtime] cuquliisa</link>"
-#: 03120303.xhp
+#: 03010301.xhp
msgctxt ""
-"03120303.xhp\n"
-"par_id3150448\n"
-"15\n"
+"03010301.xhp\n"
+"par_id3156343\n"
+"2\n"
"help.text"
-msgid "sInput = InputBox(\"Please input a date in the international format 'YYYY-MM-DD'\")"
-msgstr "sInput = InputBox(\"Please input a date in the international format 'YYYY-MM-DD'\")"
+msgid "Returns the blue component of the specified color code."
+msgstr "Gosa magariisa lakkaddaa halluu ifteessamee deebisi."
-#: 03020412.xhp
+#: 03010301.xhp
msgctxt ""
-"03020412.xhp\n"
-"tit\n"
+"03010301.xhp\n"
+"hd_id3149670\n"
+"3\n"
"help.text"
-msgid "Name Statement [Runtime]"
-msgstr "Hima maqaa [Runtime]"
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 03020412.xhp
+#: 03010301.xhp
msgctxt ""
-"03020412.xhp\n"
-"bm_id3143268\n"
+"03010301.xhp\n"
+"par_id3149457\n"
+"4\n"
"help.text"
-msgid "<bookmark_value>Name statement</bookmark_value>"
-msgstr "<bookmark_value>Hima maqaa </bookmark_value>"
+msgid "Blue (Color As Long)"
+msgstr "Blue (Color As Long)"
-#: 03020412.xhp
+#: 03010301.xhp
msgctxt ""
-"03020412.xhp\n"
-"hd_id3143268\n"
-"1\n"
+"03010301.xhp\n"
+"hd_id3149656\n"
+"5\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 Statement [Runtime]\">Hima maqaa [Runtime]</link>"
+msgid "Return value:"
+msgstr "Gatii deebii:"
-#: 03020412.xhp
+#: 03010301.xhp
msgctxt ""
-"03020412.xhp\n"
-"par_id3154346\n"
-"2\n"
+"03010301.xhp\n"
+"par_id3154365\n"
+"6\n"
"help.text"
-msgid "Renames an existing file or directory."
-msgstr "Faayilii ykn galeeloo jiru maqaa jijjiiri."
+msgid "Integer"
+msgstr "intergaa"
-#: 03020412.xhp
+#: 03010301.xhp
msgctxt ""
-"03020412.xhp\n"
-"hd_id3156344\n"
-"3\n"
+"03010301.xhp\n"
+"hd_id3156423\n"
+"7\n"
"help.text"
-msgid "Syntax:"
-msgstr "Caasima:"
+msgid "Parameter:"
+msgstr "ulaagaa:"
-#: 03020412.xhp
+#: 03010301.xhp
msgctxt ""
-"03020412.xhp\n"
-"par_id3153381\n"
-"4\n"
+"03010301.xhp\n"
+"par_id3150448\n"
+"8\n"
"help.text"
-msgid "Name OldName As String As NewName As String"
-msgstr "Name OldName As String As NewName As String"
+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>Gatii halluu</emph>: ibsa intergaan dheeraa kan <link href=\"text/sbasic/shared/00000003.xhp#farbcodes\" name=\"color code\">lakkaddaa halluu </link> gosa magariisa kamiyyuu kan deebi`uu ibsa dha."
-#: 03020412.xhp
+#: 03010301.xhp
msgctxt ""
-"03020412.xhp\n"
-"hd_id3153362\n"
-"5\n"
+"03010301.xhp\n"
+"hd_id3153091\n"
+"9\n"
"help.text"
-msgid "Parameters:"
-msgstr "Ulaagaalee:"
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 03020412.xhp
+#: 03010301.xhp
msgctxt ""
-"03020412.xhp\n"
-"par_id3151210\n"
-"6\n"
+"03010301.xhp\n"
+"par_id3154012\n"
+"13\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> Himamsa diraa kammiyyu kan maqaa faayilii ibsu xurree dabalatee. Kanas fayyadamuu dandessa <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">sirnaasxaa URL</link>."
+msgid "MsgBox \"The color \" & lVar & \" consists of:\" & Chr(13) &_"
+msgstr "MsgBox \"The color \" & lVar & \" consists of:\" & Chr(13) &_"
-#: 03020412.xhp
+#: 03010301.xhp
msgctxt ""
-"03020412.xhp\n"
-"hd_id3125863\n"
-"8\n"
+"03010301.xhp\n"
+"par_id3148645\n"
+"14\n"
"help.text"
-msgid "Example:"
-msgstr "Fakkeenya:"
+msgid "\"red= \" & Red(lVar) & Chr(13)&_"
+msgstr "\"red= \" & Red(lVar) & Chr(13)&_"
-#: 03020412.xhp
-#, fuzzy
+#: 03010301.xhp
msgctxt ""
-"03020412.xhp\n"
-"par_id3152462\n"
+"03010301.xhp\n"
+"par_id3159155\n"
+"15\n"
+"help.text"
+msgid "\"green= \" & Green(lVar) & Chr(13)&_"
+msgstr "\"green= \" & Green(lVar) & Chr(13)&_"
+
+#: 03010301.xhp
+msgctxt ""
+"03010301.xhp\n"
+"par_id3147319\n"
"16\n"
"help.text"
-msgid "MsgBox \"File already exists\""
-msgstr "msgbox \"Faayiliin duraanuu ni jira\""
+msgid "\"blue= \" & Blue(lVar) & Chr(13) , 64,\"colors\""
+msgstr "\"blue= \" & Blue(lVar) & Chr(13) , 64,\"colors\""
-#: 03104600.xhp
+#: 03010302.xhp
msgctxt ""
-"03104600.xhp\n"
+"03010302.xhp\n"
"tit\n"
"help.text"
-msgid "EqualUnoObjects Function [Runtime]"
-msgstr "Faankishinii EqualUnoObjects [Runtime]"
+msgid "Green Function [Runtime]"
+msgstr "Faankishinii [Runtime] Magariisa"
-#: 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>Faankishinii EqualUnoObjects</bookmark_value>"
+msgid "<bookmark_value>Green function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii magariisa</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 Function [Runtime]\">Faankishinii EqualUnoObjects [Runtime]</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 Function [Runtime]\">Faankishinii [Runtime] Magariisa</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 "Yoo wantootni Basic Uno ibsaman lamaan, gatii wanta Uno tokko bakka bu'an, dhugaatu deebi'a."
+msgid "Returns the Green component of the given color code."
+msgstr "Gosa cuquliisa kan lakkadda halluu kennamee deebisi."
-#: 03104600.xhp
+#: 03010302.xhp
msgctxt ""
-"03104600.xhp\n"
-"hd_id3148538\n"
+"03010302.xhp\n"
+"hd_id3154140\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasimaa:"
+msgstr "caasimaa:"
-#: 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 "Gatii Deebii:"
+msgstr "Gatii deebii:"
-#: 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 "intergaa"
-#: 03104600.xhp
+#: 03010302.xhp
msgctxt ""
-"03104600.xhp\n"
-"hd_id3145315\n"
+"03010302.xhp\n"
+"hd_id3154909\n"
"7\n"
"help.text"
-msgid "Example:"
-msgstr "Fakkeenya:"
+msgid "Parameter:"
+msgstr "ulaagaa:"
-#: 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 "// Copy of objects -> same instance"
+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>Halluu</emph>: Himannoo intergaa dheeraa kan <link href=\"text/sbasic/shared/00000003.xhp#farbcodes\" name=\"color code\">lakkadda halluu</link> gosa cuquliisaa deebisuu ifteessa."
-#: 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 "// Copy of structs as value -> new instance"
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 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 \"The color \" & lVar & \" contains the components:\" & 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 = \" & 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 = \" & 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 = \" & blue(lVar) & Chr(13) , 64,\"colors\""
+
+#: 03010303.xhp
+msgctxt ""
+"03010303.xhp\n"
"tit\n"
"help.text"
-msgid "FileAttr-Function [Runtime]"
-msgstr "Faankishinii FileAttr [Runtime]"
+msgid "Red Function [Runtime]"
+msgstr "Faankishinii [Runtime] diimaa"
-#: 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>Faankishinii FileAttr</bookmark_value>"
+msgid "<bookmark_value>Red function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii diimaa</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-Function [Runtime]\">Faankishinii FileAttr[Runtime]</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 Function [Runtime]\">Faankishinii [Runtime] diimaa</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 "Haalata gahinsaa deebisi ykn lakkofsa gahiinsa faayilii kan hima banaa dhaan banamu.Lakkofsi gahiinsa faayilii sirna dalagaa (OSH= Qabannoo sirna dalagaa)"
+msgid "Returns the Red component of the specified color code."
+msgstr "Gosa diimaa lakkaddaa halluu ifteessamee deebisi."
-#: 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 "Sirna dalagaa laklamee 32 yoo fayyadamte,ga'uumsa lakkoofsaa faayilii murteessuuf faankishinii FileAttr fayyadamuu hin dandeesssu."
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 03020405.xhp
+#: 03010303.xhp
msgctxt ""
-"03020405.xhp\n"
-"par_id3163713\n"
+"03010303.xhp\n"
+"par_id3150448\n"
"4\n"
"help.text"
-msgid "See also: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>"
-msgstr "Kanas ilaali: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Bani</link>"
+msgid "Red (ColorNumber As Long)"
+msgstr "Red (ColorNumber As Long)"
-#: 03020405.xhp
+#: 03010303.xhp
msgctxt ""
-"03020405.xhp\n"
-"hd_id3151116\n"
+"03010303.xhp\n"
+"hd_id3151042\n"
"5\n"
"help.text"
-msgid "Syntax:"
-msgstr "Caasima:"
+msgid "Return value:"
+msgstr "Gatii deebii:"
-#: 03020405.xhp
+#: 03010303.xhp
msgctxt ""
-"03020405.xhp\n"
-"par_id3154012\n"
+"03010303.xhp\n"
+"par_id3145173\n"
"6\n"
"help.text"
-msgid "FileAttr (FileNumber As Integer, Attribute As Integer)"
-msgstr "FileAttr (FileNumber As Integer, Attribute As Integer)"
+msgid "Integer"
+msgstr "intergaa"
-#: 03020405.xhp
+#: 03010303.xhp
msgctxt ""
-"03020405.xhp\n"
-"hd_id3147349\n"
+"03010303.xhp\n"
+"hd_id3154685\n"
"7\n"
"help.text"
-msgid "Return value:"
-msgstr "Gatii deebisi:"
+msgid "Parameter:"
+msgstr "ulaagaa:"
-#: 03020405.xhp
+#: 03010303.xhp
msgctxt ""
-"03020405.xhp\n"
-"par_id3146974\n"
+"03010303.xhp\n"
+"par_id3150440\n"
"8\n"
"help.text"
-msgid "Integer"
-msgstr "Itergaa"
+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>Lakkoofsa Halluu</emph>: Himannoo intergaa dheeraa kan <link href=\"text/sbasic/shared/00000003.xhp#farbcodes\" name=\"color code\">lakkadda halluu</link> gosa diimaa eenyumaayyuu deebisuu ifteessa."
-#: 03020405.xhp
+#: 03010303.xhp
msgctxt ""
-"03020405.xhp\n"
-"hd_id3153728\n"
+"03010303.xhp\n"
+"hd_id3148575\n"
"9\n"
"help.text"
-msgid "Parameters:"
-msgstr "Ulaagaalee:"
-
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"par_id3151074\n"
-"10\n"
-"help.text"
-msgid "<emph>FileNumber:</emph> The number of the file that was opened with the Open statement."
-msgstr "<emph>Lakkofsa faayilii:</emph> Hamma faayilii baname hima baneme wajjin."
-
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"par_id3144766\n"
-"11\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>Amaloota:</emph> Himamsa itergaa kan odeeffannoo faayilii deebisuu barbaaddee agarsiisu .Gatiiwwan armaan gadii ni danda'amu."
-
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"par_id3147396\n"
-"12\n"
-"help.text"
-msgid "1: The FileAttr-Function indicates the access mode of the file."
-msgstr "1: Faankishiniin FileAttr jedhamu haalata ga'uumsa faayilii agarsiisa."
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 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 "Faankishiniin FileAttr jedhamu sirna dalagaa gah'uumsa lakkoofsaa deebisa."
+msgid "MsgBox \"The color \" & lVar & \" consists of:\" & Chr(13) &_"
+msgstr "MsgBox \"The color \" & lVar & \" consists of:\" & 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 "Yoo amaloota ulaagaalee gatii 1 ibsite, gatiin armaan kanaa gadii fayyadamee deebisa."
+msgid "\"red= \" & red(lVar) & Chr(13)&_"
+msgstr "\"red= \" & 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 (faayilii naqaaf banamu)"
+msgid "\"green= \" & green(lVar) & Chr(13)&_"
+msgstr "\"green= \" & 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 (faayilii bahaaf banamu)"
-
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"par_id3155066\n"
-"17\n"
-"help.text"
-msgid "4 - RANDOM (file open for random access)"
-msgstr "4 - RANDOM (faayilii gahiinsa darbee darbee banamuu )"
+msgid "\"blue= \" & blue(lVar) & Chr(13) , 64,\"colors\""
+msgstr "\"blue= \" & blue(lVar) & Chr(13) , 64,\"colors\""
-#: 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 (faayilii miiltessaaf baname)"
+msgid "QBColor Function [Runtime]"
+msgstr "Faankishinii [Runtime] 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 (faayilii haalata lameetiin baname)."
+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 Function [Runtime]\">Faankishinii [Runtime] 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 "Fakkeenya:"
+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 "Lakkadda halluu <link href=\"text/sbasic/shared/03010305.xhp\" name=\"RGB\">RGB</link> kan akka gatii halluutti darbu tartiiba MS-DOS keessaa cirna saganteessuu irratti hundaa`uudhan deebisi."
-#: 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 "Maxxansa #iNumber, \"Kun Sarara barruuti\""
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 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,\"Access mode\""
+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,\"File attribute\""
+msgid "Return value:"
+msgstr "Gatii deebii:"
-#: 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 "Hima tasaa[Runtime]"
+msgid "Long"
+msgstr "Dheeraa"
-#: 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>Hima tasaa</bookmark_value>"
+msgid "Parameter:"
+msgstr "ulaagaa:"
-#: 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 Statement [Runtime]\">Hima tasaa [Runtime]</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>Lakkoofsa Halluu</emph>: Himannoo intergaa kamiyyuu ta`ee gatii halluu tartiiba MS-DOS irraa cirna saganteessuu irratti hundaa`uudhaan akka halluutti darbe ifteessa dha."
-#: 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 "Lakkoofsa tasa maddisaa jalqabsiisuu."
+msgid "<emph>ColorNumber</emph> can be assigned the following values:"
+msgstr "<emph>Lakkoofsi Halluu</emph> akka gatiiwwan armaan gadiitti ramadamu:"
-#: 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 "Caasimaa:"
+msgid "0 : Black"
+msgstr "0 : Gurracha"
-#: 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 : cuquliisa"
-#: 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 "Ulaagaalee:"
+msgid "2 : Green"
+msgstr "2 : Magariisa"
-#: 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>Lakkoofsa:</emph> Itergaa eenyummaa lakkoofsa guyyaa of keessaa qabu."
+msgid "3 : Cyan"
+msgstr "3 : Hallataa"
-#: 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 "Fakkeenya:"
+msgid "4 : Red"
+msgstr "4 : Diimaa"
-#: 03080301.xhp
-#, fuzzy
+#: 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) ) REM Range from 0 to 9"
+msgid "5 : Magenta"
+msgstr "5 : Maagneetaa"
-#: 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,\"Spectral Distribution\""
+msgid "6 : Yellow"
+msgstr "6 : Keelloo"
-#: 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 "Faankishinii DimArray [Runtime]"
+msgid "7 : White"
+msgstr "7 : Adii"
-#: 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>Faankishinii DimArray</bookmark_value>"
+msgid "8 : Gray"
+msgstr "8 : Fajajaa"
-#: 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 Function [Runtime]\">Faankishinii DimArray [Runtime]</link>"
+msgid "9 : Light Blue"
+msgstr "9 : Cuquliisa Ibsi"
-#: 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 "Waraantoo jijjiiramaa deebisa."
+msgid "10 : Light Green"
+msgstr "10 : Magariisa Ibsi"
-#: 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 "Caasimaa:"
+msgid "11 : Light Cyan"
+msgstr "11 : Hallataa Ibsi"
-#: 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 : Diimaa Ibsi"
-#: 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 "Dabalataan <link href=\"text/sbasic/shared/03104200.xhp\" name=\"Array\">Waraantoo</link> ilaali"
+msgid "13 : Light Magenta"
+msgstr "13 : Maagneetaa Ibsi"
-#: 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 "Yoo ulaagaalee omtiyyuu hin dabarfamne, waraantoo duwwaatu uumama(akka Dim A() kan tartiiba dheerina 0 Uno keessaatiin walfakkaata). Yoo ulaagaaleen adda baafaman, ulaagaalee maraaf garri ni uumama."
+msgid "14 : Light Yellow"
+msgstr "14 : Keelloo Ibsi"
-#: 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 "Ulaagaalee:"
+msgid "15 : Bright White"
+msgstr "15 : Adii Ifaa"
-#: 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>Tarree qajeelfamaa:</emph> Tarree baay'ina qajeelfamootaa kamiyyuu kanneen qoodduudhaan addan bahani dha."
+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 "Faankishiniin kun fayyadamoota kan lakkaddoota halluu armaan olii gargaaraman MS-DOS kan BASIC irratti hundaa`e irra jijjiiruuf gargaara.Faankishiniin gatii intergaa dheeraa halluu IDE $[officename] keessatti fayyadan agarsiisan deebisa."
-#: 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 "Fakkeenya:"
-#: 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 ) walfakkaataa DIM a( 2, 2, 4 )"
+msgid "MsgBox stext,0,\"Color \" & iColor"
+msgstr "MsgBox stext,0,\"Color \" & iColor"
-#: 03103600.xhp
+#: 03010305.xhp
msgctxt ""
-"03103600.xhp\n"
+"03010305.xhp\n"
"tit\n"
"help.text"
-msgid "TypeName Function; VarType Function[Runtime]"
-msgstr "Faankishinii TypeName; Faankishinii VarType[Runtime]"
-
-#: 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>faankishinii TypeName</bookmark_value><bookmark_value>Faankishinii VarType</bookmark_value>"
+msgid "RGB Function [Runtime]"
+msgstr "Faankishinii RGB [Runtime]"
-#: 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 Function; VarType Function[Runtime]\">Faankishinii TypeName; Faankishinii VarType[Runtime]</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 Function [Runtime]\">Faankishinii RGB [Runtime]</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 "Diraa(TypeName) ykn gatii lakkoofsaa(VarType) kan odeeffannoo jijjiiramaa qabu deebisa."
+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 color value\">Gatii halluu intergaa dheeraa</link> akaakuuwwan diimaa, magariisaa fi cuquliisa irraa ijaarame deebisi."
-#: 03103600.xhp
+#: 03010305.xhp
msgctxt ""
-"03103600.xhp\n"
-"hd_id3153825\n"
+"03010305.xhp\n"
+"hd_id3147229\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasimaa:"
+msgstr "caasimaa:"
-#: 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 "Gatii deebii:"
-#: 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 "Diraa;Itergaa"
+msgid "Long"
+msgstr "Dheeraa"
-#: 03103600.xhp
+#: 03010305.xhp
msgctxt ""
-"03103600.xhp\n"
-"hd_id3146795\n"
+"03010305.xhp\n"
+"hd_id3154013\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Ulaagaalee:"
+msgid "Parameter:"
+msgstr "ulaagaa:"
-#: 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>Jijjiiramaa:</emph>Jijjiiramaa akaakuu isaa murteessuuf barbaaddu dha. Gatiiwwan armaan gadiitti fayyadamuu ni dandeessa:"
+msgid "<emph>Red</emph>: Any integer expression that represents the red component (0-255) of the composite color."
+msgstr "<emph>Diimaa</emph>: Himannoo intergaa kamiyyuu akaakuu diimaa (0-255) kan halluu makaa baka bu`u dha."
-#: 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 "Jefuraa"
+msgid "<emph>Green</emph>: Any integer expression that represents the green component (0-255) of the composite color."
+msgstr "<emph>Magariisa</emph>: Himannoo intergaa kamiyyuu akaakuu magariisa (0-255) kan halluu makaa baka bu`u dha."
-#: 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>Cuquliisa</emph>: Himannoo intergaa kamiyyuu akaakuu cuquliisa (0-255) kan halluu makaa baka bu`u dha."
-#: 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 "Akaakuu jijjiiramaa"
-
-#: 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 "Jijjiiramaa Boolean"
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 03103600.xhp
+#: 03010305.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3153138\n"
+"03010305.xhp\n"
+"par_id3145647\n"
"15\n"
"help.text"
-msgid "Date"
-msgstr "Guyyaa"
+msgid "MsgBox \"The color \" & lVar & \" consists of:\" & Chr(13) &_"
+msgstr "MsgBox \"The color \" & lVar & \" consists of:\" & 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= \" & 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 "Jijjiiramaa guyyaa"
+msgid "\"green= \" & green(lVar) & Chr(13)&_"
+msgstr "\"green= \" & 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 "Dachaa"
+msgid "\"blue= \" & blue(lVar) & Chr(13) , 64,\"colors\""
+msgstr "\"blue= \" & blue(lVar) & Chr(13) , 64,\"colors\""
-#: 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 "Faankishinoota I/O Faayilii"
-#: 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 "Jijjiiramaa qabxii bololi'aa lamee"
+msgid "<link href=\"text/sbasic/shared/03020000.xhp\" name=\"File I/O Functions\">File I/O Functions</link>"
+msgstr "<link href=\"text/sbasic/shared/03020000.xhp\" name=\"File I/O Functions\">Faankishinoota I/O Faayilii</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 "Itergaa"
+msgid "Use File I/O functions to create and manage user-defined (data) files."
+msgstr "Faayiloota (data) itti gargaaraman ibsame uumuu fi to`achuuf Faankishinoota I/O Faayilii gargaarami."
-#: 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 "Faayiloota \"walmadaala\" uumuuf akka ni tajaajilan faankishinoota kan gargaarami, achiis kuusaa tokko tokko olkaa`uu fi dabalataan lakkoofsa kuusaa isaaniin fe`uun ni danda`ama.Faankishinootni I/O Faayilii odeeffannoo kan akka hammamtaa faayilii,qindaa`inoota xurree ammee, yookiin uumuu guyyaa faayilii yookiin galoolee kennuudhaan faayiloota to`achuuf gargaara."
-#: 03103600.xhp
+#: 03020100.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3154490\n"
-"23\n"
+"03020100.xhp\n"
+"tit\n"
"help.text"
-msgid "Integer variable"
-msgstr "Jijjiiramaa itergaa"
+msgid "Opening and Closing Files"
+msgstr "Banuu fi Cufuu Faayiloota"
-#: 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 "Dheeraa"
+msgid "<link href=\"text/sbasic/shared/03020100.xhp\" name=\"Opening and Closing Files\">Opening and Closing Files</link>"
+msgstr "<link href=\"text/sbasic/shared/03020100.xhp\" name=\"Opening and Closing Files\">Banuu fi Cufuu Faayiloota</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 "Hima cufa [Runtime]"
-#: 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 "Jijjiiramaa itergaa dheeraa"
+msgid "<bookmark_value>Close statement</bookmark_value>"
+msgstr "<bookmark_value>Hima cufa</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 "Wanta"
+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 Statement [Runtime]\">Hima cufa [Runtime]</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 "Faayilii ifteessamaa hima faayilii waliin banamee ture cufi."
-#: 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 "Jijjiiramaa wantaa"
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 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 "Qeenxee"
+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 "Ulaagaalee:"
-#: 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 "Jijjiiramaa tuqaa-bololi'aa qeenxee"
+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>Lakkofsi Faayilii:</emph> himannoo intergaa kamiiyyuu ta`ee lakkoofsa karaa deetaa kan hima <emph>Bani</emph> waliin baname ifteessa."
-#: 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 "Diraa"
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 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, \"First line of text\""
-#: 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 "Jijjiirama diraa"
+msgid "Print #iNumber, \"Another line of text\""
+msgstr "Print #iNumber, \"Another line of text\""
-#: 03103600.xhp
+#: 03020102.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3145149\n"
-"36\n"
+"03020102.xhp\n"
+"tit\n"
"help.text"
-msgid "Variant"
-msgstr "Jijjiiramaa"
+msgid "FreeFile Function[Runtime]"
+msgstr "Faankishinii[Runtime] Faayilii Duwwaa"
-#: 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>Faankishinii Faayilii Duwwaa</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 "Jijjiiramaa jijjiiramu(akaakuuwwan hiikaan ibsaman hunda qabaachuu danda'a)"
+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 Function[Runtime]\">Faankishinii[Runtime] Faayilii Duwwaa</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 "Duwwaa"
+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 "Faayilii banameef lakkoofsa faayilii itti aanuun argamu deebisi. Lakkoofsa faayilii kan duranuu faayilii ammee banameen hin gargaaramne gargaaramuun faayilii banuuf faankishinii kannatti gargaarami."
-#: 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 "caasimaa:"
-#: 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 "Jijjiiramaan hin jalqabsiifamne"
+msgid "Return value:"
+msgstr "Gatii deebii:"
-#: 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 "Dhaba"
+msgid "Integer"
+msgstr "intergaa"
-#: 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 "Ulaagaalee:"
-#: 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 "Deetaa sirriin hin jiru"
+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 "Faankishiniin kun hima baname duratti hatatamaan gargaara.Faayiliin Duwwaan lakkoofsa faayilii itti aanee argamu deebisa, garuu faallaa hin godhu."
-#: 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 "Fakkeenya:"
-#: 03103600.xhp
-#, fuzzy
+#: 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,\"Some types in $[officename] Basic\""
+msgid "Print #iNumber, \"First line of text\""
+msgstr "Print #iNumber, \"First line of text\""
-#: 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, \"Another line of text\""
+
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
"tit\n"
"help.text"
-msgid "Hour Function [Runtime]"
-msgstr "Faankishinii Sa'aa [Runtime]"
+msgid "Open Statement[Runtime]"
+msgstr "Hima[Runtime] bani"
-#: 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>Faankishinii Sa'aa </bookmark_value>"
+msgid "<bookmark_value>Open statement</bookmark_value>"
+msgstr "<bookmark_value>Hima bani</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 Function [Runtime]\">Faankishinii Sa'aa [Runtime]</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 Statement[Runtime]\">Hima[Runtime] bani</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 "Gatii Sa'aatii yeroo irraa deebisi kan faankishinii TimeSerial ykn TimeValue irraa maddu."
+msgid "Opens a data channel."
+msgstr "Karaa deetaa bani."
-#: 03030201.xhp
+#: 03020103.xhp
msgctxt ""
-"03030201.xhp\n"
-"hd_id3147574\n"
+"03020103.xhp\n"
+"hd_id3147230\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasima:"
+msgstr "caasimaa:"
-#: 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 "Sa'aa(Lakkoofsa)"
+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 "Gatii deabisi:"
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 03030201.xhp
+#: 03020103.xhp
msgctxt ""
-"03030201.xhp\n"
-"par_id3149670\n"
+"03020103.xhp\n"
+"par_id3155132\n"
"6\n"
"help.text"
-msgid "Integer"
-msgstr "Itergaa"
+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>Maqaa Faayilii: </emph>maqaa fi xurree faayilii kan banuu barbaadeeti. Osoo faayilii hin jire dubbisuu yaalte ergaan dogoggoraa (Access = Read), uumama. Osoo faayilii hin jire barreessuu yaalte faayiliin haaraan (Access = Write), ni uumama."
-#: 03030201.xhp
+#: 03020103.xhp
msgctxt ""
-"03030201.xhp\n"
-"hd_id3150359\n"
+"03020103.xhp\n"
+"par_id3149262\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Ulaagaalee:"
+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>Haalata:</emph> Jefuraa halata faaayilii ibsuu. Gatii gitaa'aa: Miiltessuu( tartiiba faayiliititti miiltessi),Lamee(deetaa baayitiidhan gahama), naqa( karaa deetaa dubbisuuf banuu), bahaa(karaa deetaa barreessuuf banuu) fi Tasa( faayilii fira ta'an gulaali)"
-#: 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>Lakkoofsa:</emph> Himamsa numeerikaa kan gatii eenyummaa yeroo of keessaa qabu sa'aa deebisuuf gargaaru ."
+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> Jefuraa akaakuu gahiinsa hiiku. Gatii gataa'aa: Dubbisuu (dubbisuu qofa), Barreessi (Barreessuu qofa), Barreesuu fi dubbisuu (lachuu)."
-#: 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 "Fankishinin kun faallaa <emph>TimeSerial </emph> faankishiniiti .Kan inni deebisu yeroo irraa sa'aatii meeqa akka ta'e kan <emph>TimeSerial</emph> ykn kan <emph>TimeValue </emph> ti. Fakkeenyaaf, himamsa:"
+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>Hayyisa:</emph> Jefuraa ittisa haalhojii faayilii erga banamee boodaa. Gatii gataa'aa: Yaagutomaa( faayiliin fayyadamaa biraatiin banamuu danda'a), Cufaa dubbisaa(barreefama faayilii faallaan hayyifame), Cufaa Dubbisuu fi Barreessuu (gahiinsa faayiliin didee)"
-#: 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 "Maxxansa sa'aa(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> Himannoon itergaa kamiyyuu 0 hanga 511 karaa bilisaa deetaa agarsiisa.Gahiinsa faayiliitiif ajaja karaa deetaatiin dabarsuu ni dandeessa. Baay'inni faayilii hatattamaan karaa hima banaan dura faankishinii FreeFile jedhuun murtaa'uu qaba."
-#: 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 "gatiii 12 deebisi."
+msgid "<emph>DatasetLength:</emph> For random access files, set the length of the records."
+msgstr "<emph>DatasetLength:</emph> Faayiloota gahiinsa tasaatiif, dheerina kuusaa qindeessi."
-#: 03030201.xhp
+#: 03020103.xhp
msgctxt ""
-"03030201.xhp\n"
-"hd_id3147348\n"
+"03020103.xhp\n"
+"par_id3153418\n"
"12\n"
"help.text"
-msgid "Example:"
-msgstr "Fakkeenya:"
+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 "Qabiyyee faayilii isa hima banaadhaan baname qofa fooyyessuu dandeessa.Yoo faayilii banamee ture banuu yaalte ergaa dogogoratu mul'ata."
-#: 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 "Fakkeenya:"
-#: 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 \"Sa'aan amma \" & Hour( Now )"
+msgid "Print #iNumber, \"This is a line of text\""
+msgstr "Maxxansa #iNumber, \"Kun Sarara barruuti\""
-#: 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, \"Kun sarara barruu kan birooti\""
-#: 03090404.xhp
+#: 03020104.xhp
msgctxt ""
-"03090404.xhp\n"
+"03020104.xhp\n"
"tit\n"
"help.text"
-msgid "End Statement [Runtime]"
-msgstr "Hima xumura [Runtime]"
+msgid "Reset Statement [Runtime]"
+msgstr "Hima haaromsaa [Runtime]"
-#: 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>Hima xumura</bookmark_value>"
+msgid "<bookmark_value>Reset statement</bookmark_value>"
+msgstr "<bookmark_value>Hima haaromsaa</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 Statement [Runtime]\">Hima xumura [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03020104.xhp\">Reset Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020104.xhp\">Hima haaromsaa [Runtime]</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 "Adeemsa ykn garee xumuruu."
+msgid "Closes all open files and writes the contents of all file buffers to the harddisk."
+msgstr "Faayilii banamaa hundaa cufi qabiyyee faayilii ittisoo walitti bu'iinsaa hundaa keessaa baxxee jabaa irratti barreessi."
-#: 03090404.xhp
+#: 03020104.xhp
msgctxt ""
-"03090404.xhp\n"
-"hd_id3147264\n"
+"03020104.xhp\n"
+"hd_id3154124\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasimaa:"
-
-#: 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"
+msgstr "caasimaa:"
-#: 03090404.xhp
+#: 03020104.xhp
msgctxt ""
-"03090404.xhp\n"
-"hd_id3149456\n"
+"03020104.xhp\n"
+"hd_id3161831\n"
"5\n"
"help.text"
-msgid "Parameters:"
-msgstr "Ulaagaalee:"
-
-#: 03090404.xhp
-msgctxt ""
-"03090404.xhp\n"
-"par_id3150398\n"
-"6\n"
-"help.text"
-msgid "Use the End statement as follows:"
-msgstr "Hima Xumuraa akka arman gaditti fayyadami"
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 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 "himoota"
+msgid "Print #iNumber, \"This is a new line of text\""
+msgstr "Print #iNumber, \"Kun Barruu sarara haaraati \""
-#: 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 "Xumura:hin barbaachiftu,garuu adeemsa keessatti iddoo fedhe galuu dandeessi sagantaa raawwii xumuruuf."
+msgid "MsgBox \"All files will be closed\",0,\"Error\""
+msgstr "MsgBox \"All files will be closed\",0,\"Error\""
-#: 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:Hima<emph>Faankshinii</emph> xumuri."
+msgid "File Input/Output Functions"
+msgstr "Faankishinoota Faayilii naqa/Bahaa"
-#: 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:xumura garee <emph>If...Then...Else</emph> mallattoo godhi."
+msgid "<link href=\"text/sbasic/shared/03020200.xhp\" name=\"File Input/Output Functions\">File Input/Output Functions</link>"
+msgstr "<link href=\"text/sbasic/shared/03020200.xhp\" name=\"File Input/Output Functions\"> Faankishinoota Faayilii naqa/Bahaa</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: xumura garee <emph>Select Case</emph> mallattoo godhi."
+msgid "Get Statement [Runtime]"
+msgstr "Hima Argannoo [Runtime]"
-#: 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: Hima <emph>Sub</emph> xumuri."
+msgid "<bookmark_value>Get statement</bookmark_value>"
+msgstr "<bookmark_value>Hima Argannoo</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 "Fakkeeny:"
+msgid "<link href=\"text/sbasic/shared/03020201.xhp\">Get Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020201.xhp\">Hima Argannoo [Runtime]</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 \"Number from 1 to 5\""
+msgid "Reads a record from a relative file, or a sequence of bytes from a binary file, into a variable."
+msgstr "Faayilii fira ta'e irraa kuusaa ykn tartiiba baayitii faayilii lamee irraa gara gegeedaramaatti dubbisa."
-#: 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 \"Number from 6 to 8\""
+msgid "See also: <link href=\"text/sbasic/shared/03020204.xhp\" name=\"PUT\"><item type=\"literal\">PUT</item></link> Statement"
+msgstr "Hima: <link href=\"text/sbasic/shared/03020204.xhp\" name=\"PUT\"><item type=\"literal\">PUT</item></link> ilaali."
-#: 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 \"Greater than 8\""
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 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 \"Outside range 1 to 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 "Faankishinii HasUnoInterfaces [Runtime]"
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 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>Faankishinii HasUnoInterfaces</bookmark_value>"
+msgid "<emph>FileNumber:</emph> Any integer expression that determines the file number."
+msgstr "<emph>FileNumber:</emph> Himannoo itergaa kammiyyuu kan baay'ina faayilii murteessu."
-#: 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 Function [Runtime]\">Faankishinii HasUnoInterfaces [Runtime]</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>Qabannoo:</emph> Faayilii haala darbee darbeetiin banamu, <emph>Qabannoo</emph> Baay'ina kuusaa dubbisuu barbaaddu."
-#: 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 "Yoo wanti Basic Uno walquunnama Uno muraasa deeggare, qorata."
+msgid "For files opened in Binary mode, <emph>Position</emph> is the byte position in the file where the reading starts."
+msgstr "Faayilii haala lameetiin baname <emph>qabannoo</emph> iddoo qabannoon baayitii dubbisuun irraa eegalu."
-#: 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 "Yoo Walquunnamawwan Uno tumaman <emph>marti</emph> deeggaramaa ta'an, Dhugaatu deebi'a. Yoo deeggaramuu baatan ammoo sobatu deebi'a."
+msgid "If <emph>Position</emph> is omitted, the current position or the current data record of the file is used."
+msgstr "Yoo <emph>Qabannoo</emph> dhiifame, qabdoon ammee ykn faayiliin qabdoo kuusaa deetaa ammee fayyadama."
-#: 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 "Caasimaa:"
+msgid "Variable: Name of the variable to be read. With the exception of object variables, you can use any variable type."
+msgstr "Jijjiiramaa: Maqaa jijjiramaa dubbifamuuf. Quxaala wanta gegeedaramaa waliin, akaakuu gegeedaramaa kammiyyuu fayyadamuu dandeessa."
-#: 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 "Fakkeenya:"
-#: 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 "Gatii Deebii:"
+msgid "Dim sText As Variant ' Must be a variant"
+msgstr "Dim sText As Variant REM Must be a 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 REM Qubannoo jalqaba irraatti"
-#: 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 "Ulaagaalee:"
+msgid "Put #iNumber,, \"This is the first line of text\" ' Fill line with text"
+msgstr "Put #iNumber,, \"Kun sarara barruu tokkoffaati\" REM Sarara barruudhaan guuta."
-#: 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> Wanta Basic Uno ati qorachuu barbaaddu dha."
+msgid "Put #iNumber,, \"This is the second line of text\""
+msgstr "Put #iNumber,, \"Kun sarara barruu isa lammaffa dha\""
-#: 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>Maqaa-Walquunnama-Uno:</emph> Tarreeffama maqaawwan walquunnama Uno."
+msgid "Put #iNumber,, \"This is the third line of text\""
+msgstr "Put #iNumber,, \"Kun sarara barruu isa sadaffaadha\""
-#: 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 "Fakkeenya:"
+msgid "Put #iNumber,,\"This is a new text\""
+msgstr "Put #iNumber,,\"Kun barruu haaradha\""
-#: 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,\"Kun barruu kuusaa 20 keessati\""
-#: 03090402.xhp
+#: 03020202.xhp
msgctxt ""
-"03090402.xhp\n"
+"03020202.xhp\n"
"tit\n"
"help.text"
-msgid "Choose Function [Runtime]"
-msgstr "Faankishinii Fili[Runtime]"
+msgid "Input# Statement [Runtime]"
+msgstr "Hima naqaa# [Runtime]"
-#: 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>Faankishinii Fili</bookmark_value>"
+msgid "<bookmark_value>Input statement</bookmark_value>"
+msgstr "<bookmark_value>Hima naqaa </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 Function [Runtime]\">Faankishinii Fili [Runtime]</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# Statement [Runtime]\"> Hima naqaa# [Runtime]</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 "Qajeelfamoota tarreeffaman irraa gatii filame debisi."
+msgid "Reads data from an open sequential file."
+msgstr "Tartiiba faayilii irraa deetaa dubbisa."
-#: 03090402.xhp
+#: 03020202.xhp
msgctxt ""
-"03090402.xhp\n"
-"hd_id3148943\n"
+"03020202.xhp\n"
+"hd_id3125863\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasimaa:"
+msgstr "caasimaa:"
-#: 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 "Ulaagaalee:"
-#: 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>Kasaa:</emph> Himannoon lakkofsaa gatii deebii'u kan ifteesu dha."
+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> Baay'ina faayilii kan deetaa dubbisuu barbaadde of keessaa qabu. Faayiliin hima banaa irraa banamuu qaba jefuraa INPUT jedhamu fayyadamuudhaan."
-#: 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>Filannoo1:</emph> Himannoon kamuu filannoo danda'amu tokko kan qabu dha."
+msgid "<emph>var:</emph> A numeric or string variable that you assign the values read from the opened file to."
+msgstr "<emph>var:</emph> Gegeedaramaa numeerikaalaa ykn diraa kan gatii faayilii banaa irraa dubbifamu."
-#: 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 "Faankishiiniin <emph>Fili</emph> gatii himannoo tarreeffaman irraa gatii kasaa irratti hundaa'e deebisa."
+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 "Himni <emph>Input#</emph> gatii numeerikaalaa ykn diraa faayilii banaa irraa deetaa gegeedaramaa tokkoo fi isaa olitti mogaafama. Gegeedaramaan numeerikaalaa hanga daangaa toorbarruu (Asc=13) (Asc=10),iddoo,qoodduu dubbisa. Gegeedaraman diraa hanga toorbarruu(Asc=13), (Asc=10), ykn qoodduutti dubbisa."
-#: 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 "Yoo gatiin kasaa irra xiqqaa 1 ykn irra guddaa lakkofsa himannoo tarreeffamanii ta'e,faankishiniin gatii Null deebisa."
+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 "Deetaa fi akaakuu deetaa faayilii banaa keessaa tartiiba tokkoon akka ulaagaa gegeedaramaa \"var\" mul'achuu qaba.Yoo gatii numeerikaala hin taane gegeedaramaa numeerikaalaati moggaaste \"var\" gatii \"0\" moggaafama."
-#: 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 "Fakkeenyi armaan gadii diraa diroota baay'ee kan baafata uuman irraa filuuf faankishinii<emph>Fili</emph>fayyadami."
+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 "Kuusaan qooddudhaan addan bahan gegeedaramaa diraatti hin moggafaman. Mallattoo waraabbii(\"\") hubannoo keessaa galuu qaba.Yoo faayiliirraa arfii kana dubbisuu barbaadde sarara<emph> kana fayyadami hima Input#</emph> barruu qulqulluu sarara sararaan dubbisuuf (faayiliin arfii maxxanfamaa qofa of keessaa qaba)."
-#: 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 "Yoo dhumni faayilii dhaqabame ennaa maalimni deetaa dubbifamu dogogorrii uumamee hojiin addaan kuta."
+
+#: 03020202.xhp
+msgctxt ""
+"03020202.xhp\n"
+"hd_id3152578\n"
+"12\n"
+"help.text"
msgid "Example:"
msgstr "Fakkeenya:"
-#: 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 ""
+
+#: 03020202.xhp
+msgctxt ""
+"03020202.xhp\n"
+"par_id4144766\n"
+"help.text"
+msgid "' Read data file using Input"
+msgstr ""
#: 03020203.xhp
msgctxt ""
@@ -4950,7 +9731,7 @@ msgctxt ""
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasima:"
+msgstr "caasimaa:"
#: 03020203.xhp
msgctxt ""
@@ -5013,7 +9794,7 @@ msgctxt ""
"18\n"
"help.text"
msgid "Print #iNumber, \"This is a line of text\""
-msgstr "Print #iNumber, \"Kun sarara barruuti\""
+msgstr "Maxxansa #iNumber, \"Kun Sarara barruuti\""
#: 03020203.xhp
msgctxt ""
@@ -5024,4001 +9805,3906 @@ msgctxt ""
msgid "Print #iNumber, \"This is another line of text\""
msgstr "Print #iNumber, \"Kun sarara barruu kan birooti\""
-#: 03060600.xhp
+#: 03020204.xhp
msgctxt ""
-"03060600.xhp\n"
+"03020204.xhp\n"
"tit\n"
"help.text"
-msgid "Xor-Operator [Runtime]"
-msgstr "Xor-Operator [Runtime]"
+msgid "Put Statement [Runtime]"
+msgstr "Hima olkaawwii [Runtime]"
-#: 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>Ogeejjii Xor (yaayaa)</bookmark_value>"
+msgid "<bookmark_value>Put statement</bookmark_value>"
+msgstr "<bookmark_value>Hima olkaawwii </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-Operator [Runtime]\">Ogeejjii-Xor[Runtime]</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 Statement [Runtime]\">Hima olkaawwii [Runtime]</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 "yaayaa Exclusive-Or makaa himanno lama dalagi."
+msgid "Writes a record to a relative file or a sequence of bytes to a binary file."
+msgstr "Kuusaa faayilii firaa irratti barreessii ykn tartiiba baayitii fayilii lamee irratti."
-#: 03060600.xhp
+#: 03020204.xhp
msgctxt ""
-"03060600.xhp\n"
-"hd_id3153381\n"
+"03020204.xhp\n"
+"par_id3156281\n"
"3\n"
"help.text"
-msgid "Syntax:"
-msgstr "Caasimaa:"
+msgid "See also: <link href=\"text/sbasic/shared/03020201.xhp\" name=\"Get\"><item type=\"literal\">Get</item></link> statement"
+msgstr "Hima: <link href=\"text/sbasic/shared/03020201.xhp\" name=\"Get\"><item type=\"literal\">argannoo</item></link> kan ilaali."
-#: 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 "caasimaa:"
-#: 03060600.xhp
+#: 03020204.xhp
msgctxt ""
-"03060600.xhp\n"
-"hd_id3153968\n"
+"03020204.xhp\n"
+"par_id3155132\n"
"5\n"
"help.text"
-msgid "Parameters:"
-msgstr "Ulaagaalee"
+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>Bu'aa:</emph> lakkoofsi jijjiiramaa kamuu walitti qabaa qaba."
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 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>Himannoo1, Himannoo2:</emph> Himannoowwan lakkofsa kamu kan makuu barbaadde."
+msgid "<emph>FileNumber:</emph> Any integer expression that defines the file that you want to write to."
+msgstr "<emph>FileNumber:</emph> Himannoo itergaa kamiyyuu kan faayilii itti bareessuu barbaadde hiikan."
-#: 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 "Yaayaan guduunfituu qoqqobbii-Or himannoowwan Buuliyaanii lama gatii Dhugaa deebisu yoo himannon lachuu adda addda ta'an"
+msgid "<emph>Position: </emph>For relative files (random access files), the number of the record that you want to write."
+msgstr "<emph>Qabannoo: </emph> Faayiloota fira ta'aniif(gahiinsa darbee darbee),baay'ina kuusaa ati barreesuu barbaaddee."
-#: 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 "Laklame qabeessi guduunfituun qoqqobbii-Or laklamee deebisa yoo laklameen walgitu himannoo lamaan keessaa tokko keessatti qindaa'e."
+msgid "For binary files (binary access), the position of the byte in the file where you want to start writing."
+msgstr "Faayilii lameedhaaf(gahiinsa lamee), qubannoo baayitii faayilii keesssatti bakka barreesuu irraa eegaltu."
-#: 03060600.xhp
+#: 03020204.xhp
msgctxt ""
-"03060600.xhp\n"
-"hd_id3153366\n"
+"03020204.xhp\n"
+"par_id3153729\n"
"10\n"
"help.text"
-msgid "Example:"
-msgstr "Fakkeenya:"
+msgid "<emph>Variable:</emph> Name of the variable that you want to write to the file."
+msgstr "<emph>Gegeedaramaa:</emph> Maqaa gegeedaramaa kan ati faayiliitti barreessuu barbaaddu."
-#: 03060600.xhp
-#, fuzzy
+#: 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 REM returns 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 "Yaadannoo faayilii firaa: Qabiyyeen faayilii kanaa yoo dheerina kuusaa ibsameen wal gituu baate <emph>Len</emph>Hima haraggoo <emph> Banaa</emph> iddoon kuusaan haaraan itti barraahe gidduu fi kuusaa itti aanee faayiliirra deetaa jiru faayilii ati irratti barressitu waliin jiifata."
-#: 03060600.xhp
-#, fuzzy
+#: 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 "Yaadannoo faayilii lamee: Qabiyyeen gegeedaramaa qubannoo ibsame irratti katabama kana malees faayiliin qareen baayitii dhumaatiin booda sagii kallattiiti. Kuusaa gidduu iddoon hafuu hin qabu."
+
+#: 03020204.xhp
+msgctxt ""
+"03020204.xhp\n"
+"hd_id3154491\n"
+"13\n"
+"help.text"
+msgid "Example:"
+msgstr "Fakkeenya:"
+
+#: 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 REM returns -1"
+msgid "Dim sText As Variant ' Must be a variant type"
+msgstr "Dim sText As Variant REM Must be a variant type"
-#: 03060600.xhp
-#, fuzzy
+#: 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 REM returns -1"
+msgid "Seek #iNumber,1 ' Position To start writing"
+msgstr "Seek #iNumber,1 REM Position to start writing"
-#: 03060600.xhp
-#, fuzzy
+#: 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) REM returns 0"
+msgid "Put #iNumber,, \"This is the first line of text\" ' Fill line with text"
+msgstr "Put #iNumber,, \"Kun sarara barruu tokkoffaati\" REM Sarara barruudhaan guuta."
-#: 03060600.xhp
-#, fuzzy
+#: 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 REM returns 2"
+msgid "Put #iNumber,, \"This is the second line of text\""
+msgstr "Put #iNumber,, \"Kun sarara barruu isa lammaffa dha\""
-#: 03080600.xhp
+#: 03020204.xhp
msgctxt ""
-"03080600.xhp\n"
-"tit\n"
+"03020204.xhp\n"
+"par_id3154255\n"
+"25\n"
"help.text"
-msgid "Absolute Values"
-msgstr "Gatii gonkaa"
+msgid "Put #iNumber,, \"This is the third line of text\""
+msgstr "Put #iNumber,, \"Kun sarara barruu isa sadaffaadha\""
-#: 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=\"Absolute Values\">Gatii gonkaa</link>"
+msgid "Put #iNumber,,\"This is new text\""
+msgstr "Put #iNumber,,\"Kun barruu haaradha\""
-#: 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 "Faankshiniin kun gatii gonkaa deebisa."
+msgid "Put #iNumber,20,\"This is the text in record 20\""
+msgstr "Put #iNumber,20,\"Kun barruu kuusaa 20 keessati\""
-#: 03101600.xhp
+#: 03020205.xhp
msgctxt ""
-"03101600.xhp\n"
+"03020205.xhp\n"
"tit\n"
"help.text"
-msgid "DefLng Statement [Runtime]"
-msgstr "Hima DefLng [Runtime]"
+msgid "Write Statement [Runtime]"
+msgstr "Hima Barreessaa[Runtime]"
-#: 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>Hima DefLng</bookmark_value>"
+msgid "<bookmark_value>Write statement</bookmark_value>"
+msgstr "<bookmark_value>Hima Barreessaa</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 Statement [Runtime]\">DefLng Statement [Runtime]</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 Statement [Runtime]\">Hima Barreessaa[Runtime]</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 "yoo arfiin akaakuu labsii ykn jefuraa hin ifteeffamne,akkaataa hangii qubeetiin, akaakuu jijjiiramaa durtii qindeessi."
+msgid "Writes data to a sequential file."
+msgstr "Deetaa faayilii tartiibaa irratti barreessi."
-#: 03101600.xhp
+#: 03020205.xhp
msgctxt ""
-"03101600.xhp\n"
-"hd_id3150504\n"
+"03020205.xhp\n"
+"hd_id3150449\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasimaa:"
+msgstr "caasimaa:"
-#: 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 [#FileName], [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 "Ulaagaalee:"
-#: 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>Hangiiarfii:</emph> Qubeewwan kan hangii jijjiiramtootaa kan akaakuu deetaa durtii qindeessuu barbaaddu ifteessan."
+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>MaqaaFaayilii:</emph> ibsa lakkoofsaa kammiiyyuu ta`ee kan lakkoofsa faayilii hima banuutiin ka ta`ee faayilii duraa dubaa ofkeessatti qabatu dha."
-#: 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> Jefuraan kan akaakuu jijjiiramaa durtii qindeessu:"
+msgid "<emph>Expressionlist:</emph> Variables or expressions that you want to enter in a file, separated by commas."
+msgstr "<emph>Expressionlist:</emph> Jijjiiramaa ykn himannoon kan ati faayilii keessa galchuu barbaadde qoodduudhaan garagar baha."
-#: 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>Jefuraa: </emph>Akaakuu jijjiiramaa durtii"
+msgid "If the expression list is omitted, the <emph>Write</emph> statement appends an empty line to the file."
+msgstr "Himannon tarree yoo bade <emph>Barreessuu</emph> himni faayiilii duwwaattii miiltaha."
-#: 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>DefSng:</emph> Dheeraa"
+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 "Tarree himannoo faayilii haaratii ykn kan jirutti ida'uuf, faayiliin haalata kana keessatti <emph>Output</emph> ykn <emph>Append</emph> banamuu qaba."
-#: 03101600.xhp
+#: 03020205.xhp
msgctxt ""
-"03101600.xhp\n"
-"hd_id3153192\n"
+"03020205.xhp\n"
+"par_id3147428\n"
"10\n"
"help.text"
-msgid "Example:"
-msgstr "Fakkenya:"
+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 "Diraan ati barreessite mallattoo waraabbii keessatti fi qoodduun gargar baha.Daangessaa kana tarree himannoo keessa galchuu hin qabdu."
-#: 03101600.xhp
-#, fuzzy
+#: 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 "REM hiika huddeelsoo akaakuu jijjiiramaaf:"
+msgid "Each <emph>Write</emph> statement outputs a line end symbol as last entry."
+msgstr "Tokkoon tokkoo <emph> Barreessuu</emph> Hima bahaa sarara mallattoo xumuraa akka galfata dhumaati"
-#: 03101600.xhp
-#, fuzzy
+#: 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 REM lCount is an implicit long integer variable"
+msgid "Numbers with decimal delimiters are converted according to the locale settings."
+msgstr "Lakkofsi kurnyee daangessaa akka qindaa'ina gitoo biyyatti jijjirama."
-#: 01020100.xhp
+#: 03020205.xhp
msgctxt ""
-"01020100.xhp\n"
+"03020205.xhp\n"
+"hd_id3151073\n"
+"11\n"
+"help.text"
+msgid "Example:"
+msgstr "Fakkeenya:"
+
+#: 03020301.xhp
+msgctxt ""
+"03020301.xhp\n"
"tit\n"
"help.text"
-msgid "Using Variables"
-msgstr "Jijjiiramoota gargaaramuu"
+msgid "Eof Function [Runtime]"
+msgstr "Faankishinii Eof [Runtime]"
-#: 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>maqoota jijjiiramootaa</bookmark_value><bookmark_value>jijjiiramoota; gargaaramuu</bookmark_value><bookmark_value>akaakuu jijjiiramootaa</bookmark_value><bookmark_value>ibsa jijjiramootaa</bookmark_value><bookmark_value>gatii;kan jijjiramoota</bookmark_value><bookmark_value>seranoota</bookmark_value><bookmark_value>waraantoota;ibsuu</bookmark_value><bookmark_value>ibsa;seranoota</bookmark_value>"
+msgid "<bookmark_value>Eof function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii 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=\"Using Variables\">Jijjiiramtoota gargaaramuu</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 Function [Runtime]\">Faankishinii Eof [Runtime]</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 "Yoo qareen faayilii dhuma faayilichaa irra gahe murteessi."
+
+#: 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 "Kanneen arman gadii tajaajila bu`uri jijjiiramootaa bu`uura $[officename] keessatti qaban ibsu."
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 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 "Seera maqaa kannuu addiroota jijjiiramootaaf"
+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 "Maqaan jijjiramaa olaantee fakkaattoota 225 irraa kan ijaarame dha. Maqaa fakkaattoo jijjiiramaa inni duraa <emph>dirqama</emph> qubee A-Z yookiin a-z ta`uu qaba. Akasumas lakkoofsotni maqaa jijjiiramaa keessatti ni garagaaru,garuu mallattoota tuqoolii fi fakkaattotni addaa hin hayyamamani, fakkaattoota Mmurgadii(\"_\") quxaaloota irraa kan hafe. Bu`uura$[officename] keessatti addirootni jijjiiramaa dubbee miiraa miti. maqoonni jijjiiramaa iddoo ofkeessaatti ni qabatu garuu hojechuuf golbee arfakkuu keessatti hammatamu qabu."
+msgid "Return value:"
+msgstr "Gatii deebii:"
-#: 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 "Fakkeenyota addiroota jijjiiramootaaf:"
+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 "sirreessi"
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 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 "Sirreessi"
+msgid "<emph>Intexpression:</emph> Any integer expression that evaluates to the number of an open file."
+msgstr "<emph>Intexpression:</emph> Himannoo itergaa kamiyyuu kan baay'ina faayilii banamee qoratu."
-#: 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 "Sirreessi"
+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 "Gara naqa darbettii yommuu dhuftu dhuma faayilii irratti dogogora hanbisuuf EOF fayyadami. Yoo naqa ykn hima argannaa fayilii irra dubbisuuf fayyadamtu faayiliin qaree baay'ina lakkofsa baayitii dubbifameen ola'ana.Yoo dhumni faayilii dhaqabame,EOF gatii \"Dhugaa\"(-1) deebisa."
-#: 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 "Gataa`aa kan hin taane, jijjiiramaan iddoo dirqama golbee arfakkuu keessatti hammatamuu qaba"
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 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 "Sirreessi"
+msgid "Print #iNumber, \"First line of text\""
+msgstr "Print #iNumber, \"First line of text\""
-#: 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 "Gataa`aa kan hin taane, fakkaattotni addaa hin hayyamamani"
+msgid "Print #iNumber, \"Another line of text\""
+msgstr "Print #iNumber, \"Another line of text\""
-#: 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 "Gataa`aa kan hin taane, jijjiiramaan lakkofsaan hin eegalu"
+msgid "Loc Function [Runtime]"
+msgstr "Faankishinii Loc [Runtime]"
-#: 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 "Gataa`aa kan hin taane, mallattoon tuqoolii hin hayyamamu"
+msgid "<bookmark_value>Loc function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii 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 "Ibsa jijjiiramootaa"
+msgid "<link href=\"text/sbasic/shared/03020302.xhp\" name=\"Loc Function [Runtime]\">Loc Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020302.xhp\" name=\"Loc Function [Runtime]\">Faankishinii Loc [Runtime]</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 "Bu`uura $[officename] keessatti jijjiiramaa duwwaa ibsuun nurraa hin eegamu. Ibsi jijjiirama hima <emph>Dim</emph> waliin hojjetama. Maqaalee qoodduudhaan addaan baasuun jijjiiramaa tokkoo ol altakkaatti ibsuu ni danda`ama.akaakuu jijjiiramaa hiikuuf, maqaa, yookiin jefuraa sirrii booda mallattoo ibsa akaakuu gargaarami."
+msgid "Returns the current position in an open file."
+msgstr "Faayilii banaadhaaf qubannoo ammee deebisa."
-#: 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 "Fakkeenyota ibsa jijjiiramaatiif:"
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 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 "Jijjiiramaa \"a\" akka caasimaatti ibsi"
+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 "Jijjiiramaa \"a\" akka caasimaatti ibsi"
+msgid "Return value:"
+msgstr "Gatii deebii:"
-#: 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 "Jijjiirama tokko akka caasimaati fi tokkommoo akka intergaati ibsi"
+msgid "Long"
+msgstr "Dheeraa"
-#: 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 akka jijjiiramaa Buuliyaaniitti kan TRUE yookiin FALSE ta`uu danda`uuti ibsi"
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 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 "Kun yommuu jijjiiramaawwan arfii ibsa akaakuu gargaaramtu baay`ee barbaachisa, jefuraa malee ibsa keessatti gargaaruyyuu. Himmoonni armaan gadii fashala dha:"
+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> Himannoo numeerikaalaa baay'ina lakkofsaa of keessaa qabu kan hima banaadhaan qindeessu faayilii wal duraa duubatiif."
-#: 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 "Declares \"a\" as 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 "Yoo Loc faankishiinin faayilii gahiinsa darbee darbeeti fayyadame, baay'ina kuusaa isa dhumaa kan dhumarratti dubbisu ykn barreessu deebisa."
-#: 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 "Type-declaration missing: \"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 "Faayilii tartiibatiif, faankishiniin Loc qubannoo faayilii 128 hiramuu deebisa. Faayilii lameef, baayitii qubannoo barreessuu ykn dubbisuu dhumaa deebisa."
-#: 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 "Jijjiiramaa takkaa akka akaakuu tokkootti ergaa ibsitee booda, jijjiiramaa kana dabalataan maqaa walfakkaataa jalatti akka akaakuu adda addaatti hiikuun hin danda`amu."
+msgid "Lof Function [Runtime]"
+msgstr "Faankishinii Lof [Runtime]"
-#: 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 "Ibsa jijjiiramaa dhiibuu"
+msgid "<bookmark_value>Lof function</bookmark_value>"
+msgstr "<bookmark_value> Faankishinii 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 "Ibsa jijjiiramaawwan dhiibuuf, ajajaja armaan gadii gargaarami:"
+msgid "<link href=\"text/sbasic/shared/03020303.xhp\" name=\"Lof Function [Runtime]\">Lof Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020303.xhp\" name=\"Lof Function [Runtime]\"> Faankishinii Lof [Runtime]</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 "Himni <emph>Option Explicit</emph> SUB jalqabaa dura, mojuulii keessatti sarara jalqabaa ta`uu qaba. Waliigalaati, waraantoolee qofaatu ibsamuu qaba. Jijjiiramaawwan biraan hundi akkaataa akaakuu ibsa arfiitti ibsamu, yookiin yoo akka akaakuu <emph>qeenxee</emph> durtiitti ibsamu.."
+msgid "Returns the size of an open file in bytes."
+msgstr "Hamamtaa faayilii banaa baayitiin deebisa."
-#: 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 "Akaakuuwwan jijjiirama"
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 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 "Bu`uuri $[officename] kutaalee jijjiiramaawwanii afur deggara:"
+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 "Jijjiiramaawwan<emph>lakkoofsa</emph> gatiiwwan lakkoofsa ofkeessatti ni qabatu.Jijjiiramaawwan tokko tokko lakkoofsota guddaa fi xixiqqoo kuusuuf gargaaru, kanneen biroon immoo tuqaa bololi`u yookiin lakkoofsota firaakshiniif gargaaru."
+msgid "Return value:"
+msgstr "Gatii deebii:"
-#: 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 "Jijjiiramaawwan <emph>diraa</emph> diraawwan arfii ofkeessaa qabu."
+msgid "Long"
+msgstr "Dheeraa"
-#: 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 "Jijjiiramaawwan <emph>Buuliyaanii</emph> TRUE yookiin FALSE ofkeessatti qabatu."
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 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 "Jijjiiramaawwan<emph>wantaa</emph> akaakuuwwan wantoota adda addaa, kan akka gabatootaa fi galmeewwanii galmee keessatti ni kuusa."
+msgid "<emph>FileNumber:</emph> Any numeric expression that contains the file number that is specified in the Open statement."
+msgstr "<emph>FileNumber:</emph> Himannoo numeerikaalaa kan baay'ina faayilii of keessaa qabu innis hima banaadhaan ibsama."
-#: 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 "Jijjiiramaawwan Intergaa"
+msgid "To obtain the length of a file that is not open, use the <emph>FileLen</emph> function."
+msgstr "Dheerina faayilii hin banamnee argachuuuf,faankishinii kana <emph>FileLen</emph> fayyadami."
-#: 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 "Jijjiiramaawwan intergaa dheeraa -32768 hanga 32767tti ni hangaa`u. Osoo gatii tuqaa bololi`u jijjiiramaa intergaa dheerraa ramadne, bakkootni kurnyee gara intergaa itti aanuutti ni siiqu. Jijjiiramaawwan intergaa dheeraan adeemsa keessa ariitiin ni hediisamu akasumas lakkaawwiidhaaf ni mijatu. Jijjiiramaa intergaa dheeraan baayitiisi kuufannoo lama ni barbaadu. \"&\"n arfii ibsa akaakuuti."
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 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 "Jijjiiramaawwan Intergaa dheeraa"
+msgid "Dim sText As Variant REM must be a Variant"
+msgstr "Dim sText As Variant REM must be a 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 "Jijjiiramaawwan intergaa dheeraa -2147483648 hanga 2147483647tti ni hangaa`u.Osoo gatii tuqaa bololi`u jijjiiramaa intergaa dheerraa ramadne, bakkootni kurnyee gara intergaa itti aanuutti ni siiqu. Jijjiiramaawwan intergaa dheeraan adeemsa keessa ariitiin ni hediisamu akasumas lakkaawwiidhaaf ni mijatu. Jijjiiramaa intergaa dheeraan baayitiisi kuufannoo afur ni barbaadu. \"&\"n arfii ibsaa akaakuuti."
+msgid "Seek #iNumber,1 REM Position at start"
+msgstr "Barbaachaa #iNumber,1 REM Qubannoo duraaratti"
-#: 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 "Jijjiiramaa kurnyee"
+msgid "Put #iNumber,, \"This is the first line of text\" REM Fill with text"
+msgstr "Put #iNumber,, \"Kun barruu sarara tokkoffaati\" REM Barruudhaan guuta"
-#: 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 "Jijjiiramaawwan kurnyee lakkoofsata poozatiivii yookiin Negeetivii yookiin zeeroo fudhachuu ni danda`u.gigiitonni sirrinaa hanga 29ti dha."
+msgid "Put #iNumber,, \"This is the second line of text\""
+msgstr "Put #iNumber,, \"Kun sarara barruu isa lammaffa dha\""
-#: 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 "Mallattoota idaatii (+) yookiin hir`isuu (-) lakkoofsota kurnyeef (bakkoota wajjin yookiin bakkota malee) akka dureetti gargaaramuun ni danda`ama."
+msgid "Put #iNumber,, \"This is the third line of text\""
+msgstr "Put #iNumber,, \"Kun sarara barruu isa sadaffaadha\""
-#: 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 "Lakkoofsi kurnyee osoo gara jijjiiramaa intergaatti ramadame, bu`uuri %PRODUCTNAME fakkii ol yookiin gadi ni buta."
+msgid "Put #iNumber,,\"This is a new line of text\""
+msgstr "Put #iNumber,,\"Kun barruu sarara haaraa ti\""
-#: 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 "Jijjiiramaawwan baaxxee"
+msgid "Put #iNumber,20,\"This is the text in record 20\""
+msgstr "Put #iNumber,20,\"Kun barruu kuusaa 20 keessati\""
-#: 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 "Jijjiiramaawwan baaxxee gatiiwwan poozatiivii yookiin negeetivii hangii 3.402823 x 10E38 gara 1.401298 x 10E-45ti ni fudhata.yeroo Lakkoofsi kurnyee hintaane dabala lakkofsi kurnyee sirreenyaa immoo yeroo hir`atan, jijjiiramaawwan baaxxee tutaa bololi`uu dha. Jijjiiramaawwan baaxxee gidduu galeessa sirreenyaa hediisa herregaaf mijatoo dha.Jijjiiramaawwan intergaa caalaa hediisaan sa`atii barbaada, garuu jijjiiramaa dheeraa wajjin hediisa irra saffisaa dha. Jijjiiramaa baaxxeen baayitiisi kuufannoo afur ni barbaadu. Arfii ibsa akaakuu \"!\" dha."
+msgid "Seek Function [Runtime]"
+msgstr "Faankishiniin barbaachaa [Runtime]"
-#: 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 "Double Variables"
+msgid "<bookmark_value>Seek function</bookmark_value>"
+msgstr "<bookmark_value>Faankishiniin barbaachaa</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 "Jijjiiramaawwan dachaa gatiiwwan poozatiivii yookiin negeetivii hangii 1.79769313486232 x 10E308 gara 4.94065645841247 x 10E-324ti ni fudhata.yeroo Lakkoofsi kurnyee hintaane dabala lakkofsi kurnyee sirreenyaa immoo yeroo hir`atan, jijjiiramaawwan dachaa tutaa bololi`uu dha. Jijjiiramaawwan dachaa gidduu galeessa sirreenyaa hediisa herregaaf mijatoo dha.Jijjiiramaawwan intergaa caalaa hediisaan sa`atii barbaada, garuu jijjiiramaa dheeraa wajjin hediisa irra saffisaa dha. Jijjiiramaa dachaa baayitiisi kuufannoo saddet ni barbaadu. Arfii ibsa akaakuu \"#\" dha."
+msgid "<link href=\"text/sbasic/shared/03020304.xhp\" name=\"Seek Function [Runtime]\">Seek Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020304.xhp\" name=\"Seek Function [Runtime]\">Faankishiniin barbaachaa [Runtime]</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 "Jijjiiramaawwan sharafa"
+msgid "Returns the position for the next writing or reading in a file that was opened with the open statement."
+msgstr "Faayilii hima banaadhaan baname qubannoo itti aaneen barreefamu ykn dubbifamun qubannoo deebisa."
-#: 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 "Jijjiiiramaawwan sharafaa akka lakkoofsota biiti 64ti (8 Bytes) ni kuufamu akasumas akka lakkoofsa kurnyee dhaabbataa kurnyee hin taane 15 wajjintii fi bakkoota kurnyee 4tti agarsiisamu. Gatiiwwan -922337203685477.5808 hanga +922337203685477.5807t ni hangaa`u.Jijjiiramaawwan sharafaa gattiiwwan sharafaa sirreefama guddaa wajjin hediisuuf gargaara. Arfii ibsa akaakuu \"@\" dha."
+msgid "For random access files, the Seek function returns the number of the next record to be read."
+msgstr "Gahiinsa faayilii darbee darbeetiif, faankishiniin barbaachaa baay'ina kuusaa itti aanee dubbifamu deebisa."
-#: 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 "Jijjiiramaawwan diraa"
+msgid "For all other files, the function returns the byte position at which the next operation is to occur."
+msgstr "Faayiloota karaa biroof,faankishiniin qubannoo baayitii deebisa dalagaan itti aanuu mul'achuuf."
-#: 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 "Jijjiiramaawwan diraa diraawwan arfii hanga arfiilee 65,535ti ni qabata. Jijjiiramaawwan diraa hojii jecha sagantaalee fi kuusaa yeroo kan arfii maxxansamuu hin dandeenye hanga dheerina alaantoo baayitiisi 64tiif mijataadha. Yaadduuun lakkoofsa arfiilee jijjiiramaa irratti hundaa`uudhaan jijjiiramaawwan diraa olkaa`uuf ni barbaachisa. Arfii ibsa akaakuu \"$\" dha."
+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 "Kanas ilaali: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Banaa</link>, <link href=\"text/sbasic/shared/03020305.xhp\" name=\"Seek\">Barbaacha</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 "Jijjiiramaawwan buuliyaanii"
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 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 "Jijjiiramaawwan buuliyaanii gatiiwwan: TRUE yookiin FALSE keessaa tokko kuusa. lakkofsi 0n FALSE madaala, gatiin kan biraan hundi TRUE madaalu."
+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 "Jijjiiramaawwan guyyaa"
+msgid "Return value:"
+msgstr "Gatii deebii:"
-#: 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 "Jijjiiramaawwan guyyaa gatiiwwan guyyootaa fi sa`atii dhangii keessatti kuufaman qabata.Gatiiwwan jijjiiramaawwan guyyaatti <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> yookiin <link href=\"text/sbasic/shared/03030206.xhp\" name=\"Timevalue\"><emph>Timevalue</emph></link> wajjin ramadaman dhangii keessatti ofumaan ni jijjiramu. Jijjiiramaawwan-guyyaa lakkoofsota jumootti faankishinii <link href=\"text/sbasic/shared/03030103.xhp\" name=\"Day\"><emph>Guyyaa</emph></link>, <link href=\"text/sbasic/shared/03030104.xhp\" name=\"Month\"><emph>Ji`aa</emph></link>, <link href=\"text/sbasic/shared/03030106.xhp\" name=\"Year\"><emph>Waggaa</emph></link> yookiin <link href=\"text/sbasic/shared/03030201.xhp\" name=\"Hour\"><emph>Sa`atii</emph></link>, <link href=\"text/sbasic/shared/03030202.xhp\" name=\"Minute\"><emph>Daqiiqaa</emph></link>, <link href=\"text/sbasic/shared/03030204.xhp\" name=\"Second\"><emph>sekoondii</emph></link> gargaaramuudhaan ni jijjiiramu. Dhangiin kessaa gatiiwwan addaddummaa guyyaa/sa`atii lamaan gidduu jiru addaan baasuun walmadaalsisuuf dandeesisa.Jijjiiramaawwan kunis jefuraa <emph>Guyyaa</emph> tiin ibsamu.."
+msgid "Long"
+msgstr "Dheeraa"
-#: 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 "Gatiiwwan jijjiiramaa qubduraa"
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 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 "Jijjiiramaan akkuma ibsameen, ofumaan gatii \"Null\" ni ta`a.Jijjiiraawwan armaan gadii ilaali:"
+msgid "<emph>FileNumber:</emph> The data channel number used in the Open statement."
+msgstr "<emph>FileNumber:</emph>Lakkofsi karaa deetaa hima banaa keessatti fayyada."
-#: 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 "Jijjiiramaawwan <emph>lakkoofsaa</emph> akkuma ibsamaniin gara gatii \"0\"tti ni ramadamu."
+msgid "Seek Statement [Runtime]"
+msgstr "Hima Barbaachaa [Runtime]"
-#: 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>Jijjiiramaawwan guyyaa</emph> gatii 0 ofkeessaatti ramada; akasumas gatii \"0\" fankishinii <link href=\"text/sbasic/shared/03030103.xhp\" name=\"Day\"><emph>Guyyaa</emph></link>, <link href=\"text/sbasic/shared/03030104.xhp\" name=\"Month\"><emph>Ji`a</emph></link>, <link href=\"text/sbasic/shared/03030106.xhp\" name=\"Year\"><emph>Waggaa</emph></link> yookiin <link href=\"text/sbasic/shared/03030201.xhp\" name=\"Hour\"><emph>Sa`atii</emph></link>, <link href=\"text/sbasic/shared/03030202.xhp\" name=\"Minute\"><emph>Daqiiqaa</emph></link>, <link href=\"text/sbasic/shared/03030204.xhp\" name=\"Second\"><emph>sekoondii</emph></link> wajjin ni jijjiiru."
+msgid "<bookmark_value>Seek statement</bookmark_value>"
+msgstr "<bookmark_value>Hima Barbaachaa</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>Jijjiiramaawwan diraa</emph> yommuu ibsaman diraa-qullaaa (\"\") ni ramadu."
+msgid "<link href=\"text/sbasic/shared/03020305.xhp\" name=\"Seek Statement [Runtime]\">Seek Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020305.xhp\" name=\"Seek Statement [Runtime]\">Hima Barbaachaa [Runtime]</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 "Waraantoolee"
+msgid "Sets the position for the next writing or reading in a file that was opened with the Open statement."
+msgstr "Faayilii hima banaadhaan baname qubannoo itti aanee barreefamu ykn dubbifamuf qubannoo qindeessi."
-#: 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 "Bu`uuri $[officename] waraantoolee fuul-tokko yookiin fuul-baay`ee, akaakuu jijjiiramaa ifteessamanii ni beeka. Waraantooleen gulaalii tarreeewwannii fi gabateewwan sagantaalee keessaatiif mijaa`oodha.Tokko tokkoon maalimoota waraanta kasaa lakkoofsaa keessaan ni qajeelchamu."
+msgid "For random access files, the Seek statement sets the number of the next record to be accessed."
+msgstr "Faayilii darbee darbee argachuuf, himni barbaachaa lakkoofsa gabaasa itti aanee dhufu qindeessa."
-#: 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 "Waraantooleen <emph>dirqamat</emph> hima <emph>Golgolii</emph> wajjin ibsamu.Hangii kasaa warantoo ibsuuf tooftaaleen baay`een ni jiru."
+msgid "For all other files, the Seek statement sets the byte position at which the next operation is to occur."
+msgstr "Faayiloota biraatiif,himni barbaachaa qubannoo baayitii mogaasa kan dalagni itti aanu mula'atu."
-#: 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 "0 hanga 20 maalimoota kennaman 21"
+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 "Kanas ilaali: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Bani</link>, <link href=\"text/sbasic/shared/03020304.xhp\" name=\"Seek\"> Baraadi</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 "maalimoota 30 (a matrix of 6 x 5 elements)"
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 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 "5 hanga 25ti maalimoota kennaman 21"
+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 "-15 hanga 5ti maalimoota kennaman 21 (including 0)"
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 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 "hangiin kasaa lakkoofsota poozatiivii akasumas negeetiivii qabaachuu ni danda`a."
+msgid "<emph>FileNumber: </emph>The data channel number used in the Open statement."
+msgstr "<emph>FileNumber: </emph>Lakkofsi karaa agargaa hima banaa keessatti fayyada."
-#: 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 "dhaabbatoota"
+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>Qubannoo: </emph>Qubannoo itti aanuu barreessuuf ykn dubisuuf. Qubannoon lakkofsa gidduu 1 and 2,147,483,647 moggaafama.Akkataa gosa faayilii kanaatti,qabannoon hamma gabaasaa agarsiisa (faayiliin haalata darbee darbeen kessatti) ykn qabannoo baayitii(faayilii lamee, bahaa, miiltessi,naqa ykn haalata).Baayitiin dura faayilii keessatt 1, Baayitiin faayilii lammaffa keessatti 2, fi kanaaf kan kan fakkaatan."
-#: 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 "dhaabbattootni gatii dhaabbataa qabu. Isaan kunis sagantaa keessatti takkaa iddoo ibsamee booda dabalataan ibsuun hin danda`amu:"
+msgid "Managing Files"
+msgstr "Faayiloota Taliiguu"
-#: 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=\"Managing Files\">Faayiloota Taliiguu</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 "Faankishinii fi hima faayilii taliiguuf asitti ibsameera."
+
+#: 03020401.xhp
+msgctxt ""
+"03020401.xhp\n"
"tit\n"
"help.text"
-msgid "DefObj Statement [Runtime]"
-msgstr "Hima DefObj[Runtime]"
+msgid "ChDir Statement [Runtime]"
+msgstr "Hima ChDir [Runtime]"
-#: 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>Hima DefObj</bookmark_value>"
+msgid "<bookmark_value>ChDir statement</bookmark_value>"
+msgstr "<bookmark_value>Hima 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 Statement [Runtime]\">Hima DefObj [Runtime]</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 Statement [Runtime]\">Hima ChDir[Runtime]</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 "yoo arfiin akaakuu labsii ykn jefuraa hin ifteeffamne,akkaataa hangii qubeetiin, akaakuu jijjiiramaa durtii qindeessi."
+msgid "Changes the current directory or drive."
+msgstr "Oofuu ykn galeeloo ammee jijjiira."
-#: 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 "Himni yeroo darbaa galmee keessatti amma hin hojjetu.Ilaali <link href=\"http://www.openoffice.org/issues/show_bug.cgi?id=30692\">dhimma</link> odeeffannoo dabalataatiif."
+
+#: 03020401.xhp
+msgctxt ""
+"03020401.xhp\n"
+"hd_id3154347\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasimaa:"
+msgstr "caasimaa:"
-#: 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 "Ulaagaalee:"
-#: 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>Hangiiarfii:</emph> Qubeewwan kan hangii jijjiiramtootaa kan akaakuu deetaa durtii qindeessuu barbaaddu ifteessan."
+msgid "<emph>Text:</emph> Any string expression that specifies the directory path or drive."
+msgstr "<emph>Barruu:</emph> Himamsa itergaa kan galeeloota xurree oofuu ibsu."
-#: 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> Jefuraan kan akaakuu jijjiiramaa durtii qindeessu:"
+msgid "If you only want to change the current drive, enter the drive letter followed by a colon."
+msgstr "Yoo oofuu ammee jijjiiruu barbaadde oofuu qubee xuqlameetti aansee dhufu qalchi."
-#: 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>Jefuraa: </emph>Akaakuu jijjiiramaa durtii"
-
-#: 03101700.xhp
-msgctxt ""
-"03101700.xhp\n"
-"par_id3150769\n"
-"9\n"
-"help.text"
-msgid "<emph>DefObj:</emph> Object"
-msgstr "<emph>DefObj:</emph> Wanta"
-
-#: 03101700.xhp
-msgctxt ""
-"03101700.xhp\n"
-"hd_id3156212\n"
-"10\n"
-"help.text"
msgid "Example:"
msgstr "Fakkeenya:"
-#: 03101700.xhp
-msgctxt ""
-"03101700.xhp\n"
-"par_id3153969\n"
-"12\n"
-"help.text"
-msgid "REM Prefix definitions for variable types:"
-msgstr "REM hiika huddeelsoo akaakuu jijjiiramaaf:"
-
-#: 03101700.xhp
-#, fuzzy
-msgctxt ""
-"03101700.xhp\n"
-"par_id3156424\n"
-"13\n"
-"help.text"
-msgid "DefBool b"
-msgstr "DefBool b"
-
-#: 03101700.xhp
-#, fuzzy
-msgctxt ""
-"03101700.xhp\n"
-"par_id3159254\n"
-"14\n"
-"help.text"
-msgid "DefDate t"
-msgstr "DefDate t"
-
-#: 03101700.xhp
-#, fuzzy
-msgctxt ""
-"03101700.xhp\n"
-"par_id3150440\n"
-"15\n"
-"help.text"
-msgid "DefDbL d"
-msgstr "DefDbL d"
-
-#: 03101700.xhp
-#, fuzzy
-msgctxt ""
-"03101700.xhp\n"
-"par_id3161832\n"
-"16\n"
-"help.text"
-msgid "DefInt i"
-msgstr "DefInt i"
-
-#: 03101700.xhp
-#, fuzzy
-msgctxt ""
-"03101700.xhp\n"
-"par_id3145365\n"
-"17\n"
-"help.text"
-msgid "DefLng l"
-msgstr "DefLng l"
-
-#: 03101700.xhp
-#, fuzzy
-msgctxt ""
-"03101700.xhp\n"
-"par_id3149481\n"
-"18\n"
-"help.text"
-msgid "DefObj o"
-msgstr "DefObj o"
-
-#: 03101700.xhp
-#, fuzzy
-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 "Hima Let [Runtime]"
+msgid "ChDrive Statement [Runtime]"
+msgstr "Hima ChDrive [Runtime]"
-#: 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>Hima Let</bookmark_value>"
+msgid "<bookmark_value>ChDrive statement</bookmark_value>"
+msgstr "<bookmark_value>Hima 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 Statement [Runtime]\">Hima Let [Runtime]</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 Statement [Runtime]\">Hima ChDrive [Runtime]</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 "Jijjiramaaf gatii isaa ramada."
+msgid "Changes the current drive."
+msgstr "Oofuu ammee jijjiiri."
-#: 03103100.xhp
+#: 03020402.xhp
msgctxt ""
-"03103100.xhp\n"
-"hd_id3153127\n"
+"03020402.xhp\n"
+"hd_id3154138\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasimaa:"
+msgstr "caasimaa:"
-#: 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 "Ulaagaalee:"
-#: 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> Jijjiiramaa gatii itti ramaduu barbaaddu dha. Gatii fi akaakuun jijjiiramaa wal gituu qabu."
+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>Barruu:</emph>Himamsa itergaa kamiyyuu kan oofuu qubee haaraa of keessa qabu.Yoo barbaadde faaydamuu dandeessa.<link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\"> sirnasxaa 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 "Akka damee afaanii BASIC keessaatti, jefuraan <emph>Let</emph> dirqaalee dha."
+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 "Oofuun qubee guddaadhaan moggafamuu qaba.Fodaalee jalatti, qubeen ati oofuudhaan moggaaste ijaarsa LASTDRV dhaan murataa'e. yoo qajeelfami diraa arfii danuu ta'e, qubee duraa qfatuu fydhtama qaba. Yoo oofuu hin jirree gahiinsaan fudhate,dogogorri hima OnError jedhamu waliin gabaafama."
-#: 03103100.xhp
+#: 03020402.xhp
msgctxt ""
-"03103100.xhp\n"
-"hd_id3145785\n"
+"03020402.xhp\n"
+"hd_id3153188\n"
"8\n"
"help.text"
msgid "Example:"
msgstr "Fakkeenya:"
-#: 03103100.xhp
-#, fuzzy
-msgctxt ""
-"03103100.xhp\n"
-"par_id3152939\n"
-"12\n"
-"help.text"
-msgid "MsgBox Len(sText) ' returns 9"
-msgstr "MsgBox Len(sText) REM Returns 9"
-
-#: 03010000.xhp
-msgctxt ""
-"03010000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Screen I/O Functions"
-msgstr "Faankishinoota I/O argii"
-
-#: 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=\"Screen I/O Functions\">Faankishinoota I/O argii</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 "Kutaan kun Faankishinoota Sa`atii Darbee qaaqalee naqaa fi bahaa galiinsa itti fayyadamaa waamuuf gargaaru ibsa."
+msgid "ChDrive \"D\" ' Only possible if a drive 'D' exists."
+msgstr "ChDrive \"D\" REM Yoo oofuun 'D' jiraate qofa danda'ama."
-#: 03131600.xhp
+#: 03020403.xhp
msgctxt ""
-"03131600.xhp\n"
+"03020403.xhp\n"
"tit\n"
"help.text"
-msgid "CreateUnoService Function [Runtime]"
-msgstr "Faankishinii [Runtime] CreateUnoService"
+msgid "CurDir Function [Runtime]"
+msgstr "Faankishinii CurDir [Runtime]"
-#: 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>faankishinii CreateUnoService</bookmark_value>"
+msgid "<bookmark_value>CurDir function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii 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 Function [Runtime]\"> Faankishinii [Runtime] CreateUnoService</link>"
+msgid "<link href=\"text/sbasic/shared/03020403.xhp\">CurDir Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020403.xhp\"> Faankishinii CurDir [Runtime]</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 "Tajaajila Uno, ProcessServiceManager wajjiniin kaasa."
+msgid "Returns a variant string that represents the current path of the specified drive."
+msgstr "Bakkabu'oota diraa kan xurree ammee oofuu ibsame deebisi."
-#: 03131600.xhp
+#: 03020403.xhp
msgctxt ""
-"03131600.xhp\n"
-"hd_id3152801\n"
+"03020403.xhp\n"
+"hd_id3149457\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasimaa:"
+msgstr "caasimaa:"
-#: 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 service name )"
+msgid "CurDir [(Text As String)]"
+msgstr "CurDir [(Text As String)]"
-#: 03131600.xhp
-#, fuzzy
+#: 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 "Tarreeffama tajaajiloota jiraniitiif,gara: http://api.openoffice.org/docs/common/ref/com/sun/star/module-ix.html deemi"
+msgid "Return value:"
+msgstr "Gatii deebii:"
-#: 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 "Fakkeenyawwan:"
+msgid "String"
+msgstr "Diraa"
-#: 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 "Ulaagaalee:"
-#: 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>FuudhaaFaayilaa;Tajaajila API</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>Barruu:</emph> Himamsa kammiyyuu kan oofuu ibsu (Fakkeenyaaf, \"C\" hirama tokkoffaa kan oofuu jabaa duraatiif)."
-#: 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 "Lakkaddaan armaan gadii tajaajila qaaqa faayila banu baniitti fayyadama:"
+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 "Yoo oofuun ibsamuu baatee ykn oofuun dheerina diraa duwwaa (\"\") ta'e, CurDir xurree oofaa ammaat deebisa. $[officename] Bu'uurrii dogogora gabaasa yoo caasimni ibsi oofuu sirrii ta'uu baatee, oofuun hin argamu ykn yoo oofuun qubootaa mul'ate erga qubeen mula'ate CONFIG keessatti hiikama. SYS oofuu dhumaa waliin ta'a."
-#: 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 (\"Please select a file\")"
+msgid "This function is not case-sensitive."
+msgstr "Faankishiniin kun qub-sukanaawaa miti."
-#: 03131600.xhp
-#, fuzzy
+#: 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 \"file chosen: \"+fName"
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 03030104.xhp
+#: 03020404.xhp
msgctxt ""
-"03030104.xhp\n"
+"03020404.xhp\n"
"tit\n"
"help.text"
-msgid "Month Function [Runtime]"
-msgstr "Faankishinii Ji'aa [Runtime]"
+msgid "Dir Function [Runtime]"
+msgstr "Faankishinii Dir [Runtime]"
-#: 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>Faankishinii Ji'aa</bookmark_value>"
+msgid "<bookmark_value>Dir function</bookmark_value>"
+msgstr "<bookmark_value> Faankishinii 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 Function [Runtime]\">Faankishinii Ji'aa[Runtime]</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 Function [Runtime]\"> Faankishinii Dir [Runtime]</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 "Waggaa ji'a tartee guyyaa irraa deebisi kan faankishinii dateSerial fi DateValue irraa maddu."
+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 "Maqaa faayilii ,galeeloo ykn faayilii fi galeeloo hunda oofaa ykn galeeloo kan xurree barbaachisaa waliin wal gitu deebisi."
-#: 03030104.xhp
+#: 03020404.xhp
msgctxt ""
-"03030104.xhp\n"
-"hd_id3145068\n"
+"03020404.xhp\n"
+"hd_id3154365\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasima:"
+msgstr "caasimaa:"
-#: 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 "Ji'a (Lakkoofsa)"
+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 "Gatii deebii:"
-#: 03030104.xhp
+#: 03020404.xhp
msgctxt ""
-"03030104.xhp\n"
-"par_id3154125\n"
+"03020404.xhp\n"
+"par_id3153193\n"
"6\n"
"help.text"
-msgid "Integer"
-msgstr "Itergaa"
+msgid "String"
+msgstr "Diraa"
-#: 03030104.xhp
+#: 03020404.xhp
msgctxt ""
-"03030104.xhp\n"
-"hd_id3150768\n"
+"03020404.xhp\n"
+"hd_id3153770\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Ulaagaalee:"
-#: 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>Lakkoofsa:</emph> Numeric expression that contains the serial date number that is used to determine the month of the year."
+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>Barruu:</emph>Himamsa itergaa kamiyyuu kan xurree barabaachisaa,galeeloo fi faayilii. Qajeelfamni kun kan ibsamu yommu ati faankishinii Dir waamtu. yoo barbaadde, xurree <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\"> sirnasxaa URL </link>haala kanaan galchuu dandeessa."
-#: 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 "Faankishininin kun faallaa <emph>DateSerial </emph> ti.Kan inni deebisu ji'a waggaa keessatti kan guyyaa ta'e waliin wal gutu yommuu ta'u <emph>DateSerial</emph> tiin madda ykn <emph>DateValue</emph>. Fakkeenyaaf, himamsa."
+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> Himamsa itergaa kamiyyuu kan faayilii laklamee ibsu. Faankishiniin Dir jedhamu faayiliin ykn galeeloon amaloota ibsaman waliin wal madaalu deebisa. Amaloota hedduu gatii amalootaa ida'uun walitti makuu dandeessa."
-#: 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 "Gatii 12 deebii."
+msgid "0 : Normal files."
+msgstr "0: Faayilii baratamoo."
-#: 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 : Maqaa galeeloo qofa deebisi."
+
+#: 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 "Akka faayiliin ykn galeeloon jiru mirkaneessuu yoo barbaadde amaloota faayyadami ykn faayilii fi ukaankaa hunda galeeloo keessatti murteessi."
+
+#: 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 "Jiraachuu faayiliin mirkaneessuuf,xurree fi maqaa faayilii guutuu galchi. Yoo maqaan faayilii ykn galeeloon jiraachuu baate ,faankishiniin Dir dheerina diraa duwwaa (\" \") deebisa."
+
+#: 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 "Tarree faayiilota argaman hunda galeeloo ibsame kessaatti maddisiisuuf, akka armaan gadiitti itti fufi:Yeroo duraaf yoo faankishinii Dir jedhamu waamtu,faayiliidhaaf xurree barbaachaa guutuu ibsi, fakkenyaaf,\"D:\\Files\\*.sxw\".Yoo xurreen sirrii ta'ee barbaachisaan yoo xiqqaate faayilii tokko argate, faankishiniin Dir jedhamu maqaa faayilii xurree barbaachisaa waliin wal madaalu deebisa. Maqaa faayilii dabalataa xurree barbaachisaa waliin wal madaalu deebisuuf faankishinii Dir irra deebi'ii waami garuu falanaa malee ta'uu qaba."
+
+#: 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 "Galeelota qofa deebisi, amaloota ulaagaalee fayyadami.Qabiyyee maqaa murateessuf haaluma wal fakkaatu faayyadami (fakkeenyaaf, hirama oofuu jabaa)"
+
+#: 03020404.xhp
+msgctxt ""
+"03020404.xhp\n"
+"hd_id3154942\n"
+"20\n"
"help.text"
msgid "Example:"
msgstr "Fakkeenya:"
-#: 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,\"Ji'a amma\""
+msgid "' Displays all files and directories"
+msgstr "REM Faayiloota fi galeeloota hunda agarsiisi."
-#: 03090301.xhp
+#: 03020404.xhp
msgctxt ""
-"03090301.xhp\n"
+"03020404.xhp\n"
+"par_id3153416\n"
+"27\n"
+"help.text"
+msgid "sDir=\"Directories:\""
+msgstr "sDir=\"Directories:\""
+
+#: 03020404.xhp
+msgctxt ""
+"03020404.xhp\n"
+"par_id3154253\n"
+"34\n"
+"help.text"
+msgid "' Get the directories"
+msgstr "REM Galeeloota argadhu"
+
+#: 03020405.xhp
+msgctxt ""
+"03020405.xhp\n"
"tit\n"
"help.text"
-msgid "GoSub...Return Statement [Runtime]"
-msgstr "Hima GoSub...Return [Runtime]"
+msgid "FileAttr-Function [Runtime]"
+msgstr "Faankishinii FileAttr [Runtime]"
-#: 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>Hima GoSub...Return </bookmark_value>"
+msgid "<bookmark_value>FileAttr function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii 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 Statement [Runtime]\">Hima GoSub...Return [Runtime]</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-Function [Runtime]\">Faankishinii FileAttr[Runtime]</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 "sagantaa xiqqaa kan asxaan agarsiifame sagantaa xiqqaa ykn faankishiniini irraa waami. Himoonni asxatti aanan kan raawwatu hanga himni itti aanu deebi'utti. Isaan booda,sagantaan hima hima <emph>GoSub </emph>aanu waliin itti fufa."
+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 "Haalata gahinsaa deebisi ykn lakkofsa gahiinsa faayilii kan hima banaa dhaan banamu.Lakkofsi gahiinsa faayilii sirna dalagaa (OSH= Qabannoo sirna dalagaa)"
-#: 03090301.xhp
+#: 03020405.xhp
msgctxt ""
-"03090301.xhp\n"
-"hd_id3145609\n"
+"03020405.xhp\n"
+"par_id3153364\n"
"3\n"
"help.text"
-msgid "Syntax:"
-msgstr "caasimaa"
+msgid "If you use a 32-Bit operating system, you cannot use the FileAttr-Function to determine the file access number."
+msgstr "Sirna dalagaa laklamee 32 yoo fayyadamte,ga'uumsa lakkoofsaa faayilii murteessuuf faankishinii FileAttr fayyadamuu hin dandeesssu."
-#: 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 "Ulaagaalee ilaali"
+msgid "See also: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>"
+msgstr "Kanas ilaali: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Bani</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 "Ulaagaalee;"
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 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 "garee himaa"
+msgid "Return value:"
+msgstr "Gatii deebii:"
-#: 03090301.xhp
-#, fuzzy
+#: 03020405.xhp
msgctxt ""
-"03090301.xhp\n"
-"par_id3154140\n"
+"03020405.xhp\n"
+"par_id3146974\n"
"8\n"
"help.text"
-msgid "Label"
-msgstr "Label"
+msgid "Integer"
+msgstr "intergaa"
-#: 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 "garee himaa"
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 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 Label"
+msgid "<emph>FileNumber:</emph> The number of the file that was opened with the Open statement."
+msgstr "<emph>Lakkofsa faayilii:</emph> Hamma faayilii baname hima baneme wajjin."
-#: 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>Amaloota:</emph> Himamsa itergaa kan odeeffannoo faayilii deebisuu barbaaddee agarsiisu .Gatiiwwan armaan gadii ni danda'amu."
-#: 03090301.xhp
+#: 03020405.xhp
msgctxt ""
-"03090301.xhp\n"
-"par_id3154685\n"
+"03020405.xhp\n"
+"par_id3147396\n"
"12\n"
"help.text"
-msgid "Label:"
-msgstr "Asxaa:"
+msgid "1: The FileAttr-Function indicates the access mode of the file."
+msgstr "1: Faankishiniin FileAttr jedhamu haalata ga'uumsa faayilii agarsiisa."
-#: 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 "garee himaa"
+msgid "2: The FileAttr-Function returns the file access number of the operating system."
+msgstr "Faankishiniin FileAttr jedhamu sirna dalagaa gah'uumsa lakkoofsaa deebisa."
-#: 03090301.xhp
-#, fuzzy
+#: 03020405.xhp
msgctxt ""
-"03090301.xhp\n"
-"par_id3159252\n"
+"03020405.xhp\n"
+"par_id3154018\n"
"14\n"
"help.text"
-msgid "Return"
-msgstr "deebisi"
+msgid "If you specify a parameter attribute with a value of 1, the following return values apply:"
+msgstr "Yoo amaloota ulaagaalee gatii 1 ibsite, gatiin armaan kanaa gadii fayyadamee deebisa."
-#: 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 (faayilii naqaaf banamu)"
-#: 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 "Himni<emph>GoSub</emph> sagantaa xiqqoo qe'e asxaan sagantaa xiqqoo ykn faankishiniinin agarsiifame waama. Maqaan asxaa tuq-lameen(\":\")dhan dhumuu qaba."
+msgid "2 - OUTPUT (file open for output)"
+msgstr "2 - OUTPUT (faayilii bahaaf banamu)"
-#: 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 "Yoo sagantaan hima deebii of keessaatti qabu <emph>GoSub</emph>durfamuu baate, $[officename] Basic ergaa dogongoraa deebisa. sagantaan Sub ykn Function dhiisuu dhugoomsuuf osoo hima Return bira hinga'in<emph>Exit Sub</emph> ykn <emph>Exit Function</emph> fayyadami."
+msgid "4 - RANDOM (file open for random access)"
+msgstr "4 - RANDOM (faayilii gahiinsa darbee darbee banamuu )"
-#: 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 (faayilii miiltessaaf baname)"
+
+#: 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 "Fakkeenyi armaan gadii faayidaa <emph>GoSub</emph> and <emph>Return</emph> mul'isa.Kutaa sagantaa al-lama raawwachuun,sagantaan iskuweer ruuttii lakkofsota lamaa kan fayyadamaan itti gale shallaga."
+msgid "32 - BINARY (file open in binary mode)."
+msgstr "32 - BINARY (faayilii haalata lameetiin baname)."
-#: 03090301.xhp
+#: 03020405.xhp
msgctxt ""
-"03090301.xhp\n"
-"hd_id3156284\n"
+"03020405.xhp\n"
+"hd_id3147339\n"
"20\n"
"help.text"
msgid "Example:"
msgstr "Fakkeenya:"
-#: 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$ \"Enter the first number: \",\"NumberInput\"))"
-
-#: 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$ \"Enter the second number: \",\"NumberInput\"))"
+msgid "Print #iNumber, \"This is a line of text\""
+msgstr "Maxxansa #iNumber, \"Kun Sarara barruuti\""
-#: 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 \"The square root of\";iInputa;\" is\";iInputc"
+msgid "MsgBox FileAttr(#iNumber, 1 ),0,\"Access mode\""
+msgstr "MsgBox FileAttr(#iNumber, 1 ),0,\"Access mode\""
-#: 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 \"The square root of\";iInputb;\" is\";iInputc"
+msgid "MsgBox FileAttr(#iNumber, 2 ),0,\"File attribute\""
+msgstr "MsgBox FileAttr(#iNumber, 2 ),0,\"File attribute\""
-#: 03090408.xhp
+#: 03020406.xhp
msgctxt ""
-"03090408.xhp\n"
+"03020406.xhp\n"
"tit\n"
"help.text"
-msgid "Stop Statement [Runtime]"
-msgstr "Hima Dhaabuu [Runtime]"
+msgid "FileCopy Statement [Runtime]"
+msgstr "Hima faayilii garagalchuu [Runtime]"
-#: 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>Hima Dhaabuu</bookmark_value>"
+msgid "<bookmark_value>FileCopy statement</bookmark_value>"
+msgstr "<bookmark_value>Hima faayilii garagalchuu</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 Statement [Runtime]\">Hima Dhaabuu [Runtime]</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 Statement [Runtime]\">Hima Faayilii jaaltessa [Runtime]</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 "Raawwii Bu'uura sagantaa dhaabi."
+msgid "Copies a file."
+msgstr "Faayilii jaaltessa."
-#: 03090408.xhp
+#: 03020406.xhp
msgctxt ""
-"03090408.xhp\n"
-"hd_id3153126\n"
+"03020406.xhp\n"
+"hd_id3147443\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasimaa:"
+msgstr "caasimaa:"
-#: 03090408.xhp
-#, fuzzy
+#: 03020406.xhp
msgctxt ""
-"03090408.xhp\n"
-"par_id3156023\n"
+"03020406.xhp\n"
+"par_id3146957\n"
"4\n"
"help.text"
-msgid "Stop"
-msgstr "Dhaabi"
+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 "Example:"
-msgstr "Fakkeeny:"
-
-#: 03010305.xhp
-msgctxt ""
-"03010305.xhp\n"
-"tit\n"
-"help.text"
-msgid "RGB Function [Runtime]"
-msgstr "Faankishinii RGB [Runtime]"
-
-#: 03010305.xhp
-msgctxt ""
-"03010305.xhp\n"
-"hd_id3150792\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 Function [Runtime]\">Faankishinii RGB [Runtime]</link>"
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 03010305.xhp
+#: 03020406.xhp
msgctxt ""
-"03010305.xhp\n"
-"par_id3150447\n"
-"2\n"
+"03020406.xhp\n"
+"par_id3155390\n"
+"6\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 color value\">Gatii halluu intergaa dheeraa</link> akaakuuwwan diimaa, magariisaa fi cuquliisa irraa ijaarame deebisi."
+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>Barruu irraa:</emph> Himamsa diraanii kamiyyuu kan maqaa faayilii ibsu kan ati jaaltessuu barbaade.Himamsi xurree filannoo fi odeeffannoo oofamu of keessaa qaba. Yoo barbaade,xurree galchuu dandeessa <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\"> sirnasxa URL </link> kessatti."
-#: 03010305.xhp
+#: 03020406.xhp
msgctxt ""
-"03010305.xhp\n"
-"hd_id3147229\n"
-"3\n"
+"03020406.xhp\n"
+"par_id3150669\n"
+"7\n"
"help.text"
-msgid "Syntax:"
-msgstr "Caasimaa:"
+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>Barruu gara:</emph>Himamsa diraa eessatti faayilii madda irra garagalchuu akka barbaaddu.Himamsi oofuu gaa'uumsaa, xurree, fi maqaa fayilii, ykn xurree sirnasxa URL of keessaa qaba."
-#: 03010305.xhp
+#: 03020406.xhp
msgctxt ""
-"03010305.xhp\n"
-"par_id3155132\n"
-"4\n"
+"03020406.xhp\n"
+"par_id3150791\n"
+"8\n"
"help.text"
-msgid "RGB (Red, Green, Blue)"
-msgstr "RGB (Red, Green, Blue)"
+msgid "You can only use the FileCopy statement to copy files that are not opened."
+msgstr "Faayiloota garagalchuun hin danda'amne hima FileCopy jedhu qofa fayyadamuun ni dandeessa."
-#: 03010305.xhp
+#: 03020406.xhp
msgctxt ""
-"03010305.xhp\n"
-"hd_id3156442\n"
-"5\n"
+"03020406.xhp\n"
+"hd_id3125863\n"
+"9\n"
"help.text"
-msgid "Return value:"
-msgstr "Gatii deebii:"
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 03010305.xhp
+#: 03020407.xhp
msgctxt ""
-"03010305.xhp\n"
-"par_id3159153\n"
-"6\n"
+"03020407.xhp\n"
+"tit\n"
"help.text"
-msgid "Long"
-msgstr "Dheeraa"
+msgid "FileDateTime Function [Runtime]"
+msgstr "Faankishinii FileDateTime[Runtime]"
-#: 03010305.xhp
+#: 03020407.xhp
msgctxt ""
-"03010305.xhp\n"
-"hd_id3154013\n"
-"7\n"
+"03020407.xhp\n"
+"bm_id3153361\n"
"help.text"
-msgid "Parameter:"
-msgstr "Ulaagaa:"
+msgid "<bookmark_value>FileDateTime function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii FileDateTime</bookmark_value>"
-#: 03010305.xhp
+#: 03020407.xhp
msgctxt ""
-"03010305.xhp\n"
-"par_id3152597\n"
-"8\n"
+"03020407.xhp\n"
+"hd_id3153361\n"
+"1\n"
"help.text"
-msgid "<emph>Red</emph>: Any integer expression that represents the red component (0-255) of the composite color."
-msgstr "<emph>Diimaa</emph>: Himannoo intergaa kamiyyuu akaakuu diimaa (0-255) kan halluu makaa baka bu`u dha."
+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 Function [Runtime]\"> Faankishinii FileDateTime [Runtime]</link>"
-#: 03010305.xhp
+#: 03020407.xhp
msgctxt ""
-"03010305.xhp\n"
-"par_id3146974\n"
-"9\n"
+"03020407.xhp\n"
+"par_id3156423\n"
+"2\n"
"help.text"
-msgid "<emph>Green</emph>: Any integer expression that represents the green component (0-255) of the composite color."
-msgstr "<emph>Magariisa</emph>: Himannoo intergaa kamiyyuu akaakuu magariisa (0-255) kan halluu makaa baka bu`u dha."
+msgid "Returns a string that contains the date and the time that a file was created or last modified."
+msgstr "Diraa guyyaa fi yeroo of keessaa qabu faayiliin kan itti uumame ykn itti fooyya'e deebisa."
-#: 03010305.xhp
+#: 03020407.xhp
msgctxt ""
-"03010305.xhp\n"
-"par_id3151113\n"
-"10\n"
+"03020407.xhp\n"
+"hd_id3154685\n"
+"3\n"
"help.text"
-msgid "<emph>Blue</emph>: Any integer expression that represents the blue component (0-255) of the composite color."
-msgstr "<emph>Cuquliisa</emph>: Himannoo intergaa kamiyyuu akaakuu cuquliisa (0-255) kan halluu makaa baka bu`u dha."
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 03010305.xhp
+#: 03020407.xhp
msgctxt ""
-"03010305.xhp\n"
-"hd_id3147435\n"
-"11\n"
+"03020407.xhp\n"
+"par_id3154124\n"
+"4\n"
"help.text"
-msgid "Example:"
-msgstr "Fakkeenya:"
+msgid "FileDateTime (Text As String)"
+msgstr "FileDateTime (Barruu akka diraati)"
-#: 03010305.xhp
-#, fuzzy
+#: 03020407.xhp
msgctxt ""
-"03010305.xhp\n"
-"par_id3145647\n"
-"15\n"
+"03020407.xhp\n"
+"hd_id3150448\n"
+"5\n"
"help.text"
-msgid "MsgBox \"The color \" & lVar & \" consists of:\" & Chr(13) &_"
-msgstr "MsgBox \"The color \" & lVar & \" consists of:\" & Chr(13) &_"
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 03010305.xhp
+#: 03020407.xhp
msgctxt ""
-"03010305.xhp\n"
-"par_id3154491\n"
-"16\n"
+"03020407.xhp\n"
+"par_id3159153\n"
+"6\n"
"help.text"
-msgid "\"red= \" & red(lVar) & Chr(13)&_"
-msgstr "\"red= \" & red(lVar) & Chr(13)&_"
+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>Barruu:</emph> Himamsa diraa kammiiyyuu kan faayilii ifa ta'e of keessa qabu. Kanas fayyaduumuu ni dandeessa <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">Sirnasxaa URL</link>."
-#: 03010305.xhp
+#: 03020407.xhp
msgctxt ""
-"03010305.xhp\n"
-"par_id3149401\n"
-"17\n"
+"03020407.xhp\n"
+"par_id3155306\n"
+"7\n"
"help.text"
-msgid "\"green= \" & green(lVar) & Chr(13)&_"
-msgstr "\"green= \" & green(lVar) & Chr(13)&_"
+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 "Faankishiniin kun faayiliin yeroo kam akka uumamee fi yeroo dhumaa kam akka fooyya'e erga murteesse booda haala kanaan \"MM.DD.YYYY HH.MM.SS\" deebi'a."
-#: 03010305.xhp
+#: 03020407.xhp
msgctxt ""
-"03010305.xhp\n"
-"par_id3150716\n"
-"18\n"
+"03020407.xhp\n"
+"hd_id3146119\n"
+"8\n"
"help.text"
-msgid "\"blue= \" & blue(lVar) & Chr(13) , 64,\"colors\""
-msgstr "\"blue= \" & blue(lVar) & Chr(13) , 64,\"colors\""
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 03102600.xhp
+#: 03020408.xhp
msgctxt ""
-"03102600.xhp\n"
+"03020408.xhp\n"
"tit\n"
"help.text"
-msgid "IsNull Function [Runtime]"
-msgstr "Faankishinii IsNull[Runtime]"
+msgid "FileLen-Function [Runtime]"
+msgstr "Faankishinii FileLen [Runtime]"
-#: 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>Faankishinii IsNull</bookmark_value><bookmark_value>Gatii Null</bookmark_value>"
+msgid "<bookmark_value>FileLen function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii 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 Function [Runtime]\">Faankishinii IsNull [Runtime]</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-Function [Runtime]\"> Faankishinii FileLen [Runtime]</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 "Yoo jijjiiramaan gatii addaa Null qabaate,jijjiiramaan kan deetaa hin qabne ta'uu isaa agarsiisudhaan, basdaada."
+msgid "Returns the length of a file in bytes."
+msgstr "Dheerina faayilii bayitiin deebisi."
-#: 03102600.xhp
+#: 03020408.xhp
msgctxt ""
-"03102600.xhp\n"
-"hd_id3150670\n"
+"03020408.xhp\n"
+"hd_id3159414\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasimaa:"
+msgstr "caasimaa:"
-#: 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 (Barruu akka Diraa ti)"
-#: 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 "Gatii deebii:"
-#: 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 "Dheeraa"
-#: 03102600.xhp
+#: 03020408.xhp
msgctxt ""
-"03102600.xhp\n"
-"hd_id3149669\n"
+"03020408.xhp\n"
+"hd_id3150768\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Ulaagaalee:"
-#: 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> Jijjiiramaa kamiyyuu kan ati basdaaduu barbaaddu dha. Yoo gatiin jijjiiramaa ni jira ta'e, faankishinichi dhugaa deebisa; Yoo hin jiru ta'e ammoo soba deebisa."
+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> Himamsa diraa kammiiyyuu kan faayilii ifa ta'e of keessa qabu. kanas fayyadamuu ni dandeessa <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">Sirnasxa 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> -Gatiin kun akaakuu cita deetaa qabiyyeewwan sirrii hin taaneef fayyada."
+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 "Faankishiniin kun dheerina faayilii murteessa. Yoo fankishiniin FileLen waamame faayilii banaa ta'e, dheerina faayilii osoo hin banamin dura deebisa.Dheerina faayilii banamaa ammaa murteessuuf, faankishinii Lof fayyadami."
-#: 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 "Fakkeenya:"
-#: 03070300.xhp
+#: 03020409.xhp
msgctxt ""
-"03070300.xhp\n"
+"03020409.xhp\n"
"tit\n"
"help.text"
-msgid "\"+\" Operator [Runtime]"
-msgstr "\"+\" Operator [Runtime]"
+msgid "GetAttr Function [Runtime]"
+msgstr "Faankishinii GetAttr [Runtime]"
-#: 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>\"+\" Ogeejjii (herreegaa)</bookmark_value>"
+msgid "<bookmark_value>GetAttr function</bookmark_value>"
+msgstr "<bookmark_value> Faankishinii 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\">\"+\" Ogeejjii [Runtime]</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 Function [Runtime]\"> Faankishinii GetAttr [Runtime]</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 "himannoo lama ida'i ykn walitti maki."
+msgid "Returns a bit pattern that identifies the file type or the name of a volume or a directory."
+msgstr "Haala laklamee kan gosa faayilii ykn maqaa qabee galeeloo deebisa."
-#: 03070300.xhp
+#: 03020409.xhp
msgctxt ""
-"03070300.xhp\n"
-"hd_id3144500\n"
+"03020409.xhp\n"
+"hd_id3149457\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasimaa:"
+msgstr "caasimaa:"
-#: 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 "Bu’aa = Himannoo1 + Himannoo2"
+msgid "GetAttr (Text As String)"
+msgstr "GetAttr (Barruu akk diraati)"
-#: 03070300.xhp
+#: 03020409.xhp
msgctxt ""
-"03070300.xhp\n"
-"hd_id3150400\n"
+"03020409.xhp\n"
+"hd_id3151211\n"
"5\n"
"help.text"
-msgid "Parameters:"
-msgstr "Ulaagaalee:"
+msgid "Return value:"
+msgstr "Gatii deebii:"
-#: 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>Bu'aa:</emph> himannoo lakkofsa kamu bu'aa ida'uu qabu."
+msgid "Integer"
+msgstr "intergaa"
-#: 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>Himannoo1, Himannoo2:</emph> himannoowwan lakkoofsa kamu kan walitti makuu ykn ida'uu barbaadde."
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 03070300.xhp
+#: 03020409.xhp
msgctxt ""
-"03070300.xhp\n"
-"hd_id3153969\n"
+"03020409.xhp\n"
+"par_id3151042\n"
"8\n"
"help.text"
-msgid "Example:"
-msgstr "Fakkeenya:"
+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> Himamsa diraa kammiiyyuu kan faayilii ifa ta'e of keessa qabu. kanas fayyadamuu ni dandeessa <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">Sirnasxa URL</link>."
-#: 03120311.xhp
+#: 03020409.xhp
msgctxt ""
-"03120311.xhp\n"
-"tit\n"
+"03020409.xhp\n"
+"par_id3161831\n"
+"9\n"
"help.text"
-msgid "Trim Function [Runtime]"
-msgstr "Faankishinii Trim [Runtime]"
+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 "Faankishiniin kun amala faayilii ibsamee murteessu fi haala laklamee erga deebise booda amaloota faayilii armaan gadii addaan baasuuf gargaara."
-#: 03120311.xhp
+#: 03020409.xhp
msgctxt ""
-"03120311.xhp\n"
-"bm_id3150616\n"
+"03020409.xhp\n"
+"hd_id3145364\n"
+"10\n"
"help.text"
-msgid "<bookmark_value>Trim function</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii Trim</bookmark_value>"
+msgid "Value"
+msgstr "Gatii"
-#: 03120311.xhp
+#: 03020409.xhp
msgctxt ""
-"03120311.xhp\n"
-"hd_id3150616\n"
-"1\n"
+"03020409.xhp\n"
+"par_id3147349\n"
+"11\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 Function [Runtime]\">Faankishinii Trim [Runtime]</link>"
+msgid "0 : Normal files."
+msgstr "0: Faayilii baratamoo."
-#: 03120311.xhp
+#: 03020409.xhp
msgctxt ""
-"03120311.xhp\n"
-"par_id3149177\n"
-"2\n"
+"03020409.xhp\n"
+"par_id3147434\n"
+"12\n"
"help.text"
-msgid "Removes all leading and trailing spaces from a string expression."
-msgstr "Iddoowwan duraa fi boodaa, himata diraarraa haqa."
+msgid "1 : Read-only files."
+msgstr "1 : Faayilii dubbisuu qofa danda'ama."
-#: 03120311.xhp
+#: 03020409.xhp
msgctxt ""
-"03120311.xhp\n"
-"hd_id3159157\n"
-"3\n"
+"03020409.xhp\n"
+"par_id3159154\n"
+"15\n"
"help.text"
-msgid "Syntax:"
-msgstr "Caasimaa:"
+msgid "8 : Returns the name of the volume"
+msgstr "8 : Maqaa qabee deebisi."
-#: 03120311.xhp
+#: 03020409.xhp
msgctxt ""
-"03120311.xhp\n"
-"par_id3155341\n"
-"4\n"
+"03020409.xhp\n"
+"par_id3145271\n"
+"16\n"
"help.text"
-msgid "Trim( Text As String )"
-msgstr "Trim( Barruu Akka diraa )"
+msgid "16 : Returns the name of the directory only."
+msgstr "16 : Maqaa galeeloo qofa deebisi."
-#: 03120311.xhp
+#: 03020409.xhp
msgctxt ""
-"03120311.xhp\n"
-"hd_id3155388\n"
-"5\n"
+"03020409.xhp\n"
+"par_id3153953\n"
+"17\n"
"help.text"
-msgid "Return value:"
-msgstr "Gatii deebii:"
+msgid "32 : File was changed since last backup (Archive bit)."
+msgstr "32: Dilbiin dhuma waan ta'eef faayiliin jijjiirame( galmee biitii)"
-#: 03120311.xhp
+#: 03020409.xhp
msgctxt ""
-"03120311.xhp\n"
-"par_id3143228\n"
-"6\n"
+"03020409.xhp\n"
+"par_id3156444\n"
+"18\n"
"help.text"
-msgid "String"
-msgstr "Diraa"
+msgid "If you want to know if a bit of the attribute byte is set, use the following query method:"
+msgstr "Yoo amaloota baayitii laklamee qindeefamee beekuu barbaade, toofataa gaaffii gadii fayydami."
-#: 03120311.xhp
+#: 03020409.xhp
msgctxt ""
-"03120311.xhp\n"
-"hd_id3145609\n"
-"7\n"
+"03020409.xhp\n"
+"hd_id3153094\n"
+"19\n"
"help.text"
-msgid "Parameters:"
-msgstr "Ulaagaa:"
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 03120311.xhp
+#: 03020409.xhp
msgctxt ""
-"03120311.xhp\n"
-"par_id3159414\n"
-"8\n"
+"03020409.xhp\n"
+"par_id3155415\n"
+"21\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression."
-msgstr "<emph>Text:</emph> Himata Diraa kamiyyuu"
+msgid "On Error GoTo ErrorHandler ' Define target for error handler"
+msgstr "On Error Goto ErrorHandler REM qiyaaffannoo error-handler dhaaf hiiki."
-#: 03120311.xhp
+#: 03020410.xhp
msgctxt ""
-"03120311.xhp\n"
-"hd_id3148663\n"
-"10\n"
+"03020410.xhp\n"
+"tit\n"
"help.text"
-msgid "Example:"
-msgstr "Fakkeenya:"
+msgid "Kill Statement [Runtime]"
+msgstr "Ajeechaa himaa [Runtime]"
-#: 03000000.xhp
+#: 03020410.xhp
msgctxt ""
-"03000000.xhp\n"
-"tit\n"
+"03020410.xhp\n"
+"bm_id3153360\n"
"help.text"
-msgid "Run-Time Functions"
-msgstr "Faankishinoota Sa`atii Darbee"
+msgid "<bookmark_value>Kill statement</bookmark_value>"
+msgstr "<bookmark_value>Ajeechaa himaa</bookmark_value>"
-#: 03000000.xhp
+#: 03020410.xhp
msgctxt ""
-"03000000.xhp\n"
-"hd_id3152895\n"
+"03020410.xhp\n"
+"hd_id3153360\n"
"1\n"
"help.text"
-msgid "<variable id=\"doc_title\"><link href=\"text/sbasic/shared/03000000.xhp\" name=\"Run-Time Functions\">Run-Time Functions</link></variable>"
-msgstr "<variable id=\"doc_title\"><link href=\"text/sbasic/shared/03000000.xhp\" name=\"Run-Time Functions\">Faankishinoota sa`atii darbee</link></variable>"
+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 Statement [Runtime]\">Ajeechaa himaa [Runtime]</link>"
-#: 03000000.xhp
+#: 03020410.xhp
msgctxt ""
-"03000000.xhp\n"
-"par_id3148983\n"
+"03020410.xhp\n"
+"par_id3151211\n"
"2\n"
"help.text"
-msgid "This section describes the Runtime Functions of <item type=\"productname\">%PRODUCTNAME</item> Basic."
-msgstr "Kutaan kun Bu`uura <item type=\"productname\">%PRODUCTNAME</item> ibsa."
+msgid "Deletes a file from a disk."
+msgstr "Faayilii baxxee irraa balleessi."
-#: 03020103.xhp
+#: 03020410.xhp
msgctxt ""
-"03020103.xhp\n"
-"tit\n"
+"03020410.xhp\n"
+"hd_id3150767\n"
+"3\n"
"help.text"
-msgid "Open Statement[Runtime]"
-msgstr "Hima[Runtime] bani"
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 03020103.xhp
+#: 03020410.xhp
msgctxt ""
-"03020103.xhp\n"
-"bm_id3150791\n"
+"03020410.xhp\n"
+"par_id3154685\n"
+"4\n"
"help.text"
-msgid "<bookmark_value>Open statement</bookmark_value>"
-msgstr "<bookmark_value>Hima bani</bookmark_value>"
+msgid "Kill File As String"
+msgstr "Faayilii akka diraniitti ajeesi."
-#: 03020103.xhp
+#: 03020410.xhp
msgctxt ""
-"03020103.xhp\n"
-"hd_id3150791\n"
-"1\n"
+"03020410.xhp\n"
+"hd_id3153194\n"
+"5\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 Statement[Runtime]\">Hima[Runtime] bani</link>"
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 03020103.xhp
+#: 03020410.xhp
msgctxt ""
-"03020103.xhp\n"
-"par_id3150769\n"
-"2\n"
+"03020410.xhp\n"
+"par_id3150440\n"
+"6\n"
"help.text"
-msgid "Opens a data channel."
-msgstr "Karaa deetaa bani."
+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> Himamsa diraa kammiiyyuu kan faayilii ifa ta'e of keessa qabu. kanas fayyadamuu ni dandeessa <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
-#: 03020103.xhp
+#: 03020410.xhp
msgctxt ""
-"03020103.xhp\n"
-"hd_id3147230\n"
-"3\n"
+"03020410.xhp\n"
+"hd_id3148645\n"
+"7\n"
"help.text"
-msgid "Syntax:"
-msgstr "Caasimaa:"
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 03020103.xhp
+#: 03020410.xhp
msgctxt ""
-"03020103.xhp\n"
-"par_id3154124\n"
-"4\n"
+"03020410.xhp\n"
+"par_id3163710\n"
+"9\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 \"C:\\datafile.dat\" ' File must be created in advance"
+msgstr "Kill \"C:\\datafile.dat\" REM Duraan dursa Faayiliin uumamuu qaba."
-#: 03020103.xhp
+#: 03020411.xhp
msgctxt ""
-"03020103.xhp\n"
-"hd_id3156280\n"
-"5\n"
+"03020411.xhp\n"
+"tit\n"
"help.text"
-msgid "Parameters:"
-msgstr "Ulaagaalee:"
+msgid "MkDir Statement [Runtime]"
+msgstr "Hima MkDir [Runtime]"
-#: 03020103.xhp
+#: 03020411.xhp
msgctxt ""
-"03020103.xhp\n"
-"par_id3155132\n"
-"6\n"
+"03020411.xhp\n"
+"bm_id3156421\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>Maqaa Faayilii: </emph>maqaa fi xurree faayilii kan banuu barbaadeeti. Osoo faayilii hin jire dubbisuu yaalte ergaan dogoggoraa (Access = Read), uumama. Osoo faayilii hin jire barreessuu yaalte faayiliin haaraan (Access = Write), ni uumama."
+msgid "<bookmark_value>MkDir statement</bookmark_value>"
+msgstr "<bookmark_value>Hima MkDir</bookmark_value>"
-#: 03020103.xhp
+#: 03020411.xhp
msgctxt ""
-"03020103.xhp\n"
-"par_id3149262\n"
-"7\n"
+"03020411.xhp\n"
+"hd_id3156421\n"
+"1\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>Haalata:</emph> Jefuraa halata faaayilii ibsuu. Gatii gitaa'aa: Miiltessuu( tartiiba faayiliititti miiltessi),Lamee(deetaa baayitiidhan gahama), naqa( karaa deetaa dubbisuuf banuu), bahaa(karaa deetaa barreessuuf banuu) fi Tasa( faayilii fira ta'an gulaali)"
+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]\">Hima MkDir [Runtime]</link>"
-#: 03020103.xhp
+#: 03020411.xhp
msgctxt ""
-"03020103.xhp\n"
-"par_id3154014\n"
-"8\n"
+"03020411.xhp\n"
+"par_id3147000\n"
+"2\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> Jefuraa akaakuu gahiinsa hiiku. Gatii gataa'aa: Dubbisuu (dubbisuu qofa), Barreessi (Barreessuu qofa), Barreesuu fi dubbisuu (lachuu)."
+msgid "Creates a new directory on a data medium."
+msgstr "Galeeloo haraa giddugaleessa agaargootti uuma."
-#: 03020103.xhp
+#: 03020411.xhp
msgctxt ""
-"03020103.xhp\n"
-"par_id3150011\n"
-"9\n"
+"03020411.xhp\n"
+"hd_id3148520\n"
+"3\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>Hayyisa:</emph> Jefuraa ittisa haalhojii faayilii erga banamee boodaa. Gatii gataa'aa: Yaagutomaa( faayiliin fayyadamaa biraatiin banamuu danda'a), Cufaa dubbisaa(barreefama faayilii faallaan hayyifame), Cufaa Dubbisuu fi Barreessuu (gahiinsa faayiliin didee)"
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 03020103.xhp
+#: 03020411.xhp
msgctxt ""
-"03020103.xhp\n"
-"par_id3153190\n"
-"10\n"
+"03020411.xhp\n"
+"par_id3155150\n"
+"4\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> Himannoon itergaa kamiyyuu 0 hanga 511 karaa bilisaa deetaa agarsiisa.Gahiinsa faayiliitiif ajaja karaa deetaatiin dabarsuu ni dandeessa. Baay'inni faayilii hatattamaan karaa hima banaan dura faankishinii FreeFile jedhuun murtaa'uu qaba."
+msgid "MkDir Text As String"
+msgstr "MkDir Text As String"
-#: 03020103.xhp
+#: 03020411.xhp
msgctxt ""
-"03020103.xhp\n"
-"par_id3151115\n"
-"11\n"
+"03020411.xhp\n"
+"hd_id3156027\n"
+"5\n"
"help.text"
-msgid "<emph>DatasetLength:</emph> For random access files, set the length of the records."
-msgstr "<emph>DatasetLength:</emph> Faayiloota gahiinsa tasaatiif, dheerina kuusaa qindeessi."
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 03020103.xhp
+#: 03020411.xhp
msgctxt ""
-"03020103.xhp\n"
-"par_id3153418\n"
-"12\n"
+"03020411.xhp\n"
+"par_id3153750\n"
+"6\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 "Qabiyyee faayilii isa hima banaadhaan baname qofa fooyyessuu dandeessa.Yoo faayilii banamee ture banuu yaalte ergaa dogogoratu mul'ata."
+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>Barruu:</emph> Himamsa diraa kan maqaa ibsu fi galeeloon xurree akka uumamu taasisu.kanas fayyadamuu ni dandeessa <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\"> sirnasxaa URL </link>."
-#: 03020103.xhp
+#: 03020411.xhp
msgctxt ""
-"03020103.xhp\n"
-"hd_id3149123\n"
-"13\n"
+"03020411.xhp\n"
+"par_id3153311\n"
+"7\n"
"help.text"
-msgid "Example:"
-msgstr "Fakkeenya:"
+msgid "If the path is not determined, the directory is created in the current directory."
+msgstr "Xurreen yoo murtaa'uu baatee, galeeloon galeeloo ammaa kessaatti uumama."
-#: 03020103.xhp
+#: 03020411.xhp
msgctxt ""
-"03020103.xhp\n"
-"par_id3154705\n"
-"22\n"
+"03020411.xhp\n"
+"hd_id3155388\n"
+"8\n"
"help.text"
-msgid "Print #iNumber, \"This is a line of text\""
-msgstr "Print #iNumber, \"Kun sarara barruuti\""
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 03020103.xhp
+#: 03020411.xhp
msgctxt ""
-"03020103.xhp\n"
-"par_id3146916\n"
-"23\n"
+"03020411.xhp\n"
+"par_id3149762\n"
+"10\n"
"help.text"
-msgid "Print #iNumber, \"This is another line of text\""
-msgstr "Print #iNumber, \"Kun sarara barruu isa birooti\""
+msgid "' Example for functions of the file organization"
+msgstr "'Fakkeenya faankishinii dhaabbata fayiliiti."
-#: 03070200.xhp
+#: 03020411.xhp
msgctxt ""
-"03070200.xhp\n"
-"tit\n"
+"03020411.xhp\n"
+"par_id3149669\n"
+"13\n"
"help.text"
-msgid "\"*\" Operator [Runtime]"
-msgstr "\"*\" Ogeejjii [Runtime]"
+msgid "Const sSubDir1 As String =\"Test\""
+msgstr "Const sSubDir1 as String =\"Test\""
-#: 03070200.xhp
+#: 03020411.xhp
msgctxt ""
-"03070200.xhp\n"
-"bm_id3147573\n"
+"03020411.xhp\n"
+"par_id3148663\n"
+"14\n"
"help.text"
-msgid "<bookmark_value>\"*\" operator (mathematical)</bookmark_value>"
-msgstr "<bookmark_value>\"*\" Ogeejii (herreegaa)</bookmark_value>"
+msgid "Const sFile2 As String = \"Copied.tmp\""
+msgstr "Const sFile2 as String = \"Copied.tmp\""
-#: 03070200.xhp
+#: 03020411.xhp
msgctxt ""
-"03070200.xhp\n"
-"hd_id3147573\n"
-"1\n"
+"03020411.xhp\n"
+"par_id3154071\n"
+"15\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03070200.xhp\">\"*\" Operator [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03070200.xhp\">\"*\" Ogeejjii [Runtime]</link>"
+msgid "Const sFile3 As String = \"Renamed.tmp\""
+msgstr "Const sFile3 as String = \"Renamed.tmp\""
-#: 03070200.xhp
+#: 03020411.xhp
msgctxt ""
-"03070200.xhp\n"
-"par_id3154347\n"
-"2\n"
+"03020411.xhp\n"
+"par_id3154217\n"
+"19\n"
"help.text"
-msgid "Multiplies two values."
-msgstr "Gatii lama waliin baay'isi."
+msgid "If Dir(sSubDir1,16)=\"\" Then ' Does the directory exist?"
+msgstr "If Dir(sSubDir1,16)=\"\" then ' Does the directory exist ?"
-#: 03070200.xhp
+#: 03020411.xhp
msgctxt ""
-"03070200.xhp\n"
-"hd_id3148946\n"
-"3\n"
+"03020411.xhp\n"
+"par_id3147228\n"
+"21\n"
"help.text"
-msgid "Syntax:"
-msgstr "caasimaa:"
+msgid "MsgBox sFile,0,\"Create directory\""
+msgstr "MsgBox sFile,0,\"Create directory\""
-#: 03070200.xhp
+#: 03020411.xhp
msgctxt ""
-"03070200.xhp\n"
-"par_id3150358\n"
-"4\n"
+"03020411.xhp\n"
+"par_id3153770\n"
+"26\n"
"help.text"
-msgid "Result = Expression1 * Expression2"
-msgstr "Result = Expression1 * Expression2"
+msgid "MsgBox fSysURL(CurDir()),0,\"Current directory\""
+msgstr "MsgBox fSysURL(CurDir()),0,\"Current directory\""
-#: 03070200.xhp
+#: 03020411.xhp
msgctxt ""
-"03070200.xhp\n"
-"hd_id3150400\n"
-"5\n"
+"03020411.xhp\n"
+"par_id3159154\n"
+"27\n"
"help.text"
-msgid "Parameters:"
-msgstr "Ulaagaalee:"
+msgid "MsgBox sFile & Chr(13) & FileDateTime( sFile ),0,\"Creation time\""
+msgstr "MsgBox sFile & Chr(13) & FileDateTime( sFile ),0,\"Creation time\""
-#: 03070200.xhp
+#: 03020411.xhp
msgctxt ""
-"03070200.xhp\n"
-"par_id3154365\n"
-"6\n"
+"03020411.xhp\n"
+"par_id3149484\n"
+"28\n"
"help.text"
-msgid "<emph>Result:</emph> Any numeric expression that records the result of a multiplication."
-msgstr "<emph>Bu'aa:</emph> himannon lakkofsa kamiyyuu bu'aa baay'isuu kuusa."
+msgid "MsgBox sFile & Chr(13)& FileLen( sFile ),0,\"File length\""
+msgstr "MsgBox sFile & Chr(13)& FileLen( sFile ),0,\"File length\""
-#: 03070200.xhp
+#: 03020411.xhp
msgctxt ""
-"03070200.xhp\n"
-"par_id3154685\n"
-"7\n"
+"03020411.xhp\n"
+"par_id3152885\n"
+"29\n"
"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to multiply."
-msgstr "<emph>Himannoo1, Himannoo2:</emph> Himanno lakkofsa kamu at waliin baay'isuu barbaaddu."
+msgid "MsgBox sFile & Chr(13)& GetAttr( sFile ),0,\"File attributes\""
+msgstr "MsgBox sFile & Chr(13)& GetAttr( sFile ),0,\"File attributes\""
-#: 03070200.xhp
+#: 03020411.xhp
msgctxt ""
-"03070200.xhp\n"
-"hd_id3153968\n"
-"8\n"
+"03020411.xhp\n"
+"par_id3153952\n"
+"31\n"
"help.text"
-msgid "Example:"
-msgstr "Fakkeenya:"
+msgid "' Rename in the same directory"
+msgstr "Galeeloo tokkoo kessattii maqaa jijjiiri."
-#: 03020000.xhp
+#: 03020411.xhp
msgctxt ""
-"03020000.xhp\n"
-"tit\n"
+"03020411.xhp\n"
+"par_id3147426\n"
+"34\n"
"help.text"
-msgid "File I/O Functions"
-msgstr "Faankishinoota I/O Faayilii"
+msgid "SetAttr( sFile, 0 ) 'Delete all attributes"
+msgstr "SetAttr( sFile, 0 ) 'Delete all attributes"
-#: 03020000.xhp
+#: 03020411.xhp
msgctxt ""
-"03020000.xhp\n"
-"hd_id3156344\n"
-"1\n"
+"03020411.xhp\n"
+"par_id3148647\n"
+"35\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020000.xhp\" name=\"File I/O Functions\">File I/O Functions</link>"
-msgstr "<link href=\"text/sbasic/shared/03020000.xhp\" name=\"File I/O Functions\">Faankishinoota I/O Faayilii</link>"
+msgid "MsgBox sFile & Chr(13) & GetAttr( sFile ),0,\"New file attributes\""
+msgstr "MsgBox sFile & Chr(13) & GetAttr( sFile ),0,\"New file attributes\""
-#: 03020000.xhp
+#: 03020411.xhp
msgctxt ""
-"03020000.xhp\n"
-"par_id3153360\n"
-"2\n"
+"03020411.xhp\n"
+"par_id3150092\n"
+"40\n"
"help.text"
-msgid "Use File I/O functions to create and manage user-defined (data) files."
-msgstr "Faayiloota (data) itti gargaaraman ibsame uumuu fi to`achuuf Faankishinoota I/O Faayilii gargaarami."
+msgid "' Converts a system path in URL"
+msgstr "' Converts a system path in URL"
-#: 03020000.xhp
+#: 03020411.xhp
msgctxt ""
-"03020000.xhp\n"
-"par_id3150398\n"
-"3\n"
+"03020411.xhp\n"
+"par_id3156276\n"
+"49\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 "Faayiloota \"walmadaala\" uumuuf akka ni tajaajilan faankishinoota kan gargaarami, achiis kuusaa tokko tokko olkaa`uu fi dabalataan lakkoofsa kuusaa isaaniin fe`uun ni danda`ama.Faankishinootni I/O Faayilii odeeffannoo kan akka hammamtaa faayilii,qindaa`inoota xurree ammee, yookiin uumuu guyyaa faayilii yookiin galoolee kennuudhaan faayiloota to`achuuf gargaara."
+msgid "' the colon with DOS"
+msgstr "' the colon with DOS"
-#: 03101000.xhp
+#: 03020412.xhp
msgctxt ""
-"03101000.xhp\n"
+"03020412.xhp\n"
"tit\n"
"help.text"
-msgid "CStr Function [Runtime]"
-msgstr "Faankishinii CStr[Runtime]"
+msgid "Name Statement [Runtime]"
+msgstr "Hima maqaa [Runtime]"
-#: 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>Faankishinii CStr</bookmark_value>"
+msgid "<bookmark_value>Name statement</bookmark_value>"
+msgstr "<bookmark_value>Hima maqaa </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 Function [Runtime]\">Faankishinii CStr [Runtime]</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 Statement [Runtime]\">Hima maqaa [Runtime]</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 "Himannoo lakkoofsa kamuu gara himannoo diraatti jijjiira."
+msgid "Renames an existing file or directory."
+msgstr "Faayilii ykn galeeloo jiru maqaa jijjiiri."
-#: 03101000.xhp
+#: 03020412.xhp
msgctxt ""
-"03101000.xhp\n"
-"hd_id3148473\n"
+"03020412.xhp\n"
+"hd_id3156344\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasimaa:"
+msgstr "caasimaa:"
-#: 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 "Gatii Debisi:"
-
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"par_id3153897\n"
-"6\n"
-"help.text"
-msgid "String"
-msgstr "Diraa"
-
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"hd_id3154760\n"
-"7\n"
-"help.text"
msgid "Parameters:"
msgstr "Ulaagaalee:"
-#: 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>Himannoo:</emph> Diraa gataa'aa ykn himannoo lakkoofsaa kamuu kan geeddaruu barbaaddu."
-
-#: 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 "Gosa Himannoo fi Jijjiirraa Deebii"
+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> Himamsa diraa kammiyyu kan maqaa faayilii ibsu xurree dabalatee. Kanas fayyadamuu dandessa <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">sirnaasxaa 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 "Buuliyaanii :"
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 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 "Diraa kan <emph>True</emph> ykn <emph>False</emph> tti madaalu."
+msgid "MsgBox \"File already exists\""
+msgstr "msgbox \"Faayiliin duraanuu ni jira\""
-#: 03101000.xhp
+#: 03020413.xhp
msgctxt ""
-"03101000.xhp\n"
-"par_id3147287\n"
-"12\n"
+"03020413.xhp\n"
+"tit\n"
"help.text"
-msgid "Date :"
-msgstr "Guyyaa:"
+msgid "RmDir Statement [Runtime]"
+msgstr "Hima RmDir [Runtime]"
-#: 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 "Diraa guyyaa fi yeroo qabu."
+msgid "<bookmark_value>RmDir statement</bookmark_value>"
+msgstr "<bookmark_value>Hima 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 "Homaa:"
+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 Statement [Runtime]\"> Hima RmDir [Runtime]</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 "Dogongora Sa'aa Darbee"
+msgid "Deletes an existing directory from a data medium."
+msgstr "Gidduugaleessa daataa irraa galeeloo jiru balleessi."
-#: 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 "Duwwaa:"
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 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 "Diraa arfiiwwan malee"
+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 "Kamuu:"
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 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 "Lakkoofsa walgitu akka diraatti."
+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>Barruu:</emph> Himamsa diraa kan maqaa ibsu fi xurree galeeloo kan balleessuu barbaadde. kanaas fayyadamuu dandeessa <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">sirnasxaa 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 "Zeeroon dhuma lakkoofsa tuqaa bololiyaa diraa deebii keessattii hin dhuunfatamu."
+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 "Yoo xurree murtaa'uu baate <emph> Hima SetAttr</emph> jedhamu irraa galeeloof barbaadii xurree ammaa haquu yoo barbaadde. Yoo achi jiraachuu baatee ergaan dogogoraa ni mul'ata."
-#: 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 "Fakkeenya:"
-#: 03020101.xhp
+#: 03020414.xhp
msgctxt ""
-"03020101.xhp\n"
+"03020414.xhp\n"
"tit\n"
"help.text"
-msgid "Close Statement [Runtime]"
-msgstr "Hima cufa [Runtime]"
+msgid "SetAttr Statement [Runtime]"
+msgstr "Hima SetAttr [Runtime]"
-#: 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>Hima cufa</bookmark_value>"
+msgid "<bookmark_value>SetAttr statement</bookmark_value>"
+msgstr "<bookmark_value> Hima 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 Statement [Runtime]\">Hima cufa [Runtime]</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 Statement [Runtime]\"> Hima SetAttr [Runtime]</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 "Faayilii ifteessamaa hima faayilii waliin banamee ture cufi."
+msgid "Sets the attribute information for a specified file."
+msgstr "Faayiilii ibsameef amaloota odeeffannoo moggaasi."
-#: 03020101.xhp
+#: 03020414.xhp
msgctxt ""
-"03020101.xhp\n"
-"hd_id3156344\n"
+"03020414.xhp\n"
+"hd_id3150359\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasimaa:"
+msgstr "caasimaa:"
-#: 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 "Ulaagaalee:"
-#: 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>Lakkofsi Faayilii:</emph> himannoo intergaa kamiiyyuu ta`ee lakkoofsa karaa deetaa kan hima <emph>Bani</emph> waliin baname ifteessa."
+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 "FileName: maqaa faayilii, xurree dabalatee amaloota yaalii barbaadde. Yoo xuurree galchuu baattee, <emph>SetAttr</emph> Faayiilii galeeloo ammaa irraa jiru barbaadi.kanas fayyadamuu ni dandeessa <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\"> Sirnasxaa 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 "Fakkeenya:"
+msgid "<emph>Attribute:</emph> Bit pattern defining the attributes that you want to set or to clear:"
+msgstr "<emph>Amaloota :</emph> Haala biitii hiika amalootaa barbaaddee itti moggaastu ykn haqxuf gargaaru."
-#: 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, \"First line of text\""
+msgid "<emph>Value</emph>"
+msgstr "<emph>Gatii</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: Faayilii baratamoo."
+
+#: 03020414.xhp
+msgctxt ""
+"03020414.xhp\n"
+"par_id3149262\n"
+"10\n"
+"help.text"
+msgid "1 : Read-only files."
+msgstr "1 : Faayilii dubbisuu qofa danda'ama."
+
+#: 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: Dilbiin dhuma waan ta'eef faayiliin jijjiirame( galmee biitii)"
+
+#: 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 "Amaloota baay'ee gatii walduraa duubaan dhufan yaayaa ykn hima waliin moggaasuu dandeessa."
+
+#: 03020414.xhp
+msgctxt ""
+"03020414.xhp\n"
+"hd_id3147434\n"
+"15\n"
+"help.text"
+msgid "Example:"
+msgstr "Fakkeenya:"
+
+#: 03020414.xhp
+msgctxt ""
+"03020414.xhp\n"
+"par_id3148645\n"
"17\n"
"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr "Print #iNumber, \"Another line of text\""
+msgid "On Error GoTo ErrorHandler ' Define target for error handler"
+msgstr "On Error Goto ErrorHandler REM qiyaaffannoo error-handler dhaaf hiiki."
-#: 03102800.xhp
+#: 03020415.xhp
msgctxt ""
-"03102800.xhp\n"
+"03020415.xhp\n"
"tit\n"
"help.text"
-msgid "IsObject Function [Runtime]"
-msgstr "Faankishinii IsObject [Runtime]"
+msgid "FileExists Function [Runtime]"
+msgstr "Faankishinii FileExists [Runtime]"
-#: 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>Faankishinii IsObject</bookmark_value>"
+msgid "<bookmark_value>FileExists function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii 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 Function [Runtime]\">Faankishinii IsObject [Runtime]</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 Function [Runtime]\"> Faankishinii FileExists [Runtime]</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 "Wanta OLE ta'uu jijjiiramaa wantaa qorata. Yoo jijjiiramichi OLE wantaa ta'e, faankishinichi dhugaa deebisa; ta'uu baannan soba deebisa."
+msgid "Determines if a file or a directory is available on the data medium."
+msgstr "Yoo faayilii ykn baafni maqaa gidduugaleessa agargoo irrati argame murteesi."
-#: 03102800.xhp
+#: 03020415.xhp
msgctxt ""
-"03102800.xhp\n"
-"hd_id3149234\n"
+"03020415.xhp\n"
+"hd_id3150447\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasimaa:"
+msgstr "caasimaa:"
-#: 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 "Gatii deebii:"
-#: 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 "Ulaagaalee:"
-#: 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> Jijjiiramaa kamiyyuu kan ati qorachuu barbaaddu dha. Yoo jijjiiramaan wantaa wanta OLE of keessaa qabaate, faankishinichi dhugaa deebisa."
+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 "FileName | DirectoryName: Himamsa diraa kammiiyyuu kan faayilii ifa hin taane of keessa qabu. <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">sirnasxaa URL </link> kanas fayyadamuu ni dandeessa."
-#: 03132500.xhp
+#: 03020415.xhp
msgctxt ""
-"03132500.xhp\n"
+"03020415.xhp\n"
+"hd_id3149664\n"
+"9\n"
+"help.text"
+msgid "Example:"
+msgstr "Fakkeenya:"
+
+#: 03030000.xhp
+msgctxt ""
+"03030000.xhp\n"
"tit\n"
"help.text"
-msgid "GetDefaultContext Function [Runtime]"
-msgstr "faankishinii GetDefaultContext [Runtime]"
+msgid "Date and Time Functions"
+msgstr "Faankishinii Guyyaa fi yeroo"
-#: 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>faankishinii 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=\"Date and Time Functions\">Guyyaa fi yeroo Functions</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\">faankishinii GetDefaultContext [Runtime]</link>"
+msgid "Use the statements and functions described here to perform date and time calculations."
+msgstr "Himootaa fi faankishinoota asitti ibsaman guyyaa fi yeroo herreeguuf fayyadami."
-#: 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 "Kan inni deebisu tajaajila durtii warshaa yookiin wabii duwwaa ta'e dha."
+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> Bu'uurri garagarummaa yeroo ykn guyyaa gara yeroo fi guyyaa ittifufaa gatii numeerikaalaati geedara. Erga garaagarumman shallagamee booda faankishinoonni adda ta'an gatii yeroo waaltinaatti ykn guyyaa akkataa qophii ti irra deebi'ee geedara."
-#: 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 "Faankishiniin sa'aa darbee kun kan deebisu qaama akka durtiitti fayyade dha, yoo tajaajilli battalee XmultiServiceFactory irraati. Odeeffannoo dabalataaf <item type=\"literal\">UNO profeeshinii </item> boqonnaa <item type=\"literal\">Qajeelfama Dagaagsitootaaf </item>fuula <link href=\"http://api.openoffice.org\">api.openoffice.org</link> irra jiru ilaali."
+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 "Gatii guyyaa fi yeroo gara lakkoofsa qeenxee bololi'aa kurniitee walitti makuun ni dandeessa.Guyyaan gara itergaatti fi yeroon immo gara gatii kurniiteetti jijjiirame. <item type=\"productname\">%PRODUCTNAME</item> Kanamalees, bu'uurrii yeroo ibsame guyyaaa fi yeroo of keessaa qabu qosa guyyaa gegeedarama ni deegara."
-#: 03080101.xhp
+#: 03030100.xhp
msgctxt ""
-"03080101.xhp\n"
+"03030100.xhp\n"
"tit\n"
"help.text"
-msgid "Atn Function [Runtime]"
-msgstr "faankishinii Atn[Runtime]"
+msgid "Converting Date Values"
+msgstr "Gatiiwwan guyyaa jijjiiruu"
-#: 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>Fankishinii 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=\"Converting Date Values\">Gatiiwwan guyyaa jijjiiruu</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 "Faankishiniin armaan gadii gatii guyyaa gara lakkoofsa shallagamuu danda'uuti jijjiiree gara duubati deebi'a."
+
+#: 03030101.xhp
+msgctxt ""
+"03030101.xhp\n"
+"tit\n"
+"help.text"
+msgid "DateSerial Function [Runtime]"
+msgstr "Faankishinii DateSerial [Runtime]"
+
+#: 03030101.xhp
+msgctxt ""
+"03030101.xhp\n"
+"bm_id3157896\n"
+"help.text"
+msgid "<bookmark_value>DateSerial function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii 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 Function [Runtime]\">faankishinii Atn [Runtime]</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 Function [Runtime]\"> Faankishinii DateSerial [Runtime]</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 "Faankishiniin tiriigoomeetirikii himannoo lakkofsa aarkitaanjantii deebisa.Gatiin deebii isaa gidduu -Pi/2 fi +Pi/2 ti."
+msgid "Returns a <emph>Date</emph> value for a specified year, month, or day."
+msgstr "<emph>Guyyaa</emph> gatii waggaa, ji'aa ykn guyyaa ibsame deebisa."
-#: 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 "Aarktaanjantiin faallaa taanjantiiti. Faankishiniin Atn kofa \"Aalfaa\" kan raadiyaaniin ibsamu taanjantii kofa kana fayyadamuun deebisa.Faankishiniin dabalees kofa\"Aalfaa\" reeshoo dheerina roga faallaa kofa dheerina roga walcinaa kofa rog-sadee sirri ta'ee deebisa."
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 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(moggaan faalaa kofaa/moggaa kofaan olaa)= Alpha"
+msgid "DateSerial (year, month, day)"
+msgstr "DateSerial (Waggaa, ji'a, guyyaa)"
-#: 03080101.xhp
+#: 03030101.xhp
msgctxt ""
-"03080101.xhp\n"
-"hd_id3149669\n"
+"03030101.xhp\n"
+"hd_id3150792\n"
"5\n"
"help.text"
-msgid "Syntax:"
-msgstr "Caasimaa:"
+msgid "Return value:"
+msgstr "Gatii deebii:"
-#: 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 "Guyyaa"
-#: 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 "Gatii Deebii:"
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 03080101.xhp
+#: 03030101.xhp
msgctxt ""
-"03080101.xhp\n"
-"par_id3150359\n"
+"03030101.xhp\n"
+"par_id3147229\n"
"8\n"
"help.text"
-msgid "Double"
-msgstr "Dachaa"
+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>Waggaa:</emph> Himamsa itergaa kan waggaa agarsiisu.Gatii hundinuu gidduu 0 fi 99 akka waggoota 1900-1999 ti hiikamu waggaa hamma kennameen ala ta'e lakqurxa afur qofa galchuu qabda."
-#: 03080101.xhp
+#: 03030101.xhp
msgctxt ""
-"03080101.xhp\n"
-"hd_id3148798\n"
+"03030101.xhp\n"
+"par_id3156280\n"
"9\n"
"help.text"
-msgid "Parameters:"
-msgstr "Ulaagaalee:"
+msgid "<emph>Month:</emph> Integer expression that indicates the month of the specified year. The accepted range is from 1-12."
+msgstr "<emph>Ji'a:</emph> Himamsa itergaa kan ji'a waggaa murtaa'ee agarsiisu.Kan fudhatama qabu 1-12 qofa."
-#: 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> Himannoon lakkoofsa kamuu raashoo rag-sadee sirrii roga lamaan bakka bu'a. Faankishiniin Atn gita kofa raadiyaaniin (aarkitaanjantii)deebisa."
+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 ""
-#: 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 "Raadiyaanii gara diigriitti jijjiiruuf, raadiyaanii 180/pi baay'si."
+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>Faankishinii DateSerial </emph> jedhamu guyyaa muddee 30,1899 fi guyyaa kenname deebisa. Garaagarummaa guyyaa lama gudduu jiru baruuf faankishinii kana fayyyadamuu ni dandeessa."
-#: 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 "degree=(radian*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>Faankishinii DateSerial </emph>jedhamu gosa agargoo bakkabu'aata VarType 7 (Date) walii deebisa. karaa keessaan, gatiin kun akka gatii mirreeti cimmifama.,kanaafuu guyyan kenname 1.1.1900 ta'a, gatiin deebi'aan 2 dha. Muddee 30, 1899 dura gatiin negatifaa gatii guyyaa waliin wal gita.(osoo hin dabalatin)"
-#: 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 "radian=(degree*pi)/180"
+msgid "If a date is defined that lies outside of the accepted range, $[officename] Basic returns an error message."
+msgstr "Yoo guyyaan hamma hiikame fudhatama argatee ala ta'ae $[officename] Bu'uurri ergaa dogogoraa deebisa."
-#: 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 n kun geengoo dhaabbataa gatiin naannoon isaa 3.14159 dha."
+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>Faankishinii DateValue </emph> jedhamu yoo akka diraatti hiiktu kan guyya of keessa qabu <emph>Faankishinii DateValue </emph> jedhamu tokkoon tokkoo ulaagaalee kannen akka(waggaa,ji'aa ,guyyaa)qorachuuf akka himamsa garagar bahaati."
-#: 03080101.xhp
+#: 03030101.xhp
msgctxt ""
-"03080101.xhp\n"
-"hd_id3153142\n"
+"03030101.xhp\n"
+"hd_id3155411\n"
"15\n"
"help.text"
msgid "Example:"
msgstr "Fakkeenya:"
-#: 03080101.xhp
-#, fuzzy
-msgctxt ""
-"03080101.xhp\n"
-"par_id3146985\n"
-"16\n"
-"help.text"
-msgid "' The following example calculates for a right-angled triangle"
-msgstr "REM fakkeenyi armaan gadii rog-sadee kofa sirrii safaruuf."
-
-#: 03080101.xhp
-#, fuzzy
-msgctxt ""
-"03080101.xhp\n"
-"par_id3145750\n"
-"17\n"
-"help.text"
-msgid "' the angle Alpha from the tangent of the angle Alpha:"
-msgstr "REM the angle Alpha from the tangent of the angle Alpha:"
-
-#: 03080101.xhp
-#, fuzzy
-msgctxt ""
-"03080101.xhp\n"
-"par_id3151112\n"
-"19\n"
-"help.text"
-msgid "' rounded Pi = 3.14159 Is a predefined constant"
-msgstr "REM rounded Pi = 3.14159 is a predefined constant"
-
-#: 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$ (\"Enter the length of the side adjacent to the angle: \",\"Adjacent\")"
-
-#: 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$ (\"Enter the length of the side opposite the angle: \",\"Opposite\")"
+msgid "MsgBox lDate ' returns 23476"
+msgstr "msgbox lDate REM returns 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 \"The Alpha angle is\"; (atn (d2/d1) * 180 / Pi); \" degrees\""
+msgid "MsgBox sDate ' returns 04/09/1964"
+msgstr "msgbox sDate REM returns 04/09/1964"
-#: 03080302.xhp
+#: 03030102.xhp
msgctxt ""
-"03080302.xhp\n"
+"03030102.xhp\n"
"tit\n"
"help.text"
-msgid "Rnd Function [Runtime]"
-msgstr "faankishinii Rnd[Runtime]"
+msgid "DateValue Function [Runtime]"
+msgstr "Faankishinii DateValue [Runtime]"
-#: 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>Fankishinii Rnd</bookmark_value>"
+msgid "<bookmark_value>DateValue function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii 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 Function [Runtime]\">faankishinii Rnd [Runtime]</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 Function [Runtime]\">Faankishinii DateValue [Runtime]</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 "lakkofsi tasaa gidduu 0 fi 1 deebisuu."
+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 "Gatii diraa irraa gatii guyyaa deebisi. Gatii numeerika qeenxee keessatti diraaan guutuudha. Tartee lakkoofsa kana fayyadamuu ni dandeessa garagarummaa guyyota lamaa gidduu jiru murteessuf."
-#: 03080302.xhp
+#: 03030102.xhp
msgctxt ""
-"03080302.xhp\n"
-"hd_id3153897\n"
+"03030102.xhp\n"
+"hd_id3148799\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasimaa:"
+msgstr "caasimaa:"
-#: 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 [(Guyyaa)]"
-#: 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 "Gatii deebii:"
-#: 03080302.xhp
+#: 03030102.xhp
msgctxt ""
-"03080302.xhp\n"
-"par_id3154365\n"
+"03030102.xhp\n"
+"par_id3153194\n"
"6\n"
"help.text"
-msgid "Double"
-msgstr "Dachaa"
+msgid "Date"
+msgstr "Guyyaa"
-#: 03080302.xhp
+#: 03030102.xhp
msgctxt ""
-"03080302.xhp\n"
-"hd_id3154909\n"
+"03030102.xhp\n"
+"hd_id3153969\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Ulaagaalee:"
-#: 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>Himata:</emph> Himata lakkoofsaa kamiyyuu."
+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>Guyyaa:</emph> Himamsa diraa kan guyyaa ati shallaguu barbaadee of keessaa qabu. Guyyaan akkataa qophii kamiinuu ibsamuu danda'a."
-#: 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>Dhisame:</emph> Lakkofsa tasaa kan itti aanu tartiiban deebisuu."
+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 "Faankishinii kana fayyadamuu dandeessa guyyaa muddee 1,1582 fi muddee 31,9999 gara gatii qeenxee itergaatti jijjiiruuf.Garagarummaa guyyota gidduu jiru shallaguuf gatii kana fayyadamuu dandeessa $[officename] Bu'uurri ergaa gatii dogogoraa deebisa."
-#: 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> Faankshiniin gatii 0 hanga 1 qofa debisa. Itergaa tasaa hangii kenname keessatti uumuf, foormullaa fakkeenya armaan gadii fayyadam."
+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 "Akka addaadoo faankishinii DateSerial kan waggaa,ji'a, fi guyyota dabarsu kanaati gatii numeerikaala garagarbaasuuf faankishinin DateValue haala kanaan \"month.[,]day.[,]year\" dabarsuu qabda."
-#: 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 "Fakkeenya:"
-#: 03080302.xhp
-msgctxt ""
-"03080302.xhp\n"
-"par_id3147124\n"
-"21\n"
-"help.text"
-msgid "Print \"Number from 1 to 5\""
-msgstr "Print \"Number from 1 to 5\""
-
-#: 03080302.xhp
-msgctxt ""
-"03080302.xhp\n"
-"par_id3154943\n"
-"23\n"
-"help.text"
-msgid "Print \"Number from 6 to 8\""
-msgstr "Print \"Number from 6 to 8\""
-
-#: 03080302.xhp
-msgctxt ""
-"03080302.xhp\n"
-"par_id3151074\n"
-"25\n"
-"help.text"
-msgid "Print \"Greater than 8\""
-msgstr "Print \"Greater than 8\""
-
-#: 03080302.xhp
-msgctxt ""
-"03080302.xhp\n"
-"par_id3155602\n"
-"27\n"
-"help.text"
-msgid "Print \"Outside range 1 to 10\""
-msgstr "Print \"Outside range 1 to 10\""
-
-#: 03120103.xhp
+#: 03030103.xhp
msgctxt ""
-"03120103.xhp\n"
+"03030103.xhp\n"
"tit\n"
"help.text"
-msgid "Str Function [Runtime]"
-msgstr "Faankishinii Str [Runtime]"
+msgid "Day Function [Runtime]"
+msgstr "Faankishinii Guyyaa [Runtime]"
-#: 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>Faankishinii Str </bookmark_value>"
+msgid "<bookmark_value>Day function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii Guyyaa</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 Function [Runtime]\">Faankishinii Str [Runtime]</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 Function [Runtime]\">Faankishinii Guyyaa [Runtime]</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 "Himata lakkoofsaa gara diraatti jijjiira."
+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 "Tartee lakkoofsa guyyaa irratti hundaa'uudhaan gatii deebisa kan guyyaa ji'aa ibsu kan inni madduuniis faankishinii <emph>DateSerial</emph> ykn <emph>DateValue</emph> jedhamuuni."
-#: 03120103.xhp
+#: 03030103.xhp
msgctxt ""
-"03120103.xhp\n"
-"hd_id3109850\n"
+"03030103.xhp\n"
+"hd_id3149456\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasimaa:"
+msgstr "caasimaa:"
-#: 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 "Guyyaa (Lakkoofsa)"
-#: 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 "Gatii Deebii:"
+msgstr "Gatii deebii:"
-#: 03120103.xhp
+#: 03030103.xhp
msgctxt ""
-"03120103.xhp\n"
-"par_id3146117\n"
+"03030103.xhp\n"
+"par_id3125865\n"
"6\n"
"help.text"
-msgid "String"
-msgstr "Diraa"
+msgid "Integer"
+msgstr "intergaa"
-#: 03120103.xhp
+#: 03030103.xhp
msgctxt ""
-"03120103.xhp\n"
-"hd_id3155805\n"
+"03030103.xhp\n"
+"hd_id3150448\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Ulaagaalee:"
-#: 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>Himata:</emph> Himata lakkoofsaa kamiyyuu."
+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>Lakkoofsa:</emph> Himamsa numeerikaalaa kan laakkofsa tartee guyyaa of keessaa qabu kanarraa guyyaa ji'aa murteessu dandeessa."
-#: 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 "Faankishiniin <emph>Str</emph> jijjiiramaa lakkoofsaa, ykn bu'aa herreegaa gara diraatti jijjiira. Lakkoofsotni nagatiivii mallattoo hir'isuutiin durfamu. Lakkoofsotni poozatiiviin iddoo duwwaadhaan(bakka mallattoo ida'uu) durfamu."
+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 "Faankishiniin kun bu'uuraan faallaa DateSerial faankishiniiti,tartee lakkoofsa guyyaa irra guyyaa ji'aa deebisa <emph>DateSerial</emph> faankishinii irraa madda ykn <emph>DateValue</emph>faankishinii jedhamu irraa.Fakkeenyaaf,himamsa."
-#: 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 "Fakkeenya:"
+msgid "returns the value 20."
+msgstr "Gatii 20 deebisi."
-#: 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 "Sirna Guyyaa fi Yeroo"
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 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=\"System Date and Time\">Sirna Guyyaa fi Yeroo</link>"
+msgid "Print \"Day \" & Day(DateSerial(1994, 12, 20)) & \" of the month\""
+msgstr "Maxxansa \"Day \" & Day(DateSerial(1994, 12, 20)) & \" of the month\""
-#: 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 "Himoonni fi faankishiniin armaan gadii sirna guyyaa deebisu ykn olkaa'u."
+msgid "Month Function [Runtime]"
+msgstr "Faankishinii Ji'aa [Runtime]"
-#: 03090200.xhp
+#: 03030104.xhp
msgctxt ""
-"03090200.xhp\n"
-"tit\n"
+"03030104.xhp\n"
+"bm_id3153127\n"
"help.text"
-msgid "Loops"
-msgstr "marsoota"
+msgid "<bookmark_value>Month function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii Ji'aa</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=\"Loops\">marsoota</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 Function [Runtime]\">Faankishinii Ji'aa[Runtime]</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 "Himoonni armaan gadii marsoota raawwatu."
+msgid "Returns the month of a year from a serial date that is generated by the DateSerial or the DateValue function."
+msgstr "Waggaa ji'a tartee guyyaa irraa deebisi kan faankishinii dateSerial fi DateValue irraa maddu."
-#: 03070000.xhp
+#: 03030104.xhp
msgctxt ""
-"03070000.xhp\n"
-"tit\n"
+"03030104.xhp\n"
+"hd_id3145068\n"
+"3\n"
"help.text"
-msgid "Mathematical Operators"
-msgstr "Yaayaa Herreegaa"
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 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=\"Mathematical Operators\">Ogeejjii Herrergaa</link>"
+msgid "Month (Number)"
+msgstr "Ji'a (Lakkoofsa)"
-#: 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 "Ogeejjii Herreegaa armaan gadii$[officename]Bu'uuran deeggaramu"
+msgid "Return value:"
+msgstr "Gatii deebii:"
-#: 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 "Boqonnaan kun ibsa gabaabaa ogeejjii gimxoosha sagantaa keessaatti barbbaddu kenna."
+msgid "Integer"
+msgstr "intergaa"
-#: 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 Statement [Runtime]"
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 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>Hima Do...Loop</bookmark_value><bookmark_value>While; Do loop</bookmark_value><bookmark_value>Until</bookmark_value><bookmark_value>marsoota</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>Lakkoofsa:</emph> Numeric expression that contains the serial date number that is used to determine the month of the year."
-#: 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 Statement [Runtime]\">Do...Loop Statement [Runtime]</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 "Faankishininin kun faallaa <emph>DateSerial </emph> ti.Kan inni deebisu ji'a waggaa keessatti kan guyyaa ta'e waliin wal gutu yommuu ta'u <emph>DateSerial</emph> tiin madda ykn <emph>DateValue</emph>. Fakkeenyaaf, himamsa."
-#: 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 "Himoota gidduu Do fi Loop irra deddeebi'i yommuu haalli isaa dhugaa ykn hanga halli isaa dhugaa ta'utti."
+msgid "returns the value 12."
+msgstr "gatiii 12 deebisi."
-#: 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 "Caasimaa:"
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 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} condition = True]"
+msgid "MsgBox \"\" & Month(Now) ,64,\"The current month\""
+msgstr "MsgBox \"\" & Month(Now) ,64,\"Ji'a amma\""
-#: 03090201.xhp
+#: 03030105.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3154422\n"
-"5\n"
+"03030105.xhp\n"
+"tit\n"
"help.text"
-msgid "statement block"
-msgstr "statement block"
+msgid "WeekDay Function [Runtime]"
+msgstr "Faankishinii WeekDay [Runtime]"
-#: 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>Faankishinii 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 "statement block"
+msgid "<link href=\"text/sbasic/shared/03030105.xhp\" name=\"WeekDay Function [Runtime]\">WeekDay Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030105.xhp\" name=\"WeekDay Function [Runtime]\">Faankishinii WeekDay [Runtime]</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 "Lakkoofsa guyyaa torbanii waliin wal gitu kan lakkoofsa guyyaa kamiitiin ibsamu deebisa innis dateSerial ykn DateValue faankishiniin ibsama."
-#: 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 "or"
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 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 (Lakkoofsa)"
-#: 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 "statement block"
+msgid "Return value:"
+msgstr "Gatii deebii:"
-#: 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 "intergaa"
-#: 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 "statement block"
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 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} condition = 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>Lakkoofsa:</emph>Himamsa itergaa lakkofsa guyyaa kamii of keessaa qabu kan guyyaa torbanii (1-7) shallaguuf nu garagaarudha."
-#: 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 "Ulaagaalee/miseensota"
+msgid "The following example determines the day of the week using the WeekDay function when you enter a date."
+msgstr "Fakkeenyi armaan gadii faankishinii weekday jedhu fayyadamuun yommuu ati guyyaa galchitu guyyaa torbanii murteessa."
-#: 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>Haala:</emph> Waliin maddalli,lakkofsa ykn himannoo diraa,Dhugaa ykn Soba ta'uu madaalame."
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 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>Garee Himaa:</emph> Himoota irra deddeebi'uu barbaadde yommuu ykn hanga haalli isaa dhugaa ta'utti."
+msgid "' Return And display the day of the week"
+msgstr "REM galiisa fi agarsiisa guyyaa torbee"
-#: 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> himni marsa raawwata hamma ykn hanga halli murtaa'e dhugaa ta'etti.Halli jiraachuu marsa hima <emph>Do</emph> ykn <emph>Loop</emph> tti aanee seenuu qaba. Fakkeenyonni armaan gadii makoota sirrii dha."
+msgid "sDay=\"Sunday\""
+msgstr "sDay=\"Sunday\""
-#: 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 "Caasimaa:"
+msgid "sDay=\"Monday\""
+msgstr "sDay=\"Monday\""
-#: 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 condition = True"
-
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3149203\n"
-"21\n"
-"help.text"
-msgid "...statement block"
-msgstr "...statement block"
+msgid "sDay=\"Tuesday\""
+msgstr "sDay=\"Tuesday\""
-#: 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=\"Wednesday\""
-#: 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 "hamma haalli isaa dhugaa ta'etti gareen himaa gidduu hima Do While fi Loop irra deddeebi'a."
-
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3153968\n"
-"25\n"
-"help.text"
-msgid "Do Until condition = True"
-msgstr "Do Until condition = True"
+msgid "sDay=\"Thursday\""
+msgstr "sDay=\"Thursday\""
-#: 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 "...statement block"
-
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3159151\n"
-"27\n"
-"help.text"
-msgid "Loop"
-msgstr "Loop"
+msgid "sDay=\"Friday\""
+msgstr "sDay=\"Friday\""
-#: 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 "hamma haalli isaa soba ta'etti gareen himaa gidduu hima Do Until fi Loop irra deddeebi'a."
+msgid "sDay=\"Saturday\""
+msgstr "sDay=\"Saturday\""
-#: 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,\"Har'a Guyyaan\""
-#: 03090201.xhp
+#: 03030106.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3147349\n"
-"31\n"
+"03030106.xhp\n"
+"tit\n"
"help.text"
-msgid "...statement block"
-msgstr "...statement block"
+msgid "Year Function [Runtime]"
+msgstr "Faankishinii Waggaa [Runtime]"
-#: 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 condition = True"
+msgid "<bookmark_value>Year function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii Waggaa </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 "hamma haalli isaa dhugaa ta'etti gareen himaa gidduu hima Do fi Loop irra deddeebi'a."
+msgid "<link href=\"text/sbasic/shared/03030106.xhp\" name=\"Year Function [Runtime]\">Year Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030106.xhp\" name=\"Year Function [Runtime]\">Faankishinii Waggaa [Runtime]</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 "Waggaa eenyummaa guyyaa irraa deebisi kan faankishinii DateSerial or the DateValue irraa madde."
-#: 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 "...statement block"
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 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 condition = True"
+msgid "Year (Number)"
+msgstr "Waggaa(Lakkoofsa)"
-#: 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 "Hanga haalli isaa dhugaa ta'etti gareen himaa gidduu hima Do fi Loop irra deddeebi'a."
+msgid "Return value:"
+msgstr "Gatii deebii:"
-#: 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 "Hima <emph>Exit Do</emph> fayyadami hala marsa isaa malee xumuruuf. Hima kana iddo barbaadde hima <emph>Do</emph>...<emph>Loop</emph> keessatti ida'uu dandeessa. Itti dabaltees haala bahiinsa ibsuu dandeessa caasaa <emph>If...Then</emph> akka armaan gadiitti fayyadamuun."
+msgid "Integer"
+msgstr "intergaa"
-#: 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 "Ulaagaalee:"
-#: 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 "himoota"
+msgid "<emph>Number:</emph> Integer expression that contains the serial date number that is used to calculate the year."
+msgstr "<emph>Lakkoofsa:</emph> Himama itergaa kan eenyumma lakkofsaa guyyaa of keessa qabu kan waggaa shalaguuf gargaaru."
-#: 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 condition = 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 "Faankishiniin kun faallaa<emph>DateSerial </emph> ti,fi eenyummaa waggaa guyyaa kan deebisudha. Fakkenyaaf,himamsi:"
-#: 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 "himoota"
+msgid "returns the value 1994."
+msgstr "Gatii 1994 deebisi."
-#: 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 "Fakkeenya:"
-#: 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 "Fakkeenya"
+msgid "MsgBox \"\" & Year(Now) ,64,\"Current year\""
+msgstr "MsgBox \"\" & Year(Now) ,64,\"Waggaa baranaa\""
-#: 03080802.xhp
+#: 03030107.xhp
msgctxt ""
-"03080802.xhp\n"
+"03030107.xhp\n"
"tit\n"
"help.text"
-msgid "Oct Function [Runtime]"
-msgstr "faankishinii Oct[Runtime]"
+msgid "CDateToIso Function [Runtime]"
+msgstr "Faankishinii CDateToIso [Runtime]"
-#: 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>Fankishinii Oct</bookmark_value>"
+msgid "<bookmark_value>CdateToIso function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii 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 Function [Runtime]\">Faankishinii Oct [Runtime]</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 Function [Runtime]\">Faankishinii CDateToIso [Runtime]</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 "Gatii saddeettaa lakkoofsaa deebisuu."
+msgid "Returns the date in ISO format from a serial date number that is generated by the DateSerial or the DateValue function."
+msgstr "Akkataa ISO tiin guyyaa eenyummaa guyyaa irraa deebisi kan faankishinii DateSerial or the DateValue irraa madde."
-#: 03080802.xhp
+#: 03030107.xhp
msgctxt ""
-"03080802.xhp\n"
-"hd_id3148947\n"
+"03030107.xhp\n"
+"hd_id3159224\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasimaa:"
+msgstr "caasimaa:"
-#: 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 "Gatii deebisuu:"
+msgstr "Gatii deebii:"
-#: 03080802.xhp
+#: 03030107.xhp
msgctxt ""
-"03080802.xhp\n"
-"par_id3154138\n"
+"03030107.xhp\n"
+"par_id3154422\n"
"6\n"
"help.text"
msgid "String"
msgstr "Diraa"
-#: 03080802.xhp
+#: 03030107.xhp
msgctxt ""
-"03080802.xhp\n"
-"hd_id3156422\n"
+"03030107.xhp\n"
+"hd_id3147303\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Ulaagaalee:"
-#: 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>Lakkofsa:</emph> Himannoon lakkoofsa kamuu Gatii kan saddeettaatti jijjiiruu barbaadde."
+msgid "<emph>Number:</emph> Integer that contains the serial date number."
+msgstr "<emph>Lakkoofsa:</emph> Itergaa eenyummaa lakkoofsa guyyaa of keessaa qabu."
-#: 03080802.xhp
+#: 03030107.xhp
msgctxt ""
-"03080802.xhp\n"
-"hd_id3148672\n"
+"03030107.xhp\n"
+"hd_id3147243\n"
"9\n"
"help.text"
msgid "Example:"
-msgstr "Example:"
-
-#: 03080400.xhp
-msgctxt ""
-"03080400.xhp\n"
-"tit\n"
-"help.text"
-msgid "Square Root Calculation"
-msgstr "Shallaggii iskuweer ruuttii"
-
-#: 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=\"Square Root Calculation\">Shallaggii iskuweer ruuttii </link>"
+msgstr "Fakkeenya:"
-#: 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 "Iskuweer ruuttota shallaguuf faankishinii kana fayyadami."
+msgid "MsgBox \"\" & CDateToIso(Now) ,64,\"ISO Date\""
+msgstr "MsgBox \"\" & CDateToIso(Now) ,64,\"ISO Date\""
#: 03030108.xhp
msgctxt ""
@@ -9061,7 +13747,7 @@ msgctxt ""
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasima:"
+msgstr "caasimaa:"
#: 03030108.xhp
msgctxt ""
@@ -9097,7 +13783,7 @@ msgctxt ""
"7\n"
"help.text"
msgid "Parameters:"
-msgstr "Ulaagalee:"
+msgstr "Ulaagaalee:"
#: 03030108.xhp
msgctxt ""
@@ -9135,888 +13821,622 @@ msgctxt ""
msgid "returns 12/31/2002 in the date format of your system"
msgstr "Akkaataa sirna keetiin guyyaa 2/13/2002/ deebisa."
-#: 03100050.xhp
+#: 03030110.xhp
msgctxt ""
-"03100050.xhp\n"
+"03030110.xhp\n"
"tit\n"
"help.text"
-msgid "CCur Function [Runtime]"
-msgstr "Faankishinii CCur[Runtime]"
+msgid "DateAdd Function [Runtime]"
+msgstr "Faankishinii DateAdd [Runtime]"
-#: 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>Faankishinii CCur</bookmark_value>"
+msgid "<bookmark_value>DateAdd function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii 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\">Faankishinii CCur [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03030110.xhp\">DateAdd Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030110.xhp\">Faankishinii DateAdd [Runtime]</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 "Himannoo diraa ykn himannoo lakkoofsaa gara himannoo mahaallaqaatti geeddari.Qubannaan gitoo biyyaa addaan baasaa kurnayee fi mallattoo mahaallaqaaf fayyade."
+msgid "Adds a date interval to a given date a number of times and returns the resulting date."
+msgstr "Irra dedeebi'ii guyyota kennaman intervaalii guyyotatti ida'i isaan booda guyyaa argatte deebisi."
-#: 03100050.xhp
+#: 03030110.xhp
msgctxt ""
-"03100050.xhp\n"
-"par_idN10548\n"
+"03030110.xhp\n"
+"par_idN1055B\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasimaa:"
+msgstr "caasimaa:"
-#: 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 (Ida'i, Lakkoofsa,Guyyaa)"
-#: 03100050.xhp
+#: 03030110.xhp
msgctxt ""
-"03100050.xhp\n"
-"par_idN105EB\n"
+"03030110.xhp\n"
+"par_idN1061E\n"
"help.text"
msgid "Return value:"
-msgstr "Gatii Deebii:"
+msgstr "Gatii deebii:"
-#: 03100050.xhp
+#: 03030110.xhp
msgctxt ""
-"03100050.xhp\n"
-"par_idN105EF\n"
+"03030110.xhp\n"
+"par_idN10622\n"
"help.text"
-msgid "Currency"
-msgstr "Mahaallaqa"
+msgid "A Variant containing a date."
+msgstr "Guyyaa addaba'oota of keessaa qabu."
-#: 03100050.xhp
+#: 03030110.xhp
msgctxt ""
-"03100050.xhp\n"
-"par_idN105F2\n"
+"03030110.xhp\n"
+"par_idN10625\n"
"help.text"
-msgid "Parameter:"
+msgid "Parameters:"
msgstr "Ulaagaalee:"
-#: 03100050.xhp
-msgctxt ""
-"03100050.xhp\n"
-"par_idN105F6\n"
-"help.text"
-msgid "Expression: Any string or numeric expression that you want to convert."
-msgstr "Himannoo:Himannoo diraa ykn lakkoofsaa kamuu geeddaruu barbaadde."
-
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"tit\n"
-"help.text"
-msgid "Tan Function [Runtime]"
-msgstr "Faankishinii Taanii[Runtime]"
-
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"bm_id3148550\n"
-"help.text"
-msgid "<bookmark_value>Tan function</bookmark_value>"
-msgstr "<bookmark_value>funkishinii Taanii</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 Function [Runtime]\">Faankishinii Taanii[Runtime]</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 "Taajantii kofaa murteessi.kofni raadiyaaniin ibsama."
-
-#: 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 "kafa Aalfaa fayyadamuun, faankishiniin Taanii reeshoo dheerina raga faallaa kofaa gara dheerina roga walcinaa rog.Sadee sirrii shallaguuf."
-
-#: 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(Alpha) = side opposite the angle/side adjacent to angle"
-
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"hd_id3145174\n"
-"5\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Caasimaa:"
-
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"par_id3151042\n"
-"6\n"
-"help.text"
-msgid "Tan (Number)"
-msgstr "Tan (Number)"
-
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"hd_id3156214\n"
-"7\n"
-"help.text"
-msgid "Return value:"
-msgstr "Gatii deebii:"
-
-#: 03080104.xhp
+#: 03030110.xhp
msgctxt ""
-"03080104.xhp\n"
-"par_id3156281\n"
-"8\n"
+"03030110.xhp\n"
+"par_idN10629\n"
"help.text"
-msgid "Double"
-msgstr "Dachaa"
+msgid "Add - A string expression from the following table, specifying the date interval."
+msgstr "Ida'i-Himamsi diraa gabatee armaan gdii irraa,intervaalii guyyaa ibsa."
-#: 03080104.xhp
+#: 03030110.xhp
msgctxt ""
-"03080104.xhp\n"
-"hd_id3155132\n"
-"9\n"
+"03030110.xhp\n"
+"par_idN10636\n"
"help.text"
-msgid "Parameters:"
-msgstr "Ulaagaalee:"
+msgid "Add (string value)"
+msgstr "Ida'i(gatii diraa)"
-#: 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>Lakkofsa:</emph> Himannoon lakkoofsa kamuu Taanjantiif shallaguu barbaadde."
+msgid "Explanation"
+msgstr "Ibsa"
-#: 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 "Diigrii gara raadiyaaniitti jijjiiruuf, diigrii pi/180 tiin baay'si. Raadiyaanii gara diigritti jijjiiruuf 180/pi tiin baay'isi."
+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=(radiant*180)/Pi"
+msgid "Year"
+msgstr "Waggaa"
-#: 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 "radiant=(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 is approximately 3.141593."
+msgid "Quarter"
+msgstr "Kumaana"
-#: 03080104.xhp
+#: 03030110.xhp
msgctxt ""
-"03080104.xhp\n"
-"hd_id3149483\n"
-"15\n"
+"03030110.xhp\n"
+"par_idN1065D\n"
"help.text"
-msgid "Example:"
-msgstr "Fakkeenya:"
+msgid "m"
+msgstr ""
-#: 03080104.xhp
-#, fuzzy
+#: 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 "REM Fakkeenya kana keessaatti, aseentuun rog-sadee sirrii armaan gadiif ni danda'ama."
+msgid "Month"
+msgstr "Ji'a"
-#: 03080104.xhp
-#, fuzzy
+#: 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 "REM Rogni faallaa kofaa fi kofni(diigriin) dheerina roga walcinaa kofa shallaguuf."
+msgid "y"
+msgstr ""
-#: 03080104.xhp
-#, fuzzy
+#: 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 "REM Pi = 3.1415926 is a pre-defined variable"
+msgid "Day of year"
+msgstr "Guyyaa Waggaa"
-#: 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$ (\"Enter the length of the side opposite the angle: \",\"opposite\")"
+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$ (\"Enter the Alpha angle (in degrees): \",\"Alpha\")"
+msgid "Weekday"
+msgstr "Guyyaa Torbee"
-#: 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 \"the length of the side adjacent the angle is\"; (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 "Faankishinii CDate[Runtime]"
+msgid "Week of year"
+msgstr "Torbee Waggaa"
-#: 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>Faankishinii 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 Function [Runtime]\">Faankishinii CDate[Runtime]</link>"
+msgid "Day"
+msgstr "Guyyaa"
-#: 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 "Himannoo diraa ykn lakkoofsaa kamuu gatii guuyyaatti geeddari."
+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 "Caasimaa:"
+msgid "Hour"
+msgstr "Sa'aa"
-#: 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 "Gatii Debisi:"
+msgid "Minute"
+msgstr "Daqiiqaa"
-#: 03100300.xhp
+#: 03030110.xhp
msgctxt ""
-"03100300.xhp\n"
-"par_id3159414\n"
-"6\n"
+"03030110.xhp\n"
+"par_idN106B8\n"
"help.text"
-msgid "Date"
-msgstr "Guyyaa"
+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 "Ulaagaalee:"
+msgid "Second"
+msgstr "Sekandii"
-#: 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>Himannoo:</emph> Himannoo diraa ykn lakkoofsaa kamuu kan geeddaruu barbaaddu."
+msgid "Count - A numerical expression specifying how often the Add interval will be added (Count is positive) or subtracted (Count is negative)."
+msgstr "Lakkoofsa-Himamni numeerikaalaa yeroo meeqaaf Ida'amni intervaalii akka ida'ame ibsa(pozativaa ni lakka'ama) ykn hir'ataa (negativii ni lakka'ama)."
-#: 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 "Yommuu himannoo diraa jijjiirtu, guyyaa fi yeroon dirqama akka dhangii MM.DD.YYYY HH.MM.SS tti, galuu qaba,akka faankshinii walii galaa <emph>DateValue</emph> and <emph>TimeValue</emph> qindeeffame. Himannoo lakkoofsaa keessatti, gatiin harka bitaa kurniyee guuyyaa bakka bu'a, muddee 31, 1899 irraa jalqabe. Gatiin harka mirgaa kurniyee yeroo bakka bu'a."
+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 "Guyyaa-Guyyaa kennama ykn maqaa bakkabu'oota gegedarama guyyaa of kessaa qaba.Gatii Ida'aa hamma yeroo lakka'uuf ni ida'ama."
-#: 03100300.xhp
+#: 03030110.xhp
msgctxt ""
-"03100300.xhp\n"
-"hd_id3156422\n"
-"10\n"
+"03030110.xhp\n"
+"par_idN106C7\n"
"help.text"
msgid "Example:"
msgstr "Fakkeenya:"
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
+"03030120.xhp\n"
"tit\n"
"help.text"
-msgid "Events"
-msgstr "Mudatoota"
-
-#: 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=\"Events\">Mudatoota</link>"
+msgid "DateDiff Function [Runtime]"
+msgstr "Faankishinii DateDiff [Runtime]"
-#: 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 "Too`annaa yookiin qaaqa filatameef ramadamoota mudata hiiki. mudatootni argaman akaakuu too`annaa filatamee irratti hundaa`a."
+msgid "<bookmark_value>DateDiff function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii 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 "Xiyyeeffannoo yoo argatu"
+msgid "<link href=\"text/sbasic/shared/03030120.xhp\">DateDiff Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030120.xhp\"> Faankishinii DateDiff [Runtime]</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\">Mudatni kun kan uumamu too`annaan xiyyeeffannoo yoo argatu.</ahelp>"
+msgid "Returns the number of date intervals between two given date values."
+msgstr "Lakkoofsa guyyaa intervaalii guyyaa lamaan kennaman gidduu jiru deebisi."
-#: 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 "Xiyyeeffannoo yoo dhabu"
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 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\">Mudatni kun kan uumamu too`annaan Xiyyeeffannoo yoo dhabu.</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 "Furtuu dhiibame"
+msgid "Return value:"
+msgstr "Gatii deebii:"
-#: 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\">Mudatni kun kan uumamu yeroo itti fayyadamaan furtuu kamiyyuu dhiibu garuu too`annaan immoo xiyyeeffatu.</ahelp>"
+msgid "A number."
+msgstr "Lakkoofsi"
-#: 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 "Furtuu dhiibame"
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 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\">Mudatni kun kan uumamu yeroo itti fayyadamaan furtuu kamiyyuu gadhiisu garuu too`annaan immoo xiyyeeffatu.</ahelp>"
+msgid "<emph>Add</emph> - A string expression from the following table, specifying the date interval."
+msgstr "<emph>Ida'i</emph> - Gabatee armaan gadii irraa himamsi diraani,intervaalii guyyaati ibsa."
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
-"hd_id3159096\n"
-"41\n"
+"03030120.xhp\n"
+"par_idN10664\n"
"help.text"
-msgid "Modified"
-msgstr "Fooyya`aa"
+msgid "<emph>Date1, Date2</emph> - The two date values to be compared."
+msgstr "<emph>Date1, Date2</emph> - Guyyoota lamaan waliin dorgomsiisuu."
-#: 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\">Mudatni kun kan uumamu, yeroo too`annaan xiyyeeffanaa dhabuu fi qabeentootni too`annaa sababa dhabuu xiyyeeffanaan jijjiiramani dha.</ahelp>"
+msgid "<emph>Week_start</emph> - An optional parameter that specifies the starting day of a week."
+msgstr "<emph>Week_start</emph> - Ulaagaalee filannoo jalaqaba guyyota torbee ibsan."
-#: 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 "Barruu fooyya`aa"
+msgid "Week_start value"
+msgstr "Gatii 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\">Mudatni kun kan uumamu yeroo barruu dirree naqaa keessaatti saagdu yookiin fooyyessitu dha.</ahelp>"
+msgid "Explanation"
+msgstr "Ibsa"
-#: 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 "Wanta haalojii jijjiirame"
+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\">Mudatni kun kan uumamu yeroo haalojiin dirree too`annaa jijjiiramu, fakkeenyaaf, filatame hanga hin filatamne.</ahelp>"
+msgid "Use system default value"
+msgstr "Gatii sirna Durtii fayyadami"
-#: 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 "Keessa hantuutee"
+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\">Mudatni kun kan uumamu yeroo hantuuteen too`anntti saagamu.</ahelp>"
+msgid "Sunday (default)"
+msgstr "Dilbata(Duurtii)"
-#: 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 "Hantuuteen siiqa garuu furtuun dhiibama"
+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\">Mudatni kun kan uumamu yeroo hamtuuteen harkisamu garuu furtuun dhiibamu.</ahelp>"
+msgid "Monday"
+msgstr "Wixata"
-#: 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 "Hantuutee siiqe"
+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\">Mudatni kun kan uumamu yeroo hantuuteen too`annaa irraa siiqu dha.</ahelp>"
+msgid "Tuesday"
+msgstr "Kibxata"
-#: 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 "Hantuutee qabduu dhiibame"
+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\">Mudatni kun kan uumamu yeroo hantuuteen qabduu dhiibamu garuu akeektuun hantuutee immoo too`annaa irra ta`u dha.</ahelp>"
+msgid "Wednesday"
+msgstr "Roobii"
-#: 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 "Qabduu hantuutee gadhiifame"
+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\">Mudatni kun kan uumamu yeroo hantuuteen qabduu gadhiifamu garuu akeektuun hantuutee too`annaa irra ta`u dha.</ahelp>"
+msgid "Thursday"
+msgstr "Kamisa"
-#: 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 "Hantuutee alaa"
+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\">Mudatni kun kan uumamu yeroo hantuuteen too`annaa gadhiisu dha.</ahelp>"
+msgid "Friday"
+msgstr "Jimaata"
-#: 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 "Yoo mijeessitu"
+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\">Mudatni kun kan uumamu yeroo kabali maraa harkisamu dha.</ahelp>"
+msgid "Saturday"
+msgstr "Sanbata"
-#: 01050200.xhp
+#: 03030120.xhp
msgctxt ""
-"01050200.xhp\n"
-"tit\n"
+"03030120.xhp\n"
+"par_idN106EB\n"
"help.text"
-msgid "Call Stack Window (Calls)"
-msgstr "Tartiibaa Bilbilaa Foddaa (Bilbiloota)"
+msgid "<emph>Year_start</emph> - An optional parameter that specifies the starting week of a year."
+msgstr "<emph>Year_start</emph> - Ulaagaalee filannoo jalaqaba torbee waggaa ibsan."
-#: 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=\"Call Stack Window (Calls)\">Tartiibaa Bilbilaa Foddaa (Bilbiloota)</link>"
+msgid "Year_start value"
+msgstr "Gatii 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\">Yeroo sagantaa hojjoomuu adeemsaa fi fankishinii tartiibaatti agarsiisi.</ahelp><emph>Tartiibaa Bilbilaa</emph> sagantaa hojjoomuu adeemsaa fi fankishinii tartiibaa torgiif ni heeyyama. Adeemsii fi fankishiniin gad gara oliitti fankishinii yookiin adeemsa tarree olii dhiyoo wajjiniiti."
+msgid "Explanation"
+msgstr "Ibsa"
-#: 03131400.xhp
+#: 03030120.xhp
msgctxt ""
-"03131400.xhp\n"
-"tit\n"
+"03030120.xhp\n"
+"par_idN10708\n"
"help.text"
-msgid "TwipsPerPixelY Function [Runtime]"
-msgstr "Faankishinii [Runtime] 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>Faankishinii TwipsPerPixelY</bookmark_value>"
+msgid "Use system default value"
+msgstr "Gatii sirna Durtii fayyadami"
-#: 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 Function [Runtime]\"> Faankishinii [Runtime] 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 "Lakkofsa tiwiipsii kan dheerina pikseelii bakka bu'an deebisa."
+msgid "Week 1 is the week with January, 1st (default)"
+msgstr "Torbeen 1 torbee Amajjii waliin, 1st(durtii)"
-#: 03131400.xhp
+#: 03030120.xhp
msgctxt ""
-"03131400.xhp\n"
-"hd_id3145090\n"
-"3\n"
+"03030120.xhp\n"
+"par_idN10722\n"
"help.text"
-msgid "Syntax:"
-msgstr "Caasimaa:"
+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 "Torbeen 1 torbee tokkoffaa guyyoota bara sanaa afur ykn isaa ol kan of keessaa qabu"
-#: 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 "Gatii deebii:"
+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 "Itergaa"
+msgid "Week 1 is the first week containing only days of the new year"
+msgstr "Torbeen 1 torbee tokkoffaa guyyoota waggaa haraa qofa of keessaa qabu"
-#: 03131400.xhp
+#: 03030120.xhp
msgctxt ""
-"03131400.xhp\n"
-"hd_id3149235\n"
-"7\n"
+"03030120.xhp\n"
+"par_idN10738\n"
"help.text"
msgid "Example:"
msgstr "Fakkeenya:"
-#: 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() & \" Twips * \" & TwipsPerPixelY() & \" Twips\",0,\"Pixel size\""
-
-#: 03120100.xhp
-msgctxt ""
-"03120100.xhp\n"
-"tit\n"
-"help.text"
-msgid "ASCII/ANSI Conversion in Strings"
-msgstr "Jijjiirraa ASCII/ANSI Diraatiin"
-
-#: 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 Conversion in Strings\">Jijjiirraa ASCII/ANSI Diraatiin</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 "Faankishinoonni armaan gadii diraawwan gara fi lakkaddaa ASCII ykn ANSI irraa jijjiiru."
-
-#: 03090411.xhp
-msgctxt ""
-"03090411.xhp\n"
-"tit\n"
-"help.text"
-msgid "With Statement [Runtime]"
-msgstr "Hima With [Runtime]"
-
-#: 03090411.xhp
-msgctxt ""
-"03090411.xhp\n"
-"bm_id3153311\n"
-"help.text"
-msgid "<bookmark_value>With statement</bookmark_value>"
-msgstr "<bookmark_value>Hima 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 Statement [Runtime]\">Hima With [Runtime]</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 "Wanta akka durtii wantaatti qindeessi. Hanga maqaan wanta biroo hin labsamnetti, amaloonni fi tooftan hundi durtii wantaa ibsu hanga himni End With gahutti."
-
-#: 03090411.xhp
-msgctxt ""
-"03090411.xhp\n"
-"hd_id3156153\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Caasimaa:"
-
-#: 03090411.xhp
-msgctxt ""
-"03090411.xhp\n"
-"par_id3145609\n"
-"4\n"
-"help.text"
-msgid "With Object Statement block End With"
-msgstr "Garee End With Hima Wantaa wajjin"
-
-#: 03090411.xhp
-msgctxt ""
-"03090411.xhp\n"
-"hd_id3154924\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Ulaagaalee:"
-
-#: 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 "yoo amaloota ykn toftaa baay'ee wanta baaqqeef qabaatte <emph>With</emph> fi <emph>End With</emph> fayyadami."
-
#: 03030130.xhp
msgctxt ""
"03030130.xhp\n"
@@ -10055,7 +14475,7 @@ msgctxt ""
"par_idN10549\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasima:"
+msgstr "caasimaa:"
#: 03030130.xhp
msgctxt ""
@@ -10071,7 +14491,7 @@ msgctxt ""
"par_idN105EB\n"
"help.text"
msgid "Return value:"
-msgstr "Gatii deebisi:"
+msgstr "Gatii deebii:"
#: 03030130.xhp
msgctxt ""
@@ -10113,891 +14533,1033 @@ msgctxt ""
msgid "Example:"
msgstr "Fakkeenya:"
-#: 03101130.xhp
+#: 03030200.xhp
msgctxt ""
-"03101130.xhp\n"
+"03030200.xhp\n"
"tit\n"
"help.text"
-msgid "DefSng Statement [Runtime]"
-msgstr "Hima DefSng [Runtime]"
+msgid "Converting Time Values"
+msgstr "Gatii Yeroo Jijjiiruu"
-#: 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>Hima 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=\"Converting Time Values\">Converting Time Values</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\">Hima DefSng [Runtime]</link>"
+msgid "The following functions convert time values to calculable numbers."
+msgstr "Faankishiniin armaan gadii gatii yeroo gara lakkoofsa shallagamaatti jijjiira."
-#: 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 "Yoo arfiin akaakuu labsii ykn jefuraa hin ifteeffamne,himni DefSng akaakuu jijjiiramaa durtii qindeessa,akkaataa hangii qubeen."
+msgid "Hour Function [Runtime]"
+msgstr "Faankishinii Sa'aa [Runtime]"
-#: 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>Faankishinii Sa'aa </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 Function [Runtime]\">Faankishinii Sa'aa [Runtime]</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 "Gatii Sa'aatii yeroo irraa deebisi kan faankishinii TimeSerial ykn TimeValue irraa maddu."
+
+#: 03030201.xhp
+msgctxt ""
+"03030201.xhp\n"
+"hd_id3147574\n"
+"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasimaa:"
+msgstr "caasimaa:"
-#: 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 "Sa'aa(Lakkoofsa)"
-#: 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 "Gatii deebii:"
+
+#: 03030201.xhp
+msgctxt ""
+"03030201.xhp\n"
+"par_id3149670\n"
+"6\n"
+"help.text"
+msgid "Integer"
+msgstr "intergaa"
+
+#: 03030201.xhp
+msgctxt ""
+"03030201.xhp\n"
+"hd_id3150359\n"
+"7\n"
"help.text"
msgid "Parameters:"
msgstr "Ulaagaalee:"
-#: 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>Hangiiarfii:</emph> Qubeewwan kan hangii jijjiiramtootaa kan akaakuu deetaa durtii qindeessuu barbaaddu ifteessan."
+msgid "<emph>Number:</emph> Numeric expression that contains the serial time value that is used to return the hour value."
+msgstr "<emph>Lakkoofsa:</emph> Himamsa numeerikaa kan gatii eenyummaa yeroo of keessaa qabu sa'aa deebisuuf gargaaru ."
-#: 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> Jefuraan kan akaakuu jijjiiramaa durtii qindeessu:"
+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 "Fankishinin kun faallaa <emph>TimeSerial </emph> faankishiniiti .Kan inni deebisu yeroo irraa sa'aatii meeqa akka ta'e kan <emph>TimeSerial</emph> ykn kan <emph>TimeValue </emph> ti. Fakkeenyaaf, himamsa:"
-#: 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>Jefuraa:</emph> Akaakuu jijjiiramaa durtii"
+msgid "Print Hour(TimeSerial(12,30,41))"
+msgstr "Maxxansa sa'aa(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> Baaqqee"
+msgid "returns the value 12."
+msgstr "gatiii 12 deebisi."
-#: 03101130.xhp
+#: 03030201.xhp
msgctxt ""
-"03101130.xhp\n"
-"par_idN105B1\n"
+"03030201.xhp\n"
+"hd_id3147348\n"
+"12\n"
"help.text"
msgid "Example:"
msgstr "Fakkeenya:"
-#: 03101130.xhp
-#, fuzzy
+#: 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 "REM hiika huddeelsoo akaakuu jijjiiramaaf:"
+msgid "Sub ExampleHour"
+msgstr "Sub ExampleHour"
-#: 03101130.xhp
-#, fuzzy
+#: 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 REM sSng is an implicit single variable"
+msgid "Print \"The current hour is \" & Hour( Now )"
+msgstr "Print \"Sa'aan amma \" & 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 "Faankishinii LTrim [Runtime]"
+msgid "Minute Function [Runtime]"
+msgstr "Faankishinii Daqiiqaa [Runtime]"
-#: 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>Faankishinii LTrim</bookmark_value>"
+msgid "<bookmark_value>Minute function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii Daqiiqaa</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 Function [Runtime]\">Faankishinii LTrim [Runtime]</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 Function [Runtime]\">Faankishinii Daqiiqaa [Runtime]</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 "Iddoowwan duraa mara jalqaba himata diraarra jiran haqa."
+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 "Gatii daqiiqaa sa'aa kan eenyummaa yeroo waliin wal gitu deebisi kan timeserial fi timeValue dhaan maddu."
-#: 03120305.xhp
+#: 03030202.xhp
msgctxt ""
-"03120305.xhp\n"
-"hd_id3154924\n"
+"03030202.xhp\n"
+"hd_id3154758\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasimaa:"
+msgstr "caasimaa:"
-#: 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 "Daqiiqaa(Lakkoofsa)"
-#: 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 "Gatii deebii:"
-#: 03120305.xhp
+#: 03030202.xhp
msgctxt ""
-"03120305.xhp\n"
-"par_id3151056\n"
+"03030202.xhp\n"
+"par_id3150449\n"
"6\n"
"help.text"
-msgid "String"
-msgstr "Diraa"
+msgid "Integer"
+msgstr "intergaa"
-#: 03120305.xhp
+#: 03030202.xhp
msgctxt ""
-"03120305.xhp\n"
-"hd_id3150543\n"
+"03030202.xhp\n"
+"hd_id3153193\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Ulaagaalee:"
-#: 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> Himata Diraa kamiyyuu"
+msgid "<emph>Number:</emph> Numeric expression that contains the serial time value that is used to return the minute value."
+msgstr "<emph>Lakkoofsa:</emph> Himamsa numerikii kan gatii eenyumaa yeroo daqiiqaa deebisuuf nu garagaaru of keessaa qabu."
-#: 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 "Iddoo jalqaba himata diraarra jiran haquuf, faankishinii kanatti fayyadami."
+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 "Fankishinin kun faallaa <emph>TimeSerial </emph> faankishiniiti .Kan inni deebisu sa'aatii meeqa akka ta'e kan <emph>TimeSerial</emph> ykn kan <emph>TimeValue </emph> ti. Fakkeenyaaf, himamsa:"
-#: 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 "Maxxansa Daqiiqaaa(TimeSerial(12,30,41))"
+
+#: 03030202.xhp
+msgctxt ""
+"03030202.xhp\n"
+"par_id3148576\n"
+"11\n"
+"help.text"
+msgid "returns the value 30."
+msgstr "gatii 30 deebisi."
+
+#: 03030202.xhp
+msgctxt ""
+"03030202.xhp\n"
+"hd_id3150010\n"
+"12\n"
+"help.text"
msgid "Example:"
msgstr "Fakkeenya:"
-#: 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 \"Daqiiqaan amma \"& 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 "Hima [Runtime] turii"
+msgid "Now Function [Runtime]"
+msgstr "Faankishinii Ammaa [Runtime]"
-#: 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>Hima turii</bookmark_value>"
+msgid "<bookmark_value>Now function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii Ammaa</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 Statement [Runtime]\">Hima [Runtime] turii</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 Function [Runtime]\">Faankishinii Ammaa[Runtime]</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 "Diraa ifteessame yookiin lakkoofsa qaaqatti hiikame yookiin faayiliif ibsi."
+msgid "Returns the current system date and time as a <emph>Date</emph> value."
+msgstr "Sirna guyyaa fi yeroo ammaa akka gatii <emph>Date</emph> ti deebisi."
-#: 03010103.xhp
+#: 03030203.xhp
msgctxt ""
-"03010103.xhp\n"
-"hd_id3145785\n"
+"03030203.xhp\n"
+"hd_id3149456\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasimaa:"
+msgstr "caasimaa:"
-#: 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 "Amma"
-#: 03010103.xhp
+#: 03030203.xhp
msgctxt ""
-"03010103.xhp\n"
-"hd_id3147348\n"
+"03030203.xhp\n"
+"hd_id3154366\n"
"5\n"
"help.text"
-msgid "Parameter:"
-msgstr "Ulaagaa:"
-
-#: 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>MaqaaFaayilii:</emph> ibsa lakkoofsaa kammiiyyuu ta`ee kan lakkoofsa faayilii hima banuutiin ka ta`ee faayilii duraa dubaa ofkeessatti qabatu dha."
+msgid "Return value:"
+msgstr "Gatii deebii:"
-#: 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>Himannoo </emph>: hima lakkoofsa yookiin diraa maxxansamu dha. Himannoo baay`een tuq lamee addaan ba`u. Osoo qoodduudhaan aaddaan ba`an, himannoon taabii itti aanee dhaabbatuti galumsaa`a. Taabiin dhaabbatu sirraa`uu hin danda`u."
+msgid "Date"
+msgstr "Guyyaa"
-#: 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>Lakkoofsa</emph>: Lakkoofsa bakkootaa faankishinii <emph>Spc</emph> saagaman.."
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 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>: Bakkoota hanga iddoon ifteessammuti saagamani dha."
+msgid "MsgBox \"It is now \" & Now"
+msgstr "msgbox \"Ammi \" & 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 "Osoo tuq lameen yookiin qoodduun himannoo booda maxxanfamuuf argaman, bu`uuri $[officename] barruu sanduuqa yerommaa keessattii fi sagantaa hojjoomuu maxassa maleen itti fufa. Yommuu himni maxxansaa biroon tuq lamee yookiin qoodduu malee dhumarratti uumamu, barruun maxxansamuu qaban hundi altakkaa ni maxxansamu."
+msgid "Second Function [Runtime]"
+msgstr "Fankishinii Sekondii[Runtime]"
-#: 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 "Himannoon lakkoofsa poositiivii bakka duraa waliin ajajamuu.ni maxxansamu. Himannoon neegatiivii mallattoo hi`isuudhaan ajajamuun ni maxxansamu. Osoo gatiiwwan tokko tokko hangana tuqaa bololi`uuf dheeratan, himannoon lakkoofsa dara duubaan ibsa expooneentii keessatti ni maxxansamu."
+msgid "<bookmark_value>Second function</bookmark_value>"
+msgstr "<bookmark_value>Fankishinii Sekondii </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 "Osoo himannoon maxxansamu dheerina tokko tokko caale, agarsiifamni ofummaan sarara itti aanu marsa."
+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 Function [Runtime]\">Fankishinii Sekondii [Runtime]</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 "Faankishinii taabii saaguu, tuq lameen hammachiisuu, gidduu hima iddoo murtaa`ee bahaa yaadame, yookiin faankishinii <emph>Spc</emph> lakkoofsa bakkootaa ifteessame saaguun ni danda`ama."
+msgid "Returns an integer that represents the seconds of the serial time number that is generated by the TimeSerial or the TimeValue function."
+msgstr "Itergaa lakkoofsa eenyummaa yeroo deebisi kan sekondii ibsu kan fankishinii gatii yeroo fi eenyumaa yerootiin maddu."
-#: 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 "Fakkeenya:"
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 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 "To'annaa fi amaloota Qaaqa"
+msgid "Second (Number)"
+msgstr "Sekondii(Lakkoofsa)"
-#: 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>to`annoo; amaloota</bookmark_value><bookmark_value>amaloota; to`annoo fi qaaqalee</bookmark_value><bookmark_value>qaaqalee; amaloota</bookmark_value>"
+msgid "Return value:"
+msgstr "Gatii deebii:"
-#: 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=\"Control and Dialog Properties\">To'annaa fi amaloota Qaaqa</link>"
+msgid "Integer"
+msgstr "intergaa"
-#: 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=\".\">Amaloota qaaqa yookiin too`annaa filaman ifteessi.</ahelp> Ajaja kanatti gargaaramuuf diqama haalata saxaxa keessa ta`uu qabda."
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 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 "Deetaa amaloota Qaaqa keessa saagi"
+msgid "<emph>Number:</emph> Numeric expression that contains the serial time number that is used to calculate the number of seconds."
+msgstr "<emph>Lakkoofsa:</emph> Himamsa numeerikaa kan eenyummaa yeroo of keessaa qabu kan baay'ina sekoondii lakkaa'uuf nu gargaaru."
-#: 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 "Deetaa dirreewwan sarara hedduu keessa yookiin Sanduuqota makaa qaaqa <emph>amaloota</emph> saaguuf furtuu makaa kanneen armaan gadiitti gargaarami."
+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 "Fankishinin kun faallaa <emph>eenyummaa yeroo </emph>faankishiniiti. Kan inni deebisu eenyumma gatii yeroo<emph>siriyaala yeroo</emph> ykn <emph>gatii yeroo </emph>faankishiniiti. fakkeeyaaf, himamsi:"
-#: 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 "Furtoota"
+msgid "Print Second(TimeSerial(12,30,41))"
+msgstr "Maxxansa sekoondii(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 "Galteewwan"
+msgid "returns the value 41."
+msgstr "gatii 41 deebisi."
-#: 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 "Xiyyaa Alt+Down"
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 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 "Sanduuqa makaa bani"
+msgid "MsgBox \"The exact second of the current time is \"& Second( Now )"
+msgstr "MsgBox \"sekondiin yeroo ammaa \"& 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 "Xiyyaa Alt+Up"
+msgid "TimeSerial Function [Runtime]"
+msgstr "Faankishinii siriyaala yeroo [sa'aa darbe]"
-#: 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 "Sanduuqa makaa cufi"
+msgid "<bookmark_value>TimeSerial function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii siriyaala yeroo</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 "Jijjiiri+Saagi"
+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 Function [Runtime]\">Faankishinii siriyaala yeroo [Runtime]</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 "Cita sararaa dirreewwan sarara hedduu keessa saagi."
+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 "Eenyummaa gatii yeroo kannen kennaman irraa sa'aa, Daqiiqaa fi sekondii ulaagaleetti akka diraanitti darban kanneen gatii yeroo shallagi.Gatii kana fayyadamuun addadummaa yeroowwan giddu jiru shallaguu dandeessa."
-#: 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 "(UpArrow)"
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 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 "Gara sarara duraanii dhaqi"
+msgid "TimeSerial (hour, minute, second)"
+msgstr "Siriyaala yeroo (Sa'aa, Daqiiqaa, sekondii)"
-#: 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 "(DownArrow)"
+msgid "Return value:"
+msgstr "Gatii deebii:"
-#: 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 "Gara sarara itti aanuu dhaqi"
+msgid "Date"
+msgstr "Guyyaa"
-#: 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 "Saagi"
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 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 "Jijjiirraan dirree fi bakkootaa iirratti gochuun qaree gara dirree itti aanuutti ni bobaasa."
+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>Sa'aa:</emph> Himamsa itergaa kammituu kan sa'aa yeroo agarsiisu eenyummaa gatii yeroo murteessuuf kan gargaaru. Gatii sirriin: 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 "Faankishinoota Triigoomeetrikii"
+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>Daqiiqaa:</emph> Himamsa itergaa kammituu kan daqiiqaa yeroo agarsiisu eenyummaa gatii yeroo murteessuuf kan gargaaru.Walumaagalatti,gatii 0 fi 59 gidduu fayyadamuu dandeessa.Haata'u malee,gatii hanga kanaan ala ta'e fayyadamu dandeessa, yommuu gatiin lakkawwii daqiiqaa kan sa'aa jijjiaru."
-#: 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=\"Trigonometric Functions\">Faankishinoota Triigoomeetrikii</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>Sekondii:</emph> Himamsa itergaa kammituu kan sekondii yeroo agarsiisu eenyummaa gatii yeroo murteessuuf kan gargaaru.Walumaagalatti,gatii 0 fi 59 gidduu fayyadamuu dandeessa.Haata'u malee,gatii hanga kanaan ala ta'e fayyadamu dandeessa, yommuu gatiin lakkofsa sekondii kan daqiiqaa jijjiaru."
-#: 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 "Faankishiinoonni tiriigoomeetirikii armman gadii bu'uura $[officename] keessatti deeggaramu."
+msgid "<emph>Examples:</emph>"
+msgstr "<emph>Fakkeeya:</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 "Faankishinii CVErr[Runtime]"
+msgid "12, -5, 45 corresponds to 11, 55, 45"
+msgstr "12, -5, 45 ni gita 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>Faankishinii CVErr</bookmark_value>"
+msgid "12, 61, 45 corresponds to 13, 2, 45"
+msgstr "12, 61, 45 ni gita 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\">Faankishinii CVErr [Runtime]</link>"
+msgid "12, 20, -2 corresponds to 12, 19, 58"
+msgstr "12, 20, -2 ni gita 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 "Himannoo diraa ykn himannoo lakkoofsaa gara himannoo addaba'aa gosa xixiqqaa\"Error\" tti geeddari."
+msgid "12, 20, 63 corresponds to 12, 21, 4"
+msgstr "12, 20, 63 ni gita 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 "Caasimaa:"
+msgid "You can use the TimeSerial function to convert any time into a single value that you can use to calculate time differences."
+msgstr "Faankishinii gatii yeroo fayyadami gatii qeenxee kamiyyuu jijjiiruuf,kanaafuu addadummaa yeroo shallaguu dandeessa"
-#: 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 "Faankishinnin TimeSerial jedhu gosa gegedarama varType 7 waliin (Guyyaa) deebisa.Gatiin kun gara keessatiin sirrenya mirree gidduu 0 fi 0.9999999999 cimmisa. Akkuma fankishiniin guyyaa enyummaa fi gatii eenyumaatiin wal falleesse ,yommuu eenyumman gatii guyyaatti guyyaa murtaa'een walitti dhufu,gatii faankishinii gatii yeroo waliin shallaguu ni dandeessa garuu qorachuu hin dandeessu."
-#: 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 "Gatii Debisi:"
+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 "Faankishinii yeroo eenyummaa keessatti,yeroo dabalate ulaagalee akka diraanitti dabarsuu dandeessa.Fakkeenyaaf fankishinii eenyummaa yeroo kanneen (Sa'aa, Daqiiqaa, Sekoondii) akka himamsa numeerikaalaa garaagaraatti."
-#: 03100080.xhp
+#: 03030205.xhp
msgctxt ""
-"03100080.xhp\n"
-"par_idN10569\n"
+"03030205.xhp\n"
+"hd_id3154790\n"
+"20\n"
"help.text"
-msgid "Variant."
-msgstr "Addaba'aa."
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 03100080.xhp
+#: 03030205.xhp
msgctxt ""
-"03100080.xhp\n"
-"par_idN1056C\n"
+"03030205.xhp\n"
+"par_id3155600\n"
+"25\n"
"help.text"
-msgid "Parameter:"
-msgstr "Ulaagaa:"
+msgid "MsgBox dDate,64,\"Time as a number\""
+msgstr "MsgBox dDate,64,\"Yeroo akka lakkofsaatti\""
-#: 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 "Himannoo:Himannoo diraa ykn lakkoofsaa kamuu geeddaruu barbaaddu."
+msgid "MsgBox sDate,64,\"Formatted time\""
+msgstr "MsgBox sDate,64,\"Yeroo Dhangaa'e\""
-#: 03080501.xhp
+#: 03030206.xhp
msgctxt ""
-"03080501.xhp\n"
+"03030206.xhp\n"
"tit\n"
"help.text"
-msgid "Fix Function [Runtime]"
-msgstr "Faankishinii Fix [Runtime]"
+msgid "TimeValue Function [Runtime]"
+msgstr "Faankishinii Gatii Yeroo[Sa'aa darbe]"
-#: 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>Faankishinii Fix </bookmark_value>"
+msgid "<bookmark_value>TimeValue function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii Gatii Yeroo</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 Function [Runtime]\">Faankishinii Fix [Runtime]</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 Function [Runtime]\">Faankishinii Gatii Yeroo[Runtime]</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 "enta gatii itergaa himannoo lakkofsaa entaa lakkofsaa keessaa balleessuun deebisi."
+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 "Eenyummaa gatii yeroo kannen kennaman irraa sa'aa, Daqiiqaa fi sekondii ulaagaleetti akka diraanitti darban kanneen yeroo gatii numeerikii qeenxee keessa jiru ibsan.Gatiin kun addadummaa yeroowwan giddu jiru ibsa."
-#: 03080501.xhp
+#: 03030206.xhp
msgctxt ""
-"03080501.xhp\n"
-"hd_id3155419\n"
+"03030206.xhp\n"
+"hd_id3154138\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasimaa:"
+msgstr "caasimaa:"
-#: 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 "Gatii yeroo(Barruu akka diraaniitti)"
-#: 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 "Gatii deebii:"
-#: 03080501.xhp
+#: 03030206.xhp
msgctxt ""
-"03080501.xhp\n"
-"par_id3148947\n"
+"03030206.xhp\n"
+"par_id3156424\n"
"6\n"
"help.text"
-msgid "Double"
-msgstr "dachaa"
+msgid "Date"
+msgstr "Guyyaa"
-#: 03080501.xhp
+#: 03030206.xhp
msgctxt ""
-"03080501.xhp\n"
-"hd_id3154760\n"
+"03030206.xhp\n"
+"hd_id3145172\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Ulaagaalee:"
-#: 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>Himanoo:</emph> Himanoo lakkoofsa gatii itergaa deebisuu barbaadde."
+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> Himamsi diraanii kamiyyuu kan ati ittiin yeroo shallaguu barbaadde haala kanaan \"HH:MM:SS\" ta'a."
-#: 03080501.xhp
+#: 03030206.xhp
msgctxt ""
-"03080501.xhp\n"
-"hd_id3150447\n"
+"03030206.xhp\n"
+"par_id3152578\n"
"9\n"
"help.text"
-msgid "Example:"
-msgstr "Fakkeenya:"
+msgid "Use the TimeValue function to convert any time into a single value, so that you can calculate time differences."
+msgstr "Faankishinii gatii yeroo fayyadami gatii qeenxee kamiyyuu jijjiiruuf,kanaafuu addadummaa yeroo shallaguu dandeessa."
-#: 03080501.xhp
-#, fuzzy
+#: 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 "Faankishiniin gatii yeroo kun gosa gegeedaraa VarType 7 waliin(Guyyaa) fi gatii kana akka sireenya mirree keessaatti gidduu 0 fi 0.9999999999 cimmisi."
+
+#: 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) REM returns 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 "Akkuma fankishiniin guyyaa enyummaa fi gatii eenyumaatiin wal falleesse ,yommuu eenyumman gatii guyyaatti guyyaa murtaa'een walitti dhufu,gatii faankishinii gatii yeroo waliin shallaguu ni dandeessa garuu qorachuu hin dandeessu."
-#: 03080501.xhp
-#, fuzzy
+#: 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) REM returns 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 "Faankishinii yeroo eenyummaa keessatti,ulaagalee garaagaraa dabarsuu dandeessa (Sa'aa, Daqiiqaa, Sekoondii) akka himamsa numeerika garaagaraatti. Fankishinii gatii yerootiif,haata'u malee, diran ulaagalee yeroo of keessatti qabatan dabarsuu dandeessa."
-#: 03080501.xhp
-#, fuzzy
+#: 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) REM returns -3."
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 03090300.xhp
+#: 03030206.xhp
msgctxt ""
-"03090300.xhp\n"
+"03030206.xhp\n"
+"par_id3149378\n"
+"33\n"
+"help.text"
+msgid "a1 = \"start time\""
+msgstr "a1 = \"start time\""
+
+#: 03030206.xhp
+msgctxt ""
+"03030206.xhp\n"
+"par_id3145800\n"
+"34\n"
+"help.text"
+msgid "b1 = \"end time\""
+msgstr "b1 = \"end time\""
+
+#: 03030206.xhp
+msgctxt ""
+"03030206.xhp\n"
+"par_id3151074\n"
+"35\n"
+"help.text"
+msgid "c1 = \"total time\""
+msgstr "c1 = \"total time\""
+
+#: 03030300.xhp
+msgctxt ""
+"03030300.xhp\n"
"tit\n"
"help.text"
-msgid "Jumps"
-msgstr "Utaali"
+msgid "System Date and Time"
+msgstr "Sirna Guyyaa fi Yeroo"
-#: 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=\"Jumps\">Utaali</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=\"System Date and Time\">Sirna Guyyaa fi Yeroo</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 "Himoonni armaan gadii utaalcha raawwatu."
+msgid "The following functions and statements set or return the system date and time."
+msgstr "Himoonni fi faankishiniin armaan gadii sirna guyyaa deebisu ykn olkaa'u."
-#: 03131500.xhp
+#: 03030301.xhp
msgctxt ""
-"03131500.xhp\n"
+"03030301.xhp\n"
"tit\n"
"help.text"
-msgid "CreateUnoStruct Function [Runtime]"
-msgstr "Faankishinii [Runtime] CreateUnoStruct"
+msgid "Date Statement [Runtime]"
+msgstr "Hima Guyyaa [Sa'aa darbe]"
-#: 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>Faankishinii CreateUnoStruct</bookmark_value>"
+msgid "<bookmark_value>Date statement</bookmark_value>"
+msgstr "<bookmark_value>Hima Guyyaa </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 Function [Runtime]\"> Faankishinii [Runtime] 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 Statement [Runtime]\">Hima Guyyaa [Runtime]</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=\".\">Battalee akaakuu caasaa Uno tiif uuma.</ahelp>"
+msgid "Returns the current system date as a string, or resets the date. The date format depends on your local system settings."
+msgstr "Sirna diraan guyyaa ammaa deebisi ykn guyyaa haromsi.Akkataan guyyaa sirna yoomessa keessaa kee irratti hundaa'a."
-#: 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 "Hima keetiif caasaa armaan gadiitti fayyadami:"
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 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 "Caasimaa:"
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 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 type name )"
+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> Sirna guyyaa qofa haaromsuuf gaafatama. Haala kanaan,himamsi diraanii akkaataa guyyaa keesaa yomessattiin wal gituu qaba."
-#: 03131500.xhp
+#: 03030301.xhp
msgctxt ""
-"03131500.xhp\n"
-"hd_id3145316\n"
+"03030301.xhp\n"
+"hd_id3150793\n"
"7\n"
"help.text"
msgid "Example:"
msgstr "Fakkeenya:"
-#: 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 \"Guyyaan \" & Date"
#: 03030302.xhp
msgctxt ""
@@ -11040,7 +15602,7 @@ msgctxt ""
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Ciisama:"
+msgstr "caasimaa:"
#: 03030302.xhp
msgctxt ""
@@ -11076,7 +15638,7 @@ msgctxt ""
"7\n"
"help.text"
msgid "Example:"
-msgstr "Fakkeeyan:"
+msgstr "Fakkeenya:"
#: 03030302.xhp
msgctxt ""
@@ -11087,1013 +15649,659 @@ msgctxt ""
msgid "MsgBox Time,0,\"The time is\""
msgstr "MsgBox Time,0,\"Yeroon\""
-#: 03131800.xhp
+#: 03030303.xhp
msgctxt ""
-"03131800.xhp\n"
+"03030303.xhp\n"
"tit\n"
"help.text"
-msgid "CreateUnoDialog Function [Runtime]"
-msgstr "Faankishinii [Runtime] CreateUnoDialog"
+msgid "Timer Function [Runtime]"
+msgstr "Fankishinii yeroo himtuu [Sa'aa darbe]"
-#: 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>faankishinii CreateUnoDialog</bookmark_value>"
+msgid "<bookmark_value>Timer function</bookmark_value>"
+msgstr "<bookmark_value>Fankishinii yeroo himtuu</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 Function [Runtime]\"> Faankishinii [Runtime] 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 Function [Runtime]\">Fankishinii yeroo himtuu [Runtime]</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 "Wanta bu'uraa Uno kan to'ataa qaaqa Uno yeroo sa'aa darbee isaa waamamu uuma."
+msgid "Returns a value that specifies the number of seconds that have elapsed since midnight."
+msgstr "Gatii lakkoofsa sekandii giddugaleessa halkaniitii eegalee jiru deebisi."
-#: 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 "Qaaqawwan mankitaabota qaaqaa keessatti ibsamu. qaaqa argisiisuuf, qaaqni \"live\" mankitaabaa irraa dirqama uumamuu qaba."
+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 "Yeroo himtuu waamuuf duraan dursitee gegeedaramaa ibsuu qabda.Karaa biroon immo gegeedaramaa gosa daataa \"Long\" ttii moogasi."
-#: 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 "Fakkeenya<link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Examples\">ilaali</link>."
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 03131800.xhp
+#: 03030303.xhp
msgctxt ""
-"03131800.xhp\n"
-"hd_id3154286\n"
+"03030303.xhp\n"
+"par_id3161831\n"
"5\n"
"help.text"
-msgid "Syntax:"
-msgstr "Caasimaa:"
+msgid "Timer"
+msgstr "Yeroo Himtuu"
-#: 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 "Gatii deebii:"
-#: 03131800.xhp
+#: 03030303.xhp
msgctxt ""
-"03131800.xhp\n"
-"hd_id3143270\n"
+"03030303.xhp\n"
+"par_id3146984\n"
"7\n"
"help.text"
+msgid "Date"
+msgstr "Guyyaa"
+
+#: 03030303.xhp
+msgctxt ""
+"03030303.xhp\n"
+"hd_id3156442\n"
+"8\n"
+"help.text"
msgid "Example:"
msgstr "Fakkeenya:"
-#: 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 "' Ibsa qaaqaa mankitaaba qaaqaa irraa fudhu"
+msgid "MsgBox lSec,0,\"Seconds since midnight\""
+msgstr "MsgBox lSec,0,\"Halkan qixxee eegalee sekandii\""
-#: 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,\"Yeroon\""
-#: 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 "' qaaqa \"live\" maddisiisa"
+msgid "Error-Handling Functions"
+msgstr "Fankishinii Qabannoo Dogogora"
-#: 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=\"Error-Handling Functions\">Fankishinii Qabannoo Dogogora</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 "' qaaqa \"live\" agarsiisa"
+msgid "Use the following statements and functions to define the way $[officename] Basic reacts to run-time errors."
+msgstr "Himootaa fi faankishinii armaan gadii fayyadani $[officename] Bu'uura dogogora ka'uumasa dabalgochuuf."
-#: 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] Maloota garaagaraa yommuu dogogorrii sa'aa darbee saganticha itti uumamu kenna."
-#: 03102400.xhp
+#: 03050100.xhp
msgctxt ""
-"03102400.xhp\n"
+"03050100.xhp\n"
"tit\n"
"help.text"
-msgid "IsEmpty Function [Runtime]"
-msgstr "Faankishinii IsEmpty [Runtime]"
+msgid "Erl Function [Runtime]"
+msgstr "Erl Dalagaa [Runtime]"
-#: 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>Faankishinii IsEmpty</bookmark_value>"
+msgid "<bookmark_value>Erl function</bookmark_value>"
+msgstr "<bookmark_value>Erl dalagaa</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 Function [Runtime]\">Faankishinii IsEmpty [Runtime]</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 Function [Runtime]\">Erl Function [Runtime]</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 "Gatii duwwaa qabaachuu jijjiiramaa jijjiiramuu basdaada. Gatii duwwaan, jalqabsiifamuu dhabuu jijjiiramaa agarsiisa."
+msgid "Returns the line number where an error occurred during program execution."
+msgstr "Lakkaddaa dogogoraa yommuu sagantichi hojjetuu addaan baasu deebisi."
-#: 03102400.xhp
+#: 03050100.xhp
msgctxt ""
-"03102400.xhp\n"
-"hd_id3159158\n"
+"03050100.xhp\n"
+"hd_id3147574\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasimaa:"
+msgstr "caasimaa:"
-#: 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 "Gatii deebii:"
-#: 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 "intergaa"
-#: 03102400.xhp
+#: 03050100.xhp
msgctxt ""
-"03102400.xhp\n"
-"hd_id3148947\n"
+"03050100.xhp\n"
+"hd_id3150792\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Ulaagaalee:"
-#: 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> Jijjiiramaa kamiyyuu kan ati basdaaduu barbaaddu dha. Yoo jijjiiramaan gatii duwwaa qabaate, faankishinichi dhugaa deebisa; Yoo gatii qabaate ammoo soba deebisa."
+msgid "The Erl function only returns a line number, and not a line label."
+msgstr "Dalagaan Erl kan deebisu lakkofsa sarara qofa, malee asxaa sararaatii miti."
-#: 03102400.xhp
+#: 03050100.xhp
msgctxt ""
-"03102400.xhp\n"
-"hd_id3154138\n"
+"03050100.xhp\n"
+"hd_id3146921\n"
"9\n"
"help.text"
msgid "Example:"
msgstr "Fakkeenya:"
-#: 03102400.xhp
-#, fuzzy
-msgctxt ""
-"03102400.xhp\n"
-"par_id3154863\n"
-"13\n"
-"help.text"
-msgid "Print IsEmpty(sVar) ' Returns True"
-msgstr "Print IsEmpty(sVar) REM Returns 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 "Gatii Yeroo Jijjiiruu"
+msgid "On Error GoTo ErrorHandler ' Set up error handler"
+msgstr "on error goto ErrorHandler REM Set up error handler"
-#: 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=\"Converting Time Values\">Converting Time Values</link>"
+msgid "' Error caused by non-existent file"
+msgstr "Dogogorri REM kan uumamu yoo faayiliin hin jirre."
-#: 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 "Faankishiniin armaan gadii gatii yeroo gara lakkoofsa shallagamaatti jijjiira."
+msgid "MsgBox \"Error \" & err & \": \" & Error$ + chr(13) + \"In Line : \" + Erl + chr(13) + Now , 16 ,\"An error occurred\""
+msgstr "MsgBox \"Dogogora \" & err & \": \" & error$ + chr(13) + \"Sarara : \" + Erl + chr(13) + Now , 16 ,\"Dogogorri mula'ate\""
-#: 03100600.xhp
+#: 03050200.xhp
msgctxt ""
-"03100600.xhp\n"
+"03050200.xhp\n"
"tit\n"
"help.text"
-msgid "CLng Function [Runtime]"
-msgstr "Faankishinii CLng[Runtime]"
+msgid "Err Function [Runtime]"
+msgstr "Err Function [Runtime]"
-#: 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>Faankishinii CLng</bookmark_value>"
+msgid "<bookmark_value>Err function</bookmark_value>"
+msgstr "<bookmark_value>Err Dalaga</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 Function [Runtime]\">Faankishinii CLng[Runtime]</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 Function [Runtime]\">Err Dalaga[Runtime]</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 "Himannoo diraa ykn lakkoofsaa kamuu itergaa dheeratti geeddari."
+msgid "Returns an error code that identifies the error that occurred during program execution."
+msgstr "Lakkaddaa dogogoraa yommuu sagantichi hojjetuu addaan baasu deebisi."
-#: 03100600.xhp
+#: 03050200.xhp
msgctxt ""
-"03100600.xhp\n"
-"hd_id3145315\n"
+"03050200.xhp\n"
+"hd_id3149656\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasimaa:"
+msgstr "caasimaa:"
-#: 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 "Gatii Debisi:"
+msgstr "Gatii deebii:"
-#: 03100600.xhp
+#: 03050200.xhp
msgctxt ""
-"03100600.xhp\n"
-"par_id3153897\n"
+"03050200.xhp\n"
+"par_id3150869\n"
"6\n"
"help.text"
-msgid "Long"
-msgstr "Dheeraa"
+msgid "Integer"
+msgstr "intergaa"
-#: 03100600.xhp
+#: 03050200.xhp
msgctxt ""
-"03100600.xhp\n"
-"hd_id3154760\n"
+"03050200.xhp\n"
+"hd_id3153193\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Ulaagaalee:"
-#: 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>Himannoo:</emph> Himannoo lakkoofsa kamuu kan geeddaruu barbaaddu.Yoo <emph>Himannoo</emph> itergaa dheeraa gitaa'aa gidduu -2.147.483.648 fi 2.147.483.647 'n ala oole,$[officename] Basic dogongara guutinsa darbaa deebisa.Himannoo diraa geeddaruuf,lakkoofsi dirqama akka barruu baratamaa (\"123.5\") tti gala, dhangii lakkoofsa durtii sirna dalagaa kee fayyadamuun."
+msgid "The Err function is used in error-handling routines to determine the error and the corrective action."
+msgstr "Dalagaan Err kan fayyadu dogogora addaan baafachuuf, dogogora murteessuu fi sirressuufi."
-#: 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 "Faankishiiniin kun yeroo hunda qaama lakkoofsa entaa itergaa itti dhihaatutti siksa."
-
-#: 03100600.xhp
-msgctxt ""
-"03100600.xhp\n"
-"hd_id3154216\n"
-"10\n"
-"help.text"
msgid "Example:"
msgstr "Fakkeenya:"
-#: main0211.xhp
-msgctxt ""
-"main0211.xhp\n"
-"tit\n"
-"help.text"
-msgid "Macro Toolbar"
-msgstr "Kamshaalee Maakroo"
-
-#: 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 "Kamshaalee<bookmark_value>; Basic IDE</bookmark_value><bookmark_value>kamshaalee maakroo</bookmark_value>"
+msgid "On Error Goto ErrorHandler REM Set up error handler"
+msgstr "on error goto ErrorHandler REM Set up error handler"
-#: 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=\"Macro Toolbar\">Kamshaalee Maakroo</link>"
+msgid "REM Error occurs due to non-existent file"
+msgstr "Dogogorri REM kan uumamu dhabamuu faayiliitini."
-#: 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>Kamshaaleen maakroo </emph>ajajawwan maakroo uumuuf, gulaaluu fi kaasuuf fayyadan ofkeessatti qaba.</ahelp>"
+msgid "MsgBox \"Error \" & Err & \": \" & Error$ + chr(13) + \"At line : \" + Erl + chr(13) + Now , 16 ,\"an error occurred\""
+msgstr "MsgBox \"Dogogora\" & Err & \": \" & Error$ + chr(13) + \"Sarara : \" + Erl + chr(13) + Now , 16 ,\"Dogogorri uumame\""
-#: 03070100.xhp
+#: 03050300.xhp
msgctxt ""
-"03070100.xhp\n"
+"03050300.xhp\n"
"tit\n"
"help.text"
-msgid "\"-\" Operator [Runtime]"
-msgstr "\"-\" Ogeejjii [Runtime]"
+msgid "Error Function [Runtime]"
+msgstr "Faankishinii Dogongora"
-#: 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>\"-\" ogeejjii (herreegaa)</bookmark_value>"
+msgid "<bookmark_value>Error function</bookmark_value>"
+msgstr "<bookmark_value>funkishinii dogongora</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\">\"-\" Ogeejjii [Runtime]</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 Function [Runtime]\">Faankishinii dogongora[Runtime]</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 "Gatii lama walirraa hir'isi."
+msgid "Returns the error message that corresponds to a given error code."
+msgstr "ergaa dogongora gara lakkadda dogongoraa kename isa gitutti debisi"
-#: 03070100.xhp
+#: 03050300.xhp
msgctxt ""
-"03070100.xhp\n"
-"hd_id3149416\n"
+"03050300.xhp\n"
+"hd_id3153379\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasimaa:"
-
-#: 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 "Ulaagaalee:"
-
-#: 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>Bu'aa:</emph> lakkofsi jijjiirama kamu bu'aa hir'isuu qaba."
-
-#: 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>Himannoo1, Himannoo2:</emph> lakkoofsa himanoo kamuu kan hir'isuu barbaadde."
-
-#: 03070100.xhp
-msgctxt ""
-"03070100.xhp\n"
-"hd_id3154366\n"
-"8\n"
-"help.text"
-msgid "Example:"
-msgstr "Fakkeenya:"
-
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"tit\n"
-"help.text"
-msgid "TimeSerial Function [Runtime]"
-msgstr "Faankishinii siriyaala yeroo [sa'aa darbe]"
-
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"bm_id3143271\n"
-"help.text"
-msgid "<bookmark_value>TimeSerial function</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii siriyaala yeroo</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 Function [Runtime]\">Faankishinii siriyaala yeroo [Runtime]</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 "Eenyummaa gatii yeroo kannen kennaman irraa sa'aa, Daqiiqaa fi sekondii ulaagaleetti akka diraanitti darban kanneen gatii yeroo shallagi.Gatii kana fayyadamuun addadummaa yeroowwan giddu jiru shallaguu dandeessa."
+msgstr "caasimaa:"
-#: 03030205.xhp
+#: 03050300.xhp
msgctxt ""
-"03030205.xhp\n"
-"hd_id3146794\n"
+"03050300.xhp\n"
+"par_id3154366\n"
"4\n"
"help.text"
-msgid "Syntax:"
-msgstr "Caasima:"
+msgid "Error (Expression)"
+msgstr "Dogongora (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 "Siriyaala yeroo (Sa'aa, Daqiiqaa, sekondii)"
+msgid "Return value:"
+msgstr "Gatii deebii:"
-#: 03030205.xhp
+#: 03050300.xhp
msgctxt ""
-"03030205.xhp\n"
-"hd_id3148797\n"
+"03050300.xhp\n"
+"par_id3154125\n"
"6\n"
"help.text"
-msgid "Return value:"
-msgstr "Gatii deebisi:"
+msgid "String"
+msgstr "Diraa"
-#: 03030205.xhp
+#: 03050300.xhp
msgctxt ""
-"03030205.xhp\n"
-"par_id3154908\n"
+"03050300.xhp\n"
+"hd_id3150869\n"
"7\n"
"help.text"
-msgid "Date"
-msgstr "Guyyaa"
-
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"hd_id3154124\n"
-"8\n"
-"help.text"
msgid "Parameters:"
msgstr "Ulaagaalee:"
-#: 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>Sa'aa:</emph> Himamsa itergaa kammituu kan sa'aa yeroo agarsiisu eenyummaa gatii yeroo murteessuuf kan gargaaru. Gatii sirriin: 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>Daqiiqaa:</emph> Himamsa itergaa kammituu kan daqiiqaa yeroo agarsiisu eenyummaa gatii yeroo murteessuuf kan gargaaru.Walumaagalatti,gatii 0 fi 59 gidduu fayyadamuu dandeessa.Haata'u malee,gatii hanga kanaan ala ta'e fayyadamu dandeessa, yommuu gatiin lakkawwii daqiiqaa kan sa'aa jijjiaru."
-
-#: 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>Sekondii:</emph> Himamsa itergaa kammituu kan sekondii yeroo agarsiisu eenyummaa gatii yeroo murteessuuf kan gargaaru.Walumaagalatti,gatii 0 fi 59 gidduu fayyadamuu dandeessa.Haata'u malee,gatii hanga kanaan ala ta'e fayyadamu dandeessa, yommuu gatiin lakkofsa sekondii kan daqiiqaa jijjiaru."
-
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"par_id3155854\n"
-"12\n"
-"help.text"
-msgid "<emph>Examples:</emph>"
-msgstr "<emph>Fakkeeya:</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 ni gita 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 ni gita 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 ni gita 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 ni gita 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 "Faankishinii gatii yeroo fayyadami gatii qeenxee kamiyyuu jijjiiruuf,kanaafuu addadummaa yeroo shallaguu dandeessa"
-
-#: 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 "Faankishinnin TimeSerial jedhu gosa gegedarama varType 7 waliin (Guyyaa) deebisa.Gatiin kun gara keessatiin sirrenya mirree gidduu 0 fi 0.9999999999 cimmisa. Akkuma fankishiniin guyyaa enyummaa fi gatii eenyumaatiin wal falleesse ,yommuu eenyumman gatii guyyaatti guyyaa murtaa'een walitti dhufu,gatii faankishinii gatii yeroo waliin shallaguu ni dandeessa garuu qorachuu hin dandeessu."
-
-#: 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 "Faankishinii yeroo eenyummaa keessatti,yeroo dabalate ulaagalee akka diraanitti dabarsuu dandeessa.Fakkeenyaaf fankishinii eenyummaa yeroo kanneen (Sa'aa, Daqiiqaa, Sekoondii) akka himamsa numeerikaalaa garaagaraatti."
-
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"hd_id3154790\n"
-"20\n"
-"help.text"
-msgid "Example:"
-msgstr "Fakkeenya:"
-
-#: 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,\"Yeroo akka lakkofsaatti\""
-
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"par_id3153417\n"
-"26\n"
-"help.text"
-msgid "MsgBox sDate,64,\"Formatted time\""
-msgstr "MsgBox sDate,64,\"Yeroo Dhangaa'e\""
-
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Comparison Operators"
-msgstr "Qooyyaboota walmadaallii"
-
-#: 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=\"Comparison Operators\">Qooyyaboota walmadaallii</link>"
-
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"par_id3153528\n"
-"2\n"
-"help.text"
-msgid "The available comparison operators are described here."
-msgstr "Qooyyabootni walmadaallii jiran armaan gaditti ibsamiiru."
-
-#: 03090100.xhp
-msgctxt ""
-"03090100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Condition Statements"
-msgstr "Haala himootaa"
-
-#: 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=\"Condition Statements\">Haala himootaa</link>"
+msgid "<emph>Expression:</emph> Any numeric expression that contains the error code of the error message that you want to return."
+msgstr "<emph>Himanno:</emph> himannon lakkoofsa kamiyu kan lakkadda dogongoraa ofkeessaa qabu kan ergaa dogongoraa at deebisuu barbaadduti"
-#: 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 "Himoonni armaan gadii haala irratti hundaa'u."
+msgid "If no parameters are passed, the Error function returns the error message of the most recent error that occurred during program execution."
+msgstr "yoo ulaagaaleen hin darbine, faankishiniinin dogongoraa ergaa dogongoraa dhihoo kan dogongora yeroo sagantaa raawwii uumame deebisa."
-#: 03120105.xhp
+#: 03050500.xhp
msgctxt ""
-"03120105.xhp\n"
+"03050500.xhp\n"
"tit\n"
"help.text"
-msgid "CByte Function [Runtime]"
-msgstr "Faankishinii CByte [Runtime]"
+msgid "On Error GoTo ... Resume Statement [Runtime]"
+msgstr "Gara Dogongora Deemi...Hima Itti Fufutti [Runtime]"
-#: 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>Faankishinii CByte</bookmark_value>"
+msgid "<bookmark_value>Resume Next parameter</bookmark_value><bookmark_value>On Error GoTo ... Resume statement</bookmark_value>"
+msgstr "<bookmark_value>Ulaagaa Aanutti Itti Fufi </bookmark_value><bookmark_value>Gara Dogongora Deemi...Hima Itti Fufutti</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 Function [Runtime]\">Faankishinii CByte [Runtime]</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 Statement [Runtime]\">Gara dogongoraa Deemi...Hima Itti Fufutti [Runtime]</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 "Diraa ykn himata lakkoofsaa gara baayitii akaakuutti jijjiira."
+msgid "Enables an error-handling routine after an error occurs, or resumes program execution."
+msgstr "karaa qabanoo-dogongoraa erga dogongorri uumameen booda dandeessisi, ykn sagantaa raawwii itti fufa"
-#: 03120105.xhp
+#: 03050500.xhp
msgctxt ""
-"03120105.xhp\n"
-"hd_id3149811\n"
+"03050500.xhp\n"
+"hd_id3151212\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasimaa:"
+msgstr "caasimaa:"
-#: 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 "Banaa {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 "Gatii deebii:"
-
-#: 03120105.xhp
-msgctxt ""
-"03120105.xhp\n"
-"par_id3148473\n"
-"6\n"
-"help.text"
-msgid "Byte"
-msgstr "Baayitii"
-
-#: 03120105.xhp
-msgctxt ""
-"03120105.xhp\n"
-"hd_id3147530\n"
-"7\n"
-"help.text"
msgid "Parameters:"
msgstr "Ulaagaalee:"
-#: 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>Himata:</emph> Diraa ykn Himata lakkoofsaa."
-
-#: 03010201.xhp
-msgctxt ""
-"03010201.xhp\n"
-"tit\n"
-"help.text"
-msgid "InputBox Function [Runtime]"
-msgstr "Faankishinii Sanduuqa Naqaa [Runtime]"
-
-#: 03010201.xhp
-msgctxt ""
-"03010201.xhp\n"
-"bm_id3148932\n"
-"help.text"
-msgid "<bookmark_value>InputBox function</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii Sanduuqa Naqaa</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 Function [Runtime]\">Faankishinii Sanduuqa Naqaa [Runtime]</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 "Proompitii qaaqa iddoo fayyadamaan barruu naqu agarsiisi.Naqaan gara jijjiiramaatti ramadameera."
-
-#: 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 "Himni <emph>Sanduuqa Naqaa</emph> barruu qaaqa keessaan saaguuf tooftaa mijataa dha. Naqaa TOLE cuuqaasuun yookiin Deebii dhiibuun dhugoomsi.Naqaan akka gatii deebii faankishiniiti ni deebi`a. Osoo qaaqa dhiisi waliin cufte, <emph>Sanduuqni Naqaa</emph> diraa (\"\")dheerina zeeroo deebisa."
-
-#: 03010201.xhp
-msgctxt ""
-"03010201.xhp\n"
-"hd_id3152347\n"
-"4\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Caasimaa:"
-
-#: 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 "Gatii deebii:"
+msgid "<emph>GoTo Labelname:</emph> If an error occurs, enables the error-handling routine that starts at the line \"Labelname\"."
+msgstr "<emph>Gara Labelname Deemi:</emph> Yoo dogongorri uumame, karaa qabannoo dogongoraa sarara kan \"Labelname\"jalqabu dandeessisi."
-#: 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 "Diraa"
+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 "Yoo dogongorri uumame<emph>Itt Aanutti Fufi:</emph>, sagantaan raawwii hima kan hima dogongorri uumame hordofu walin fufa"
-#: 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 "Ulaagaa:"
+msgid "<emph>GoTo 0:</emph> Disables the error handler in the current procedure."
+msgstr "<emph>Gara 0 Deemi: </emph>waa'iila dogongora adeemsa ammaa dhaamsi"
-#: 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>: Himannoo diraa akka ergaatti sanduuqa qaaqa keessaatti agarsiisamu dha."
+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 ""
-#: 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>Matduree</emph>: Himannoo diraa kabala matduree sanduuqa qaaqa keessaatti agarsiisamu dha."
+msgid "The On Error GoTo statement is used to react to errors that occur in a macro."
+msgstr ""
-#: 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>Durtii</emph>: Himannoo diraa sanduuqa barruu keessaatti akka durtiitti yoo naqaan biraan hin jiru ta`e agarsiisamu dha."
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 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>: Himannoo intergaa kan iddoo sardalaa kan qaaqa ifteessu dha. Iddoon coordinaatii sirrii fi kan foddaa fayyadama ofisii hin ibsine dha."
+msgid "Print #iNumber, \"This is a line of text\""
+msgstr "Maxxansa #iNumber, \"Kun Sarara barruuti\""
-#: 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>: Himannoo intergaa kan iddoo sarjaa kan qaaqa ifteessu dha. Iddoon coordinaatii sirrii fi kan foddaa fayyadama ofisii hin ibsine dha.."
+msgid "MsgBox \"All files will be closed\",0,\"Error\""
+msgstr "MsgBox \"All files will be closed\",0,\"Error\""
-#: 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 "Osoo <emph>x_pos</emph> fi <emph>y_pos</emph> badan, qaaqan argii qixxalaman ta`a. Iddoon <link href=\"text/sbasic/shared/00000002.xhp#twips\" name=\"twips\">twiipsi</link> keessatti ifteessamu."
+msgid "Logical Operators"
+msgstr "ogejjii yaayaa"
-#: 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 "Fakkeenya:"
+msgid "<link href=\"text/sbasic/shared/03060000.xhp\" name=\"Logical Operators\">Logical Operators</link>"
+msgstr "<link href=\"text/sbasic/shared/03060000.xhp\" name=\"Logical Operators\">ogeejjii yaayaa</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 (\"Please enter a phrase:\",\"Dear User\")"
+msgid "The following logical operators are supported by $[officename] Basic."
+msgstr "ogeejjii yaayaa armaan gadii $[officename]Basic n deeggaramu"
-#: 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, \"Confirmation of phrase\")"
+msgid "Logical operators combine (bitwise) the contents of two expressions or variables, for example, to test if specific bits are set or not."
+msgstr "ogeejjii yaayaa qabeentota himanno ykn jijjiramaa lama walitti makuuf, fakkeenyaaf, laklamee murtaa'e qindeessuu ykn dhisuu yaaluuf"
#: 03060100.xhp
msgctxt ""
@@ -12136,7 +16344,7 @@ msgctxt ""
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasimaa:"
+msgstr "caasimaa:"
#: 03060100.xhp
msgctxt ""
@@ -12154,7 +16362,7 @@ msgctxt ""
"5\n"
"help.text"
msgid "Parameters:"
-msgstr "Ulaagaalee"
+msgstr "Ulaagaalee:"
#: 03060100.xhp
msgctxt ""
@@ -12208,10 +16416,9 @@ msgctxt ""
"11\n"
"help.text"
msgid "Example:"
-msgstr "Fakkeenya"
+msgstr "Fakkeenya:"
#: 03060100.xhp
-#, fuzzy
msgctxt ""
"03060100.xhp\n"
"par_id3146984\n"
@@ -12221,7 +16428,6 @@ msgid "vVarOut = A > B And B > C ' returns -1"
msgstr "vVarOut = A > B And B > C REM returns -1"
#: 03060100.xhp
-#, fuzzy
msgctxt ""
"03060100.xhp\n"
"par_id3154014\n"
@@ -12231,7 +16437,6 @@ msgid "vVarOut = B > A And B > C ' returns 0"
msgstr "vVarOut = B > A And B > C REM returns 0"
#: 03060100.xhp
-#, fuzzy
msgctxt ""
"03060100.xhp\n"
"par_id3149262\n"
@@ -12241,7 +16446,6 @@ msgid "vVarOut = A > B And B > D ' returns 0"
msgstr "vVarOut = A > B And B > D REM returns 0"
#: 03060100.xhp
-#, fuzzy
msgctxt ""
"03060100.xhp\n"
"par_id3145751\n"
@@ -12251,7 +16455,6 @@ msgid "vVarOut = (B > D And B > A) ' returns 0"
msgstr "vVarOut = (B > D And B > A) REM returns 0"
#: 03060100.xhp
-#, fuzzy
msgctxt ""
"03060100.xhp\n"
"par_id3147394\n"
@@ -12260,198 +16463,449 @@ msgctxt ""
msgid "vVarOut = B And A ' returns 8 due to the bitwise And combination of both arguments"
msgstr "vVarOut = B And A REM returns 8 due to the bitwise AND combination of both arguments"
-#: 01000000.xhp
+#: 03060200.xhp
msgctxt ""
-"01000000.xhp\n"
+"03060200.xhp\n"
"tit\n"
"help.text"
-msgid "Programming with $[officename] Basic"
-msgstr "Bu`uura $[officename] wajjin saganteessu"
+msgid "Eqv Operator [Runtime]"
+msgstr "Ogeejjii Eqv [Runtime]"
-#: 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>ogeejjii Eqv (yaayaa)</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=\"Programming with $[officename] Basic \">Bu`uura $[officename] wajjin saganteessu </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 Operator [Runtime]\">ogeejjii Eqv [Runtime]</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 "Kun waliigalatti iddoo odeefannoo waa`ee dalaga maakroosi fi bu`ura$[officename] hojjetamu barbannu dha."
+msgid "Calculates the logical equivalence of two expressions."
+msgstr "qixaataa yaayaa himannoowwan lama shalagi."
-#: 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 "Hima ibsaa[Runtime]"
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 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>Hima Ibsaa</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 Statement [Runtime]\">Hima Ibsaa [Runtime]</link>"
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 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>Bu'aa:</emph> lakkofsi jijjirama kamuu bu'aa madaalli qaba."
-#: 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>Himannoo1, Himannoo2:</emph>Himannoo wal dorgomsiisuu barbaadduti."
+
+#: 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 "Yoo qixaataa himannoowwan Buuliyaanii jidduu jiru mirkaneesitu, bu'aan isaa <emph>Dhugaa</emph> yoo himannon lachuu <emph>Dhugaa</emph> ykn <emph>Soba</emph> ta'uu bate."
+
+#: 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 "Walmadaalli laklamee qabeessa keessatti, ogeejjiin Eqv laklamee walgitu bu'aa keessatti qindeessa yoo laklameen himannoowwan lachuu, himannoo homaa keessatti qindaa'e."
+
+#: 03060200.xhp
+msgctxt ""
+"03060200.xhp\n"
+"hd_id3159154\n"
+"10\n"
+"help.text"
+msgid "Example:"
+msgstr "Fakkeenya:"
+
+#: 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 REM returns -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 REM returns 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 REM returns 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) REM returns -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 REM returns -3"
+
+#: 03060300.xhp
+msgctxt ""
+"03060300.xhp\n"
+"tit\n"
+"help.text"
+msgid "Imp-Operator [Runtime]"
+msgstr "Imp-Operator [Runtime]"
+
+#: 03060300.xhp
+msgctxt ""
+"03060300.xhp\n"
+"bm_id3156024\n"
+"help.text"
+msgid "<bookmark_value>Imp operator (logical)</bookmark_value>"
+msgstr "<bookmark_value>ogeejjii Imp (yaayaa)</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-Operator [Runtime]\">Ogeejjii Imp [Runtime]</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 "sagantaa xiqqoofaayelii DLL keessaatti ibsuu fi qindeessuu kan $[officename] Basic irraa raawwachuu barbaaddu."
+msgid "Performs a logical implication on two expressions."
+msgstr "hordoffii yaayaa himannoo lamaa hojjadhu"
-#: 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 "Dabalataan ilaali: <link href=\"text/sbasic/shared/03090405.xhp\" name=\"FreeLibrary\">FreeLibrary</link>"
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 03090403.xhp
+#: 03060300.xhp
msgctxt ""
-"03090403.xhp\n"
-"hd_id3156344\n"
+"03060300.xhp\n"
+"par_id3149656\n"
"4\n"
"help.text"
-msgid "Syntax:"
-msgstr "Caasimaa:"
+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\"] [Parameter] [As Type]"
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 03090403.xhp
+#: 03060300.xhp
msgctxt ""
-"03090403.xhp\n"
-"hd_id3153360\n"
+"03060300.xhp\n"
+"par_id3154910\n"
"6\n"
"help.text"
-msgid "Parameters:"
-msgstr "Ulaagaalee"
+msgid "<emph>Result:</emph> Any numeric variable that contains the result of the implication."
+msgstr "<emph>Bu'aa:</emph> lakkoofsi jijjirama kamuu bu'aa hordoffii qaba."
-#: 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>Himannoo1, Himannoo2:</emph> himannoon kamu kan ogeejjii Imp waliin madaaluu barbaaddudha."
+
+#: 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>Maqaa:</emph> maqaan adda addaa kan DLL keessatti qindeeffame, sagantaa xiqqoo $[officename] Basic irraa waamuuf."
+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 "Yoo ogeejjii Imp himannoo Buuliyaanii keessatti fayyadamte, yoo himannoon jalqabaa Dhugaa fi himannoon lammaffaa Soba tti madaalame Soba qofaatu deebi'a"
-#: 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>Maqaa maqbirroo</emph>: Maqaa sagantaa xiqqoo DLL keessatti qindaa'e."
+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 "Yoo ogeejjii Imp himannoo laklamee keessatti fayyadamte, laklameen bu'aarraa bada yoo laklammen himannoo jalqabaa kessatti qindaa'ee fi laklameen himannoo lmmaffaa keessaa bade"
-#: 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> maqaa faayelii ykn sirna DLL ti.Faankishinii yeroo jalqabaa fayyadameen Manbarroo kun ofumaan fe'a."
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 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>Tarreeffama qajeelfamaa:</emph>Tarreeffama ulaagaalee qajeelfama bakka bu'an yeroo waamametti kan adeemsatti darbe.Gosti fi lakkoofsi ulaagaalee adeemsa raawwii irratti hundaa'a."
+msgid "vOut = A > B Imp B > C ' returns -1"
+msgstr "vOut = A > B Imp B > C REM returns -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>Gosa:</emph> gosa deetaa gatii adeemsa faankishiniin deebi'u qindeessa.Yoo arfiin gosa ibsituu maqaan booda gale ulaagaalee kan dhiisuu dandeessa."
+msgid "vOut = B > A Imp B > C ' returns -1"
+msgstr "vOut = B > A Imp B > C REM returns -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 "ulaagaalee sagantaa xiqqaatti dabrsuuf akka gatiitti qooda wabii,ulaagaaleen dirqama jefuraa <emph>ByVal</emph>agarsiifamu."
+msgid "vOut = A > B Imp B > D ' returns 0"
+msgstr "vOut = A > B Imp B > D REM returns 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 "Fakkeeny:"
+msgid "vOut = (B > D Imp B > A) ' returns -1"
+msgstr "vOut = (B > D Imp B > A) REM returns -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 REM returns -1"
+
+#: 03060400.xhp
+msgctxt ""
+"03060400.xhp\n"
"tit\n"
"help.text"
-msgid "Editing String Length"
-msgstr "Dheerina Diraa Gulaala"
+msgid "Not-Operator [Runtime]"
+msgstr "Not-Operator [Runtime]"
-#: 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>ogeejjii Not (yaayaa)</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=\"Editing String Length\">Dheerina Diraa Gulaala</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-Operator [Runtime]\">Not-Operator [Runtime]</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 "Faankishinoonni armaan gadii dheerina diraawwanii fi walmadaallii diraawwanii murteessu."
+msgid "Negates an expression by inverting the bit values."
+msgstr "gati laklame gargalchuun himannoo faallessuu"
+
+#: 03060400.xhp
+msgctxt ""
+"03060400.xhp\n"
+"hd_id3149457\n"
+"3\n"
+"help.text"
+msgid "Syntax:"
+msgstr "caasimaa:"
+
+#: 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 "Ulaagaalee:"
+
+#: 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>Bu'aa:</emph> lakkofsa jijjiramaa kamu bu'aa faallessuu qaba."
+
+#: 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>Himannoo:</emph> Himannoo kamuu kan faallessuu barbaadde."
+
+#: 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 "Yoo himannoon Buuliyaanii faalla'e, gatiin Dhugaa gara Sobaatti jijjirama, fi gatiin Sobaa gara Dhugaatti jijjirama."
+
+#: 03060400.xhp
+msgctxt ""
+"03060400.xhp\n"
+"par_id3145785\n"
+"9\n"
+"help.text"
+msgid "In a bitwise negation each individual bit is inverted."
+msgstr "faallessuu laklameewwanii keessatti tokkon tokko laklame ni garagala."
+
+#: 03060400.xhp
+msgctxt ""
+"03060400.xhp\n"
+"hd_id3153093\n"
+"10\n"
+"help.text"
+msgid "Example:"
+msgstr "Fakkeenya:"
+
+#: 03060400.xhp
+msgctxt ""
+"03060400.xhp\n"
+"par_id3145749\n"
+"15\n"
+"help.text"
+msgid "vOut = Not vA ' Returns -11"
+msgstr "vOut = Not vA REM Returns -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) REM Returns -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) REM Returns -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) REM Returns 0"
#: 03060500.xhp
msgctxt ""
@@ -12494,7 +16948,7 @@ msgctxt ""
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasimaa:"
+msgstr "caasimaa:"
#: 03060500.xhp
msgctxt ""
@@ -12559,8026 +17013,6809 @@ msgctxt ""
msgid "Example:"
msgstr "Fakkeenya:"
-#: 03120301.xhp
+#: 03060600.xhp
msgctxt ""
-"03120301.xhp\n"
+"03060600.xhp\n"
"tit\n"
"help.text"
-msgid "Format Function [Runtime]"
-msgstr "Faankishinii Dhangii [Runtime]"
+msgid "Xor-Operator [Runtime]"
+msgstr "Xor-Operator [Runtime]"
-#: 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>Faankishinii dhangii</bookmark_value>"
+msgid "<bookmark_value>Xor operator (logical)</bookmark_value>"
+msgstr "<bookmark_value>Ogeejjii Xor (yaayaa)</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 Function [Runtime]\">Faankishinii Dhangii [Runtime]</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-Operator [Runtime]\">Ogeejjii-Xor[Runtime]</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 "Lakkoofsa gara diraatti jijjiiree,dhangii ati fayyadamteen lakkoofsicha dhangi'a."
+msgid "Performs a logical Exclusive-Or combination of two expressions."
+msgstr "yaayaa Exclusive-Or makaa himanno lama dalagi."
-#: 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 "Caasimaa:"
+msgstr "caasimaa:"
-#: 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 "Ulaagaalee:"
-#: 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 "Gatii deebii:"
+msgid "<emph>Result:</emph> Any numeric variable that contains the result of the combination."
+msgstr "<emph>Bu'aa:</emph> lakkoofsi jijjiiramaa kamuu walitti qabaa qaba."
-#: 03120301.xhp
+#: 03060600.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3148474\n"
+"03060600.xhp\n"
+"par_id3125864\n"
"7\n"
"help.text"
-msgid "String"
-msgstr "Diraa"
+msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to combine."
+msgstr "<emph>Himannoo1, Himannoo2:</emph> Himannoowwan lakkofsa kamu kan makuu barbaadde."
-#: 03120301.xhp
+#: 03060600.xhp
msgctxt ""
-"03120301.xhp\n"
-"hd_id3159176\n"
+"03060600.xhp\n"
+"par_id3150439\n"
"8\n"
"help.text"
-msgid "Parameters:"
-msgstr "Ulaagaalee:"
+msgid "A logical Exclusive-Or conjunction of two Boolean expressions returns the value True only if both expressions are different from each other."
+msgstr "Yaayaan guduunfituu qoqqobbii-Or himannoowwan Buuliyaanii lama gatii Dhugaa deebisu yoo himannon lachuu adda addda ta'an"
-#: 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>Lakkoofsa:</emph> Himata lakkofsaa kan gara diraa dhangi'ameetti akka jijjiirramu barbaaddu dha."
+msgid "A bitwise Exclusive-Or conjunction returns a bit if the corresponding bit is set in only one of the two expressions."
+msgstr "Laklame qabeessi guduunfituun qoqqobbii-Or laklamee deebisa yoo laklameen walgitu himannoo lamaan keessaa tokko keessatti qindaa'e."
-#: 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>Dhangii:</emph> Diraa lakkadda dhangii lakkoofsaa adda baasu dha. Yoo <emph>Dhangiin</emph> dhiifame, Faankishiniin dhangii akka faankishinii <emph>Str</emph> 'tti tajaajila."
-
-#: 03120301.xhp
-msgctxt ""
-"03120301.xhp\n"
-"hd_id3147561\n"
-"47\n"
-"help.text"
-msgid "Formatting Codes"
-msgstr "Lakkaddawwan dhangii"
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 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 "Tarreeffamni armaan gadii, lakkaddawwan lakkoofsa dhangi'uuf si fayyadan ibsa."
+msgid "vOut = vA > vB Xor vB > vC ' returns 0"
+msgstr "vOut = vA > vB Xor vB > vC REM returns 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> Yoo <emph>lakkoofsichi</emph> lakqurxa bakka 0 lakkadda dhangii keessatti qabaate,lakqurxichi ni mul'ifama; kanarraa kan hafe zeerootu mul'ifama."
+msgid "vOut = vB > vA Xor vB > vC ' returns -1"
+msgstr "vOut = vB > vA Xor vB > vC REM returns -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 "Yoo <emph>Lakkoofsi</emph> lakqurxa xiqqoo baay'ina zeeroowwan lakkadda dhangii gad ta'an qabaate,(gama kurnyaalee lachuutti), zeeroowwan dursan ykn itti fufan ni mul'ifamu. Yoo lakkoofsichi lakqurxa bitaa footuu kurnyaalee baay'inaan baay'ina zeeroowwanii lakkadda keessaa caale, lakqurxawwan dabalataa osoo hin dhangi'amin mul'ifamu."
+msgid "vOut = vA > vB Xor vB > vD ' returns -1"
+msgstr "vOut = vA > vB Xor vB > vD REM returns -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 "Iddoowwan kurnyaalee, baay'ina zeeroowwanii kanneen footuu kurnyaalee lakkadda <emph>dhangii</emph> keessaatti aananii dhufan irratti hundaa'uun sikfama."
+msgid "vOut = (vB > vD Xor vB > vA) ' returns 0"
+msgstr "vOut = (vB > vD Xor vB > vA) REM returns 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> Yoo <emph>Lakkoofsi</emph> lakqurxa bakka iddooqa # lakkadda <emph>dhangii</emph> keessatti qabaate, lakqurxichi ni mul'ifama. Kanarraa kan hafe, omtiyyuu bakka kanatti hin mul'ifamu."
+msgid "vOut = vB Xor vA ' returns 2"
+msgstr "vOut = vB Xor vA REM returns 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 "Mallattoon kun akka 0'tti tajaajila; Yoo lakkofsi arfiilee # lakkadii dhangii keessaa lakqurxawwan lakkoofsicha keessaa caalee,zeeroowwan jalqabaa ykn dhumaa irraan kan hafe hin mul'ifaman."
+msgid "Mathematical Operators"
+msgstr "Yaayaa Herreegaa"
-#: 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> Iddoqni kurnyaalee baay'ina iddoowwan kurnyaalee gara bitaa fi mirgaa footuu kurnyaalee murteessa."
+msgid "<link href=\"text/sbasic/shared/03070000.xhp\" name=\"Mathematical Operators\">Mathematical Operators</link>"
+msgstr "<link href=\"text/sbasic/shared/03070000.xhp\" name=\"Mathematical Operators\">Ogeejjii Herrergaa</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 "yoo lakkaddi dhangii iddooqa # qofa gara mallattoo kanaatti qabaate, lakkoofsotni 1 gadi ta'an footuu kurnyaalee waliin jalqabu. Zeeroo jalqabaa lakkoofsota eentaa waliin agarsiisuuf, 0 akka iddooqa lakqurxa jalqabaa gara footuu kurnyaaleetti fayyadami."
+msgid "The following mathematical operators are supported in $[officename] Basic."
+msgstr "Ogeejjii Herreegaa armaan gadii$[officename]Bu'uuran deeggaramu"
-#: 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> Lakkoofsicha 100'n baaay'isee, mallattoo dhibbantaa(%) kan lakkofsichi haala lakkadda dhangiitiin dhiyaatu galcha."
+msgid "This chapter provides a short overview of all of the arithmetical operators that you may need for calculations within a program."
+msgstr "Boqonnaan kun ibsa gabaabaa ogeejjii gimxoosha sagantaa keessaatti barbbaddu kenna."
-#: 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> Yoo lakkaddi dhangii xinnaatti bakka qabataa(0 or #) lakqurxa tokko mirga mallattoo E-, E+, e-, ykn e+ qabaate, lakkoofsichi dhangii saayinsaawaatiin ykn eksipooneenshiyaaliitiin dhangi'ama. Lakkoofsi iddooqa lakqurxaa mirga mallattoo, baay'ina lakqurxaa eksipoonantii keessaa beekuuf fayyada."
+msgid "\"-\" Operator [Runtime]"
+msgstr "\"-\" Ogeejjii [Runtime]"
-#: 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 "Eksipoonantiin yoo nagatiivii ta'e, mallattoon hir'isuu eksipoonantii E-, E+, e-, e+ wajjin dursee kallattumaan mul'ata. Eksipoonantichi yoo poozatiivii ta'e,mallattoon ida'uu Eksipoonantiiwwan E+ or e+ qofa dursee mul'ifama."
+msgid "<bookmark_value>\"-\" operator (mathematical)</bookmark_value>"
+msgstr "<bookmark_value>\"-\" ogeejjii (herreegaa)</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 "Yoo lakkaddi dhangii daangessituu kan lakqurxaa bakka qabattootan(0 or #) hammatame of keessaa qabaate, daangessituun kumaatamaa ni mul'ifamu."
+msgid "<link href=\"text/sbasic/shared/03070100.xhp\">\"-\" Operator [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03070100.xhp\">\"-\" Ogeejjii [Runtime]</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 "Itti fayyadamni tuqaa akka footuu kumaatamaa fi kurnyaalee, qindaa'ina naannoo irratti hundaa'a. Yommuu kallattumaan lakkoofsa lakkadda maddaa Basic keessatti galchitu,Tuqaa akka daangessituu kurnyaaleetti yeroo mara fayyadami. Arfiin dhugaan akka footuu kurnyaaleetti mul'ifame, dhangii lakkoofsaa sirna qindaa'ina keetii irratti hundaa'a."
+msgid "Subtracts two values."
+msgstr "Gatii lama walirraa hir'isi."
-#: 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>- + $ ( ) iddoo:</emph> Ida'uu (+), Hir'isuu (-), doolaara ($), iddoo, ykn cuftuuwwan kallattumaan lakkadda dhangii keessaatti galfaman akka arfii barreeffamaatti mul'ifamu."
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 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 "Arfiilee asiitti tarreeffamaniin ala jiran mul'isuuf, arficha haxaarroon(\\) dursuu yookiin mallattoo waraabbii(\" \") keessatti hammachiisuu qabda."
+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 "\\ : Haxaarroon lakkadda dhangii keessatti, arfii itti aanu mul'isa."
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 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 "Arfiiwwan lakkadda dhangii keessaa kunneen hiika addaa qabaatanii yoo haxaarroodhaan(\\\\) durfaman, arfiiwwan kun akka arfiilee barreeffamaatti mul'ifamu."
+msgid "<emph>Result:</emph> Any numerical expression that contains the result of the subtraction."
+msgstr "<emph>Bu'aa:</emph> lakkofsi jijjiirama kamu bu'aa hir'isuu qaba."
-#: 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 "Arfiileen Lakkadda dhangii keessatti haxaarroon durfaman akka arfiilee barreeffamaatti akka mul'ataniif; dhangiiwwan arfiilee guyyaa- fi yeroo- (a, c, d, h, m, n, p, q, s, t, w, y, /, :), arfiilee dhangiisuu lakkoofsaa (#, 0, %, E, e, qoodduu, Tuqaa), fi arfiilee dhangii diraa (@, &, <, >, !) fayyadama."
+msgid "<emph>Expression1, Expression2:</emph> Any numerical expressions that you want to subtract."
+msgstr "<emph>Himannoo1, Himannoo2:</emph> lakkoofsa himanoo kamuu kan hir'isuu barbaadde."
-#: 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 "Dhangiiwwan lakkoofsa durmurtaawaa armaan gadiittis fayyadamuu ni dandeessa. \"General Number\" malee, Lakkaddaawwan dhangii durmurtaawaa marti lakkoofsa akka lakkoofsa kurnyee iddoowwan kurnyee lamaatti deebisu."
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 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 "Yoo dhangiisuuwwan durmurtaawaatti fayyadamte, maqaan dhangichaa mallattoo waraabbii keessa galuu qaba."
+msgid "\"*\" Operator [Runtime]"
+msgstr "\"*\" Ogeejjii [Runtime]"
-#: 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 "Dhangiisuu durmurtaawaa"
+msgid "<bookmark_value>\"*\" operator (mathematical)</bookmark_value>"
+msgstr "<bookmark_value>\"*\" Ogeejii (herreegaa)</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>Lakkoofsa Dimshaashaa:</emph> Lakkoofsotni akka galfamanitti mul'atu."
+msgid "<link href=\"text/sbasic/shared/03070200.xhp\">\"*\" Operator [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03070200.xhp\">\"*\" Ogeejjii [Runtime]</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>Maallaqa:</emph> Fuuldura lakkoofsichatti mallattoo doolaaraa saagee lakkoofsota nagatiivii cuftuu keessatti barreessa."
+msgid "Multiplies two values."
+msgstr "Gatii lama waliin baay'isi."
-#: 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>Dhaabbataa:</emph> Yoo xiqqaate, lakqurxa tokko fuuldura qoodduu kurnyaaleetti mul'isa."
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 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>Waltawaa:</emph> Lakkoofsota qoodduu kumaatamaa wajjin mul'isa."
+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>Dhibbantaa:</emph> Lakkoofsicha 100'n baay'isee,mallattoo dhibbantaa lakkoofsichatti miiltessa."
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 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>Saayinsaawaa:</emph> Lakkoofsota bifa saayinsaawaatiin mul'isa (Fakkeenyaaf 1.00E+03 bakka 1000)"
+msgid "<emph>Result:</emph> Any numeric expression that records the result of a multiplication."
+msgstr "<emph>Bu'aa:</emph> himannon lakkofsa kamiyyuu bu'aa baay'isuu kuusa."
-#: 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 "Lakkaddaan dhangiisuu kutaa sadi kanneen buufata xiqqaadhaan addaan bahanitti qoodamuu danda'a. Kutaan duraa dhangiisuu gatiiwwan poozatiivii, inni lammataan dhangiisuu gatiiwwan nagatiivii fi inni sadaffaan Zeeroodhaafi. Yoo lakkaddaa dhangiisuu tokko qofaa ibsite, lakkoofsota hundaaf raawwachuu ni danda'a."
+msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to multiply."
+msgstr "<emph>Himannoo1, Himannoo2:</emph> Himanno lakkofsa kamu at waliin baay'isuu barbaaddu."
-#: 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 "Fakkeenya:"
-#: 03120301.xhp
-#, fuzzy
+#: 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 "Yommuu ati lakkoofsa madda lakkadda bu'uuraa keessatti galchite, REM yeroo mara, yeroo akka daangessituu kurnyeetti fayyadama."
+msgid "\"+\" Operator [Runtime]"
+msgstr "\"+\" Operator [Runtime]"
-#: 03120301.xhp
-#, fuzzy
+#: 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 "Fakkeenyaaf, REM gitoo ingiliziitiin 6,328.20 yoo agarsiisu,gitoo biyya jarmaniitiin ammoo 6.328,20 agarsiisa."
+msgid "<bookmark_value>\"+\" operator (mathematical)</bookmark_value>"
+msgstr "<bookmark_value>\"+\" Ogeejjii (herreegaa)</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 "Bu`uura IDE $[officename]"
+msgid "<link href=\"text/sbasic/shared/03070300.xhp\">\"+\" Operator [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03070300.xhp\">\"+\" Ogeejjii [Runtime]</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 IDE\">Bu`uura IDE $[officename] </link></variable>"
+msgid "Adds or combines two expressions."
+msgstr "himannoo lama ida'i ykn walitti maki."
-#: 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 "Kutaan kun caasaa Bu`uura IDE ibsa."
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 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\">Bu`uura IDE iddoo maakroosi barreessuu fi gulaaluu dandeessuutii bani.</ahelp>"
+msgid "Result = Expression1 + Expression2"
+msgstr "Bu’aa = Himannoo1 + Himannoo2"
-#: 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 "Ajaja baafata halqara kan Gabatee Mojuulii keessaa"
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 01050000.xhp
+#: 03070300.xhp
msgctxt ""
-"01050000.xhp\n"
-"hd_id3154731\n"
+"03070300.xhp\n"
+"par_id3154123\n"
"6\n"
"help.text"
-msgid "Insert"
-msgstr "Saagi"
+msgid "<emph>Result:</emph> Any numerical expression that contains the result of the addition."
+msgstr "<emph>Bu'aa:</emph> himannoo lakkofsa kamu bu'aa ida'uu qabu."
-#: 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 "Mojuulii"
+msgid "<emph>Expression1, Expression2:</emph> Any numerical expressions that you want to combine or to add."
+msgstr "<emph>Himannoo1, Himannoo2:</emph> himannoowwan lakkoofsa kamu kan walitti makuu ykn ida'uu barbaadde."
-#: 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\">Mojuulii haaraa manbarroo ammeetti saagi.</ahelp>"
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 01050000.xhp
+#: 03070400.xhp
msgctxt ""
-"01050000.xhp\n"
-"hd_id3147397\n"
-"10\n"
+"03070400.xhp\n"
+"tit\n"
"help.text"
-msgid "Dialog"
-msgstr "Qaaqa"
+msgid "\"/\" Operator [Runtime]"
+msgstr "\"/\" Ogeejjii [Runtime]"
-#: 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\">Qaaqa haaraa manbarroo ammeetti saagi.</ahelp>"
+msgid "<bookmark_value>\"/\" operator (mathematical)</bookmark_value>"
+msgstr "<bookmark_value>\"/\" ogeejjii (herreegaa)</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 "Haqi"
+msgid "<link href=\"text/sbasic/shared/03070400.xhp\">\"/\" Operator [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03070400.xhp\">\"/\" Ogeejjii [Runtime]</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\">Mojuulii filame haqi.</ahelp>"
+msgid "Divides two values."
+msgstr "Gatii lama hiraa."
-#: 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 "Maqaa jijjiiri"
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 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\">Mojuulii ammee bakkarratti maqaa jijjiiri.</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 "Dhoksi"
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 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\">Mojuulii ammee dhoksi.</ahelp>"
+msgid "<emph>Result:</emph> Any numerical value that contains the result of the division."
+msgstr "<emph>Bu'aa:</emph> gatiin lakkofsa kamu bu'aa hiruu qabu."
-#: 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 "Mojuulii"
+msgid "<emph>Expression1, Expression2:</emph> Any numerical expressions that you want to divide."
+msgstr "<emph>Himannoo1, Himannoo2:</emph> himannoo lakkofsa kamuu hiruu barbaaddu."
-#: 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 "Qaaqa <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Macro Organizer\"><emph>Qindeessaa maakroo</emph></link> bani."
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 03030120.xhp
+#: 03070500.xhp
msgctxt ""
-"03030120.xhp\n"
+"03070500.xhp\n"
"tit\n"
"help.text"
-msgid "DateDiff Function [Runtime]"
-msgstr "Faankishinii DateDiff [Runtime]"
+msgid "\"^\" Operator [Runtime]"
+msgstr "\"^\" Ogeejjii [Runtime]"
-#: 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>Faankishinii DateDiff</bookmark_value>"
+msgid "<bookmark_value>\"^\" operator (mathematical)</bookmark_value>"
+msgstr "<bookmark_value>\"^\" ogeejjii (herreega)</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\"> Faankishinii DateDiff [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03070500.xhp\">\"^\" Operator [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03070500.xhp\">\"^\" Ogeejjii [Runtime]</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 "Lakkoofsa guyyaa intervaalii guyyaa lamaan kennaman gidduu jiru deebisi."
+msgid "Raises a number to a power."
+msgstr "lakkofsa expoonantiitti Olkaasuu"
-#: 03030120.xhp
+#: 03070500.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN10549\n"
+"03070500.xhp\n"
+"hd_id3147264\n"
+"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasima:"
-
-#: 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 "Gatii deebisi:"
+msgstr "caasimaa:"
-#: 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 "Lakkoofsi"
+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 "Ulaagaalee:"
-#: 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> - Gabatee armaan gadii irraa himamsi diraani,intervaalii guyyaati ibsa."
-
-#: 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> - Guyyoota lamaan waliin dorgomsiisuu."
-
-#: 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> - Ulaagaalee filannoo jalaqaba guyyota torbee ibsan."
-
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN1067A\n"
-"help.text"
-msgid "Week_start value"
-msgstr "Gatii 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 "Ibsa"
+msgid "<emph>Result:</emph> Any numerical expression that contains the result of the number raised to a power."
+msgstr "<emph>Bu'aa:</emph> himannon lakkofsa kamu bu'aa lakkoofsa expoonentitti olkaasuu qabu."
-#: 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>Himannoo:</emph>Gatii Lakkoofsa expoonantiitti olkaasuu barbaaddu."
-#: 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 "Gatii sirna Durtii fayyadami"
+msgid "<emph>Exponent:</emph> The value of the power that you want to raise the expression to."
+msgstr "<emph>Mul'isaan :</emph> Gatii expoonantii at himannoo olkaasuu barbaadde."
-#: 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 "Fakkeenya:"
-#: 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 "Dilbata(Duurtii)"
+msgid "Print Exp ( 23 * Log( 12.345 ) ) ' Raises by forming a logarithm"
+msgstr "Print Exp ( 23 * Log( 12.345 ) ) REM Raises by forming a logarithm"
-#: 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-Operator [Runtime]"
-#: 03030120.xhp
+#: 03070600.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN106A7\n"
+"03070600.xhp\n"
+"bm_id3150669\n"
"help.text"
-msgid "Monday"
-msgstr "Wixata"
+msgid "<bookmark_value>MOD operator (mathematical)</bookmark_value>"
+msgstr "<bookmark_value>ogeejjii MOD (herreega)</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-Operator [Runtime]\">Ogeejjii Mod [Runtime]</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 "Kibxata"
+msgid "Returns the integer remainder of a division."
+msgstr "haftee hiruu intiijarii deebisu"
-#: 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 "caasimaa:"
-#: 03030120.xhp
+#: 03070600.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN106C1\n"
+"03070600.xhp\n"
+"par_id3147560\n"
+"4\n"
"help.text"
-msgid "Wednesday"
-msgstr "Roobii"
+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 "Gatii deebii:"
-#: 03030120.xhp
+#: 03070600.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN106CE\n"
+"03070600.xhp\n"
+"par_id3153380\n"
+"6\n"
"help.text"
-msgid "Thursday"
-msgstr "Kamisa"
+msgid "Integer"
+msgstr "intergaa"
-#: 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 "Ulaagaalee:"
-#: 03030120.xhp
+#: 03070600.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN106DB\n"
+"03070600.xhp\n"
+"par_id3145172\n"
+"8\n"
"help.text"
-msgid "Friday"
-msgstr "Jimaata"
+msgid "<emph>Result:</emph> Any numeric variable that contains the result of the MOD operation."
+msgstr "<emph>Bu'aa:</emph> Lakkoofsi jijjiramaa kamuu bu'aa qoyyaba MOD qabu."
-#: 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>Himannoo1, Himannoo2:</emph> Himanno lakkofsa hiruu barbaadde."
-#: 03030120.xhp
+#: 03070600.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN106E8\n"
+"03070600.xhp\n"
+"hd_id3147287\n"
+"10\n"
"help.text"
-msgid "Saturday"
-msgstr "Sanbata"
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 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> - Ulaagaalee filannoo jalaqaba torbee waggaa ibsan."
+msgid "Print 10 Mod 2.5 ' returns 0"
+msgstr "print 10 mod 2.5 REM returns 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 "Gatii Year_start"
+msgid "Print 10 / 2.5 ' returns 4"
+msgstr "print 10 / 2.5 REM returns 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 "Ibsa"
+msgid "Print 10 Mod 5 ' returns 0"
+msgstr "print 10 mod 5 REM returns 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 REM returns 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 "Sirna Gatii Durtii fayyadami"
+msgid "Print 5 Mod 10 ' returns 5"
+msgstr "print 5 mod 10 REM returns 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 REM returns 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 "Torbeen 1 torbee Amajjii waliin, 1st(durtii)"
+msgid "Numeric Functions"
+msgstr "Faankishinoota lakkofsaa"
-#: 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=\"Numeric Functions\">Faankishinoota lakkoofsaa</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 "Torbeen 1 torbee tokkoffaa guyyoota bara sanaa afur ykn isaa ol kan of keessaa qabu"
+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 "faankishinoonni lakkoofsa armaan gadii hediisa dalagu. Herreegni fi ogeejjiin Buuliyaanii kutaa addaatti ibsame.Faankishinoonni Ogeejjii irraa adda, faankishinoonni walii galtee dabarsuu fi bu'aa deebisuu yoo ta'u ogeejjiin immoo bu'aa himannoowwan lakkoofsaa lamaa walitti qabuun deebisa."
-#: 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 "Faankishinoota Triigoomeetrikii"
-#: 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 "Torbeen 1 torbee tokkoffaa guyyoota waggaa haraa qofa of keessaa qabu"
+msgid "<link href=\"text/sbasic/shared/03080100.xhp\" name=\"Trigonometric Functions\">Trigonometric Functions</link>"
+msgstr "<link href=\"text/sbasic/shared/03080100.xhp\" name=\"Trigonometric Functions\">Faankishinoota Triigoomeetrikii</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 "Fakkeenya:"
+msgid "The following are the trigonometric functions that are supported in $[officename] Basic."
+msgstr "Faankishiinoonni tiriigoomeetirikii armman gadii bu'uura $[officename] keessatti deeggaramu."
-#: 03090203.xhp
+#: 03080101.xhp
msgctxt ""
-"03090203.xhp\n"
+"03080101.xhp\n"
"tit\n"
"help.text"
-msgid "While...Wend Statement[Runtime]"
-msgstr "Hima While...Wend [Runtime]"
+msgid "Atn Function [Runtime]"
+msgstr "faankishinii Atn[Runtime]"
-#: 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;marsaa While...Wend </bookmark_value>"
+msgid "<bookmark_value>Atn function</bookmark_value>"
+msgstr "<bookmark_value>Fankishinii 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 Statement[Runtime]\">Hima While...Wend[Runtime]</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 Function [Runtime]\">faankishinii Atn [Runtime]</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 "yoo sagantaan hima While of keessaatti qabate, haalicha mirkaneessa.yoo haalli soba ta'e, sagantaan kallattiin hima Wend duuka itti fufa. Yoo haallichi Dhugaa ta'e, marsaan hanga sagantaan Wend barbaaduu fi gara hima <emph> While </emph> deebi'utti raawwata. Yoo haallichi ammas dhugaa ta'e, marsaan irra deebi'e raawwata."
+msgid "Trigonometric function that returns the arctangent of a numeric expression. The return value is in the range -Pi/2 to +Pi/2."
+msgstr "Faankishiniin tiriigoomeetirikii himannoo lakkofsa aarkitaanjantii deebisa.Gatiin deebii isaa gidduu -Pi/2 fi +Pi/2 ti."
-#: 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 "Akka hima <link href=\"text/sbasic/shared/03090201.xhp\" name=\"Do...Loop\">Do...Loop</link>, <emph>While...Wend</emph> marsaa waliin <link href=\"text/sbasic/shared/03090412.xhp\" name=\"Exit\">Exit</link> balleessuu hin dandeessu. While...Wend marsaa waliin hin baasin <link href=\"text/sbasic/shared/03090302.xhp\" name=\"GoTo\">GoTo</link>,kun ka'uumsa dogongora sa'aa darbee taasisa."
+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 "Aarktaanjantiin faallaa taanjantiiti. Faankishiniin Atn kofa \"Aalfaa\" kan raadiyaaniin ibsamu taanjantii kofa kana fayyadamuun deebisa.Faankishiniin dabalees kofa\"Aalfaa\" reeshoo dheerina roga faallaa kofa dheerina roga walcinaa kofa rog-sadee sirri ta'ee deebisa."
-#: 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 "A Do...Loop is more flexible than a While...Wend."
+msgid "Atn(side opposite the angle/side adjacent to angle)= Alpha"
+msgstr "Atn(moggaan faalaa kofaa/moggaa kofaan olaa)= Alpha"
-#: 03090203.xhp
+#: 03080101.xhp
msgctxt ""
-"03090203.xhp\n"
-"hd_id3155133\n"
+"03080101.xhp\n"
+"hd_id3149669\n"
"5\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasimaa:"
+msgstr "caasimaa:"
-#: 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 Condition [Statement] 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 "Fakkeenya:"
+msgid "Return value:"
+msgstr "Gatii deebii:"
-#: 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 "Dachaa"
-#: 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 "Ulaagaalee:"
-#: 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> Himannoon lakkoofsa kamuu raashoo rag-sadee sirrii roga lamaan bakka bu'a. Faankishiniin Atn gita kofa raadiyaaniin (aarkitaanjantii)deebisa."
-#: 03090203.xhp
-#, fuzzy
+#: 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 =\"This is a short text\""
+msgid "To convert radians to degrees, multiply radians by 180/pi."
+msgstr "Raadiyaanii gara diigriitti jijjiiruuf, raadiyaanii 180/pi baay'si."
-#: 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 "degree=(radian*180)/pi"
-#: 03090203.xhp
-#, fuzzy
+#: 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 "radian=(degree*pi)/180"
-#: 03090203.xhp
-#, fuzzy
+#: 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 n kun geengoo dhaabbataa gatiin naannoon isaa 3.14159 dha."
-#: 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 "Fakkeenya:"
-#: 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 "REM fakkeenyi armaan gadii rog-sadee kofa sirrii safaruuf."
-#: 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,\"Text encoded\""
-
-#: 03090203.xhp
-#, fuzzy
-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 "Hima Hundataa [Runtime]"
-
-#: 03103450.xhp
-msgctxt ""
-"03103450.xhp\n"
-"bm_id3159201\n"
-"help.text"
-msgid "<bookmark_value>Global statement</bookmark_value>"
-msgstr "<bookmark_value>Hima Hundataa</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 Statement [Runtime]\">Hima Hundataa [Runtime]</link>"
+msgid "' the angle Alpha from the tangent of the angle Alpha:"
+msgstr "REM the angle Alpha from the tangent of the angle Alpha:"
-#: 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 "Jijjiiramaa ykn waraantoo sadarkaa hundataatti gareessa( kunimmoo karqurxa ykn faankishinii keessa miti),kanaaf jijjiramaa fi waraantoon mankitaabaa fi moojulii tursa ammaaf jiran eeyyamamoo dha."
+msgid "' rounded Pi = 3.14159 Is a predefined constant"
+msgstr "REM rounded Pi = 3.14159 is a predefined constant"
-#: 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 "Caasimaa:"
+msgid "d1 = InputBox$ (\"Enter the length of the side adjacent to the angle: \",\"Adjacent\")"
+msgstr "d1 = InputBox$ (\"Enter the length of the side adjacent to the angle: \",\"Adjacent\")"
-#: 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$ (\"Enter the length of the side opposite the angle: \",\"Opposite\")"
-#: 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 "Fakkeenya:"
+msgid "Print \"The Alpha angle is\"; (atn (d2/d1) * 180 / Pi); \" degrees\""
+msgstr "Print \"The Alpha angle is\"; (atn (d2/d1) * 180 / Pi); \" degrees\""
-#: 03100700.xhp
+#: 03080102.xhp
msgctxt ""
-"03100700.xhp\n"
+"03080102.xhp\n"
"tit\n"
"help.text"
-msgid "Const Statement [Runtime]"
-msgstr "Hima Const[Runtime]"
+msgid "Cos Function [Runtime]"
+msgstr "Faankishinii Koosii[Runtime]"
-#: 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>Hima Const</bookmark_value>"
+msgid "<bookmark_value>Cos function</bookmark_value>"
+msgstr "<bookmark_value>funkishinii koosii</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 Statement [Runtime]\">Hima Const [Runtime]</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 Function [Runtime]\">Faankishinii Koosii [Runtime]</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 "Diraa akka seranaatti qindeessi."
+msgid "Calculates the cosine of an angle. The angle is specified in radians. The result lies between -1 and 1."
+msgstr "Kofa kosaayinii shalagi.Kofni raadiyaaniin ibsama. Gatiin isaa gidduu -1 fi 1 dha."
-#: 03100700.xhp
+#: 03080102.xhp
msgctxt ""
-"03100700.xhp\n"
-"hd_id3150670\n"
+"03080102.xhp\n"
+"par_id3150358\n"
"3\n"
"help.text"
-msgid "Syntax:"
-msgstr "Caasimaa:"
+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 "kofa aalfaa fayyadamuun,faankishiniin-koosii reeshoo dheerina raga walcinaa kofaa, dheerina haayipootinasii rog-sadee sirriif hiruun shallaga."
-#: 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(Alpha) = Olaa/Hypotenuse"
-#: 03100700.xhp
+#: 03080102.xhp
msgctxt ""
-"03100700.xhp\n"
-"hd_id3147530\n"
+"03080102.xhp\n"
+"hd_id3154125\n"
"5\n"
"help.text"
-msgid "Parameters:"
-msgstr "Ulaagaalee:"
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 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>Barruu:</emph> Maqaa seranaa kamuu kan jijjiirraa durtii moggaasa waliigalaa duuka bu'u."
+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 "Seranaan jijjiiramaa ta'e sagantaa dubbifaminaa fooyyessuuf gargaara. Seranoonni akkaataa jijjiiramaa murtaa'atti hin qindoofne, garuu lakkadda keessatti akka iddooqatti fayyada.Seranaa al tokko qofa qindeessuu dandeessa, haaromuu hin danda'u. Seranaa qindeessuuf hima armaan gadii fayyadam."
+msgid "Return value:"
+msgstr "Gatii deebii:"
-#: 03100700.xhp
-#, fuzzy
+#: 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 ConstName=Expression"
+msgid "Double"
+msgstr "Dachaa"
-#: 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 "Akaakuun himannoo fudhatama hin qabu. Yoo sagantaan jalqabe, $[officename] Basic lakkada sagantaa keessan jijjiira kanaaf serannaa yeroo fayyadama, himannoon qindeeffame bakka isaa bu'a."
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 03100700.xhp
+#: 03080102.xhp
msgctxt ""
-"03100700.xhp\n"
-"hd_id3154366\n"
+"03080102.xhp\n"
+"par_id3153770\n"
"10\n"
"help.text"
-msgid "Example:"
-msgstr "Fakkeenya:"
+msgid "<emph>Number:</emph> Numeric expression that specifies an angle in radians that you want to calculate the cosine for."
+msgstr "<emph>Lakkoofsa:</emph> Himannoon lakkoofsa kofa raadiyaaniin kan mul'isu kosaayinii shallaguu barbaaddef."
-#: 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 "Diigrii gara raadiyaaniitti jijjiiruuf ,diigrii pi/180 tiin baay'si. Raadiyaanii gara diigritti jijjiiruuf 180/pi tiin baay'isi."
+
+#: 03080102.xhp
+msgctxt ""
+"03080102.xhp\n"
+"par_id3149664\n"
+"12\n"
+"help.text"
+msgid "degree=(radian*180)/pi"
+msgstr "degree=(radian*180)/pi"
+
+#: 03080102.xhp
+msgctxt ""
+"03080102.xhp\n"
+"par_id3146985\n"
+"13\n"
+"help.text"
+msgid "radian=(degree*pi)/180"
+msgstr "radian=(degree*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 n kun geengoo dhaabbataa safarri naannoo isaa 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 "Wantoota gargaaramuu"
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 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\">Galaalee wantaa gargaaramuu</link></variable>"
+msgid "' The following example allows for a right-angled triangle the input of"
+msgstr "REM The following example allows for a right-angled triangle the input of"
-#: 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 "Galaaleen wantaa mojuuloota fi qaaqalee $[officename] keessatti uumaman hundaaf ilaalcha gubbaa kenna."
+msgid "' secant and angle (in degrees) and calculates the length of the hypotenuse:"
+msgstr "REM secant and angle (in degrees) and calculates the length of the hypotenuse:"
-#: 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 "Galaalee wantaa agarsiisuuf sajoo <emph>Galaalee Wantaa</emph> <image id=\"img_id3147341\" src=\"cmd/sc_objectcatalog.png\" width=\"0.564cm\" height=\"0.564cm\"><alt id=\"alt_id3147341\">Icon</alt></image> kamshaa Maakroo keessa jiru cuqaasi."
+msgid "' rounded Pi = 3.14159"
+msgstr "REM rounded 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 "Qaaqan tarree wantootaa hundaa walqabannoodhaan kaa`aman argisiisa.Galfata tarree irratti kuruuchuun lama jaldhufa wantootaa ni bana."
+msgid "d1 = InputBox$ (\"\"Enter the length of the adjacent side: \",\"Adjacent\")"
+msgstr "d1 = InputBox$ (\"\"Enter the length of the adjacent side: \",\"Adjacent\")"
-#: 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 "Mojuulii tokko tokko gulaalaa yookiin iddoo dhawwaaqsituu keessatti banuuf SUB yookiin FUNCTION fili, galfata walfakaatu fili akasumas <emph>agarsiisi</emph> sajoo <image id=\"img_id3149527\" src=\"basctl/res/im01.png\" width=\"0.564cm\" height=\"0.564cm\"><alt id=\"alt_id3149527\">Sajoo</alt></image> cuuqaasi."
+msgid "dAngle = InputBox$ (\"Enter the angle Alpha (in degrees): \",\"Alpha\")"
+msgstr "dAngle = InputBox$ (\"Enter the angle Alpha (in degrees): \",\"Alpha\")"
-#: 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 "Qaaqa wantaa cufuuf gabatee mataduree keessaa sajoo (X) cuuqaasi."
+msgid "Print \"The length of the hypothenuse is\"; (d1 / cos (dAngle * Pi / 180))"
+msgstr "Print \"The length of the hypothenuse is\"; (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 "Faankishiinii Manbarroo Bilisaa[Runtime]"
+msgid "Sin Function [Runtime]"
+msgstr "Faankishinii Saayinii[Runtime]"
-#: 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>Faankishiinii Manbarroo Bilisaa</bookmark_value>"
+msgid "<bookmark_value>Sin function</bookmark_value>"
+msgstr "<bookmark_value>funkishinii Saayiniidogongora</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 Function [Runtime]\">Faankishiinii FiriiLaybrarii[Runtime]</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 Function [Runtime]\">Faankishinii Saayinii [Runtime]</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 kan hima labsameen fe'ame baasi. DLL n bahe ofumaan deebi'ee fe'ama yoo faankshiniin isaa keessaa tokko waamame.Dabalataan ilaali: <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 "Sayiinii kofa deebisi.Kofni raadiyaaniin ibsama.Gatiin gidduu -1 fi 1 oola."
-#: 03090405.xhp
+#: 03080103.xhp
msgctxt ""
-"03090405.xhp\n"
-"hd_id3148550\n"
+"03080103.xhp\n"
+"par_id3153379\n"
"3\n"
"help.text"
-msgid "Syntax:"
-msgstr "Caasimaa:"
+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 "kafa Aalfaa fayyadamuun,faankishiniin Saayinii reeshoo dheerina raga faallaa kofaa gara dheerina haayipootinasii rog-sadee sirrii deebisa."
-#: 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(Alpha) = side opposite the angle/hypotenuse"
-#: 03090405.xhp
+#: 03080103.xhp
msgctxt ""
-"03090405.xhp\n"
-"hd_id3153380\n"
+"03080103.xhp\n"
+"hd_id3147230\n"
"5\n"
"help.text"
-msgid "Parameters:"
-msgstr "Ulaagaalee:"
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 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> Himannoon diraa kan maqaa DLL ibsuu dha."
+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 "FiriiLaybrariin DLLs yeroo Bu'uura sa'aa darbe fe'ame qofa baasuu danda'a."
+msgid "Return value:"
+msgstr "Gatii deebii:"
-#: 03090405.xhp
+#: 03080103.xhp
msgctxt ""
-"03090405.xhp\n"
-"hd_id3153363\n"
+"03080103.xhp\n"
+"par_id3150870\n"
"8\n"
"help.text"
-msgid "Example:"
-msgstr "Fakkeeny:"
+msgid "Double"
+msgstr "Dachaa"
-#: 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 "Hima dhaabbataa [Runtime]"
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 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>Hima dhaabbataa</bookmark_value>"
+msgid "<emph>Number:</emph> Numeric expression that defines the angle in radians that you want to calculate the sine for."
+msgstr "<emph>Lakkoofsa:</emph> Himannoon lakkoofsa kofa raadiyaaniin kan mul'isu Saayinii shallaguu barbaaddef."
-#: 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 Statement [Runtime]\">Hima dhaabbataa [Runtime]</link>"
+msgid "To convert degrees to radians, multiply degrees by Pi/180, and to convert radians to degrees, multiply radians by 180/Pi."
+msgstr "Diigrii gara raadiyaaniitti jijjiiruuf, diigrii pi/180 tiin baay'si. Raadiyaanii gara diigritti jijjiiruuf 180/pi tiin baay'isi."
-#: 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 "Jijjiiramaa ykn waraantoo, karqurxaa ykn faankishinii keessatti, bakka adeemsaatti lallaba. Kanaaf, gatiin jijjiiramaa ykn waraantoo erga karqurxa ykn faankishinii gaddhiifamee jiraatu ni hambifama. Jijjiirraan hima Dim ni danda'ama."
+msgid "grad=(radiant*180)/pi"
+msgstr "grad=(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>Himni dhaabbataan</emph> waraantoowwan jijjiiramoo hiikuuf hin fayyadu. Waraantoowwan akka hammamtaa murtaawaatti ibsamuu qabu."
+msgid "radiant=(grad*pi)/180"
+msgstr "radiant=(grad*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 "Caasimaa:"
+msgid "Pi is approximately 3.141593."
+msgstr "Pi is approximately 3.141593."
-#: 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 "Fakkeenya:"
-#: 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 "Fakkeenya:"
+msgid "' In this example, the following entry is possible for a right-angled triangle:"
+msgstr "REM Fakkeenya kana keessaatti, aseentuun rog-sadee sirrii armaan gadiif ni danda'ama."
-#: 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,\"The answer is\""
+msgid "' The side opposite the angle and the angle (in degrees) to calculate the length of the hypotenuse:"
+msgstr "REM rogni faallaa kofaa fi kofni(diigriidhaan)dheerina hayipootinasii shallaguuf."
-#: 03103500.xhp
-#, fuzzy
+#: 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 "Faankishinii REM jijjiiramaa dhaabbataa jalqabsiisuudhaaf"
+msgid "' Pi = 3.1415926 is a predefined variable"
+msgstr "REM Pi = 3.1415926 is a predefined variable"
-#: 03103500.xhp
-#, fuzzy
+#: 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 REM Gatii deebii xiqqicha faankishinii kanaa"
+msgid "d1 = InputBox$ (\"Enter the length of the opposite side: \",\"Opposite Side\")"
+msgstr "d1 = InputBox$ (\"Enter the length of the opposite side: \",\"Opposite Side\")"
-#: 03103500.xhp
-#, fuzzy
+#: 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 REM check if initialized"
+msgid "dAlpha = InputBox$ (\"Enter the angle Alpha (in degrees): \",\"Alpha\")"
+msgstr "dAlpha = InputBox$ (\"Enter the angle Alpha (in degrees): \",\"Alpha\")"
-#: 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 \"The length of the hypotenuse is\"; (d1 / sin (dAlpha * Pi / 180))"
+
+#: 03080104.xhp
+msgctxt ""
+"03080104.xhp\n"
"tit\n"
"help.text"
-msgid "For...Next Statement [Runtime]"
-msgstr "For...Next Statement [Runtime]"
+msgid "Tan Function [Runtime]"
+msgstr "Faankishinii Taanii[Runtime]"
-#: 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>hima For</bookmark_value><bookmark_value>hima To </bookmark_value><bookmark_value>hima Step </bookmark_value><bookmark_value>Next statement</bookmark_value>"
+msgid "<bookmark_value>Tan function</bookmark_value>"
+msgstr "<bookmark_value>funkishinii Taanii</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 Statement [Runtime]\">Hima For...Next [Runtime]</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 Function [Runtime]\">Faankishinii Taanii[Runtime]</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 "Himoota giduu garee For...Next yeroo ifteefameef irra deddeebi'i."
+msgid "Determines the tangent of an angle. The angle is specified in radians."
+msgstr "Taajantii kofaa murteessi.kofni raadiyaaniin ibsama."
-#: 03090202.xhp
+#: 03080104.xhp
msgctxt ""
-"03090202.xhp\n"
-"hd_id3156153\n"
+"03080104.xhp\n"
+"par_id3153379\n"
"3\n"
"help.text"
-msgid "Syntax:"
-msgstr "Caasimaa:"
+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 "kafa Aalfaa fayyadamuun, faankishiniin Taanii reeshoo dheerina raga faallaa kofaa gara dheerina roga walcinaa rog.Sadee sirrii shallaguuf."
-#: 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 counter=start To end [Step step]"
+msgid "Tan(Alpha) = side opposite the angle/side adjacent to angle"
+msgstr "Tan(Alpha) = side opposite the angle/side adjacent to angle"
-#: 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 "statement block"
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 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 "statement block"
+msgid "Return value:"
+msgstr "Gatii deebii:"
-#: 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 [counter]"
+msgid "Double"
+msgstr "Dachaa"
-#: 03090202.xhp
+#: 03080104.xhp
msgctxt ""
-"03090202.xhp\n"
-"hd_id3150400\n"
+"03080104.xhp\n"
+"hd_id3155132\n"
"9\n"
"help.text"
-msgid "Variables:"
-msgstr "Jijjiiramoota:"
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 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>Lakkaa'aa:</emph> Marsaa lakkaa'aan gatii jalqabarratti gara harka mirgaa mallattoo walqixaa kaa'a. Lakkofsa jijjiramtootaa qofatu sirriidha. Marsaa lakkaa'aan ni dabala ykn ni hir'ata akkaataa jijjiiramaa Step hanga End'n darbutti."
+msgid "<emph>Number:</emph> Any numeric expression that you want to calculate the tangent for (in radians)."
+msgstr "<emph>Lakkofsa:</emph> Himannoon lakkoofsa kamuu Taanjantiif shallaguu barbaadde."
-#: 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>Jalqaba:</emph> Lakkoofsi jijjiiramaan gatii jalqabaa ka'uumsa marsaa irratt kan ibsuu dha."
+msgid "To convert degrees to radians, multiply by Pi/180. To convert radians to degrees, multiply by 180/Pi."
+msgstr "Diigrii gara raadiyaaniitti jijjiiruuf, diigrii pi/180 tiin baay'si. Raadiyaanii gara diigritti jijjiiruuf 180/pi tiin baay'isi."
-#: 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>End:</emph>Lakkoofsi jijjiiramaan gatii xumuraa marsaa dhumaa irratti kan ibsuu dha."
+msgid "degrees=(radiant*180)/Pi"
+msgstr "degrees=(radiant*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>Step:</emph>Gatii akkataa dabaluu ykn hir'isuu lakkaa'aa marsaa qindeessi. Yoo Step'n hin ibsamne,lakkaa'aan marsa 1'n dabala.kan keessatti, End'n irra guddaa Start ta'uu qaba. Yoo lakkaa'aa hir'isuu barbaadde,End'n irra xiqqaa Start ta'uu,fi Step,n gatii nagatiivii qabaachuu qaba."
+msgid "radiant=(degrees*Pi)/180"
+msgstr "radiant=(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 "marsaan <emph>For...Next</emph> himoota hundaa marsaa keessaa yeroo ta'eef irra deddeebi'a ulaagaalee ibsamaniin."
+msgid "Pi is approximately 3.141593."
+msgstr "Pi is approximately 3.141593."
-#: 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 "Akkuma lakka'aa jijjiiramaan hir'ateen,$[officename] Basic gatiin dhumaa qaqabuu isaa mirkaneessa.Akkuma lakkaa'aan gatii dhumaa dabarseen,marsaan ofumaan dhuma."
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 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 "Hima <emph>For...Next</emph>wal keessa seensisuun ni danda'ama.Yoo jijjiiramaa hima <emph>Next</emph> aanutti ibsuu baatte,<emph>Next</emph>ofumaan hima<emph>For</emph>yeroo baay'ee dhihoo ta'e barbaada."
+msgid "' In this example, the following entry is possible for a right-angled triangle:"
+msgstr "REM Fakkeenya kana keessaatti, aseentuun rog-sadee sirrii armaan gadiif ni danda'ama."
-#: 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 "Yoo daballii 0 ibsite,himoonni gidduu <emph>For</emph> and <emph>Next</emph> itti fufuun irra deddeebi'u."
+msgid "' The side opposite the angle and the angle (in degrees) to calculate the length of the side adjacent to the angle:"
+msgstr "REM Rogni faallaa kofaa fi kofni(diigriin) dheerina roga walcinaa kofa shallaguuf."
-#: 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 "yommuu lakkaa'aa jijjiiramaan gad laakkaa'u,$[officename] Basic ol yaa'insa ykn gad yaa'insa mirkaneessa.yommuu lakkaa'aan End(gatii Step poozatiivii)caale ykn End(gatii Step nagatiivii)xiqqaate marsaan ni xumurama."
+msgid "' Pi = 3.1415926 is a pre-defined variable"
+msgstr "REM Pi = 3.1415926 is a pre-defined variable"
-#: 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 "Hma <emph>Exit For</emph> fayyadami osoo hin beekin marsaa keessaa bahuuf.Himni kun dirqama marsaa <emph>For...Next</emph> keessa ta'u qaba.Hima <emph>If...Then</emph> fayyadami haala bahiinsa mirkaneessuuf akka asii gadiitti."
+msgid "d1 = InputBox$ (\"Enter the length of the side opposite the angle: \",\"opposite\")"
+msgstr "d1 = InputBox$ (\"Enter the length of the side opposite the angle: \",\"opposite\")"
-#: 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$ (\"Enter the Alpha angle (in degrees): \",\"Alpha\")"
-#: 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 "himoota"
+msgid "Print \"the length of the side adjacent the angle is\"; (d1 / tan (dAlpha * Pi / 180))"
+msgstr "Print \"the length of the side adjacent the angle is\"; (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 condition = True Then Exit For"
+msgid "Exponential and Logarithmic Functions"
+msgstr "Faankishinoota Eksipooneenshaalii fi Logaarizimii"
-#: 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 "himoota"
+msgid "<link href=\"text/sbasic/shared/03080200.xhp\" name=\"Exponential and Logarithmic Functions\">Exponential and Logarithmic Functions</link>"
+msgstr "<link href=\"text/sbasic/shared/03080200.xhp\" name=\"Exponential and Logarithmic Functions\">Faankishinoota Eksipooneenshaalii fi Logaarizimii</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 "Kan itti aanu"
+msgid "$[officename] Basic supports the following exponential and logarithmic functions."
+msgstr "Bu'uurri $[officename] Faankishinoota Eksipooneenshaalii fi Logaarizimii armaan gadii deeggara."
-#: 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 "hub:Qooda marsaa<emph>For...Next</emph> ,yoo osoo hin beekin marsaa <emph>Exit For</emph>wajjin keessaa baate,marsaa tokkoo qofaatu baha."
+msgid "Exp Function [Runtime]"
+msgstr "Faankishinii Exp[Runtime]"
-#: 03090202.xhp
+#: 03080201.xhp
msgctxt ""
-"03090202.xhp\n"
-"hd_id3148457\n"
-"26\n"
+"03080201.xhp\n"
+"bm_id3150616\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "<bookmark_value>Exp function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii 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 "Fakkeenyi armaan gadii diraa waraantoo miseensota 10 qabu tartiiban kaa'uuf marsaa walkeessa galan lama fayyadama.sun jalqaba baafata baay'een guutama."
+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 Function [Runtime]\">Faankishinii Exp [Runtime]</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) = \"Jerry\""
+msgid "Returns the base of the natural logarithm (e = 2.718282) raised to a power."
+msgstr "Logaarizimii uumamaa bu'uura olkaasuu paaworii(e = 2.718282)deebisa."
-#: 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) = \"Patty\""
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 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) = \"Kurt\""
+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) = \"Thomas\""
+msgid "Return value:"
+msgstr "Gatii deebii:"
-#: 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) = \"Michael\""
+msgid "Double"
+msgstr "Dachaa"
-#: 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) = \"David\""
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 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) = \"Cathy\""
+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> Himannoon lakkofsaa kamuu olkaasuu paaworii ibsa. paaworiin lakkoofsota pirisishini qeenxee irra xiqqaa ykn wal qixa 88.02969 fi lakkoofsota pirisishini dachaa irra xiqqaa ykn wal qixa 709.782712893, waan Bu'uurri $[officename]dogongara lakkofsaa gatii kana caalan deebisuuf."
-#: 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) = \"Susie\""
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 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) = \"Edward\""
+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) = \"Christine\""
+msgid "MsgBox \"\" & dValue & chr(13) & (b1*b2) ,0,\"Multiplication by logarithm\""
+msgstr "MsgBox \"\" & dValue & chr(13) & (b1*b2) ,0,\"Multiplication by logarithm\""
-#: 03020401.xhp
+#: 03080202.xhp
msgctxt ""
-"03020401.xhp\n"
+"03080202.xhp\n"
"tit\n"
"help.text"
-msgid "ChDir Statement [Runtime]"
-msgstr "Hima ChDir [Runtime]"
+msgid "Log Function [Runtime]"
+msgstr "Faankishinii Loogii[Runtime]"
-#: 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>Hima ChDir</bookmark_value>"
+msgid "<bookmark_value>Log function</bookmark_value>"
+msgstr "<bookmark_value>faankishinii Loogii</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 Statement [Runtime]\">Hima ChDir[Runtime]</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 Function [Runtime]\">Faankishinii Loogii [Runtime]</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 "Oofuu ykn galeeloo ammee jijjiira."
-
-#: 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 "Himni yeroo darbaa galmee keessatti amma hin hojjetu.Ilaali <link href=\"http://www.openoffice.org/issues/show_bug.cgi?id=30692\">dhimma</link> odeeffannoo dabalataatiif."
+msgid "Returns the natural logarithm of a number."
+msgstr "Logaarizimii uumamaa kan lakkoofsaa deebisaa."
-#: 03020401.xhp
+#: 03080202.xhp
msgctxt ""
-"03020401.xhp\n"
-"hd_id3154347\n"
+"03080202.xhp\n"
+"hd_id3159414\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasima:"
+msgstr "caasimaa:"
-#: 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 "Ulaagaalee:"
+msgid "Return value:"
+msgstr "Gatii deebii:"
-#: 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>Barruu:</emph> Himamsa itergaa kan galeeloota xurree oofuu ibsu."
+msgid "Double"
+msgstr "Dachaa"
-#: 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 "Yoo oofuu ammee jijjiiruu barbaadde oofuu qubee xuqlameetti aansee dhufu qalchi."
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 03020401.xhp
+#: 03080202.xhp
msgctxt ""
-"03020401.xhp\n"
-"hd_id3151116\n"
+"03080202.xhp\n"
+"par_id3151041\n"
"8\n"
"help.text"
-msgid "Example:"
-msgstr "Fakkeenya:"
-
-#: 03130000.xhp
-msgctxt ""
-"03130000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Other Commands"
-msgstr "Ajajawwan Biroo"
-
-#: 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=\"Other Commands\">Ajajawwan Biroo</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 "Kuni, tarreffama faankishinootaa fi himootaa kanneen akaakuu biraa keessatti hin hammatamnee ti."
-
-#: 03030301.xhp
-msgctxt ""
-"03030301.xhp\n"
-"tit\n"
-"help.text"
-msgid "Date Statement [Runtime]"
-msgstr "Hima Guyyaa [Sa'aa darbe]"
-
-#: 03030301.xhp
-msgctxt ""
-"03030301.xhp\n"
-"bm_id3156027\n"
-"help.text"
-msgid "<bookmark_value>Date statement</bookmark_value>"
-msgstr "<bookmark_value>Hima Guyyaa </bookmark_value>"
+msgid "<emph>Number:</emph> Any numeric expression that you want to calculate the natural logarithm for."
+msgstr "<emph>Lakkofsa:</emph> Himannoon lakkoofsa kamuu logaarizimii uumamaa shallaguu barbaadde."
-#: 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 Statement [Runtime]\">Hima Guyyaa [Runtime]</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 "Logaarizimiin uumamaa logaarizimii hundeen isaa e ta.e dha. Gatiin e dhaabbataadha tilmaaman 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 "Sirna diraan guyyaa ammaa deebisi ykn guyyaa haromsi.Akkataan guyyaa sirna yoomessa keessaa kee irratti hundaa'a."
+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 "logaarizimii hundeen isaa kamuu kan (n)lakkoofsa kamuu kan (x) ta'eef shallaguuf logaarizimii uumamaa x logaarizimii umamaa n f akka armaan gadiitti hiruu dha:"
-#: 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 "Caasima:"
+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 "Fakkeenya:"
-#: 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 "Ulaagaalee:"
+msgid "MsgBox \"\" & a & chr(13) & (b1*b2) ,0,\"Multiplication by logarithm function\""
+msgstr "MsgBox \"\" & a & chr(13) & (b1*b2) ,0,\"Multiplication by logarithm function\""
-#: 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> Sirna guyyaa qofa haaromsuuf gaafatama. Haala kanaan,himamsi diraanii akkaataa guyyaa keesaa yomessattiin wal gituu qaba."
+msgid "Generating Random Numbers"
+msgstr "Lakkoofsota tasa uumuu"
-#: 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 "Fakkeenya:"
+msgid "<link href=\"text/sbasic/shared/03080300.xhp\" name=\"Generating Random Numbers\">Generating Random Numbers</link>"
+msgstr "<link href=\"text/sbasic/shared/03080300.xhp\" name=\"Generating Random Numbers\">Lakkoofsota tasa uumuu</link>"
-#: 03030301.xhp
-#, fuzzy
+#: 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 \"Guyyaan \" & Date"
+msgid "The following statements and functions generate random numbers."
+msgstr "Himiinni fi Faankishinoonni armaan gadii lokkofsota tasa uumu."
-#: 03120304.xhp
+#: 03080301.xhp
msgctxt ""
-"03120304.xhp\n"
+"03080301.xhp\n"
"tit\n"
"help.text"
-msgid "LSet Statement [Runtime]"
-msgstr "Hima LSet [Runtime]"
+msgid "Randomize Statement [Runtime]"
+msgstr "Hima tasaa[Runtime]"
-#: 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>Hima LSett</bookmark_value>"
+msgid "<bookmark_value>Randomize statement</bookmark_value>"
+msgstr "<bookmark_value>Hima tasaa</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 Statement [Runtime]\">Hima LSet [Runtime]</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 Statement [Runtime]\">Hima tasaa [Runtime]</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 "Diraa gara bitaa jijjiirama diraatti hiriirsisa, ykn jijjiramaa akaakuu hiika fayyadamaa tokkoo gara jijjiramaa akaakuu hiika fayyadamaa biraatti garagalcha."
+msgid "Initializes the random-number generator."
+msgstr "Lakkoofsa tasa maddisaa jalqabsiisuu."
-#: 03120304.xhp
+#: 03080301.xhp
msgctxt ""
-"03120304.xhp\n"
-"hd_id3145317\n"
+"03080301.xhp\n"
+"hd_id3147573\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasimaa:"
+msgstr "caasimaa:"
-#: 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 or 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 "Ulaagaalee:"
-#: 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> Jijjiiramaa diraa kamiyyuu, kan diraa akka gara bitaatti hiriiru barbaaddu of keessatti hammatu dha."
+msgid "<emph>Number:</emph> Any integer value that initializes the random-number generator."
+msgstr "<emph>Lakkoofsa:</emph> Itergaa eenyummaa lakkoofsa guyyaa of keessaa qabu."
-#: 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>Barruu:</emph> Diraa kan gara bitaa jijjiirama diraatti akka hiriiru barbaaddu dha."
-
-#: 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> Maqaa jijjiiramaa akaakuu hiika fayyadamaa kan itti garagalchuu barbaaddu ti.."
-
-#: 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> Maqaa jijjiiramaa akaakuu hiika fayyadamaa kan irraa garagalchuu barbaaddu ti."
-
-#: 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 "Yoo diraan jijjiirama diraarra gabaabaa ta'e, <emph>LSet</emph> 'n diraa jijjiirama diraa keessaa bitaarratti hiriirsisa. Bakki jijjiirama diraa keessatti hafe kamiyyuu iddoo duwwaadhaan bakka bu'amu. Yoo diraan jijjiiramaa diraarra dheeraa ta'e, arfiiwwan moggaa bitaa haga dheerina jijjiramaa diraatti jiran qofti ni garagalfamu. Hima <emph>LSet</emph> tiin, akaakuu jijjiiramaa hiika fayyadamaa tokko gara jijjiiramaa akaakuu gosa tokkootti garagalchuu ni dandeessa."
-
-#: 03120304.xhp
-msgctxt ""
-"03120304.xhp\n"
-"hd_id3156282\n"
-"11\n"
-"help.text"
msgid "Example:"
msgstr "Fakkeenya:"
-#: 03120304.xhp
-#, fuzzy
-msgctxt ""
-"03120304.xhp\n"
-"par_id3152940\n"
-"18\n"
-"help.text"
-msgid "' Align \"SBX\" within the 40-character reference string"
-msgstr "REM, \"SBX\" diraa bu'uraa arfii 40 keessatti hiriirsisa"
-
-#: 03120304.xhp
-#, fuzzy
+#: 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 "REM,urjoowwan iddoodhaan bakka buusa."
+msgid "iVar = Int((10 * Rnd) ) ' Range from 0 To 9"
+msgstr "iVar = Int((10 * Rnd) ) REM Range from 0 to 9"
-#: 03120304.xhp
-#, fuzzy
+#: 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 "REM, \"SBX\" diraa bu'uraa arfii 40 keessatti gara bitaatti hiriirsa."
+msgid "MsgBox sText,0,\"Spectral Distribution\""
+msgstr "MsgBox sText,0,\"Spectral Distribution\""
-#: 03030107.xhp
+#: 03080302.xhp
msgctxt ""
-"03030107.xhp\n"
+"03080302.xhp\n"
"tit\n"
"help.text"
-msgid "CDateToIso Function [Runtime]"
-msgstr "Faankishinii CDateToIso [Runtime]"
+msgid "Rnd Function [Runtime]"
+msgstr "faankishinii Rnd[Runtime]"
-#: 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>Faankishinii CDateToIso</bookmark_value>"
+msgid "<bookmark_value>Rnd function</bookmark_value>"
+msgstr "<bookmark_value>Fankishinii Rnd</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 Function [Runtime]\">Faankishinii CDateToIso [Runtime]</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 Function [Runtime]\">faankishinii Rnd [Runtime]</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 "Akkataa ISO tiin guyyaa eenyummaa guyyaa irraa deebisi kan faankishinii DateSerial or the DateValue irraa madde."
+msgid "Returns a random number between 0 and 1."
+msgstr "lakkofsi tasaa gidduu 0 fi 1 deebisuu."
-#: 03030107.xhp
+#: 03080302.xhp
msgctxt ""
-"03030107.xhp\n"
-"hd_id3159224\n"
+"03080302.xhp\n"
+"hd_id3153897\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasima:"
+msgstr "caasimaa:"
-#: 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 "Gatii deebii:"
-#: 03030107.xhp
+#: 03080302.xhp
msgctxt ""
-"03030107.xhp\n"
-"par_id3154422\n"
+"03080302.xhp\n"
+"par_id3154365\n"
"6\n"
"help.text"
-msgid "String"
-msgstr "Diraa"
+msgid "Double"
+msgstr "Dachaa"
-#: 03030107.xhp
+#: 03080302.xhp
msgctxt ""
-"03030107.xhp\n"
-"hd_id3147303\n"
+"03080302.xhp\n"
+"hd_id3154909\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Ulaagaalee:"
-#: 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>Lakkoofsa:</emph> Itergaa eenyummaa lakkoofsa guyyaa of keessaa qabu."
-
-#: 03030107.xhp
-msgctxt ""
-"03030107.xhp\n"
-"hd_id3147243\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr "Fakkeenya:"
-
-#: 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 Date\""
-
-#: 03130500.xhp
-msgctxt ""
-"03130500.xhp\n"
-"tit\n"
-"help.text"
-msgid "Shell Function [Runtime]"
-msgstr "Faankishinii [Runtime] qolaa"
-
-#: 03130500.xhp
-msgctxt ""
-"03130500.xhp\n"
-"bm_id3150040\n"
-"help.text"
-msgid "<bookmark_value>Shell function</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii qolaa</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 Function [Runtime]\">Faankishinii [Runtime] qolaa </link>"
+msgid "<emph>Expression:</emph> Any numeric expression."
+msgstr "<emph>Himata:</emph> Himata lakkoofsaa kamiyyuu."
-#: 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 "Yoo barbaachisaa ta'e, Raawwii biraa kaasuu fi haalata foddaa kanaan walqabatu ibsuu dha."
+msgid "<emph>Omitted:</emph> Returns the next random number in the sequence."
+msgstr "<emph>Dhisame:</emph> Lakkofsa tasaa kan itti aanu tartiiban deebisuu."
-#: 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 "Caasimaa:"
+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> Faankshiniin gatii 0 hanga 1 qofa debisa. Itergaa tasaa hangii kenname keessatti uumuf, foormullaa fakkeenya armaan gadii fayyadam."
-#: 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 "Fakkeenya:"
-#: 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 "Ulaagaalee:"
+msgid "Print \"Number from 1 to 5\""
+msgstr "Print \"Number from 1 to 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 "Maqaa xurree"
-
-#: 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 "Xurree fi maqaa sagantaa, sagantaa ati kaasuu barbaadduu guuti."
-
-#: 03130500.xhp
-msgctxt ""
-"03130500.xhp\n"
-"hd_id3150771\n"
-"24\n"
-"help.text"
-msgid "Windowstyle"
-msgstr "Haalata foddaa"
+msgid "Print \"Number from 6 to 8\""
+msgstr "Print \"Number from 6 to 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 "Himata itergaa dirqaalee isa haalata foddaa kan sagantaan keessatti raawwatu ifteessu dha. Gatiiwwan armaan gadii ni danda'amu:"
+msgid "Print \"Greater than 8\""
+msgstr "Print \"Greater than 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 \"Outside range 1 to 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 "Xiyyeeffannaan foddaa sagantaa dhokfame irra jira."
+msgid "Square Root Calculation"
+msgstr "Shallaggii iskuweer ruuttii"
-#: 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=\"Square Root Calculation\">Shallaggii iskuweer ruuttii </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 "Xiyyeeffannaan foddaa sagantaa irra hammamtaa durtiitiin jira."
+msgid "Use this function to calculate square roots."
+msgstr "Iskuweer ruuttota shallaguuf faankishinii kana fayyadami."
-#: 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 "Faankishinii Sqr[Runtime]"
-#: 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 "Xiyyeeffannaan, foddaa sagantaa xinneeffame irra jira."
+msgid "<bookmark_value>Sqr function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii 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 Function [Runtime]\">Faankishinii Sqr [Runtime]</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 "Xiyyeeffannaan foddaa sagantaa guddaterra."
+msgid "Calculates the square root of a numeric expression."
+msgstr "Iskuweer ruuttii himannoo lakkofsaa shallagi."
-#: 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 "caasimaa:"
-#: 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 "Hammamtaa foddaa sagantaa durtii, xiyyeeffannoo malee."
+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 "Gatii deebii:"
-#: 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 "Foddaa sagantaa xinneeffame, xiyyeeffannaan foddaa ka'aarra tura."
+msgid "Double"
+msgstr "Dachaa"
-#: 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 "Ulaagaalee:"
-#: 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 "Agarsiisa argii-guutuu."
+msgid "<emph>Number:</emph> Any numeric expression that you want to calculate the square root for."
+msgstr "<emph>Lakkofsa:</emph> Himannoon lakkoofsa kamuu Iskuweer ruuttii shallaguu barbaadde."
-#: 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 "Iskuweer ruutiin lakkoofsa ofiin of baay'isee lakkoofsa biroo kennuu dha. fakkeenyaf, iskuweer ruutiin 36, 6 dha."
-#: 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 "Himata diraa kamiyyuu kan sarara ajajaa isaa dabarsuu barbaaddu ifteessa."
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 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 "Itergoota"
-#: 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 "Yoo gatiin kun <emph>true</emph> qindeeffame, ajajni qolaa fi dalagaawwan $[officename] marti hanga hojiin <emph>qolaa</emph> xumuramutti ni eegu. Yoo gatiin isaa <emph>false</emph> qindeeffame, qolli kallattumaan deebi'a. Gatiin durtii isaa <emph>false</emph> dha."
+msgid "<link href=\"text/sbasic/shared/03080500.xhp\" name=\"Integers\">Integers</link>"
+msgstr "<link href=\"text/sbasic/shared/03080500.xhp\" name=\"Integers\">Itergoota</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 "Fakkeenya"
+msgid "The following functions round values to integers."
+msgstr "faankishiniin armaan gadii gatii gara itergaatti siksuuf."
-#: 03131300.xhp
+#: 03080501.xhp
msgctxt ""
-"03131300.xhp\n"
+"03080501.xhp\n"
"tit\n"
"help.text"
-msgid "TwipsPerPixelX Function [Runtime]"
-msgstr "Faankishinii [Runtime] TwipsPerPixelX"
+msgid "Fix Function [Runtime]"
+msgstr "Faankishinii Fix [Runtime]"
-#: 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>faankishinii TwipsPerPixelX</bookmark_value>"
+msgid "<bookmark_value>Fix function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii 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 Function [Runtime]\"> Faankishinii [Runtime] 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 Function [Runtime]\">Faankishinii Fix [Runtime]</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 "Lakkofsa tiwiipsii kan dheerina pikseelii bakka bu'an deebisa."
+msgid "Returns the integer value of a numeric expression by removing the fractional part of the number."
+msgstr "enta gatii itergaa himannoo lakkofsaa entaa lakkofsaa keessaa balleessuun deebisi."
-#: 03131300.xhp
+#: 03080501.xhp
msgctxt ""
-"03131300.xhp\n"
-"hd_id3153527\n"
+"03080501.xhp\n"
+"hd_id3155419\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasimaa:"
+msgstr "caasimaa:"
-#: 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 "Gatii deebii:"
-#: 03131300.xhp
+#: 03080501.xhp
msgctxt ""
-"03131300.xhp\n"
-"par_id3150503\n"
+"03080501.xhp\n"
+"par_id3148947\n"
"6\n"
"help.text"
-msgid "Integer"
-msgstr "Itergaa"
+msgid "Double"
+msgstr "Dachaa"
-#: 03131300.xhp
+#: 03080501.xhp
msgctxt ""
-"03131300.xhp\n"
-"hd_id3159176\n"
+"03080501.xhp\n"
+"hd_id3154760\n"
"7\n"
"help.text"
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
+
+#: 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>Himanoo:</emph> Himanoo lakkoofsa gatii itergaa deebisuu barbaadde."
+
+#: 03080501.xhp
+msgctxt ""
+"03080501.xhp\n"
+"hd_id3150447\n"
+"9\n"
+"help.text"
msgid "Example:"
msgstr "Fakkeenya:"
-#: 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() & \" Twips * \" & TwipsPerPixelY() & \" Twips\",0,\"Pixel size\""
+msgid "Print Fix(3.14159) ' returns 3."
+msgstr "Print Fix(3.14159) REM returns 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) REM returns 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) REM returns -3."
+
+#: 03080502.xhp
+msgctxt ""
+"03080502.xhp\n"
"tit\n"
"help.text"
-msgid "CInt Function [Runtime]"
-msgstr "Faankishinii CInt[Runtime]"
+msgid "Int Function [Runtime]"
+msgstr "faankishinii Int[Runtime]"
-#: 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>Faankishinii CInt</bookmark_value>"
+msgid "<bookmark_value>Int function</bookmark_value>"
+msgstr "<bookmark_value>Fankishinii 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 Function [Runtime]\">Faankishinii CInt [Runtime]</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 Function [Runtime]\">faankishinii Int [Runtime]</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 "Himannoo diraa ykn lakkoofsaa kamuu itergaatti geeddari."
+msgid "Returns the integer portion of a number."
+msgstr "Itergaa lakkofsa deebisi."
-#: 03100500.xhp
+#: 03080502.xhp
msgctxt ""
-"03100500.xhp\n"
-"hd_id3147573\n"
+"03080502.xhp\n"
+"hd_id3147559\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasimaa:"
+msgstr "caasimaa:"
-#: 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 "Gatii Debisi:"
+msgstr "Gatii deebii:"
-#: 03100500.xhp
+#: 03080502.xhp
msgctxt ""
-"03100500.xhp\n"
-"par_id3147560\n"
+"03080502.xhp\n"
+"par_id3150400\n"
"6\n"
"help.text"
-msgid "Integer"
-msgstr "Itergaa"
+msgid "Double"
+msgstr "Dachaa"
-#: 03100500.xhp
+#: 03080502.xhp
msgctxt ""
-"03100500.xhp\n"
-"hd_id3145069\n"
+"03080502.xhp\n"
+"hd_id3149656\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Ulaagaalee:"
-#: 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> himannoo lakkoofsa kamuu kan geeddaruu barbaaddu.Yoo <emph>Himannoo</emph> gatii gidduu -32768 fi 32767 caale,$[officename] Basic dogongara guutinsa darbaa gabaasa.Himannoo diraa geeddaruuf,lakkoofsi dirqama akka barruu baratamaa (\"123.5\") tti gala, dhangii lakkoofsa durtii sirna dalagaa kee fayyadamuun."
+msgid "<emph>Number:</emph> Any valid numeric expression."
+msgstr "<emph>lakkoofsa:</emph> Himannoo lakkoofsa sirrii kamuu."
-#: 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 "Faankishiiniin kun yeroo hunda qaama lakkoofsa entaa itergaa itti dhihaatutti siksa."
-
-#: 03100500.xhp
-msgctxt ""
-"03100500.xhp\n"
-"hd_id3145419\n"
-"10\n"
-"help.text"
msgid "Example:"
msgstr "Fakkeenya:"
-#: 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 "Faankishinii DateAdd [Runtime]"
+msgid "Print Int(3.99) ' returns the value 3"
+msgstr "Print Int(3.99) REM returns the value 3.0"
-#: 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>Faankishinii DateAdd</bookmark_value>"
+msgid "Print Int(0) ' returns the value 0"
+msgstr "Print Int(0) REM returns the value 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\">Faankishinii DateAdd [Runtime]</link>"
+msgid "Print Int(-3.14159) ' returns the value -4"
+msgstr "Print Int(-3.14159) REM returns the value -4.0"
-#: 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 "Irra dedeebi'ii guyyota kennaman intervaalii guyyotatti ida'i isaan booda guyyaa argatte deebisi."
+msgid "Absolute Values"
+msgstr "Gatii gonkaa"
-#: 03030110.xhp
+#: 03080600.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN1055B\n"
+"03080600.xhp\n"
+"hd_id3146958\n"
+"1\n"
"help.text"
-msgid "Syntax:"
-msgstr "Caasima:"
+msgid "<link href=\"text/sbasic/shared/03080600.xhp\" name=\"Absolute Values\">Absolute Values</link>"
+msgstr "<link href=\"text/sbasic/shared/03080600.xhp\" name=\"Absolute Values\">Gatii gonkaa</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 (Ida'i, Lakkoofsa,Guyyaa)"
+msgid "This function returns absolute values."
+msgstr "Faankshiniin kun gatii gonkaa deebisa."
-#: 03030110.xhp
+#: 03080601.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN1061E\n"
+"03080601.xhp\n"
+"tit\n"
"help.text"
-msgid "Return value:"
-msgstr "Gatii deebii:"
+msgid "Abs Function [Runtime]"
+msgstr "faankishinii Abs[Runtime]"
-#: 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 "Bakkabu'oota guyyaa of kessaa qaban."
+msgid "<bookmark_value>Abs function</bookmark_value>"
+msgstr "<bookmark_value>Fankishinii Abs</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 "Ulaagaalee:"
+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 Function [Runtime]\">faankishinii Abs [Runtime]</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 "Ida'i-Himamsi diraa gabatee armaan gdii irraa,intervaalii guyyaa ibsa."
+msgid "Returns the absolute value of a numeric expression."
+msgstr "Gatii gonkaa himannoo lakkofsa debisa."
-#: 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 "Ida'i(gatii diraa)"
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 03030110.xhp
+#: 03080601.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN1063C\n"
+"03080601.xhp\n"
+"par_id3147573\n"
+"4\n"
"help.text"
-msgid "Explanation"
-msgstr "Ibsa"
+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 "Gatii deebii:"
-#: 03030110.xhp
+#: 03080601.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN10649\n"
+"03080601.xhp\n"
+"par_id3149670\n"
+"6\n"
"help.text"
-msgid "Year"
-msgstr "Waggaa"
+msgid "Double"
+msgstr "Dachaa"
-#: 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 "Ulaagaalee:"
-#: 03030110.xhp
+#: 03080601.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN10656\n"
+"03080601.xhp\n"
+"par_id3154347\n"
+"8\n"
"help.text"
-msgid "Quarter"
-msgstr "Kumaana"
+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>lakkoofsa:</emph>Himannoo lakkoofsa gatii gonkaa deebisuu barbaaddef. lakkoofsi poozatiivii, 0 dabalatee hin jijjiraman, lakkofsi nagatiivii garuu gara poozatiivitti jiiiirama."
-#: 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 "Fakkeenyi armaan gadii faankishinii Abs fayyadamuun garagarummaa gatii lama gidduu jiru shallaguuf.Gatiin dura itti galchitu rakkoo hin qabu."
-#: 03030110.xhp
+#: 03080601.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN10663\n"
+"03080601.xhp\n"
+"hd_id3148451\n"
+"10\n"
"help.text"
-msgid "Month"
-msgstr "Ji'a"
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 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$ (\"Please enter the first amount\",\"Value input\"))"
-#: 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 "Guyyaa Waggaa"
+msgid "siW2 = Int(InputBox$ (\"Please enter the second amount\",\"Value Input\"))"
+msgstr "siW2 = Int(InputBox$ (\"Please enter the second amount\",\"Value input\"))"
-#: 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 \"The difference is \"; Abs(siW1 - siW2)"
-#: 03030110.xhp
+#: 03080700.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN1067D\n"
+"03080700.xhp\n"
+"tit\n"
"help.text"
-msgid "Weekday"
-msgstr "Guyyaa Torbee"
+msgid "Expression Signs"
+msgstr "Ballaccee Himannoo"
-#: 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=\"Expression Signs\">Ballaccee Himannoo</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 "Torbee Waggaa"
+msgid "This function returns the algebraic sign of a numeric expression."
+msgstr "Faankishiiniin kun ballaccee aligeebiraa himannoo lakkofsa deebisa."
-#: 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 "Faankishinii Sgn[Runtime]"
-#: 03030110.xhp
+#: 03080701.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN10697\n"
+"03080701.xhp\n"
+"bm_id3148474\n"
"help.text"
-msgid "Day"
-msgstr "Guyyaa"
+msgid "<bookmark_value>Sgn function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii 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 Function [Runtime]\">Faankishinii Sgn [Runtime]</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 "Sa'aa"
+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 "Lakkoofsa itergaa gidduu -1 fi 1 deebisi yoo lakkofsi faankishiniitti darbu poozatiivii, nageetivii, ykn zeeroo ta'u agarsiise."
-#: 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 "caasimaa:"
-#: 03030110.xhp
+#: 03080701.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN106B1\n"
+"03080701.xhp\n"
+"par_id3153897\n"
+"4\n"
"help.text"
-msgid "Minute"
-msgstr "Daqiiqaa"
+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 "Gatii deebii:"
-#: 03030110.xhp
+#: 03080701.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN106BE\n"
+"03080701.xhp\n"
+"par_id3150359\n"
+"6\n"
"help.text"
-msgid "Second"
-msgstr "Sekandii"
+msgid "Integer"
+msgstr "intergaa"
-#: 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 "Lakkoofsa-Himamni numeerikaalaa yeroo meeqaaf Ida'amni intervaalii akka ida'ame ibsa(pozativaa ni lakka'ama) ykn hir'ataa (negativii ni lakka'ama)."
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 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 "Guyyaa-Guyyaa kennama ykn maqaa bakkabu'oota gegedarama guyyaa of kessaa qaba.Gatii Ida'aa hamma yeroo lakka'uuf ni ida'ama."
+msgid "<emph>Number:</emph> Numeric expression that determines the value that is returned by the function."
+msgstr "<emph>lakkoofsa:</emph> himannoon lakkofsaa gatii faankishiniin deebi'u murteessa."
-#: 03030110.xhp
+#: 03080701.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN106C7\n"
+"03080701.xhp\n"
+"par_id3150767\n"
+"9\n"
"help.text"
-msgid "Example:"
-msgstr "Fakkeenya:"
+msgid "NumExpression"
+msgstr "NumExpression"
-#: 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 "Hima DefBool [Runtime]"
+msgid "Return value"
+msgstr "Gatii deebii"
-#: 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>Hima DefBool</bookmark_value>"
+msgid "negative"
+msgstr "nagatiivii"
-#: 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 Statement [Runtime]\">Hima DefBool [Runtime]</link>"
+msgid "Sgn returns -1."
+msgstr "Sgn returns -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 "Yoo arfiin akaakuu labsii ykn jefuraa hin ifteeffamne,himni DefBool akaakuu deetaa durtii jijjiiramtootaf qindeessa,akkaataa hangii qubeen."
+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 "Caasimaa:"
+msgid "Sgn returns 0."
+msgstr "Sgn returns 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 "poozatiivitti"
-#: 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 "Ulaagaalee:"
+msgid "Sgn returns 1."
+msgstr "Sgn returns 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>Hangiiarfii:</emph> Qubeen kan hangii jijjiiramaa kan akaakuu deetaa durtii qindeessuu barbaaddu ifteessa."
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 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> Jefuraan kan akaakuu jijjiiramaa durtii qindeessu:"
+msgid "Print sgn(-10) ' returns -1"
+msgstr "Print sgn(-10) REM returns -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>Jefuraa: </emph>Akaakuu jijjiiramaa durtii"
+msgid "Print sgn(0) ' returns 0"
+msgstr "Print sgn(0) REM returns 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> Buuliyaanii"
+msgid "Print sgn(10) ' returns 1"
+msgstr "Print sgn(10) REM returns 1"
-#: 03101100.xhp
+#: 03080800.xhp
msgctxt ""
-"03101100.xhp\n"
-"hd_id3149762\n"
-"10\n"
+"03080800.xhp\n"
+"tit\n"
"help.text"
-msgid "Example:"
-msgstr "Fakkeenya:"
+msgid "Converting Numbers"
+msgstr "Lakkoofsota jijjiiruu"
-#: 03101100.xhp
-#, fuzzy
+#: 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 "REM hiika huddeelsoo akaakuu jijjiiramaaf:"
+msgid "<link href=\"text/sbasic/shared/03080800.xhp\" name=\"Converting Numbers\">Converting Numbers</link>"
+msgstr "<link href=\"text/sbasic/shared/03080800.xhp\" name=\"Converting Numbers\">Lakkoofsota jijjiiruu </link>"
-#: 03101100.xhp
-#, fuzzy
+#: 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 REM bOK is an implicit Boolean variable"
+msgid "The following functions convert numbers from one number format to another."
+msgstr "Faankishinoonni armaan gadii lakkoofsota dhangii lakkoofsa tokko irraa gara birootti jijjiiru"
-#: 03020414.xhp
+#: 03080801.xhp
msgctxt ""
-"03020414.xhp\n"
+"03080801.xhp\n"
"tit\n"
"help.text"
-msgid "SetAttr Statement [Runtime]"
-msgstr "Hima SetAttr [Runtime]"
+msgid "Hex Function [Runtime]"
+msgstr "Faankishinii Hex [Runtime]"
-#: 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> Hima SetAttr</bookmark_value>"
+msgid "<bookmark_value>Hex function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii 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 Statement [Runtime]\"> Hima SetAttr [Runtime]</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 Function [Runtime]\">Faankishinii Hex [Runtime]</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 "Faayiilii ibsameef amaloota odeeffannoo moggaasi."
+msgid "Returns a string that represents the hexadecimal value of a number."
+msgstr "Diraa gatii heeksaa deesimaalii lakkoofsa bakka bu'u deebisuu."
-#: 03020414.xhp
+#: 03080801.xhp
msgctxt ""
-"03020414.xhp\n"
-"hd_id3150359\n"
+"03080801.xhp\n"
+"hd_id3147573\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasima:"
+msgstr "caasimaa:"
-#: 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 "Ulaagaalee:"
+msgid "Return value:"
+msgstr "Gatii deebii:"
-#: 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 "FileName: maqaa faayilii, xurree dabalatee amaloota yaalii barbaadde. Yoo xuurree galchuu baattee, <emph>SetAttr</emph> Faayiilii galeeloo ammaa irraa jiru barbaadi.kanas fayyadamuu ni dandeessa <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\"> Sirnasxaa URL </link>."
+msgid "String"
+msgstr "Diraa"
-#: 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>Amaloota :</emph> Haala biitii hiika amalootaa barbaaddee itti moggaastu ykn haqxuf gargaaru."
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 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>Gatii</emph>"
+msgid "<emph>Number:</emph> Any numeric expression that you want to convert to a hexadecimal number."
+msgstr "<emph>Lakkofsa:</emph> Himannoon lakkoofsa kamuu lakkoofsa heeksaadeesimaalii jijjiiruu barbaadde."
-#: 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 : Faayilii jumoo."
-
-#: 03020414.xhp
-msgctxt ""
-"03020414.xhp\n"
-"par_id3149262\n"
-"10\n"
-"help.text"
-msgid "1 : Read-only files."
-msgstr "1 : Faayilii dubbisuu qofa danda'ama."
-
-#: 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: Dilbiin dhuma waan ta'eef faayiliin jijjiirame( galmee biitii)"
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 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 "Amaloota baay'ee gatii walduraa duubaan dhufan yaayaa ykn hima waliin moggaasuu dandeessa."
+msgid "' uses BasicFormulas in $[officename] Calc"
+msgstr "REM uses BasicFormulas in $[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 "Fakkeenya:"
+msgid "' Returns a long integer from a hexadecimal value."
+msgstr "REM Returns a Long-Integer from a hexadecimal value."
-#: 03020414.xhp
-#, fuzzy
+#: 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 REM qiyaaffannoo error-handler dhaaf hiiki."
+msgid "' Calculates a hexadecimal value in integer."
+msgstr "REM Calculates a hexadecimal value in Integer."
-#: 03090302.xhp
+#: 03080802.xhp
msgctxt ""
-"03090302.xhp\n"
+"03080802.xhp\n"
"tit\n"
"help.text"
-msgid "GoTo Statement [Runtime]"
-msgstr "Hima GoTo[Runtime]"
+msgid "Oct Function [Runtime]"
+msgstr "faankishinii Oct[Runtime]"
-#: 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>hima GoTo </bookmark_value>"
+msgid "<bookmark_value>Oct function</bookmark_value>"
+msgstr "<bookmark_value>Fankishinii 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 Statement [Runtime]\">Hima GoTo [Runtime]</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 Function [Runtime]\">Faankishinii Oct [Runtime]</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 "sagantaa raawwii itti fufaa kan Sub ykn Function keessattii kan adeemsa sarara asxan agarsifame."
+msgid "Returns the octal value of a number."
+msgstr "Gatii saddeettaa lakkoofsaa deebisuu."
-#: 03090302.xhp
+#: 03080802.xhp
msgctxt ""
-"03090302.xhp\n"
-"hd_id3149656\n"
+"03080802.xhp\n"
+"hd_id3148947\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasimaa:"
+msgstr "caasimaa:"
-#: 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 "Ulaagaalee ilaali"
+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 "Ulaagaalee:"
+msgid "Return value:"
+msgstr "Gatii deebii:"
-#: 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 "Diraa"
-#: 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 "garee himaa"
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 03090302.xhp
+#: 03080802.xhp
msgctxt ""
-"03090302.xhp\n"
-"par_id3154685\n"
+"03080802.xhp\n"
+"par_id3150768\n"
"8\n"
"help.text"
-msgid "Label1"
-msgstr "asxa1"
+msgid "<emph>Number:</emph> Any numeric expression that you want to convert to an octal value."
+msgstr "<emph>Lakkofsa:</emph> Himannoon lakkoofsa kamuu Gatii kan saddeettaatti jijjiiruu barbaadde."
-#: 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>Asxa2:</emph>"
-
-#: 03090302.xhp
-msgctxt ""
-"03090302.xhp\n"
-"par_id3161832\n"
-"10\n"
-"help.text"
-msgid "statement block"
-msgstr "garee himaa"
-
-#: 03090302.xhp
-#, fuzzy
-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>Asxaa1:</emph>"
-
-#: 03090302.xhp
-msgctxt ""
-"03090302.xhp\n"
-"par_id3152462\n"
-"13\n"
-"help.text"
-msgid "statement block"
-msgstr "garee himaa"
-
-#: 03090302.xhp
-msgctxt ""
-"03090302.xhp\n"
-"par_id3149664\n"
-"14\n"
-"help.text"
-msgid "GoTo Label2"
-msgstr "Gara Asxa2 Deemi"
-
-#: 03090302.xhp
-msgctxt ""
-"03090302.xhp\n"
-"par_id3152886\n"
-"15\n"
-"help.text"
-msgid "End Sub/Function"
-msgstr "End Sub/Function"
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 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 "$[officename] Basic akka sagantaa raawwachuu itti fufu iddoo biraa adeemsa keessatti hima GoTo fayyadami.Iddoon dirqama asxaan agarsiifama. Asxaa mul'isuuf, maqaa moggaasi, achiin tuq-lameen(\":\") xumuri."
+msgid "Controlling Program Execution"
+msgstr "Too'annaa Sagantaa Raawwii"
-#: 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 "Hima GoTo fayyadamuu hin dandeessu Sub ykn Function irra utaaluuf."
+msgid "<link href=\"text/sbasic/shared/03090000.xhp\" name=\"Controlling Program Execution\">Controlling Program Execution</link>"
+msgstr "<link href=\"text/sbasic/shared/03090000.xhp\" name=\"Controlling Program Execution\">Too'annaa Sagantaa Raawwii</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 "Fakkeenya;"
+msgid "The following statements control the execution of a program."
+msgstr "Himoonni armaan gadii sagantaa rawwii too'atu."
-#: 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 "Ulaagaalee ilaali"
+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 "sagantaan waliigalatti lakkaddaa sarara jalqabaa irraa hanga lakkadda sarara xumuraatti raawwata. Itti dabaltees adeemsa murtaa'e kan sagantaa keessaa akkaataa adeemsa xixiqqaa ykn faankishiniitti raawwachuu dandeessa. Qaama sagantaa amma barbaachisu irra deddeebi'uuf marsaa fayyadamuu dandeessa,ykn hanga haalli ta'e murtaa'utti. Gosti too'annaa himoota akkanaa haala, marsaa, ykn utaalchoo himootatti qoodamu."
-#: 03080700.xhp
+#: 03090100.xhp
msgctxt ""
-"03080700.xhp\n"
+"03090100.xhp\n"
"tit\n"
"help.text"
-msgid "Expression Signs"
-msgstr "Ballaccee Himannoo"
+msgid "Condition Statements"
+msgstr "Haala himootaa"
-#: 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=\"Expression Signs\">Ballaccee Himannoo</link>"
+msgid "<link href=\"text/sbasic/shared/03090100.xhp\" name=\"Condition Statements\">Condition Statements</link>"
+msgstr "<link href=\"text/sbasic/shared/03090100.xhp\" name=\"Condition Statements\">Haala himootaa</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 "Faankishiiniin kun ballaccee aligeebiraa himannoo lakkofsa deebisa."
+msgid "The following statements are based on conditions."
+msgstr "Himoonni armaan gadii haala irratti hundaa'u."
-#: 03120308.xhp
+#: 03090101.xhp
msgctxt ""
-"03120308.xhp\n"
+"03090101.xhp\n"
"tit\n"
"help.text"
-msgid "RSet Statement [Runtime]"
-msgstr "RSet Hima [Runtime]"
+msgid "If...Then...Else Statement [Runtime]"
+msgstr "Hima If...Then...Else [Runtime]"
-#: 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 hima</bookmark_value>"
+msgid "<bookmark_value>If statement</bookmark_value>"
+msgstr "<bookmark_value>hima 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 Statement [Runtime]\">RSet Hima [Runtime]</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 Statement [Runtime]\">Hima If...Then...Else [Runtime]</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 "Diraa jijjiirama diraa keessaa, gara mirgaatti hiriirsisuuf;yookiin akaakuu jijjiiramtoota"
+msgid "Defines one or more statement blocks that you only want to execute if a given condition is True."
+msgstr "Haalli kenname Dhugaa yoo ta'e garee hima tokkoo ykn baay'ee raawwachuu barbaadde qofa ibsi."
-#: 03120308.xhp
+#: 03090101.xhp
msgctxt ""
-"03120308.xhp\n"
-"hd_id3149234\n"
+"03090101.xhp\n"
+"hd_id3146957\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasimaa:"
+msgstr "caasimaa:"
-#: 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 or RSet Variable1 = Variable2"
+msgid "If condition=true Then Statement block [ElseIf condition=true Then] Statement block [Else] Statement block EndIf"
+msgstr ""
-#: 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 ""
+
+#: 03090101.xhp
+msgctxt ""
+"03090101.xhp\n"
+"hd_id3155419\n"
"5\n"
"help.text"
msgid "Parameters:"
-msgstr "Ulaagaa:"
+msgstr "Ulaagaalee:"
-#: 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> Jijjiiramaa Diraa kamiyyuu"
+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 "Himi <emph>If...Then</emph> garee sagantaa raawwatu haalota kennaman irratti hundaa'a. yeroo bu'uurri $[officename] hima<emph>If</emph> qunnamsiise, haallichi yaalame.Yoo haalli isaa Dhugaa ta'e,himoonni walfaanaa hunduu hanga hima <emph>Else</emph> ykn <emph>ElseIf</emph> itti aanutti raawwatu. yoo haalli isaa Soba ta'e, fi himni<emph>ElseIf</emph> duuka bu'e ,$[officename] Basic haala itti aanu yaalee himoota armaan gadii raawwata ,yoo haalli isaa Dhugaa ta'e. Yoo soba ta'e, sagantaan hima <emph>ElseIf</emph> ykn <emph>Else</emph> waliin itti fufa. himoonni <emph>Else</emph>duuka bu'an kan raawwatu yoo haalli duraan yaalame Dhugaa ta'e qofa. Haalli hunduu yoo madaalameen booda,fi himoonni walitti dhufoo raawwatan, sagantaan hima <emph>EndIf</emph>itti aanu waiin itti fufa."
-#: 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>Barruu</emph>: Diraa kan ati jijjirama diraa keessatti gara mirgaatti hiriirsisuu barbaaddu dha."
+msgid "You can nest multiple <emph>If...Then</emph> statements."
+msgstr "Himoota <emph>If...Then</emph> danee galchuu dandeessa."
-#: 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>Jijjiiramaa1:</emph> Jijjiiramaa hiika fayyadamaa kanneen jijjiiramtoota galagalchamaniif galtee ta'ani dha."
+msgid "<emph>Else</emph> and <emph>ElseIf</emph> statements are optional."
+msgstr "Himoonni<emph>Else</emph> fi <emph>ElseIf</emph> dirqalee dha."
-#: 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>Jijjiiramaa2:</emph>Jijjiiramaa hiika fayyadamaa, kanneen gara jijjiiramaa biraatti akka garagalfaman barbaaddu dha."
+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> fi <emph>GoSub</emph> fayyadamuu dandeessa,garee <emph>If...Then</emph> alatti utaaluuf, garuu caasaa <emph>If...Then</emph> tti hin utaalin."
-#: 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 "Yoo diraan jijjiiramaa diraa irra gabaabaa te'e,<emph>RSet</emph> 'n diraa, jijjiiramtoota diraa keessaa gara mirgaatti hiriirsisa. Arfiiwwan hafan kanneen jijjiiramtoota diraa keessaa kamiyyuu iddoodhaan bakka bu'u. Yoo diraan, jijjiiramaa diraa irra dheeraa ta'e; arfiiwwan dheerinaan jijjiiramtoota caalan yoo hallagamanii, fi arfiiwwan hafan qofti jijjiramtoota diraa keessatti gara mirgaatti hiriirsifamu."
+msgid "The following example enables you to enter the expiration date of a product, and determines if the expiration date has passed."
+msgstr "Fakkeenyi armaan gadii guyyaa omishaa itti galchuuf ,fi yoo guuyyaan darbe murteessuuf si dandeessisa."
-#: 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 "Jijjiiramtoota hiika fayyadamaa akaakuu tokko gara biraatti ramaduuf,<emph>Hima RSet</emph> tti fayyadamuus ni dandeessa."
-
-#: 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 "Fakkeenyi armaan gadii;Hiriira bitaa fi mirgaa diraa Fooyyessuuf hima <emph>RSet</emph> fi <emph>LSet</emph> tti fayyadama."
-
-#: 03120308.xhp
-msgctxt ""
-"03120308.xhp\n"
-"hd_id3154909\n"
-"13\n"
-"help.text"
msgid "Example:"
msgstr "Fakkeenya:"
-#: 03120308.xhp
-#, fuzzy
+#: 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 "REM Right-align \"SBX\" in a 40-character string"
+msgid "sDate = InputBox(\"Enter the expiration date (MM.DD.YYYY)\")"
+msgstr "sDate = InputBox(\"Enter the expiration date (MM.DD.YYYY)\")"
-#: 03120308.xhp
-#, fuzzy
+#: 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 "REM,urjoowwan iddoodhaan bakka buusa."
-
-#: 03120308.xhp
-#, fuzzy
-msgctxt ""
-"03120308.xhp\n"
-"par_id3145801\n"
-"32\n"
-"help.text"
-msgid "' Left-align \"SBX\" in a 40-character string"
-msgstr "REM Left-align \"SBX\" in a 40-character string"
-
-#: 03080200.xhp
-msgctxt ""
-"03080200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Exponential and Logarithmic Functions"
-msgstr "Faankishinoota Eksipooneenshaalii fi Logaarizimii"
+msgid "MsgBox \"The expiration date has passed\""
+msgstr "MsgBox \"The expiration date has passed\""
-#: 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=\"Exponential and Logarithmic Functions\">Faankishinoota Eksipooneenshaalii fi Logaarizimii</link>"
+msgid "MsgBox \"The expiration date has not yet passed\""
+msgstr "MsgBox \"The expiration date has not yet passed\""
-#: 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 "Bu'uurri $[officename] Faankishinoota Eksipooneenshaalii fi Logaarizimii armaan gadii deeggara."
+msgid "MsgBox \"The expiration date is today\""
+msgstr "MsgBox \"The expiration date is today\""
-#: 01030200.xhp
+#: 03090102.xhp
msgctxt ""
-"01030200.xhp\n"
+"03090102.xhp\n"
"tit\n"
"help.text"
-msgid "The Basic Editor"
-msgstr "Bu`uura gulaalaa"
+msgid "Select...Case Statement [Runtime]"
+msgstr "Qub-hima...fili[Runtime]"
-#: 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>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>"
+msgid "<bookmark_value>Select...Case statement</bookmark_value><bookmark_value>Case statement</bookmark_value>"
+msgstr "<bookmark_value>Qub-hima...fili</bookmark_value><bookmark_value>Qub-hima</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=\"The Basic Editor\">Gulaalaa bu`uuraa</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 "Gulaalaan bu`uuraa yeroo galmee barruu keessaa hojjetan fankishinii gulaali durtii siniif kenna. Fankishinii baafata <emph>Gulaali</emph> (Cut, Delete, Paste), dandeetii barruu jijjiiruu furtuu wajjin filuu, akasumas fankishinii iddoo qaree (for example, moving from word to word with <switchinline select=\"sys\"><caseinline select=\"MAC\">Dirqala </caseinline><defaultinline>Ctrl</defaultinline></switchinline> and the arrow keys) ni deggara."
+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 Statement [Runtime]\">Qub-hima...fili [Runtime]</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 "Sararootni dheeraan bakkaa fi fakkaattoo jalamuraa akka sarara fakkaatoota dhumaa lamaatti iddoo adda addaatti saagamuudhaan addaba`u. Kunis sarara tokko sarara itti aanutii fi sarara loojikii faana walqunnamsiisa.(If \"Option Compatible\" is used in the same Basic module, the line continuation feature is also valid for comment lines.)"
+msgid "Defines one or more statement blocks depending on the value of an expression."
+msgstr "Garoota hima tokkoo ykn bay'ee gatii himannoo irratti hundaa'ii ibsi."
-#: 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 "Osoo sajoo <emph>BASIC Kaasi</emph> kabala <emph>Maakroo</emph> irratti dhiibdan, sagantaan hojjetamu gulaalaa Basic sarara duraa irratti calqaba. Sagantaan Sub yookiin Function duraa ni hojjeta itti aansuudhaan sagantaan hojii ni dhaabata. Hojii sagantaa irratti \"Sub Main\"nuun adeemsa hin fudhatu."
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 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 "Yeroo jalqaba IDE bantu lakkaddaa Basic sararoota Sub Main fi End Sub gidduu saagi.Filmaataaf,sararoota hunda haqi itti aansuudhaan lakkaddaa Basic mataakee saagi."
+msgid "Select Case condition Case expression Statement Block [Case expression2 Statement Block][Case Else] Statement Block End Select"
+msgstr "Select Case condition Case expression Statement Block [Case expression2 Statement Block][Case Else] Statement Block 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 "Naanna`iinsa projektii kessaa"
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 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 "Manbarroo Tarree"
+msgid "<emph>Condition:</emph> Any expression that controls if the statement block that follows the respective Case clause is executed."
+msgstr "<emph>Haala:</emph> Himannoo kamuu yoo gareen himaa haraggoo duuka bu'e raawwatu too'aatuudha."
-#: 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 "Manbarroo gulaalaa keessaatti gara kamshaa bitaan fe`uuf tarree <emph>Manbarroo</emph> keessaa manbarroo fili."
+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>Himannoo:</emph>Himannoon kamuu gosa himannoo haalaa waliin kan walgituudha. yoo <emph>Haalaa</emph> <emph>himannoo</emph> waliin walgite gareen himaa qub-haraggootti aanu ni raawwatu."
-#: 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 "Gulaalee wantaa"
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 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 "Olkaa`uu fi Fe`uu Madda Lakkaddaa Bu`uura"
+msgid "Print \"Number from 1 to 5\""
+msgstr "Print \"Number from 1 to 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 "Barruu faayilii keessaa olkaa`uu fi cirna saganteessuu biraa keessatti alaaguunf lakkaddaa Bu`uuraa olkaa`uun ni danda`ama."
-
-#: 01030200.xhp
-msgctxt ""
-"01030200.xhp\n"
-"par_id3149959\n"
-"25\n"
-"help.text"
-msgid "You cannot save Basic dialogs to a text file."
-msgstr "Barruu faayiliif gulaalee Basic olkaa`uun hin danda`amu."
-
-#: 01030200.xhp
-msgctxt ""
-"01030200.xhp\n"
-"hd_id3149403\n"
-"17\n"
-"help.text"
-msgid "Saving Source Code to a Text File"
-msgstr "Barruu Faayiliif Madda Lakkaaddaa Olkaa`uu"
+msgid "Print \"Number from 6 to 8\""
+msgstr "Print \"Number from 6 to 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 "Akka barruutti gulaalee wanta irraa alerguuf mojuulii barbaaddan filaa."
-
-#: 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 "Sajoo <emph>Madda Olkaa`ii</emph> kamshaa Maakroo keessaa cuuqaasi."
+msgid "Print \"Greater than 8\""
+msgstr "Print \"Greater than 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 "Faayilii olkaa`uuf maqaa faayilii filuudhaan <emph>TOLE</emph> cuuqaasi."
-
-#: 01030200.xhp
-msgctxt ""
-"01030200.xhp\n"
-"hd_id3159264\n"
-"21\n"
-"help.text"
-msgid "Loading Source Code From a Text File"
-msgstr "Faayilii Barruu Keessaa Madda Lakkaaddaa Fe`uu"
-
-#: 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 "Madda lakkaddaa alaaguuf Gulaalee wanta keessaa mojuulii iddoo barbaaddanii filaa."
-
-#: 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 "Lakkaddaa sagantaa saaguuf qaree iddoo barbaadan kaa`aa."
-
-#: 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 "Kamshaa Maakroo keessaa Sajoo <emph>Madda Barruu Saagi</emph> cuuqaasi."
-
-#: 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 "Faayilii barruu madda lakkaddaa ofkeessaa qabu fili itti aansuun <emph>TOLE</emph> cuuqaasi."
-
-#: 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 IDE\">Bu`uura IDE</link>"
+msgid "Print \"Out of range 1 to 10\""
+msgstr "Print \"Out of range 1 to 10\""
-#: 03102000.xhp
+#: 03090103.xhp
msgctxt ""
-"03102000.xhp\n"
+"03090103.xhp\n"
"tit\n"
"help.text"
-msgid "DefVar Statement [Runtime]"
-msgstr "Hima DefVar[Runtime]"
+msgid "IIf Statement [Runtime]"
+msgstr "Hima IIf [Runtime]"
-#: 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>Hima DefVar</bookmark_value>"
+msgid "<bookmark_value>IIf statement</bookmark_value>"
+msgstr "<bookmark_value>Hima IIf </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 Statement [Runtime]\">Hima DefVar [Runtime]</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 Statement [Runtime]\">Hima IIf [Runtime]</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 "yoo arfiin akaakuu labsii ykn jefuraa hin ifteeffamne,akkaataa hangii qubeetiin, akaakuu jijjiiramaa durtii qindeessi."
+msgid "Returns one of two possible function results, depending on the logical value of the evaluated expression."
+msgstr "Gatii Yaayaa himannoo madaalame irratti hundaa'itii, bu'aa faankishinii lamaan danda'amu keessa tokko deebisi."
-#: 03102000.xhp
+#: 03090103.xhp
msgctxt ""
-"03102000.xhp\n"
-"hd_id3154143\n"
+"03090103.xhp\n"
+"hd_id3159413\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasimaa:"
+msgstr "caasimaa:"
-#: 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 "Ulaagaalee:"
-#: 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>Hangiiarfii:</emph> Qubeewwan kan hangii jijjiiramtootaa kan akaakuu deetaa durtii qindeessuu barbaaddu ifteessan."
+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>Himannoo:</emph> Himannoo kamuu kan madaaluu barbaadde.yoo himannoon <emph>Dhugaa</emph> madaalame ,faankishiniin bu'aa himannooDhugaa deebisa, yoo ta'u baate bu'aaa himannooSoba debisa."
-#: 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> Jefuraan kan akaakuu jijjiiramaa durtii qindeessu:"
-
-#: 03102000.xhp
-msgctxt ""
-"03102000.xhp\n"
-"par_id3153524\n"
-"8\n"
-"help.text"
-msgid "<emph>Keyword: </emph>Default variable type"
-msgstr "<emph>Jefuraa: </emph>Akaakuu jijjiiramaa durtii"
-
-#: 03102000.xhp
-msgctxt ""
-"03102000.xhp\n"
-"par_id3150767\n"
-"9\n"
-"help.text"
-msgid "<emph>DefVar:</emph> Variant"
-msgstr "<emph>DefCur:</emph> Addaba'a"
-
-#: 03102000.xhp
-msgctxt ""
-"03102000.xhp\n"
-"hd_id3151041\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Fakkenya:"
+msgid "<emph>ExpressionTrue, ExpressionFalse:</emph> Any expression, one of which will be returned as the function result, depending on the logical evaluation."
+msgstr "<emph>HimannooDhugaa, HimannooSoba:</emph> Himannoo kamuu,tokkoon isaa akka bu'aa faankishiniitti deebi'u, yaayaa madaalli irratti hundaa'a."
-#: 03102000.xhp
-#, fuzzy
+#: 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 "REM hiika huddeelsoo akaakuu jijjiiramaaf:"
+msgid "Loops"
+msgstr "marsoota"
-#: 03102000.xhp
-#, fuzzy
+#: 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 REM vDiv is an implicit variant"
+msgid "<link href=\"text/sbasic/shared/03090200.xhp\" name=\"Loops\">Loops</link>"
+msgstr "<link href=\"text/sbasic/shared/03090200.xhp\" name=\"Loops\">marsoota</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=\"Hello world\""
+msgid "The following statements execute loops."
+msgstr "Himoonni armaan gadii marsoota raawwatu."
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
+"03090201.xhp\n"
"tit\n"
"help.text"
-msgid "Information"
-msgstr "Odeeffannoo"
-
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"hd_id3148550\n"
-"1\n"
-"help.text"
-msgid "Information"
-msgstr "Odeeffannoo"
+msgid "Do...Loop Statement [Runtime]"
+msgstr "Do...Loop Statement [Runtime]"
-#: 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 ""
+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>Hima Do...Loop</bookmark_value><bookmark_value>While; Do loop</bookmark_value><bookmark_value>Until</bookmark_value><bookmark_value>marsoota</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 "Haala walfakaatuun qindaa`ina gitoo biyyaa guyyaa, sa`atii fi sharafa dhangiiwwan irratis ni raawata. Bu`uuri dhangii Lakkadda akkaataa qindaa`ina gitoo biyyaatiin ni hiikama akasumas ni argisiifama."
+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 Statement [Runtime]\">Do...Loop Statement [Runtime]</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 "Gatiin halluu halluuwwan 16 akka armaan gadiiti ibsama:"
+msgid "Repeats the statements between the Do and the Loop statement while the condition is True or until the condition becomes True."
+msgstr "Himoota gidduu Do fi Loop irra deddeebi'i yommuu haalli isaa dhugaa ykn hanga halli isaa dhugaa ta'utti."
-#: 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>Gatii halluu</emph>"
+msgid "Syntax"
+msgstr "Caasimaa:"
-#: 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>Maqaa Halluu</emph>"
+msgid "Do [{While | Until} condition = True]"
+msgstr "Do [{While | Until} condition = 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 "garee himaa"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3155854\n"
+"03090201.xhp\n"
+"par_id3150789\n"
"6\n"
"help.text"
-msgid "Black"
-msgstr "Gurraacha"
+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 "garee himaa"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3154731\n"
+"03090201.xhp\n"
+"par_id3145090\n"
"8\n"
"help.text"
-msgid "Blue"
-msgstr "Cuquliisa"
+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 "or"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3149400\n"
+"03090201.xhp\n"
+"par_id3150503\n"
"10\n"
"help.text"
-msgid "Green"
-msgstr "Magariisa"
+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 "garee himaa"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3153765\n"
+"03090201.xhp\n"
+"par_id3150984\n"
"12\n"
"help.text"
-msgid "Cyan"
-msgstr "Hallataa"
+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 "garee himaa"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3159266\n"
+"03090201.xhp\n"
+"par_id3149235\n"
"14\n"
"help.text"
-msgid "Red"
-msgstr "Diimaa"
+msgid "Loop [{While | Until} condition = True]"
+msgstr "Loop [{While | Until} condition = 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 "Ulaagaalee/miseensota"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3145150\n"
+"03090201.xhp\n"
+"par_id3156344\n"
"16\n"
"help.text"
-msgid "Magenta"
-msgstr "Maagneetaa"
+msgid "<emph>Condition:</emph> A comparison, numeric or string expression, that evaluates either True or False."
+msgstr "<emph>Haala:</emph> Waliin maddalli,lakkofsa ykn himannoo diraa,Dhugaa ykn Soba ta'uu madaalame."
-#: 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>Garee Himaa:</emph> Himoota irra deddeebi'uu barbaadde yommuu ykn hanga haalli isaa dhugaa ta'utti."
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3152778\n"
+"03090201.xhp\n"
+"par_id3150791\n"
"18\n"
"help.text"
-msgid "Yellow"
-msgstr "Keelloo"
+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> himni marsa raawwata hamma ykn hanga halli murtaa'e dhugaa ta'etti.Halli jiraachuu marsa hima <emph>Do</emph> ykn <emph>Loop</emph> tti aanee seenuu qaba. Fakkeenyonni armaan gadii makoota sirrii dha."
-#: 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 "Caasimaa:"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3159239\n"
+"03090201.xhp\n"
+"par_id3145171\n"
"20\n"
"help.text"
-msgid "White"
-msgstr "Adii"
+msgid "Do While condition = True"
+msgstr "Do While condition = 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 "...statement block"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3149817\n"
+"03090201.xhp\n"
+"par_id3125864\n"
"22\n"
"help.text"
-msgid "Gray"
-msgstr "Kajajaa"
-
-#: 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 "Cuquliisa ibsi"
+msgid "The statement block between the Do While and the Loop statements is repeated so long as the condition is true."
+msgstr "hamma haalli isaa dhugaa ta'etti gareen himaa gidduu hima Do While fi Loop irra deddeebi'a."
-#: 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 condition = 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 "Magariisa ibsi"
+msgid "...statement block"
+msgstr "...statement block"
-#: 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 "Hallataa ibsi"
+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 "hamma haalli isaa soba ta'etti gareen himaa gidduu hima Do Until fi Loop irra deddeebi'a."
-#: 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 "Diimaa ibsi"
+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 "...statement block"
-#: 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 "Maagentaa ibsi"
-
-#: 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 condition = 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 "Keelloo ibsi"
+msgid "The statement block between the Do and the Loop statements repeats so long as the condition is true."
+msgstr "hamma haalli isaa dhugaa ta'etti gareen himaa gidduu hima Do fi Loop irra deddeebi'a."
-#: 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 "Dabarsoo adii"
+msgid "...statement block"
+msgstr "...statement block"
-#: 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\">Dogoggora lakkaddoota </variable>"
-
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id315509599\n"
-"help.text"
-msgid "<variable id=\"err1\">1 An exception occurred</variable>"
-msgstr "<variable id=\"err18\">18 Itti fayyadamaan addan citaa </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 Dogoggora caasimaa hinmuurtoofnee </variable>"
+msgid "Loop Until condition = True"
+msgstr "Loop Until condition = 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 Deebii Gosuubii malee </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=\"err14\">14 Ulaagaa fashalaa </variable>"
+msgid "The statement block between the Do and the Loop statements repeats until the condition is true."
+msgstr "Hanga haalli isaa dhugaa ta'etti gareen himaa gidduu hima Do fi Loop irra deddeebi'a."
-#: 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 Ejjatoo fashalaan waamu </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 "Hima <emph>Exit Do</emph> fayyadami hala marsa isaa malee xumuruuf. Hima kana iddo barbaadde hima <emph>Do</emph>...<emph>Loop</emph> keessatti ida'uu dandeessa. Itti dabaltees haala bahiinsa ibsuu dandeessa caasaa <emph>If...Then</emph> akka armaan gadiitti fayyadamuun."
-#: 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 Guutinsa darbaa </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 Qaabataa keessaa </variable>"
+msgid "statements"
+msgstr "himoota"
-#: 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 Arree duraan qophaa`e </variable>"
+msgid "If condition = True Then Exit Do"
+msgstr "If condition = 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 Hammanga keessaa mallatto-jalee </variable>"
+msgid "statements"
+msgstr "himoota"
-#: 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 Hiika jalteenya </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 Zeeroof hiruu </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 Gegeeddaramaa ibsa hin qabne </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 Akaakuu wal hin madaale </variable>"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3151197\n"
-"50\n"
+"03090202.xhp\n"
+"tit\n"
"help.text"
-msgid "<variable id=\"err14\">14 Invalid parameter</variable>"
-msgstr "<variable id=\"err14\">14 Ulaagaa fashalaa </variable>"
+msgid "For...Next Statement [Runtime]"
+msgstr "For...Next Statement [Runtime]"
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3154710\n"
-"51\n"
+"03090202.xhp\n"
+"bm_id3149205\n"
"help.text"
-msgid "<variable id=\"err18\">18 Process interrupted by user</variable>"
-msgstr "<variable id=\"err18\">18 Itti fayyadamaan addan citaa </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>hima For</bookmark_value><bookmark_value>hima To </bookmark_value><bookmark_value>hima Step </bookmark_value><bookmark_value>Next statement</bookmark_value>"
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3147504\n"
-"52\n"
+"03090202.xhp\n"
+"hd_id3149205\n"
+"1\n"
"help.text"
-msgid "<variable id=\"err20\">20 Resume without error</variable>"
-msgstr "<variable id=\"err20\">20 Dogoggora qabatamaa malee </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 Statement [Runtime]\">Hima For...Next [Runtime]</link>"
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3145319\n"
-"53\n"
+"03090202.xhp\n"
+"par_id3143267\n"
+"2\n"
"help.text"
-msgid "<variable id=\"err28\">28 Not enough stack memory</variable>"
-msgstr "<variable id=\"err28\">28 Tartiibaa duwwaanaa keessaa </variable>"
+msgid "Repeats the statements between the For...Next block a specified number of times."
+msgstr "Himoota giduu garee For...Next yeroo ifteefameef irra deddeebi'i."
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3146110\n"
-"54\n"
+"03090202.xhp\n"
+"hd_id3156153\n"
+"3\n"
"help.text"
-msgid "<variable id=\"err35\">35 Sub-procedure or function procedure not defined</variable>"
-msgstr "<variable id=\"err35\">35 Cita yookiin fankishinii hin ibsamne </variable>"
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3147246\n"
-"55\n"
+"03090202.xhp\n"
+"par_id3148473\n"
+"4\n"
"help.text"
-msgid "<variable id=\"err48\">48 Error loading DLL file</variable>"
-msgstr "<variable id=\"err48\">48 Dogoggora buustu DLL keessattii </variable>"
+msgid "For counter=start To end [Step step]"
+msgstr "For counter=start To end [Step step]"
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3146101\n"
-"56\n"
+"03090202.xhp\n"
+"par_id3156024\n"
+"5\n"
"help.text"
-msgid "<variable id=\"err49\">49 Wrong DLL call convention</variable>"
-msgstr "<variable id=\"err49\">49 waamicha walii galtee DLL yaraa </variable>"
+msgid "statement block"
+msgstr "garee himaa"
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3153957\n"
-"57\n"
+"03090202.xhp\n"
+"par_id3146796\n"
+"6\n"
"help.text"
-msgid "<variable id=\"err51\">51 Internal error</variable>"
-msgstr "<variable id=\"err51\">51 Dogoggora keesaa </variable>"
+msgid "[Exit For]"
+msgstr "[Exit For]"
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3154404\n"
-"58\n"
+"03090202.xhp\n"
+"par_id3159414\n"
+"7\n"
"help.text"
-msgid "<variable id=\"err52\">52 Invalid file name or file number</variable>"
-msgstr "<variable id=\"err52\">52 Maqaa faayiylii yookiin lakkoofsa yaraa </variable>"
+msgid "statement block"
+msgstr "garee himaa"
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3151338\n"
-"59\n"
+"03090202.xhp\n"
+"par_id3153897\n"
+"8\n"
"help.text"
-msgid "<variable id=\"err53\">53 File not found</variable>"
-msgstr "<variable id=\"err53\">53 Faayilii hin argamne </variable>"
+msgid "Next [counter]"
+msgstr "Next [counter]"
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3147298\n"
-"60\n"
+"03090202.xhp\n"
+"hd_id3150400\n"
+"9\n"
"help.text"
-msgid "<variable id=\"err54\">54 Incorrect file mode</variable>"
-msgstr "<variable id=\"err54\">54 Haalata faayilii yaraa </variable>"
+msgid "Variables:"
+msgstr "Jijjiiramoota:"
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3148747\n"
-"61\n"
+"03090202.xhp\n"
+"par_id3150358\n"
+"10\n"
"help.text"
-msgid "<variable id=\"err55\">55 File already open</variable>"
-msgstr "<variable id=\"err55\">55 Faayilii dura baname </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>Lakkaa'aa:</emph> Marsaa lakkaa'aan gatii jalqabarratti gara harka mirgaa mallattoo walqixaa kaa'a. Lakkofsa jijjiramtootaa qofatu sirriidha. Marsaa lakkaa'aan ni dabala ykn ni hir'ata akkaataa jijjiiramaa Step hanga End'n darbutti."
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3145233\n"
-"62\n"
+"03090202.xhp\n"
+"par_id3152455\n"
+"11\n"
"help.text"
-msgid "<variable id=\"err57\">57 Device I/O error</variable>"
-msgstr "<variable id=\"err57\">57 Dogoggora mi`a I/O </variable>"
+msgid "<emph>Start:</emph> Numeric variable that defines the initial value at the beginning of the loop."
+msgstr "<emph>Jalqaba:</emph> Lakkoofsi jijjiiramaan gatii jalqabaa ka'uumsa marsaa irratt kan ibsuu dha."
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3156399\n"
-"63\n"
+"03090202.xhp\n"
+"par_id3151043\n"
+"12\n"
"help.text"
-msgid "<variable id=\"err58\">58 File already exists</variable>"
-msgstr "<variable id=\"err58\">58 Faayilii duraan jiru </variable>"
+msgid "<emph>End:</emph> Numeric variable that defines the final value at the end of the loop."
+msgstr "<emph>End:</emph>Lakkoofsi jijjiiramaan gatii xumuraa marsaa dhumaa irratti kan ibsuu dha."
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3149324\n"
-"64\n"
+"03090202.xhp\n"
+"par_id3156281\n"
+"13\n"
"help.text"
-msgid "<variable id=\"err59\">59 Incorrect record length</variable>"
-msgstr "<variable id=\"err59\">59 Dheerina kuusaa yaraa </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>Step:</emph>Gatii akkataa dabaluu ykn hir'isuu lakkaa'aa marsaa qindeessi. Yoo Step'n hin ibsamne,lakkaa'aan marsa 1'n dabala.kan keessatti, End'n irra guddaa Start ta'uu qaba. Yoo lakkaa'aa hir'isuu barbaadde,End'n irra xiqqaa Start ta'uu,fi Step,n gatii nagatiivii qabaachuu qaba."
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3147409\n"
-"65\n"
+"03090202.xhp\n"
+"par_id3154684\n"
+"14\n"
"help.text"
-msgid "<variable id=\"err61\">61 Disk or hard drive full</variable>"
-msgstr "<variable id=\"err61\">61 Baxxee guutuu </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 "marsaan <emph>For...Next</emph> himoota hundaa marsaa keessaa yeroo ta'eef irra deddeebi'a ulaagaalee ibsamaniin."
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3149146\n"
-"66\n"
+"03090202.xhp\n"
+"par_id3147287\n"
+"15\n"
"help.text"
-msgid "<variable id=\"err62\">62 Reading exceeds EOF</variable>"
-msgstr "<variable id=\"err67\">67 Faayiloota hedduu </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 "Akkuma lakka'aa jijjiiramaan hir'ateen,$[officename] Basic gatiin dhumaa qaqabuu isaa mirkaneessa.Akkuma lakkaa'aan gatii dhumaa dabarseen,marsaan ofumaan dhuma."
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3150456\n"
-"67\n"
+"03090202.xhp\n"
+"par_id3159154\n"
+"16\n"
"help.text"
-msgid "<variable id=\"err63\">63 Incorrect record number</variable>"
-msgstr "<variable id=\"err63\">63 Kuusaaa lakkoofsa yaraa </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 "Hima <emph>For...Next</emph>wal keessa seensisuun ni danda'ama.Yoo jijjiiramaa hima <emph>Next</emph> aanutti ibsuu baatte,<emph>Next</emph>ofumaan hima<emph>For</emph>yeroo baay'ee dhihoo ta'e barbaada."
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3146883\n"
-"68\n"
+"03090202.xhp\n"
+"par_id3155306\n"
+"17\n"
"help.text"
-msgid "<variable id=\"err67\">67 Too many files</variable>"
-msgstr "<variable id=\"err67\">67 Faayiloota hedduu </variable>"
+msgid "If you specify an increment of 0, the statements between <emph>For</emph> and <emph>Next</emph> are repeated continuously."
+msgstr "Yoo daballii 0 ibsite,himoonni gidduu <emph>For</emph> and <emph>Next</emph> itti fufuun irra deddeebi'u."
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3146818\n"
-"69\n"
+"03090202.xhp\n"
+"par_id3155854\n"
+"18\n"
"help.text"
-msgid "<variable id=\"err68\">68 Device not available</variable>"
-msgstr "<variable id=\"err68\">68 mi`a hin jire </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 "yommuu lakkaa'aa jijjiiramaan gad laakkaa'u,$[officename] Basic ol yaa'insa ykn gad yaa'insa mirkaneessa.yommuu lakkaa'aan End(gatii Step poozatiivii)caale ykn End(gatii Step nagatiivii)xiqqaate marsaan ni xumurama."
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3145225\n"
-"70\n"
+"03090202.xhp\n"
+"par_id3145273\n"
+"19\n"
"help.text"
-msgid "<variable id=\"err70\">70 Access denied</variable>"
-msgstr "<variable id=\"err70\">70 heeyyamni didameera </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 "Hma <emph>Exit For</emph> fayyadami osoo hin beekin marsaa keessaa bahuuf.Himni kun dirqama marsaa <emph>For...Next</emph> keessa ta'u qaba.Hima <emph>If...Then</emph> fayyadami haala bahiinsa mirkaneessuuf akka asii gadiitti."
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3150372\n"
-"71\n"
+"03090202.xhp\n"
+"par_id3153190\n"
+"20\n"
"help.text"
-msgid "<variable id=\"err71\">71 Disk not ready</variable>"
-msgstr "<variable id=\"err71\">71 Baxxeen qophaa`aa miti </variable>"
+msgid "For..."
+msgstr "For..."
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3148894\n"
-"72\n"
+"03090202.xhp\n"
+"par_id3149482\n"
+"21\n"
"help.text"
-msgid "<variable id=\"err73\">73 Not implemented</variable>"
-msgstr "<variable id=\"err73\">73 Kolatiin hin raawwatamu </variable>"
+msgid "statements"
+msgstr "himoota"
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3152981\n"
-"73\n"
+"03090202.xhp\n"
+"par_id3147124\n"
+"22\n"
"help.text"
-msgid "<variable id=\"err74\">74 Renaming on different drives impossible</variable>"
-msgstr "<variable id=\"err74\">74 Ooftuu adda addaa faana jijjiiraan maqaa hin jiru </variable>"
+msgid "If condition = True Then Exit For"
+msgstr "If condition = True Then Exit For"
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3149355\n"
-"74\n"
+"03090202.xhp\n"
+"par_id3153159\n"
+"23\n"
"help.text"
-msgid "<variable id=\"err75\">75 Path/file access error</variable>"
-msgstr "<variable id=\"err75\">75 Dogoggora gahii xurree/faayilii </variable>"
+msgid "statements"
+msgstr "himoota"
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3150477\n"
-"75\n"
+"03090202.xhp\n"
+"par_id3154096\n"
+"24\n"
"help.text"
-msgid "<variable id=\"err76\">76 Path not found</variable>"
-msgstr "<variable id=\"err76\">76 Xurree hin argamne </variable>"
+msgid "Next"
+msgstr "Kan itti aanu"
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3154678\n"
-"76\n"
+"03090202.xhp\n"
+"par_id3156286\n"
+"25\n"
"help.text"
-msgid "<variable id=\"err91\">91 Object variable not set</variable>"
-msgstr "<variable id=\"err91\">Jijjiiramii Wantaa 91 hinqindoofne</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 "hub:Qooda marsaa<emph>For...Next</emph> ,yoo osoo hin beekin marsaa <emph>Exit For</emph>wajjin keessaa baate,marsaa tokkoo qofaatu baha."
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3149890\n"
-"77\n"
+"03090202.xhp\n"
+"hd_id3148457\n"
+"26\n"
"help.text"
-msgid "<variable id=\"err93\">93 Invalid string pattern</variable>"
-msgstr "<variable id=\"err93\">93 Diraa sarxaa fashalaa </variable>"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3146942\n"
-"78\n"
+"03090202.xhp\n"
+"par_id3151074\n"
+"27\n"
"help.text"
-msgid "<variable id=\"err94\">94 Use of zero not permitted</variable>"
-msgstr "<variable id=\"err4\">4 Eegaltii reedoo irraa </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 "Fakkeenyi armaan gadii diraa waraantoo miseensota 10 qabu tartiiban kaa'uuf marsaa walkeessa galan lama fayyadama.sun jalqaba baafata baay'een guutama."
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469429\n"
+"03090202.xhp\n"
+"par_id3155767\n"
+"42\n"
"help.text"
-msgid "<variable id=\"err250\">250 DDE Error</variable>"
-msgstr "<variable id=\"err57\">57 Dogoggora mi`a I/O </variable>"
+msgid "sEntry(0) = \"Jerry\""
+msgstr "sEntry(0) = \"Jerry\""
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469428\n"
+"03090202.xhp\n"
+"par_id3153711\n"
+"33\n"
"help.text"
-msgid "<variable id=\"err280\">280 Awaiting response to DDE connection</variable>"
-msgstr ""
+msgid "sEntry(1) = \"Patty\""
+msgstr "sEntry(1) = \"Patty\""
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469427\n"
+"03090202.xhp\n"
+"par_id3148993\n"
+"34\n"
"help.text"
-msgid "<variable id=\"err281\">281 No DDE channels available</variable>"
-msgstr "<variable id=\"err68\">68 mi`a hin jire </variable>"
+msgid "sEntry(2) = \"Kurt\""
+msgstr "sEntry(2) = \"Kurt\""
-#: 00000003.xhp
-#, fuzzy
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469426\n"
+"03090202.xhp\n"
+"par_id3156382\n"
+"35\n"
"help.text"
-msgid "<variable id=\"err282\">282 No application responded to DDE connect initiation</variable>"
-msgstr "<variable id=\"err425\">425 Gargaaramuu fashala wantaa </variable>"
+msgid "sEntry(3) = \"Thomas\""
+msgstr "sEntry(3) = \"Thomas\""
-#: 00000003.xhp
-#, fuzzy
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469425\n"
+"03090202.xhp\n"
+"par_id3155174\n"
+"36\n"
"help.text"
-msgid "<variable id=\"err283\">283 Too many applications responded to DDE connect initiation</variable>"
-msgstr "<variable id=\"err425\">425 Gargaaramuu fashala wantaa </variable>"
+msgid "sEntry(4) = \"Michael\""
+msgstr "sEntry(4) = \"Michael\""
-#: 00000003.xhp
-#, fuzzy
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469424\n"
+"03090202.xhp\n"
+"par_id3166448\n"
+"37\n"
"help.text"
-msgid "<variable id=\"err284\">284 DDE channel locked</variable>"
-msgstr "<variable id=\"err28\">28 Tartiibaa duwwaanaa keessaa </variable>"
+msgid "sEntry(5) = \"David\""
+msgstr "sEntry(5) = \"David\""
-#: 00000003.xhp
-#, fuzzy
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469423\n"
+"03090202.xhp\n"
+"par_id3149255\n"
+"38\n"
"help.text"
-msgid "<variable id=\"err285\">285 External application cannot execute DDE operation</variable>"
-msgstr "<variable id=\"err451\">451 Wanti walitti-qabiisa miti </variable>"
+msgid "sEntry(6) = \"Cathy\""
+msgstr "sEntry(6) = \"Cathy\""
-#: 00000003.xhp
-#, fuzzy
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469422\n"
+"03090202.xhp\n"
+"par_id3149565\n"
+"39\n"
"help.text"
-msgid "<variable id=\"err286\">286 Timeout while waiting for DDE response</variable>"
-msgstr "<variable id=\"err28\">28 Tartiibaa duwwaanaa keessaa </variable>"
+msgid "sEntry(7) = \"Susie\""
+msgstr "sEntry(7) = \"Susie\""
-#: 00000003.xhp
-#, fuzzy
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469421\n"
+"03090202.xhp\n"
+"par_id3145148\n"
+"40\n"
"help.text"
-msgid "<variable id=\"err287\">287 user pressed ESCAPE during DDE operation</variable>"
-msgstr "<variable id=\"err8\">8 Arree duraan qophaa`e </variable>"
+msgid "sEntry(8) = \"Edward\""
+msgstr "sEntry(8) = \"Edward\""
-#: 00000003.xhp
-#, fuzzy
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469420\n"
+"03090202.xhp\n"
+"par_id3145229\n"
+"41\n"
"help.text"
-msgid "<variable id=\"err288\">288 External application busy</variable>"
-msgstr "<variable id=\"err51\">51 Dogoggora keesaa </variable>"
+msgid "sEntry(9) = \"Christine\""
+msgstr "sEntry(9) = \"Christine\""
-#: 00000003.xhp
-#, fuzzy
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469419\n"
+"03090203.xhp\n"
+"tit\n"
"help.text"
-msgid "<variable id=\"err289\">289 DDE operation without data</variable>"
-msgstr "<variable id=\"err3\">3 Deebii Gosuubii malee </variable>"
+msgid "While...Wend Statement[Runtime]"
+msgstr "Hima While...Wend [Runtime]"
-#: 00000003.xhp
-#, fuzzy
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469418\n"
+"03090203.xhp\n"
+"bm_id3150400\n"
"help.text"
-msgid "<variable id=\"err290\">290 Data are in wrong format</variable>"
-msgstr "<variable id=\"err10\">10 Hiika jalteenya </variable>"
+msgid "<bookmark_value>While;While...Wend loop</bookmark_value>"
+msgstr "<bookmark_value>While;marsaa While...Wend </bookmark_value>"
-#: 00000003.xhp
-#, fuzzy
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469417\n"
+"03090203.xhp\n"
+"hd_id3150400\n"
+"1\n"
"help.text"
-msgid "<variable id=\"err291\">291 External application has been terminated</variable>"
-msgstr "<variable id=\"err93\">93 Diraa sarxaa fashalaa </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 Statement[Runtime]\">Hima While...Wend[Runtime]</link>"
-#: 00000003.xhp
-#, fuzzy
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469416\n"
+"03090203.xhp\n"
+"par_id3151211\n"
+"2\n"
"help.text"
-msgid "<variable id=\"err292\">292 DDE connection interrupted or modified</variable>"
-msgstr "<variable id=\"err18\">18 Itti fayyadamaan addan citaa </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 "yoo sagantaan hima While of keessaatti qabate, haalicha mirkaneessa.yoo haalli soba ta'e, sagantaan kallattiin hima Wend duuka itti fufa. Yoo haallichi Dhugaa ta'e, marsaan hanga sagantaan Wend barbaaduu fi gara hima <emph> While </emph> deebi'utti raawwata. Yoo haallichi ammas dhugaa ta'e, marsaan irra deebi'e raawwata."
-#: 00000003.xhp
-#, fuzzy
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469415\n"
+"03090203.xhp\n"
+"par_id3151041\n"
+"3\n"
"help.text"
-msgid "<variable id=\"err293\">293 DDE method invoked with no channel open</variable>"
-msgstr "<variable id=\"err423\">423 Amala yookiin tooftaa hin argamne </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 "Akka hima <link href=\"text/sbasic/shared/03090201.xhp\" name=\"Do...Loop\">Do...Loop</link>, <emph>While...Wend</emph> marsaa waliin <link href=\"text/sbasic/shared/03090412.xhp\" name=\"Exit\">Exit</link> balleessuu hin dandeessu. While...Wend marsaa waliin hin baasin <link href=\"text/sbasic/shared/03090302.xhp\" name=\"GoTo\">GoTo</link>,kun ka'uumsa dogongora sa'aa darbee taasisa."
-#: 00000003.xhp
-#, fuzzy
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469414\n"
+"03090203.xhp\n"
+"par_id3145172\n"
+"4\n"
"help.text"
-msgid "<variable id=\"err294\">294 Invalid DDE link format</variable>"
-msgstr "<variable id=\"err460\">460 Dhangii gabatee fashalaat </variable>"
+msgid "A Do...Loop is more flexible than a While...Wend."
+msgstr "A Do...Loop is more flexible than a While...Wend."
-#: 00000003.xhp
-#, fuzzy
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469413\n"
+"03090203.xhp\n"
+"hd_id3155133\n"
+"5\n"
"help.text"
-msgid "<variable id=\"err295\">295 DDE message has been lost</variable>"
-msgstr "<variable id=\"err55\">55 Faayilii dura baname </variable>"
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 00000003.xhp
-#, fuzzy
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469412\n"
+"03090203.xhp\n"
+"par_id3147288\n"
+"6\n"
"help.text"
-msgid "<variable id=\"err296\">296 Paste link already performed</variable>"
-msgstr "<variable id=\"err76\">76 Xurree hin argamne </variable>"
+msgid "While Condition [Statement] Wend"
+msgstr "While Condition [Statement] Wend"
-#: 00000003.xhp
-#, fuzzy
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469411\n"
+"03090203.xhp\n"
+"hd_id3153139\n"
+"7\n"
"help.text"
-msgid "<variable id=\"err297\">297 Link mode cannot be set due to invalid link topic</variable>"
-msgstr "<variable id=\"err71\">71 Baxxeen qophaa`aa miti </variable>"
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 00000003.xhp
-#, fuzzy
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469410\n"
+"03090203.xhp\n"
+"par_id3159153\n"
+"8\n"
"help.text"
-msgid "<variable id=\"err298\">298 DDE requires the DDEML.DLL file</variable>"
-msgstr "<variable id=\"err424\">424 Wanta barbaadame </variable>"
+msgid "Sub ExampleWhileWend"
+msgstr "Sub ExampleWhileWend"
-#: 00000003.xhp
-#, fuzzy
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3150028\n"
-"79\n"
+"03090203.xhp\n"
+"par_id3151114\n"
+"9\n"
"help.text"
-msgid "<variable id=\"err323\">323 Module cannot be loaded; invalid format</variable>"
-msgstr "<variable id=\"err323\">323 Mojuulii fe`uu hin dandeesu </variable>"
+msgid "Dim stext As String"
+msgstr "Dim stext As String"
-#: 00000003.xhp
-#, fuzzy
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3148434\n"
-"80\n"
+"03090203.xhp\n"
+"par_id3153143\n"
+"10\n"
"help.text"
-msgid "<variable id=\"err341\">341 Invalid object index</variable>"
-msgstr "<variable id=\"err341\">341 Fashala kasaa wantaa </variable>"
+msgid "Dim iRun As Integer"
+msgstr "Dim iRun As Integer"
-#: 00000003.xhp
-#, fuzzy
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3143219\n"
-"81\n"
+"03090203.xhp\n"
+"par_id3155306\n"
+"11\n"
"help.text"
-msgid "<variable id=\"err366\">366 Object is not available</variable>"
-msgstr "<variable id=\"err68\">68 mi`a hin jire </variable>"
+msgid "sText =\"This Is a short text\""
+msgstr "sText =\"This is a short text\""
-#: 00000003.xhp
-#, fuzzy
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3144744\n"
-"82\n"
+"03090203.xhp\n"
+"par_id3154011\n"
+"12\n"
"help.text"
-msgid "<variable id=\"err380\">380 Incorrect property value</variable>"
-msgstr "<variable id=\"err380\">380 Gatii amala yaraa </variable>"
+msgid "iRun = 1"
+msgstr "iRun = 1"
-#: 00000003.xhp
-#, fuzzy
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3147420\n"
-"83\n"
+"03090203.xhp\n"
+"par_id3147215\n"
+"13\n"
"help.text"
-msgid "<variable id=\"err382\">382 This property is read-only</variable>"
-msgstr "<variable id=\"err382\">382 Amala dubisuu qofaa </variable>"
+msgid "While iRun < Len(sText)"
+msgstr "while iRun < Len(sText)"
-#: 00000003.xhp
-#, fuzzy
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3147472\n"
-"84\n"
+"03090203.xhp\n"
+"par_id3147427\n"
+"14\n"
"help.text"
-msgid "<variable id=\"err394\">394 This property is write-only</variable>"
-msgstr "<variable id=\"err394\">394 Amala barreessuu qofaaa </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
-#, fuzzy
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3148583\n"
-"85\n"
+"03090203.xhp\n"
+"par_id3149665\n"
+"15\n"
"help.text"
-msgid "<variable id=\"err420\">420 Invalid object reference</variable>"
-msgstr "<variable id=\"err420\">420 Barreefama wanta fashalaa </variable>"
+msgid "iRun = iRun + 1"
+msgstr "iRun = iRun + 1"
-#: 00000003.xhp
-#, fuzzy
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3153329\n"
-"86\n"
+"03090203.xhp\n"
+"par_id3152939\n"
+"16\n"
"help.text"
-msgid "<variable id=\"err423\">423 Property or method not found</variable>"
-msgstr "<variable id=\"err423\">423 Amala yookiin tooftaa hin argamne </variable>"
+msgid "Wend"
+msgstr "Wend"
-#: 00000003.xhp
-#, fuzzy
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3148738\n"
-"87\n"
+"03090203.xhp\n"
+"par_id3153189\n"
+"17\n"
"help.text"
-msgid "<variable id=\"err424\">424 Object required</variable>"
-msgstr "<variable id=\"err424\">424 Wanta barbaadame </variable>"
+msgid "MsgBox sText,0,\"Text encoded\""
+msgstr "MsgBox sText,0,\"Text encoded\""
-#: 00000003.xhp
-#, fuzzy
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3159084\n"
-"88\n"
+"03090203.xhp\n"
+"par_id3145251\n"
+"18\n"
"help.text"
-msgid "<variable id=\"err425\">425 Invalid use of an object</variable>"
-msgstr "<variable id=\"err425\">425 Gargaaramuu fashala wantaa </variable>"
+msgid "End Sub"
+msgstr "End Sub"
-#: 00000003.xhp
-#, fuzzy
+#: 03090300.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3146806\n"
-"89\n"
+"03090300.xhp\n"
+"tit\n"
"help.text"
-msgid "<variable id=\"err430\">430 OLE Automation is not supported by this object</variable>"
-msgstr "<variable id=\"err440\">440 Dogoggora OLE offiin hojjachiisaa </variable>"
+msgid "Jumps"
+msgstr "Utaali"
-#: 00000003.xhp
-#, fuzzy
+#: 03090300.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3146130\n"
-"90\n"
+"03090300.xhp\n"
+"hd_id3151262\n"
+"1\n"
"help.text"
-msgid "<variable id=\"err438\">438 This property or method is not supported by the object</variable>"
-msgstr "<variable id=\"err423\">423 Amala yookiin tooftaa hin argamne </variable>"
+msgid "<link href=\"text/sbasic/shared/03090300.xhp\" name=\"Jumps\">Jumps</link>"
+msgstr "<link href=\"text/sbasic/shared/03090300.xhp\" name=\"Jumps\">Utaali</link>"
-#: 00000003.xhp
-#, fuzzy
+#: 03090300.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3154374\n"
-"91\n"
+"03090300.xhp\n"
+"par_id3148983\n"
+"2\n"
"help.text"
-msgid "<variable id=\"err440\">440 OLE automation error</variable>"
-msgstr "<variable id=\"err440\">440 Dogoggora OLE offiin hojjachiisaa </variable>"
+msgid "The following statements execute jumps."
+msgstr "Himoonni armaan gadii utaalcha raawwatu."
-#: 00000003.xhp
-#, fuzzy
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3149685\n"
-"92\n"
+"03090301.xhp\n"
+"tit\n"
"help.text"
-msgid "<variable id=\"err445\">445 This action is not supported by given object</variable>"
-msgstr "<variable id=\"err445\">445 Wanti gocha hin deggaru </variable>"
+msgid "GoSub...Return Statement [Runtime]"
+msgstr "Hima GoSub...Return [Runtime]"
-#: 00000003.xhp
-#, fuzzy
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3150282\n"
-"93\n"
+"03090301.xhp\n"
+"bm_id3147242\n"
"help.text"
-msgid "<variable id=\"err446\">446 Named arguments are not supported by given object</variable>"
-msgstr "<variable id=\"err448\">448 morkallaan moggaafamaa hin jiru </variable>"
+msgid "<bookmark_value>GoSub...Return statement</bookmark_value>"
+msgstr "<bookmark_value>Hima GoSub...Return </bookmark_value>"
-#: 00000003.xhp
-#, fuzzy
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3150142\n"
-"94\n"
+"03090301.xhp\n"
+"hd_id3147242\n"
+"1\n"
"help.text"
-msgid "<variable id=\"err447\">447 The current locale setting is not supported by the given object</variable>"
-msgstr "<variable id=\"err445\">445 Wanti gocha hin deggaru </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 Statement [Runtime]\">Hima GoSub...Return [Runtime]</link>"
-#: 00000003.xhp
-#, fuzzy
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3152771\n"
-"95\n"
+"03090301.xhp\n"
+"par_id3145316\n"
+"2\n"
"help.text"
-msgid "<variable id=\"err448\">448 Named argument not found</variable>"
-msgstr "<variable id=\"err448\">448 morkallaan moggaafamaa hin jiru </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 "sagantaa xiqqaa kan asxaan agarsiifame sagantaa xiqqaa ykn faankishiniini irraa waami. Himoonni asxatti aanan kan raawwatu hanga himni itti aanu deebi'utti. Isaan booda,sagantaan hima hima <emph>GoSub </emph>aanu waliin itti fufa."
-#: 00000003.xhp
-#, fuzzy
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3145145\n"
-"96\n"
+"03090301.xhp\n"
+"hd_id3145609\n"
+"3\n"
"help.text"
-msgid "<variable id=\"err449\">449 Argument is not optional</variable>"
-msgstr "<variable id=\"err449\">449 Morkallaan dirqalee miti </variable>"
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 00000003.xhp
-#, fuzzy
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3154399\n"
-"97\n"
+"03090301.xhp\n"
+"par_id3145069\n"
+"4\n"
"help.text"
-msgid "<variable id=\"err450\">450 Invalid number of arguments</variable>"
-msgstr "<variable id=\"err450\">450 Dogoggora lakkofsa morkallootaa </variable>"
+msgid "see Parameters"
+msgstr "Ulaagaalee ilaali"
-#: 00000003.xhp
-#, fuzzy
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3146137\n"
-"98\n"
+"03090301.xhp\n"
+"hd_id3147265\n"
+"5\n"
"help.text"
-msgid "<variable id=\"err451\">451 Object is not a list</variable>"
-msgstr "<variable id=\"err451\">451 Wanti walitti-qabiisa miti </variable>"
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 00000003.xhp
-#, fuzzy
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3149507\n"
-"99\n"
+"03090301.xhp\n"
+"par_id3148664\n"
+"6\n"
"help.text"
-msgid "<variable id=\"err452\">452 Invalid ordinal number</variable>"
-msgstr "<variable id=\"err452\">452 Sadarkaa fashalaa </variable>"
+msgid "Sub/Function"
+msgstr "Sub/Function"
-#: 00000003.xhp
-#, fuzzy
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3154566\n"
-"100\n"
+"03090301.xhp\n"
+"par_id3150400\n"
+"7\n"
"help.text"
-msgid "<variable id=\"err453\">453 Specified DLL function not found</variable>"
-msgstr "<variable id=\"err453\">453 Fankishiniin DLL ifteessamaan hin argamu </variable>"
+msgid "statement block"
+msgstr "garee himaa"
-#: 00000003.xhp
-#, fuzzy
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3145595\n"
-"101\n"
+"03090301.xhp\n"
+"par_id3154140\n"
+"8\n"
"help.text"
-msgid "<variable id=\"err460\">460 Invalid clipboard format</variable>"
-msgstr "<variable id=\"err460\">460 Dhangii gabatee fashalaat </variable>"
+msgid "Label"
+msgstr "Moggaasa"
-#: 00000003.xhp
-#, fuzzy
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455951\n"
+"03090301.xhp\n"
+"par_id3150869\n"
+"9\n"
"help.text"
-msgid "<variable id=\"err951\">951 Unexpected symbol:</variable>"
-msgstr "<variable id=\"err51\">51 Dogoggora keesaa </variable>"
+msgid "statement block"
+msgstr "garee himaa"
-#: 00000003.xhp
-#, fuzzy
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455952\n"
+"03090301.xhp\n"
+"par_id3154909\n"
+"10\n"
"help.text"
-msgid "<variable id=\"err952\">952 Expected:</variable>"
-msgstr "<variable id=\"err424\">424 Wanta barbaadame </variable>"
+msgid "GoSub Label"
+msgstr "GoSub Label"
-#: 00000003.xhp
-#, fuzzy
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455953\n"
+"03090301.xhp\n"
+"par_id3153969\n"
+"11\n"
"help.text"
-msgid "<variable id=\"err953\">953 Symbol expected</variable>"
-msgstr "<variable id=\"err53\">53 Faayilii hin argamne </variable>"
+msgid "Exit Sub/Function"
+msgstr "Exit Sub/Function"
-#: 00000003.xhp
-#, fuzzy
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455954\n"
+"03090301.xhp\n"
+"par_id3154685\n"
+"12\n"
"help.text"
-msgid "<variable id=\"err954\">954 Variable expected</variable>"
-msgstr "<variable id=\"err12\">12 Gegeeddaramaa ibsa hin qabne </variable>"
+msgid "Label:"
+msgstr "Asxaa:"
-#: 00000003.xhp
-#, fuzzy
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455955\n"
+"03090301.xhp\n"
+"par_id3145786\n"
+"13\n"
"help.text"
-msgid "<variable id=\"err955\">955 Label expected</variable>"
-msgstr "<variable id=\"err55\">55 Faayilii dura baname </variable>"
+msgid "statement block"
+msgstr "garee himaa"
-#: 00000003.xhp
-#, fuzzy
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455956\n"
+"03090301.xhp\n"
+"par_id3159252\n"
+"14\n"
"help.text"
-msgid "<variable id=\"err956\">956 Value cannot be applied</variable>"
-msgstr "<variable id=\"err53\">53 Faayilii hin argamne </variable>"
+msgid "Return"
+msgstr "deebisi"
-#: 00000003.xhp
-#, fuzzy
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455957\n"
+"03090301.xhp\n"
+"par_id3154321\n"
+"15\n"
"help.text"
-msgid "<variable id=\"err957\">957 Variable already defined</variable>"
-msgstr "<variable id=\"err55\">55 Faayilii dura baname </variable>"
+msgid "End Sub/Function"
+msgstr "End Sub/Function"
-#: 00000003.xhp
-#, fuzzy
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455958\n"
+"03090301.xhp\n"
+"par_id3147318\n"
+"16\n"
"help.text"
-msgid "<variable id=\"err958\">958 Sub procedure or function procedure already defined</variable>"
-msgstr "<variable id=\"err35\">35 Cita yookiin fankishinii hin ibsamne </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 "Himni<emph>GoSub</emph> sagantaa xiqqoo qe'e asxaan sagantaa xiqqoo ykn faankishiniinin agarsiifame waama. Maqaan asxaa tuq-lameen(\":\")dhan dhumuu qaba."
-#: 00000003.xhp
-#, fuzzy
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455959\n"
+"03090301.xhp\n"
+"par_id3153190\n"
+"17\n"
"help.text"
-msgid "<variable id=\"err959\">959 Label already defined</variable>"
-msgstr "<variable id=\"err55\">55 Faayilii dura baname </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 "Yoo sagantaan hima deebii of keessaatti qabu <emph>GoSub</emph>durfamuu baate, $[officename] Basic ergaa dogongoraa deebisa. sagantaan Sub ykn Function dhiisuu dhugoomsuuf osoo hima Return bira hinga'in<emph>Exit Sub</emph> ykn <emph>Exit Function</emph> fayyadami."
-#: 00000003.xhp
-#, fuzzy
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455960\n"
+"03090301.xhp\n"
+"par_id3145799\n"
+"19\n"
"help.text"
-msgid "<variable id=\"err960\">960 Variable not found</variable>"
-msgstr "<variable id=\"err53\">53 Faayilii hin argamne </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 "Fakkeenyi armaan gadii faayidaa <emph>GoSub</emph> and <emph>Return</emph> mul'isa.Kutaa sagantaa al-lama raawwachuun,sagantaan iskuweer ruuttii lakkofsota lamaa kan fayyadamaan itti gale shallaga."
-#: 00000003.xhp
-#, fuzzy
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455961\n"
+"03090301.xhp\n"
+"hd_id3156284\n"
+"20\n"
"help.text"
-msgid "<variable id=\"err961\">961 Array or procedure not found</variable>"
-msgstr "<variable id=\"err76\">76 Xurree hin argamne </variable>"
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 00000003.xhp
-#, fuzzy
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455962\n"
+"03090301.xhp\n"
+"par_id3146970\n"
+"25\n"
"help.text"
-msgid "<variable id=\"err962\">962 Procedure not found</variable>"
-msgstr "<variable id=\"err76\">76 Xurree hin argamne </variable>"
+msgid "iInputa = Int(InputBox$ \"Enter the first number: \",\"NumberInput\"))"
+msgstr "iInputa = Int(InputBox$ \"Enter the first number: \",\"NumberInput\"))"
-#: 00000003.xhp
-#, fuzzy
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455963\n"
+"03090301.xhp\n"
+"par_id3150329\n"
+"26\n"
"help.text"
-msgid "<variable id=\"err963\">963 Label undefined</variable>"
-msgstr "<variable id=\"err12\">12 Gegeeddaramaa ibsa hin qabne </variable>"
+msgid "iInputb = Int(InputBox$ \"Enter the second number: \",\"NumberInput\"))"
+msgstr "iInputb = Int(InputBox$ \"Enter the second number: \",\"NumberInput\"))"
-#: 00000003.xhp
-#, fuzzy
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455964\n"
+"03090301.xhp\n"
+"par_id3154756\n"
+"29\n"
"help.text"
-msgid "<variable id=\"err964\">964 Unknown data type</variable>"
-msgstr "<variable id=\"err6\">6 Guutinsa darbaa </variable>"
+msgid "Print \"The square root of\";iInputa;\" is\";iInputc"
+msgstr "Print \"The square root of\";iInputa;\" is\";iInputc"
-#: 00000003.xhp
-#, fuzzy
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455965\n"
+"03090301.xhp\n"
+"par_id3147340\n"
+"32\n"
"help.text"
-msgid "<variable id=\"err965\">965 Exit expected</variable>"
-msgstr "<variable id=\"err53\">53 Faayilii hin argamne </variable>"
+msgid "Print \"The square root of\";iInputb;\" is\";iInputc"
+msgstr "Print \"The square root of\";iInputb;\" is\";iInputc"
-#: 00000003.xhp
-#, fuzzy
+#: 03090302.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455966\n"
+"03090302.xhp\n"
+"tit\n"
"help.text"
-msgid "<variable id=\"err966\">966 Statement block still open: missing</variable>"
-msgstr "<variable id=\"err62\">62 Faaayilii naqaa isa dhuma </variable>"
+msgid "GoTo Statement [Runtime]"
+msgstr "Hima GoTo[Runtime]"
-#: 00000003.xhp
-#, fuzzy
+#: 03090302.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455967\n"
+"03090302.xhp\n"
+"bm_id3159413\n"
"help.text"
-msgid "<variable id=\"err967\">967 Parentheses do not match</variable>"
-msgstr "<variable id=\"err76\">76 Xurree hin argamne </variable>"
+msgid "<bookmark_value>GoTo statement</bookmark_value>"
+msgstr "<bookmark_value>hima GoTo </bookmark_value>"
-#: 00000003.xhp
-#, fuzzy
+#: 03090302.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455968\n"
+"03090302.xhp\n"
+"hd_id3159413\n"
+"1\n"
"help.text"
-msgid "<variable id=\"err968\">968 Symbol already defined differently</variable>"
-msgstr "<variable id=\"err8\">8 Arree duraan qophaa`e </variable>"
+msgid "<link href=\"text/sbasic/shared/03090302.xhp\" name=\"GoTo Statement [Runtime]\">GoTo Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090302.xhp\" name=\"GoTo Statement [Runtime]\">Hima GoTo [Runtime]</link>"
-#: 00000003.xhp
-#, fuzzy
+#: 03090302.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455969\n"
+"03090302.xhp\n"
+"par_id3153379\n"
+"2\n"
"help.text"
-msgid "<variable id=\"err969\">969 Parameters do not correspond to procedure</variable>"
-msgstr "<variable id=\"err76\">76 Xurree hin argamne </variable>"
+msgid "Continues program execution within a Sub or Function at the procedure line indicated by a label."
+msgstr "sagantaa raawwii itti fufaa kan Sub ykn Function keessattii kan adeemsa sarara asxan agarsifame."
-#: 00000003.xhp
-#, fuzzy
+#: 03090302.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455970\n"
+"03090302.xhp\n"
+"hd_id3149656\n"
+"3\n"
"help.text"
-msgid "<variable id=\"err970\">970 Invalid character in number</variable>"
-msgstr "<variable id=\"err93\">93 Diraa sarxaa fashalaa </variable>"
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 00000003.xhp
-#, fuzzy
+#: 03090302.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455971\n"
+"03090302.xhp\n"
+"par_id3154367\n"
+"4\n"
"help.text"
-msgid "<variable id=\"err971\">971 Array must be dimensioned</variable>"
-msgstr "<variable id=\"err8\">8 Arree duraan qophaa`e </variable>"
+msgid "see Parameters"
+msgstr "Ulaagaalee ilaali"
-#: 00000003.xhp
-#, fuzzy
+#: 03090302.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455972\n"
+"03090302.xhp\n"
+"hd_id3150870\n"
+"5\n"
"help.text"
-msgid "<variable id=\"err972\">972 Else/Endif without If</variable>"
-msgstr "<variable id=\"err20\">20 Dogoggora qabatamaa malee </variable>"
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 00000003.xhp
-#, fuzzy
+#: 03090302.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455973\n"
+"03090302.xhp\n"
+"par_id3156214\n"
+"6\n"
"help.text"
-msgid "<variable id=\"err973\">973 not allowed within a procedure</variable>"
-msgstr "<variable id=\"err5\">5 Ejjatoo fashalaan waamu </variable>"
+msgid "Sub/Function"
+msgstr "Sub/Function"
-#: 00000003.xhp
-#, fuzzy
+#: 03090302.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455974\n"
+"03090302.xhp\n"
+"par_id3156424\n"
+"7\n"
"help.text"
-msgid "<variable id=\"err974\">974 not allowed outside a procedure</variable>"
-msgstr "<variable id=\"err94\">94 Gargaaramuu dhabeesa fashalaa </variable>"
+msgid "statement block"
+msgstr "garee himaa"
-#: 00000003.xhp
-#, fuzzy
+#: 03090302.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455975\n"
+"03090302.xhp\n"
+"par_id3154685\n"
+"8\n"
"help.text"
-msgid "<variable id=\"err975\">975 Dimension specifications do not match</variable>"
-msgstr "<variable id=\"err53\">53 Faayilii hin argamne </variable>"
+msgid "Label1"
+msgstr "asxa1"
-#: 00000003.xhp
-#, fuzzy
+#: 03090302.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455976\n"
+"03090302.xhp\n"
+"par_id3145786\n"
+"9\n"
"help.text"
-msgid "<variable id=\"err976\">976 Unknown option:</variable>"
-msgstr "<variable id=\"err76\">76 Xurree hin argamne </variable>"
+msgid "<emph>Label2:</emph>"
+msgstr "<emph>Asxa2:</emph>"
-#: 00000003.xhp
-#, fuzzy
+#: 03090302.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455977\n"
+"03090302.xhp\n"
+"par_id3161832\n"
+"10\n"
"help.text"
-msgid "<variable id=\"err977\">977 Constant redefined</variable>"
-msgstr "<variable id=\"err67\">67 Faayiloota hedduu </variable>"
+msgid "statement block"
+msgstr "garee himaa"
-#: 00000003.xhp
-#, fuzzy
+#: 03090302.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455978\n"
+"03090302.xhp\n"
+"par_id3146120\n"
+"11\n"
"help.text"
-msgid "<variable id=\"err978\">978 Program too large</variable>"
-msgstr "<variable id=\"err76\">76 Xurree hin argamne </variable>"
+msgid "Exit Sub"
+msgstr "Exit Sub"
-#: 00000003.xhp
-#, fuzzy
+#: 03090302.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455979\n"
+"03090302.xhp\n"
+"par_id3150010\n"
+"12\n"
"help.text"
-msgid "<variable id=\"err979\">979 Strings or arrays not permitted</variable>"
-msgstr "<variable id=\"err71\">71 Baxxeen qophaa`aa miti </variable>"
+msgid "<emph>Label1:</emph>"
+msgstr "<emph>Asxaa1:</emph>"
-#: 00000003.xhp
-#, fuzzy
+#: 03090302.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455980\n"
+"03090302.xhp\n"
+"par_id3152462\n"
+"13\n"
"help.text"
-msgid "<variable id=\"err1000\">1000 Object does not have this property</variable>"
-msgstr "<variable id=\"err91\">Jijjiiramii Wantaa 91 hinqindoofne</variable>"
+msgid "statement block"
+msgstr "garee himaa"
-#: 00000003.xhp
-#, fuzzy
+#: 03090302.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455981\n"
+"03090302.xhp\n"
+"par_id3149664\n"
+"14\n"
"help.text"
-msgid "<variable id=\"err1001\">1001 Object does not have this method</variable>"
-msgstr "<variable id=\"err438\">438 Wanti tooftaa hin deggaru </variable>"
+msgid "GoTo Label2"
+msgstr "Gara Asxa2 Deemi"
-#: 00000003.xhp
-#, fuzzy
+#: 03090302.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455982\n"
+"03090302.xhp\n"
+"par_id3152886\n"
+"15\n"
"help.text"
-msgid "<variable id=\"err1002\">1002 Required argument lacking</variable>"
-msgstr "<variable id=\"err10\">10 Hiika jalteenya </variable>"
+msgid "End Sub/Function"
+msgstr "End Sub/Function"
-#: 00000003.xhp
-#, fuzzy
+#: 03090302.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455983\n"
+"03090302.xhp\n"
+"par_id3152596\n"
+"16\n"
"help.text"
-msgid "<variable id=\"err1003\">1003 Invalid number of arguments</variable>"
-msgstr "<variable id=\"err450\">450 Dogoggora lakkofsa morkallootaa </variable>"
+msgid "Use the GoTo statement to instruct $[officename] Basic to continue program execution at another place within the procedure. The position must be indicated by a label. To set a label, assign a name, and then and end it with a colon (\":\")."
+msgstr "$[officename] Basic akka sagantaa raawwachuu itti fufu iddoo biraa adeemsa keessatti hima GoTo fayyadami.Iddoon dirqama asxaan agarsiifama. Asxaa mul'isuuf, maqaa moggaasi, achiin tuq-lameen(\":\") xumuri."
-#: 00000003.xhp
-#, fuzzy
+#: 03090302.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455984\n"
+"03090302.xhp\n"
+"par_id3155416\n"
+"17\n"
"help.text"
-msgid "<variable id=\"err1004\">1004 Error executing a method</variable>"
-msgstr "<variable id=\"err48\">48 Dogoggora buustu DLL keessattii </variable>"
+msgid "You cannot use the GoTo statement to jump out of a Sub or Function."
+msgstr "Hima GoTo fayyadamuu hin dandeessu Sub ykn Function irra utaaluuf."
-#: 00000003.xhp
-#, fuzzy
+#: 03090302.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455985\n"
+"03090302.xhp\n"
+"hd_id3154731\n"
+"19\n"
"help.text"
-msgid "<variable id=\"err1005\">1005 Unable to set property</variable>"
-msgstr "<variable id=\"err51\">51 Dogoggora keesaa </variable>"
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 00000003.xhp
-#, fuzzy
+#: 03090302.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455986\n"
+"03090302.xhp\n"
+"par_id6967035\n"
"help.text"
-msgid "<variable id=\"err1006\">1006 Unable to determine property</variable>"
-msgstr "<variable id=\"err12\">12 Gegeeddaramaa ibsa hin qabne </variable>"
+msgid "see Parameters"
+msgstr "Ulaagaalee ilaali"
-#: 03120306.xhp
+#: 03090303.xhp
msgctxt ""
-"03120306.xhp\n"
+"03090303.xhp\n"
"tit\n"
"help.text"
-msgid "Mid Function, Mid Statement [Runtime]"
-msgstr "Faankishinii Mid, Hima Mid [Runtime]"
+msgid "On...GoSub Statement; On...GoTo Statement [Runtime]"
+msgstr "Hima On...GoSub; Hima On...GoTo[Runtime]"
-#: 03120306.xhp
+#: 03090303.xhp
msgctxt ""
-"03120306.xhp\n"
-"bm_id3143268\n"
+"03090303.xhp\n"
+"bm_id3153897\n"
"help.text"
-msgid "<bookmark_value>Mid function</bookmark_value><bookmark_value>Mid statement</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii Mid</bookmark_value><bookmark_value>Hima Mid</bookmark_value>"
+msgid "<bookmark_value>On...GoSub statement</bookmark_value><bookmark_value>On...GoTo statement</bookmark_value>"
+msgstr "<bookmark_value>Hima On...GoSub</bookmark_value><bookmark_value>Hima On...GoTo</bookmark_value>"
-#: 03120306.xhp
+#: 03090303.xhp
msgctxt ""
-"03120306.xhp\n"
-"hd_id3143268\n"
+"03090303.xhp\n"
+"hd_id3153897\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 Function, Mid Statement [Runtime]\">Faankishinii Mid, Hima Mid [Runtime]</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 Statement; On...GoTo Statement [Runtime]\">Hima On...GoSub; Hima On...GoTo [Runtime]</link>"
-#: 03120306.xhp
+#: 03090303.xhp
msgctxt ""
-"03120306.xhp\n"
-"par_id3148473\n"
+"03090303.xhp\n"
+"par_id3150359\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 "Xiqqaa himata diraa adda baafamee deebisa (<emph>Mid function</emph>), yookiin xiqqaa himata diraa, diraa biraatiin bakka buusa (<emph>Hima Mid </emph>)."
+msgid "Branches to one of several specified lines in the program code, depending on the value of a numeric expression."
+msgstr "sararota lakkadda sagantaa keessattii baay'ee ibsame keessa tokkotti qoodi, gatii himannoo irratti hundaa'un."
-#: 03120306.xhp
+#: 03090303.xhp
msgctxt ""
-"03120306.xhp\n"
-"hd_id3154285\n"
+"03090303.xhp\n"
+"hd_id3148798\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasimaa:"
+msgstr "caasimaa:"
-#: 03120306.xhp
+#: 03090303.xhp
msgctxt ""
-"03120306.xhp\n"
-"par_id3147530\n"
+"03090303.xhp\n"
+"par_id3154366\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]) or Mid (Text As String, Start As Long , Length As Long, Text As String)"
+msgid "On N GoSub Label1[, Label2[, Label3[,...]]]"
+msgstr "On N GoSub Label1[, Label2[, Label3[,...]]]"
-#: 03120306.xhp
+#: 03090303.xhp
msgctxt ""
-"03120306.xhp\n"
-"hd_id3145068\n"
+"03090303.xhp\n"
+"par_id3150769\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Gatii deebii:"
+msgid "On NumExpression GoTo Label1[, Label2[, Label3[,...]]]"
+msgstr "On NumExpression GoTo Label1[, Label2[, Label3[,...]]]"
-#: 03120306.xhp
+#: 03090303.xhp
msgctxt ""
-"03120306.xhp\n"
-"par_id3149295\n"
+"03090303.xhp\n"
+"hd_id3156215\n"
"6\n"
"help.text"
-msgid "String (only by Function)"
-msgstr "String (only by Function)"
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 03120306.xhp
+#: 03090303.xhp
msgctxt ""
-"03120306.xhp\n"
-"hd_id3154347\n"
+"03090303.xhp\n"
+"par_id3148673\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Ulaagaa:"
+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>Himannoon lakkoofsa kamuu gidduu 0 fi 255 sagantaan sarara kamitti akka qoodame kan murteessuu dha.yoo NumExpression niin 0 ta'e, himni hin raawwanne.Yoo NumExpression niin irra guddaa 0 ta'e, sagantaan asxaa iddoo lakkoofsa himannoo(1 = First label; 2 = Second label)walgitutti utaala."
-#: 03120306.xhp
+#: 03090303.xhp
msgctxt ""
-"03120306.xhp\n"
-"par_id3148664\n"
+"03090303.xhp\n"
+"par_id3153194\n"
"8\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression that you want to modify."
-msgstr "<emph>Barruu:</emph> Himata diraa kamiyyuu kan akka jijjiiramu barbaaddu dha."
+msgid "<emph>Label:</emph> Target line according to<emph> GoTo </emph>or <emph>GoSub</emph> structure."
+msgstr "<emph>Asxaa1:</emph>Sarara akkaataa caasaa <emph> GoTo </emph>fi <emph>GoSub</emph> galchi."
-#: 03120306.xhp
+#: 03090303.xhp
msgctxt ""
-"03120306.xhp\n"
-"par_id3150359\n"
+"03090303.xhp\n"
+"par_id3156442\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>Jalqaba: </emph> Himata lakkoofsaa kan bakka arfii diraa keessaa itti jalqabuu fi xiqqaan diraa ati bakka buusuuf ykn deebisuuf barbaaddu jalqabu agarsiisa."
+msgid "The <emph>GoTo</emph> or <emph>GoSub </emph>conventions are valid."
+msgstr "Walii galteen <emph>GoTo</emph> fi <emph>GoSub </emph> kan gataa'ee dha."
-#: 03120306.xhp
+#: 03090303.xhp
msgctxt ""
-"03120306.xhp\n"
-"par_id3148451\n"
+"03090303.xhp\n"
+"hd_id3148645\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>Dheerina:</emph> Himata lakkoofsaa kan baay'ina arfiilee akka bakka bu'aman yookiin deebi'an barbaaddu deebisa. 65535 gatii guddaa isa eeyyamamaa dha."
-
-#: 03120306.xhp
-msgctxt ""
-"03120306.xhp\n"
-"par_id3125864\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 "Yoo dheerinni ulaagaa <emph>faankishinii Mid</emph> keessaa gatame, arfiileen jalqabaa haga xumura himata diraatti jiran marti ni deebi'u."
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 03120306.xhp
+#: 03090303.xhp
msgctxt ""
-"03120306.xhp\n"
-"par_id3144762\n"
-"12\n"
+"03090303.xhp\n"
+"par_id3153948\n"
+"21\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 "Yoo dheerinni ulaagaa <emph>Hima Mid</emph> keessaa irra xiqqaa dheerina barruu ati bakka buusuu barbaadduu ta'e, barruun kun gara dheerina beekkameetti gad-bu'a."
+msgid "sVar =sVar & \" From Sub 1 to\" : Return"
+msgstr "sVar =sVar & \" From Sub 1 to\" : Return"
-#: 03120306.xhp
+#: 03090303.xhp
msgctxt ""
-"03120306.xhp\n"
-"par_id3150769\n"
-"13\n"
+"03090303.xhp\n"
+"par_id3153708\n"
+"23\n"
"help.text"
-msgid "<emph>Text:</emph> The string to replace the string expression (<emph>Mid statement</emph>)."
-msgstr "<emph>Barruu:</emph> Diraa himata diraa (<emph>Mid statement</emph>) bakka buusuudhaaf fayyadu dha."
+msgid "sVar =sVar & \" From Sub 2 to\" : Return"
+msgstr "sVar =sVar & \" From Sub 2 to\" : Return"
-#: 03120306.xhp
+#: 03090303.xhp
msgctxt ""
-"03120306.xhp\n"
-"hd_id3149560\n"
-"14\n"
+"03090303.xhp\n"
+"par_id3150321\n"
+"25\n"
"help.text"
-msgid "Example:"
-msgstr "Fakkeenyawwan:"
+msgid "sVar =sVar & \" Label 1\" : GoTo Ende"
+msgstr "sVar =sVar & \" Label 1\" : GoTo Ende"
-#: 03120306.xhp
+#: 03090303.xhp
msgctxt ""
-"03120306.xhp\n"
-"par_id3153189\n"
-"18\n"
+"03090303.xhp\n"
+"par_id3155764\n"
+"27\n"
"help.text"
-msgid "sInput = InputBox(\"Please input a date in the international format 'YYYY-MM-DD'\")"
-msgstr "sInput = InputBox(\"Please input a date in the international format 'YYYY-MM-DD'\")"
+msgid "sVar =sVar & \" Label 2\""
+msgstr "sVar =sVar & \" Label 2\""
-#: 03030106.xhp
+#: 03090400.xhp
msgctxt ""
-"03030106.xhp\n"
+"03090400.xhp\n"
"tit\n"
"help.text"
-msgid "Year Function [Runtime]"
-msgstr "Faankishinii Waggaa [Runtime]"
-
-#: 03030106.xhp
-msgctxt ""
-"03030106.xhp\n"
-"bm_id3148664\n"
-"help.text"
-msgid "<bookmark_value>Year function</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii Waggaa </bookmark_value>"
+msgid "Further Statements"
+msgstr "Himoota Dabalataa"
-#: 03030106.xhp
+#: 03090400.xhp
msgctxt ""
-"03030106.xhp\n"
-"hd_id3148664\n"
+"03090400.xhp\n"
+"hd_id3145316\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03030106.xhp\" name=\"Year Function [Runtime]\">Year Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03030106.xhp\" name=\"Year Function [Runtime]\">Faankishinii Waggaa [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03090400.xhp\" name=\"Further Statements\">Further Statements</link>"
+msgstr "<link href=\"text/sbasic/shared/03090400.xhp\" name=\"Further Statements\">Himoota Dabalataa</link>"
-#: 03030106.xhp
+#: 03090400.xhp
msgctxt ""
-"03030106.xhp\n"
-"par_id3149655\n"
+"03090400.xhp\n"
+"par_id3154923\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 "Waggaa eenyummaa guyyaa irraa deebisi kan faankishinii DateSerial or the DateValue irraa madde."
-
-#: 03030106.xhp
-msgctxt ""
-"03030106.xhp\n"
-"hd_id3154125\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Caasima:"
-
-#: 03030106.xhp
-msgctxt ""
-"03030106.xhp\n"
-"par_id3147229\n"
-"4\n"
-"help.text"
-msgid "Year (Number)"
-msgstr "Waggaa(Lakkoofsa)"
-
-#: 03030106.xhp
-msgctxt ""
-"03030106.xhp\n"
-"hd_id3154685\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Gatii deebii:"
-
-#: 03030106.xhp
-msgctxt ""
-"03030106.xhp\n"
-"par_id3153970\n"
-"6\n"
-"help.text"
-msgid "Integer"
-msgstr "Itergaa"
-
-#: 03030106.xhp
-msgctxt ""
-"03030106.xhp\n"
-"hd_id3150440\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Ulaagalee:"
-
-#: 03030106.xhp
-msgctxt ""
-"03030106.xhp\n"
-"par_id3163712\n"
-"8\n"
-"help.text"
-msgid "<emph>Number:</emph> Integer expression that contains the serial date number that is used to calculate the year."
-msgstr "<emph>Lakkoofsa:</emph> Himama itergaa kan eenyumma lakkofsaa guyyaa of keessa qabu kan waggaa shalaguuf gargaaru."
-
-#: 03030106.xhp
-msgctxt ""
-"03030106.xhp\n"
-"par_id3152596\n"
-"9\n"
-"help.text"
-msgid "This function is the opposite of the <emph>DateSerial </emph>function, and returns the year of a serial date. For example, the expression:"
-msgstr "Faankishiniin kun faallaa<emph>DateSerial </emph> ti,fi eenyummaa waggaa guyyaa kan deebisudha. Fakkenyaaf,himamsi:"
-
-#: 03030106.xhp
-msgctxt ""
-"03030106.xhp\n"
-"par_id3149483\n"
-"11\n"
-"help.text"
-msgid "returns the value 1994."
-msgstr "Gatii 1994 deebisi."
-
-#: 03030106.xhp
-msgctxt ""
-"03030106.xhp\n"
-"hd_id3146985\n"
-"12\n"
-"help.text"
-msgid "Example:"
-msgstr "Fakkeenya:"
-
-#: 03030106.xhp
-msgctxt ""
-"03030106.xhp\n"
-"par_id3153363\n"
-"14\n"
-"help.text"
-msgid "MsgBox \"\" & Year(Now) ,64,\"Current year\""
-msgstr "MsgBox \"\" & Year(Now) ,64,\"Waggaa baranaa\""
+msgid "Statements that do not belong to any of the other runtime categories are described here."
+msgstr "himoonni sa'aa darbee biraa kamuu keessa hin turre asitti ibsama."
-#: 03080601.xhp
+#: 03090401.xhp
msgctxt ""
-"03080601.xhp\n"
+"03090401.xhp\n"
"tit\n"
"help.text"
-msgid "Abs Function [Runtime]"
-msgstr "faankishinii Abs[Runtime]"
+msgid "Call Statement [Runtime]"
+msgstr "Hima Waamicha[Runtime]"
-#: 03080601.xhp
+#: 03090401.xhp
msgctxt ""
-"03080601.xhp\n"
-"bm_id3159201\n"
+"03090401.xhp\n"
+"bm_id3154422\n"
"help.text"
-msgid "<bookmark_value>Abs function</bookmark_value>"
-msgstr "<bookmark_value>Fankishinii Abs</bookmark_value>"
+msgid "<bookmark_value>Call statement</bookmark_value>"
+msgstr "<bookmark_value>Hima Waamicha</bookmark_value>"
-#: 03080601.xhp
+#: 03090401.xhp
msgctxt ""
-"03080601.xhp\n"
-"hd_id3159201\n"
+"03090401.xhp\n"
+"hd_id3154422\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 Function [Runtime]\">faankishinii Abs [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03090401.xhp\" name=\"Call Statement [Runtime]\">Call Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090401.xhp\" name=\"Call Statement [Runtime]\">Hima Waamicha [Runtime]</link>"
-#: 03080601.xhp
+#: 03090401.xhp
msgctxt ""
-"03080601.xhp\n"
+"03090401.xhp\n"
"par_id3153394\n"
"2\n"
"help.text"
-msgid "Returns the absolute value of a numeric expression."
-msgstr "Gatii gonkaa himannoo lakkofsa debisa."
+msgid "Transfers the control of the program to a subroutine, a function, or a DLL procedure."
+msgstr "Sagantaa too'annoo gara sagantaa xiqqoo,faankishinii ,ykn adeemsa DLL tti dabarsi."
-#: 03080601.xhp
+#: 03090401.xhp
msgctxt ""
-"03080601.xhp\n"
-"hd_id3149233\n"
+"03090401.xhp\n"
+"hd_id3153345\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasimaa:"
+msgstr "caasimaa:"
-#: 03080601.xhp
+#: 03090401.xhp
msgctxt ""
-"03080601.xhp\n"
-"par_id3147573\n"
+"03090401.xhp\n"
+"par_id3150984\n"
"4\n"
"help.text"
-msgid "Abs (Number)"
-msgstr "Abs (Number)"
+msgid "[Call] Name [Parameter]"
+msgstr "[Call] Name [Parameter]"
-#: 03080601.xhp
+#: 03090401.xhp
msgctxt ""
-"03080601.xhp\n"
-"hd_id3156152\n"
+"03090401.xhp\n"
+"hd_id3150771\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Gatii Deebii:"
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 03080601.xhp
+#: 03090401.xhp
msgctxt ""
-"03080601.xhp\n"
-"par_id3149670\n"
+"03090401.xhp\n"
+"par_id3148473\n"
"6\n"
"help.text"
-msgid "Double"
-msgstr "Dachaa"
+msgid "<emph>Name:</emph> Name of the subroutine, the function, or the DLL that you want to call"
+msgstr "<emph>Maqaa:</emph> Maqaa sagantaa xiqqaa,faankishinii , ykn DLL waamuu barbaadde."
-#: 03080601.xhp
+#: 03090401.xhp
msgctxt ""
-"03080601.xhp\n"
-"hd_id3154924\n"
+"03090401.xhp\n"
+"par_id3148946\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Ulaagaalee:"
+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>Ulaagaa:</emph> Ulaagaalee adeemsatti dabarsuu. Gosti fi lakkoofsi ulaagaalee ruutinii raawwatamu irratti hundaa'a."
-#: 03080601.xhp
+#: 03090401.xhp
msgctxt ""
-"03080601.xhp\n"
-"par_id3154347\n"
+"03090401.xhp\n"
+"par_id3154216\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>lakkoofsa:</emph>Himannoo lakkoofsa gatii gonkaa deebisuu barbaaddef. lakkoofsi poozatiivii, 0 dabalatee hin jijjiraman, lakkofsi nagatiivii garuu gara poozatiivitti jiiiirama."
+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 "Yoo adeemsa waamtu jeefuraan dirqalee dha. Yoo faankishiniini akka himannoo tti raawwate,ulaagaaleen sarara dallaan hima keessatti golgamu. Yoo DLL'n waamame, jalqaba <emph>Declare-Statement</emph> keessatti dirqama ibsama."
-#: 03080601.xhp
+#: 03090401.xhp
msgctxt ""
-"03080601.xhp\n"
-"par_id3153381\n"
+"03090401.xhp\n"
+"hd_id3125865\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 "Fakkeenyi armaan gadii faankishinii Abs fayyadamuun garagarummaa gatii lama gidduu jiru shallaguuf.Gatiin dura itti galchitu rakkoo hin qabu."
-
-#: 03080601.xhp
-msgctxt ""
-"03080601.xhp\n"
-"hd_id3148451\n"
-"10\n"
-"help.text"
msgid "Example:"
msgstr "Fakkeenya:"
-#: 03080601.xhp
-#, fuzzy
-msgctxt ""
-"03080601.xhp\n"
-"par_id3145786\n"
-"14\n"
-"help.text"
-msgid "siW1 = Int(InputBox$ (\"Please enter the first amount\",\"Value Input\"))"
-msgstr "siW1 = Int(InputBox$ (\"Please enter the first amount\",\"Value input\"))"
-
-#: 03080601.xhp
-#, fuzzy
-msgctxt ""
-"03080601.xhp\n"
-"par_id3149561\n"
-"15\n"
-"help.text"
-msgid "siW2 = Int(InputBox$ (\"Please enter the second amount\",\"Value Input\"))"
-msgstr "siW2 = Int(InputBox$ (\"Please enter the second amount\",\"Value input\"))"
-
-#: 03080601.xhp
-msgctxt ""
-"03080601.xhp\n"
-"par_id3145750\n"
-"16\n"
-"help.text"
-msgid "Print \"The difference is \"; Abs(siW1 - siW2)"
-msgstr "Print \"The difference is \"; Abs(siW1 - siW2)"
-
-#: 03104000.xhp
+#: 03090402.xhp
msgctxt ""
-"03104000.xhp\n"
+"03090402.xhp\n"
"tit\n"
"help.text"
-msgid "IsMissing function [Runtime]"
-msgstr "Faankishinii IsMissing [Runtime]"
+msgid "Choose Function [Runtime]"
+msgstr "Faankishinii Fili[Runtime]"
-#: 03104000.xhp
+#: 03090402.xhp
msgctxt ""
-"03104000.xhp\n"
-"bm_id3153527\n"
+"03090402.xhp\n"
+"bm_id3143271\n"
"help.text"
-msgid "<bookmark_value>IsMissing function</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii IsMissing</bookmark_value>"
+msgid "<bookmark_value>Choose function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii Fili</bookmark_value>"
-#: 03104000.xhp
+#: 03090402.xhp
msgctxt ""
-"03104000.xhp\n"
-"hd_id3153527\n"
+"03090402.xhp\n"
+"hd_id3143271\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03104000.xhp\" name=\"IsMissing function [Runtime]\">IsMissing function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03104000.xhp\" name=\"IsMissing function [Runtime]\">Faankishinii IsMissing [Runtime]</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 Function [Runtime]\">Faankishinii Fili [Runtime]</link>"
-#: 03104000.xhp
+#: 03090402.xhp
msgctxt ""
-"03104000.xhp\n"
-"par_id3153825\n"
+"03090402.xhp\n"
+"par_id3149234\n"
"2\n"
"help.text"
-msgid "Tests if a function is called with an optional parameter."
-msgstr "Faankishiniinichi ulaagaa dirqaaleetiin waamamuu isaa qorata."
+msgid "Returns a selected value from a list of arguments."
+msgstr "Qajeelfamoota tarreeffaman irraa gatii filame debisi."
-#: 03104000.xhp
+#: 03090402.xhp
msgctxt ""
-"03104000.xhp\n"
-"par_id3150669\n"
+"03090402.xhp\n"
+"hd_id3148943\n"
"3\n"
"help.text"
-msgid "See also: <link href=\"text/sbasic/shared/03104100.xhp\" name=\"Optional\">Optional</link>"
-msgstr "Dabalataan: <link href=\"text/sbasic/shared/03104100.xhp\" name=\"Optional\">Dirqaalee</link> ilaali"
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 03104000.xhp
+#: 03090402.xhp
msgctxt ""
-"03104000.xhp\n"
-"hd_id3145611\n"
+"03090402.xhp\n"
+"par_id3147560\n"
"4\n"
"help.text"
-msgid "Syntax:"
-msgstr "Caasimaa:"
+msgid "Choose (Index, Selection1[, Selection2, ... [,Selection_n]])"
+msgstr "Choose (Index, Selection1[, Selection2, ... [,Selection_n]])"
-#: 03104000.xhp
+#: 03090402.xhp
msgctxt ""
-"03104000.xhp\n"
-"par_id3154924\n"
+"03090402.xhp\n"
+"hd_id3154346\n"
"5\n"
"help.text"
-msgid "IsMissing( ArgumentName )"
-msgstr "IsMissing( ArgumentName )"
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 03104000.xhp
+#: 03090402.xhp
msgctxt ""
-"03104000.xhp\n"
-"hd_id3145069\n"
+"03090402.xhp\n"
+"par_id3148664\n"
"6\n"
"help.text"
-msgid "Parameters:"
-msgstr "Ulaagaalee:"
+msgid "<emph>Index:</emph> A numeric expression that specifies the value to return."
+msgstr "<emph>Kasaa:</emph> Himannoon lakkofsaa gatii deebii'u kan ifteesu dha."
-#: 03104000.xhp
+#: 03090402.xhp
msgctxt ""
-"03104000.xhp\n"
-"par_id3149457\n"
+"03090402.xhp\n"
+"par_id3150791\n"
"7\n"
"help.text"
-msgid "<emph>ArgumentName:</emph> the name of an optional argument."
-msgstr "<emph>MaqaaQajeelfamaa:</emph> maqaa qajeelfama dirqaalee ti."
+msgid "<emph>Selection1:</emph> Any expression that contains one of the possible choices."
+msgstr "<emph>Filannoo1:</emph> Himannoon kamuu filannoo danda'amu tokko kan qabu dha."
-#: 03104000.xhp
+#: 03090402.xhp
msgctxt ""
-"03104000.xhp\n"
-"par_id3150398\n"
+"03090402.xhp\n"
+"par_id3151043\n"
"8\n"
"help.text"
-msgid "If the IsMissing function is called by the ArgumentName, then True is returned."
-msgstr "Yoo faankishiniin IsMissing ArgumentName dhaan waamame, Dhugaatu deebi'a."
+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 "Faankishiiniin <emph>Fili</emph> gatii himannoo tarreeffaman irraa gatii kasaa irratti hundaa'e deebisa."
-#: 03104000.xhp
+#: 03090402.xhp
msgctxt ""
-"03104000.xhp\n"
-"par_id3148798\n"
+"03090402.xhp\n"
+"par_id3153192\n"
"9\n"
"help.text"
-msgid "See also <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Examples\">Examples</link>."
-msgstr "Dabalataan <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Examples\">Fakkeenyawwan</link> ilaali."
+msgid "If the index value is less than 1 or greater than the number of expressions listed, the function returns a Null value."
+msgstr "Yoo gatiin kasaa irra xiqqaa 1 ykn irra guddaa lakkofsa himannoo tarreeffamanii ta'e,faankishiniin gatii Null deebisa."
-#: main0601.xhp
+#: 03090402.xhp
msgctxt ""
-"main0601.xhp\n"
-"tit\n"
+"03090402.xhp\n"
+"par_id3156281\n"
+"10\n"
"help.text"
-msgid "$[officename] Basic Help"
-msgstr "Gargaarsa $[officename] Basic"
+msgid "The following example uses the <emph>Choose</emph> function to select a string from several strings that form a menu:"
+msgstr "Fakkeenyi armaan gadii diraa diroota baay'ee kan baafata uuman irraa filuuf faankishinii<emph>Fili</emph>fayyadami."
-#: main0601.xhp
+#: 03090402.xhp
msgctxt ""
-"main0601.xhp\n"
-"hd_id3154232\n"
-"1\n"
+"03090402.xhp\n"
+"hd_id3150439\n"
+"11\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link>"
-msgstr "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">Gargaarsa %PRODUCTNAME Basic </link>"
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: main0601.xhp
+#: 03090402.xhp
msgctxt ""
-"main0601.xhp\n"
-"par_id3153894\n"
-"4\n"
+"03090402.xhp\n"
+"par_id3156443\n"
+"20\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 niin Application Programming Interface(API) kan qaamota $[officename] to'achuu nu dandeessisuu fi afaan saganteessuu addaa addaa $[officename] Software Development Kit (SDK) tiin fayyadamuun nuuf dhiyeessa. Odeefannoo dabalataa waa'ee $[officename] API fi Software Development Kit maaloo <link href=\"http://api.openoffice.org/\" name=\"http://api.openoffice.org\">http://api.openoffice.org</link> ilaali."
+msgid "ChooseMenu = Choose(Index, \"Quick Format\", \"Save Format\", \"System Format\")"
+msgstr "ChooseMenu = Choose(Index, \"Quick Format\", \"Save Format\", \"System Format\")"
-#: main0601.xhp
+#: 03090403.xhp
msgctxt ""
-"main0601.xhp\n"
-"par_id3147226\n"
-"10\n"
+"03090403.xhp\n"
+"tit\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 ""
+msgid "Declare Statement [Runtime]"
+msgstr "Hima ibsaa[Runtime]"
-#: main0601.xhp
+#: 03090403.xhp
msgctxt ""
-"main0601.xhp\n"
-"hd_id3146957\n"
-"9\n"
+"03090403.xhp\n"
+"bm_id3148473\n"
"help.text"
-msgid "Working with %PRODUCTNAME Basic"
-msgstr "%PRODUCTNAME Basic wajjin hojjechuu"
+msgid "<bookmark_value>Declare statement</bookmark_value>"
+msgstr "<bookmark_value>Hima Ibsaa</bookmark_value>"
-#: main0601.xhp
+#: 03090403.xhp
msgctxt ""
-"main0601.xhp\n"
+"03090403.xhp\n"
"hd_id3148473\n"
-"7\n"
-"help.text"
-msgid "Help about the Help"
-msgstr "Gargaarsa waa'ee Gargaarsaa"
-
-#: 03090407.xhp
-msgctxt ""
-"03090407.xhp\n"
-"tit\n"
-"help.text"
-msgid "Rem Statement [Runtime]"
-msgstr "Hima Rem [Runtime]"
-
-#: 03090407.xhp
-msgctxt ""
-"03090407.xhp\n"
-"bm_id3154347\n"
+"1\n"
"help.text"
-msgid "<bookmark_value>Rem statement</bookmark_value><bookmark_value>comments;Rem statement</bookmark_value>"
-msgstr "<bookmark_value>Hima Rem </bookmark_value><bookmark_value>yaadota;hima Rem</bookmark_value>"
+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 Statement [Runtime]\">Hima Ibsaa [Runtime]</link>"
-#: 03090407.xhp
+#: 03090403.xhp
msgctxt ""
-"03090407.xhp\n"
-"hd_id3154347\n"
-"1\n"
+"03090403.xhp\n"
+"bm_id3145316\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 Statement [Runtime]\">Hima Rem [Runtime]</link>"
+msgid "<bookmark_value>DLL (Dynamic Link Library)</bookmark_value>"
+msgstr "<bookmark_value>DLL (Dynamic Link Library)</bookmark_value>"
-#: 03090407.xhp
+#: 03090403.xhp
msgctxt ""
-"03090407.xhp\n"
-"par_id3153525\n"
+"03090403.xhp\n"
+"par_id3145316\n"
"2\n"
"help.text"
-msgid "Specifies that a program line is a comment."
-msgstr "sararri sagantaa sun yaada qabu ibsi."
+msgid "Declares and defines a subroutine in a DLL file that you want to execute from $[officename] Basic."
+msgstr "sagantaa xiqqoofaayelii DLL keessaatti ibsuu fi qindeessuu kan $[officename] Basic irraa raawwachuu barbaaddu."
-#: 03090407.xhp
+#: 03090403.xhp
msgctxt ""
-"03090407.xhp\n"
-"hd_id3153360\n"
+"03090403.xhp\n"
+"par_id3146795\n"
"3\n"
"help.text"
-msgid "Syntax:"
-msgstr "Caasimaa:"
+msgid "See also: <link href=\"text/sbasic/shared/03090405.xhp\" name=\"FreeLibrary\">FreeLibrary</link>"
+msgstr "Dabalataan ilaali: <link href=\"text/sbasic/shared/03090405.xhp\" name=\"FreeLibrary\">FreeLibrary</link>"
-#: 03090407.xhp
+#: 03090403.xhp
msgctxt ""
-"03090407.xhp\n"
-"par_id3154141\n"
+"03090403.xhp\n"
+"hd_id3156344\n"
"4\n"
"help.text"
-msgid "Rem Text"
-msgstr "Rem Text"
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 03090407.xhp
+#: 03090403.xhp
msgctxt ""
-"03090407.xhp\n"
-"hd_id3151042\n"
+"03090403.xhp\n"
+"par_id3148664\n"
"5\n"
"help.text"
-msgid "Parameters:"
-msgstr "Ulaagaalee:"
+msgid "Declare {Sub | Function} Name Lib \"Libname\" [Alias \"Aliasname\"] [Parameter] [As Type]"
+msgstr "Declare {Sub | Function} Name Lib \"Libname\" [Alias \"Aliasname\"] [Parameter] [As Type]"
-#: 03090407.xhp
+#: 03090403.xhp
msgctxt ""
-"03090407.xhp\n"
-"par_id3150869\n"
+"03090403.xhp\n"
+"hd_id3153360\n"
"6\n"
"help.text"
-msgid "<emph>Text:</emph> Any text that serves as a comment."
-msgstr "<emph>Barruu:</emph> Barruu kamuu akka yaadatti gargaaran."
-
-#: 03090407.xhp
-msgctxt ""
-"03090407.xhp\n"
-"par_id3147318\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 "barruun sarara irraa yaada ta'u isaa agarsiisuuf mallattoo waraabbii qeenxee fayyadamuu dandeessa.Mallattoon kun kallattiin gara harka mirga kalladdaa sagantaa galuu danda'a,yaadan duuka bu'ama."
-
-#: 03090407.xhp
-msgctxt ""
-"03090407.xhp\n"
-"par_id6187017\n"
-"help.text"
-msgid "You can use a space followed by the underline character _ as the last two characters of a line to continue the logical line on the next line. To continue comment lines, you must enter \"Option Compatible\" in the same Basic module."
-msgstr "Arfiilee jalmuraa, iddootti aanan _ akka arfiilee laman warra dhumaa kan sarara tokko itti fufuuf, sarara yaayaa sarara itti aanuu irraa fayyadamuu nidandeessa. Sararoota yaadaa itti fufuudhaaf, moojulii Basic warra tokkicha ta'aan keessatti \"walta'oo Dirqalaa\" galchuu qabda."
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 03090407.xhp
+#: 03090403.xhp
msgctxt ""
-"03090407.xhp\n"
-"hd_id3150012\n"
+"03090403.xhp\n"
+"par_id3154140\n"
"8\n"
"help.text"
-msgid "Example:"
-msgstr "Fakkeeny:"
-
-#: 03090407.xhp
-#, fuzzy
-msgctxt ""
-"03090407.xhp\n"
-"par_id3153140\n"
-"13\n"
-"help.text"
-msgid "' Nothing occurs here"
-msgstr "REM Nothing occurs here"
-
-#: 03101140.xhp
-msgctxt ""
-"03101140.xhp\n"
-"tit\n"
-"help.text"
-msgid "DefStr Statement [Runtime]"
-msgstr "Hima DefStr [Runtime]"
-
-#: 03101140.xhp
-msgctxt ""
-"03101140.xhp\n"
-"bm_id6161381\n"
-"help.text"
-msgid "<bookmark_value>DefStr statement</bookmark_value>"
-msgstr "<bookmark_value>Hima DefStr</bookmark_value>"
-
-#: 03101140.xhp
-msgctxt ""
-"03101140.xhp\n"
-"par_idN10577\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03101140.xhp\">DefStr Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03101140.xhp\">Hima DefStr [Runtime]</link>"
-
-#: 03101140.xhp
-msgctxt ""
-"03101140.xhp\n"
-"par_idN10587\n"
-"help.text"
-msgid "If no type-declaration character or keyword is specified, the DefStr statement sets the default variable type, according to a letter range."
-msgstr "Yoo arfiin akaakuu labsii ykn jefuraa hin ifteeffamne,himni DefSng akaakuu jijjiiramaa durtii qindeessa,akkaataa hangii qubeen."
-
-#: 03101140.xhp
-msgctxt ""
-"03101140.xhp\n"
-"par_idN1058A\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Caasimaa:"
-
-#: 03101140.xhp
-msgctxt ""
-"03101140.xhp\n"
-"par_idN1058E\n"
-"help.text"
-msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
-msgstr "Defxxx Characterrange1[, Characterrange2[,...]]"
+msgid "<emph>Name:</emph> A different name than defined in the DLL, to call the subroutine from $[officename] Basic."
+msgstr "<emph>Maqaa:</emph> maqaan adda addaa kan DLL keessatti qindeeffame, sagantaa xiqqoo $[officename] Basic irraa waamuuf."
-#: 03101140.xhp
+#: 03090403.xhp
msgctxt ""
-"03101140.xhp\n"
-"par_idN10591\n"
+"03090403.xhp\n"
+"par_id3150870\n"
+"9\n"
"help.text"
-msgid "Parameters:"
-msgstr "Ulaagaalee:"
+msgid "<emph>Aliasname</emph>: Name of the subroutine as defined in the DLL."
+msgstr "<emph>Maqaa maqbirroo</emph>: Maqaa sagantaa xiqqoo DLL keessatti qindaa'e."
-#: 03101140.xhp
+#: 03090403.xhp
msgctxt ""
-"03101140.xhp\n"
-"par_idN10595\n"
+"03090403.xhp\n"
+"par_id3154684\n"
+"10\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>Hangiiarfii:</emph> Qubeewwan kan hangii jijjiiramtootaa kan akaakuu deetaa durtii qindeessuu barbaaddu ifteessan."
+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> maqaa faayelii ykn sirna DLL ti.Faankishinii yeroo jalqabaa fayyadameen Manbarroo kun ofumaan fe'a."
-#: 03101140.xhp
+#: 03090403.xhp
msgctxt ""
-"03101140.xhp\n"
-"par_idN1059C\n"
+"03090403.xhp\n"
+"par_id3148452\n"
+"11\n"
"help.text"
-msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
-msgstr "<emph>xxx:</emph> Jefuraan kan akaakuu jijjiiramaa durtii qindeessu:"
+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>Tarreeffama qajeelfamaa:</emph>Tarreeffama ulaagaalee qajeelfama bakka bu'an yeroo waamametti kan adeemsatti darbe.Gosti fi lakkoofsi ulaagaalee adeemsa raawwii irratti hundaa'a."
-#: 03101140.xhp
+#: 03090403.xhp
msgctxt ""
-"03101140.xhp\n"
-"par_idN105A3\n"
+"03090403.xhp\n"
+"par_id3147289\n"
+"12\n"
"help.text"
-msgid "<emph>Keyword:</emph> Default variable type"
-msgstr "<emph>Jefuraa:</emph> Akaakuu jijjiiramaa durtii"
+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>Gosa:</emph> gosa deetaa gatii adeemsa faankishiniin deebi'u qindeessa.Yoo arfiin gosa ibsituu maqaan booda gale ulaagaalee kan dhiisuu dandeessa."
-#: 03101140.xhp
+#: 03090403.xhp
msgctxt ""
-"03101140.xhp\n"
-"par_idN105AA\n"
+"03090403.xhp\n"
+"par_id3146922\n"
+"13\n"
"help.text"
-msgid "<emph>DefStr:</emph> String"
-msgstr "<emph>DefStr:</emph> Diraa"
+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 "ulaagaalee sagantaa xiqqaatti dabrsuuf akka gatiitti qooda wabii,ulaagaaleen dirqama jefuraa <emph>ByVal</emph>agarsiifamu."
-#: 03101140.xhp
+#: 03090403.xhp
msgctxt ""
-"03101140.xhp\n"
-"par_idN105B1\n"
+"03090403.xhp\n"
+"hd_id3153951\n"
+"14\n"
"help.text"
msgid "Example:"
msgstr "Fakkeenya:"
-#: 03101140.xhp
-#, fuzzy
-msgctxt ""
-"03101140.xhp\n"
-"par_idN105B5\n"
-"help.text"
-msgid "' Prefix definitions for variable types:"
-msgstr "REM hiika huddeelsoo akaakuu jijjiiramaaf:"
-
-#: 03101140.xhp
-#, fuzzy
-msgctxt ""
-"03101140.xhp\n"
-"par_idN105D3\n"
-"help.text"
-msgid "sStr=String ' sStr is an implicit string variable"
-msgstr "sStr=String REM sStr is an implicit string variable"
-
-#: 03060000.xhp
-msgctxt ""
-"03060000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Logical Operators"
-msgstr "ogejjii yaayaa"
-
-#: 03060000.xhp
-msgctxt ""
-"03060000.xhp\n"
-"hd_id3147559\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03060000.xhp\" name=\"Logical Operators\">Logical Operators</link>"
-msgstr "<link href=\"text/sbasic/shared/03060000.xhp\" name=\"Logical Operators\">ogeejjii yaayaa</link>"
-
-#: 03060000.xhp
-msgctxt ""
-"03060000.xhp\n"
-"par_id3153379\n"
-"2\n"
-"help.text"
-msgid "The following logical operators are supported by $[officename] Basic."
-msgstr "ogeejjii yaayaa armaan gadii $[officename]Basic n deeggaramu"
-
-#: 03060000.xhp
-msgctxt ""
-"03060000.xhp\n"
-"par_id3154138\n"
-"3\n"
-"help.text"
-msgid "Logical operators combine (bitwise) the contents of two expressions or variables, for example, to test if specific bits are set or not."
-msgstr "ogeejjii yaayaa qabeentota himanno ykn jijjiramaa lama walitti makuuf, fakkeenyaaf, laklamee murtaa'e qindeessuu ykn dhisuu yaaluuf"
-
-#: 03131900.xhp
+#: 03090404.xhp
msgctxt ""
-"03131900.xhp\n"
+"03090404.xhp\n"
"tit\n"
"help.text"
-msgid "GlobalScope [Runtime]"
-msgstr "Hundata [Runtime]"
+msgid "End Statement [Runtime]"
+msgstr "Hima xumura [Runtime]"
-#: 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>Faankishinii hundataa</bookmark_value><bookmark_value>sirnoota mankitaabaa</bookmark_value><bookmark_value>QabiyyooMankitaabaa</bookmark_value><bookmark_value>Bu'uuraMankitaabaa (LibraryContainer)</bookmark_value><bookmark_value>MankitaabaQaaqaa (LibraryContainer)</bookmark_value>"
+msgid "<bookmark_value>End statement</bookmark_value>"
+msgstr "<bookmark_value>Hima xumura</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 [Runtime]\">Hundata [Runtime]</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 Statement [Runtime]\">Hima xumura [Runtime]</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 "Bu'urri lakkadda maddaa fi qaaqawwanii sirna mankitaabaa keessaatti qindeeffamu."
+msgid "Ends a procedure or block."
+msgstr "Adeemsa ykn garee xumuruu."
-#: 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 "Qabiyyoon mankitaabaa mankitaabota of keessaa qaba"
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 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 "Mankitaabotni muraawwanii fi Qaaqawwan qabaachuu ni danda'u"
+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 keessatti:"
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 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 "Qabiyyoon mankitaabaa <emph>MankitaabaQaaqaa</emph> waama."
+msgid "Use the End statement as follows:"
+msgstr "Hima Xumuraa akka arman gaditti fayyadami"
-#: 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 "Qaaqa keessatti:"
+msgid "Statement"
+msgstr "himoota"
-#: 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 "Qabiyyoon mankitaabaa <emph>MankitaabaQaaqaa</emph> waama."
+msgid "End: Is not required, but can be entered anywhere within a procedure to end the program execution."
+msgstr "Xumura:hin barbaachiftu,garuu adeemsa keessatti iddoo fedhe galuu dandeessi sagantaa raawwii xumuruuf."
-#: 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 "Qabiyyoon mankitaabaa lachuu sadarkaa raawwii fi galmee mara keessa jiru. Galmee Basic qabiyyoo mankitaabaa keessatti qabiyyoon galmee mankitaabaa ufmaan waamamu. Qabiyyoo mankitaabaa hundataa yoo galmee keessumatti waamuu barbaadde, Jefuraa <emph>Hundata</emph> tti fayyadamuu qabda."
+msgid "End Function: Ends a <emph>Function</emph> statement."
+msgstr "End Function:Hima<emph>Faankshinii</emph> xumuri."
-#: 03131900.xhp
+#: 03090404.xhp
msgctxt ""
-"03131900.xhp\n"
-"hd_id3148920\n"
+"03090404.xhp\n"
+"par_id3153192\n"
"10\n"
"help.text"
-msgid "Syntax:"
-msgstr "Caasimaa:"
+msgid "End If: Marks the end of a <emph>If...Then...Else</emph> block."
+msgstr "End If:xumura garee <emph>If...Then...Else</emph> mallattoo godhi."
-#: 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: xumura garee <emph>Select Case</emph> mallattoo godhi."
-#: 03131900.xhp
+#: 03090404.xhp
msgctxt ""
-"03131900.xhp\n"
-"hd_id3154685\n"
+"03090404.xhp\n"
+"par_id3155131\n"
"12\n"
"help.text"
-msgid "Example:"
-msgstr "Fakkeenya:"
+msgid "End Sub: Ends a <emph>Sub</emph> statement."
+msgstr "End Sub: Hima <emph>Sub</emph> xumuri."
-#: 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 "Fakkeenya galmee Basic keessa"
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 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 "' calling Dialog1 in the document library Standard"
+msgid "Print \"Number from 1 to 5\""
+msgstr "Print \"Number from 1 to 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 \"Number from 6 to 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 "' calling Dialog2 in the application library Library1"
+msgid "Print \"Greater than 8\""
+msgstr "Print \"Greater than 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 \"Outside range 1 to 10\""
-#: 03030203.xhp
+#: 03090405.xhp
msgctxt ""
-"03030203.xhp\n"
+"03090405.xhp\n"
"tit\n"
"help.text"
-msgid "Now Function [Runtime]"
-msgstr "Faankishinii Ammaa [Runtime]"
+msgid "FreeLibrary Function [Runtime]"
+msgstr "Faankishiinii Manbarroo Bilisaa[Runtime]"
-#: 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>Faankishinii Ammaa</bookmark_value>"
+msgid "<bookmark_value>FreeLibrary function</bookmark_value>"
+msgstr "<bookmark_value>Faankishiinii Manbarroo Bilisaa</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 Function [Runtime]\">Faankishinii Ammaa[Runtime]</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 Function [Runtime]\">Faankishiinii FiriiLaybrarii[Runtime]</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 "Sirna guyyaa fi yeroo ammaa akka gatii <emph>Date</emph> ti deebisi."
+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 kan hima labsameen fe'ame baasi. DLL n bahe ofumaan deebi'ee fe'ama yoo faankshiniin isaa keessaa tokko waamame.Dabalataan ilaali: <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 "Caasima:"
+msgstr "caasimaa:"
-#: 03030203.xhp
+#: 03090405.xhp
msgctxt ""
-"03030203.xhp\n"
-"par_id3149655\n"
+"03090405.xhp\n"
+"par_id3153361\n"
"4\n"
"help.text"
-msgid "Now"
-msgstr "Amma"
+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 "Gatii debebisi:"
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 03030203.xhp
+#: 03090405.xhp
msgctxt ""
-"03030203.xhp\n"
-"par_id3154909\n"
+"03090405.xhp\n"
+"par_id3154138\n"
"6\n"
"help.text"
-msgid "Date"
-msgstr "Guyyaa"
+msgid "<emph>LibName:</emph> String expression that specifies the name of the DLL."
+msgstr "<emph>LibName:</emph> Himannoon diraa kan maqaa DLL ibsuu dha."
-#: 03030203.xhp
+#: 03090405.xhp
msgctxt ""
-"03030203.xhp\n"
-"hd_id3147229\n"
+"03090405.xhp\n"
+"par_id3146923\n"
"7\n"
"help.text"
-msgid "Example:"
-msgstr "Fakkeenya:"
-
-#: 03030203.xhp
-#, fuzzy
-msgctxt ""
-"03030203.xhp\n"
-"par_id3150870\n"
-"9\n"
-"help.text"
-msgid "MsgBox \"It is now \" & Now"
-msgstr "msgbox \"Ammi \" & Now"
-
-#: 03100000.xhp
-msgctxt ""
-"03100000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Variables"
-msgstr "Jijjiiramtoota"
-
-#: 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=\"Variables\">Jijjiiramtoota</link>"
+msgid "FreeLibrary can only release DLLs that are loaded during Basic runtime."
+msgstr "FiriiLaybrariin DLLs yeroo Bu'uura sa'aa darbe fe'ame qofa baasuu danda'a."
-#: 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 "Himoonni fi faankshinoonni armaan gadii jijjiiramtoota walii dalaguuf.Jijjiiramtoota ibsuuf ykn qindeessuuf,jijjiiramtoota gosa tokkorraa gara birootti geeddaruuf,ykn gosa jijjiiramaa murteessuuf faankshinoota kana fayyadamuu dandeessa."
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 03080103.xhp
+#: 03090406.xhp
msgctxt ""
-"03080103.xhp\n"
+"03090406.xhp\n"
"tit\n"
"help.text"
-msgid "Sin Function [Runtime]"
-msgstr "Faankishinii Saayinii[Runtime]"
+msgid "Function Statement [Runtime]"
+msgstr "Hima Faankishiinii [Runtime]"
-#: 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>funkishinii Saayiniidogongora</bookmark_value>"
+msgid "<bookmark_value>Function statement</bookmark_value>"
+msgstr "<bookmark_value>Hima Faankishiinii</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 Function [Runtime]\">Faankishinii Saayinii [Runtime]</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 Statement [Runtime]\">Hima Faankishiinii [Runtime]</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 "Sayiinii kofa deebisi.Kofni raadiyaaniin ibsama.Gatiin gidduu -1 fi 1 oola."
+msgid "Defines a subroutine that can be used as an expression to determine a return type."
+msgstr "Gosa deebii murteessuuf sagantaa xiqqaa akka himannootti fayyaduu danda'u qindeessi."
-#: 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 "kafa Aalfaa fayyadamuun,faankishiniin Saayinii reeshoo dheerina raga faallaa kofaa gara dheerina haayipootinasii rog-sadee sirrii deebisa."
+msgid "Syntax"
+msgstr "Caasimaa:"
-#: 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(Alpha) = side opposite the angle/hypotenuse"
+msgid "see Parameter"
+msgstr "Ulaagaalee ilaali"
-#: 03080103.xhp
+#: 03090406.xhp
msgctxt ""
-"03080103.xhp\n"
-"hd_id3147230\n"
+"03090406.xhp\n"
+"hd_id3154760\n"
"5\n"
"help.text"
-msgid "Syntax:"
-msgstr "Caasimaa:"
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 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 "Caasimaa:"
-#: 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 "Gatii deebii:"
+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 "Dachaa"
+msgid "statement block"
+msgstr "garee himaa"
-#: 03080103.xhp
+#: 03090406.xhp
msgctxt ""
-"03080103.xhp\n"
-"hd_id3155132\n"
+"03090406.xhp\n"
+"par_id3148797\n"
"9\n"
"help.text"
-msgid "Parameters:"
-msgstr "Ulaagaalee"
+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>Lakkoofsa:</emph> Himannoon lakkoofsa kofa raadiyaaniin kan mul'isu Saayinii shallaguu barbaaddef."
+msgid "statement block"
+msgstr "garee himaa"
-#: 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 "Diigrii gara raadiyaaniitti jijjiiruuf, diigrii pi/180 tiin baay'si. Raadiyaanii gara diigritti jijjiiruuf 180/pi tiin baay'isi."
+msgid "End Function"
+msgstr "Faankishiinii Xumuraa"
-#: 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 "grad=(radiant*180)/pi"
+msgid "Parameter"
+msgstr "Ulaagaalee:"
-#: 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 "radiant=(grad*pi)/180"
+msgid "<emph>Name:</emph> Name of the subroutine to contain the value returned by the function."
+msgstr "<emph>Maqaa:</emph> Maqaa sagantaa xiqqaa gatii faankishiniidhan deebi'u qabatuuf."
-#: 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 is approximately 3.141593."
+msgid "<emph>VarName:</emph> Parameter to be passed to the subroutine."
+msgstr "<emph>VarName:</emph> Ulaagaalee sagantaa xiqqaatti darbe."
-#: 03080103.xhp
+#: 03090406.xhp
msgctxt ""
-"03080103.xhp\n"
-"hd_id3163712\n"
+"03090406.xhp\n"
+"par_id3147287\n"
"15\n"
"help.text"
-msgid "Example:"
-msgstr "Fakkeenya:"
+msgid "<emph>Type:</emph> Type-declaration keyword."
+msgstr "<emph>Gosa:</emph> Jefuraa gos-ibsituu."
-#: 03080103.xhp
-#, fuzzy
+#: 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 "REM Fakkeenya kana keessaatti, aseentuun rog-sadee sirrii armaan gadiif ni danda'ama."
-
-#: 03080103.xhp
-#, fuzzy
-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 "REM rogni faallaa kofaa fi kofni(diigriidhaan)dheerina hayipootinasii shallaguuf."
-
-#: 03080103.xhp
-#, fuzzy
-msgctxt ""
-"03080103.xhp\n"
-"par_id3150011\n"
-"19\n"
-"help.text"
-msgid "' Pi = 3.1415926 is a predefined variable"
-msgstr "REM Pi = 3.1415926 is a predefined variable"
-
-#: 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$ (\"Enter the length of the opposite side: \",\"Opposite Side\")"
-
-#: 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$ (\"Enter the angle Alpha (in degrees): \",\"Alpha\")"
-
-#: 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 \"The length of the hypotenuse is\"; (d1 / sin (dAlpha * Pi / 180))"
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 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 "Fankishinii Qabannoo Dogogora"
+msgid "For siStep = 0 To 10 ' Fill array with test data"
+msgstr "For siStep = 0 to 10 REM Fill array with test data"
-#: 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=\"Error-Handling Functions\">Fankishinii Qabannoo Dogogora</link>"
+msgid "' Linsearch searches a TextArray:sList() for a TextEntry:"
+msgstr "REM Linsearch searches a TextArray:sList() for a 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 "Himootaa fi faankishinii armaan gadii fayyadani $[officename] Bu'uura dogogora ka'uumasa dabalgochuuf."
+msgid "' Return value Is the index of the entry Or 0 (Null)"
+msgstr "REM Gatiin deebii kasaa galtuu ykn 0(Null)dha."
-#: 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] Maloota garaagaraa yommuu dogogorrii sa'aa darbee saganticha itti uumamu kenna."
+msgid "Exit For ' sItem found"
+msgstr "Exit for REM sItem found"
-#: 03102100.xhp
+#: 03090407.xhp
msgctxt ""
-"03102100.xhp\n"
+"03090407.xhp\n"
"tit\n"
"help.text"
-msgid "Dim Statement [Runtime]"
-msgstr "Hima Dim [Runtime]"
+msgid "Rem Statement [Runtime]"
+msgstr "Hima Rem [Runtime]"
-#: 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>Hima Dim</bookmark_value><bookmark_value>arrays; dimensioning</bookmark_value><bookmark_value>dimensioning arrays</bookmark_value>"
+msgid "<bookmark_value>Rem statement</bookmark_value><bookmark_value>comments;Rem statement</bookmark_value>"
+msgstr "<bookmark_value>Hima Rem </bookmark_value><bookmark_value>yaadota;hima Rem</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 Statement [Runtime]\">Hima Dim [Runtime]</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 Statement [Runtime]\">Hima Rem [Runtime]</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 "Jijjiiramaa ykn waraantoo labsuu."
+msgid "Specifies that a program line is a comment."
+msgstr "sararri sagantaa sun yaada qabu ibsi."
-#: 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 "Yoo jijjiiramoonii qoodduudhaan adda bahu ta'ee (fakkeenyaaf, DIM sPar1, sPar2, sPar3 AS STRING), jijjiiramoota haaroman qofatu murtaawa. Tokkoon tokkoon jijjiiramaatiif sarara murtaawoo addabaassaa fayyadami."
-
-#: 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 declares local variables within subroutines. Global variables are declared with the PUBLIC or the PRIVATE statement."
-
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"hd_id3156443\n"
-"8\n"
-"help.text"
msgid "Syntax:"
-msgstr "Caasimaa:"
+msgstr "caasimaa:"
-#: 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 "Ulaagaalee:"
-#: 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> Maqaa jijjiiramaa ykn waraantoo kamuu."
-
-#: 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> Gatiin lakkoofsaa ykn seranaa kan lakkofsa miseensota(NumberElements=(end-start)+1) fi hangii kasaa ifteessan."
-
-#: 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 "Yoo RemDim sadarkaa adeemsarratti dalagame Start fi End himannoowwan lakkoofsaa ta'uu danda'u."
-
-#: 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> Jefuraan kan akaakuu deetaa jijjiiramaa labsu."
-
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3154015\n"
-"15\n"
-"help.text"
-msgid "<emph>Keyword:</emph> Variable type"
-msgstr "<emph>Jefuraa:</emph> Akaakuu jijjiiramaa"
-
-#: 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> Jijjiiramaa Buuliyaanii(Dhugaa, Soba)"
-
-#: 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>Mahaallaqa:</emph> Jijjiiramaa mahaallaqaa (Mahaallaqa hanga bakka kurniyee 4)"
-
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3156057\n"
-"18\n"
-"help.text"
-msgid "<emph>Date:</emph> Date variable"
-msgstr "<emph>Guyyaa:</emph> Jijjiirama guyyaa"
-
-#: 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>Dachaa:</emph> Jijjiiramaa sirrummaa-dachaa tuqaa bololi'aa variable (1,79769313486232 x 10E308 - 4,94065645841247 x 10E-324)"
-
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3148916\n"
-"20\n"
-"help.text"
-msgid "<emph>Integer:</emph> Integer variable (-32768 - 32767)"
-msgstr "<emph>Itergaa:</emph> Jijjiirama Itergaa (-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>Dheeraa:</emph> Jijjiirama itergaa dheeraa (-2.147.483.648 - 2.147.483.647)"
-
-#: 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>Wanta:</emph> Jijjiirama wantaa (hubachiisa: Jijjiiramaan kun tuuta waliin qofa tartiiban ifteeffamuu danda'a!)"
-
-#: 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>Baxxee:</emph> Jijjiiramaa sirrummaa-baxxee tuqaa bololi'aa variable (3,402823 x 10E38 - 1,401298 x 10E-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>Diraa:</emph> Jijjiiramaa diraan arfoota ASCII alaantoo 64,000 of keessaa qaba."
-
-#: 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> Akaakuu jijjiiramaa addaba'aa(akaakuu hunda hiikkoon ifteefame of keessaa qaba)."
+msgid "<emph>Text:</emph> Any text that serves as a comment."
+msgstr "<emph>Barruu:</emph> Barruu kamuu akka yaadatti gargaaran."
-#: 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 keessatti, jijjiiramtoota ifaan labsuun si barbaachisu. Haa ta'u malee, waraantoo fayyadamuun dura labsuu si barbaachisa. Jijjiiramaa hima Dim wajjiin labsuu dandeessa, labsoota baay'ee addan baasuuf qoodduu fayyadamuu. Akaakuu jijjiiramaa labsuuf, arfii akaakuu labsii maqaa duuka bu'utti galchi ykn jefuraa walitti dhufoo fayyadami."
+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 "barruun sarara irraa yaada ta'u isaa agarsiisuuf mallattoo waraabbii qeenxee fayyadamuu dandeessa.Mallattoon kun kallattiin gara harka mirga kalladdaa sagantaa galuu danda'a,yaadan duuka bu'ama."
-#: 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 waraantoo rog-baaqqee ykn danuu kan akaakuu jijjiiramaan ifteefame gargaara. Yoo sagantaan tarree ykn gabatee gulaaluu barbaaddu qabaate waraantoon mijaawadha. Bu'aan waraantoo miseensota tokkoo tokkoo akkaataa kasootatti furuu danda'uu, kan akka himannoo ykn jijjiiramaa lakkoofsaatti ashakame."
+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 "Arfiilee jalmuraa, iddootti aanan _ akka arfiilee laman warra dhumaa kan sarara tokko itti fufuuf, sarara yaayaa sarara itti aanuu irraa fayyadamuu nidandeessa. Sararoota yaadaa itti fufuudhaaf, moojulii Basic warra tokkicha ta'aan keessatti \"walta'oo Dirqalaa\" galchuu qabda."
-#: 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 "Waraantoon hima Dim waliin labsama. Hangii kasaa tooftaa laman ifteeffama."
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 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 elements numbered from 0 to 20"
+msgid "' Nothing occurs here"
+msgstr "REM Nothing occurs here"
-#: 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 elements numbered from 5 to 25"
+msgid "Stop Statement [Runtime]"
+msgstr "Hima Dhaabuu [Runtime]"
-#: 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 elements (including 0)"
+msgid "<bookmark_value>Stop statement</bookmark_value>"
+msgstr "<bookmark_value>Hima Dhaabuu</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 numbered from -15 to 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 Statement [Runtime]\">Hima Dhaabuu [Runtime]</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 "Dirree deetaa rog-lamee"
+msgid "Stops the execution of the Basic program."
+msgstr "Raawwii Bu'uura sagantaa dhaabi."
-#: 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 elements; form 0 to 20 level 1, from 0 to 20 level 2 and from 0 to 20 level 3."
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 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 "Yoo himni ReDim lakkoofsa rogootaa sagantaa xiqqaa ykn faankshinii waraantoo qabu keessatti qindeesse, akaakuu waraantoo akka kamaatiitti labsuu dandeessa.Walumaa galatti, waraantoo rogaa altokkoo qofa qindeessuu dandeessa,haarumsuu hin dandeessu. Sagantaa xiqqaa keessaatti, waraantoo ReDim wajjin labsuu dandeessa. Roga himannoowwan lakkoofsaa wajjin qofa ifteessuu dandeessa. Kun dirree hamma guddachuu barbaachisu qofa dhugoomsuuf."
+msgid "Stop"
+msgstr "Dhaabi"
-#: 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 "Fakkeenya:"
-#: 03102100.xhp
-#, fuzzy
-msgctxt ""
-"03102100.xhp\n"
-"par_id3154657\n"
-"40\n"
-"help.text"
-msgid "sVar = \"Office\""
-msgstr "sVar = \"Office\""
-
-#: 03102100.xhp
-#, fuzzy
-msgctxt ""
-"03102100.xhp\n"
-"par_id3149036\n"
-"44\n"
-"help.text"
-msgid "' Two-dimensional data field"
-msgstr "Dirree deetaa rog-lamee"
-
-#: 03102100.xhp
-#, fuzzy
-msgctxt ""
-"03102100.xhp\n"
-"par_id3153782\n"
-"46\n"
-"help.text"
-msgid "Const sDim As String = \" Dimension:\""
-msgstr "Const sDim as String = \" Dimension:\""
-
-#: 03020102.xhp
+#: 03090409.xhp
msgctxt ""
-"03020102.xhp\n"
+"03090409.xhp\n"
"tit\n"
"help.text"
-msgid "FreeFile Function[Runtime]"
-msgstr "Faankishinii[Runtime] Faayilii Duwwaa"
+msgid "Sub Statement [Runtime]"
+msgstr "Hima Sub [Runtime]"
-#: 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>Faankishinii Faayilii Duwwaa</bookmark_value>"
+msgid "<bookmark_value>Sub statement</bookmark_value>"
+msgstr "<bookmark_value>Hima 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 Function[Runtime]\">Faankishinii[Runtime] Faayilii Duwwaa</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 Statement [Runtime]\">Hima Sub [Runtime]</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 "Faayilii banameef lakkoofsa faayilii itti aanuun argamu deebisi. Lakkoofsa faayilii kan duranuu faayilii ammee banameen hin gargaaramne gargaaramuun faayilii banuuf faankishinii kannatti gargaarami."
+msgid "Defines a subroutine."
+msgstr "sagantaa xiqqaa qindeessi."
-#: 03020102.xhp
+#: 03090409.xhp
msgctxt ""
-"03020102.xhp\n"
-"hd_id3150769\n"
+"03090409.xhp\n"
+"hd_id3149416\n"
"3\n"
"help.text"
-msgid "Syntax:"
+msgid "Syntax"
msgstr "Caasimaa:"
-#: 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 "Gatii deebii:"
+msgid "statement block"
+msgstr "garee himaa"
-#: 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 "Intergaa"
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 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 "Ulaagaalee:"
+msgid "<emph>Name:</emph> Name of the subroutine ."
+msgstr "<emph>Maqaa:</emph> Maqaa sagantaa xiqqaa."
-#: 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 "Faankishiniin kun hima baname duratti hatatamaan gargaara.Faayiliin Duwwaan lakkoofsa faayilii itti aanee argamu deebisa, garuu faallaa hin godhu."
+msgid "<emph>VarName: </emph>Parameter that you want to pass to the subroutine."
+msgstr "<emph>VarName: </emph>Ulaagaalee gara sagantaa xiqqaatti dabarsuu barbaadde."
-#: 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 "Fakkeenya:"
+msgid "<emph>Type:</emph> Type-declaration key word."
+msgstr "<emph>Gosa:</emph> Jefuraa gos-ibsituu."
-#: 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, \"First line of text\""
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 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, \"Another line of text\""
+msgid "' some statements"
+msgstr "REM some statements"
-#: 03120312.xhp
+#: 03090410.xhp
msgctxt ""
-"03120312.xhp\n"
+"03090410.xhp\n"
"tit\n"
"help.text"
-msgid "ConvertToURL Function [Runtime]"
-msgstr "ConvertToURL Function [Runtime]"
+msgid "Switch Function [Runtime]"
+msgstr "Faankishinii Jijjiirraa[Runtime]"
-#: 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 function</bookmark_value>"
+msgid "<bookmark_value>Switch function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii Jijjiirraa</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 Function [Runtime]\">ConvertToURL Function [Runtime]</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 Function [Runtime]\">Faankishinii Jijjiirraa[Runtime]</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 "Maqaa faayilii sirna gara faayilii URL itti jijjiira."
+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 "Tarreeffama qajeelfamootaa ,himannoo gatiin duuka bu'ame of keessaa qabu madaali.Faankishiiniin jijjiirraa gatii himannoo faankishinii kanaan darbe waliin walitti dhufeenya qabu deebisa."
-#: 03120312.xhp
+#: 03090410.xhp
msgctxt ""
-"03120312.xhp\n"
-"hd_id3150669\n"
+"03090410.xhp\n"
+"hd_id3154863\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasimaa:"
+msgstr "caasimaa:"
-#: 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 "Gatii deebii:"
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 03120312.xhp
+#: 03090410.xhp
msgctxt ""
-"03120312.xhp\n"
-"par_id3147530\n"
+"03090410.xhp\n"
+"par_id3153894\n"
"6\n"
"help.text"
-msgid "String"
-msgstr "Diraa"
+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 "Faankishiiniin <emph>Jijjiirraa</emph> himannoo bitaa gara mirgaa tti maddali, achiin gatii himannoo faankshiniif ramadame deebisa. Yoo himannoo fi gatiin akka cimdiitti kennamuu baate, dogongorri sa'aa darbee ni uumama."
-#: 03120312.xhp
+#: 03090410.xhp
msgctxt ""
-"03120312.xhp\n"
-"hd_id3148550\n"
+"03090410.xhp\n"
+"par_id3153990\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Ulaagaa:"
+msgid "<emph>Expression:</emph> The expression that you want to evaluate."
+msgstr "<emph>Himannoo:</emph>Himannoo madaaluuf barbaadde."
-#: 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>Maqaafaayilii:</emph> Maqaa faayilii akka diraa."
+msgid "<emph>Value:</emph> The value that you want to return if the expression is True."
+msgstr "<emph>Gatii:</emph> Yoo himannoon Dhugaa ta'e, gatii deebisuuf barbaadde."
-#: 03120312.xhp
+#: 03090410.xhp
msgctxt ""
-"03120312.xhp\n"
-"hd_id3153361\n"
+"03090410.xhp\n"
+"par_id3153346\n"
"9\n"
"help.text"
-msgid "Example:"
-msgstr "Fakkeenya:"
+msgid "In the following example, the <emph>Switch</emph> function assigns the appropriate gender to the name that is passed to the function:"
+msgstr "Fakkeenya armaan gadii keessatti faankshiniin <emph>Switch</emph> maqaa faankishiniitti darbeef korniyaa mijaa'aa ramada."
-#: 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 "Fakkeenya:"
-#: 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( \"John\" )"
-#: 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 = \"Jane\", \"female\", sName = \"John\", \"male\")"
-#: 03103700.xhp
+#: 03090411.xhp
msgctxt ""
-"03103700.xhp\n"
+"03090411.xhp\n"
"tit\n"
"help.text"
-msgid "Set Statement[Runtime]"
-msgstr "Hima Qindeessi[Runtime]"
+msgid "With Statement [Runtime]"
+msgstr "Hima With [Runtime]"
-#: 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>Hima Qindeessi</bookmark_value><bookmark_value>Wanta omaa</bookmark_value>"
+msgid "<bookmark_value>With statement</bookmark_value>"
+msgstr "<bookmark_value>Hima 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 Statement[Runtime]\">Hima Qindeessi [Runtime]</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 Statement [Runtime]\">Hima With [Runtime]</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 "Jijjiiramaa ykn amala irratti wabii wantaa qindeessa."
+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 "Wanta akka durtii wantaatti qindeessi. Hanga maqaan wanta biroo hin labsamnetti, amaloonni fi tooftan hundi durtii wantaa ibsu hanga himni End With gahutti."
-#: 03103700.xhp
+#: 03090411.xhp
msgctxt ""
-"03103700.xhp\n"
-"hd_id3153105\n"
+"03090411.xhp\n"
+"hd_id3156153\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasimaa:"
+msgstr "caasimaa:"
-#: 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 "Garee End With Hima Wantaa wajjin"
-#: 03103700.xhp
+#: 03090411.xhp
msgctxt ""
-"03103700.xhp\n"
-"hd_id3154685\n"
+"03090411.xhp\n"
+"hd_id3154924\n"
"5\n"
"help.text"
msgid "Parameters:"
msgstr "Ulaagaalee:"
-#: 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> Jijjiiramaa ykn amala wabii wantaa barbaadu dha."
-
-#: 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>Wanta:</emph>Wanta jijjiiramaan ykn amalli wabeeffatu dha."
-
-#: 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>Omtiyyuu</emph> - Ramaddii duraa haquuf, wanta <emph>Omtiyyuu</emph> jedhu jijjiiramaaf ramada."
-
-#: 03103700.xhp
-msgctxt ""
-"03103700.xhp\n"
-"hd_id3159153\n"
-"8\n"
-"help.text"
-msgid "Example:"
-msgstr "Fakkeenya:"
+msgid "Use <emph>With</emph> and <emph>End With</emph> if you have several properties or methods for a single object."
+msgstr "yoo amaloota ykn toftaa baay'ee wanta baaqqeef qabaatte <emph>With</emph> fi <emph>End With</emph> fayyadami."
-#: 03101300.xhp
+#: 03090412.xhp
msgctxt ""
-"03101300.xhp\n"
+"03090412.xhp\n"
"tit\n"
"help.text"
-msgid "DefDate Statement [Runtime]"
-msgstr "Hima DefDate [Runtime]"
+msgid "Exit Statement [Runtime]"
+msgstr "Hima Exit [Runtime]"
-#: 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>Hima DefDate</bookmark_value>"
+msgid "<bookmark_value>Exit statement</bookmark_value>"
+msgstr "<bookmark_value>Hima 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 Statement [Runtime]\">Hima DefDate [Runtime]</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 Statement [Runtime]\">Hima Exit [Runtime]</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 "Yoo arfiin akaakuu labsii ykn jefuraa hin ifteeffamne,himni DefDate akaakuu jijjiiramaa durtii qindeessa,akkaataa hangii qubeen."
+msgid "Exits a <emph>Do...Loop</emph>, <emph>For...Next</emph>, a function, or a subroutine."
+msgstr "Bayiitii faankishiinii,ykn sagantaa xiqqaa ,<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 "Caasimaa:"
+msgstr "caasimaa:"
-#: 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 "Ulaagaalee ilaali"
-#: 03101300.xhp
+#: 03090412.xhp
msgctxt ""
-"03101300.xhp\n"
-"hd_id3150541\n"
+"03090412.xhp\n"
+"hd_id3148943\n"
"5\n"
"help.text"
msgid "Parameters:"
msgstr "Ulaagaalee:"
-#: 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>Hangiiarfii:</emph> Qubeewwan kan hangii jijjiiramtootaa kan akaakuu deetaa durtii qindeessuu barbaaddu ifteessan."
+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> Jefuraan kan akaakuu jijjiiramaa durtii qindeessu:"
+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 "Marsaa keessaa ba'uuf, hima <emph>Do...Loop</emph> gitaa'aa qofan danda'ama. marsaa keessaa ba'uuf. Sagantaan raawwii hima kan hima marsaa duuka bu'u wajjin itti fufa. Yoo himoonni <emph>Do...Loop</emph> wal keessa galan, too'annaan marsaa sadarkaa olaanaa itti aanutti darba."
-#: 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>Jefuraa:</emph> Akaakuu jijjiiramaa durtii"
+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> Guyyaa"
+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 "Marsaa keessaa ba'uuf marsaa <emph>For...Next</emph> gitaa'aa qofaan danda'ama. Sagantaan raawwii hima jalqabaa kan hima <emph>Next</emph> duuka bu'u wajjin wajjiin itti fufa. Himoota walkeessa galan keessatti, too'annaan marsaa sadarkaa olaanaa itti aanutti darba."
-#: 03101300.xhp
+#: 03090412.xhp
msgctxt ""
-"03101300.xhp\n"
-"hd_id3153768\n"
+"03090412.xhp\n"
+"par_id3147229\n"
"10\n"
"help.text"
-msgid "Example:"
-msgstr "Fakkeenya:"
-
-#: 03101300.xhp
-#, fuzzy
-msgctxt ""
-"03101300.xhp\n"
-"par_id3145785\n"
-"12\n"
-"help.text"
-msgid "' Prefix definitions for variable types:"
-msgstr "REM hiika huddeelsoo akaakuu jijjiiramaaf:"
-
-#: 03101300.xhp
-#, fuzzy
-msgctxt ""
-"03101300.xhp\n"
-"par_id3152462\n"
-"22\n"
-"help.text"
-msgid "tDate=Date ' tDate is an implicit date variable"
-msgstr "tDate=Date REM tDate is an implicit date variable"
-
-#: 01020500.xhp
-msgctxt ""
-"01020500.xhp\n"
-"tit\n"
-"help.text"
-msgid "Libraries, Modules and Dialogs"
-msgstr "Manbarroo, Mojuulii fi Qaaqalee"
-
-#: 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=\"Libraries, Modules and Dialogs\">Manbarroo, Mojuulii fi Qaaqalee</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 "Kanneen armaan gadii tajaajila guddaa manbarroo, mojuulii fi qaaqalee bu`uura $[officename] keessattii ibsu."
-
-#: 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 "Bu`uuri $[officename] projektii caaseessuuf kamshaalee kennuu tajaajila. Deggarsa \"units\" adda addaa kan projektii bu`uuraa keessatti tokko tokkoo SUBS fi FUNCTIONS ramaduuf nu danddeesisan kenna."
-
-#: 01020500.xhp
-msgctxt ""
-"01020500.xhp\n"
-"hd_id3148575\n"
-"5\n"
-"help.text"
-msgid "Libraries"
-msgstr "Manbarroo"
-
-#: 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 "Manbarroon akka kamshaatti mojuulii qindddeessuf, yookiin galmeetti yookiin qajojiitti miltoo ta`uuf gargaara. Yeroo galmeen yookiin qajojiin olkaa`amu, mojuuliin manbarroo keessatti qabaman ofumaan oltaa`u."
-
-#: 01020500.xhp
-msgctxt ""
-"01020500.xhp\n"
-"par_id3151112\n"
-"7\n"
-"help.text"
-msgid "A library can contain up to 16,000 modules."
-msgstr "Manbarroon mojuulii hanga 16,000 qabaachuu ni danda`u."
-
-#: 01020500.xhp
-msgctxt ""
-"01020500.xhp\n"
-"hd_id3149262\n"
-"8\n"
-"help.text"
-msgid "Modules"
-msgstr "Mojuulii"
-
-#: 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 "Mojuuliin SUBS fi FUNCTIONS ibsa jijjiiramaa wajjin qabata."
+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 "Mojuulii Qaaqa"
+msgid "Exits the <emph>Function</emph> procedure immediately. Program execution continues with the statement that follows the <emph>Function</emph> call."
+msgstr "Adeemsa <emph>Faankishinii</emph> yeruma san baasi. Sagantaan raawwii hima kan waamichaa <emph>Faankishinii</emph> duuka bu'u wajjiin itti fufa."
-#: 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 "Mojuuliin qaaqa hiika qaaqa, kan akk amaloota saaxinii qaaqa, amaloota tokko tokko maalimaa qaaqa fi mudatoota ramadaman ofkeessatti qabata.Mojuuliin qaaqa baaxxee qaaqa qofa ijaa qabaatuuf, takka takka \"dialogs\" jedhama."
-
-#: 03030000.xhp
-msgctxt ""
-"03030000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Date and Time Functions"
-msgstr "Faankishinii Guyyaa fi yeroo"
-
-#: 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=\"Date and Time Functions\">Guyyaa fi yeroo Functions</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 "Himootaa fi faankishinoota asitti ibsaman guyyaa fi yeroo herreeguuf fayyadami."
+msgid "Exits the subroutine immediately. Program execution continues with the statement that follows the <emph>Sub</emph> call."
+msgstr "Sagantaa xiqqaa yeruma san baasi.Sagantaan raawwii hima waamichaa <emph>Sub</emph> duuka bu'u wajjiin itti fufa."
-#: 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> Bu'uurri garagarummaa yeroo ykn guyyaa gara yeroo fi guyyaa ittifufaa gatii numeerikaalaati geedara. Erga garaagarumman shallagamee booda faankishinoonni adda ta'an gatii yeroo waaltinaatti ykn guyyaa akkataa qophii ti irra deebi'ee geedara."
+msgid "The Exit statement does not define the end of a structure, and must not be confused with the End statement."
+msgstr "Himni Exit caasaa xumuraa hin qindeessuu, fi dirqama hima End wajjin dhiphachuu hin qabdu."
-#: 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 "Gatii guyyaa fi yeroo gara lakkoofsa qeenxee bololi'aa kurniitee walitti makuun ni dandeessa.Guyyaan gara itergaatti fi yeroon immo gara gatii kurniiteetti jijjiirame. <item type=\"productname\">%PRODUCTNAME</item> Kanamalees, bu'uurrii yeroo ibsame guyyaaa fi yeroo of keessaa qabu qosa guyyaa gegeedarama ni deegara."
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 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 "Too'annaa Sagantaa Raawwii"
+msgid "For siStep = 0 To 10 ' Fill array with test data"
+msgstr "For siStep = 0 to 10 REM Fill array with test data"
-#: 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=\"Controlling Program Execution\">Too'annaa Sagantaa Raawwii</link>"
+msgid "' LinSearch searches a TextArray:sList() for a TextEntry:"
+msgstr "REM LinSearch searches a TextArray:sList() for a 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 "Himoonni armaan gadii sagantaa rawwii too'atu."
+msgid "' Returns the index of the entry or 0 (Null)"
+msgstr "REM Returns the index of the entry or 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 "sagantaan waliigalatti lakkaddaa sarara jalqabaa irraa hanga lakkadda sarara xumuraatti raawwata. Itti dabaltees adeemsa murtaa'e kan sagantaa keessaa akkaataa adeemsa xixiqqaa ykn faankishiniitti raawwachuu dandeessa. Qaama sagantaa amma barbaachisu irra deddeebi'uuf marsaa fayyadamuu dandeessa,ykn hanga haalli ta'e murtaa'utti. Gosti too'annaa himoota akkanaa haala, marsaa, ykn utaalchoo himootatti qoodamu."
+msgid "Exit For ' sItem found"
+msgstr "Exit for REM sItem found"
-#: 03080000.xhp
+#: 03100000.xhp
msgctxt ""
-"03080000.xhp\n"
+"03100000.xhp\n"
"tit\n"
"help.text"
-msgid "Numeric Functions"
-msgstr "Faankishinoota lakkofsaa"
+msgid "Variables"
+msgstr "Jijjiiramtoota"
-#: 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=\"Numeric Functions\">Faankishinoota lakkoofsaa</link>"
+msgid "<link href=\"text/sbasic/shared/03100000.xhp\" name=\"Variables\">Variables</link>"
+msgstr "<link href=\"text/sbasic/shared/03100000.xhp\" name=\"Variables\">Jijjiiramtoota</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 "faankishinoonni lakkoofsa armaan gadii hediisa dalagu. Herreegni fi ogeejjiin Buuliyaanii kutaa addaatti ibsame.Faankishinoonni Ogeejjii irraa adda, faankishinoonni walii galtee dabarsuu fi bu'aa deebisuu yoo ta'u ogeejjiin immoo bu'aa himannoowwan lakkoofsaa lamaa walitti qabuun deebisa."
+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 "Himoonni fi faankshinoonni armaan gadii jijjiiramtoota walii dalaguuf.Jijjiiramtoota ibsuuf ykn qindeessuuf,jijjiiramtoota gosa tokkorraa gara birootti geeddaruuf,ykn gosa jijjiiramaa murteessuuf faankshinoota kana fayyadamuu dandeessa."
-#: 03120310.xhp
+#: 03100050.xhp
msgctxt ""
-"03120310.xhp\n"
+"03100050.xhp\n"
"tit\n"
"help.text"
-msgid "UCase Function [Runtime]"
-msgstr "Faankishinii UCase [Runtime]"
-
-#: 03120310.xhp
-msgctxt ""
-"03120310.xhp\n"
-"bm_id3153527\n"
-"help.text"
-msgid "<bookmark_value>UCase function</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii UCase</bookmark_value>"
-
-#: 03120310.xhp
-msgctxt ""
-"03120310.xhp\n"
-"hd_id3153527\n"
-"1\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 Function [Runtime]\">Faankishinii UCase [Runtime]</link>"
-
-#: 03120310.xhp
-msgctxt ""
-"03120310.xhp\n"
-"par_id3155420\n"
-"2\n"
-"help.text"
-msgid "Converts lowercase characters in a string to uppercase."
-msgstr "Qubee xixiqqaa diraa keesaa gara qubee gurguddaatti jijjiira."
-
-#: 03120310.xhp
-msgctxt ""
-"03120310.xhp\n"
-"par_id3150771\n"
-"3\n"
-"help.text"
-msgid "See also: <link href=\"text/sbasic/shared/03120302.xhp\" name=\"LCase Function\">LCase Function</link>"
-msgstr "Dabalataan: <link href=\"text/sbasic/shared/03120302.xhp\" name=\"LCase Function\">Faankishinii LCase</link> ilaali"
+msgid "CCur Function [Runtime]"
+msgstr "Faankishinii CCur[Runtime]"
-#: 03120310.xhp
+#: 03100050.xhp
msgctxt ""
-"03120310.xhp\n"
-"par_id3149233\n"
-"4\n"
+"03100050.xhp\n"
+"bm_id8926053\n"
"help.text"
-msgid "<emph>Syntax</emph>:"
-msgstr "<emph>Caasimaa</emph>:"
+msgid "<bookmark_value>CCur function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii CCur</bookmark_value>"
-#: 03120310.xhp
+#: 03100050.xhp
msgctxt ""
-"03120310.xhp\n"
-"par_id3153061\n"
-"5\n"
+"03100050.xhp\n"
+"par_idN10541\n"
"help.text"
-msgid "UCase (Text As String)"
-msgstr "UCase (Barruu akka diraatti)"
+msgid "<link href=\"text/sbasic/shared/03100050.xhp\">CCur Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03100050.xhp\">Faankishinii CCur [Runtime]</link>"
-#: 03120310.xhp
+#: 03100050.xhp
msgctxt ""
-"03120310.xhp\n"
-"par_id3159414\n"
-"6\n"
+"03100050.xhp\n"
+"par_idN10545\n"
"help.text"
-msgid "<emph>Return value</emph>:"
-msgstr "<emph>Gatii deebii</emph>:"
+msgid "Converts a string expression or numeric expression to a currency expression. The locale settings are used for decimal separators and currency symbols."
+msgstr "Himannoo diraa ykn himannoo lakkoofsaa gara himannoo mahaallaqaatti geeddari.Qubannaan gitoo biyyaa addaan baasaa kurnayee fi mallattoo mahaallaqaaf fayyade."
-#: 03120310.xhp
+#: 03100050.xhp
msgctxt ""
-"03120310.xhp\n"
-"par_id3146795\n"
-"7\n"
+"03100050.xhp\n"
+"par_idN10548\n"
"help.text"
-msgid "String"
-msgstr "Diraa"
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 03120310.xhp
+#: 03100050.xhp
msgctxt ""
-"03120310.xhp\n"
-"hd_id3149457\n"
-"8\n"
+"03100050.xhp\n"
+"par_idN105E8\n"
"help.text"
-msgid "Parameters:"
-msgstr "Ulaagaa:"
+msgid "CCur(Expression)"
+msgstr "CCur(Expression)"
-#: 03120310.xhp
+#: 03100050.xhp
msgctxt ""
-"03120310.xhp\n"
-"par_id3150791\n"
-"9\n"
+"03100050.xhp\n"
+"par_idN105EB\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression that you want to convert."
-msgstr "<emph>Barruu:</emph> Himata diraa kamiyyuu kan akka jijjiiramu barbaaddu dha."
+msgid "Return value:"
+msgstr "Gatii deebii:"
-#: 03120310.xhp
+#: 03100050.xhp
msgctxt ""
-"03120310.xhp\n"
-"hd_id3154125\n"
-"10\n"
+"03100050.xhp\n"
+"par_idN105EF\n"
"help.text"
-msgid "Example:"
-msgstr "Fakkeenya:"
+msgid "Currency"
+msgstr "Mahaallaqa"
-#: 03120310.xhp
-#, fuzzy
+#: 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) REM returns \"las vegas\""
+msgid "Parameter:"
+msgstr "ulaagaa:"
-#: 03120310.xhp
-#, fuzzy
+#: 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) REM returns \"LAS VEGAS\""
+msgid "Expression: Any string or numeric expression that you want to convert."
+msgstr "Himannoo:Himannoo diraa ykn lakkoofsaa kamuu geeddaruu barbaadde."
#: 03100060.xhp
msgctxt ""
@@ -20618,7 +23855,7 @@ msgctxt ""
"par_idN1055B\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasimaa:"
+msgstr "caasimaa:"
#: 03100060.xhp
msgctxt ""
@@ -20634,7 +23871,7 @@ msgctxt ""
"par_idN105ED\n"
"help.text"
msgid "Return value:"
-msgstr "Gatii Deebii:"
+msgstr "Gatii deebii:"
#: 03100060.xhp
msgctxt ""
@@ -20650,7 +23887,7 @@ msgctxt ""
"par_idN105F4\n"
"help.text"
msgid "Parameter:"
-msgstr "Ulaagaalee:"
+msgstr "ulaagaa:"
#: 03100060.xhp
msgctxt ""
@@ -20660,1004 +23897,873 @@ msgctxt ""
msgid "Expression: Any string or numeric expression that you want to convert."
msgstr "Himannoo:Himannoo diraa ykn lakkoofsaa kamuu geeddaruu barbaadde."
-#: 01040000.xhp
+#: 03100070.xhp
msgctxt ""
-"01040000.xhp\n"
+"03100070.xhp\n"
"tit\n"
"help.text"
-msgid "Event-Driven Macros"
-msgstr "Ooftuu Mudata Maakroosi"
+msgid "CVar Function [Runtime]"
+msgstr "Faankishinii CVar[Runtime]"
-#: 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>haquu; maayikiroo ramada muudataaf</bookmark_value> <bookmark_value>maaayikiroos; ramada muudataaf</bookmark_value> <bookmark_value>ramada muudataaf</bookmark_value> <bookmark_value>mudataa; ramada maayikiroos</bookmark_value>"
+msgid "<bookmark_value>CVar function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii 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=\"Event-Driven Macros\">Ooftuu Mudata Maakroosi</link>"
+msgid "<link href=\"text/sbasic/shared/03100070.xhp\">CVar Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03100070.xhp\">Faankishinii CVar [Runtime]</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 "Kutaan kun akkaataalee sagantooleen Bu`uura mudatoota sagantati ramadaman ibsa."
+msgid "Converts a string expression or numeric expression to a variant expression."
+msgstr "Himannoo diraa ykn himannoo lakkoofsaa gara himannoo addaba'aatti geeddari."
-#: 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 "Yeroo madatni sooftiweerii ifteessame maakroo barbaadame gara mudatatti ramaduudhaan uumaman ofumaan maakroo hojjoomuun ni danda`ama. Gabateen armaan gadii mudatoota sagantaa fi maakroon ramadame hojii akkamii akkanni hojjomu ilaalcha guddaa kenna."
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 01040000.xhp
+#: 03100070.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3148455\n"
-"5\n"
+"03100070.xhp\n"
+"par_idN10562\n"
"help.text"
-msgid "Event"
-msgstr "Mudata"
+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 "Maakroon ramadame ni hojjooma..."
+msgid "Return value:"
+msgstr "Gatii deebii:"
-#: 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 "jalqaba sagantaa"
+msgid "Variant."
+msgstr "Addaba'aa."
-#: 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 "... fayyadamni $[officename] booda eegala."
+msgid "Parameter:"
+msgstr "ulaagaa:"
-#: 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 "sagantaa End"
+msgid "Expression: Any string or numeric expression that you want to convert."
+msgstr "Himannoo:Himannoo diraa ykn lakkoofsaa kamuu geeddaruu barbaadde."
-#: 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 "...fayyadamni $[officename] dura dhaabbata."
+msgid "CVErr Function [Runtime]"
+msgstr "Faankishinii CVErr[Runtime]"
-#: 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 "Galmee uumi"
+msgid "<bookmark_value>CVErr function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii CVErr</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 "...Sajoo <emph>Faayilii - Haaraa</emph> yookiin <emph>Haaraa</emph> wajjin galmeen haaraan iddoo uumamee booda."
+msgid "<link href=\"text/sbasic/shared/03100080.xhp\">CVErr Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03100080.xhp\">Faankishinii CVErr [Runtime]</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 "Galmee bani"
+msgid "Converts a string expression or numeric expression to a variant expression of the sub type \"Error\"."
+msgstr "Himannoo diraa ykn himannoo lakkoofsaa gara himannoo addaba'aa gosa xixiqqaa\"Error\" tti geeddari."
-#: 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 "...Sajoo <emph>Faayilii - Bani</emph> yookiin <emph>Bani</emph> wajjin galmeen iddoo banamee booda."
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 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 "Save Document As"
+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 "...sajoo (<emph>Faayilii - Olkaaa`i Akka </emph>, yookiin <emph>Faayilii - olkaa`i</emph> yookiine <emph>Olkaa`i</emph> wajjin maqaa ifteessame jalatti galmeen osoo ol hin kaa`amiin dura, yoo maqaan galmee hamma amaatti hin ifteessamne ta`e)."
+msgid "Return value:"
+msgstr "Gatii deebii:"
-#: 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 "Galmeen kan oltaa`e akka"
+msgid "Variant."
+msgstr "Addaba'aa."
-#: 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 "...sajoo (<emph>Faayilii - Olkaaa`i Akka </emph>, yookiin <emph>Faayilii - olkaa`i</emph> yookiine <emph>Olkaa`i</emph> wajjin maqaa ifteessame jalatti galmeen osoo ol hin kaa`amiin dura, yoo maqaan galmee hamma amaatti hin ifteessamne ta`e)."
+msgid "Parameter:"
+msgstr "ulaagaa:"
-#: 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 "galmee olkaa`i"
+msgid "Expression: Any string or numeric expression that you want to convert."
+msgstr "Himannoo:Himannoo diraa ykn lakkoofsaa kamuu geeddaruu barbaadde."
-#: 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 "...sajoo <emph>Faayilii - Olkaa'i</emph> ykn <emph>Olkaa'i</emph> wajjin galmeen osoo ol hin kaa'amiin dura, maqaa galmee duraan kenname ifteessama."
+msgid "CBool Function [Runtime]"
+msgstr "Faankishiinii CBool [Runtime]"
-#: 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 "Galmeen oltaa`eera"
+msgid "<bookmark_value>CBool function</bookmark_value>"
+msgstr "<bookmark_value>Faankishiinii 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 "...sajoo <emph>Faayilii - Olkaa'i</emph> ykn <emph>Olkaa'i</emph> wajjin galmeen osoo ol hin kaa'amee booda, maqaa galmee duraan kenname ifteessama."
+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 Function [Runtime]\">Faankishiinii CBool [Runtime]</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 "Galmee cufi"
+msgid "Converts a string comparison or numeric comparison to a Boolean expression, or converts a single numeric expression to a Boolean expression."
+msgstr "Himannoo diraa ykn himannoo lakkofsaa gara himannoo Buuliyaaniitti geeddari,ykn himannoo lakkofsa baaqqee gara Buuliyaaniitti geeddari."
-#: 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 "...galmeen dura cufama."
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 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 "Galmeen ni cufama"
+msgid "CBool (Expression1 {= | <> | < | > | <= | >=} Expression2) or CBool (Number)"
+msgstr "CBool (Expression1 {= | <> | < | > | <= | >=} Expression2) or 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 "...galmeen iddoo cufamee booda.yeroo galmeen osoo olhin kaa`amiin cufamu maddi \"Galmee Olkaa`i\" dabalatan tarii ni uumama."
+msgid "Return value:"
+msgstr "Gatii deebii:"
-#: 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 "Galmee Kakaasi"
+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 "...galmeen gara fuuldureetti dhufee booda."
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 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 "Galmee Hinkakaasiin"
+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>Himannoo1, Himannoo2:</emph> Himannoo diraa ykn lakkoofsaa kamuu madaaluu barbaaddu. Yoo himannoowwan walgitan, faankishiiniin <emph>CBool</emph> <emph>Dhugaa</emph>deebisa,yoo ta'uu baate <emph>Soba</emph> deebi'a."
-#: 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 "...galmeen gara fuuldureetti dhufee booda."
+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>Lakkoofsa:</emph> Himannoo lakkofsa kamuu kan geeddaruu barbaaddu.Yoo himannoon walqixa 0 ta'e, <emph>Soba</emph> deebi'a,yoo ta'uu baate <emph>Dhugaa</emph> deebi'a."
-#: 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 "Galmee Maxxansi"
+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 "Fakkeenyi armaan gadii gatii faankshinii <emph>Instr</emph> debi'e madaaluuf,faankshinii <emph>CBool</emph> fayyadama. Faankishiiniin yoo jechi \"and\" hima fayyadamaan galfame keessa jiraachuu isaa mirkaneessa."
-#: 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 "...qaaqan <emph>Maxxansi</emph> iddoo cufamee booda, garuu jalqaba haalla maxxansi sirrii dura."
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 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 "Dogoggora sa`atii darbee JaavaaSkiriptii"
+msgid "sText = InputBox(\"Please enter a short sentence:\")"
+msgstr "sText = InputBox(\"Please enter a short sentence:\")"
-#: 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 "... yeroo dogoggori sa`atii darbee JaavaaSkiriptii uumamu."
+msgid "' Proof if the word »and« appears in the sentence."
+msgstr "REM Proof if the word »and« appears in the sentence."
-#: 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 "Makiinsa Ergannoo Maxxansi"
+msgid "' Instead of the command line"
+msgstr "REM Instead of the command line"
-#: 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 "...qaaqan <emph>Maxxansi</emph> iddoo cufamee booda, garuu jalqaba haalla maxxansi sirrii dura. Maddataan kun tokko tokkoo galagalcha maxxansameef uumama."
+msgid "' If Instr(Input, \"and\")<>0 Then..."
+msgstr "REM If Instr(Input, \"and\")<>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 "Jijjiira lakkoofsa fuulaa"
+msgid "' the CBool function is applied as follows:"
+msgstr "REM the CBool function is applied as follows:"
-#: 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 "...yeroo lakkoofsa fuulaa jijjiiru."
+msgid "If CBool(Instr(sText, \"and\")) Then"
+msgstr "If CBool(Instr(sText, \"and\")) 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 "Ergaa fudhatame"
+msgid "MsgBox \"The word »and« appears in the sentence you entered!\""
+msgstr "MsgBox \"The word »and« appears in the sentence you entered!\""
-#: 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 "...yoo Ergaa fudhatame."
+msgid "CDate Function [Runtime]"
+msgstr "Faankishinii CDate[Runtime]"
-#: 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 "Ramada Maakroo mudata"
+msgid "<bookmark_value>CDate function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii 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 "Gabatee <emph>Meeshaalee - Maamileesi</emph> fi <emph>Mudatoota</emph> cuuqaasi."
+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 Function [Runtime]\">Faankishinii CDate[Runtime]</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 "Sanduuqa tarree<emph>keessa olkaa`i</emph> galmee ammee kessaa xurbeessaan gataa`aa yookiin gataa`aa sirrii ramadan akka ta`uu yoo barbaade fili."
+msgid "Converts any string or numeric expression to a date value."
+msgstr "Himannoo diraa ykn lakkoofsaa kamuu gatii guuyyaatti geeddari."
-#: 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 "Tarree <emph>Madata</emph> keessaa madata fili."
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 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>Maakroo</emph> cuuqaasuudhaan maakroo gara madata filameetti ramadaman fili."
+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 "Maakroo ramaduuf <emph>TOLE</emph> cuuqaasi."
+msgid "Return value:"
+msgstr "Gatii deebii:"
-#: 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 "Qaaqa cufuuf <emph>Tole</emph> cuuqaasi."
+msgid "Date"
+msgstr "Guyyaa"
-#: 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 "Ramada Maakroo gara Mudatatti siiqsu"
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 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 "Gabatee <emph>Meeshaalee - Maamileesi</emph> fi <emph>Mudatoota</emph> cuuqaasi."
+msgid "<emph>Expression:</emph> Any string or numeric expression that you want to convert."
+msgstr "<emph>Himannoo:</emph> Himannoo diraa ykn lakkoofsaa kamuu kan geeddaruu barbaaddu."
-#: 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 "Ramada xurbeessaa yookiin ramada gataa`aa galmee ammee keessaa filannoo sanduuqa tarree<emph>keessa olkaa`i</emph> kessaa filuudhaan siiqsuuf fili."
+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 "Yommuu himannoo diraa jijjiirtu, guyyaa fi yeroon dirqama akka dhangii MM.DD.YYYY HH.MM.SS tti, galuu qaba,akka faankshinii walii galaa <emph>DateValue</emph> and <emph>TimeValue</emph> qindeeffame. Himannoo lakkoofsaa keessatti, gatiin harka bitaa kurniyee guuyyaa bakka bu'a, muddee 31, 1899 irraa jalqabe. Gatiin harka mirgaa kurniyee yeroo bakka bu'a."
-#: 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 "Madata ramada tarree <emph>Madata</emph> keessaa siiqan ofkeessaatti qabatu fili."
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 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>Siiqsi</emph> cuuqaasi."
+msgid "CDbl Function [Runtime]"
+msgstr "Faankishinii CDbl[Runtime]"
-#: 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 "Qaaqa cufuuf <emph>Tole</emph> cuuqaasi."
+msgid "<bookmark_value>CDbl function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii 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 "Sagantaa Bu`uura Qulqulleessuu"
+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 Function [Runtime]\">Faankishinii CDbl [Runtime]</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>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>"
+msgid "Converts any numerical expression or string expression to a double type."
+msgstr "himannoo lakkoofsaa ykn himannoo diraa kamuu gara gosa dachaatti geeddari."
-#: 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\">Sagantaa Bu`uura Qulqulleessuu</link>"
+msgid "Syntax"
+msgstr "Caasimaa:"
-#: 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 "Sarqurxa fi Hojjoomuu Dhawaatii Baaxxee"
+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 "Hojjoomuu dhawaatii baaxxee gargaaramuudhaan dogoggoraa tokko tokkoo sarara sagantaa Bu`uura keessaa mirkaneessuu ni dandeessu. Tokko tokko bu`aa dhawwaatii ennaa dhumasana ilaaluun waandanda`amuuf dogoggori salphaadhaan ni Sakkatta'ama. Akeektuun sarqurxa keessatti kan tarjaa gulaalaa sarara ammee agarsiisa.Akasumas yoo sagantaan akka iddoo murtaa`a tokkotti dhaabbatu dhiibbaa gochuu barbaaddan Sarqurxa qinddeessuun ni danda`ama."
+msgid "Return value"
+msgstr "Gatii deebii"
-#: 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 "Sarara walqixaa irraatti sarqurxa raawwachuuf gama Gulaalaa foddaa bitaan tarjaa<emph>sarqurxa</emph> lama cuqaasi. Sagantaan yeroo sarqurxa ga`u, hojjoomuun sagantaa ni dhaabbata."
+msgid "Double"
+msgstr "Dachaa"
-#: 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 "Sajoo <emph>dhawaatii baaxxee </emph> gargaaramuun <emph>dhawaaatii baaxxeep</emph> hojjoomuun sagantaan gara adeemsaa fi fankishiniitti akka hiramu sababa ta.a."
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 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 "Sajoo <emph>dhawaatii adeemsa</emph> gargaaramuun adeemsa dhawaatii hojjoomuun sagantaan adeemsaa fi fankishinii irratti akkadhawaatii baaxxee fe`amu sababa ta`a."
+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>Himannoo:</emph> Himannoo diraa ykn lakkoofsaa kamuu geeddaruu barbaaddu.Himannoo diraa geeddaruuf,lakkoofsi dirqama akka barruu baratamaa (\"123.5\") tti gala, dhangii lakkoofsa durtii sirna dalagaa kee fayyadamuun."
-#: 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 "Amaloota sarqurxa"
-
-#: 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 "Amalootni sarqurxa baafata halqara keessaan mirga-cuuqaasuun sarqurxa tarjaa sarquxa keessatti argamu."
-
-#: 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 "Baafata halqara keesaa <emph>kakaasuu</emph> filuun sarqurxa <emph>kakaasuu</emph> fi <emph>kakaasuu dhiisuu </emph> ni danda`ama. Yeroo sarqurxan kakaasuu dhiifame, hojjoomuu sagantaa hin dhaabu."
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 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 "Iddoo filannoo sarqurxa biraa ifteessitu gulaalee <emph>sarqurxa</emph> waamuuf <emph>amaloota</emph> kan sarqurxa baafata halqara keessaa yookiin <emph>sarqurxa</emph> kan tarjaa sarqurxa baafata halqara keessaa fili."
+msgid "CInt Function [Runtime]"
+msgstr "Faankishinii CInt[Runtime]"
-#: 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 "Tarreen <emph>sarqurxa</emph> hunda madda lakkaddaa keessatti sarara lakkoofsa walqixaa wajjin agarsiisa.Sanduuqa <emph>Kakaasuu</emph> mirkaneessuudhaan yookiin qulqulleessuudhaan sarqurxa filame kakaasuu yookiin kakaasuu dhiisuun ni danda`ama."
+msgid "<bookmark_value>CInt function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii 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>Lakkoofsi Darbii</emph> lakkoofsa sarqurxan osoo sagantaan addaan hin citiin dura dadarbuu danda`u ifteessa.Yeroo 0 (qindaa'inoota durtii) galchitan sagantaan akkuma sarqurxan uumameen yeroo hundaa ni dhaabata."
+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 Function [Runtime]\">Faankishinii CInt [Runtime]</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 "Sarqurxa sagantaa keessaa haquuf <emph>Haqi</emph> cuuqaasi."
+msgid "Converts any string or numeric expression to an integer."
+msgstr "Himannoo diraa ykn lakkoofsaa kamuu itergaatti geeddari."
-#: 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 "Doow`achuu gatii jijjiiramaawwanii"
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 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 "Gatiiwwan jijjiiramaa foddaa <emph>ilaali</emph>tti dabaluun torguun ni danda`ama. Tarree jijjiiramaawwan ilaalamanitti jijjiiramaa dabaluuf,maqaa jijjiiramaa sanduuqa barruu <emph>Ilaali</emph> keesaatti barreessi itti aansuudhaan Galchi dhiibi."
+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 "Gatiiwwan jijjiiramaawwanii hammata keessa yoo jiratan qofa agarsiisamu. Jijjiiramaawwan iddoo madda lakkaddaa ammeetti hin hiikamne gatii isaanii osoo hin taane (\"Out of Scope\") argisiisamu."
+msgid "Return value:"
+msgstr "Gatii deebii:"
-#: 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 "Akasumas waraantoolee foddaa ilaali keessatti dabaluun ni danda`ama. Osoo maqaa jijjiirama waraantoo gatii kasaa malee sanduuqa barruu ilaalchaatti galchitan, qabiyyeen waraantoo waamaraa ni argisiisamu."
+msgid "Integer"
+msgstr "intergaa"
-#: 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 "Hantuutee jijjiiramaa duraan hiikame irraa sa`aa darbee irratti gulaalaa keessa osoo keessan, qabiyyeen jijjiiramaa sanduuqa poopii olii keessatti agarsiisama."
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 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 "Foddaa Tartiibaa Bilbilaa"
+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> himannoo lakkoofsa kamuu kan geeddaruu barbaaddu.Yoo <emph>Himannoo</emph> gatii gidduu -32768 fi 32767 caale,$[officename] Basic dogongara guutinsa darbaa gabaasa.Himannoo diraa geeddaruuf,lakkoofsi dirqama akka barruu baratamaa (\"123.5\") tti gala, dhangii lakkoofsa durtii sirna dalagaa kee fayyadamuun."
-#: 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\">Waamicha walqabataa kan adeemsa fi fankishiniif ilaalcha gubbaa kenna.</ahelp> Adeemsa fi fankishinii kamtu waamame adeemsa fi fankishinii biraa kamtummoo madda lakkaddaa keessa tuqaa ammeerratti jechuudhaan murteessuun ni danda`ama."
+msgid "This function always rounds the fractional part of a number to the nearest integer."
+msgstr "Faankishiiniin kun yeroo hunda qaama lakkoofsa entaa itergaa itti dhihaatutti siksa."
-#: 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 "Tarree Dogongorawwan Sa'aa Darbee"
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: keys.xhp
+#: 03100600.xhp
msgctxt ""
-"keys.xhp\n"
+"03100600.xhp\n"
"tit\n"
"help.text"
-msgid "Keyboard Shortcuts in the Basic IDE"
-msgstr "Qaxxaamurawwan Gabatee cuqoo Basic IDE keessaa"
+msgid "CLng Function [Runtime]"
+msgstr "Faankishinii CLng[Runtime]"
-#: 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>gabatee cuqoo;IDE keessaa</bookmark_value><bookmark_value>furtuulee qaxxaamuraa;Basic IDE</bookmark_value><bookmark_value>IDE;qaxxaamurawwan gabatee cuqoo</bookmark_value>"
+msgid "<bookmark_value>CLng function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii 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=\"Keyboard Shortcuts in the Basic IDE\">Qaxxaamurawwan Gabatee cuqoo keessa Basic IDE</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 Function [Runtime]\">Faankishinii CLng[Runtime]</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 IDE keessatti qaxxaamurawwan gabatee cuqoo itti aananitti fayyadamuu ni dandeessa."
+msgid "Converts any string or numeric expression to a long integer."
+msgstr "Himannoo diraa ykn lakkoofsaa kamuu itergaa dheeratti geeddari."
-#: keys.xhp
+#: 03100600.xhp
msgctxt ""
-"keys.xhp\n"
-"par_id3154908\n"
+"03100600.xhp\n"
+"hd_id3145315\n"
"3\n"
"help.text"
-msgid "Action"
-msgstr "Gocha"
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 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 "Qaxxaamura gabatee cuqoo"
+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 "yoo sagantaan achiitti dursee dhaabbate, sarara jalqabaarraa yookiin sarqurxa kanarraa jalqabiitii lakkadda kaasi."
+msgid "Return value:"
+msgstr "Gatii deebii:"
-#: 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 "Dheeraa"
-#: keys.xhp
+#: 03100600.xhp
msgctxt ""
-"keys.xhp\n"
-"par_id3150010\n"
+"03100600.xhp\n"
+"hd_id3154760\n"
"7\n"
"help.text"
-msgid "Stop"
-msgstr "Stop"
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 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 "Jijjiiramtoota bakka qareetii <link href=\"text/sbasic/shared/01050100.xhp\" name=\"watch\">ilaalii</link> ida'i."
-
-#: 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 "Ejjennoo tokko hima keessa, sarara jalqabaarraa jalqabee yookiin hima sana bakka raawwiin sagantaa dura itti dhaabbate."
-
-#: 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 "Akkuma ejjato tokko F8, faankishinii yaamuun garuu akka hima <emph>tokko</emph> qofaatti fudhatama."
-
-#: 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 "Sarqurxa<link href=\"text/sbasic/shared/01030300.xhp\" name=\"breakpoint\"></link> bakka amma jirtu yookiin sarqurxa hunda kan filataman dandeessisi/dhoowwi."
-
-#: 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 "Sarqurxa bakka amma jirtutti yookiin sarqurxa hunda kan filataman dandeessisi/dhoowwi."
+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>Himannoo:</emph> Himannoo lakkoofsa kamuu kan geeddaruu barbaaddu.Yoo <emph>Himannoo</emph> itergaa dheeraa gitaa'aa gidduu -2.147.483.648 fi 2.147.483.647 'n ala oole,$[officename] Basic dogongara guutinsa darbaa deebisa.Himannoo diraa geeddaruuf,lakkoofsi dirqama akka barruu baratamaa (\"123.5\") tti gala, dhangii lakkoofsa durtii sirna dalagaa kee fayyadamuun."
-#: 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 "Faankishiiniin kun yeroo hunda qaama lakkoofsa entaa itergaa itti dhihaatutti siksa."
-#: 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 "Maakroo kaa'e Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Ajaja</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Q tiin addan kutuun ni danda'ama, akkasumas ala Basic IDE. Yoo keessa Basic IDE jiraattee fi maakroon iddoo sarqurxaatti dhaabe, Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Q 'n raawwii maakroo ni dhaaba, garuu ati kana kan hubattu F5, F8, or Shift+F8 booda dha."
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 03102200.xhp
+#: 03100700.xhp
msgctxt ""
-"03102200.xhp\n"
+"03100700.xhp\n"
"tit\n"
"help.text"
-msgid "IsArray Function [Runtime]"
-msgstr "Faankishinii IsArray [Runtime]"
+msgid "Const Statement [Runtime]"
+msgstr "Hima Const[Runtime]"
-#: 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>Faankishinii IsArray</bookmark_value>"
+msgid "<bookmark_value>Const statement</bookmark_value>"
+msgstr "<bookmark_value>Hima 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 Function [Runtime]\">Faankishinii IsArray [Runtime]</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 Statement [Runtime]\">Hima Const [Runtime]</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 "Waraantoo keessatti, dirree deetaa ta'uu jijjiiramaa murteessa."
+msgid "Defines a string as a constant."
+msgstr "Diraa akka seranaatti qindeessi."
-#: 03102200.xhp
+#: 03100700.xhp
msgctxt ""
-"03102200.xhp\n"
-"hd_id3150792\n"
+"03100700.xhp\n"
+"hd_id3150670\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasimaa:"
+msgstr "caasimaa:"
-#: 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 "Gatii deebii:"
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 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>Barruu:</emph> Maqaa seranaa kamuu kan jijjiirraa durtii moggaasa waliigalaa duuka bu'u."
-#: 03102200.xhp
+#: 03100700.xhp
msgctxt ""
-"03102200.xhp\n"
-"hd_id3153969\n"
+"03100700.xhp\n"
+"par_id3147264\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Ulaagaalee:"
+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 "Seranaan jijjiiramaa ta'e sagantaa dubbifaminaa fooyyessuuf gargaara. Seranoonni akkaataa jijjiiramaa murtaa'atti hin qindoofne, garuu lakkadda keessatti akka iddooqatti fayyada.Seranaa al tokko qofa qindeessuu dandeessa, haaromuu hin danda'u. Seranaa qindeessuuf hima armaan gadii fayyadam."
-#: 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> Jijjiiramaa kamiyyuu kan ati akka waraantootti lallabamuu isaa basbaaduuf barbaaddu dha. Yoo jijjiiramtichi waraantoo ta'e, faankishinichi <emph>Dhugaa</emph> deebisa; yoo ta'uu baate ammoo <emph>Sobatu</emph> deebi'a."
+msgid "CONST ConstName=Expression"
+msgstr "CONST ConstName=Expression"
-#: 03102200.xhp
+#: 03100700.xhp
msgctxt ""
-"03102200.xhp\n"
-"hd_id3155131\n"
+"03100700.xhp\n"
+"par_id3150400\n"
"9\n"
"help.text"
-msgid "Example:"
-msgstr "Fakkeenya:"
-
-#: 03080300.xhp
-msgctxt ""
-"03080300.xhp\n"
-"tit\n"
-"help.text"
-msgid "Generating Random Numbers"
-msgstr "Lakkoofsota tasa uumuu"
+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 "Akaakuun himannoo fudhatama hin qabu. Yoo sagantaan jalqabe, $[officename] Basic lakkada sagantaa keessan jijjiira kanaaf serannaa yeroo fayyadama, himannoon qindeeffame bakka isaa bu'a."
-#: 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=\"Generating Random Numbers\">Lakkoofsota tasa uumuu</link>"
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 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 "Himiinni fi Faankishinoonni armaan gadii lokkofsota tasa uumu."
+msgid "Const sVar = \"Program\", dVar As Double = 1.00"
+msgstr "Const sVar = \"Program\", dVar As Double = 1.00"
#: 03100900.xhp
msgctxt ""
@@ -21700,7 +24806,7 @@ msgctxt ""
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasimaa:"
+msgstr "caasimaa:"
#: 03100900.xhp
msgctxt ""
@@ -21718,7 +24824,7 @@ msgctxt ""
"5\n"
"help.text"
msgid "Return value:"
-msgstr "Gatii Debisi:"
+msgstr "Gatii deebii:"
#: 03100900.xhp
msgctxt ""
@@ -21727,7 +24833,7 @@ msgctxt ""
"6\n"
"help.text"
msgid "Single"
-msgstr "Baaqqee"
+msgstr "Qeenxee"
#: 03100900.xhp
msgctxt ""
@@ -21756,2623 +24862,1929 @@ msgctxt ""
msgid "Example:"
msgstr "Fakkeenya:"
-#: 03080502.xhp
+#: 03101000.xhp
msgctxt ""
-"03080502.xhp\n"
+"03101000.xhp\n"
"tit\n"
"help.text"
-msgid "Int Function [Runtime]"
-msgstr "faankishinii Int[Runtime]"
+msgid "CStr Function [Runtime]"
+msgstr "Faankishinii CStr[Runtime]"
-#: 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>Fankishinii Int</bookmark_value>"
+msgid "<bookmark_value>CStr function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii 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 Function [Runtime]\">faankishinii Int [Runtime]</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 Function [Runtime]\">Faankishinii CStr [Runtime]</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 "Itergaa lakkofsa deebisi."
+msgid "Converts any numeric expression to a string expression."
+msgstr "Himannoo lakkoofsa kamuu gara himannoo diraatti jijjiira."
-#: 03080502.xhp
+#: 03101000.xhp
msgctxt ""
-"03080502.xhp\n"
-"hd_id3147559\n"
+"03101000.xhp\n"
+"hd_id3148473\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasimaa:"
+msgstr "caasimaa:"
-#: 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 "Gatii deebii:"
-#: 03080502.xhp
+#: 03101000.xhp
msgctxt ""
-"03080502.xhp\n"
-"par_id3150400\n"
+"03101000.xhp\n"
+"par_id3153897\n"
"6\n"
"help.text"
-msgid "Double"
-msgstr "Dachaa"
+msgid "String"
+msgstr "Diraa"
-#: 03080502.xhp
+#: 03101000.xhp
msgctxt ""
-"03080502.xhp\n"
-"hd_id3149656\n"
+"03101000.xhp\n"
+"hd_id3154760\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Ulaagaalee:"
-#: 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>lakkoofsa:</emph> Himannoo lakkoofsa sirrii kamuu."
+msgid "<emph>Expression:</emph> Any valid string or numeric expression that you want to convert."
+msgstr "<emph>Himannoo:</emph> Diraa gataa'aa ykn himannoo lakkoofsaa kamuu kan geeddaruu barbaaddu."
-#: 03080502.xhp
+#: 03101000.xhp
msgctxt ""
-"03080502.xhp\n"
-"hd_id3148672\n"
+"03101000.xhp\n"
+"hd_id3150358\n"
"9\n"
"help.text"
-msgid "Example:"
-msgstr "Fakkeenya:"
-
-#: 03080502.xhp
-#, fuzzy
-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) REM returns the value 3.0"
-
-#: 03080502.xhp
-#, fuzzy
-msgctxt ""
-"03080502.xhp\n"
-"par_id3145787\n"
-"12\n"
-"help.text"
-msgid "Print Int(0) ' returns the value 0"
-msgstr "Print Int(0) REM returns the value 0.0"
-
-#: 03080502.xhp
-#, fuzzy
-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) REM returns the value -4.0"
+msgid "Expression Types and Conversion Returns"
+msgstr "Gosa Himannoo fi Jijjiirraa Deebii"
-#: 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 "Faankishinii RTrim [Runtime]"
+msgid "Boolean :"
+msgstr "Buuliyaanii :"
-#: 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>Faankishinii RTrim</bookmark_value>"
+msgid "String that evaluates to either <emph>True</emph> or <emph>False</emph>."
+msgstr "Diraa kan <emph>True</emph> ykn <emph>False</emph> tti madaalu."
-#: 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 Function [Runtime]\">Faankishinii RTrim [Runtime]</link>"
+msgid "Date :"
+msgstr "Guyyaa:"
-#: 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 "Iddoo xumura himata diraarra jiru balleessa."
+msgid "String that contains the date and time."
+msgstr "Diraa guyyaa fi yeroo qabu."
-#: 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 "Dabalataan: <link href=\"text/sbasic/shared/03120305.xhp\" name=\"LTrim Function\">Faankishinii LTrim </link> ilaali"
+msgid "Null :"
+msgstr "Homaa:"
-#: 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 "Caasimaa:"
+msgid "Run-time error."
+msgstr "Dogongora Sa'aa Darbee"
-#: 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( Barruu Akka diraa )"
+msgid "Empty :"
+msgstr "Duwwaa:"
-#: 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 "Gatii deebii:"
+msgid "String without any characters."
+msgstr "Diraa arfiiwwan malee"
-#: 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 "Diraa"
+msgid "Any :"
+msgstr "Kamuu:"
-#: 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 "Ulaagaa:"
+msgid "Corresponding number as string."
+msgstr "Lakkoofsa walgitu akka diraatti."
-#: 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> Himata Diraa kamiyyuu"
+msgid "Zeros at the end of a floating-point number are not included in the returned string."
+msgstr "Zeeroon dhuma lakkoofsa tuqaa bololiyaa diraa deebii keessattii hin dhuunfatamu."
-#: 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 "Fakkeenya:"
-#: 03080500.xhp
-msgctxt ""
-"03080500.xhp\n"
-"tit\n"
-"help.text"
-msgid "Integers"
-msgstr "Itergoota"
-
-#: 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=\"Integers\">Itergoota</link>"
-
-#: 03080500.xhp
-msgctxt ""
-"03080500.xhp\n"
-"par_id3156152\n"
-"2\n"
-"help.text"
-msgid "The following functions round values to integers."
-msgstr "faankishiniin armaan gadii gatii gara itergaatti siksuuf."
-
-#: 03120102.xhp
+#: 03101100.xhp
msgctxt ""
-"03120102.xhp\n"
+"03101100.xhp\n"
"tit\n"
"help.text"
-msgid "Chr Function [Runtime]"
-msgstr "Faankishinii Chr [Runtime]"
+msgid "DefBool Statement [Runtime]"
+msgstr "Hima DefBool [Runtime]"
-#: 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>Faankishinii Chr</bookmark_value>"
+msgid "<bookmark_value>DefBool statement</bookmark_value>"
+msgstr "<bookmark_value>Hima 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 Function [Runtime]\">Faankishinii Chr [Runtime]</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 Statement [Runtime]\">Hima DefBool [Runtime]</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 "Arfii kan lakkadda arfii ibsameen walmadaalan deebisa."
+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 "Yoo arfiin akaakuu labsii ykn jefuraa hin ifteeffamne,himni DefBool akaakuu deetaa durtii jijjiiramtootaf qindeessa,akkaataa hangii qubeen."
-#: 03120102.xhp
+#: 03101100.xhp
msgctxt ""
-"03120102.xhp\n"
-"hd_id3149514\n"
+"03101100.xhp\n"
+"hd_id3149495\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasimaa:"
+msgstr "caasimaa:"
-#: 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 "Gatii deebii:"
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 03120102.xhp
+#: 03101100.xhp
msgctxt ""
-"03120102.xhp\n"
-"par_id3153824\n"
+"03101100.xhp\n"
+"par_id3147226\n"
"6\n"
"help.text"
-msgid "String"
-msgstr "Diraa"
+msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set the default data type for."
+msgstr "<emph>Hangiiarfii:</emph> Qubeewwan kan hangii jijjiiramtootaa kan akaakuu deetaa durtii qindeessuu barbaaddu ifteessan."
-#: 03120102.xhp
+#: 03101100.xhp
msgctxt ""
-"03120102.xhp\n"
-"hd_id3148944\n"
+"03101100.xhp\n"
+"par_id3149178\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Ulaagaalee:"
+msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
+msgstr "<emph>xxx:</emph> Jefuraan kan akaakuu jijjiiramaa durtii qindeessu:"
-#: 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>Himata:</emph> Jijjiiramaawwan lakkoofsaa kanneen gatii ASCII laklamee 8 (0-255) sirrii ykn gatii yuniikoodii laklamee 16 bakka bu'ani dha."
+msgid "<emph>Keyword: </emph>Default variable type"
+msgstr "<emph>Jefuraa: </emph>Akaakuu jijjiiramaa durtii"
-#: 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 "Tartiiba to'annoo addaa gara maxxansaatti ykn madda bahaa birootti erguuf, faankishinii <emph>Chr$</emph> tti fayyadami.Mallattoo waraabbii himata diraa keessa galchuufis faankishinii kanatti fayyadamuu ni dandeessa."
+msgid "<emph>DefBool:</emph> Boolean"
+msgstr "<emph>DefBool:</emph> Buuliyaanii"
-#: 03120102.xhp
+#: 03101100.xhp
msgctxt ""
-"03120102.xhp\n"
-"hd_id3154366\n"
+"03101100.xhp\n"
+"hd_id3149762\n"
"10\n"
"help.text"
msgid "Example:"
msgstr "Fakkeenya:"
-#: 03120102.xhp
-#, fuzzy
+#: 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 "REM Fakkeenyi kun mallattoolee waraabbii(gatii ASCII 34) diraa keessa galcha."
+msgid "' Prefix definition for variable types:"
+msgstr "REM hiika huddeelsoo akaakuu jijjiiramaaf:"
-#: 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 \"A \"+ Chr$(34)+\"short\" + Chr$(34)+\" trip.\""
+msgid "bOK=TRUE ' bOK is an implicit boolean variable"
+msgstr "bOK=TRUE REM bOK is an implicit Boolean variable"
-#: 03120102.xhp
-#, fuzzy
+#: 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 "REM Qaaqa keessatti maxxansi isaa akka: karaa \"short\" fakkaata."
+msgid "DefCur Statement [Runtime]"
+msgstr "Hima DefCur[Runtime]"
-#: 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>Hima 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 "Faankishinii [Runtime] GetProcessServiceManager"
+msgid "<link href=\"text/sbasic/shared/03101110.xhp\">DefCur Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03101110.xhp\">Hima DefCur [Runtime]</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>Faankishinii GetProcessServiceManager</bookmark_value><bookmark_value>GeggeessaaAdeemsaTajaajilaa</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 "Yoo arfiin akaakuu labsii ykn jefuraa hin ifteeffamne,himni DefCur akaakuu jijjiiramaa durtii qindeessa,akkaataa hangii qubeen."
-#: 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 Function [Runtime]\">Faankishinii [Runtime] GetProcessServiceManager</link>"
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 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 (central Uno ServiceManager) deebisa."
+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 "Faankishiniin kun yommuu ati tajaajila CreateInstanceWithArguments kaasuu barbaaddeef si fayyada."
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 03131700.xhp
+#: 03101110.xhp
msgctxt ""
-"03131700.xhp\n"
-"hd_id3153681\n"
-"4\n"
+"03101110.xhp\n"
+"par_idN1059B\n"
"help.text"
-msgid "Syntax:"
-msgstr "Caasimaa:"
+msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set a default data type for."
+msgstr "<emph>Hangiiarfii:</emph> Qubeewwan kan hangii jijjiiramtootaa kan akaakuu deetaa durtii qindeessuu barbaaddu ifteessan."
-#: 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> Jefuraan kan akaakuu jijjiiramaa durtii qindeessu:"
-#: 03131700.xhp
+#: 03101110.xhp
msgctxt ""
-"03131700.xhp\n"
-"hd_id3149516\n"
-"6\n"
+"03101110.xhp\n"
+"par_idN105A9\n"
"help.text"
-msgid "Example:"
-msgstr "Fakkeenya:"
+msgid "<emph>Keyword:</emph> Default variable type"
+msgstr "<emph>Jefuraa:</emph> Akaakuu jijjiiramaa durtii"
-#: 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> Mahaallaqa"
-#: 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 "Fakkeenya:"
-#: 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 "Kuni hima armaan gadiitiin tokkuma:"
+msgid "REM Prefix definitions for variable types:"
+msgstr "REM hiika huddeelsoo akaakuu jijjiiramaaf:"
-#: 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 is an implicit currency variable"
-#: 03120101.xhp
+#: 03101120.xhp
msgctxt ""
-"03120101.xhp\n"
+"03101120.xhp\n"
"tit\n"
"help.text"
-msgid "Asc Function [Runtime]"
-msgstr "Faankishinii Asc [Runtime]"
+msgid "DefErr Statement [Runtime]"
+msgstr "Hima DefErr [Runtime]"
-#: 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>Faankishinii Asc</bookmark_value>"
+msgid "<bookmark_value>DefErr statement</bookmark_value>"
+msgstr "<bookmark_value>Hima 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 Function [Runtime]\">Faankishinii Asc [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03101120.xhp\">DefErr Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03101120.xhp\">Hima DefErr [Runtime]</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 "Gatii ASCII (American Standard Code for Information Interchange) arfii jalqabaa himata diraa keessaa deebisa."
+msgid "If no type-declaration character or keyword is specified, the DefErr statement sets the default variable type, according to a letter range."
+msgstr "Yoo arfiin akaakuu labsii ykn jefuraa hin ifteeffamne,himni DefErr akaakuu jijjiiramaa durtii qindeessa,akkaataa hangii qubeen."
-#: 03120101.xhp
+#: 03101120.xhp
msgctxt ""
-"03120101.xhp\n"
-"hd_id3155555\n"
-"3\n"
+"03101120.xhp\n"
+"par_idN10590\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasimaa:"
+msgstr "caasimaa:"
-#: 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 "Gatii Deebii:"
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 03120101.xhp
+#: 03101120.xhp
msgctxt ""
-"03120101.xhp\n"
-"par_id3150669\n"
-"6\n"
+"03101120.xhp\n"
+"par_idN1059B\n"
"help.text"
-msgid "Integer"
-msgstr "Itergaa"
+msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set a default data type for."
+msgstr "<emph>Hangiiarfii:</emph> Qubeewwan kan hangii jijjiiramtootaa kan akaakuu deetaa durtii qindeessuu barbaaddu ifteessan."
-#: 03120101.xhp
+#: 03101120.xhp
msgctxt ""
-"03120101.xhp\n"
-"hd_id3148473\n"
-"7\n"
+"03101120.xhp\n"
+"par_idN105A2\n"
"help.text"
-msgid "Parameters:"
-msgstr "Ulaagaalee:"
+msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
+msgstr "<emph>xxx:</emph> Jefuraan kan akaakuu jijjiiramaa durtii qindeessu:"
-#: 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>Barruu:</emph> Himata diraa eeyyamamaa kamiyyuu. Arfiin jalqabaa diraa qofti barbaachisaa dha."
+msgid "<emph>Keyword:</emph> Default variable type"
+msgstr "<emph>Jefuraa:</emph> Akaakuu jijjiiramaa durtii"
-#: 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 "Furtoowwan gatiidhaan bakka buusuuf Faankishinii Asc'tti fayyadami.Yoo faankishiniin Asc diraa duwwaadhaan walquunname, $[officename] Basic dogoggora sa'aa darbee gabaasa.Arfiilee ASCII laklamee 7 dabalatee,faankishiniin ASCII lakkaddawwan furtuu lakkadda ASCII keessaa kanneen maxxansamuu hin dandeenyes sakatta'uu ni danda'a. Faankishiniin kun arfiilee yuniikoodii laklamee 16's qabachuu ni danda'a."
+msgid "<emph>DefErr:</emph> Error"
+msgstr "<emph>DefErr:</emph> Dogongora"
-#: 03120101.xhp
+#: 03101120.xhp
msgctxt ""
-"03120101.xhp\n"
-"hd_id3159413\n"
-"10\n"
+"03101120.xhp\n"
+"par_idN105B7\n"
"help.text"
msgid "Example:"
msgstr "Fakkeenya:"
-#: 03120101.xhp
-#, fuzzy
-msgctxt ""
-"03120101.xhp\n"
-"par_id3150792\n"
-"12\n"
-"help.text"
-msgid "Print ASC(\"A\") ' returns 65"
-msgstr "Print ASC(\"A\") REM 65 deebisa"
-
-#: 03120101.xhp
-#, fuzzy
+#: 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\") REM 90 deebisa"
+msgid "' Prefix definitions for variable types:"
+msgstr "REM hiika huddeelsoo akaakuu jijjiiramaaf:"
-#: 03120101.xhp
-#, fuzzy
+#: 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(\"Las Vegas\") REM 76 deebisa, sababa arfiin jalqabaa qofti xiyyeeffannoo argateef"
+msgid "eErr=Error ' eErr is an implicit error variable"
+msgstr "eErr=Error REM eErr is an implicit error variable"
-#: 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 "Hima DefSng [Runtime]"
-#: 03100400.xhp
+#: 03101130.xhp
msgctxt ""
-"03100400.xhp\n"
-"tit\n"
+"03101130.xhp\n"
+"bm_id2445142\n"
"help.text"
-msgid "CDbl Function [Runtime]"
-msgstr "Faankishinii CDbl[Runtime]"
+msgid "<bookmark_value>DefSng statement</bookmark_value>"
+msgstr "<bookmark_value>Hima 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>Faankishinii CDbl</bookmark_value>"
+msgid "<link href=\"text/sbasic/shared/03101130.xhp\">DefSng Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03101130.xhp\">Hima DefSng [Runtime]</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 Function [Runtime]\">Faankishinii CDbl [Runtime]</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 "Yoo arfiin akaakuu labsii ykn jefuraa hin ifteeffamne,himni DefSng akaakuu jijjiiramaa durtii qindeessa,akkaataa hangii qubeen."
-#: 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 "himannoo lakkoofsaa ykn himannoo diraa kamuu gara gosa dachaatti geeddari."
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 03100400.xhp
+#: 03101130.xhp
msgctxt ""
-"03100400.xhp\n"
-"hd_id3149516\n"
-"3\n"
+"03101130.xhp\n"
+"par_idN1058E\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasimaa"
+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 "Ulaagaalee:"
-#: 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 "Gatii deebii"
+msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set a default data type for."
+msgstr "<emph>Hangiiarfii:</emph> Qubeewwan kan hangii jijjiiramtootaa kan akaakuu deetaa durtii qindeessuu barbaaddu ifteessan."
-#: 03100400.xhp
+#: 03101130.xhp
msgctxt ""
-"03100400.xhp\n"
-"par_id3145068\n"
-"6\n"
+"03101130.xhp\n"
+"par_idN1059C\n"
"help.text"
-msgid "Double"
-msgstr "Dachaa"
+msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
+msgstr "<emph>xxx:</emph> Jefuraan kan akaakuu jijjiiramaa durtii qindeessu:"
-#: 03100400.xhp
+#: 03101130.xhp
msgctxt ""
-"03100400.xhp\n"
-"hd_id3154760\n"
-"7\n"
+"03101130.xhp\n"
+"par_idN105A3\n"
"help.text"
-msgid "Parameters:"
-msgstr "Ulaagaalee:"
+msgid "<emph>Keyword:</emph> Default variable type"
+msgstr "<emph>Jefuraa:</emph> Akaakuu jijjiiramaa durtii"
-#: 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>Himannoo:</emph> Himannoo diraa ykn lakkoofsaa kamuu kan geeddaruu barbaaddu.Himannoo diraa geeddaruuf,lakkoofsi dirqama akka barruu baratamaa (\"123.5\") tti gala, dhangii lakkoofsa durtii sirna dalagaa kee fayyadamuun."
+msgid "<emph>DefSng:</emph> Single"
+msgstr "<emph>DefSng:</emph> Baaqqee"
-#: 03100400.xhp
+#: 03101130.xhp
msgctxt ""
-"03100400.xhp\n"
-"hd_id3148797\n"
-"9\n"
+"03101130.xhp\n"
+"par_idN105B1\n"
"help.text"
msgid "Example:"
msgstr "Fakkeenya:"
-#: 03080102.xhp
+#: 03101130.xhp
msgctxt ""
-"03080102.xhp\n"
-"tit\n"
+"03101130.xhp\n"
+"par_idN105B5\n"
"help.text"
-msgid "Cos Function [Runtime]"
-msgstr "Faankishinii Koosii[Runtime]"
+msgid "' Prefix definitions for variable types:"
+msgstr "REM hiika huddeelsoo akaakuu jijjiiramaaf:"
-#: 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>funkishinii koosii</bookmark_value>"
+msgid "sSng=Single ' sSng is an implicit single variable"
+msgstr "sSng=Single REM sSng is an implicit single variable"
-#: 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 Function [Runtime]\">Faankishinii Koosii [Runtime]</link>"
+msgid "DefStr Statement [Runtime]"
+msgstr "Hima DefStr [Runtime]"
-#: 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 "Kofa kosaayinii shalagi.Kofni raadiyaaniin ibsama. Gatiin isaa gidduu -1 fi 1 dha."
+msgid "<bookmark_value>DefStr statement</bookmark_value>"
+msgstr "<bookmark_value>Hima 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 "kofa aalfaa fayyadamuun,faankishiniin-koosii reeshoo dheerina raga walcinaa kofaa, dheerina haayipootinasii rog-sadee sirriif hiruun shallaga."
+msgid "<link href=\"text/sbasic/shared/03101140.xhp\">DefStr Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03101140.xhp\">Hima DefStr [Runtime]</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(Alpha) = Olaa/Hypotenuse"
+msgid "If no type-declaration character or keyword is specified, the DefStr statement sets the default variable type, according to a letter range."
+msgstr "Yoo arfiin akaakuu labsii ykn jefuraa hin ifteeffamne,himni DefSng akaakuu jijjiiramaa durtii qindeessa,akkaataa hangii qubeen."
-#: 03080102.xhp
+#: 03101140.xhp
msgctxt ""
-"03080102.xhp\n"
-"hd_id3154125\n"
-"5\n"
+"03101140.xhp\n"
+"par_idN1058A\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasimaa:"
-
-#: 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 "Gatii deebii:"
+msgstr "caasimaa:"
-#: 03080102.xhp
+#: 03101140.xhp
msgctxt ""
-"03080102.xhp\n"
-"par_id3150449\n"
-"8\n"
+"03101140.xhp\n"
+"par_idN1058E\n"
"help.text"
-msgid "Double"
-msgstr "Dachaa"
+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 "Ulaagaalee:"
-#: 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>Lakkoofsa:</emph> Himannoon lakkoofsa kofa raadiyaaniin kan mul'isu kosaayinii shallaguu barbaaddef."
-
-#: 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 "Diigrii gara raadiyaaniitti jijjiiruuf ,diigrii pi/180 tiin baay'si. Raadiyaanii gara diigritti jijjiiruuf 180/pi tiin baay'isi."
+msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set a default data type for."
+msgstr "<emph>Hangiiarfii:</emph> Qubeewwan kan hangii jijjiiramtootaa kan akaakuu deetaa durtii qindeessuu barbaaddu ifteessan."
-#: 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 "rogsadee=(radian*180)/pi"
+msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
+msgstr "<emph>xxx:</emph> Jefuraan kan akaakuu jijjiiramaa durtii qindeessu:"
-#: 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 "radian=(degree*pi)/180"
+msgid "<emph>Keyword:</emph> Default variable type"
+msgstr "<emph>Jefuraa:</emph> Akaakuu jijjiiramaa durtii"
-#: 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 n kun geengoo dhaabbataa safarri naannoo isaa 3.14159..."
+msgid "<emph>DefStr:</emph> String"
+msgstr "<emph>DefStr:</emph> Diraa"
-#: 03080102.xhp
+#: 03101140.xhp
msgctxt ""
-"03080102.xhp\n"
-"hd_id3153951\n"
-"15\n"
+"03101140.xhp\n"
+"par_idN105B1\n"
"help.text"
msgid "Example:"
msgstr "Fakkeenya:"
-#: 03080102.xhp
-#, fuzzy
-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 "REM The following example allows for a right-angled triangle the input of"
-
-#: 03080102.xhp
-#, fuzzy
-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 "REM secant and angle (in degrees) and calculates the length of the hypotenuse:"
-
-#: 03080102.xhp
-#, fuzzy
-msgctxt ""
-"03080102.xhp\n"
-"par_id3150010\n"
-"19\n"
-"help.text"
-msgid "' rounded Pi = 3.14159"
-msgstr "REM rounded 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$ (\"\"Enter the length of the adjacent side: \",\"Adjacent\")"
+msgid "' Prefix definitions for variable types:"
+msgstr "REM hiika huddeelsoo akaakuu jijjiiramaaf:"
-#: 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$ (\"Enter the angle Alpha (in degrees): \",\"Alpha\")"
+msgid "sStr=String ' sStr is an implicit string variable"
+msgstr "sStr=String REM sStr is an implicit string variable"
-#: 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 \"The length of the hypothenuse is\"; (d1 / cos (dAngle * Pi / 180))"
+msgid "DefDate Statement [Runtime]"
+msgstr "Hima DefDate [Runtime]"
-#: 01050300.xhp
+#: 03101300.xhp
msgctxt ""
-"01050300.xhp\n"
-"tit\n"
+"03101300.xhp\n"
+"bm_id3150504\n"
"help.text"
-msgid "Manage Breakpoints"
-msgstr "Sarqurxa Taliigaa"
+msgid "<bookmark_value>DefDate statement</bookmark_value>"
+msgstr "<bookmark_value>Hima 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=\"Manage Breakpoints\">Sarqurxa Taliigaa</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 Statement [Runtime]\">Hima DefDate [Runtime]</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\">Dirqalaalee sarqurxaaf ifteessi</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 "Yoo arfiin akaakuu labsii ykn jefuraa hin ifteeffamne,himni DefDate akaakuu jijjiiramaa durtii qindeessa,akkaataa hangii qubeen."
-#: 01050300.xhp
+#: 03101300.xhp
msgctxt ""
-"01050300.xhp\n"
-"hd_id3149670\n"
+"03101300.xhp\n"
+"hd_id3154758\n"
"3\n"
"help.text"
-msgid "Breakpoints"
-msgstr "Sarqurxa"
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 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\">Lakkoofsa sarara sarqurxa haaraaf saagi, itti aansuundhaan <emph>Haaraa</emph> cuuqaasi.</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 "Ulaagaalee:"
+
+#: 03101300.xhp
+msgctxt ""
+"03101300.xhp\n"
+"par_id3156709\n"
"6\n"
"help.text"
-msgid "Active"
-msgstr "Kakaasi"
+msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set a default data type for."
+msgstr "<emph>Hangiiarfii:</emph> Qubeewwan kan hangii jijjiiramtootaa kan akaakuu deetaa durtii qindeessuu barbaaddu ifteessan."
-#: 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\">Sarqurxa ammee kakaasi yookiin kakaasuu dhiisi.</ahelp>"
+msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
+msgstr "<emph>xxx:</emph> Jefuraan kan akaakuu jijjiiramaa durtii qindeessu:"
-#: 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 "Lakkoofsa Darbii"
+msgid "<emph>Keyword:</emph> Default variable type"
+msgstr "<emph>Jefuraa:</emph> Akaakuu jijjiiramaa durtii"
-#: 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\">Osoo sarqurxaan galtee hin fudhatiin dura hojjechuudhaaf lakkoofsa deddeebi`aa ifteessi.</ahelp>"
+msgid "<emph>DefDate:</emph> Date"
+msgstr "<emph>DefDate:</emph> Guyyaa"
-#: 01050300.xhp
+#: 03101300.xhp
msgctxt ""
-"01050300.xhp\n"
-"hd_id3152579\n"
+"03101300.xhp\n"
+"hd_id3153768\n"
"10\n"
"help.text"
-msgid "New"
-msgstr "Haaraa"
-
-#: 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\">Lakkoofsa sarara ifteessame irratti sarqurxa uumi.</ahelp>"
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 01050300.xhp
+#: 03101300.xhp
msgctxt ""
-"01050300.xhp\n"
-"hd_id3147319\n"
+"03101300.xhp\n"
+"par_id3145785\n"
"12\n"
"help.text"
-msgid "Delete"
-msgstr "Haqi"
+msgid "' Prefix definitions for variable types:"
+msgstr "REM hiika huddeelsoo akaakuu jijjiiramaaf:"
-#: 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\">Sarqurxa filame haqi.</ahelp>"
+msgid "tDate=Date ' tDate is an implicit date variable"
+msgstr "tDate=Date REM tDate is an implicit date variable"
-#: 03104200.xhp
+#: 03101400.xhp
msgctxt ""
-"03104200.xhp\n"
+"03101400.xhp\n"
"tit\n"
"help.text"
-msgid "Array Function [Runtime]"
-msgstr "Faankishinii waraantoo [Runtime]"
+msgid "DefDbl Statement [Runtime]"
+msgstr "Hima DefDbl[Runtime]"
-#: 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>Faankishinii waraantoo</bookmark_value>"
+msgid "<bookmark_value>DefDbl statement</bookmark_value>"
+msgstr "<bookmark_value>Hima 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 Function [Runtime]\">Faankishinii waraantoo [Runtime]</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 Statement [Runtime]\">Hima DefDbl [Runtime]</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 "Akaakuujijjiiramaa dirree deetaa wajjin deebisa."
+msgid "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified."
+msgstr "yoo arfiin akaakuu labsii ykn jefuraa hin ifteeffamne,akkaataa hangii qubeetiin, akaakuu jijjiiramaa durtii qindeessi."
-#: 03104200.xhp
+#: 03101400.xhp
msgctxt ""
-"03104200.xhp\n"
-"hd_id3148538\n"
+"03101400.xhp\n"
+"hd_id3155420\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasimaa:"
+msgstr "caasimaa:"
-#: 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 "Dabalataan <link href=\"text/sbasic/shared/03104300.xhp\" name=\"DimArray\">DimArray</link> ilaali"
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 03104200.xhp
+#: 03101400.xhp
msgctxt ""
-"03104200.xhp\n"
-"hd_id3150669\n"
+"03101400.xhp\n"
+"par_id3147560\n"
"6\n"
"help.text"
-msgid "Parameters:"
-msgstr "Ulaagaalee:"
+msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set the default data type for."
+msgstr "<emph>Hangiiarfii:</emph> Qubeewwan kan hangii jijjiiramtootaa kan akaakuu deetaa durtii qindeessuu barbaaddu ifteessan."
-#: 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>Tarree qajeelfamaa:</emph> Tarreeffama qajeelfamootaa baay'inni isaa haga fedhe ta'ee kanneen qoodduudhaan adda bahan."
+msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
+msgstr "<emph>xxx:</emph> Jefuraan kan akaakuu jijjiiramaa durtii qindeessu:"
-#: 03104200.xhp
+#: 03101400.xhp
msgctxt ""
-"03104200.xhp\n"
-"hd_id3156343\n"
+"03101400.xhp\n"
+"par_id3151210\n"
"8\n"
"help.text"
-msgid "Example:"
-msgstr "Fakkeenya:"
+msgid "<emph>Keyword:</emph> Default variable type"
+msgstr "<emph>Jefuraa:</emph> Akaakuu jijjiiramaa durtii"
-#: 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>DefSng:</emph> Dachaa"
-#: 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(\"Fred\",\"Tom\",\"Bill\")"
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 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 "REM hiika huddeelsoo akaakuu jijjiiramaaf:"
-#: 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 REM dValue is an implicit Double variable type"
+
+#: 03101500.xhp
+msgctxt ""
+"03101500.xhp\n"
"tit\n"
"help.text"
-msgid "Val Function [Runtime]"
-msgstr "Faankishinii Val [Runtime]"
+msgid "DefInt Statement [Runtime]"
+msgstr "Hima DefInt [Runtime]"
-#: 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>Faankishinii Val</bookmark_value>"
+msgid "<bookmark_value>DefInt statement</bookmark_value>"
+msgstr "<bookmark_value>Hima 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 Function [Runtime]\">Faankishinii Val [Runtime]</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 Statement [Runtime]\">Hima DefInt[Runtime]</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 "Diraa gara himata lakkoofsaatti jijjiira."
+msgid "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified."
+msgstr "yoo arfiin akaakuu labsii ykn jefuraa hin ifteeffamne,akkaataa hangii qubeetiin, akaakuu jijjiiramaa durtii qindeessi."
-#: 03120104.xhp
+#: 03101500.xhp
msgctxt ""
-"03120104.xhp\n"
-"hd_id3159157\n"
+"03101500.xhp\n"
+"hd_id3148686\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasimaa:"
+msgstr "caasimaa:"
-#: 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 "Gatii deebii:"
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 03120104.xhp
+#: 03101500.xhp
msgctxt ""
-"03120104.xhp\n"
-"par_id3143228\n"
+"03101500.xhp\n"
+"par_id3147560\n"
"6\n"
"help.text"
-msgid "Double"
-msgstr "Lamee"
+msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set a default data type for."
+msgstr "<emph>Hangiiarfii:</emph> Qubeewwan kan hangii jijjiiramtootaa kan akaakuu deetaa durtii qindeessuu barbaaddu ifteessan."
-#: 03120104.xhp
+#: 03101500.xhp
msgctxt ""
-"03120104.xhp\n"
-"hd_id3156024\n"
+"03101500.xhp\n"
+"par_id3150398\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Ulaagaalee:"
+msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
+msgstr "<emph>xxx:</emph> Jefuraan kan akaakuu jijjiiramaa durtii qindeessu:"
-#: 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>Barruu:</emph> Diraa lakkoofsa bakka bu'u dha."
+msgid "<emph>Keyword:</emph> Default variable type"
+msgstr "<emph>Jefuraa:</emph> Akaakuu jijjiiramaa durtii"
-#: 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 faankishiniitti fayyadamuun,diraa lakkoofsa bakka bu'u gara himata lakkoofsaatti jijjiiruu ni dandeessa.Kuni faallaa faankishinii <emph>Str</emph> ti. Yoo gamisni diraa qofti lakkoofsa of keessaa qabaate, arfiileen diraa jalqabaa sirriin qofti ni jijjiiramu. Yoo diraan lakkoofsota kamiyyuu of keessaa hin qabu ta'e, faankishiniin <emph>Val</emph> gatii 0 deebisa."
+msgid "<emph>DefInt:</emph> Integer"
+msgstr "<emph>DefSng:</emph> Itergaa"
-#: 03120104.xhp
+#: 03101500.xhp
msgctxt ""
-"03120104.xhp\n"
-"hd_id3154365\n"
+"03101500.xhp\n"
+"hd_id3154123\n"
"10\n"
"help.text"
msgid "Example:"
msgstr "Fakkeenya:"
-#: 03010200.xhp
-msgctxt ""
-"03010200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Functions for Screen Input"
-msgstr "Faankishinii naqaa argii"
-
-#: 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=\"Functions for Screen Input\">Faankishinii naqaa argii</link>"
+msgid "' Prefix definitions for variable types"
+msgstr "REM hiika huddeelsoo akaakuu jijjiiramaaf:"
-#: 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 "Kutaan kun faankishinoota sa`atii darbee naqaa argii too`achuuf gargaaran ibsa."
+msgid "iCount=200 ' iCount is an implicit integer variable"
+msgstr "iCount=200 REM iCount is an implicit integer variable"
-#: 03020411.xhp
+#: 03101600.xhp
msgctxt ""
-"03020411.xhp\n"
+"03101600.xhp\n"
"tit\n"
"help.text"
-msgid "MkDir Statement [Runtime]"
-msgstr "Hima MkDir [Runtime]"
+msgid "DefLng Statement [Runtime]"
+msgstr "Hima DefLng [Runtime]"
-#: 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>Hima MkDir</bookmark_value>"
+msgid "<bookmark_value>DefLng statement</bookmark_value>"
+msgstr "<bookmark_value>Hima 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]\">Hima MkDir [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 Statement [Runtime]\">DefLng Statement [Runtime]</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 "Galeeloo haraa giddugaleessa agaargootti uuma."
+msgid "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified."
+msgstr "yoo arfiin akaakuu labsii ykn jefuraa hin ifteeffamne,akkaataa hangii qubeetiin, akaakuu jijjiiramaa durtii qindeessi."
-#: 03020411.xhp
+#: 03101600.xhp
msgctxt ""
-"03020411.xhp\n"
-"hd_id3148520\n"
+"03101600.xhp\n"
+"hd_id3150504\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasima:"
+msgstr "caasimaa:"
-#: 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 "Ulaagaalee:"
-#: 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>Barruu:</emph> Himamsa diraa kan maqaa ibsu fi galeeloon xurree akka uumamu taasisu.kanas fayyadamuu ni dandeessa <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\"> sirnasxaa 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>Hangiiarfii:</emph> Qubeewwan kan hangii jijjiiramtootaa kan akaakuu deetaa durtii qindeessuu barbaaddu ifteessan."
-#: 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 "Xurreen yoo murtaa'uu baatee, galeeloon galeeloo ammaa kessaatti uumama."
+msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
+msgstr "<emph>xxx:</emph> Jefuraan kan akaakuu jijjiiramaa durtii qindeessu:"
-#: 03020411.xhp
+#: 03101600.xhp
msgctxt ""
-"03020411.xhp\n"
-"hd_id3155388\n"
+"03101600.xhp\n"
+"par_id3148798\n"
"8\n"
"help.text"
-msgid "Example:"
-msgstr "Fakkeenya:"
-
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"par_id3149762\n"
-"10\n"
-"help.text"
-msgid "' Example for functions of the file organization"
-msgstr "'Fakkeenya faankishinii dhaabbata fayiliiti."
-
-#: 03020411.xhp
-#, fuzzy
-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
-#, fuzzy
-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
-#, fuzzy
-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
-#, fuzzy
-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 ' Does the directory exist ?"
-
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"par_id3147228\n"
-"21\n"
-"help.text"
-msgid "MsgBox sFile,0,\"Create directory\""
-msgstr "MsgBox sFile,0,\"Create directory\""
-
-#: 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,\"Current directory\""
-
-#: 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,\"Creation time\""
-
-#: 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,\"File length\""
-
-#: 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,\"File attributes\""
-
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"par_id3153952\n"
-"31\n"
-"help.text"
-msgid "' Rename in the same directory"
-msgstr "Galeeloo tokkoo kessattii maqaa jijjiiri."
+msgid "<emph>Keyword: </emph>Default variable type"
+msgstr "<emph>Jefuraa: </emph>Akaakuu jijjiiramaa durtii"
-#: 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 ) 'Delete all attributes"
+msgid "<emph>DefLng:</emph> Long"
+msgstr "<emph>DefSng:</emph> Dheeraa"
-#: 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,\"New file attributes\""
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 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 "' Converts a system path in URL"
+msgid "' Prefix definitions for variable types:"
+msgstr "REM hiika huddeelsoo akaakuu jijjiiramaaf:"
-#: 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 "' the colon with DOS"
+msgid "lCount=123456789 ' lCount is an implicit long integer variable"
+msgstr "lCount=123456789 REM lCount is an implicit long integer variable"
-#: 03050500.xhp
+#: 03101700.xhp
msgctxt ""
-"03050500.xhp\n"
+"03101700.xhp\n"
"tit\n"
"help.text"
-msgid "On Error GoTo ... Resume Statement [Runtime]"
-msgstr "Gara Dogongora Deemi...Hima Itti Fufutti [Runtime]"
+msgid "DefObj Statement [Runtime]"
+msgstr "Hima DefObj[Runtime]"
-#: 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>Ulaagaa Aanutti Itti Fufi </bookmark_value><bookmark_value>Gara Dogongora Deemi...Hima Itti Fufutti</bookmark_value>"
+msgid "<bookmark_value>DefObj statement</bookmark_value>"
+msgstr "<bookmark_value>Hima 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 Statement [Runtime]\">Gara dogongoraa Deemi...Hima Itti Fufutti [Runtime]</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 Statement [Runtime]\">Hima DefObj [Runtime]</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 "karaa qabanoo-dogongoraa erga dogongorri uumameen booda dandeessisi, ykn sagantaa raawwii itti fufa"
+msgid "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified."
+msgstr "yoo arfiin akaakuu labsii ykn jefuraa hin ifteeffamne,akkaataa hangii qubeetiin, akaakuu jijjiiramaa durtii qindeessi."
-#: 03050500.xhp
+#: 03101700.xhp
msgctxt ""
-"03050500.xhp\n"
-"hd_id3151212\n"
+"03101700.xhp\n"
+"hd_id3150504\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasimaa"
+msgstr "caasimaa:"
-#: 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 "Banaa {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 "Ulaagaalee"
-
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"par_id3150869\n"
-"7\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>Gara Labelname Deemi:</emph> Yoo dogongorri uumame, karaa qabannoo dogongoraa sarara kan \"Labelname\"jalqabu dandeessisi."
-
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"par_id3150439\n"
-"8\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 "Yoo dogongorri uumame<emph>Itt Aanutti Fufi:</emph>, sagantaan raawwii hima kan hima dogongorri uumame hordofu walin fufa"
-
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"par_id3149482\n"
-"9\n"
-"help.text"
-msgid "<emph>GoTo 0:</emph> Disables the error handler in the current procedure."
-msgstr "<emph>Gara 0 Deemi: </emph>waa'iila dogongora adeemsa ammaa dhaamsi"
-
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"par_id3149483\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 ""
-
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"par_id3148619\n"
-"10\n"
-"help.text"
-msgid "The On Error GoTo statement is used to react to errors that occur in a macro."
-msgstr ""
-
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3146985\n"
-"11\n"
-"help.text"
-msgid "Example:"
-msgstr "Fakkeenya"
-
-#: 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, \"kun sarara barruti\""
-
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"par_id3146916\n"
-"67\n"
-"help.text"
-msgid "MsgBox \"All files will be closed\",0,\"Error\""
-msgstr "MsgBox \"All files will be closed\",0,\"Error\""
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"tit\n"
-"help.text"
-msgid "$[officename] Basic Glossary"
-msgstr "Jibsoo Basic $[officename]"
-
-#: 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 Glossary\">Jibsoo Bu`uura $[officename]</link>"
+msgstr "Ulaagaalee:"
-#: 00000002.xhp
+#: 03101700.xhp
msgctxt ""
-"00000002.xhp\n"
-"par_id3150792\n"
-"2\n"
+"03101700.xhp\n"
+"par_id3148552\n"
+"6\n"
"help.text"
-msgid "This glossary explains some technical terms that you may come across when working with $[officename] Basic."
-msgstr "Jibsoon kun ogummaa jechoota tokko tokkoo Bu`uura $[officename] wajin hojetan ibsa."
+msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set the default data type for."
+msgstr "<emph>Hangiiarfii:</emph> Qubeewwan kan hangii jijjiiramtootaa kan akaakuu deetaa durtii qindeessuu barbaaddu ifteessan."
-#: 00000002.xhp
+#: 03101700.xhp
msgctxt ""
-"00000002.xhp\n"
-"hd_id3155133\n"
+"03101700.xhp\n"
+"par_id3150358\n"
"7\n"
"help.text"
-msgid "Decimal Point"
-msgstr "Akeeki Kurnyee"
+msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
+msgstr "<emph>xxx:</emph> Jefuraan kan akaakuu jijjiiramaa durtii qindeessu:"
-#: 00000002.xhp
+#: 03101700.xhp
msgctxt ""
-"00000002.xhp\n"
-"par_id3156443\n"
+"03101700.xhp\n"
+"par_id3148798\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 "Yeroo lakkoofsota, $[officename] Bu`uura jijjiirtu gosa kurnyee fi gargareessaa lakkoofssaa addaanbaasuuf sirna Qindaa'ina gitoo biyyaatti gargaarami."
+msgid "<emph>Keyword: </emph>Default variable type"
+msgstr "<emph>Jefuraa: </emph>Akaakuu jijjiiramaa durtii"
-#: 00000002.xhp
+#: 03101700.xhp
msgctxt ""
-"00000002.xhp\n"
-"par_id3153092\n"
+"03101700.xhp\n"
+"par_id3150769\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 "Amali kalattii maleen jijjiiruu ( 1 + \"2.3\" = 3.3 ) akkasumas fankishinii sa`aa darbee irratti gara lachuunuu galtee qaba <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 "Halluuwwan"
-
-#: 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 "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>."
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"hd_id3146119\n"
-"32\n"
-"help.text"
-msgid "Measurement Units"
-msgstr "Safartuuwwan"
+msgid "<emph>DefObj:</emph> Object"
+msgstr "<emph>DefObj:</emph> Wanta"
-#: 00000002.xhp
+#: 03101700.xhp
msgctxt ""
-"00000002.xhp\n"
-"par_id3154013\n"
-"33\n"
+"03101700.xhp\n"
+"hd_id3156212\n"
+"10\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 ""
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 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>twips; Hiika</bookmark_value>"
+msgid "REM Prefix definitions for variable types:"
+msgstr "REM hiika huddeelsoo akaakuu jijjiiramaaf:"
-#: 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 "Twiipsi"
+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 "twiipsin safartuu argii hirkattoo malee ta`ee iddoo murtaa`aa fi dheerina argii maalimootaa cirna hundaa keessatti kan hiiku dha. Twiipsin inchii 1/1440ffaa yookiin 1/20 tuqaa maxxansaa ti. Twiipsin inchii 1440 yookiin 567 saantiimeetiraan jiru."
+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 "Ibsa 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 "URLiin (<emph>Uniform Resource Locators</emph>) iddoo qabeenya kan akka faayilii sirna faayilii keessaa,haalaan Cimdaa qeeyyaa keessaa murteessuuf nama garagara. URLiin murteesituu aaloo, murteesituu Affeertuu fi faayilii fi murteesituu xurree irraa kan ijaarame dha:"
+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>aaloo</emph>://<emph>host.name</emph>/<emph>path/to/the/file.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 "Faayidaan URLootaa inni gudaan Intarneetii irrati yeroo fuula saphaphuun ifteessamu dha.Fakkeenyaaf <emph>http</emph>, <emph>ftp</emph>, yookiin <emph>faaayilii</emph> aalootaafi dha.<emph>Faayilii</emph> murteeesituun aaloo kan gargaaru faayilii qe`ee sirna faayilii irratti yeroo ibsinu dha."
+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 "Ibsi URLii arfiilee addaa tokko tokko tajaajilaaf hin Hayyamu.Isaan kunis Arfiilee biroon yookiin Lakkaddaaye bakk bu`a. Haxaaroon (<emph>/</emph>) akka Gargareessaa xurreetti gargaara. Fakeenyaaf, faayiliin akka <emph>C:\\My File.sxw</emph> ibsamu affeertuu qe`ee \"ibsa foddaalee\" ibsa URL keessatti <emph> file:///C|/My%20File.sxw</emph> ni ta`a."
+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 Function [Runtime]"
+msgid "DefVar Statement [Runtime]"
+msgstr "Hima DefVar[Runtime]"
-#: 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>Faankishinii walqabataa </bookmark_value>"
+msgid "<bookmark_value>DefVar statement</bookmark_value>"
+msgstr "<bookmark_value>Hima 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 Function [Runtime]\">Faankishinii Walqabataa [Runtime]</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 Statement [Runtime]\">Hima DefVar [Runtime]</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 "Diraa qurxa diraawwanii baay'ee, tarree diraa keessa jiran deebisa."
+msgid "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified."
+msgstr "yoo arfiin akaakuu labsii ykn jefuraa hin ifteeffamne,akkaataa hangii qubeetiin, akaakuu jijjiiramaa durtii qindeessi."
-#: 03120315.xhp
+#: 03102000.xhp
msgctxt ""
-"03120315.xhp\n"
-"hd_id3159414\n"
+"03102000.xhp\n"
+"hd_id3154143\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasimaa:"
+msgstr "caasimaa:"
-#: 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 "Gatii deebii"
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 03120315.xhp
+#: 03102000.xhp
msgctxt ""
-"03120315.xhp\n"
-"par_id3150359\n"
+"03102000.xhp\n"
+"par_id3147560\n"
"6\n"
"help.text"
-msgid "String"
-msgstr "Diraa"
+msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set the default data type for."
+msgstr "<emph>Hangiiarfii:</emph> Qubeewwan kan hangii jijjiiramtootaa kan akaakuu deetaa durtii qindeessuu barbaaddu ifteessan."
-#: 03120315.xhp
+#: 03102000.xhp
msgctxt ""
-"03120315.xhp\n"
-"hd_id3148798\n"
+"03102000.xhp\n"
+"par_id3148552\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Ulaagaalee:"
+msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
+msgstr "<emph>xxx:</emph> Jefuraan kan akaakuu jijjiiramaa durtii qindeessu:"
-#: 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>Barruu:</emph> Waraantoo diraa."
+msgid "<emph>Keyword: </emph>Default variable type"
+msgstr "<emph>Jefuraa: </emph>Akaakuu jijjiiramaa durtii"
-#: 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 (optional):</emph> Arfii diraa kan qurxa diraawwanii, diraa keessatti argaman addaan baasuuf fayyadu dha. Durtii daangessuun iddoo arfiiti. Yoo daangessaan diraa dheerinni isaa duwwaa \"\" ta'e, qurxaawwan diraa kan walqabatan fo'aa malee dha."
+msgid "<emph>DefVar:</emph> Variant"
+msgstr "<emph>DefCur:</emph> Addaba'a"
-#: 03120315.xhp
+#: 03102000.xhp
msgctxt ""
-"03120315.xhp\n"
-"hd_id3154218\n"
+"03102000.xhp\n"
+"hd_id3151041\n"
"10\n"
"help.text"
msgid "Example:"
msgstr "Fakkeenya:"
-#: 03030102.xhp
-msgctxt ""
-"03030102.xhp\n"
-"tit\n"
-"help.text"
-msgid "DateValue Function [Runtime]"
-msgstr "Faankishinii DateValue [Runtime]"
-
-#: 03030102.xhp
-msgctxt ""
-"03030102.xhp\n"
-"bm_id3156344\n"
-"help.text"
-msgid "<bookmark_value>DateValue function</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii 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 Function [Runtime]\">Faankishinii DateValue [Runtime]</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 "Gatii diraa irraa gatii guyyaa deebisi. Gatii numeerika qeenxee keessatti diraaan guutuudha. Tartee lakkoofsa kana fayyadamuu ni dandeessa garagarummaa guyyota lamaa gidduu jiru murteessuf."
-
-#: 03030102.xhp
-msgctxt ""
-"03030102.xhp\n"
-"hd_id3148799\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Caasima:"
-
-#: 03030102.xhp
-msgctxt ""
-"03030102.xhp\n"
-"par_id3154910\n"
-"4\n"
-"help.text"
-msgid "DateValue [(date)]"
-msgstr "DateValue [(Guyyaa)]"
-
-#: 03030102.xhp
-msgctxt ""
-"03030102.xhp\n"
-"hd_id3150870\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Gatii deebii:"
-
-#: 03030102.xhp
-msgctxt ""
-"03030102.xhp\n"
-"par_id3153194\n"
-"6\n"
-"help.text"
-msgid "Date"
-msgstr "Guyyaa"
-
-#: 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 "Ulaagaalee:"
+msgid "' Prefix definitions for variable types:"
+msgstr "REM hiika huddeelsoo akaakuu jijjiiramaaf:"
-#: 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>Guyyaa:</emph> Himamsa diraa kan guyyaa ati shallaguu barbaadee of keessaa qabu. Guyyaan akkataa qophii kamiinuu ibsamuu danda'a."
+msgid "vDiv=99 ' vDiv is an implicit variant"
+msgstr "vDiv=99 REM vDiv is an implicit 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 "Faankishinii kana fayyadamuu dandeessa guyyaa muddee 1,1582 fi muddee 31,9999 gara gatii qeenxee itergaatti jijjiiruuf.Garagarummaa guyyota gidduu jiru shallaguuf gatii kana fayyadamuu dandeessa $[officename] Bu'uurri ergaa gatii dogogoraa deebisa."
-
-#: 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 "Akka addaadoo faankishinii DateSerial kan waggaa,ji'a, fi guyyota dabarsu kanaati gatii numeerikaala garagarbaasuuf faankishinin DateValue haala kanaan \"month.[,]day.[,]year\" dabarsuu qabda."
-
-#: 03030102.xhp
-msgctxt ""
-"03030102.xhp\n"
-"hd_id3153142\n"
-"24\n"
-"help.text"
-msgid "Example:"
-msgstr "Fakkeenya:"
-
-#: 03120300.xhp
-msgctxt ""
-"03120300.xhp\n"
-"tit\n"
-"help.text"
-msgid "Editing String Contents"
-msgstr "Qabiyyeewwan Diraa Gulaaluu"
-
-#: 03120300.xhp
-msgctxt ""
-"03120300.xhp\n"
-"bm_id7499008\n"
-"help.text"
-msgid "<bookmark_value>ampersand symbol in StarBasic</bookmark_value>"
-msgstr "<bookmark_value>StarBasic 'n mallattoo fi</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=\"Editing String Contents\">Qabiyyeewwan diraa gulaaluu</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 "Faankishinoonni armaan gadii Qabiyyeewwan diraawwanii gulaalu, dhangi'u, fi hiriirsisu. Diraawwan direessuuf, qooyyaba &'tti fayyadami."
-
-#: 03132400.xhp
-msgctxt ""
-"03132400.xhp\n"
-"tit\n"
-"help.text"
-msgid "CreateObject Function [Runtime]"
-msgstr "Faankishinii CreateObject [Runtime]"
-
-#: 03132400.xhp
-msgctxt ""
-"03132400.xhp\n"
-"bm_id659810\n"
-"help.text"
-msgid "<bookmark_value>CreateObject function</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii 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\">Faankishinii CreateObject [Runtime]</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 object uuma. Foddaaleerrattis, OLE objects uumuu ni danda'a.</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 "Tooftaan kun akaakuu miseensota akka ulaagaatti darban uuma."
-
-#: 03132400.xhp
-msgctxt ""
-"03132400.xhp\n"
-"par_idN105A2\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Caasimaa:"
-
-#: 03132400.xhp
-msgctxt ""
-"03132400.xhp\n"
-"par_idN105A6\n"
-"help.text"
-msgid "oObj = CreateObject( type )"
-msgstr "oObj = CreateObject( type )"
-
-#: 03132400.xhp
-msgctxt ""
-"03132400.xhp\n"
-"par_idN105A9\n"
-"help.text"
-msgid "Example:"
-msgstr "Fakkeenyaaf:"
+msgid "vDiv=\"Hello world\""
+msgstr "vDiv=\"Hello world\""
-#: 03020104.xhp
+#: 03102100.xhp
msgctxt ""
-"03020104.xhp\n"
+"03102100.xhp\n"
"tit\n"
"help.text"
-msgid "Reset Statement [Runtime]"
-msgstr "Hima haaromsaa [Runtime]"
+msgid "Dim Statement [Runtime]"
+msgstr "Hima Dim [Runtime]"
-#: 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>Hima haaromsaa</bookmark_value>"
+msgid "<bookmark_value>Dim statement</bookmark_value><bookmark_value>arrays; dimensioning</bookmark_value><bookmark_value>dimensioning arrays</bookmark_value>"
+msgstr "<bookmark_value>Hima Dim</bookmark_value><bookmark_value>arrays; dimensioning</bookmark_value><bookmark_value>dimensioning arrays</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\">Hima haaromsaa [Runtime]</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 Statement [Runtime]\">Hima Dim [Runtime]</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 "Faayilii banamaa hundaa cufi qabiyyee faayilii ittisoo walitti bu'iinsaa hundaa keessaa baxxee jabaa irratti barreessi."
+msgid "Declares a variable or an array."
+msgstr "Jijjiiramaa ykn waraantoo labsuu."
-#: 03020104.xhp
+#: 03102100.xhp
msgctxt ""
-"03020104.xhp\n"
-"hd_id3154124\n"
+"03102100.xhp\n"
+"par_id3154686\n"
"3\n"
"help.text"
-msgid "Syntax:"
-msgstr "Caasima:"
-
-#: 03020104.xhp
-msgctxt ""
-"03020104.xhp\n"
-"hd_id3161831\n"
-"5\n"
-"help.text"
-msgid "Example:"
-msgstr "Fakkeenya:"
-
-#: 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, \"Kun Barruu sarara haaraati \""
-
-#: 03020104.xhp
-msgctxt ""
-"03020104.xhp\n"
-"par_id3163805\n"
-"62\n"
-"help.text"
-msgid "MsgBox \"All files will be closed\",0,\"Error\""
-msgstr "MsgBox \"Faayiloonni martuu cufamaa dha\",0,\"Dogogora\""
-
-#: 03010303.xhp
-msgctxt ""
-"03010303.xhp\n"
-"tit\n"
-"help.text"
-msgid "Red Function [Runtime]"
-msgstr "Faankishinii [Runtime] diimaa"
-
-#: 03010303.xhp
-msgctxt ""
-"03010303.xhp\n"
-"bm_id3148947\n"
-"help.text"
-msgid "<bookmark_value>Red function</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii diimaa</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 Function [Runtime]\">Faankishinii [Runtime] diimaa</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 "Yoo jijjiiramoonii qoodduudhaan adda bahu ta'ee (fakkeenyaaf, DIM sPar1, sPar2, sPar3 AS STRING), jijjiiramoota haaroman qofatu murtaawa. Tokkoon tokkoon jijjiiramaatiif sarara murtaawoo addabaassaa fayyadami."
-#: 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 "Gosa diimaa lakkaddaa halluu ifteessamee deebisi."
+msgid "Dim declares local variables within subroutines. Global variables are declared with the PUBLIC or the PRIVATE statement."
+msgstr "Dim declares local variables within subroutines. Global variables are declared with the PUBLIC or the PRIVATE statement."
-#: 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 "aasimaa:"
-
-#: 03010303.xhp
-msgctxt ""
-"03010303.xhp\n"
-"par_id3150448\n"
-"4\n"
-"help.text"
-msgid "Red (ColorNumber As Long)"
-msgstr "Red (ColorNumber As Long)"
-
-#: 03010303.xhp
-msgctxt ""
-"03010303.xhp\n"
-"hd_id3151042\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Gatii deebii:"
+msgstr "caasimaa:"
-#: 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 "Intergaa"
+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 "Ulaagaa:"
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 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>Lakkoofsa Halluu</emph>: Himannoo intergaa dheeraa kan <link href=\"text/sbasic/shared/00000003.xhp#farbcodes\" name=\"color code\">lakkadda halluu</link> gosa diimaa eenyumaayyuu deebisuu ifteessa."
+msgid "<emph>VarName:</emph> Any variable or array name."
+msgstr "<emph>VarName:</emph> Maqaa jijjiiramaa ykn waraantoo kamuu."
-#: 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 "Fakkeenya:"
+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> Gatiin lakkoofsaa ykn seranaa kan lakkofsa miseensota(NumberElements=(end-start)+1) fi hangii kasaa ifteessan."
-#: 03010303.xhp
-#, fuzzy
+#: 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 \"The color \" & lVar & \" consists of:\" & Chr(13) &_"
+msgid "Start and End can be numerical expressions if ReDim is applied at the procedure level."
+msgstr "Yoo RemDim sadarkaa adeemsarratti dalagame Start fi End himannoowwan lakkoofsaa ta'uu danda'u."
-#: 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= \" & red(lVar) & Chr(13)&_"
+msgid "<emph>VarType:</emph> Key word that declares the data type of a variable."
+msgstr "<emph>VarType:</emph> Jefuraan kan akaakuu deetaa jijjiiramaa labsu."
-#: 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= \" & green(lVar) & Chr(13)&_"
+msgid "<emph>Keyword:</emph> Variable type"
+msgstr "<emph>Jefuraa:</emph> Akaakuu jijjiiramaa"
-#: 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= \" & blue(lVar) & Chr(13) , 64,\"colors\""
-
-#: 03120314.xhp
-msgctxt ""
-"03120314.xhp\n"
-"tit\n"
-"help.text"
-msgid "Split Function [Runtime]"
-msgstr "Faankishinii Addabaa [Runtime]"
-
-#: 03120314.xhp
-msgctxt ""
-"03120314.xhp\n"
-"bm_id3156027\n"
-"help.text"
-msgid "<bookmark_value>Split function</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii Addabaa</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 Function [Runtime]\">Faankishinii Addabaa [Runtime]</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 "Tarreeffama qurxa diraawwanii, himata diraarraa deebisa."
-
-#: 03120314.xhp
-msgctxt ""
-"03120314.xhp\n"
-"hd_id3149177\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Caasimaa:"
-
-#: 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> Jijjiiramaa Buuliyaanii(Dhugaa, Soba)"
-#: 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 "Gatii deebii:"
+msgid "<emph>Currency:</emph> Currency-Variable (Currency with 4 Decimal places)"
+msgstr "<emph>Mahaallaqa:</emph> Jijjiiramaa mahaallaqaa (Mahaallaqa hanga bakka kurniyee 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 "Diraa"
+msgid "<emph>Date:</emph> Date variable"
+msgstr "<emph>Guyyaa:</emph> Jijjiirama guyyaa"
-#: 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 "Ulaagaa:"
+msgid "<emph>Double:</emph> Double-precision floating-point variable (1,79769313486232 x 10E308 - 4,94065645841247 x 10E-324)"
+msgstr "<emph>Dachaa:</emph> Jijjiiramaa sirrummaa-dachaa tuqaa bololi'aa variable (1,79769313486232 x 10E308 - 4,94065645841247 x 10E-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> Himata Diraa kamiyyuu"
+msgid "<emph>Integer:</emph> Integer variable (-32768 - 32767)"
+msgstr "<emph>Itergaa:</emph> Jijjiirama Itergaa (-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 (optional):</emph> Diraa dheerinni isaa arfiilee tokkoo fi isaa ol ta'ee , barruu daangessuuf fayyada."
+msgid "<emph>Long:</emph> Long integer variable (-2.147.483.648 - 2.147.483.647)"
+msgstr "<emph>Dheeraa:</emph> Jijjiirama itergaa dheeraa (-2.147.483.648 - 2.147.483.647)"
-#: 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 (optional):</emph> Lakkoofsa qurxa diraawwanii akka deebi'u barbaaddu deebisa."
+msgid "<emph>Object:</emph> Object variable (Note: this variable can only subsequently be defined with Set!)"
+msgstr "<emph>Wanta:</emph> Jijjiirama wantaa (hubachiisa: Jijjiiramaan kun tuuta waliin qofa tartiiban ifteeffamuu danda'a!)"
-#: 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 "Fakkeenya:"
+msgid "<emph>Single:</emph> Single-precision floating-point variable (3,402823 x 10E38 - 1,401298 x 10E-45)."
+msgstr "<emph>Baxxee:</emph> Jijjiiramaa sirrummaa-baxxee tuqaa bololi'aa variable (3,402823 x 10E38 - 1,401298 x 10E-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 "Hima naqaa# [Runtime]"
+msgid "<emph>String:</emph> String variable consisting of a maximum of 64,000 ASCII characters."
+msgstr "<emph>Diraa:</emph> Jijjiiramaa diraan arfoota ASCII alaantoo 64,000 of keessaa qaba."
-#: 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>Hima naqaa </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> Akaakuu jijjiiramaa addaba'aa(akaakuu hunda hiikkoon ifteefame of keessaa qaba)."
-#: 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# Statement [Runtime]\"> Hima naqaa# [Runtime]</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 keessatti, jijjiiramtoota ifaan labsuun si barbaachisu. Haa ta'u malee, waraantoo fayyadamuun dura labsuu si barbaachisa. Jijjiiramaa hima Dim wajjiin labsuu dandeessa, labsoota baay'ee addan baasuuf qoodduu fayyadamuu. Akaakuu jijjiiramaa labsuuf, arfii akaakuu labsii maqaa duuka bu'utti galchi ykn jefuraa walitti dhufoo fayyadami."
-#: 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 "Tartiiba faayilii irraa deetaa dubbisa."
+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 waraantoo rog-baaqqee ykn danuu kan akaakuu jijjiiramaan ifteefame gargaara. Yoo sagantaan tarree ykn gabatee gulaaluu barbaaddu qabaate waraantoon mijaawadha. Bu'aan waraantoo miseensota tokkoo tokkoo akkaataa kasootatti furuu danda'uu, kan akka himannoo ykn jijjiiramaa lakkoofsaatti ashakame."
-#: 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 "Caasima:"
+msgid "Arrays are declared with the Dim statement. There are two methods to define the index range:"
+msgstr "Waraantoon hima Dim waliin labsama. Hangii kasaa tooftaa laman ifteeffama."
-#: 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 elements numbered from 0 to 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 "Ulaagaalee:"
+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 elements numbered from 5 to 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> Baay'ina faayilii kan deetaa dubbisuu barbaadde of keessaa qabu. Faayiliin hima banaa irraa banamuu qaba jefuraa INPUT jedhamu fayyadamuudhaan."
+msgid "DIM text(-15 to 5) as String REM 21 elements (including 0)"
+msgstr "DIM text(-15 to 5) as String REM 21 elements (including 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> Gegeedaramaa numeerikaalaa ykn diraa kan gatii faayilii banaa irraa dubbifamu."
+msgid "REM numbered from -15 to 5"
+msgstr "REM numbered from -15 to 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 "Himni <emph>Input#</emph> gatii numeerikaalaa ykn diraa faayilii banaa irraa deetaa gegeedaramaa tokkoo fi isaa olitti mogaafama. Gegeedaramaan numeerikaalaa hanga daangaa toorbarruu (Asc=13) (Asc=10),iddoo,qoodduu dubbisa. Gegeedaraman diraa hanga toorbarruu(Asc=13), (Asc=10), ykn qoodduutti dubbisa."
+msgid "Two-dimensional data field"
+msgstr "Dirree deetaa rog-lamee"
-#: 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 "Deetaa fi akaakuu deetaa faayilii banaa keessaa tartiiba tokkoon akka ulaagaa gegeedaramaa \"var\" mul'achuu qaba.Yoo gatii numeerikaala hin taane gegeedaramaa numeerikaalaati moggaaste \"var\" gatii \"0\" moggaafama."
+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 elements; form 0 to 20 level 1, from 0 to 20 level 2 and from 0 to 20 level 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 "Kuusaan qooddudhaan addan bahan gegeedaramaa diraatti hin moggafaman. Mallattoo waraabbii(\"\") hubannoo keessaa galuu qaba.Yoo faayiliirraa arfii kana dubbisuu barbaadde sarara<emph> kana fayyadami hima Input#</emph> barruu qulqulluu sarara sararaan dubbisuuf (faayiliin arfii maxxanfamaa qofa of keessaa qaba)."
+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 "Yoo himni ReDim lakkoofsa rogootaa sagantaa xiqqaa ykn faankshinii waraantoo qabu keessatti qindeesse, akaakuu waraantoo akka kamaatiitti labsuu dandeessa.Walumaa galatti, waraantoo rogaa altokkoo qofa qindeessuu dandeessa,haarumsuu hin dandeessu. Sagantaa xiqqaa keessaatti, waraantoo ReDim wajjin labsuu dandeessa. Roga himannoowwan lakkoofsaa wajjin qofa ifteessuu dandeessa. Kun dirree hamma guddachuu barbaachisu qofa dhugoomsuuf."
-#: 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 "Yoo dhumni faayilii dhaqabame ennaa maalimni deetaa dubbifamu dogogorrii uumamee hojiin addaan kuta."
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 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 "Fakkeenya:"
+msgid "sVar = \"Office\""
+msgstr "sVar = \"Office\""
-#: 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 ""
+msgid "' Two-dimensional data field"
+msgstr "Dirree deetaa rog-lamee"
-#: 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 ""
+msgid "Const sDim As String = \" Dimension:\""
+msgstr "Const sDim as String = \" Dimension:\""
#: 03102101.xhp
msgctxt ""
@@ -24406,7 +26818,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "Declares a variable or an array."
-msgstr "Jijjiiramaa ykn waraantoo labsuu"
+msgstr "Jijjiiramaa ykn waraantoo labsuu."
#: 03102101.xhp
msgctxt ""
@@ -24415,7 +26827,7 @@ msgctxt ""
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasimaa:"
+msgstr "caasimaa:"
#: 03102101.xhp
msgctxt ""
@@ -24459,7 +26871,7 @@ msgctxt ""
"7\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> Gatii lakkoofsaa or seranaa kan lakkoofsa miseensotaa (NumberElements=(end-start)+1) fi hangii kasaa qindeessan."
+msgstr "<emph>Start, End:</emph> Gatiin lakkoofsaa ykn seranaa kan lakkofsa miseensota(NumberElements=(end-start)+1) fi hangii kasaa ifteessan."
#: 03102101.xhp
msgctxt ""
@@ -24486,7 +26898,7 @@ msgctxt ""
"10\n"
"help.text"
msgid "<emph>Keyword:</emph> Variable type"
-msgstr "<emph>Jefuraa: </emph>Akaakuu jijjiiramaa"
+msgstr "<emph>Jefuraa:</emph> Akaakuu jijjiiramaa"
#: 03102101.xhp
msgctxt ""
@@ -24504,7 +26916,7 @@ msgctxt ""
"12\n"
"help.text"
msgid "<emph>Date:</emph> Date variable"
-msgstr "<emph>Guyyaa:</emph> Jijjiiramaa"
+msgstr "<emph>Guyyaa:</emph> Jijjiirama guyyaa"
#: 03102101.xhp
msgctxt ""
@@ -24522,7 +26934,7 @@ msgctxt ""
"14\n"
"help.text"
msgid "<emph>Integer:</emph> Integer variable (-32768 - 32767)"
-msgstr "<emph>Itergaa:</emph> Jijjiiramaa itergaa (-32768 - 32767)"
+msgstr "<emph>Itergaa:</emph> Jijjiirama Itergaa (-32768 - 32767)"
#: 03102101.xhp
msgctxt ""
@@ -24576,7 +26988,7 @@ msgctxt ""
"20\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 "Basic $[officename] keessatti, jijjiiramoota addaan labsuu sinbarbaachissu. Haata'uu iyuu malee, waraantootti osoo hin fayyadaminiin dura labsuu sibarbaachissa."
+msgstr "$[officename] Basic keessatti, jijjiiramtoota ifaan labsuun si barbaachisu. Haa ta'u malee, waraantoo fayyadamuun dura labsuu si barbaachisa. Jijjiiramaa hima Dim wajjiin labsuu dandeessa, labsoota baay'ee addan baasuuf qoodduu fayyadamuu. Akaakuu jijjiiramaa labsuuf, arfii akaakuu labsii maqaa duuka bu'utti galchi ykn jefuraa walitti dhufoo fayyadami."
#: 03102101.xhp
msgctxt ""
@@ -24585,7 +26997,7 @@ msgctxt ""
"21\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 Waraantoowwan salphaa ykn rog-baay'ee kanneen akaakuu jijjiiramaa ibsameen hiikame ni deeggara.Yoo sagantichi tarreewwan ykn gabateewwan gulaaluu barbaaddu of keessaa qabaate, waraantoowwan ni mijaawu. Faayidaan waraantoo; miseensotni isaa kasaatti, foormulaa kanneen akka himata lakkoofsaatti ykn jijjiiramaatti jiran, fayyadamuun salphaatti dhaqqabamuu ni danda'u."
+msgstr "$[officename] Basic waraantoo rog-baaqqee ykn danuu kan akaakuu jijjiiramaan ifteefame gargaara. Yoo sagantaan tarree ykn gabatee gulaaluu barbaaddu qabaate waraantoon mijaawadha. Bu'aan waraantoo miseensota tokkoo tokkoo akkaataa kasootatti furuu danda'uu, kan akka himannoo ykn jijjiiramaa lakkoofsaatti ashakame."
#: 03102101.xhp
msgctxt ""
@@ -24650,5046 +27062,4114 @@ msgctxt ""
msgid "Example:"
msgstr "Fakkeenya:"
-#: 03030103.xhp
+#: 03102200.xhp
msgctxt ""
-"03030103.xhp\n"
+"03102200.xhp\n"
"tit\n"
"help.text"
-msgid "Day Function [Runtime]"
-msgstr "Faankishinii Guyyaa [Runtime]"
+msgid "IsArray Function [Runtime]"
+msgstr "Faankishinii IsArray [Runtime]"
-#: 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>Faankishinii Guyyaa</bookmark_value>"
+msgid "<bookmark_value>IsArray function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii 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 Function [Runtime]\">Faankishinii Guyyaa [Runtime]</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 Function [Runtime]\">Faankishinii IsArray [Runtime]</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 "Tartee lakkoofsa guyyaa irratti hundaa'uudhaan gatii deebisa kan guyyaa ji'aa ibsu kan inni madduuniis faankishinii <emph>DateSerial</emph> ykn <emph>DateValue</emph> jedhamuuni."
+msgid "Determines if a variable is a data field in an array."
+msgstr "Waraantoo keessatti, dirree deetaa ta'uu jijjiiramaa murteessa."
-#: 03030103.xhp
+#: 03102200.xhp
msgctxt ""
-"03030103.xhp\n"
-"hd_id3149456\n"
+"03102200.xhp\n"
+"hd_id3150792\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasima:"
+msgstr "caasimaa:"
-#: 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 "Guyyaa (Lakkoofsa)"
+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 "Gatii deebiii:"
+msgstr "Gatii deebii:"
-#: 03030103.xhp
+#: 03102200.xhp
msgctxt ""
-"03030103.xhp\n"
-"par_id3125865\n"
+"03102200.xhp\n"
+"par_id3154685\n"
"6\n"
"help.text"
-msgid "Integer"
-msgstr "Itergaa"
+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 "Ulaagaalee:"
-#: 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>Lakkoofsa:</emph> Himamsa numeerikaalaa kan laakkofsa tartee guyyaa of keessaa qabu kanarraa guyyaa ji'aa murteessu dandeessa."
+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> Jijjiiramaa kamiyyuu kan ati akka waraantootti lallabamuu isaa basbaaduuf barbaaddu dha. Yoo jijjiiramtichi waraantoo ta'e, faankishinichi <emph>Dhugaa</emph> deebisa; yoo ta'uu baate ammoo <emph>Sobatu</emph> deebi'a."
-#: 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 "Faankishiniin kun bu'uuraan faallaa DateSerial faankishiniiti,tartee lakkoofsa guyyaa irra guyyaa ji'aa deebisa <emph>DateSerial</emph> faankishinii irraa madda ykn <emph>DateValue</emph>faankishinii jedhamu irraa.Fakkeenyaaf,himamsa."
-
-#: 03030103.xhp
-msgctxt ""
-"03030103.xhp\n"
-"par_id3153190\n"
-"11\n"
-"help.text"
-msgid "returns the value 20."
-msgstr "Gatii 20 deebisi."
-
-#: 03030103.xhp
-msgctxt ""
-"03030103.xhp\n"
-"hd_id3149481\n"
-"12\n"
-"help.text"
msgid "Example:"
msgstr "Fakkeenya:"
-#: 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 "Maxxansa \"Day \" & Day(DateSerial(1994, 12, 20)) & \" of the month\""
-
-#: 03104500.xhp
+#: 03102300.xhp
msgctxt ""
-"03104500.xhp\n"
+"03102300.xhp\n"
"tit\n"
"help.text"
-msgid "IsUnoStruct Function [Runtime]"
-msgstr "Faankishinii IsUnoStruct [Runtime]"
+msgid "IsDate Function [Runtime]"
+msgstr "Faankishinii IsDate [Runtime]"
-#: 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>Faankishinii IsUnoStruct</bookmark_value>"
+msgid "<bookmark_value>IsDate function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii 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 Function [Runtime]\">Faankishinii IsUnoStruct [Runtime]</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 Function [Runtime]\">Faankishinii IsDate [Runtime]</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 "Yoo wanti kenname Uno struct ta'e, True deebisa."
+msgid "Tests if a numeric or string expression can be converted to a <emph>Date</emph> variable."
+msgstr "Yoo himatni lakkoofsaa ykn diraa gara jijjiiramaa <emph>Guyyaatti</emph> jijjiiramuu ni danda'a ta'e basdaada."
-#: 03104500.xhp
+#: 03102300.xhp
msgctxt ""
-"03104500.xhp\n"
-"hd_id3148538\n"
+"03102300.xhp\n"
+"hd_id3153824\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasimaa:"
+msgstr "caasimaa:"
-#: 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 "Gatii Deebii:"
+msgstr "Gatii deebii:"
-#: 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 "Ulaagaalee:"
-#: 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>Himata:</emph> Himata lakkoofsaa ykn diraa kamiyyuu kan ati basdaaduu barbaaddu dha. Yoo himatni gara guyyaatti jijjiiramuu ni danda'a ta'e, faankishinichi <emph>Dhugaa</emph> deebisa; yoo hin dandeenye ammoo <emph>Soba</emph> deebisa."
-#: 03104500.xhp
+#: 03102300.xhp
msgctxt ""
-"03104500.xhp\n"
-"hd_id3156343\n"
+"03102300.xhp\n"
+"hd_id3150447\n"
"9\n"
"help.text"
msgid "Example:"
msgstr "Fakkeenya:"
-#: 03104500.xhp
-msgctxt ""
-"03104500.xhp\n"
-"par_idN10638\n"
-"help.text"
-msgid "' Instantiate a service"
-msgstr "' Instantiate a service"
-
-#: 03104500.xhp
-#, fuzzy
-msgctxt ""
-"03104500.xhp\n"
-"par_idN10644\n"
-"help.text"
-msgid "MsgBox bIsStruct ' Displays False because oSimpleFileAccess Is NO struct"
-msgstr "MsgBox bIsStruct ' Displays False because oSimpleFileAccess is NO struct"
-
-#: 03104500.xhp
-msgctxt ""
-"03104500.xhp\n"
-"par_idN10649\n"
-"help.text"
-msgid "' Instantiate a Property struct"
-msgstr "' Instantiate a Property struct"
-
-#: 03104500.xhp
-msgctxt ""
-"03104500.xhp\n"
-"par_idN10653\n"
-"help.text"
-msgid "MsgBox bIsStruct ' Displays True because aProperty is a struct"
-msgstr "MsgBox bIsStruct ' Displays True because aProperty is a struct"
-
-#: 03104500.xhp
-msgctxt ""
-"03104500.xhp\n"
-"par_idN1065B\n"
-"help.text"
-msgid "MsgBox bIsStruct ' Displays False because 42 is NO struct"
-msgstr "MsgBox bIsStruct ' Displays False because 42 is NO struct"
-
-#: 03030100.xhp
-msgctxt ""
-"03030100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Converting Date Values"
-msgstr "Gatiiwwan guyyaa jijjiiruu"
-
-#: 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=\"Converting Date Values\">Gatiiwwan guyyaa jijjiiruu</link>"
+msgid "Print IsDate(sDateVar) ' Returns True"
+msgstr "print IsDate(sDateVar) REM Returns 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 "Faankishiniin armaan gadii gatii guyyaa gara lakkoofsa shallagamuu danda'uuti jijjiiree gara duubati deebi'a."
+msgid "Print IsDate(sDateVar) ' Returns False"
+msgstr "print IsDate(sDateVar) REM Returns False"
-#: 03010102.xhp
+#: 03102400.xhp
msgctxt ""
-"03010102.xhp\n"
+"03102400.xhp\n"
"tit\n"
"help.text"
-msgid "MsgBox Function [Runtime]"
-msgstr "Faankishinii MsgBox [Runtime]"
+msgid "IsEmpty Function [Runtime]"
+msgstr "Faankishinii IsEmpty [Runtime]"
-#: 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>Faankishinii MsgBox</bookmark_value>"
+msgid "<bookmark_value>IsEmpty function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii 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 [Runtime]\">Faankishinii MsgBox [Runtime]</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 Function [Runtime]\">Faankishinii IsEmpty [Runtime]</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 "Sanduuqa qaaqa ergaa ofkkeessaa qabu agarsii akasumas gatii deebisi."
+msgid "Tests if a Variant variable contains the Empty value. The Empty value indicates that the variable is not initialized."
+msgstr "Gatii duwwaa qabaachuu jijjiiramaa jijjiiramuu basdaada. Gatii duwwaan, jalqabsiifamuu dhabuu jijjiiramaa agarsiisa."
-#: 03010102.xhp
+#: 03102400.xhp
msgctxt ""
-"03010102.xhp\n"
-"hd_id3156281\n"
+"03102400.xhp\n"
+"hd_id3159158\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasimaa:"
+msgstr "caasimaa:"
-#: 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 "Gatii deebii:"
-#: 03010102.xhp
+#: 03102400.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3146985\n"
+"03102400.xhp\n"
+"par_id3156344\n"
"6\n"
"help.text"
-msgid "Integer"
-msgstr "Intergaa"
+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 "Ulaagaa:"
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 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>Barruu</emph>n: ibsa diraa kan sanduuqa qaaqa keessatti akka ergaati argarsiifamu dha. Sarari cita Chr$(13) waliin saagamuu ni danda`a."
+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> Jijjiiramaa kamiyyuu kan ati basdaaduu barbaaddu dha. Yoo jijjiiramaan gatii duwwaa qabaate, faankishinichi dhugaa deebisa; Yoo gatii qabaate ammoo soba deebisa."
-#: 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>QaaqaMatduree</emph>: ibsa diraa kabala matduree qaaqa keessatti agarsiifamu dha. Osoo gatame, kabali matduree maqaan fayyadama duraa duubaan agarsiifama."
-
-#: 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>TAkaakuu</emph>n: ibsa intergaa kamiyyuu ta`ee kan gosa qaaqa, akasumas lakkoofsa fi gosa qabduuwwan agarsiifamaii, figaso sajoo ifteessa. <emph>Akaakuun</emph> walquunnama biiti sarxaalee (maalimoota walquunnama gattiiwwan dabalatan ibsamu):"
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 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>Gatiiwwan</emph>"
+msgid "Print IsEmpty(sVar) ' Returns True"
+msgstr "Print IsEmpty(sVar) REM Returns 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 : Qabduu TOLE qofa agarsiisi."
+msgid "IsError Function [Runtime]"
+msgstr "Faankishinii IsError [Runtime]"
-#: 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 : Qabduuwwan TOLE fi Dhiisi agarsiisi."
+msgid "<bookmark_value>IsError function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii 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 : Qabduuwwan Kuti, Lamyaali, Tuffadhu agarsiisi."
+msgid "<link href=\"text/sbasic/shared/03102450.xhp\">IsError Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03102450.xhp\">Faankishinii IsError [Runtime]</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 : Qabduuwwan Eeyyee, Miti, Dhiisi agarsiisi."
+msgid "Tests if a variable contains an error value."
+msgstr "Yoo jijjiiramaan gatii dogoggoraa qabaate basdaada."
-#: 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 :Qabduuwwan Eeyyee fi Miti agarsiisi."
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 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 : Qabduuwwan Lamyaali fi Dhiisi agarsiisi."
+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 : Sajoo dhaabi qaaqatti dabali."
+msgid "Return value:"
+msgstr "Gatii deebii:"
-#: 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 : Sajoo gaafii qaaqatti dabali."
+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 : Sajoo raajjeffanaa qaaqatti dabali."
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 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 : Sajoo odeeffannoo qaaqatti dabali."
+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> Jijjiiramaa kamiyyuu kan ati basdaaduu barbaaddu dha. Yoo jijjiiramaan gatii dogoggoraa qabaate, faankishinichi dhugaa deebisa; Yoo dogoggora hin qabaatne ammoo soba deebisa."
-#: 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 : Qabduun tokkooffaa qaaqa keessaa akka qabduu durtii ti."
+msgid "IsNull Function [Runtime]"
+msgstr "Faankishinii IsNull[Runtime]"
-#: 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 : qabduun lamaffaa qaaqa keessaa akka qabduu durtii ti."
+msgid "<bookmark_value>IsNull function</bookmark_value><bookmark_value>Null value</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii IsNull</bookmark_value><bookmark_value>Gatii Null</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 : qabduun sadaffaa qaaqa keessaa akka qabduu durtii ti."
+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 Function [Runtime]\">Faankishinii IsNull [Runtime]</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>Gatii deebii:</emph>"
+msgid "Tests if a Variant contains the special Null value, indicating that the variable does not contain data."
+msgstr "Yoo jijjiiramaan gatii addaa Null qabaate,jijjiiramaan kan deetaa hin qabne ta'uu isaa agarsiisudhaan, basdaada."
-#: 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 : TOLE"
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 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 : Dhiisi"
+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 : Kuti"
+msgid "Return value:"
+msgstr "Gatii deebii:"
-#: 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 : Lamyaali"
+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 : Tuffadhu"
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 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 : Eeyyee"
+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> Jijjiiramaa kamiyyuu kan ati basdaaduu barbaaddu dha. Yoo gatiin jijjiiramaa ni jira ta'e, faankishinichi dhugaa deebisa; Yoo hin jiru ta'e ammoo soba deebisa."
-#: 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 : Miti"
+msgid "<emph>Null</emph> - This value is used for a variant data sub type without valid contents."
+msgstr "<emph>Null</emph> -Gatiin kun akaakuu cita deetaa qabiyyeewwan sirrii hin taaneef fayyada."
-#: 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 "Fakkeenya:"
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3151278\n"
-"43\n"
-"help.text"
-msgid "sVar = MsgBox(\"Las Vegas\")"
-msgstr "sVar = MsgBox(\"Las Vegas\")"
-
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3149034\n"
-"44\n"
-"help.text"
-msgid "sVar = MsgBox(\"Las Vegas\",1)"
-msgstr "sVar = MsgBox(\"Las Vegas\",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( \"Las Vegas\",256 + 16 + 2,\"Dialog title\")"
-
-#: 03120302.xhp
+#: 03102700.xhp
msgctxt ""
-"03120302.xhp\n"
+"03102700.xhp\n"
"tit\n"
"help.text"
-msgid "LCase Function [Runtime]"
-msgstr "Faankishinii LCase [Runtime]"
+msgid "IsNumeric Function [Runtime]"
+msgstr "Faankishinii IsNumeric [Runtime]"
-#: 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>Faankishinii LCase</bookmark_value>"
+msgid "<bookmark_value>IsNumeric function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii 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 Function [Runtime]\">Faankishinii LCase[Runtime]</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 Function [Runtime]\">Faankishinii IsNumeric [Runtime]</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 "Qubeewwan gurguddoo diraa keessaa mara gara qubee xixiqqootti jijjiira."
+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 "Lakkoofsa ta'uu himataa basdaada. Yoo himatni <link href=\"text/sbasic/shared/00000002.xhp#dezimal\" name=\"number\">lakkoofsa</link> ta'e, faankishinichi dhugaa deebisa; yoo ta'uu baate ammoo soba deebisa."
-#: 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 "Dabalataan: <link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase\">UCase</link> Faankishinii ilaali"
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 03120302.xhp
+#: 03102700.xhp
msgctxt ""
-"03120302.xhp\n"
-"hd_id3149456\n"
+"03102700.xhp\n"
+"par_id3150771\n"
"4\n"
"help.text"
-msgid "Syntax:"
-msgstr "Caasimaa:"
+msgid "IsNumeric (Var)"
+msgstr "IsNumeric (Var)"
-#: 03120302.xhp
+#: 03102700.xhp
msgctxt ""
-"03120302.xhp\n"
-"par_id3150791\n"
+"03102700.xhp\n"
+"hd_id3148685\n"
"5\n"
"help.text"
-msgid "LCase (Text As String)"
-msgstr "LCase (Text As String)"
-
-#: 03120302.xhp
-msgctxt ""
-"03120302.xhp\n"
-"hd_id3154940\n"
-"6\n"
-"help.text"
msgid "Return value:"
msgstr "Gatii deebii:"
-#: 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 "Diraa"
+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 "Ulaagaalee:"
-#: 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>Barruu:</emph> Himata diraa ati jijjiiruu barbaaddu kamiyyuu."
+msgid "<emph>Var:</emph> Any expression that you want to test."
+msgstr "<emph>Var:</emph> Himata kamiyyuu kan ati basdaaduu barbaaddu dha."
-#: 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 "Fakkeenya:"
-#: 03120302.xhp
-#, fuzzy
+#: 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) REM Returns \"las vegas\""
+msgid "Print IsNumeric(vVar) ' Returns False"
+msgstr "Print IsNumeric(vVar) REM Returns False"
-#: 03120302.xhp
-#, fuzzy
+#: 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) REM Returns \"LAS VEGAS\""
+msgid "Print IsNumeric(vVar) ' Returns True"
+msgstr "Print IsNumeric(vVar) REM Returns True"
-#: 03132200.xhp
+#: 03102800.xhp
msgctxt ""
-"03132200.xhp\n"
+"03102800.xhp\n"
"tit\n"
"help.text"
-msgid "ThisComponent Statement [Runtime]"
-msgstr "Hima [Runtime] ThisComponent"
+msgid "IsObject Function [Runtime]"
+msgstr "Faankishinii IsObject [Runtime]"
-#: 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>Amala ThisComponent</bookmark_value><bookmark_value>qaamota;gaheenya</bookmark_value>"
+msgid "<bookmark_value>IsObject function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii 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 [Runtime]\">ThisComponent [Runtime]</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 Function [Runtime]\">Faankishinii IsObject [Runtime]</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 "Amalootni isaa akka dubbifamanii fi qindeeffamaniif qaama ka'aa to'ata. ThisComponent galmee Basic irraa fayyada,kan bakka bu'us galmee kan Basic ofkeessatti qabu dha. Akaakuun wanta ThisComponent dhaan gahamu akaakuu galmee irratti hundaa'a."
+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 "Wanta OLE ta'uu jijjiiramaa wantaa qorata. Yoo jijjiiramichi OLE wantaa ta'e, faankishinichi dhugaa deebisa; ta'uu baannan soba deebisa."
-#: 03132200.xhp
+#: 03102800.xhp
msgctxt ""
-"03132200.xhp\n"
-"hd_id3154346\n"
+"03102800.xhp\n"
+"hd_id3149234\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasimaa:"
+msgstr "caasimaa:"
-#: 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 "Fakkeenya:"
+msgid "Return value:"
+msgstr "Gatii deebii:"
-#: 03132200.xhp
-#, fuzzy
+#: 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 "REMn \"Baafata\" galmee barruu tokko keessaa haaromsa"
+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 "Ulaagaalee:"
-#: 03132200.xhp
-#, fuzzy
+#: 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 "REM maqaa durtii gabatee baafataa fi 1 fayyadama"
+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> Jijjiiramaa kamiyyuu kan ati qorachuu barbaaddu dha. Yoo jijjiiramaan wantaa wanta OLE of keessaa qabaate, faankishinichi dhugaa deebisa."
-#: 03030204.xhp
+#: 03102900.xhp
msgctxt ""
-"03030204.xhp\n"
+"03102900.xhp\n"
"tit\n"
"help.text"
-msgid "Second Function [Runtime]"
-msgstr "Fankishinii Sekondii[Runtime]"
+msgid "LBound Function [Runtime]"
+msgstr "faankishinii LBound [Runtime]"
-#: 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>Fankishinii Sekondii </bookmark_value>"
+msgid "<bookmark_value>LBound function</bookmark_value>"
+msgstr "<bookmark_value>faankishinii 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 Function [Runtime]\">Fankishinii Sekondii [Runtime]</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 Function [Runtime]\">faankishinii LBound [Runtime]</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 "Itergaa lakkoofsa eenyummaa yeroo deebisi kan sekondii ibsu kan fankishinii gatii yeroo fi eenyumaa yerootiin maddu."
+msgid "Returns the lower boundary of an array."
+msgstr "Daangaa waraantoo gara gad aanaa deebisa."
-#: 03030204.xhp
+#: 03102900.xhp
msgctxt ""
-"03030204.xhp\n"
-"hd_id3147264\n"
+"03102900.xhp\n"
+"hd_id3148538\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasima:"
+msgstr "caasimaa:"
-#: 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 "Sekondii(Lakkoofsa)"
+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 "Gatii deebisi:"
+msgstr "Gatii deebii:"
-#: 03030204.xhp
+#: 03102900.xhp
msgctxt ""
-"03030204.xhp\n"
-"par_id3154140\n"
+"03102900.xhp\n"
+"par_id3153126\n"
"6\n"
"help.text"
msgid "Integer"
-msgstr "Itergaa"
+msgstr "intergaa"
-#: 03030204.xhp
+#: 03102900.xhp
msgctxt ""
-"03030204.xhp\n"
-"hd_id3156280\n"
+"03102900.xhp\n"
+"hd_id3144500\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Ulaagaalee:"
-#: 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>Lakkoofsa:</emph> Himamsa numeerikaa kan eenyummaa yeroo of keessaa qabu kan baay'ina sekoondii lakkaa'uuf nu gargaaru."
+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>MaqaaWaraantoo:</emph> Maqaa waraantoo kan daangaan isaa upper(<emph>Ubound</emph>) ykn lower (<emph>LBound</emph>) ta'e deebisuuf si fayyada."
-#: 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 "Fankishinin kun faallaa <emph>eenyummaa yeroo </emph>faankishiniiti. Kan inni deebisu eenyumma gatii yeroo<emph>siriyaala yeroo</emph> ykn <emph>gatii yeroo </emph>faankishiniiti. fakkeeyaaf, himamsi:"
+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> Itergaa kan gara kam upper(<emph>Ubound</emph>) ykn lower (<emph>LBound</emph>) akka deebi'u ibsu dha.Yoo gatiin omtiyyuu hin ibsamne, Daangaa gara jalqabaatu deebi'a."
-#: 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 "Maxxansa sekoondii(TimeSerial(12,30,41))"
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 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 "gatii 41 deebisi."
+msgid "Print LBound(sVar()) ' Returns 10"
+msgstr "Print LBound(sVar()) REM Returns 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 "Fakkenya:"
+msgid "Print UBound(sVar()) ' Returns 20"
+msgstr "Print UBound(sVar()) REM Returns 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 \"sekondiin yeroo ammaa \"& Second( Now )"
+msgid "Print LBound(sVar(),2) ' Returns 5"
+msgstr "Print LBound(sVar(),2) REM Returns 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) REM Returns 70"
+
+#: 03103000.xhp
+msgctxt ""
+"03103000.xhp\n"
"tit\n"
"help.text"
-msgid "IsDate Function [Runtime]"
-msgstr "Faankishinii IsDate [Runtime]"
+msgid "UBound Function [Runtime]"
+msgstr "Faankishinii UBound [Runtime]"
-#: 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>Faankishinii IsDate</bookmark_value>"
+msgid "<bookmark_value>UBound function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii 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 Function [Runtime]\">Faankishinii IsDate [Runtime]</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 Function [Runtime]\">Faankishinii UBound [Runtime]</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 "Yoo himatni lakkoofsaa ykn diraa gara jijjiiramaa <emph>Guyyaatti</emph> jijjiiramuu ni danda'a ta'e basdaada."
+msgid "Returns the upper boundary of an array."
+msgstr "Daangaa waraantoo gara ol aanaa deebisa."
-#: 03102300.xhp
+#: 03103000.xhp
msgctxt ""
-"03102300.xhp\n"
-"hd_id3153824\n"
+"03103000.xhp\n"
+"hd_id3150984\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasimaa:"
+msgstr "caasimaa:"
-#: 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 "Gatii deebii:"
-#: 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 "intergaa"
-#: 03102300.xhp
+#: 03103000.xhp
msgctxt ""
-"03102300.xhp\n"
-"hd_id3148947\n"
+"03103000.xhp\n"
+"hd_id3154347\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Ulaagaalee:"
-#: 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>Himata:</emph> Himata lakkoofsaa ykn diraa kamiyyuu kan ati basdaaduu barbaaddu dha. Yoo himatni gara guyyaatti jijjiiramuu ni danda'a ta'e, faankishinichi <emph>Dhugaa</emph> deebisa; yoo hin dandeenye ammoo <emph>Soba</emph> deebisa."
+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>MaqaaWaraantoo:</emph> Maqaa waraantoo kan daangaan isaa upper(<emph>Ubound</emph>) ykn lower (<emph>LBound</emph>) ta'e murteessuuf si fayyada."
-#: 03102300.xhp
+#: 03103000.xhp
msgctxt ""
-"03102300.xhp\n"
-"hd_id3150447\n"
+"03103000.xhp\n"
+"par_id3148797\n"
"9\n"
"help.text"
-msgid "Example:"
-msgstr "Fakkeenya:"
+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> Itergaa kan gara kam upper(<emph>Ubound</emph>) ykn lower (<emph>LBound</emph>) akka deebi'u ibsu dha.Yoo gatiin omtiyyuu hin ibsamne, Daangaa gara jalqabaatu deebi'a."
-#: 03102300.xhp
-#, fuzzy
+#: 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) REM Returns True"
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 03102300.xhp
-#, fuzzy
+#: 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) REM Returns False"
+msgid "Print LBound(sVar()) ' Returns 10"
+msgstr "Print LBound(sVar()) REM Returns 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 "Faayiloota Taliiguu"
+msgid "Print UBound(sVar()) ' Returns 20"
+msgstr "Print UBound(sVar()) REM Returns 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=\"Managing Files\">Faayiloota Taliiguu</link>"
+msgid "Print LBound(sVar(),2) ' Returns 5"
+msgstr "Print LBound(sVar(),2) REM Returns 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 "Faankishinii fi hima faayilii taliiguuf asitti ibsameera."
+msgid "Print UBound(sVar(),2) ' Returns 70"
+msgstr "Print UBound(sVar(),2) REM Returns 70"
-#: 03100100.xhp
+#: 03103100.xhp
msgctxt ""
-"03100100.xhp\n"
+"03103100.xhp\n"
"tit\n"
"help.text"
-msgid "CBool Function [Runtime]"
-msgstr "Faankishiinii CBool [Runtime]"
+msgid "Let Statement [Runtime]"
+msgstr "Hima Let [Runtime]"
-#: 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>Faankishiinii CBool</bookmark_value>"
+msgid "<bookmark_value>Let statement</bookmark_value>"
+msgstr "<bookmark_value>Hima 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 Function [Runtime]\">Faankishiinii CBool [Runtime]</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 Statement [Runtime]\">Hima Let [Runtime]</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 "Himannoo diraa ykn himannoo lakkofsaa gara himannoo Buuliyaaniitti geeddari,ykn himannoo lakkofsa baaqqee gara Buuliyaaniitti geeddari."
+msgid "Assigns a value to a variable."
+msgstr "Jijjiramaaf gatii isaa ramada."
-#: 03100100.xhp
+#: 03103100.xhp
msgctxt ""
-"03100100.xhp\n"
-"hd_id3153345\n"
+"03103100.xhp\n"
+"hd_id3153127\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasimaa:"
+msgstr "caasimaa:"
-#: 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) or 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 "Gatii Debisi:"
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 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> Jijjiiramaa gatii itti ramaduu barbaaddu dha. Gatii fi akaakuun jijjiiramaa wal gituu qabu."
-#: 03100100.xhp
+#: 03103100.xhp
msgctxt ""
-"03100100.xhp\n"
-"hd_id3147530\n"
+"03103100.xhp\n"
+"par_id3148451\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Ulaagaalee:"
+msgid "As in most BASIC dialects, the keyword <emph>Let</emph> is optional."
+msgstr "Akka damee afaanii BASIC keessaatti, jefuraan <emph>Let</emph> dirqaalee dha."
-#: 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>Himannoo1, Himannoo2:</emph> Himannoo diraa ykn lakkoofsaa kamuu madaaluu barbaaddu. Yoo himannoowwan walgitan, faankishiiniin <emph>CBool</emph> <emph>Dhugaa</emph>deebisa,yoo ta'uu baate <emph>Soba</emph> deebi'a."
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 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>Lakkoofsa:</emph> Himannoo lakkofsa kamuu kan geeddaruu barbaaddu.Yoo himannoon walqixa 0 ta'e, <emph>Soba</emph> deebi'a,yoo ta'uu baate <emph>Dhugaa</emph> deebi'a."
+msgid "MsgBox Len(sText) ' returns 9"
+msgstr "MsgBox Len(sText) REM Returns 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 "Fakkeenyi armaan gadii gatii faankshinii <emph>Instr</emph> debi'e madaaluuf,faankshinii <emph>CBool</emph> fayyadama. Faankishiiniin yoo jechi \"and\" hima fayyadamaan galfame keessa jiraachuu isaa mirkaneessa."
+msgid "Option Base Statement [Runtime]"
+msgstr "Filannoo Hima Bu'uraa [Runtime]"
-#: 03100100.xhp
+#: 03103200.xhp
msgctxt ""
-"03100100.xhp\n"
-"hd_id3156212\n"
-"11\n"
+"03103200.xhp\n"
+"bm_id3155805\n"
"help.text"
-msgid "Example:"
-msgstr "Fakkeenya:"
+msgid "<bookmark_value>Option Base statement</bookmark_value>"
+msgstr "<bookmark_value>Filannoo Hima Bu'uraa</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(\"Please enter a short sentence:\")"
+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 Statement [Runtime]\">Filannoo Hima Bu'uraa [Runtime]</link>"
-#: 03100100.xhp
-#, fuzzy
+#: 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 "REM Proof if the word »and« appears in the sentence."
+msgid "Defines the default lower boundary for arrays as 0 or 1."
+msgstr "0 ykn 1 akka durtii daangaa waraantoo isa gad-aanaatti hiika."
-#: 03100100.xhp
-#, fuzzy
+#: 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 "REM Instead of the command line"
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 03100100.xhp
-#, fuzzy
+#: 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 "REM If Instr(Input, \"and\")<>0 Then..."
+msgid "Option Base { 0 | 1}"
+msgstr "Option Base { 0 | 1}"
-#: 03100100.xhp
-#, fuzzy
+#: 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 "REM the CBool function is applied as follows:"
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 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, \"and\")) Then"
+msgid "This statement must be added before the executable program code in a module."
+msgstr "Himni kun, Moojulii keessaatti, lakkadda sagantaa raawwachuu danda'u dursee ida'amuu qaba."
-#: 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 \"The word »and« appears in the sentence you entered!\""
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 03020201.xhp
+#: 03103300.xhp
msgctxt ""
-"03020201.xhp\n"
+"03103300.xhp\n"
"tit\n"
"help.text"
-msgid "Get Statement [Runtime]"
-msgstr "Hima Argannoo [Runtime]"
+msgid "Option Explicit Statement [Runtime]"
+msgstr "Hima Ifaa dirqaa [Runtime]"
-#: 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>Hima Argannoo</bookmark_value>"
+msgid "<bookmark_value>Option Explicit statement</bookmark_value>"
+msgstr "<bookmark_value>Hima Ifaa dirqaa</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\">Hima Argannoo [Runtime]</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 Statement [Runtime]\">Hima Ifaa dirqaa [Runtime]</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 "Faayilii fira ta'e irraa kuusaa ykn tartiiba baayitii faayilii lamee irraa gara gegeedaramaatti dubbisa."
+msgid "Specifies that every variable in the program code must be explicitly declared with the Dim statement."
+msgstr "Jijjiiramaan marti, lakkadda sagantaa keessatti, Haala ifa ta'een hima Dim wajjin akka lallabaman hubachiisa."
-#: 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 "Hima: <link href=\"text/sbasic/shared/03020204.xhp\" name=\"PUT\"><item type=\"literal\">PUT</item></link> ilaali."
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 03020201.xhp
+#: 03103300.xhp
msgctxt ""
-"03020201.xhp\n"
-"hd_id3150358\n"
+"03103300.xhp\n"
+"par_id3149514\n"
"4\n"
"help.text"
-msgid "Syntax:"
-msgstr "Caasima:"
+msgid "Option Explicit"
+msgstr "Option Explicit"
-#: 03020201.xhp
+#: 03103300.xhp
msgctxt ""
-"03020201.xhp\n"
-"par_id3150792\n"
+"03103300.xhp\n"
+"hd_id3145315\n"
"5\n"
"help.text"
-msgid "Get [#] FileNumber As Integer, [Position], Variable"
-msgstr "Get [#] FileNumber As Integer, [Position], Variable"
-
-#: 03020201.xhp
-msgctxt ""
-"03020201.xhp\n"
-"hd_id3154138\n"
-"6\n"
-"help.text"
msgid "Parameters:"
msgstr "Ulaagaalee:"
-#: 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> Himannoo itergaa kammiyyuu kan baay'ina faayilii murteessu."
-
-#: 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>Qabannoo:</emph> Faayilii haala darbee darbeetiin banamu, <emph>Qabannoo</emph> Baay'ina kuusaa dubbisuu barbaaddu."
-
-#: 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 "Faayilii haala lameetiin baname <emph>qabannoo</emph> iddoo qabannoon baayitii dubbisuun irraa eegalu."
-
-#: 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 "Yoo <emph>Qabannoo</emph> dhiifame, qabdoon ammee ykn faayiliin qabdoo kuusaa deetaa ammee fayyadama."
+msgid "This statement must be added before the executable program code in a module."
+msgstr "Himni kun, Moojulii keessaatti, lakkadda sagantaa raawwachuu danda'u dursee ida'amuu qaba."
-#: 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 "Jijjiiramaa: Maqaa jijjiramaa dubbifamuuf. Quxaala wanta gegeedaramaa waliin, akaakuu gegeedaramaa kammiyyuu fayyadamuu dandeessa."
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 03020201.xhp
+#: 03103300.xhp
msgctxt ""
-"03020201.xhp\n"
-"hd_id3153144\n"
+"03103300.xhp\n"
+"par_id3145787\n"
"12\n"
"help.text"
-msgid "Example:"
-msgstr "Fakkeenya:"
+msgid "For i% = 1 To 10 ' This results in a run-time error"
+msgstr "For i% = 1 to 10 REM This results in a run-time error"
-#: 03020201.xhp
-#, fuzzy
+#: 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 REM Must be a variant"
+msgid "Public Statement [Runtime]"
+msgstr "Hima Hundaa [Runtime]"
-#: 03020201.xhp
-#, fuzzy
+#: 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 REM Qubannoo jalqaba irraatti"
+msgid "<bookmark_value>Public statement</bookmark_value>"
+msgstr "<bookmark_value>Hima Hundaa</bookmark_value>"
-#: 03020201.xhp
-#, fuzzy
+#: 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,, \"Kun sarara barruu tokkoffaati\" REM Sarara barruudhaan guuta."
+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 Statement [Runtime]\">Hima Hundaa[Runtime]</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,, \"Kun sarara barruu isa lammaffa dha\""
+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 "Jijjiiramaa ykn waraantoo sadarkaa moojuliitti gareessa( kunimmoo karqurxa ykn faankishinii keessa miti),kanaaf jijjiramaa fi waraantoon mankitaabaa fi moojulii tursa ammaaf jiran eeyyamamoo dha."
-#: 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,, \"Kun sarara barruu isa sadaffaadha\""
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 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,,\"Kun barruu haaradha\""
+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,\"Kun barruu kuusaa 20 keessati\""
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 03102700.xhp
+#: 03103450.xhp
msgctxt ""
-"03102700.xhp\n"
+"03103450.xhp\n"
"tit\n"
"help.text"
-msgid "IsNumeric Function [Runtime]"
-msgstr "Faankishinii IsNumeric [Runtime]"
+msgid "Global Statement [Runtime]"
+msgstr "Hima Hundataa [Runtime]"
-#: 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>Faankishinii IsNumeric</bookmark_value>"
+msgid "<bookmark_value>Global statement</bookmark_value>"
+msgstr "<bookmark_value>Hima Hundataa</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 Function [Runtime]\">Faankishinii IsNumeric [Runtime]</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 Statement [Runtime]\">Hima Hundataa [Runtime]</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 "Lakkoofsa ta'uu himataa basdaada. Yoo himatni <link href=\"text/sbasic/shared/00000002.xhp#dezimal\" name=\"number\">lakkoofsa</link> ta'e, faankishinichi dhugaa deebisa; yoo ta'uu baate ammoo soba deebisa."
+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 "Jijjiiramaa ykn waraantoo sadarkaa hundataatti gareessa( kunimmoo karqurxa ykn faankishinii keessa miti),kanaaf jijjiramaa fi waraantoon mankitaabaa fi moojulii tursa ammaaf jiran eeyyamamoo dha."
-#: 03102700.xhp
+#: 03103450.xhp
msgctxt ""
-"03102700.xhp\n"
-"hd_id3149415\n"
+"03103450.xhp\n"
+"hd_id3143270\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasimaa:"
+msgstr "caasimaa:"
-#: 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 "Gatii deebii:"
-
-#: 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 "Ulaagaalee:"
-
-#: 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> Himata kamiyyuu kan ati basdaaduu barbaaddu dha."
-
-#: 03102700.xhp
-msgctxt ""
-"03102700.xhp\n"
-"hd_id3149656\n"
-"9\n"
-"help.text"
msgid "Example:"
msgstr "Fakkeenya:"
-#: 03102700.xhp
-#, fuzzy
-msgctxt ""
-"03102700.xhp\n"
-"par_id3147230\n"
-"13\n"
-"help.text"
-msgid "Print IsNumeric(vVar) ' Returns False"
-msgstr "Print IsNumeric(vVar) REM Returns False"
-
-#: 03102700.xhp
-#, fuzzy
-msgctxt ""
-"03102700.xhp\n"
-"par_id3154910\n"
-"15\n"
-"help.text"
-msgid "Print IsNumeric(vVar) ' Returns True"
-msgstr "Print IsNumeric(vVar) REM Returns True"
-
-#: 03104100.xhp
+#: 03103500.xhp
msgctxt ""
-"03104100.xhp\n"
+"03103500.xhp\n"
"tit\n"
"help.text"
-msgid "Optional (in Function Statement) [Runtime]"
-msgstr "Dirqaalee (in Function Statement) [Runtime]"
+msgid "Static Statement [Runtime]"
+msgstr "Hima dhaabbataa [Runtime]"
-#: 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>Faankishinii Dirqaalee</bookmark_value>"
+msgid "<bookmark_value>Static statement</bookmark_value>"
+msgstr "<bookmark_value>Hima dhaabbataa</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 (in Function Statement) [Runtime]\">Dirqaalee (in Function Statement) [Runtime]</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 Statement [Runtime]\">Hima dhaabbataa [Runtime]</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 "Ulaagaalee kanneen gara faankishiniitti akka dirqaatti dabarfaman akka hiiktu siif eeyyama."
+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 "Jijjiiramaa ykn waraantoo, karqurxaa ykn faankishinii keessatti, bakka adeemsaatti lallaba. Kanaaf, gatiin jijjiiramaa ykn waraantoo erga karqurxa ykn faankishinii gaddhiifamee jiraatu ni hambifama. Jijjiirraan hima Dim ni danda'ama."
-#: 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 "Dabalataan: <link href=\"text/sbasic/shared/03104000.xhp\" name=\"IsMissing\">IsMissing</link> ilaali."
+msgid "The <emph>Static statement</emph> cannot be used to define variable arrays. Arrays must be specified according to a fixed size."
+msgstr "<emph>Himni dhaabbataan</emph> waraantoowwan jijjiiramoo hiikuuf hin fayyadu. Waraantoowwan akka hammamtaa murtaawaatti ibsamuu qabu."
-#: 03104100.xhp
+#: 03103500.xhp
msgctxt ""
-"03104100.xhp\n"
-"hd_id3153824\n"
+"03103500.xhp\n"
+"hd_id3149657\n"
"4\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasimaa:"
+msgstr "caasimaa:"
-#: 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 "Fakkeenyawwan:"
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 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(\"Here\", 1, \"There\") ' all arguments are passed."
+msgid "MsgBox iResult,0,\"The answer is\""
+msgstr "MsgBox iResult,0,\"The answer is\""
-#: 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(\"Test\", ,1) ' second argument is missing."
+msgid "' Function for initialization of the static variable"
+msgstr "Faankishinii REM jijjiiramaa dhaabbataa jalqabsiisuudhaaf"
-#: 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 "Dabalataan <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Examples\">Fakkeenyawwan</link> ilaali."
+msgid "Const iMinimum As Integer = 40 ' minimum return value of this function"
+msgstr "Const iMinimum as Integer = 40 REM Gatii deebii xiqqicha faankishinii kanaa"
-#: 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 REM check if initialized"
+
+#: 03103600.xhp
+msgctxt ""
+"03103600.xhp\n"
"tit\n"
"help.text"
-msgid "Function Statement [Runtime]"
-msgstr "Hima Faankishiinii [Runtime]"
+msgid "TypeName Function; VarType Function[Runtime]"
+msgstr "Faankishinii TypeName; Faankishinii VarType[Runtime]"
-#: 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>Hima Faankishiinii</bookmark_value>"
+msgid "<bookmark_value>TypeName function</bookmark_value><bookmark_value>VarType function</bookmark_value>"
+msgstr "<bookmark_value>faankishinii TypeName</bookmark_value><bookmark_value>Faankishinii VarType</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 Statement [Runtime]\">Hima Faankishiinii [Runtime]</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 Function; VarType Function[Runtime]\">Faankishinii TypeName; Faankishinii VarType[Runtime]</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 "Gosa deebii murteessuuf sagantaa xiqqaa akka himannootti fayyaduu danda'u qindeessi."
+msgid "Returns a string (TypeName) or a numeric value (VarType) that contains information for a variable."
+msgstr "Diraa(TypeName) ykn gatii lakkoofsaa(VarType) kan odeeffannoo jijjiiramaa qabu deebisa."
-#: 03090406.xhp
+#: 03103600.xhp
msgctxt ""
-"03090406.xhp\n"
-"hd_id3145316\n"
+"03103600.xhp\n"
+"hd_id3153825\n"
"3\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasimaa"
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 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 "Ulaagaalee ilaali"
+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 "Ulaagaalee:"
+msgid "Return value:"
+msgstr "Gatii deebii:"
-#: 03090406.xhp
+#: 03103600.xhp
msgctxt ""
-"03090406.xhp\n"
-"par_id3156344\n"
+"03103600.xhp\n"
+"par_id3148947\n"
"6\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasimaa"
+msgid "String; Integer"
+msgstr "Diraa;Itergaa"
-#: 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 "Ulaagaalee:"
-#: 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 "garee himaa"
+msgid "<emph>Variable:</emph> The variable that you want to determine the type of. You can use the following values:"
+msgstr "<emph>Jijjiiramaa:</emph>Jijjiiramaa akaakuu isaa murteessuuf barbaaddu dha. Gatiiwwan armaan gadiitti fayyadamuu ni dandeessa:"
-#: 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 "Jefuraa"
-#: 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 "garee himaa"
+msgid "VarType"
+msgstr "VarType"
-#: 03090406.xhp
-#, fuzzy
+#: 03103600.xhp
msgctxt ""
-"03090406.xhp\n"
-"par_id3150449\n"
+"03103600.xhp\n"
+"par_id3154684\n"
"11\n"
"help.text"
-msgid "End Function"
-msgstr "Faankishiinii Xumuraa"
+msgid "Variable type"
+msgstr "Akaakuu jijjiiramaa"
-#: 03090406.xhp
+#: 03103600.xhp
msgctxt ""
-"03090406.xhp\n"
-"par_id3156281\n"
+"03103600.xhp\n"
+"par_id3151041\n"
"12\n"
"help.text"
-msgid "Parameter"
-msgstr "Ulaagaalee"
+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>Maqaa:</emph> Maqaa sagantaa xiqqaa gatii faankishiniidhan deebi'u qabatuuf."
+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> Ulaagaalee sagantaa xiqqaatti darbe."
+msgid "Boolean variable"
+msgstr "Jijjiiramaa Boolean"
-#: 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>Gosa:</emph> Jefuraa gos-ibsituu."
+msgid "Date"
+msgstr "Guyyaa"
-#: 03090406.xhp
+#: 03103600.xhp
msgctxt ""
-"03090406.xhp\n"
-"hd_id3163710\n"
+"03103600.xhp\n"
+"par_id3153363\n"
"16\n"
"help.text"
-msgid "Example:"
-msgstr "Fakkeeny:"
-
-#: 03090406.xhp
-#, fuzzy
-msgctxt ""
-"03090406.xhp\n"
-"par_id3152939\n"
-"21\n"
-"help.text"
-msgid "For siStep = 0 To 10 ' Fill array with test data"
-msgstr "For siStep = 0 to 10 REM Fill array with test data"
+msgid "7"
+msgstr ""
-#: 03090406.xhp
-#, fuzzy
+#: 03103600.xhp
msgctxt ""
-"03090406.xhp\n"
-"par_id3154943\n"
-"32\n"
+"03103600.xhp\n"
+"par_id3155411\n"
+"17\n"
"help.text"
-msgid "' Linsearch searches a TextArray:sList() for a TextEntry:"
-msgstr "REM Linsearch searches a TextArray:sList() for a TextEntry:"
+msgid "Date variable"
+msgstr "Jijjiiramaa guyyaa"
-#: 03090406.xhp
-#, fuzzy
+#: 03103600.xhp
msgctxt ""
-"03090406.xhp\n"
-"par_id3155601\n"
-"33\n"
+"03103600.xhp\n"
+"par_id3146975\n"
+"18\n"
"help.text"
-msgid "' Return value Is the index of the entry Or 0 (Null)"
-msgstr "REM Gatiin deebii kasaa galtuu ykn 0(Null)dha."
+msgid "Double"
+msgstr "Dachaa"
-#: 03090406.xhp
-#, fuzzy
+#: 03103600.xhp
msgctxt ""
-"03090406.xhp\n"
-"par_id3153707\n"
-"36\n"
+"03103600.xhp\n"
+"par_id3150486\n"
+"19\n"
"help.text"
-msgid "Exit For ' sItem found"
-msgstr "Exit for REM sItem found"
+msgid "5"
+msgstr ""
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"tit\n"
+"03103600.xhp\n"
+"par_id3148616\n"
+"20\n"
"help.text"
-msgid "Using Procedures and Functions"
-msgstr "Adeemsa fi fankishinootati gargaaramuu"
+msgid "Double floating point variable"
+msgstr "Jijjiiramaa qabxii bololi'aa lamee"
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"bm_id3149456\n"
+"03103600.xhp\n"
+"par_id3148457\n"
+"21\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>adeemsa</bookmark_value><bookmark_value>fankishinoota;gargaaramuu</bookmark_value><bookmark_value>jijjiiramaawwan;gara adeemsaa fi fankishinootati darbuu</bookmark_value><bookmark_value>ulaagaalee;adeemsaaf fi fankishinootaaf</bookmark_value><bookmark_value>ulaagaalee;barreefamaan yookiin gatiidhaan</bookmark_value><bookmark_value>jijjiiramaaawwan;qabatama</bookmark_value><bookmark_value>qabatama jijjiiramaawwanii</bookmark_value><bookmark_value>jijjiiramaawwan GLOBAL</bookmark_value><bookmark_value>jijjiiramaawwan PUBLIC</bookmark_value><bookmark_value>jijjiiramaawwan PRIVATE</bookmark_value><bookmark_value>fankishinii;gatii akaakuu deebii</bookmark_value><bookmark_value>deebii gatii akaakuu fankishinoota</bookmark_value>"
+msgid "Integer"
+msgstr "intergaa"
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"hd_id3149456\n"
-"1\n"
+"03103600.xhp\n"
+"par_id3145647\n"
+"22\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/01020300.xhp\">Using Procedures and Functions</link>"
-msgstr "<link href=\"text/sbasic/shared/01020300.xhp\">Gargaaramuu adeemsaa fi fankishinoota</link>"
+msgid "2"
+msgstr ""
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3150767\n"
-"2\n"
+"03103600.xhp\n"
+"par_id3154490\n"
+"23\n"
"help.text"
-msgid "The following describes the basic use of procedures and functions in $[officename] Basic."
-msgstr "Kanneen armaan gadii tajaajila guddaa adeemsii fi fankishinootaa bu`uura $[officename] keessattii ibsu."
+msgid "Integer variable"
+msgstr "Jijjiiramaa itergaa"
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3151215\n"
-"56\n"
+"03103600.xhp\n"
+"par_id3149960\n"
+"24\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 "Yeroo mojuulii haaraa uumtu, bu`uuri $[officename] ofumaan SUB \"Main\" jedhamu saagi. Maqaan durtii tartiiba yookiin tuqaa eegalii projektii bu`uura $[officename] wajjin waan tokkolee hojjetu hin qabu. SUB kanas ofeegannoon maqaa isaa jijjiiruun ni danda`ama."
+msgid "Long"
+msgstr "Dheeraa"
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id314756320\n"
+"03103600.xhp\n"
+"par_id3154513\n"
+"25\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."
+msgid "3"
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 "Adeemsi (SUBS) fi fankishinootni (FUNCTIONS) ilaalcha guddaa qaamotaa sagantaa isaanii loogikii xixiqqoon addanbasee akka eegnu nugargaru."
-
-#: 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 "Tajaajili adeemsaa fi fankishinii inni tokko, lakkadda sagantaa kutaalee hojiif uumame qabu tokko, projektii biroo keessatti gargaaramuun ni danda`ama."
-
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"hd_id3153770\n"
+"03103600.xhp\n"
+"par_id3151318\n"
"26\n"
"help.text"
-msgid "Passing Variables to Procedures (SUB) and Functions (FUNCTION)"
-msgstr "Jijjiiramaawwan gara adeemsaa (SUB) fi fankishinii (FUNCTION)tti dabarsuu"
+msgid "Long integer variable"
+msgstr "Jijjiiramaa itergaa dheeraa"
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3155414\n"
+"03103600.xhp\n"
+"par_id3146972\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 "Jijjiiramaawwan gara adeemsaa fi fankishinootaatti dadarbbuu ni danda`u. SUBiin yookiin FUNCTIONiin dirqama ulaagaalee barbaadameetti ibsamuu qabu."
-
-#: 01020300.xhp
-msgctxt ""
-"01020300.xhp\n"
-"par_id3151114\n"
-"29\n"
-"help.text"
-msgid "Program code"
-msgstr "Lakkaddaa sagantaa"
-
-#: 01020300.xhp
-msgctxt ""
-"01020300.xhp\n"
-"par_id3152577\n"
-"31\n"
-"help.text"
-msgid "The SUB is called using the following syntax:"
-msgstr "SUBiin caasimaa armaaan gadii gargaaramuun waamama:"
+msgid "Object"
+msgstr "Wanta"
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3147124\n"
-"33\n"
+"03103600.xhp\n"
+"par_id3154482\n"
+"28\n"
"help.text"
-msgid "The parameters passed to a SUB must fit to those specified in the SUB declaration."
-msgstr "Ulaagaaleen SUBtti darban dirqama hiika SUB ifteessame taasisuu qabu."
+msgid "9"
+msgstr ""
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3147397\n"
-"34\n"
+"03103600.xhp\n"
+"par_id3150323\n"
+"29\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 "Haala walfakaatuun FUNCTIONS irrattis ni boba`a. Dabalataanni,fankishiniin yeroo hundaa bu`aa fankishinii kenna.Bu`aan fankishinii kan hiikamu gatii deebii maqaa fankishinii ramadammuuni:"
+msgid "Object variable"
+msgstr "Jijjiiramaa wantaa"
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3156284\n"
-"36\n"
+"03103600.xhp\n"
+"par_id3148405\n"
+"30\n"
"help.text"
-msgid "Program code"
-msgstr "Mojuulii Sagantaa"
+msgid "Single"
+msgstr "Qeenxee"
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3145799\n"
-"37\n"
+"03103600.xhp\n"
+"par_id3149020\n"
+"31\n"
"help.text"
-msgid "FunctionName=Result"
+msgid "4"
msgstr ""
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3153839\n"
-"39\n"
+"03103600.xhp\n"
+"par_id3147341\n"
+"32\n"
"help.text"
-msgid "The FUNCTION is called using the following syntax:"
-msgstr "SUBiin caasimaa armaaan gadii gargaaramuun waamama:"
+msgid "Single floating-point variable"
+msgstr "Jijjiiramaa tuqaa-bololi'aa qeenxee"
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3146914\n"
-"40\n"
+"03103600.xhp\n"
+"par_id3155901\n"
+"33\n"
"help.text"
-msgid "Variable=FunctionName(Parameter1, Parameter2,...)"
-msgstr "Variable=FunctionName(Parameter1, Parameter2,...)"
+msgid "String"
+msgstr "Diraa"
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_idN107B3\n"
+"03103600.xhp\n"
+"par_id3155960\n"
+"34\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 "Adeemsa yookiin fankishinii waamuuf maqaa beekamoo: <br/><item type=\"literal\">Library.Module.Macro()</item><br/> gargaaramuun ni danda`ama Fakeenyaaf, maakroo BarruuUfmaa Manbarroo Gimmicksii keesaa waamuuf, ajaja armaan gadii:<br/><item type=\"literal\">Gimmicks.AutoText.Main()</item> gargaarami."
+msgid "8"
+msgstr ""
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"hd_id3156276\n"
-"45\n"
+"03103600.xhp\n"
+"par_id3146313\n"
+"35\n"
"help.text"
-msgid "Passing Variables by Value or Reference"
-msgstr "jijjiiramaawwan gatiidhaan yookiin Barreefamaan dabarsuu"
+msgid "String variable"
+msgstr "Jijjiirama diraa"
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3155765\n"
-"47\n"
+"03103600.xhp\n"
+"par_id3145149\n"
+"36\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 "Ulaagaaleen ilaalchaan yookiin gatiidhaan gara SUBtti yookiin FUNCTIONtti darbuu ni danda`u. Ulaagaan ifteessamuu yoo baatan yeroo hundaa ilaalchaan darbu. Kana jechuun SUBiin yookiin FUNCTIONiin gatii ulaagaa argachuu fi dubbisuu fi jijjiiruu ni danda`a."
+msgid "Variant"
+msgstr "Jijjiiramaa"
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3145640\n"
-"53\n"
+"03103600.xhp\n"
+"par_id3154021\n"
+"37\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 "SUB yookiin FUNCTION waamuudhaan yeroo gatiidhaan ulaaagaa dabarsuu barbaadu jifuraa \"ByVal\" fuuldura ulaagaa saagi, fakkeenyaaf:"
+msgid "12"
+msgstr "12"
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3150042\n"
-"54\n"
+"03103600.xhp\n"
+"par_id3145789\n"
+"38\n"
"help.text"
-msgid "Result = Function(<emph>ByVal</emph> Parameter)"
-msgstr "Result = Function(<emph>ByVal</emph> Parameter)"
+msgid "Variant variable (can contain all types specified by the definition)"
+msgstr "Jijjiiramaa jijjiiramu(akaakuuwwan hiikaan ibsaman hunda qabaachuu danda'a)"
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3149258\n"
-"55\n"
+"03103600.xhp\n"
+"par_id3148630\n"
+"39\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 "Akkaataa kanaan, qabeentoon xabboo ulaagaa sababa gatii ulaagaa malee ulaagaa mataasaa hin arganneef FUNCTIONitiin hin jijjiiramu."
+msgid "Empty"
+msgstr "Duwwaa"
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"hd_id3150982\n"
-"57\n"
+"03103600.xhp\n"
+"par_id3152584\n"
+"40\n"
"help.text"
-msgid "Scope of Variables"
-msgstr "Qabatama jijjiiramaawwanii"
+msgid "0"
+msgstr ""
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3149814\n"
-"58\n"
+"03103600.xhp\n"
+"par_id3151278\n"
+"41\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 "Jijjiiramaan SUB yookiin FUNCTION keessatti hiikama, gataa`aa ta`uudhaan hanga adeemsi bahutti tura.Kunis jijjiiramaa \"local\" jedhama. Sababa baay`eedhaan, adeemsa hundaa keessaatti , manbarroo hundaaf mojuulii kamiyyuu keessatti, yookiin SUB yookiin FUNCTIONiin erga bahee booda jijjiiramaan gataa`aa akka ta`uu ni barbaadama."
+msgid "Variable is not initialized"
+msgstr "Jijjiiramaan hin jalqabsiifamne"
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"hd_id3154186\n"
-"59\n"
+"03103600.xhp\n"
+"par_id3154576\n"
+"42\n"
"help.text"
-msgid "Declaring Variables Outside a SUB or FUNCTION"
-msgstr "Jijjiiiramaawwan SUBii yookiin FUNCTIONii ala ibsuu"
+msgid "Null"
+msgstr "Dhaba"
-#: 01020300.xhp
-#, fuzzy
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3150208\n"
-"111\n"
+"03103600.xhp\n"
+"par_id3166424\n"
+"43\n"
"help.text"
-msgid "Global VarName As TYPENAME"
-msgstr "GLOBAL VarName As TYPENAME"
+msgid "1"
+msgstr ""
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3145258\n"
-"112\n"
+"03103600.xhp\n"
+"par_id3145131\n"
+"44\n"
"help.text"
-msgid "The variable is valid as long as the $[officename] session lasts."
-msgstr "Jijjiiramaan dhuma hiramuu $[officename]tti gataa`aa dha."
+msgid "No valid data"
+msgstr "Deetaa sirriin hin jiru"
-#: 01020300.xhp
-#, fuzzy
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3153198\n"
-"60\n"
+"03103600.xhp\n"
+"hd_id3149338\n"
+"45\n"
"help.text"
-msgid "Public VarName As TYPENAME"
-msgstr "PUBLIC VarName As TYPENAME"
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3150088\n"
-"61\n"
+"03103600.xhp\n"
+"par_id3148817\n"
+"58\n"
"help.text"
-msgid "The variable is valid in all modules."
-msgstr "jijjiiiramaan mojuulii hundaa keessatti gataa`aa dha."
+msgid "TypeName(lVar) & \" \" & VarType(lVar),0,\"Some types In $[officename] Basic\""
+msgstr "TypeName(lVar) & \" \" & VarType(lVar),0,\"Some types in $[officename] Basic\""
-#: 01020300.xhp
-#, fuzzy
+#: 03103700.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3158212\n"
-"62\n"
+"03103700.xhp\n"
+"tit\n"
"help.text"
-msgid "Private VarName As TYPENAME"
-msgstr "PUBLIC VarName As TYPENAME"
+msgid "Set Statement[Runtime]"
+msgstr "Hima Qindeessi[Runtime]"
-#: 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 "Jijjiiramaan mojuulii kana keessatti qofa gataa`aa dha."
+msgid "<bookmark_value>Set statement</bookmark_value><bookmark_value>Nothing object</bookmark_value>"
+msgstr "<bookmark_value>Hima Qindeessi</bookmark_value><bookmark_value>Wanta omaa</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 "Jijjiiramaan mojuulii kana keessatti qofa gataa`aa dha."
+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 Statement[Runtime]\">Hima Qindeessi [Runtime]</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 "Fakkeenya jijjiiramaawwan dhuunfaaf"
+msgid "Sets an object reference on a variable or a Property."
+msgstr "Jijjiiramaa ykn amala irratti wabii wantaa qindeessa."
-#: 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 "Jijjiiramaawwan dhuunfaa CompatibilityMode(true)tiin kaa`uudhaan akka naannoo mojuulii dhuunfaa ta`an dhiibbaa gochuu."
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 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 = \"Hello\""
+msgid "Set ObjectVar = Object"
+msgstr "Set ObjectVar = Object"
-#: 01020300.xhp
-#, fuzzy
+#: 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 \"in module1 : \", myText"
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 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 "' Now returns empty string"
+msgid "<emph>ObjectVar:</emph> a variable or a property that requires an object reference."
+msgstr "<emph>ObjectVar:</emph> Jijjiiramaa ykn amala wabii wantaa barbaadu dha."
-#: 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 "' (or rises error for Option Explicit)"
+msgid "<emph>Object:</emph> Object that the variable or the property refers to."
+msgstr "<emph>Wanta:</emph>Wanta jijjiiramaan ykn amalli wabeeffatu dha."
-#: 01020300.xhp
-#, fuzzy
+#: 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 \"Now in module2 : \", myText"
+msgid "<emph>Nothing</emph> - Assign the <emph>Nothing</emph> object to a variable to remove a previous assignment."
+msgstr "<emph>Omtiyyuu</emph> - Ramaddii duraa haquuf, wanta <emph>Omtiyyuu</emph> jedhu jijjiiramaaf ramada."
-#: 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 "SUB yookiin FUNCTION erga basanii qabeetoo jijjiiramaa olkaa`uu"
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 01020300.xhp
-#, fuzzy
+#: 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 VarName As TYPENAME"
+msgid "FindObject Function [Runtime]"
+msgstr "Faankishinii FindObject [Runtime]"
-#: 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 "Jijjiiramaan hanga FUNCTIONiin yookiin SUBiin yeroo itti aanu seenutti gatii isaa qabaqa. Ibsi kuni dirqama SUB yookiin FUNCTION keessa jiraachuu qaba."
+msgid "<bookmark_value>FindObject function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii 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 "Specifying the Return Value Type of a FUNCTION"
+msgid "<link href=\"text/sbasic/shared/03103800.xhp\" name=\"FindObject Function [Runtime]\">FindObject Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03103800.xhp\" name=\"FindObject Function [Runtime]\">Faankishinii FindObject [Runtime]</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 "Akkaataa jijjiiramaawwaniin, maqaa fankishinii booda arfii ibsa akaakuu, yookiin akaakuu \"As\"tiin argisiifamee fi jefuraa walgittaa dhuma ulaagaa irratti tarreeffaman akaakuu fankishinii gatii deebisan ibsan qabata, fakeenyaaf:"
+msgid "Enables an object to be addressed at run-time as a string parameter through the object name."
+msgstr "Wanti yeroo sa'aa darbee maqaa wantaatiin akka ulaagaa diraatti akka raawwatamu dandeessisa."
-#: 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 "Ogeejjii Eqv [Runtime]"
+msgid "For example, the following command:"
+msgstr "Fakkeenyaaf, ajajni armaan gadii:"
-#: 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>ogeejjii Eqv (yaayaa)</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 Operator [Runtime]\">ogeejjii Eqv [Runtime]</link>"
+msgid "corresponds to the command block:"
+msgstr "Garee ajajaa inni ittiin walqabatu:"
-#: 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 "qixaataa yaayaa himannoowwan lama shalagi."
+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 "caasimaa"
+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 "Ulaagaalee"
+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>Bu'aa:</emph> lakkofsi jijjirama kamuu bu'aa madaalli qaba."
+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>Himannoo1, Himannoo2:</emph>Himannoo wal dorgomsiisuu barbaadduti."
+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 "Yoo qixaataa himannoowwan Buuliyaanii jidduu jiru mirkaneesitu, bu'aan isaa <emph>Dhugaa</emph> yoo himannon lachuu <emph>Dhugaa</emph> ykn <emph>Soba</emph> ta'uu bate."
+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 "Walmadaalli laklamee qabeessa keessatti, ogeejjiin Eqv laklamee walgitu bu'aa keessatti qindeessa yoo laklameen himannoowwan lachuu, himannoo homaa keessatti qindaa'e."
+msgid "This allows names to be dynamically created at run-time. For example:"
+msgstr "Maqaawwan yeroo sa'aa darbee bifa kamaatiin akka uumaman eeyyama. Fakkeenyaaf:"
-#: 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 "Fakkeenya"
+msgid "\"TextEdit1\" to TextEdit5\" in a loop to create five control names."
+msgstr "Maqaawwan to'annaa shan bifa marsaatiin \"TextEdit1\" haga \"TextEdit5\" uumuuf oola."
-#: 03060200.xhp
-#, fuzzy
+#: 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 REM returns -1"
+msgid "See also: <link href=\"text/sbasic/shared/03103900.xhp\" name=\"FindPropertyObject\">FindPropertyObject</link>"
+msgstr "Dabalataan: <link href=\"text/sbasic/shared/03103900.xhp\" name=\"FindPropertyObject\">FindPropertyObject</link> ilaali"
-#: 03060200.xhp
-#, fuzzy
+#: 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 REM returns 0"
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 03060200.xhp
-#, fuzzy
+#: 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 REM returns 0"
+msgid "FindObject( ObjName As String )"
+msgstr "FindObject( ObjName As String )"
-#: 03060200.xhp
-#, fuzzy
+#: 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) REM returns -1"
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 03060200.xhp
-#, fuzzy
+#: 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 REM returns -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> Diraa maqaa wantaa yeroo sa'aa darbee raawwachuu barbaadduu ibsa."
-#: 03010101.xhp
+#: 03103900.xhp
msgctxt ""
-"03010101.xhp\n"
+"03103900.xhp\n"
"tit\n"
"help.text"
-msgid "MsgBox Statement [Runtime]"
-msgstr "Hima MsgBox [Runtime]"
+msgid "FindPropertyObject Function [Runtime]"
+msgstr "Faankishinii FindPropertyObject [Runtime]"
-#: 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>Hima MsgBox</bookmark_value>"
+msgid "<bookmark_value>FindPropertyObject function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii 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\">Hima MsgBox [Runtime]</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 Function [Runtime]\">Faankishinii FindPropertyObject [Runtime]</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 "Sanduuqa qaaqa ergaa ofkeessaa qabu agarsiisi."
+msgid "Enables objects to be addressed at run-time as a string parameter using the object name."
+msgstr "Wantootni maqaa wantaatti fayyadamuudhaan akka ulaagaa diraatti yeroo sa'aa darbee akka raawwatamu taasisa."
-#: 03010101.xhp
+#: 03103900.xhp
msgctxt ""
-"03010101.xhp\n"
-"hd_id3153897\n"
+"03103900.xhp\n"
+"par_id3147573\n"
"3\n"
"help.text"
-msgid "Syntax:"
-msgstr "Caasimaa:"
+msgid "For instance, the command:"
+msgstr "Fakkeenyaaf, ajaja:"
-#: 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 "Ulaagaa:"
+msgid "corresponds to the following command block:"
+msgstr "Garee ajaajaa armaan gadiin walqabata:"
-#: 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>Barruu</emph>n: ibsa diraa kan sanduuqa qaaqa keessatti akka ergaati argarsiifamu dha. Sarari cita Chr$(13) waliin saagamuu ni danda`a."
+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>QaaqaMatduree</emph>: ibsa diraa kabala matduree qaaqa keessatti agarsiifamu dha. Osoo gatame, kabali matduree maqaa fayyadama duraa duubaan agarsiisa."
+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>Akaakuu</emph>n: ibsa intergaa kamiyyuu ta`ee kan gosa qaaqa, akasumas lakkoofsa fi gosa qabduuwwan agarsiifamaii, figaso sajoo ifteessa. <emph>Akaakuun</emph> walquunnama biiti sarxaa, kana jechuun, maalimoota walquunnama gattiiwwan dabalata isaanii bakka bu`a."
+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 : Qabduu TOLE qofa agarsiisi."
+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 : Qabduuwwan TOLE fi Dhiisi agarsiisi."
+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 : Qabduuwwan Kuti, Lamyaali, Tuffadhu agarsiisi"
+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 :Qabduuwwan Eeyyee, Miti, Dhiisi agarsiisi."
+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 : Qabduuwwan Eeyyee fi Miti agarsiisi."
+msgid "To dynamically create Names at run-time, use:"
+msgstr "Haala kamaatiin yeroo sa'aa darbee maqaawwan uumuuf, itti fayyadami:"
-#: 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 : Qabduuwwan Lamyaali fi Dhiisi agarsiisi."
+msgid "\"TextEdit1\" to TextEdit5\" in a loop to create five names."
+msgstr "Maqaawwan shan haala marfataatiin \"TextEdit1\" hanga \"TextEdit5\" uumuuf fayyada."
-#: 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 : Sajoo dhaabi qaaqatti dabali."
+msgid "See also: <link href=\"text/sbasic/shared/03103800.xhp\" name=\"FindObject\">FindObject</link>"
+msgstr "Dabalataan: <link href=\"text/sbasic/shared/03103800.xhp\" name=\"FindObject\">WantBarbaadi</link> ilaali"
-#: 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 : Sajoo gaafii qaaqatti dabali."
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 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 : Sajoo raajjeffanaa qaaqatti dabali."
+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 : Sajoo odeeffannoo qaaqatti dabali."
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 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 : Qabduun tokkooffaa qaaqa keessaa akka qabduu durtii ti."
+msgid "<emph>ObjVar:</emph> Object variable that you want to dynamically define at run-time."
+msgstr "<emph>ObjVar:</emph> Jijjiirama wantaa kan yeroo sa'aa darbee haala addaa addaatiin akka hiikamu barbaaddu dha."
-#: 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 : qabduun lamaffaa qaaqa keessaa akka qabduu durtii ti."
-
-#: 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 : qabduun sadaffaa qaaqa keessaa akka qabduu durtii ti."
-
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"hd_id3150715\n"
-"22\n"
-"help.text"
-msgid "Example:"
-msgstr "Fakkeenya:"
-
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"par_id3150327\n"
-"24\n"
-"help.text"
-msgid "Const sText1 = \"An unexpected error occurred.\""
-msgstr "Const sText1 = \"An unexpected error occurred.\""
-
-#: 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 = \"The program execution will continue, however.\""
-
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"par_id3154757\n"
-"26\n"
-"help.text"
-msgid "Const sText3 = \"Error\""
-msgstr "Const sText3 = \"Error\""
+msgid "<emph>PropName:</emph> String that specifies the name of the property that you want to address at run-time."
+msgstr "<emph>PropName:</emph> Diraa maqaa amalaa yeroo sa'aa darbee raawwachuu barbaadduu ibsa."
-#: 03080801.xhp
+#: 03104000.xhp
msgctxt ""
-"03080801.xhp\n"
+"03104000.xhp\n"
"tit\n"
"help.text"
-msgid "Hex Function [Runtime]"
-msgstr "Faankishinii Hex [Runtime]"
+msgid "IsMissing function [Runtime]"
+msgstr "Faankishinii IsMissing [Runtime]"
-#: 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>Faankishinii Hex</bookmark_value>"
+msgid "<bookmark_value>IsMissing function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii 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 Function [Runtime]\">Faankishinii Hex [Runtime]</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 function [Runtime]\">Faankishinii IsMissing [Runtime]</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 "Diraa gatii heeksaa deesimaalii lakkoofsa bakka bu'u deebisuu."
+msgid "Tests if a function is called with an optional parameter."
+msgstr "Faankishiniinichi ulaagaa dirqaaleetiin waamamuu isaa qorata."
-#: 03080801.xhp
+#: 03104000.xhp
msgctxt ""
-"03080801.xhp\n"
-"hd_id3147573\n"
+"03104000.xhp\n"
+"par_id3150669\n"
"3\n"
"help.text"
-msgid "Syntax:"
-msgstr "Caasimaa:"
+msgid "See also: <link href=\"text/sbasic/shared/03104100.xhp\" name=\"Optional\">Optional</link>"
+msgstr "Dabalataan: <link href=\"text/sbasic/shared/03104100.xhp\" name=\"Optional\">Dirqaalee</link> ilaali"
-#: 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 "caasimaa:"
-#: 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 "Gatii deebisuu:"
+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 "Diraa"
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 03080801.xhp
+#: 03104000.xhp
msgctxt ""
-"03080801.xhp\n"
-"hd_id3156344\n"
+"03104000.xhp\n"
+"par_id3149457\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Ulaagaalee:"
+msgid "<emph>ArgumentName:</emph> the name of an optional argument."
+msgstr "<emph>MaqaaQajeelfamaa:</emph> maqaa qajeelfama dirqaalee ti."
-#: 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>Lakkofsa:</emph> Himannoon lakkoofsa kamuu lakkoofsa heeksaadeesimaalii jijjiiruu barbaadde."
+msgid "If the IsMissing function is called by the ArgumentName, then True is returned."
+msgstr "Yoo faankishiniin IsMissing ArgumentName dhaan waamame, Dhugaatu deebi'a."
-#: 03080801.xhp
+#: 03104000.xhp
msgctxt ""
-"03080801.xhp\n"
-"hd_id3154365\n"
+"03104000.xhp\n"
+"par_id3148798\n"
"9\n"
"help.text"
-msgid "Example:"
-msgstr "Fakkeenya:"
-
-#: 03080801.xhp
-#, fuzzy
-msgctxt ""
-"03080801.xhp\n"
-"par_id3156214\n"
-"30\n"
-"help.text"
-msgid "' uses BasicFormulas in $[officename] Calc"
-msgstr "REM uses BasicFormulas in $[officename] Calc"
-
-#: 03080801.xhp
-#, fuzzy
-msgctxt ""
-"03080801.xhp\n"
-"par_id3149262\n"
-"20\n"
-"help.text"
-msgid "' Returns a long integer from a hexadecimal value."
-msgstr "REM Returns a Long-Integer from a hexadecimal value."
-
-#: 03080801.xhp
-#, fuzzy
-msgctxt ""
-"03080801.xhp\n"
-"par_id3147215\n"
-"25\n"
-"help.text"
-msgid "' Calculates a hexadecimal value in integer."
-msgstr "REM Calculates a hexadecimal value in Integer."
-
-#: 03080800.xhp
-msgctxt ""
-"03080800.xhp\n"
-"tit\n"
-"help.text"
-msgid "Converting Numbers"
-msgstr "Lakkoofsota jijjiiruu"
-
-#: 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=\"Converting Numbers\">Lakkoofsota jijjiiruu </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 "Faankishinoonni armaan gadii lakkoofsota dhangii lakkoofsa tokko irraa gara birootti jijjiiru"
+msgid "See also <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Examples\">Examples</link>."
+msgstr "Dabalataan <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Examples\">Fakkeenyawwan</link> ilaali."
-#: 03120401.xhp
+#: 03104100.xhp
msgctxt ""
-"03120401.xhp\n"
+"03104100.xhp\n"
"tit\n"
"help.text"
-msgid "InStr Function [Runtime]"
-msgstr "Faankishinii InStr [Runtime]"
+msgid "Optional (in Function Statement) [Runtime]"
+msgstr "Dirqaalee (in Function Statement) [Runtime]"
-#: 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>faankishinii InStr</bookmark_value>"
+msgid "<bookmark_value>Optional function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii Dirqaalee</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 Function [Runtime]\">Faankishinii InStr [Runtime]</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 (in Function Statement) [Runtime]\">Dirqaalee (in Function Statement) [Runtime]</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 "Bakka diraa, diraa biroo keessatti argamuu deebisa."
+msgid "Allows you to define parameters that are passed to a function as optional."
+msgstr "Ulaagaalee kanneen gara faankishiniitti akka dirqaatti dabarfaman akka hiiktu siif eeyyama."
-#: 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 "Faankishiniin Instr bakka walfakkiin itti argame deebisa. Yoo diraan hin argamne, faankishinichi 0 deebisa."
+msgid "See also: <link href=\"text/sbasic/shared/03104000.xhp\" name=\"IsMissing\">IsMissing</link>"
+msgstr "Dabalataan: <link href=\"text/sbasic/shared/03104000.xhp\" name=\"IsMissing\">IsMissing</link> ilaali."
-#: 03120401.xhp
+#: 03104100.xhp
msgctxt ""
-"03120401.xhp\n"
-"hd_id3145090\n"
+"03104100.xhp\n"
+"hd_id3153824\n"
"4\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasimaa:"
+msgstr "caasimaa:"
-#: 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 "Gatii deebii:"
+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 "Itergaa"
+msgid "Examples:"
+msgstr "Fakkeenyawwan:"
-#: 03120401.xhp
+#: 03104100.xhp
msgctxt ""
-"03120401.xhp\n"
-"hd_id3148473\n"
+"03104100.xhp\n"
+"par_id3154347\n"
"8\n"
"help.text"
-msgid "Parameters:"
-msgstr "Ulaagaa:"
+msgid "Result = MyFunction(\"Here\", 1, \"There\") ' all arguments are passed."
+msgstr "Result = MyFunction(\"Here\", 1, \"There\") ' all arguments are passed."
-#: 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> Himata lakkoofsaa kan jalqaba barbaachuu qurxa diraa adda baafame, dira tokko keessaa agarsiisa. yoo ulaagaa kana dhiifte,barbaachi kan jalqabu arfii jalqabaa diraa irraati. 65535 gatii guddaa eeyyamamu dha."
+msgid "Result = MyFunction(\"Test\", ,1) ' second argument is missing."
+msgstr "Result = MyFunction(\"Test\", ,1) ' second argument is missing."
-#: 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> Himata diraa kan ati barbaaduuf taatu dha."
-
-#: 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> Himata diraa kan ati barbaaduuf taatu dha."
-
-#: 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>Walmadaalli:</emph> Dirqaalee himata lakkoofsaa kanneen akaakuu wal madaallii ibsan walmadaalchisa. Gatiin ulaagaa kanaa 0 yookiin 1 ta'uu danda'a. Gatiin durtii 1 walmadaallii barruu kan gosa qubeerratti hin hundoofne ibsa. Gatiin 0'n walmadaallii lamee kan gosa qubeerratti hundaa'u ibsa."
-
-#: 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 "Dogoggora sa'aa darbee dhabamsiisuuf; yoo ulaagaan deebii inni jalqabaa hin jiraanne, ulaagaa walmadaallii hin qindeessin."
-
-#: 03120401.xhp
-msgctxt ""
-"03120401.xhp\n"
-"hd_id3154366\n"
-"14\n"
-"help.text"
-msgid "Example:"
-msgstr "Fakkeenya:"
-
-#: 03120401.xhp
-msgctxt ""
-"03120401.xhp\n"
-"par_id3144760\n"
-"19\n"
-"help.text"
-msgid "sInput = \"Office\""
-msgstr "sInput = \"Office\""
-
-#: 03120401.xhp
-msgctxt ""
-"03120401.xhp\n"
-"par_id3154125\n"
-"20\n"
-"help.text"
-msgid "iPos = Instr(sInput,\"c\")"
-msgstr "iPos = Instr(sInput,\"c\")"
+msgid "See also <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Examples\">Examples</link>."
+msgstr "Dabalataan <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Examples\">Fakkeenyawwan</link> ilaali."
-#: 03101400.xhp
+#: 03104200.xhp
msgctxt ""
-"03101400.xhp\n"
+"03104200.xhp\n"
"tit\n"
"help.text"
-msgid "DefDbl Statement [Runtime]"
-msgstr "Hima DefDbl[Runtime]"
+msgid "Array Function [Runtime]"
+msgstr "Faankishinii waraantoo [Runtime]"
-#: 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>Hima DefDbl</bookmark_value>"
+msgid "<bookmark_value>Array function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii waraantoo</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 Statement [Runtime]\">Hima DefDbl [Runtime]</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 Function [Runtime]\">Faankishinii waraantoo [Runtime]</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 "yoo arfiin akaakuu labsii ykn jefuraa hin ifteeffamne,akkaataa hangii qubeetiin, akaakuu jijjiiramaa durtii qindeessi."
+msgid "Returns the type Variant with a data field."
+msgstr "Akaakuujijjiiramaa dirree deetaa wajjin deebisa."
-#: 03101400.xhp
+#: 03104200.xhp
msgctxt ""
-"03101400.xhp\n"
-"hd_id3155420\n"
+"03104200.xhp\n"
+"hd_id3148538\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasimaa:"
+msgstr "caasimaa:"
-#: 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 "Ulaagaalee:"
+msgid "See also <link href=\"text/sbasic/shared/03104300.xhp\" name=\"DimArray\">DimArray</link>"
+msgstr "Dabalataan <link href=\"text/sbasic/shared/03104300.xhp\" name=\"DimArray\">DimArray</link> ilaali"
-#: 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>Hangiiarfii:</emph> Qubeewwan kan hangii jijjiiramtootaa kan akaakuu deetaa durtii qindeessuu barbaaddu ifteessan."
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 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> Jefuraan kan akaakuu jijjiiramaa durtii qindeessu:"
+msgid "<emph>Argument list:</emph> A list of any number of arguments that are separated by commas."
+msgstr "<emph>Tarree qajeelfamaa:</emph> Tarree baay'ina qajeelfamootaa kamiyyuu kanneen qoodduudhaan addan bahani dha."
-#: 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>Jefuraa:</emph> Akaakuu jijjiiramaa durtii"
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 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>DefSng:</emph> Dachaa"
+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 "Fakkeenya:"
-
-#: 03101400.xhp
-#, fuzzy
-msgctxt ""
-"03101400.xhp\n"
-"par_id3156281\n"
-"12\n"
-"help.text"
-msgid "' Prefix definitions for variable types:"
-msgstr "REM hiika huddeelsoo akaakuu jijjiiramaaf:"
+msgid "A = Array(\"Fred\",\"Tom\",\"Bill\")"
+msgstr "A = Array(\"Fred\",\"Tom\",\"Bill\")"
-#: 03101400.xhp
-#, fuzzy
+#: 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 REM dValue is an implicit Double variable type"
+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 "Faankishinii [Runtime] Magariisa"
+msgid "DimArray Function [Runtime]"
+msgstr "Faankishinii DimArray [Runtime]"
-#: 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>Faankishinii magariisa</bookmark_value>"
+msgid "<bookmark_value>DimArray function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii 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 Function [Runtime]\">Faankishinii [Runtime] Magariisa</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 Function [Runtime]\">Faankishinii DimArray [Runtime]</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 "Gosa cuquliisa kan lakkadda halluu kennamee deebisi."
+msgid "Returns a Variant array."
+msgstr "Waraantoo jijjiiramaa deebisa."
-#: 03010302.xhp
+#: 03104300.xhp
msgctxt ""
-"03010302.xhp\n"
-"hd_id3154140\n"
+"03104300.xhp\n"
+"hd_id3149762\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasimaa:"
+msgstr "caasimaa:"
-#: 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 "Gatii deebii:"
+msgid "See also <link href=\"text/sbasic/shared/03104200.xhp\" name=\"Array\">Array</link>"
+msgstr "Dabalataan <link href=\"text/sbasic/shared/03104200.xhp\" name=\"Array\">Waraantoo</link> ilaali"
-#: 03010302.xhp
+#: 03104300.xhp
msgctxt ""
-"03010302.xhp\n"
-"par_id3153194\n"
+"03104300.xhp\n"
+"par_id3156023\n"
"6\n"
"help.text"
-msgid "Integer"
-msgstr "Intergaa"
+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 "Yoo ulaagaalee omtiyyuu hin dabarfamne, waraantoo duwwaatu uumama(akka Dim A() kan tartiiba dheerina 0 Uno keessaatiin walfakkaata). Yoo ulaagaaleen adda baafaman, ulaagaalee maraaf garri ni uumama."
-#: 03010302.xhp
+#: 03104300.xhp
msgctxt ""
-"03010302.xhp\n"
-"hd_id3154909\n"
+"03104300.xhp\n"
+"hd_id3154760\n"
"7\n"
"help.text"
-msgid "Parameter:"
-msgstr "Ulaagaa:"
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 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>Halluu</emph>: Himannoo intergaa dheeraa kan <link href=\"text/sbasic/shared/00000003.xhp#farbcodes\" name=\"color code\">lakkadda halluu</link> gosa cuquliisaa deebisuu ifteessa."
+msgid "<emph>Argument list:</emph> A list of any number of arguments that are separated by commas."
+msgstr "<emph>Tarree qajeelfamaa:</emph> Tarree baay'ina qajeelfamootaa kamiyyuu kanneen qoodduudhaan addan bahani dha."
-#: 03010302.xhp
+#: 03104300.xhp
msgctxt ""
-"03010302.xhp\n"
-"hd_id3149664\n"
+"03104300.xhp\n"
+"hd_id3150358\n"
"9\n"
"help.text"
msgid "Example:"
msgstr "Fakkeenya:"
-#: 03010302.xhp
-#, fuzzy
-msgctxt ""
-"03010302.xhp\n"
-"par_id3151117\n"
-"13\n"
-"help.text"
-msgid "MsgBox \"The color \" & lVar & \" contains the components:\" & Chr(13) &_"
-msgstr "msgbox \"The color \" & lVar & \" contains the components:\" & Chr(13) &_"
-
-#: 03010302.xhp
-msgctxt ""
-"03010302.xhp\n"
-"par_id3153951\n"
-"14\n"
-"help.text"
-msgid "\"red = \" & red(lVar) & Chr(13)&_"
-msgstr "\"red = \" & 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 = \" & 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 = \" & blue(lVar) & Chr(13) , 64,\"colors\""
+msgid "DimArray( 2, 2, 4 ) is the same as DIM a( 2, 2, 4 )"
+msgstr "DimArray( 2, 2, 4 ) walfakkaataa 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 "Integrated Development Environment (IDE)"
-
-#: 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 IDE;Integrated Development Environment</bookmark_value><bookmark_value>IDE;Integrated Development Environment</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=\"Integrated Development Environment (IDE)\">Integrated Development Environment (IDE)</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 "Kutaan kun Integrated Development Environment bu`uura $[officename] ibsa."
+msgid "HasUnoInterfaces Function [Runtime]"
+msgstr "Faankishinii HasUnoInterfaces [Runtime]"
-#: 03010100.xhp
+#: 03104400.xhp
msgctxt ""
-"03010100.xhp\n"
-"tit\n"
+"03104400.xhp\n"
+"bm_id3149987\n"
"help.text"
-msgid "Display Functions"
-msgstr "Faankishinoota Agarsiisi"
+msgid "<bookmark_value>HasUnoInterfaces function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii 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=\"Display Functions\">Faankishinoota Agarsiisi</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 Function [Runtime]\">Faankishinii HasUnoInterfaces [Runtime]</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 "Kutaan kun Faankishinoota Sa`atii Darbee bahaa odeeffannoof kan argii agarsiisu ibsa."
+msgid "Tests if a Basic Uno object supports certain Uno interfaces."
+msgstr "Yoo wanti Basic Uno walquunnama Uno muraasa deeggare, qorata."
-#: 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 "Faankishinii IsError [Runtime]"
+msgid "Returns True, if <emph>all</emph> stated Uno interfaces are supported, otherwise False is returned."
+msgstr "Yoo Walquunnamawwan Uno tumaman <emph>marti</emph> deeggaramaa ta'an, Dhugaatu deebi'a. Yoo deeggaramuu baatan ammoo sobatu deebi'a."
-#: 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>Faankishinii IsError</bookmark_value>"
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 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\">Faankishinii IsError [Runtime]</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 "Yoo jijjiiramaan gatii dogoggoraa qabaate basdaada."
+msgid "Return value:"
+msgstr "Gatii deebii:"
-#: 03102450.xhp
+#: 03104400.xhp
msgctxt ""
-"03102450.xhp\n"
-"par_idN10561\n"
+"03104400.xhp\n"
+"par_id3148538\n"
+"7\n"
"help.text"
-msgid "Syntax:"
-msgstr "Caasimaa:"
+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 "Ulaagaalee:"
-#: 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 "Gatii deebii:"
+msgid "<emph>oTest:</emph> the Basic Uno object that you want to test."
+msgstr "<emph>oTest:</emph> Wanta Basic Uno ati qorachuu barbaaddu dha."
-#: 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>Maqaa-Walquunnama-Uno:</emph> Tarreeffama maqaawwan walquunnama 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 "Ulaagaalee:"
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 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> Jijjiiramaa kamiyyuu kan ati basdaaduu barbaaddu dha. Yoo jijjiiramaan gatii dogoggoraa qabaate, faankishinichi dhugaa deebisa; Yoo dogoggora hin qabaatne ammoo soba deebisa."
+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 "Faankishinii [Runtime] GetSolarVersion"
+msgid "IsUnoStruct Function [Runtime]"
+msgstr "Faankishinii IsUnoStruct [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>Faankishinii GetSolarVersion</bookmark_value>"
+msgid "<bookmark_value>IsUnoStruct function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii 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 Function [Runtime]\">Faankishinii [Runtime] 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 Function [Runtime]\">Faankishinii IsUnoStruct [Runtime]</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 "Lakkoofsa keessaa kan fooyya'a ammaa $[officename] deebisa."
+msgid "Returns True if the given object is a Uno struct."
+msgstr "Yoo wanti kenname Uno struct ta'e, True deebisa."
-#: 03131000.xhp
+#: 03104500.xhp
msgctxt ""
-"03131000.xhp\n"
-"hd_id3153311\n"
+"03104500.xhp\n"
+"hd_id3148538\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasimaa:"
+msgstr "caasimaa:"
-#: 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 "Gatii deebii:"
-#: 03131000.xhp
+#: 03104500.xhp
msgctxt ""
-"03131000.xhp\n"
-"par_id3148685\n"
+"03104500.xhp\n"
+"par_id3145315\n"
"6\n"
"help.text"
-msgid "String"
-msgstr "Diraa"
+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 "Fakkeenya:"
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 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,\"Version number of the solar technology\""
-
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"tit\n"
-"help.text"
-msgid "CreateUnoListener Function [Runtime]"
-msgstr "Faankishinii [Runtime] CreateUnoListener"
-
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"bm_id3155150\n"
-"help.text"
-msgid "<bookmark_value>CreateUnoListener function</bookmark_value>"
-msgstr "<bookmark_value>faankishinii 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 Function [Runtime]\"> Faankishinii [Runtime] CreateUnoListener</link>"
-
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3149346\n"
-"52\n"
-"help.text"
-msgid "Creates a Listener instance."
-msgstr "Gatii yeroo dhaggeeffataaf uuma."
-
-#: 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 "Walquunnamawwan Uno baay'een walquunnama dhaggeeffataa addaa irratti dhaggeeffataa akka galmeessituuf si fayyada. Kunimmoo akka ati mudata addaa dhaggeeffattuu fi tooftaa dhaggeeffataa sirrii akka waamtu siif eeyyama. Faankishiniin CreateUnoListener walquunnama dhaggeeffataa waamame eegeeti wanta walquunnamni kun deeggaru gara walquunnamaatti dabarsa. Wanti kun kana booda dhaggeeffataa galmeessuuf gara tooftaatti ni darba."
-
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"hd_id3148685\n"
-"50\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Caasimaa:"
-
-#: 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 "Fakkeenya:"
-#: 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 "Fakkeenyi armaan gadii mankitaaba wantaa isa bu'uraa irratti hundaa'a."
-
-#: 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 "Tooftaan CreateUnoListener ulaagaalee lama barbaada. Inni jalqabaa huddeelsoo dhaa fi kunis bal'inaan kan jalatti ibsame dha. ulaagaan inni lammaffaan maqaa gahaa walquunnama dhaggeeffataa kan itti fayyadamuu barbaaddu dha."
-
-#: 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 "Dhaggeffataan gara tamsaasa wantaatti dirqama ida'amuu qaba.Kuni kan godhamu tooftaa sirrii kan dhaggeeffataa ida'u waamuudhaani. Tooftaan kun yeroo mara sirna \"addFooListener\" hordofa, \"Foo\" n akaakuu walquunnama dhaggeeffataa, 'X' malee dha. Fakkeenya kana keessatti, tooftaan addContainerListener 'iin XContainerListener galmeessuuf ni waamama:"
-
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3154940\n"
-"41\n"
-"help.text"
-msgid "oLib = BasicLibraries.Library1 ' Library1 must exist!"
-msgstr "oLib = BasicLibraries.Library1 ' Mankitaabaa jiraachuu qaba!"
-
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3150359\n"
-"40\n"
-"help.text"
-msgid "oLib.addContainerListener( oListener ) ' Register the listener"
-msgstr "oLib.addContainerListener( oListener ) ' Dhaggeeffataa galmeessi"
-
-#: 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 "Dhaggeeffataan galmaa'eera. Yommuu mudatni dhalate, dhaggeeffataa walgitaan tooftaa sirrii walquunnama com.sun.star.container.XContainerListener irraa ni waama."
+msgid "' Instantiate a service"
+msgstr "' Instantiate a service"
-#: 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 "Huddeelsoon Dhaggeeffattoota galmaa'an Basic-subroutines irraa waama. Sirni bu'uraa sa'aa-darbee Basic-subroutines yookiin faankishinoota maqaa \"PrefixListenerMethode\" qaban barbaaduu fi yommuu isaan argaman waamuu dha, gama biraatiin dogoggorri sa'aa-darbee ni dhalata."
+msgid "MsgBox bIsStruct ' Displays False because oSimpleFileAccess Is NO struct"
+msgstr "MsgBox bIsStruct ' Displays False because oSimpleFileAccess is NO struct"
-#: 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 "Fakkeenya kana keessatti, Walquunnama-Dhaggeeffataa tooftaalee armaan gadiitti fayyadama:"
+msgid "' Instantiate a Property struct"
+msgstr "' Instantiate a Property struct"
-#: 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 ' Displays True because aProperty is a struct"
-#: 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 base interface (com.sun.star.lang.XEventListener): hundee walquunnamaa walquunnamtiiwwan dhaggeeffataa maraaf"
+msgid "MsgBox bIsStruct ' Displays False because 42 is NO struct"
+msgstr "MsgBox bIsStruct ' Displays False because 42 is NO struct"
-#: 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 "Faankishinii EqualUnoObjects [Runtime]"
-#: 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 "Tooftaa walquunama com.sun.star.container.XContainerListener"
+msgid "<bookmark_value>EqualUnoObjects function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii 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 Function [Runtime]\">Faankishinii EqualUnoObjects [Runtime]</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 "Tooftaa walquunama com.sun.star.container.XContainerListener"
+msgid "Returns True if the two specified Basic Uno objects represent the same Uno object instance."
+msgstr "Yoo wantootni Basic Uno ibsaman lamaan, gatii wanta Uno tokko bakka bu'an, dhugaatu deebi'a."
-#: 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 "caasimaa:"
-#: 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 "Tooftaa walquunama 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 "Fakkeenya kana keessatti, huddeelsoon ContListener_ dha. Kanaafuu, oliin adeemsaa dirqama Basic keessatti raawwatamuu qabu:"
+msgid "Return value:"
+msgstr "Gatii deebii:"
-#: 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 "Fakkeenya:"
-#: 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 "// Copy of objects -> same instance"
-#: 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 "Akaakuun caasaa mudataa kan odeeffannoo waa'ee mudataa of keessaa qabu akaakuu dhaggeeffataa kamiifuu ni jiraata. yommuu tooftaa dhaggeeffataan yaamame, gatiin mudata kanaa gara tooftaatti akka ulaagaatti darba.Haga ulaagaa sirriin beeksisa Sub keessa darbetti, bu'urri tooftaa dhaggeeffataa mudata wantootaas waamuu ni danda'a. Fakkeenyaaf:"
+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 "// Copy of structs as value -> new instance"
-#: 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 "Wanta hin tajaajille yoo ta'e ulaagaa mudata wantaa itti dabaluun si hin barbaachisu:"
+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 "' Raawwii yoo xiqqaate xinnoo gatu"
+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 "Dogoggorawwan Bu'uuraa sa'aa-darbee dhabamsiisuuf tooftaan dhaggeeffataa <emph>yeroo mara</emph> dirqama raawwachuu qaba."
+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 "Hima Barreessaa[Runtime]"
+msgid "Erase Function [Runtime]"
+msgstr "Faankishinii Haqii [Runtime]"
-#: 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>Hima Barreessaa</bookmark_value>"
+msgid "<bookmark_value>Erase function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii Haqii</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 Statement [Runtime]\">Hima Barreessaa[Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03104700.xhp\">Erase Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03104700.xhp\">Faankishinii Haqii[Runtime]</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 "Deetaa faayilii tartiibaa irratti barreessi."
+msgid "Erases the contents of array elements of fixed size arrays, and releases the memory used by arrays of variable size."
+msgstr "Qabiyyeewwan miseensota waraantoo gosa waraantoo hammamtaa dhaabbataa haquu ,fi kuufamoo gosa waraantoo hammamtaa jijjiramaan qabame gadlakkisiisuuf tajaajila."
-#: 03020205.xhp
+#: 03104700.xhp
msgctxt ""
-"03020205.xhp\n"
-"hd_id3150449\n"
-"3\n"
+"03104700.xhp\n"
+"par_idN1055D\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasima:"
+msgstr "caasimaa:"
-#: 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 [#FileName], [Expressionlist]"
+msgid "Erase Arraylist"
+msgstr "Tarreeffama waraantoo haqi."
-#: 03020205.xhp
+#: 03104700.xhp
msgctxt ""
-"03020205.xhp\n"
-"hd_id3151116\n"
-"5\n"
+"03104700.xhp\n"
+"par_idN105E9\n"
"help.text"
msgid "Parameters:"
msgstr "Ulaagaalee:"
-#: 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>FileName:</emph> Himannoo numeerikaalaa lakkofsa faayilii of keessa qabu faayilii wal duraa duubaa kan hima banaan qindaa'u."
-
-#: 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> Jijjiiramaa ykn himannoon kan ati faayilii keessa galchuu barbaadde qoodduudhaan garagar baha."
-
-#: 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 "Himannon tarree yoo bade <emph>Barreessuu</emph> himni faayiilii duwwaattii miiltaha."
-
-#: 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 "Tarree himannoo faayilii haaratii ykn kan jirutti ida'uuf, faayiliin haalata kana keessatti <emph>Output</emph> ykn <emph>Append</emph> banamuu qaba."
-
-#: 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 "Diraan ati barreessite mallattoo waraabbii keessatti fi qoodduun gargar baha.Daangessaa kana tarree himannoo keessa galchuu hin qabdu."
+msgid "<emph>Arraylist</emph> - The list of arrays to be erased."
+msgstr "<emph>Tarree waraantoo</emph> - Tarreeffama waraantoowwan haqamuuf jiranii."
-#: 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 "Tokkoon tokkoo <emph> Barreessuu</emph> Hima bahaa sarara mallattoo xumuraa akka galfata dhumaati"
+msgid "Comparison Operators"
+msgstr "Qooyyaboota walmadaallii"
-#: 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 "Lakkofsi kurnyee daangessaa akka qindaa'ina gitoo biyyatti jijjirama."
+msgid "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Comparison Operators\">Comparison Operators</link>"
+msgstr "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Comparison Operators\">Qooyyaboota walmadaallii</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 "Fakkeenya:"
+msgid "The available comparison operators are described here."
+msgstr "Qooyyabootni walmadaallii jiran armaan gaditti ibsamiiru."
-#: 03020409.xhp
+#: 03110100.xhp
msgctxt ""
-"03020409.xhp\n"
+"03110100.xhp\n"
"tit\n"
"help.text"
-msgid "GetAttr Function [Runtime]"
-msgstr "Faankishinii GetAttr [Runtime]"
+msgid "Comparison Operators [Runtime]"
+msgstr "Qooyyaboota walmadaallii [Runtime]"
-#: 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> Faankishinii GetAttr</bookmark_value>"
+msgid "<bookmark_value>comparison operators;%PRODUCTNAME Basic</bookmark_value><bookmark_value>operators;comparisons</bookmark_value>"
+msgstr "<bookmark_value>Qooyyaboota walmadaallii;%PRODUCTNAME Basic</bookmark_value><bookmark_value>Qooyyaboota; walmadaallii</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 Function [Runtime]\"> Faankishinii GetAttr [Runtime]</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=\"Comparison Operators [Runtime]\">Qooyyaboota walmadaallii [Runtime]</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 "Haala laklamee kan gosa faayilii ykn maqaa qabee galeeloo deebisa."
+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 "Qooyyabootni walmadaallii himata lama walmadaalchisu. Bu'aan isaa akka himata Boolean kan walmadaalliin True (-1) ykn False (0) ta'e murteessee deebisa."
-#: 03020409.xhp
+#: 03110100.xhp
msgctxt ""
-"03020409.xhp\n"
-"hd_id3149457\n"
+"03110100.xhp\n"
+"hd_id3147291\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasima:"
+msgstr "caasimaa:"
-#: 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 (Barruu akk diraati)"
+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 "Gatii deebii:"
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 03020409.xhp
+#: 03110100.xhp
msgctxt ""
-"03020409.xhp\n"
-"par_id3154909\n"
+"03110100.xhp\n"
+"par_id3147573\n"
"6\n"
"help.text"
-msgid "Integer"
-msgstr "Itergaa"
+msgid "<emph>Result:</emph> Boolean expression that specifies the result of the comparison (True, or False)"
+msgstr "<emph>Bu'aa:</emph> Himata Boolean kanneen bu'aa walmadaallii(True, or False) ibsu dha."
-#: 03020409.xhp
+#: 03110100.xhp
msgctxt ""
-"03020409.xhp\n"
-"hd_id3145172\n"
+"03110100.xhp\n"
+"par_id3148686\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Ulaagaalee:"
+msgid "<emph>Expression1, Expression2:</emph> Any numeric values or strings that you want to compare."
+msgstr "<emph>Himata1, Himata2:</emph> Gatiiwwan lakkoofsaa ykn diraawwan kamiyyuu kanneea walmadaalchisuu barbaaddu dha."
-#: 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> Himamsa diraa kammiiyyuu kan faayilii ifa ta'e of keessa qabu. kanas fayyadamuu ni dandeessa <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">Sirnasxa URL</link>."
+msgid "Comparison operators"
+msgstr "Qooyyaboota walmadaallii"
-#: 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 "Faankishiniin kun amala faayilii ibsamee murteessu fi haala laklamee erga deebise booda amaloota faayilii armaan gadii addaan baasuuf gargaara."
+msgid "= : Equal to"
+msgstr "= : Walqixa"
-#: 03020409.xhp
+#: 03110100.xhp
msgctxt ""
-"03020409.xhp\n"
-"hd_id3145364\n"
+"03110100.xhp\n"
+"par_id3154924\n"
"10\n"
"help.text"
-msgid "Value"
-msgstr "Gatii"
+msgid "< : Less than"
+msgstr "< : Irra xiqqaa"
-#: 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 : Faayilii Baratamoo."
+msgid "> : Greater than"
+msgstr "> : Irra guddaa"
-#: 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: Faayilii dubbisuu qofaa."
-
-#: 03020409.xhp
-msgctxt ""
-"03020409.xhp\n"
-"par_id3159154\n"
-"15\n"
-"help.text"
-msgid "8 : Returns the name of the volume"
-msgstr "8 : Maqaa qabee deebisi."
-
-#: 03020409.xhp
-msgctxt ""
-"03020409.xhp\n"
-"par_id3145271\n"
-"16\n"
-"help.text"
-msgid "16 : Returns the name of the directory only."
-msgstr "16 :Maqaa galeeloo gofa deebisi."
+msgid "<= : Less than or equal to"
+msgstr "<= : Irra xiqqaa ykn walqixa"
-#: 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: Dilbiin dhuma waan ta'eef faayiliin jijjiirame( galmee biitii)"
+msgid ">= : Greater than or equal to"
+msgstr ">= : Irra guddaa ykn walqixa"
-#: 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 "Yoo amaloota baayitii laklamee qindeefamee beekuu barbaade, toofataa gaaffii gadii fayydami."
+msgid "<> : Not equal to"
+msgstr "<> : Walqixa miti"
-#: 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 "Fakkeenya:"
-#: 03020409.xhp
-#, fuzzy
+#: 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 REM qiyaaffannoo error-handler dhaaf hiiki."
+msgid "Dim sRoot As String ' Root directory for file in and output"
+msgstr "DIM sRoot As String REM ' Galeeloo karaa faayila galchuu fi baasuu"
-#: 03090102.xhp
+#: 03120000.xhp
msgctxt ""
-"03090102.xhp\n"
+"03120000.xhp\n"
"tit\n"
"help.text"
-msgid "Select...Case Statement [Runtime]"
-msgstr "Qub-hima...fili[Runtime]"
-
-#: 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>Qub-hima...fili</bookmark_value><bookmark_value>Qub-hima</bookmark_value>"
+msgid "Strings"
+msgstr "Diraawwan"
-#: 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 Statement [Runtime]\">Qub-hima...fili [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03120000.xhp\" name=\"Strings\">Strings</link>"
+msgstr "<link href=\"text/sbasic/shared/03120000.xhp\" name=\"Strings\">Diraawwan</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 "Garoota hima tokkoo ykn bay'ee gatii himannoo irratti hundaa'ii ibsi."
+msgid "The following functions and statements validate and return strings."
+msgstr "Faankishinoonni fi himoonni armaan gadii diraawwan gataa'essee deebisa."
-#: 03090102.xhp
+#: 03120000.xhp
msgctxt ""
-"03090102.xhp\n"
-"hd_id3147265\n"
+"03120000.xhp\n"
+"par_id3154285\n"
"3\n"
"help.text"
-msgid "Syntax:"
-msgstr "Caasimaa:"
-
-#: 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 condition Case expression Statement Block [Case expression2 Statement Block][Case Else] Statement Block End Select"
-
-#: 03090102.xhp
-msgctxt ""
-"03090102.xhp\n"
-"hd_id3150767\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Ulaagaalee:"
-
-#: 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>Haala:</emph> Himannoo kamuu yoo gareen himaa haraggoo duuka bu'e raawwatu too'aatuudha."
-
-#: 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>Himannoo:</emph>Himannoon kamuu gosa himannoo haalaa waliin kan walgituudha. yoo <emph>Haalaa</emph> <emph>himannoo</emph> waliin walgite gareen himaa qub-haraggootti aanu ni raawwatu."
-
-#: 03090102.xhp
-msgctxt ""
-"03090102.xhp\n"
-"hd_id3153768\n"
-"8\n"
-"help.text"
-msgid "Example:"
-msgstr "Fakkeenya;"
-
-#: 03090102.xhp
-msgctxt ""
-"03090102.xhp\n"
-"par_id3152597\n"
-"14\n"
-"help.text"
-msgid "Print \"Number from 1 to 5\""
-msgstr "Print \"Number from 1 to 5\""
+msgid "You can use strings to edit text within $[officename] Basic programs."
+msgstr "Barruulee sagantaalee $[officename] Basic keessaa gulaaluuf, diraawwanitti fayyadamuu ni dandeessa."
-#: 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 \"Number from 6 to 8\""
+msgid "ASCII/ANSI Conversion in Strings"
+msgstr "Jijjiirraa ASCII/ANSI Diraatiin"
-#: 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 \"Greater than 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 Conversion in Strings\">Jijjiirraa ASCII/ANSI Diraatiin</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 \"Out of range 1 to 10\""
+msgid "The following functions convert strings to and from ASCII or ANSI code."
+msgstr "Faankishinoonni armaan gadii diraawwan gara fi lakkaddaa ASCII ykn ANSI irraa jijjiiru."
-#: 03120313.xhp
+#: 03120101.xhp
msgctxt ""
-"03120313.xhp\n"
+"03120101.xhp\n"
"tit\n"
"help.text"
-msgid "ConvertFromURL Function [Runtime]"
-msgstr "ConvertFromURL Function [Runtime]"
+msgid "Asc Function [Runtime]"
+msgstr "Faankishinii Asc [Runtime]"
-#: 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 function</bookmark_value>"
+msgid "<bookmark_value>Asc function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii 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 Function [Runtime]\">ConvertFromURL Function [Runtime]</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 Function [Runtime]\">Faankishinii Asc [Runtime]</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 "Faayilii URL gara maqaa faayilii sirnatti jijjiiri"
+msgid "Returns the ASCII (American Standard Code for Information Interchange) value of the first character in a string expression."
+msgstr "Gatii ASCII (American Standard Code for Information Interchange) arfii jalqabaa himata diraa keessaa deebisa."
-#: 03120313.xhp
+#: 03120101.xhp
msgctxt ""
-"03120313.xhp\n"
-"hd_id3143267\n"
+"03120101.xhp\n"
+"hd_id3155555\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasimaa:"
+msgstr "caasimaa:"
-#: 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 "Gatii deebii:"
-#: 03120313.xhp
+#: 03120101.xhp
msgctxt ""
-"03120313.xhp\n"
+"03120101.xhp\n"
"par_id3150669\n"
"6\n"
"help.text"
-msgid "String"
-msgstr "Diraa"
+msgid "Integer"
+msgstr "intergaa"
-#: 03120313.xhp
+#: 03120101.xhp
msgctxt ""
-"03120313.xhp\n"
-"hd_id3143270\n"
+"03120101.xhp\n"
+"hd_id3148473\n"
"7\n"
"help.text"
msgid "Parameters:"
-msgstr "Ulaagaa:"
+msgstr "Ulaagaalee:"
-#: 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>Maqaafaayilii:</emph> Maqaa faayilii akka diraa."
+msgid "<emph>Text:</emph> Any valid string expression. Only the first character in the string is relevant."
+msgstr "<emph>Barruu:</emph> Himata diraa eeyyamamaa kamiyyuu. Arfiin jalqabaa diraa qofti barbaachisaa dha."
-#: 03120313.xhp
+#: 03120101.xhp
msgctxt ""
-"03120313.xhp\n"
-"hd_id3154760\n"
+"03120101.xhp\n"
+"par_id3145609\n"
"9\n"
"help.text"
-msgid "Example:"
-msgstr "Fakkeenya:"
+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 "Furtoowwan gatiidhaan bakka buusuuf Faankishinii Asc'tti fayyadami.Yoo faankishiniin Asc diraa duwwaadhaan walquunname, $[officename] Basic dogoggora sa'aa darbee gabaasa.Arfiilee ASCII laklamee 7 dabalatee,faankishiniin ASCII lakkaddawwan furtuu lakkadda ASCII keessaa kanneen maxxansamuu hin dandeenyes sakatta'uu ni danda'a. Faankishiniin kun arfiilee yuniikoodii laklamee 16's qabachuu ni danda'a."
-#: 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 "Fakkeenya:"
-#: 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\") REM 65 deebisa"
-#: 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\") REM 90 deebisa"
-#: 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(\"Las Vegas\") REM 76 deebisa, sababa arfiin jalqabaa qofti xiyyeeffannoo argateef"
-#: 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 "Faankishinii FileLen [Runtime]"
+msgid "Chr Function [Runtime]"
+msgstr "Faankishinii Chr [Runtime]"
-#: 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>Faankishinii FileLen</bookmark_value>"
+msgid "<bookmark_value>Chr function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii 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-Function [Runtime]\"> Faankishinii FileLen [Runtime]</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 Function [Runtime]\">Faankishinii Chr [Runtime]</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 "Dheerina faayilii bayitiin deebisi."
+msgid "Returns the character that corresponds to the specified character code."
+msgstr "Arfii kan lakkadda arfii ibsameen walmadaalan deebisa."
-#: 03020408.xhp
+#: 03120102.xhp
msgctxt ""
-"03020408.xhp\n"
-"hd_id3159414\n"
+"03120102.xhp\n"
+"hd_id3149514\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasima:"
+msgstr "caasimaa:"
-#: 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 (Barruu akka Diraa ti)"
+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 "Gatii deebisi:"
+msgstr "Gatii deebii:"
-#: 03020408.xhp
+#: 03120102.xhp
msgctxt ""
-"03020408.xhp\n"
-"par_id3156282\n"
+"03120102.xhp\n"
+"par_id3153824\n"
"6\n"
"help.text"
-msgid "Long"
-msgstr "Dheeraa"
+msgid "String"
+msgstr "Diraa"
-#: 03020408.xhp
+#: 03120102.xhp
msgctxt ""
-"03020408.xhp\n"
-"hd_id3150768\n"
+"03120102.xhp\n"
+"hd_id3148944\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Ulaagaalee:"
-#: 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> Himamsa diraa kammiiyyuu kan faayilii ifa ta'e of keessa qabu. kanas fayyadamuu ni dandeessa <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\"> sirnasxa 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>Himata:</emph> Jijjiiramaawwan lakkoofsaa kanneen gatii ASCII laklamee 8 (0-255) sirrii ykn gatii yuniikoodii laklamee 16 bakka bu'ani dha."
-#: 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 "Faankishiniin kun dheerina faayilii murteessa. Yoo fankishiniin FileLen waamame faayilii banaa ta'e, dheerina faayilii osoo hin banamin dura deebisa.Dheerina faayilii banamaa ammaa murteessuuf, faankishinii Lof fayyadami."
+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 "Tartiiba to'annoo addaa gara maxxansaatti ykn madda bahaa birootti erguuf, faankishinii <emph>Chr$</emph> tti fayyadami.Mallattoo waraabbii himata diraa keessa galchuufis faankishinii kanatti fayyadamuu ni dandeessa."
-#: 03020408.xhp
+#: 03120102.xhp
msgctxt ""
-"03020408.xhp\n"
-"hd_id3163710\n"
+"03120102.xhp\n"
+"hd_id3154366\n"
"10\n"
"help.text"
msgid "Example:"
msgstr "Fakkeenya:"
-#: 03020402.xhp
-msgctxt ""
-"03020402.xhp\n"
-"tit\n"
-"help.text"
-msgid "ChDrive Statement [Runtime]"
-msgstr "Hima ChDrive [Runtime]"
-
-#: 03020402.xhp
-msgctxt ""
-"03020402.xhp\n"
-"bm_id3145068\n"
-"help.text"
-msgid "<bookmark_value>ChDrive statement</bookmark_value>"
-msgstr "<bookmark_value>Hima 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 Statement [Runtime]\">Hima ChDrive [Runtime]</link>"
-
-#: 03020402.xhp
-msgctxt ""
-"03020402.xhp\n"
-"par_id3149656\n"
-"2\n"
-"help.text"
-msgid "Changes the current drive."
-msgstr "Oofuu ammee jijjiiri."
-
-#: 03020402.xhp
-msgctxt ""
-"03020402.xhp\n"
-"hd_id3154138\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Caasima:"
-
-#: 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 "Ulaagaalee:"
-
-#: 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>Barruu:</emph>Himamsa itergaa kamiyyuu kan oofuu qubee haaraa of keessa qabu.Yoo barbaadde faaydamuu dandeessa.<link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\"> sirnasxaa URL </link>."
+msgid "' This example inserts quotation marks (ASCII value 34) in a string."
+msgstr "REM Fakkeenyi kun mallattoolee waraabbii(gatii ASCII 34) diraa keessa galcha."
-#: 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 "Oofuun qubee guddaadhaan moggafamuu qaba.Fodaalee jalatti, qubeen ati oofuudhaan moggaaste ijaarsa LASTDRV dhaan murataa'e. yoo qajeelfami diraa arfii danuu ta'e, qubee duraa qfatuu fydhtama qaba. Yoo oofuu hin jirree gahiinsaan fudhate,dogogorri hima OnError jedhamu waliin gabaafama."
+msgid "MsgBox \"A \"+ Chr$(34)+\"short\" + Chr$(34)+\" trip.\""
+msgstr "MsgBox \"A \"+ Chr$(34)+\"short\" + Chr$(34)+\" trip.\""
-#: 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 "Fakkeenya:"
+msgid "' The printout appears in the dialog as: A \"short\" trip."
+msgstr "REM Qaaqa keessatti maxxansi isaa akka: karaa \"short\" fakkaata."
-#: 03020402.xhp
-#, fuzzy
+#: 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\" REM Yoo oofuun 'D' jiraate qofa danda'ama."
+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 "Ajeechaa himaa [Runtime]"
+msgid "Str Function [Runtime]"
+msgstr "Faankishinii Str [Runtime]"
-#: 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>Ajeechaa himaa</bookmark_value>"
+msgid "<bookmark_value>Str function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii 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 Statement [Runtime]\">Ajeechaa himaa [Runtime]</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 Function [Runtime]\">Faankishinii Str [Runtime]</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 "Faayilii baxxee irraa balleessi."
+msgid "Converts a numeric expression into a string."
+msgstr "Himata lakkoofsaa gara diraatti jijjiira."
-#: 03020410.xhp
+#: 03120103.xhp
msgctxt ""
-"03020410.xhp\n"
-"hd_id3150767\n"
+"03120103.xhp\n"
+"hd_id3109850\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasima:"
+msgstr "caasimaa:"
-#: 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 "Faayilii akka diraniitti ajeesi."
+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 "Ulaagaalee:"
+msgid "Return value:"
+msgstr "Gatii deebii:"
-#: 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> Himamsa diraa kammiiyyuu kan faayilii ifa ta'e of keessa qabu. kanas fayyadamuu ni dandeessa <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgid "String"
+msgstr "Diraa"
-#: 03020410.xhp
+#: 03120103.xhp
msgctxt ""
-"03020410.xhp\n"
-"hd_id3148645\n"
+"03120103.xhp\n"
+"hd_id3155805\n"
"7\n"
"help.text"
-msgid "Example:"
-msgstr "Fakkeenya:"
-
-#: 03020410.xhp
-#, fuzzy
-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\" REM Duraan dursa Faayiliin uumamuu qaba."
-
-#: 03020407.xhp
-msgctxt ""
-"03020407.xhp\n"
-"tit\n"
-"help.text"
-msgid "FileDateTime Function [Runtime]"
-msgstr "Faankishinii FileDateTime[Runtime]"
-
-#: 03020407.xhp
-msgctxt ""
-"03020407.xhp\n"
-"bm_id3153361\n"
-"help.text"
-msgid "<bookmark_value>FileDateTime function</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii 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 Function [Runtime]\"> Faankishinii FileDateTime [Runtime]</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 "Diraa guyyaa fi yeroo of keessaa qabu faayiliin kan itti uumame ykn itti fooyya'e deebisa."
-
-#: 03020407.xhp
-msgctxt ""
-"03020407.xhp\n"
-"hd_id3154685\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Caasima:"
-
-#: 03020407.xhp
-msgctxt ""
-"03020407.xhp\n"
-"par_id3154124\n"
-"4\n"
-"help.text"
-msgid "FileDateTime (Text As String)"
-msgstr "FileDateTime (Barruu akka diraati)"
-
-#: 03020407.xhp
-msgctxt ""
-"03020407.xhp\n"
-"hd_id3150448\n"
-"5\n"
-"help.text"
msgid "Parameters:"
msgstr "Ulaagaalee:"
-#: 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>Barruu:</emph> Himamsa diraa kammiiyyuu kan faayilii ifa ta'e of keessa qabu. Kanas fayyaduumuu ni dandeessa <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">Sirnasxaa URL</link>."
+msgid "<emph>Expression: </emph>Any numeric expression."
+msgstr "<emph>Himata:</emph> Himata lakkoofsaa kamiyyuu."
-#: 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 "Faankishiniin kun faayiliin yeroo kam akka uumamee fi yeroo dhumaa kam akka fooyya'e erga murteesse booda haala kanaan \"MM.DD.YYYY HH.MM.SS\" deebi'a."
+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 "Faankishiniin <emph>Str</emph> jijjiiramaa lakkoofsaa, ykn bu'aa herreegaa gara diraatti jijjiira. Lakkoofsotni nagatiivii mallattoo hir'isuutiin durfamu. Lakkoofsotni poozatiiviin iddoo duwwaadhaan(bakka mallattoo ida'uu) durfamu."
-#: 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 "Fakkeenya:"
-#: 03103300.xhp
+#: 03120104.xhp
msgctxt ""
-"03103300.xhp\n"
+"03120104.xhp\n"
"tit\n"
"help.text"
-msgid "Option Explicit Statement [Runtime]"
-msgstr "Hima Ifaa dirqaa [Runtime]"
+msgid "Val Function [Runtime]"
+msgstr "Faankishinii Val [Runtime]"
-#: 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>Hima Ifaa dirqaa</bookmark_value>"
+msgid "<bookmark_value>Val function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii 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 Statement [Runtime]\">Hima Ifaa dirqaa [Runtime]</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 Function [Runtime]\">Faankishinii Val [Runtime]</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 "Jijjiiramaan marti, lakkadda sagantaa keessatti, Haala ifa ta'een hima Dim wajjin akka lallabaman hubachiisa."
+msgid "Converts a string to a numeric expression."
+msgstr "Diraa gara himata lakkoofsaatti jijjiira."
-#: 03103300.xhp
+#: 03120104.xhp
msgctxt ""
-"03103300.xhp\n"
-"hd_id3149763\n"
+"03120104.xhp\n"
+"hd_id3159157\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasimaa:"
+msgstr "caasimaa:"
-#: 03103300.xhp
-#, fuzzy
+#: 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 "Ulaagaalee:"
+msgid "Return value:"
+msgstr "Gatii deebii:"
-#: 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 "Himni kun, Moojulii keessaatti, lakkadda sagantaa raawwachuu danda'u dursee ida'amuu qaba."
+msgid "Double"
+msgstr "Dachaa"
-#: 03103300.xhp
+#: 03120104.xhp
msgctxt ""
-"03103300.xhp\n"
-"hd_id3125864\n"
+"03120104.xhp\n"
+"hd_id3156024\n"
"7\n"
"help.text"
-msgid "Example:"
-msgstr "Fakkeenya:"
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 03103300.xhp
-#, fuzzy
+#: 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 REM This results in a run-time error"
+msgid "<emph>Text:</emph> String that represents a number."
+msgstr "<emph>Barruu:</emph> Diraa lakkoofsa bakka bu'u dha."
-#: 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 "Banuu fi Cufuu Faayiloota"
+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 faankishiniitti fayyadamuun,diraa lakkoofsa bakka bu'u gara himata lakkoofsaatti jijjiiruu ni dandeessa.Kuni faallaa faankishinii <emph>Str</emph> ti. Yoo gamisni diraa qofti lakkoofsa of keessaa qabaate, arfiileen diraa jalqabaa sirriin qofti ni jijjiiramu. Yoo diraan lakkoofsota kamiyyuu of keessaa hin qabu ta'e, faankishiniin <emph>Val</emph> gatii 0 deebisa."
-#: 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=\"Opening and Closing Files\">Banuu fi Cufuu Faayiloota</link>"
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 03120307.xhp
+#: 03120105.xhp
msgctxt ""
-"03120307.xhp\n"
+"03120105.xhp\n"
"tit\n"
"help.text"
-msgid "Right Function [Runtime]"
-msgstr "Faankishinii Mirgaa [Runtime]"
+msgid "CByte Function [Runtime]"
+msgstr "Faankishinii CByte [Runtime]"
-#: 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>Faankishinii Mirgaa </bookmark_value>"
+msgid "<bookmark_value>CByte function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii 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 Function [Runtime]\">Faankishinii Mirgaa [Runtime]</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 Function [Runtime]\">Faankishinii CByte [Runtime]</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 "Moggaa mirgaa arfiiwwan \"n\" himata diraa deebisa."
+msgid "Converts a string or a numeric expression to the type Byte."
+msgstr "Diraa ykn himata lakkoofsaa gara baayitii akaakuutti jijjiira."
-#: 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 "Dabalataan: <link href=\"text/sbasic/shared/03120303.xhp\" name=\"Left Function\">Faankishinii Bitaa</link> ilaali."
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 03120307.xhp
+#: 03120105.xhp
msgctxt ""
-"03120307.xhp\n"
-"hd_id3145315\n"
+"03120105.xhp\n"
+"par_id3147573\n"
"4\n"
"help.text"
-msgid "Syntax:"
-msgstr "Caasimaa:"
+msgid "Cbyte( expression )"
+msgstr "Cbyte( expression )"
-#: 03120307.xhp
+#: 03120105.xhp
msgctxt ""
-"03120307.xhp\n"
-"par_id3153061\n"
+"03120105.xhp\n"
+"hd_id3145315\n"
"5\n"
"help.text"
-msgid "Right (Text As String, n As Long)"
-msgstr "Right (Text As String, n As Long)"
-
-#: 03120307.xhp
-msgctxt ""
-"03120307.xhp\n"
-"hd_id3145068\n"
-"6\n"
-"help.text"
msgid "Return value:"
msgstr "Gatii deebii:"
-#: 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 "Diraa"
+msgid "Byte"
+msgstr "Baayitii"
-#: 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 "Ulaagaa:"
-
-#: 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>Barruu:</emph> Himata diraa kanneen moggaa mirga diraa ta'anii akka deebi'an barbaaddu dha."
-
-#: 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> Himata lakkoofsaa kan hamma arfiilee akka siif deebi'an barbaaddu ibsu deebisa.Yoo <emph>n</emph> = 0 ta'e, diraa dheerinni isaa zeeroo ta'etu deebi'a. 65535 gatii eeyyamamaa isa guddaa dha."
-
-#: 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 "Fakkeenyi armaan gadii haala guyyaa bifa YYYY-MM-DD tiin dhiyaatu gara bifa itti fayyadama US ((MM/DD/YYYY)) tti jijjiira."
-
-#: 03120307.xhp
-msgctxt ""
-"03120307.xhp\n"
-"hd_id3156212\n"
-"12\n"
-"help.text"
-msgid "Example:"
-msgstr "Fakkeenya:"
+msgstr "Ulaagaalee:"
-#: 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(\"Please input a date in the international format 'YYYY-MM-DD'\")"
+msgid "<emph>Expression:</emph> A string or a numeric expression."
+msgstr "<emph>Himata:</emph> Diraa ykn Himata lakkoofsaa."
#: 03120200.xhp
msgctxt ""
@@ -29717,4232 +31197,3390 @@ msgctxt ""
msgid "The following functions repeat the contents of strings."
msgstr "Faankishinoonni armaan gadii qabiyyeewwan diraawwanii irra deebi'u."
-#: 03070400.xhp
+#: 03120201.xhp
msgctxt ""
-"03070400.xhp\n"
+"03120201.xhp\n"
"tit\n"
"help.text"
-msgid "\"/\" Operator [Runtime]"
-msgstr "\"/\" Ogeejjii [Runtime]"
+msgid "Space Function [Runtime]"
+msgstr "Faankishinii Iddoo [Runtime]"
-#: 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>\"/\" ogeejjii (herreegaa)</bookmark_value>"
+msgid "<bookmark_value>Space function</bookmark_value>"
+msgstr "<bookmark_value>faankishinnii iddoo</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\">\"/\" Ogeejjii [Runtime]</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 Function [Runtime]\">Faankishinii Iddoo [Runtime]</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 "Gatii lama hiraa."
+msgid "Returns a string that consists of a specified amount of spaces."
+msgstr "Diraa hamma iddoowwan ibsamanii qabu deebisa."
-#: 03070400.xhp
+#: 03120201.xhp
msgctxt ""
-"03070400.xhp\n"
-"hd_id3148946\n"
+"03120201.xhp\n"
+"hd_id3153394\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasimaa:"
+msgstr "caasimaa:"
-#: 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 "Ulaagaalee:"
+msgid "Return value:"
+msgstr "Gatii deebii:"
-#: 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>Bu'aa:</emph> gatiin lakkofsa kamu bu'aa hiruu qabu."
+msgid "String"
+msgstr "Diraa"
-#: 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>Himannoo1, Himannoo2:</emph> himannoo lakkofsa kamuu hiruu barbaaddu."
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 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> Himata lakkoofsaa kan baay'ina iddoowwan diraa keessa jiranii ibsa. Gatiin guddaan n, 65535 dha."
+
+#: 03120201.xhp
+msgctxt ""
+"03120201.xhp\n"
+"hd_id3154760\n"
+"9\n"
+"help.text"
msgid "Example:"
msgstr "Fakkeenya:"
-#: 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,\"Info:\""
+
+#: 03120202.xhp
+msgctxt ""
+"03120202.xhp\n"
"tit\n"
"help.text"
-msgid "Erl Function [Runtime]"
-msgstr "Erl Dalagaa [Runtime]"
+msgid "String Function [Runtime]"
+msgstr "Faankishinii Diraa [Runtime]"
-#: 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 dalagaa</bookmark_value>"
+msgid "<bookmark_value>String function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii Diraa</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 Function [Runtime]\">Erl Function [Runtime]</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 Function [Runtime]\">Faankishinii Diraa [Runtime]</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 "Lakkaddaa dogogoraa yommuu sagantichi hojjetuu addaan baasu deebisi."
+msgid "Creates a string according to the specified character, or the first character of a string expression that is passed to the function."
+msgstr "Akkaataa arfii ibsameen ,ykn arfii jalqabaa himata diraa kan faankishinichatti darbeetiin diraa uuma."
-#: 03050100.xhp
+#: 03120202.xhp
msgctxt ""
-"03050100.xhp\n"
-"hd_id3147574\n"
+"03120202.xhp\n"
+"hd_id3149516\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Syntax:"
+msgstr "caasimaa:"
-#: 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 "Return value:"
+msgstr "Gatii deebii:"
-#: 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 "Diraa"
-#: 03050100.xhp
+#: 03120202.xhp
msgctxt ""
-"03050100.xhp\n"
-"hd_id3150792\n"
+"03120202.xhp\n"
+"hd_id3154923\n"
"7\n"
"help.text"
msgid "Parameters:"
-msgstr "Parameters:"
+msgstr "Ulaagaalee:"
-#: 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 "Dalagaan Erl kan deebisu lakkofsa sarara qofa, malee asxaa sararaatii miti."
+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> Himata lakkoofsaa kan baay'ina arfiilee diraa keessatti deebi'anii agarsiisa. Gatiin guddaan n, 65535 dha."
-#: 03050100.xhp
+#: 03120202.xhp
msgctxt ""
-"03050100.xhp\n"
-"hd_id3146921\n"
+"03120202.xhp\n"
+"par_id3148664\n"
"9\n"
"help.text"
-msgid "Example:"
-msgstr "Fakkeenya:"
-
-#: 03050100.xhp
-#, fuzzy
-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 REM Set up error handler"
+msgid "<emph>Expression:</emph> Numeric expression that defines the ASCII code for the character."
+msgstr "<emph>Himata:</emph> Himata lakkofsaa kan lakkadda ASCII arfichaaf murteessu dha."
-#: 03050100.xhp
-#, fuzzy
+#: 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 "Dogogorri REM kan uumamu yoo faayiliin hin jirre."
+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>Arfii:</emph>Arfii qeenxee kamiyyuu kan diraa deebii ijaaruuf fayyade, ykn diraa kamiyyuu kan arfiin duraa isaa fayyadu dha."
-#: 03050100.xhp
-#, fuzzy
+#: 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 \"Dogogora \" & err & \": \" & error$ + chr(13) + \"Sarara : \" + Erl + chr(13) + Now , 16 ,\"Dogogorri mula'ate\""
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 03104700.xhp
+#: 03120300.xhp
msgctxt ""
-"03104700.xhp\n"
+"03120300.xhp\n"
"tit\n"
"help.text"
-msgid "Erase Function [Runtime]"
-msgstr "Faankishinii Haqii [Runtime]"
+msgid "Editing String Contents"
+msgstr "Qabiyyeewwan Diraa Gulaaluu"
-#: 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>Faankishinii Haqii</bookmark_value>"
+msgid "<bookmark_value>ampersand symbol in StarBasic</bookmark_value>"
+msgstr "<bookmark_value>StarBasic 'n mallattoo fi</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\">Faankishinii Haqii[Runtime]</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=\"Editing String Contents\">Qabiyyeewwan diraa gulaaluu</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 "Qabiyyeewwan miseensota waraantoo gosa waraantoo hammamtaa dhaabbataa haquu ,fi kuufamoo gosa waraantoo hammamtaa jijjiramaan qabame gadlakkisiisuuf tajaajila."
+msgid "The following functions edit, format, and align the contents of strings. Use the & operator to concatenate strings."
+msgstr "Faankishinoonni armaan gadii Qabiyyeewwan diraawwanii gulaalu, dhangi'u, fi hiriirsisu. Diraawwan direessuuf, qooyyaba &'tti fayyadami."
-#: 03104700.xhp
+#: 03120301.xhp
msgctxt ""
-"03104700.xhp\n"
-"par_idN1055D\n"
+"03120301.xhp\n"
+"tit\n"
"help.text"
-msgid "Syntax:"
-msgstr "Caasimaa:"
+msgid "Format Function [Runtime]"
+msgstr "Faankishinii Dhangii [Runtime]"
-#: 03104700.xhp
+#: 03120301.xhp
msgctxt ""
-"03104700.xhp\n"
-"par_idN105E6\n"
+"03120301.xhp\n"
+"bm_id3153539\n"
"help.text"
-msgid "Erase Arraylist"
-msgstr "Tarreeffama waraantoo haqi."
+msgid "<bookmark_value>Format function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii dhangii</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 "Ulaagaalee:"
+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 Function [Runtime]\">Faankishinii Dhangii [Runtime]</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>Tarree waraantoo</emph> - Tarreeffama waraantoowwan haqamuuf jiranii."
+msgid "Converts a number to a string, and then formats it according to the format that you specify."
+msgstr "Lakkoofsa gara diraatti jijjiiree,dhangii ati fayyadamteen lakkoofsicha dhangi'a."
-#: 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 "Faankishinii Exp[Runtime]"
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 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>Faankishinii 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 Function [Runtime]\">Faankishinii Exp [Runtime]</link>"
+msgid "Return value:"
+msgstr "Gatii deebii:"
-#: 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 "Logaarizimii uumamaa bu'uura olkaasuu paaworii(e = 2.718282)deebisa."
+msgid "String"
+msgstr "Diraa"
-#: 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 "Caasimaa:"
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 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>Lakkoofsa:</emph> Himata lakkofsaa kan gara diraa dhangi'ameetti akka jijjiirramu barbaaddu dha."
-#: 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 "Gatii deebii:"
+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>Dhangii:</emph> Diraa lakkadda dhangii lakkoofsaa adda baasu dha. Yoo <emph>Dhangiin</emph> dhiifame, Faankishiniin dhangii akka faankishinii <emph>Str</emph> 'tti tajaajila."
-#: 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 "Dachaa"
+msgid "Formatting Codes"
+msgstr "Lakkaddawwan dhangii"
-#: 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 "Ulaagaalee:"
+msgid "The following list describes the codes that you can use for formatting a number:"
+msgstr "Tarreeffamni armaan gadii, lakkaddawwan lakkoofsa dhangi'uuf si fayyadan ibsa."
-#: 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> Himannoon lakkofsaa kamuu olkaasuu paaworii ibsa. paaworiin lakkoofsota pirisishini qeenxee irra xiqqaa ykn wal qixa 88.02969 fi lakkoofsota pirisishini dachaa irra xiqqaa ykn wal qixa 709.782712893, waan Bu'uurri $[officename]dogongara lakkofsaa gatii kana caalan deebisuuf."
+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> Yoo <emph>lakkoofsichi</emph> lakqurxa bakka 0 lakkadda dhangii keessatti qabaate,lakqurxichi ni mul'ifama; kanarraa kan hafe zeerootu mul'ifama."
-#: 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 "Fakkeenya:"
+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 "Yoo <emph>Lakkoofsi</emph> lakqurxa xiqqoo baay'ina zeeroowwan lakkadda dhangii gad ta'an qabaate,(gama kurnyaalee lachuutti), zeeroowwan dursan ykn itti fufan ni mul'ifamu. Yoo lakkoofsichi lakqurxa bitaa footuu kurnyaalee baay'inaan baay'ina zeeroowwanii lakkadda keessaa caale, lakqurxawwan dabalataa osoo hin dhangi'amin mul'ifamu."
-#: 03080201.xhp
-#, fuzzy
+#: 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 "Iddoowwan kurnyaalee, baay'ina zeeroowwanii kanneen footuu kurnyaalee lakkadda <emph>dhangii</emph> keessaatti aananii dhufan irratti hundaa'uun sikfama."
-#: 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,\"Multiplication by logarithm\""
+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> Yoo <emph>Lakkoofsi</emph> lakqurxa bakka iddooqa # lakkadda <emph>dhangii</emph> keessatti qabaate, lakqurxichi ni mul'ifama. Kanarraa kan hafe, omtiyyuu bakka kanatti hin mul'ifamu."
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"tit\n"
+"03120301.xhp\n"
+"par_id3148452\n"
+"16\n"
"help.text"
-msgid "Macro"
-msgstr "Maakroo"
+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 "Mallattoon kun akka 0'tti tajaajila; Yoo lakkofsi arfiilee # lakkadii dhangii keessaa lakqurxawwan lakkoofsicha keessaa caalee,zeeroowwan jalqabaa ykn dhumaa irraan kan hafe hin mul'ifaman."
-#: 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>mudatawwan;wantootaan wal qabatan</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> Iddoqni kurnyaalee baay'ina iddoowwan kurnyaalee gara bitaa fi mirgaa footuu kurnyaalee murteessa."
-#: 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=\"Macro\">Maakroo</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 "yoo lakkaddi dhangii iddooqa # qofa gara mallattoo kanaatti qabaate, lakkoofsotni 1 gadi ta'an footuu kurnyaalee waliin jalqabu. Zeeroo jalqabaa lakkoofsota eentaa waliin agarsiisuuf, 0 akka iddooqa lakqurxa jalqabaa gara footuu kurnyaaleetti fayyadami."
-#: 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=\".\">Maakroo yommuu godaayyaan, saxaatoon, yookiin wanti OLE object filataman akka raawwatamu barbaaddu filadhu.</ahelp> Wanta filatamerratti hundaa'uun,faankishinichi kan argamu <emph>Maakroo</emph> caancala <emph>Wanta</emph> qaaqu irratti, yookiin <emph>Maakroo Ramadi</emph> qaaqu keessatti dha."
+msgid "<emph>%:</emph> Multiplies the number by 100 and inserts the percent sign (%) where the number appears in the format code."
+msgstr "<emph>%:</emph> Lakkoofsicha 100'n baaay'isee, mallattoo dhibbantaa(%) kan lakkofsichi haala lakkadda dhangiitiin dhiyaatu galcha."
-#: 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 "Mudata"
+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> Yoo lakkaddi dhangii xinnaatti bakka qabataa(0 or #) lakqurxa tokko mirga mallattoo E-, E+, e-, ykn e+ qabaate, lakkoofsichi dhangii saayinsaawaatiin ykn eksipooneenshiyaaliitiin dhangi'ama. Lakkoofsi iddooqa lakqurxaa mirga mallattoo, baay'ina lakqurxaa eksipoonantii keessaa beekuuf fayyada."
-#: 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\">Mudatawwan maakroowwan wanta filamaniif ramadaman isaan barbaachisoo tarreessa.</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 "Eksipoonantiin yoo nagatiivii ta'e, mallattoon hir'isuu eksipoonantii E-, E+, e-, e+ wajjin dursee kallattumaan mul'ata. Eksipoonantichi yoo poozatiivii ta'e,mallattoon ida'uu Eksipoonantiiwwan E+ or e+ qofa dursee mul'ifama."
-#: 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 "Gabateen armaan gadii maakroowwanii fi mudata galmee keetiin walqabachuu danda'an ibsa."
+msgid "The thousands delimiter is displayed if the format code contains the delimiter enclosed by digit placeholders (0 or #)."
+msgstr "Yoo lakkaddi dhangii daangessituu kan lakqurxaa bakka qabattootan(0 or #) hammatame of keessaa qabaate, daangessituun kumaatamaa ni mul'ifamu."
-#: 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 "Itti fayyadamni tuqaa akka footuu kumaatamaa fi kurnyaalee, qindaa'ina naannoo irratti hundaa'a. Yommuu kallattumaan lakkoofsa lakkadda maddaa Basic keessatti galchitu,Tuqaa akka daangessituu kurnyaaleetti yeroo mara fayyadami. Arfiin dhugaan akka footuu kurnyaaleetti mul'ifame, dhangii lakkoofsaa sirna qindaa'ina keetii irratti hundaa'a."
+
+#: 03120301.xhp
+msgctxt ""
+"03120301.xhp\n"
+"par_id3152887\n"
"24\n"
"help.text"
-msgid "Event"
-msgstr "Mudata"
+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>- + $ ( ) iddoo:</emph> Ida'uu (+), Hir'isuu (-), doolaara ($), iddoo, ykn cuftuuwwan kallattumaan lakkadda dhangii keessaatti galfaman akka arfii barreeffamaatti mul'ifamu."
-#: 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 "Mudata ceesisuu"
+msgid "To display characters other than the ones listed here, you must precede it by a backslash (\\), or enclose it in quotation marks (\" \")."
+msgstr "Arfiilee asiitti tarreeffamaniin ala jiran mul'isuuf, arficha haxaarroon(\\) dursuu yookiin mallattoo waraabbii(\" \") keessatti hammachiisuu qabda."
-#: 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 "Wanta OLE"
+msgid "\\ : The backslash displays the next character in the format code."
+msgstr "\\ : Haxaarroon lakkadda dhangii keessatti, arfii itti aanu mul'isa."
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3148451\n"
+"03120301.xhp\n"
+"par_id3153366\n"
"27\n"
"help.text"
-msgid "Graphics"
-msgstr "Saxaatoo"
+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 "Arfiiwwan lakkadda dhangii keessaa kunneen hiika addaa qabaatanii yoo haxaarroodhaan(\\\\) durfaman, arfiiwwan kun akka arfiilee barreeffamaatti mul'ifamu."
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3125863\n"
+"03120301.xhp\n"
+"par_id3155411\n"
"28\n"
"help.text"
-msgid "Frame"
-msgstr "Goodayya"
-
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3154216\n"
-"29\n"
-"help.text"
-msgid "AutoText"
-msgstr "Barruu ufmaa"
+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 "Arfiileen Lakkadda dhangii keessatti haxaarroon durfaman akka arfiilee barreeffamaatti akka mul'ataniif; dhangiiwwan arfiilee guyyaa- fi yeroo- (a, c, d, h, m, n, p, q, s, t, w, y, /, :), arfiilee dhangiisuu lakkoofsaa (#, 0, %, E, e, qoodduu, Tuqaa), fi arfiilee dhangii diraa (@, &, <, >, !) fayyadama."
-#: 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 "Naannoo barruyyaa fakkaattii"
+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 "Dhangiiwwan lakkoofsa durmurtaawaa armaan gadiittis fayyadamuu ni dandeessa. \"General Number\" malee, Lakkaddaawwan dhangii durmurtaawaa marti lakkoofsa akka lakkoofsa kurnyee iddoowwan kurnyee lamaatti deebisu."
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3153138\n"
+"03120301.xhp\n"
+"par_id3150113\n"
"31\n"
"help.text"
-msgid "Hyperlink"
-msgstr "Geessituu"
+msgid "If you use predefined formats, the name of the format must be enclosed in quotation marks."
+msgstr "Yoo dhangiisuuwwan durmurtaawaatti fayyadamte, maqaan dhangichaa mallattoo waraabbii keessa galuu qaba."
-#: 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 "Wanta cuqaasi"
+msgid "Predefined format"
+msgstr "Dhangiisuu durmurtaawaa"
-#: 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 "Wanti ni filatama."
+msgid "<emph>General Number:</emph> Numbers are displayed as entered."
+msgstr "<emph>Lakkoofsa Dimshaashaa:</emph> Lakkoofsotni akka galfamanitti mul'atu."
-#: 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>Maallaqa:</emph> Fuuldura lakkoofsichatti mallattoo doolaaraa saagee lakkoofsota nagatiivii cuftuu keessatti barreessa."
-#: 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>Dhaabbataa:</emph> Yoo xiqqaate, lakqurxa tokko fuuldura qoodduu kurnyaaleetti mul'isa."
-#: 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>Waltawaa:</emph> Lakkoofsota qoodduu kumaatamaa wajjin mul'isa."
-#: 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 "Hantuutee wantarraa"
+msgid "<emph>Percent:</emph> Multiplies the number by 100 and appends a percent sign to the number."
+msgstr "<emph>Dhibbantaa:</emph> Lakkoofsicha 100'n baay'isee,mallattoo dhibbantaa lakkoofsichatti miiltessa."
-#: 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 "Hantuuteen wantarra sochooti."
+msgid "<emph>Scientific:</emph> Displays numbers in scientific format (for example, 1.00E+03 for 1000)."
+msgstr "<emph>Saayinsaawaa:</emph> Lakkoofsota bifa saayinsaawaatiin mul'isa (Fakkeenyaaf 1.00E+03 bakka 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 "Lakkaddaan dhangiisuu kutaa sadi kanneen buufata xiqqaadhaan addaan bahanitti qoodamuu danda'a. Kutaan duraa dhangiisuu gatiiwwan poozatiivii, inni lammataan dhangiisuu gatiiwwan nagatiivii fi inni sadaffaan Zeeroodhaafi. Yoo lakkaddaa dhangiisuu tokko qofaa ibsite, lakkoofsota hundaaf raawwachuu ni danda'a."
-#: 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 "Geessituu Ceesisi"
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 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 "Geessituun wantaaf ramadame ni cuqaasama."
+msgid "' always use a period as decimal delimiter when you enter numbers in Basic source code."
+msgstr "Yommuu ati lakkoofsa madda lakkadda bu'uuraa keessatti galchite, REM yeroo mara, yeroo akka daangessituu kurnyeetti fayyadama."
-#: 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 "Fakkeenyaaf, REM gitoo ingiliziitiin 6,328.20 yoo agarsiisu,gitoo biyya jarmaniitiin ammoo 6.328,20 agarsiisa."
-#: 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 "Hantuuteen wanta gaddhiisti"
+msgid "LCase Function [Runtime]"
+msgstr "Faankishinii LCase [Runtime]"
-#: 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 "Hantuuteen wanta maqsiti."
+msgid "<bookmark_value>LCase function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii 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 Function [Runtime]\">Faankishinii LCase[Runtime]</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 "Qubeewwan gurguddoo diraa keessaa mara gara qubee xixiqqootti jijjiira."
-#: 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 "Dabalataan: <link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase\">UCase</link> Faankishinii ilaali"
-#: 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 "caasimaa:"
-#: 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 "Milkaa'ina fe'ama saxaatoo"
+msgid "Return value:"
+msgstr "Gatii deebii:"
-#: 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 "Saxaatoowwan guutummaatti fe'amaniiru."
+msgid "String"
+msgstr "Diraa"
-#: 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 "Ulaagaalee:"
-#: 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 "Fe'ii saxaatoo xumurame"
+msgid "<emph>Text:</emph> Any string expression that you want to convert."
+msgstr "<emph>Barruu:</emph> Himata diraa kamiyyuu kan akka jijjiiramu barbaaddu dha."
-#: 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 "Fe'iinsa saxaatoo fayyadamaadhaan dhaabbate (fakkeenyaaf, yeroo fuula naqachuu)."
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 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) REM Returns \"las vegas\""
-#: 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 "Saxaatoo fe'uu dadhabuu"
+msgid "Print UCase(sVar) ' Returns \"LAS VEGAS\""
+msgstr "Print UCase(sVar) REM Returns \"LAS VEGAS\""
-#: 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 "Saxaatoon guutumaan guututti hin fe'amne, fakkeenyaaf, yoo saxaatoon hin argamne."
+msgid "Left Function [Runtime]"
+msgstr "Faankishinii Bitaa [Runtime]"
-#: 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>Faankishinii Bitaa</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 "Naqa Arfiilee alpha."
+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 Function [Runtime]\">Faankishinii Bitaa [Runtime]</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 "Barruuleen gabatee cuqoo irraati galfamu."
+msgid "Returns the number of leftmost characters that you specify of a string expression."
+msgstr "Baay'ina arfiilee Moggaa bitaa kanneen himata diraa ibsan deebisa."
-#: 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 "caasimaa:"
-#: 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 "Arfiilee alpha malee galchuu."
+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 "Arfiileen maxxansalaa, fakkeenyaaf, caancaloota fi sarqurxawwan gabatee cuqoo irraati galfamu."
+msgid "Return value:"
+msgstr "Gatii deebii:"
-#: 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 "Diraa"
-#: 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 "Godayya jijjiiri."
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 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 "Godayyi hantuuteedhaan jijjirama."
+msgid "<emph>Text:</emph> Any string expression that you want to return the leftmost characters from."
+msgstr "<emph>Barruu:</emph> Himata diraa kanneen arfiilee moggaa bitaa irraa deebisuuf barbaaddu dha."
-#: 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> Himata lakkoofsaa kan baay'ina arfiilee akka deebi'an barbaadduu ibsa. Yoo <emph>n</emph> = 0 ta'e, Diraa dheerinni isaa zeeroo ta'etu deebi'a. Gatii eeyyamamaa inni guddaan 65535 dha."
-#: 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 "Godayya sochoosi."
+msgid "The following example converts a date in YYYY.MM.DD format to MM/DD/YYYY format."
+msgstr "Fakkeenyi armaan gadii haala guyyaa bifa YYYY.MM.DD irraa gara bifa MM/DD/YYYY tti jijjiira."
-#: 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 "Godayyi hantuuteedhaan socho'a."
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 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(\"Please input a date in the international format 'YYYY-MM-DD'\")"
-#: 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 "Osoo barruun ufmaa hin sagamin."
+msgid "LSet Statement [Runtime]"
+msgstr "Hima LSet [Runtime]"
-#: 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 "Saanduqni barruu osoo hin sagamin."
+msgid "<bookmark_value>LSet statement</bookmark_value>"
+msgstr "<bookmark_value>Hima LSett</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 Statement [Runtime]\">Hima LSet [Runtime]</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 "Erga barruun ufmaa sagamee booda."
+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 "Diraa gara bitaa jijjiirama diraatti hiriirsisa, ykn jijjiramaa akaakuu hiika fayyadamaa tokkoo gara jijjiramaa akaakuu hiika fayyadamaa biraatti garagalcha."
-#: 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 "Erga saanduqni barruu sagamee booda."
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 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 or 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 "Maakroowwan"
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 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 "Maakroo yommu mudatni filatame mudate akka raawwatamu barbaaddu fili."
-
-#: 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 "Godayyi mudata faankishinii faana walqabsiisuuf si fayyada,kanumaanis faankishinichi mudata geggeessu yookiin $[officename] Writer hubata."
+msgid "<emph>Var:</emph> Any String variable that contains the string that you want align to the left."
+msgstr "<emph>Var:</emph> Jijjiiramaa diraa kamiyyuu, kan diraa akka gara bitaatti hiriiru barbaaddu of keessatti hammatu dha."
-#: 05060700.xhp
+#: 03120304.xhp
msgctxt ""
-"05060700.xhp\n"
-"hd_id3155587\n"
+"03120304.xhp\n"
+"par_id3154346\n"
"7\n"
"help.text"
-msgid "Category"
-msgstr "Akaakuu"
+msgid "<emph>Text:</emph> String that you want to align to the left of the string variable."
+msgstr "<emph>Barruu:</emph> Diraa kan gara bitaa jijjiirama diraatti akka hiriiru barbaaddu dha."
-#: 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\">Galmeewwanii fi fayyadama open $[officename] tarreessa.Maqaa bakka maakroowwan itti olkaawuu barbaadduu cuqaasi.</ahelp>"
+msgid "<emph>Var1:</emph> Name of the user-defined type variable that you want to copy to."
+msgstr "<emph>Var1:</emph> Maqaa jijjiiramaa akaakuu hiika fayyadamaa kan itti garagalchuu barbaaddu ti.."
-#: 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 "Maqaa maakroo"
+msgid "<emph>Var2:</emph> Name of the user-defined type variable that you want to copy from."
+msgstr "<emph>Var2:</emph> Maqaa jijjiiramaa akaakuu hiika fayyadamaa kan irraa garagalchuu barbaaddu ti."
-#: 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\">Maakroowwan jiran tarreessa. Maakroo wanta filatameef ramaduu barbaaddu cuqaasi.</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 "Yoo diraan jijjiirama diraarra gabaabaa ta'e, <emph>LSet</emph> 'n diraa jijjiirama diraa keessaa bitaarratti hiriirsisa. Bakki jijjiirama diraa keessatti hafe kamiyyuu iddoo duwwaadhaan bakka bu'amu. Yoo diraan jijjiiramaa diraarra dheeraa ta'e, arfiiwwan moggaa bitaa haga dheerina jijjiramaa diraatti jiran qofti ni garagalfamu. Hima <emph>LSet</emph> tiin, akaakuu jijjiiramaa hiika fayyadamaa tokko gara jijjiiramaa akaakuu gosa tokkootti garagalchuu ni dandeessa."
-#: 05060700.xhp
+#: 03120304.xhp
msgctxt ""
-"05060700.xhp\n"
-"hd_id3159260\n"
+"03120304.xhp\n"
+"hd_id3156282\n"
"11\n"
"help.text"
-msgid "Assign"
-msgstr "Ramadi"
-
-#: 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\">Maakroo filatame mudata adda baafameef ramada.</ahelp> Galfatni maakroo mudata booda qindeeffamu."
-
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"hd_id3150533\n"
-"15\n"
-"help.text"
-msgid "Remove"
-msgstr "Haqi"
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 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\">Maakroo wantoota filatamaniif ramadame haqa.</ahelp></variable>"
+msgid "' Align \"SBX\" within the 40-character reference string"
+msgstr "REM, \"SBX\" diraa bu'uraa arfii 40 keessatti hiriirsisa"
-#: 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 "Filmata maakroo"
+msgid "' Replace asterisks with spaces"
+msgstr "REM,urjoowwan iddoodhaan bakka buusa."
-#: 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\">Maakroo ramaduu barbaaddu filadhu.</ahelp>"
+msgid "' Left-align \"SBX\" within the 40-character reference string"
+msgstr "REM, \"SBX\" diraa bu'uraa arfii 40 keessatti gara bitaatti hiriirsa."
-#: 01010210.xhp
+#: 03120305.xhp
msgctxt ""
-"01010210.xhp\n"
+"03120305.xhp\n"
"tit\n"
"help.text"
-msgid "Basics"
-msgstr "Bu`uurota"
+msgid "LTrim Function [Runtime]"
+msgstr "Faankishinii LTrim [Runtime]"
-#: 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>bu`uureessoota</bookmark_value><bookmark_value>sagantaa xiqqaa</bookmark_value><bookmark_value>jijjiiramoota;hundataa and qe`ee</bookmark_value><bookmark_value>muraa;sagantaa xiqqaa and fankishinoota</bookmark_value>"
+msgid "<bookmark_value>LTrim function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii 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=\"Basics\">Bu`uurota</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 "Kutaan kun bu`uura $[officename] wajjin akka hojennu bu`uureessota nuuf kenna."
+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 Function [Runtime]\">Faankishinii LTrim [Runtime]</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 "Bu`uurri lakkadda $[officename] sagantaa xiqqaa fi fankishinii irratti hundaa`a isaan kunis kutaalee <emph>cita...dhuma cita</emph> fi <emph>fankishinii...dhuma fankishinii</emph> gidduutti ifteessamu. Tokkoon tokkoo citaa yookiin fankishinii citootaa fi fankishinoota biroo ni waamu.yoo ofeegannoo barreessuu lakkada dhortuu citaa yookiin fankishinii goote, sagantaalee biroo keessatti dabalataan akka tasaa gargaaramuu ni danda`ama.Dabalataa <link href=\"text/sbasic/shared/01020300.xhp\" name=\"Procedures and Functions\">Adeemsa fi Fankishinoota</link> ilaali."
-
-#: 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 "Iddoowwan duraa mara jalqaba himata diraarra jiran haqa."
-#: 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 "Cita jechuun maali?"
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 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>Citni</emph> unka gabaabaa <emph>sagantaa xiqqaa</emph> ta`ee, hojii xiqqoo sagantaa keessatti kan qabachuuf gargaaru dha. Subs are used to split a task into individual procedures. Sagantaa adeemsaa fi cita-adeemsaatti addaabuun dubbifammummaa dabaluu fi dogoggora xixiqqoo ni hir`isa. Citni morkalloota tokko tokko akka ulaagaa ni fudhata garuu gatii tokkolee gara cita yookiin fankishinii waamameetti hin deebissu, fakkeenyaaf:"
-
-#: 01010210.xhp
-msgctxt ""
-"01010210.xhp\n"
-"par_id3150868\n"
-"15\n"
-"help.text"
-msgid "DoSomethingWithTheValues(MyFirstValue,MySecondValue)"
-msgstr "DoSomethingWithTheValues(MyFirstValue,MySecondValue)"
+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 "Fankishiniin maali?"
+msgid "Return value:"
+msgstr "Gatii deebii:"
-#: 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>Fankishiniin</emph> cita barbaachisaa ta`ee, kan gatii kennu dha. Fankishinii ibsa jijjiiramaa gama harka mirgaan gargaaramu ni danda`ama, yookiin bakka biroo iddoo baratamoo gatii ati itti gargaaramtu, fakkeenyaaf:"
+msgid "String"
+msgstr "Diraa"
-#: 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 "MySecondValue = myFunction(MyFirstValue)"
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 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 "Hundataa fi qe`ee jijjiiramtootaa"
+msgid "<emph>Text:</emph> Any string expression."
+msgstr "<emph>Text:</emph> Himata Diraa kamiyyuu"
-#: 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 "Jijjiiramtootni hundataa muraa keessatti citootaa fi fankishinootaa hundaaf gataa`aa dha. Isaan kunis calqaba muraa irratti osoo citni yookiin fankishiniin hin calqabiin ibsamu."
+msgid "Use this function to remove spaces at the beginning of a string expression."
+msgstr "Iddoo jalqaba himata diraarra jiran haquuf, faankishinii kanatti fayyadami."
-#: 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 "Ibsi Jijjiiramtootaa cita yookiin fankishinii keessatti gataa`aa kan ta`u cita yookiin fankishinii keessatti duwwaa dha. Jijjiiramtootni kunis jijjiiramtoota hundataa Sadarkaa citoota yookiin fankishinii maqaa walfakkaataa irraa dhufuun maqaa fi jijjiiramtoota qe`ee walfakkaatuun ni faccisu."
-
-#: 01010210.xhp
-msgctxt ""
-"01010210.xhp\n"
-"hd_id3150010\n"
-"11\n"
-"help.text"
-msgid "Structuring"
-msgstr "Caasessuu"
-
-#: 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 "Iddoo sagantaake akka adeemsaa fi fankishinootatti (citoota fi fankishinoota)tti addaan baastee, dabalataan piroojektii biraa keessatti gargaaramuuf adeeemsa fi fankishinoota kana akka faayilootaatti olkaa`uun ni danda`ama.Bu`uuri $[officename] <link href=\"text/sbasic/shared/01020500.xhp\" name=\"Modules and Libraries\">Muraa and Kuusota sagantaa</link>. citootni fi fankishinootni yeroo hundaa muraa keessatti qabatamu.Muraan hundataa yookiin gosa galmeeti.Muraa baay`een kuusota sagantaatti ni makama."
-
-#: 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 "Citoota, fankishinoota, muraa fi kuusota sagantaa faayilii tokko irraa gara birootti <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Macro\">Maakroo</link> qaaqa gargaaramuun jalteessuun yookiin siqsuun ni danda`ama."
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 03103900.xhp
+#: 03120306.xhp
msgctxt ""
-"03103900.xhp\n"
+"03120306.xhp\n"
"tit\n"
"help.text"
-msgid "FindPropertyObject Function [Runtime]"
-msgstr "Faankishinii FindPropertyObject [Runtime]"
+msgid "Mid Function, Mid Statement [Runtime]"
+msgstr "Faankishinii Mid, Hima Mid [Runtime]"
-#: 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>Faankishinii FindPropertyObject</bookmark_value>"
+msgid "<bookmark_value>Mid function</bookmark_value><bookmark_value>Mid statement</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii Mid</bookmark_value><bookmark_value>Hima 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 Function [Runtime]\">Faankishinii FindPropertyObject [Runtime]</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 Function, Mid Statement [Runtime]\">Faankishinii Mid, Hima Mid [Runtime]</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 "Wantootni maqaa wantaatti fayyadamuudhaan akka ulaagaa diraatti yeroo sa'aa darbee akka raawwatamu taasisa."
+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 "Xiqqaa himata diraa adda baafamee deebisa (<emph>Mid function</emph>), yookiin xiqqaa himata diraa, diraa biraatiin bakka buusa (<emph>Hima 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 "Fakkeenyaaf, ajaja:"
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 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]) or 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 "Garee ajaajaa armaan gadiin walqabata:"
+msgid "Return value:"
+msgstr "Gatii deebii:"
-#: 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 (only by Function)"
-#: 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 "Ulaagaalee:"
-#: 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>Barruu:</emph> Himata diraa kamiyyuu kan akka jijjiiramu barbaaddu dha."
-#: 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>Jalqaba: </emph> Himata lakkoofsaa kan bakka arfii diraa keessaa itti jalqabuu fi xiqqaan diraa ati bakka buusuuf ykn deebisuuf barbaaddu jalqabu agarsiisa."
-#: 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>Dheerina:</emph> Himata lakkoofsaa kan baay'ina arfiilee akka bakka bu'aman yookiin deebi'an barbaaddu deebisa. 65535 gatii guddaa isa eeyyamamaa dha."
-#: 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 "Yoo dheerinni ulaagaa <emph>faankishinii Mid</emph> keessaa gatame, arfiileen jalqabaa haga xumura himata diraatti jiran marti ni deebi'u."
-#: 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 "Yoo dheerinni ulaagaa <emph>Hima Mid</emph> keessaa irra xiqqaa dheerina barruu ati bakka buusuu barbaadduu ta'e, barruun kun gara dheerina beekkameetti gad-bu'a."
-#: 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 "Haala kamaatiin yeroo sa'aa darbee maqaawwan uumuuf, itti fayyadami:"
+msgid "<emph>Text:</emph> The string to replace the string expression (<emph>Mid statement</emph>)."
+msgstr "<emph>Barruu:</emph> Diraa himata diraa (<emph>Mid statement</emph>) bakka buusuudhaaf fayyadu dha."
-#: 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 "Maqaawwan shan haala marfataatiin \"TextEdit1\" hanga \"TextEdit5\" uumuuf fayyada."
-
-#: 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 "Dabalataan: <link href=\"text/sbasic/shared/03103800.xhp\" name=\"FindObject\">WantBarbaadi</link> ilaali"
-
-#: 03103900.xhp
-msgctxt ""
-"03103900.xhp\n"
-"hd_id3147287\n"
-"16\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Caasimaa:"
-
-#: 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 "Fakkeenya:"
-#: 03103900.xhp
+#: 03120306.xhp
msgctxt ""
-"03103900.xhp\n"
-"hd_id3150012\n"
+"03120306.xhp\n"
+"par_id3153189\n"
"18\n"
"help.text"
-msgid "Parameters:"
-msgstr "Ulaagaalee:"
-
-#: 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> Jijjiirama wantaa kan yeroo sa'aa darbee haala addaa addaatiin akka hiikamu barbaaddu dha."
-
-#: 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> Diraa maqaa amalaa yeroo sa'aa darbee raawwachuu barbaadduu ibsa."
+msgid "sInput = InputBox(\"Please input a date in the international format 'YYYY-MM-DD'\")"
+msgstr "sInput = InputBox(\"Please input a date in the international format 'YYYY-MM-DD'\")"
-#: 03090303.xhp
+#: 03120307.xhp
msgctxt ""
-"03090303.xhp\n"
+"03120307.xhp\n"
"tit\n"
"help.text"
-msgid "On...GoSub Statement; On...GoTo Statement [Runtime]"
-msgstr "Hima On...GoSub; Hima On...GoTo[Runtime]"
+msgid "Right Function [Runtime]"
+msgstr "Faankishinii Mirgaa [Runtime]"
-#: 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>Hima On...GoSub</bookmark_value><bookmark_value>Hima On...GoTo</bookmark_value>"
+msgid "<bookmark_value>Right function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii Mirgaa </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 Statement; On...GoTo Statement [Runtime]\">Hima On...GoSub; Hima On...GoTo [Runtime]</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 Function [Runtime]\">Faankishinii Mirgaa [Runtime]</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 "sararota lakkadda sagantaa keessattii baay'ee ibsame keessa tokkotti qoodi, gatii himannoo irratti hundaa'un."
+msgid "Returns the rightmost \"n\" characters of a string expression."
+msgstr "Moggaa mirgaa arfiiwwan \"n\" himata diraa deebisa."
-#: 03090303.xhp
+#: 03120307.xhp
msgctxt ""
-"03090303.xhp\n"
-"hd_id3148798\n"
+"03120307.xhp\n"
+"par_id3149763\n"
"3\n"
"help.text"
-msgid "Syntax:"
-msgstr "Caasimaa:"
+msgid "See also: <link href=\"text/sbasic/shared/03120303.xhp\" name=\"Left Function\">Left Function</link>."
+msgstr "Dabalataan: <link href=\"text/sbasic/shared/03120303.xhp\" name=\"Left Function\">Faankishinii Bitaa</link> ilaali."
-#: 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 N GoSub Label1[, Label2[, Label3[,...]]]"
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 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 "Ulaagaalee:"
+msgid "Return value:"
+msgstr "Gatii deebii:"
-#: 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>Himannoon lakkoofsa kamuu gidduu 0 fi 255 sagantaan sarara kamitti akka qoodame kan murteessuu dha.yoo NumExpression niin 0 ta'e, himni hin raawwanne.Yoo NumExpression niin irra guddaa 0 ta'e, sagantaan asxaa iddoo lakkoofsa himannoo(1 = First label; 2 = Second label)walgitutti utaala."
+msgid "String"
+msgstr "Diraa"
-#: 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>Asxaa1:</emph>Sarara akkaataa caasaa <emph> GoTo </emph>fi <emph>GoSub</emph> galchi."
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 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 "Walii galteen <emph>GoTo</emph> fi <emph>GoSub </emph> kan gataa'ee dha."
+msgid "<emph>Text:</emph> Any string expression that you want to return the rightmost characters of."
+msgstr "<emph>Barruu:</emph> Himata diraa kanneen moggaa mirga diraa ta'anii akka deebi'an barbaaddu dha."
-#: 03090303.xhp
+#: 03120307.xhp
msgctxt ""
-"03090303.xhp\n"
-"hd_id3148645\n"
+"03120307.xhp\n"
+"par_id3151211\n"
"10\n"
"help.text"
-msgid "Example:"
-msgstr "Fakkeenya:"
-
-#: 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> Himata lakkoofsaa kan hamma arfiilee akka siif deebi'an barbaaddu ibsu deebisa.Yoo <emph>n</emph> = 0 ta'e, diraa dheerinni isaa zeeroo ta'etu deebi'a. 65535 gatii eeyyamamaa isa guddaa dha."
-#: 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 "Fakkeenyi armaan gadii haala guyyaa bifa YYYY-MM-DD tiin dhiyaatu gara bifa itti fayyadama US ((MM/DD/YYYY)) tti jijjiira."
-#: 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 "Fakkeenya:"
-#: 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(\"Please input a date in the international format 'YYYY-MM-DD'\")"
-#: 03120202.xhp
+#: 03120308.xhp
msgctxt ""
-"03120202.xhp\n"
+"03120308.xhp\n"
"tit\n"
"help.text"
-msgid "String Function [Runtime]"
-msgstr "Faankishinii Diraa [Runtime]"
+msgid "RSet Statement [Runtime]"
+msgstr "RSet Hima [Runtime]"
-#: 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>Faankishinii Diraa</bookmark_value>"
+msgid "<bookmark_value>RSet statement</bookmark_value>"
+msgstr "<bookmark_value>RSet hima</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 Function [Runtime]\">Faankishinii Diraa [Runtime]</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 Statement [Runtime]\">RSet Hima [Runtime]</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 "Akkaataa arfii ibsameen ,ykn arfii jalqabaa himata diraa kan faankishinichatti darbeetiin diraa uuma."
+msgid "Right-aligns a string within a string variable, or copies a user-defined variable type into another."
+msgstr "Diraa jijjiirama diraa keessaa, gara mirgaatti hiriirsisuuf;yookiin akaakuu jijjiiramtoota"
-#: 03120202.xhp
+#: 03120308.xhp
msgctxt ""
-"03120202.xhp\n"
-"hd_id3149516\n"
+"03120308.xhp\n"
+"hd_id3149234\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasimaa:"
+msgstr "caasimaa:"
-#: 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 or 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 "Gatii deebii:"
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 03120202.xhp
+#: 03120308.xhp
msgctxt ""
-"03120202.xhp\n"
-"par_id3147530\n"
+"03120308.xhp\n"
+"par_id3148552\n"
"6\n"
"help.text"
-msgid "String"
-msgstr "Diraa"
+msgid "<emph>Text:</emph> Any string variable."
+msgstr "<emph>Text:</emph> Jijjiiramaa Diraa kamiyyuu"
-#: 03120202.xhp
+#: 03120308.xhp
msgctxt ""
-"03120202.xhp\n"
-"hd_id3154923\n"
+"03120308.xhp\n"
+"par_id3154924\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Ulaagaalee:"
+msgid "<emph>Text</emph>: String that you want to right-align in the string variable."
+msgstr "<emph>Barruu</emph>: Diraa kan ati jijjirama diraa keessatti gara mirgaatti hiriirsisuu barbaaddu dha."
-#: 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> Himata lakkoofsaa kan baay'ina arfiilee diraa keessatti deebi'anii agarsiisa. Gatiin guddaan n, 65535 dha."
+msgid "<emph>Variable1:</emph> User-defined variable that is the target for the copied variable."
+msgstr "<emph>Jijjiiramaa1:</emph> Jijjiiramaa hiika fayyadamaa kanneen jijjiiramtoota galagalchamaniif galtee ta'ani dha."
-#: 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>Himata:</emph> Himata lakkofsaa kan lakkadda ASCII arfichaaf murteessu dha."
+msgid "<emph>Variable2:</emph> User-defined variable that you want to copy to another variable."
+msgstr "<emph>Jijjiiramaa2:</emph>Jijjiiramaa hiika fayyadamaa, kanneen gara jijjiiramaa biraatti akka garagalfaman barbaaddu dha."
-#: 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>Arfii:</emph>Arfii qeenxee kamiyyuu kan diraa deebii ijaaruuf fayyade, ykn diraa kamiyyuu kan arfiin duraa isaa fayyadu dha."
+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 "Yoo diraan jijjiiramaa diraa irra gabaabaa te'e,<emph>RSet</emph> 'n diraa, jijjiiramtoota diraa keessaa gara mirgaatti hiriirsisa. Arfiiwwan hafan kanneen jijjiiramtoota diraa keessaa kamiyyuu iddoodhaan bakka bu'u. Yoo diraan, jijjiiramaa diraa irra dheeraa ta'e; arfiiwwan dheerinaan jijjiiramtoota caalan yoo hallagamanii, fi arfiiwwan hafan qofti jijjiramtoota diraa keessatti gara mirgaatti hiriirsifamu."
-#: 03120202.xhp
+#: 03120308.xhp
msgctxt ""
-"03120202.xhp\n"
-"hd_id3152920\n"
+"03120308.xhp\n"
+"par_id3149202\n"
"11\n"
"help.text"
-msgid "Example:"
-msgstr "Fakkeenya:"
+msgid "You can also use the <emph>RSet statement</emph> to assign variables of one user-defined type to another."
+msgstr "Jijjiiramtoota hiika fayyadamaa akaakuu tokko gara biraatti ramaduuf,<emph>Hima RSet</emph> tti fayyadamuus ni dandeessa."
-#: 01030100.xhp
+#: 03120308.xhp
msgctxt ""
-"01030100.xhp\n"
-"tit\n"
+"03120308.xhp\n"
+"par_id3151042\n"
+"12\n"
"help.text"
-msgid "IDE Overview"
-msgstr "Ilaalcha gubbaa IDE"
+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 "Fakkeenyi armaan gadii;Hiriira bitaa fi mirgaa diraa Fooyyessuuf hima <emph>RSet</emph> fi <emph>LSet</emph> tti fayyadama."
-#: 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=\"IDE Overview\">Ilaalcha gubbaa IDE</link>"
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 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=\"Macro Toolbar\"><emph>Kamshaaleen Maakroo</emph></link> IDE keessatti sajoolee adda addaa sagantaalee gulaalii fi yaaliif ni kennu."
+msgid "' Right-align \"SBX\" in a 40-character string"
+msgstr "REM Right-align \"SBX\" in a 40-character string"
-#: 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=\"Editor window\"><emph>Gulaalaa foddaa</emph></link> keessatti, kamshaalee maakroo gad kallattiithaan, lakkaddaa sagantaa bu`uuraa gulaaluun ni danda`ama. tarjaan inni harka bitaa Sarqurxa lakkaddaa sagantaa keessa kaa`uuf gargaara."
+msgid "' Replace asterisks with spaces"
+msgstr "REM,urjoowwan iddoodhaan bakka buusa."
-#: 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=\"Watch\"><emph>Ilaaliin foddaa</emph></link> (observer) Gulaalaa foddaa gad gama bitaan argama, akasumas qabeentoota jijjiiramaawwan yookiin waraantoolee yeroo deemsa ejjatoo baaxxee ni agarsiisa."
+msgid "' Left-align \"SBX\" in a 40-character string"
+msgstr "REM Left-align \"SBX\" in a 40-character string"
-#: 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>Call waliirra</emph> window to the right provides information about the call stack of SUBS and FUNCTIONS when a program runs."
+msgid "RTrim Function [Runtime]"
+msgstr "Faankishinii RTrim [Runtime]"
-#: 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 IDE\">Bu`uura IDE</link>"
+msgid "<bookmark_value>RTrim function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii 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 "Foddaa Ilaali"
+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 Function [Runtime]\">Faankishinii RTrim [Runtime]</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\">Foddaa Ilaali</link>"
+msgid "Deletes the spaces at the end of a string expression."
+msgstr "Iddoo xumura himata diraarra jiru balleessa."
-#: 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 "Foddaa Ilaali gatii jijjiiramaawwanii yeroo sagantaa hojjoomuu akka ilaalu nuuf heeyyama. Jijjiiramaa ilaalcha sanduuqa barruu keessatti ni ibsa. Jijjiiramaa sanduuqa tarreetti dabaluu fi gatiiwwan isaanii agarsiisuuf <link href=\"text/sbasic/shared/02/11080000.xhp\">Ilaali Dandeessisi</link> cuuqaasi."
+msgid "See also: <link href=\"text/sbasic/shared/03120305.xhp\" name=\"LTrim Function\">LTrim Function</link>"
+msgstr "Dabalataan: <link href=\"text/sbasic/shared/03120305.xhp\" name=\"LTrim Function\">Faankishinii LTrim </link> ilaali"
-#: 01050100.xhp
+#: 03120309.xhp
msgctxt ""
-"01050100.xhp\n"
-"hd_id3145173\n"
+"03120309.xhp\n"
+"hd_id3154924\n"
"4\n"
"help.text"
-msgid "Watch"
-msgstr "Ilaali"
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 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\"> Maqaa jijjiiramaa gatiin isaanii torgaa`an saagi.</ahelp>"
+msgid "RTrim (Text As String)"
+msgstr "RTrim( Barruu Akka diraa )"
-#: 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 "Ilaalii Siiqsi"
+msgid "Return value:"
+msgstr "Gatii deebii:"
-#: 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\">Jijjiiramaa filatame tarree jijjiiramaawwan ilaalamanii keessaa siiqsi.</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\">Sajoo</alt></image>"
+msgid "String"
+msgstr "Diraa"
-#: 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 "Ilaalii Siiqsi"
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 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 "Gulaali gatii jijjiiramaa ilaalame"
+msgid "<emph>Text: </emph>Any string expression."
+msgstr "<emph>Text:</emph> Himata Diraa kamiyyuu"
-#: 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\">Tarree jijjiiramawwan ilaalamanii agarsiisi. Afuurfannoo gabaaba wajjin gidduu galfata gatii gulaalaa isaatti si`a lama cuuqaasi.</ahelp> Gatiin haaraan sagaantaaf akka gatii jijjiiramaatti fudhatama."
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 03020301.xhp
+#: 03120310.xhp
msgctxt ""
-"03020301.xhp\n"
+"03120310.xhp\n"
"tit\n"
"help.text"
-msgid "Eof Function [Runtime]"
-msgstr "Faankishinii Eof [Runtime]"
+msgid "UCase Function [Runtime]"
+msgstr "Faankishinii UCase [Runtime]"
-#: 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>Faankishinii Eof </bookmark_value>"
+msgid "<bookmark_value>UCase function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii 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 Function [Runtime]\">Faankishinii Eof [Runtime]</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 Function [Runtime]\">Faankishinii UCase [Runtime]</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 "Yoo qareen faayilii dhuma faayilichaa irra gahe murteessi."
+msgid "Converts lowercase characters in a string to uppercase."
+msgstr "Qubee xixiqqaa diraa keesaa gara qubee gurguddaatti jijjiira."
-#: 03020301.xhp
+#: 03120310.xhp
msgctxt ""
-"03020301.xhp\n"
-"hd_id3149119\n"
+"03120310.xhp\n"
+"par_id3150771\n"
"3\n"
"help.text"
-msgid "Syntax:"
-msgstr "Caasima:"
+msgid "See also: <link href=\"text/sbasic/shared/03120302.xhp\" name=\"LCase Function\">LCase Function</link>"
+msgstr "Dabalataan: <link href=\"text/sbasic/shared/03120302.xhp\" name=\"LCase Function\">Faankishinii LCase</link> ilaali"
-#: 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>Caasimaa</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 "Gatii deebii:"
+msgid "UCase (Text As String)"
+msgstr "UCase (Barruu akka diraatti)"
-#: 03020301.xhp
+#: 03120310.xhp
msgctxt ""
-"03020301.xhp\n"
-"par_id3156027\n"
+"03120310.xhp\n"
+"par_id3159414\n"
"6\n"
"help.text"
-msgid "Bool"
-msgstr "Buulii"
+msgid "<emph>Return value</emph>:"
+msgstr "<emph>Gatii deebii</emph>:"
-#: 03020301.xhp
+#: 03120310.xhp
msgctxt ""
-"03020301.xhp\n"
-"hd_id3152924\n"
+"03120310.xhp\n"
+"par_id3146795\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Ulaagaalee:"
+msgid "String"
+msgstr "Diraa"
-#: 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> Himannoo itergaa kamiyyuu kan baay'ina faayilii banamee qoratu."
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 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 "Gara naqa darbettii yommuu dhuftu dhuma faayilii irratti dogogora hanbisuuf EOF fayyadami. Yoo naqa ykn hima argannaa fayilii irra dubbisuuf fayyadamtu faayiliin qaree baay'ina lakkofsa baayitii dubbifameen ola'ana.Yoo dhumni faayilii dhaqabame,EOF gatii \"Dhugaa\"(-1) deebisa."
+msgid "<emph>Text:</emph> Any string expression that you want to convert."
+msgstr "<emph>Barruu:</emph> Himata diraa kamiyyuu kan akka jijjiiramu barbaaddu dha."
-#: 03020301.xhp
+#: 03120310.xhp
msgctxt ""
-"03020301.xhp\n"
-"hd_id3154046\n"
+"03120310.xhp\n"
+"hd_id3154125\n"
"10\n"
"help.text"
msgid "Example:"
msgstr "Fakkeenya:"
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3153360\n"
-"19\n"
-"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr "Print #iNumber, \"First line of text\""
-
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3148797\n"
-"20\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr "Print #iNumber, \"Another line of text\""
-
-#: 03120000.xhp
-msgctxt ""
-"03120000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Strings"
-msgstr "Diraawwan"
-
-#: 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=\"Strings\">Diraawwan</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 "Faankishinoonni fi himoonni armaan gadii diraawwan gataa'essee deebisa."
+msgid "Print LCase(sVar) ' returns \"las vegas\""
+msgstr "Print LCase(sVar) REM returns \"las vegas\""
-#: 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 "Barruulee sagantaalee $[officename] Basic keessaa gulaaluuf, diraawwanitti fayyadamuu ni dandeessa."
+msgid "Print UCase(sVar) ' returns \"LAS VEGAS\""
+msgstr "Print UCase(sVar) REM returns \"LAS VEGAS\""
-#: 03060400.xhp
+#: 03120311.xhp
msgctxt ""
-"03060400.xhp\n"
+"03120311.xhp\n"
"tit\n"
"help.text"
-msgid "Not-Operator [Runtime]"
-msgstr "Not-Operator [Runtime]"
+msgid "Trim Function [Runtime]"
+msgstr "Faankishinii Trim [Runtime]"
-#: 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>ogeejjii Not (yaayaa)</bookmark_value>"
+msgid "<bookmark_value>Trim function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii 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-Operator [Runtime]\">Not-Operator [Runtime]</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 Function [Runtime]\">Faankishinii Trim [Runtime]</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 "gati laklame gargalchuun himannoo faallessuu"
+msgid "Removes all leading and trailing spaces from a string expression."
+msgstr "Iddoowwan duraa fi boodaa, himata diraarraa haqa."
-#: 03060400.xhp
+#: 03120311.xhp
msgctxt ""
-"03060400.xhp\n"
-"hd_id3149457\n"
+"03120311.xhp\n"
+"hd_id3159157\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasimaa"
+msgstr "caasimaa:"
-#: 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( Barruu Akka diraa )"
-#: 03060400.xhp
+#: 03120311.xhp
msgctxt ""
-"03060400.xhp\n"
-"hd_id3151211\n"
+"03120311.xhp\n"
+"hd_id3155388\n"
"5\n"
"help.text"
-msgid "Parameters:"
-msgstr "Ulaagaalee:"
+msgid "Return value:"
+msgstr "Gatii deebii:"
-#: 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>Bu'aa:</emph> lakkofsa jijjiramaa kamu bu'aa faallessuu qaba."
+msgid "String"
+msgstr "Diraa"
-#: 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>Himannoo:</emph> Himannoo kamuu kan faallessuu barbaadde."
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 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 "Yoo himannoon Buuliyaanii faalla'e, gatiin Dhugaa gara Sobaatti jijjirama, fi gatiin Sobaa gara Dhugaatti jijjirama."
-
-#: 03060400.xhp
-msgctxt ""
-"03060400.xhp\n"
-"par_id3145785\n"
-"9\n"
-"help.text"
-msgid "In a bitwise negation each individual bit is inverted."
-msgstr "faallessuu laklameewwanii keessatti tokkon tokko laklame ni garagala."
+msgid "<emph>Text:</emph> Any string expression."
+msgstr "<emph>Text:</emph> Himata Diraa kamiyyuu"
-#: 03060400.xhp
+#: 03120311.xhp
msgctxt ""
-"03060400.xhp\n"
-"hd_id3153093\n"
+"03120311.xhp\n"
+"hd_id3148663\n"
"10\n"
"help.text"
msgid "Example:"
msgstr "Fakkeenya:"
-#: 03060400.xhp
-#, fuzzy
+#: 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 REM Returns -11"
+msgid "ConvertToURL Function [Runtime]"
+msgstr "ConvertToURL Function [Runtime]"
-#: 03060400.xhp
-#, fuzzy
+#: 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) REM Returns -1"
+msgid "<bookmark_value>ConvertToURL function</bookmark_value>"
+msgstr "<bookmark_value>ConvertToURL function</bookmark_value>"
-#: 03060400.xhp
-#, fuzzy
+#: 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) REM Returns -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 Function [Runtime]\">ConvertToURL Function [Runtime]</link>"
-#: 03060400.xhp
-#, fuzzy
+#: 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) REM Returns 0"
+msgid "Converts a system file name to a file URL."
+msgstr "Maqaa faayilii sirna gara faayilii URL itti jijjiira."
-#: 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 "Hima Sub [Runtime]"
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 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>Hima 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 Statement [Runtime]\">Hima Sub [Runtime]</link>"
+msgid "Return value:"
+msgstr "Gatii deebii:"
-#: 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 "sagantaa xiqqaa qindeessi."
+msgid "String"
+msgstr "Diraa"
-#: 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 "Caasimaa"
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 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 "garee himaa"
+msgid "<emph>Filename:</emph> A file name as string."
+msgstr "<emph>Maqaafaayilii:</emph> Maqaa faayilii akka diraa."
-#: 03090409.xhp
+#: 03120312.xhp
msgctxt ""
-"03090409.xhp\n"
-"hd_id3153525\n"
+"03120312.xhp\n"
+"hd_id3153361\n"
"9\n"
"help.text"
-msgid "Parameters:"
-msgstr "Ulaagaalee:"
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 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>Maqaa:</emph> Maqaa sagantaa xiqqaa."
+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>Ulaagaalee gara sagantaa xiqqaatti dabarsuu barbaadde."
+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>Gosa:</emph> Jefuraa gos-ibsituu."
-
-#: 03090409.xhp
-msgctxt ""
-"03090409.xhp\n"
-"hd_id3153770\n"
-"16\n"
-"help.text"
-msgid "Example:"
-msgstr "Fakkeeny:"
-
-#: 03090409.xhp
-#, fuzzy
-msgctxt ""
-"03090409.xhp\n"
-"par_idN1063F\n"
-"help.text"
-msgid "' some statements"
-msgstr "REM some statements"
-
-#: 01020000.xhp
-msgctxt ""
-"01020000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+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=\"Syntax\">Caasima</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 "Kutaan kun maalimoota bu`uura caasima bu`uura $[officename] ibsa. Ibsa gadifageenyaaf qajeelcha bu`uura $[officename] addaan ba`ee jiru dubbisuu ni dandeessu."
+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 "Hima Exit [Runtime]"
+msgid "ConvertFromURL Function [Runtime]"
+msgstr "ConvertFromURL Function [Runtime]"
-#: 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>Hima Exit</bookmark_value>"
+msgid "<bookmark_value>ConvertFromURL function</bookmark_value>"
+msgstr "<bookmark_value>ConvertFromURL function</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 Statement [Runtime]\">Hima Exit [Runtime]</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 Function [Runtime]\">ConvertFromURL Function [Runtime]</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 "Bayiitii faankishiinii,ykn sagantaa xiqqaa ,<emph>Do...Loop</emph>, <emph>For...Next</emph>"
+msgid "Converts a file URL to a system file name."
+msgstr "Faayilii URL gara maqaa faayilii sirnatti jijjiiri"
-#: 03090412.xhp
+#: 03120313.xhp
msgctxt ""
-"03090412.xhp\n"
-"hd_id3149763\n"
+"03120313.xhp\n"
+"hd_id3143267\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasimaa:"
+msgstr "caasimaa:"
-#: 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 "Ulaagaalee ilaali"
+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 "Ulaagaalee:"
+msgid "Return value:"
+msgstr "Gatii deebii:"
-#: 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 "Diraa"
-#: 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 "Marsaa keessaa ba'uuf, hima <emph>Do...Loop</emph> gitaa'aa qofan danda'ama. marsaa keessaa ba'uuf. Sagantaan raawwii hima kan hima marsaa duuka bu'u wajjin itti fufa. Yoo himoonni <emph>Do...Loop</emph> wal keessa galan, too'annaan marsaa sadarkaa olaanaa itti aanutti darba."
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 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>Maqaafaayilii:</emph> Maqaa faayilii akka diraa."
-#: 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 "Marsaa keessaa ba'uuf marsaa <emph>For...Next</emph> gitaa'aa qofaan danda'ama. Sagantaan raawwii hima jalqabaa kan hima <emph>Next</emph> duuka bu'u wajjin wajjiin itti fufa. Himoota walkeessa galan keessatti, too'annaan marsaa sadarkaa olaanaa itti aanutti darba."
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 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 "Adeemsa <emph>Faankishinii</emph> yeruma san baasi. Sagantaan raawwii hima kan waamichaa <emph>Faankishinii</emph> duuka bu'u wajjiin itti fufa."
+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 "Sagantaa xiqqaa yeruma san baasi.Sagantaan raawwii hima waamichaa <emph>Sub</emph> duuka bu'u wajjiin itti fufa."
+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 "Himni Exit caasaa xumuraa hin qindeessuu, fi dirqama hima End wajjin dhiphachuu hin qabdu."
-
-#: 03090412.xhp
-msgctxt ""
-"03090412.xhp\n"
-"hd_id3147348\n"
-"15\n"
-"help.text"
-msgid "Example:"
-msgstr "Fakkeenya:"
-
-#: 03090412.xhp
-#, fuzzy
-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 REM Fill array with test data"
-
-#: 03090412.xhp
-#, fuzzy
-msgctxt ""
-"03090412.xhp\n"
-"par_id3153764\n"
-"31\n"
-"help.text"
-msgid "' LinSearch searches a TextArray:sList() for a TextEntry:"
-msgstr "REM LinSearch searches a TextArray:sList() for a TextEntry:"
-
-#: 03090412.xhp
-#, fuzzy
-msgctxt ""
-"03090412.xhp\n"
-"par_id3148995\n"
-"32\n"
-"help.text"
-msgid "' Returns the index of the entry or 0 (Null)"
-msgstr "REM Returns the index of the entry or 0 ( Null)"
-
-#: 03090412.xhp
-#, fuzzy
-msgctxt ""
-"03090412.xhp\n"
-"par_id3149567\n"
-"35\n"
-"help.text"
-msgid "Exit For ' sItem found"
-msgstr "Exit for REM sItem found"
+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 "Hima olkaawwii [Runtime]"
+msgid "Split Function [Runtime]"
+msgstr "Faankishinii Addabaa [Runtime]"
-#: 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>Hima olkaawwii </bookmark_value>"
+msgid "<bookmark_value>Split function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii Addabaa</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 Statement [Runtime]\">Hima olkaawwii [Runtime]</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 Function [Runtime]\">Faankishinii Addabaa [Runtime]</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 "Kuusaa faayilii firaa irratti barreessii ykn tartiiba baayitii fayilii lamee irratti."
+msgid "Returns an array of substrings from a string expression."
+msgstr "Tarreeffama qurxa diraawwanii, himata diraarraa deebisa."
-#: 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 "Hima: <link href=\"text/sbasic/shared/03020201.xhp\" name=\"Get\"><item type=\"literal\">argannoo</item></link> kan ilaali."
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 03020204.xhp
+#: 03120314.xhp
msgctxt ""
-"03020204.xhp\n"
-"hd_id3125863\n"
+"03120314.xhp\n"
+"par_id3153824\n"
"4\n"
"help.text"
-msgid "Syntax:"
-msgstr "Caasima:"
+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 "Gatii deebii:"
-#: 03020204.xhp
+#: 03120314.xhp
msgctxt ""
-"03020204.xhp\n"
-"hd_id3153190\n"
+"03120314.xhp\n"
+"par_id3154285\n"
"6\n"
"help.text"
-msgid "Parameters:"
-msgstr "Ulaagaalee:"
+msgid "String"
+msgstr "Diraa"
-#: 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> Himannoo itergaa kamiyyuu kan faayilii itti bareessuu barbaadde hiikan."
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 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>Qabannoo: </emph> Faayiloota fira ta'aniif(gahiinsa darbee darbee),baay'ina kuusaa ati barreesuu barbaaddee."
+msgid "<emph>Text:</emph> Any string expression."
+msgstr "<emph>Text:</emph> Himata Diraa kamiyyuu"
-#: 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 "Faayilii lameedhaaf(gahiinsa lamee), qubannoo baayitii faayilii keesssatti bakka barreesuu irraa eegaltu."
-
-#: 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>Gegeedaramaa:</emph> Maqaa gegeedaramaa kan ati faayiliitti barreessuu barbaaddu."
-
-#: 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 "Yaadannoo faayilii firaa: Qabiyyeen faayilii kanaa yoo dheerina kuusaa ibsameen wal gituu baate <emph>Len</emph>Hima haraggoo <emph> Banaa</emph> iddoon kuusaan haaraan itti barraahe gidduu fi kuusaa itti aanee faayiliirra deetaa jiru faayilii ati irratti barressitu waliin jiifata."
+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 (optional):</emph> Diraa dheerinni isaa arfiilee tokkoo fi isaa ol ta'ee , barruu daangessuuf fayyada."
-#: 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 "Yaadannoo faayilii lamee: Qabiyyeen gegeedaramaa qubannoo ibsame irratti katabama kana malees faayiliin qareen baayitii dhumaatiin booda sagii kallattiiti. Kuusaa gidduu iddoon hafuu hin qabu."
+msgid "<emph>number (optional):</emph> The number of substrings that you want to return."
+msgstr "<emph>number (optional):</emph> Lakkoofsa qurxa diraawwanii akka deebi'u barbaaddu deebisa."
-#: 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 "Fakkeenya:"
-#: 03020204.xhp
-#, fuzzy
-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 REM Must be a variant type"
-
-#: 03020204.xhp
-#, fuzzy
-msgctxt ""
-"03020204.xhp\n"
-"par_id3156278\n"
-"22\n"
-"help.text"
-msgid "Seek #iNumber,1 ' Position To start writing"
-msgstr "Seek #iNumber,1 REM Position to start writing"
-
-#: 03020204.xhp
-#, fuzzy
-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,, \"Kun sarara barruu tokkoffaati\" REM Sarara barruudhaan guuta."
-
-#: 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,, \"Kun sarara barruu lammffaati\""
-
-#: 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,, \"Kun sarara barruu sadaffaati\""
-
-#: 03020204.xhp
-msgctxt ""
-"03020204.xhp\n"
-"par_id3150940\n"
-"34\n"
-"help.text"
-msgid "Put #iNumber,,\"This is new text\""
-msgstr "Put #iNumber,,\"Kun barruu haaradha\""
-
-#: 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,\"This is the text in record 20\""
-
-#: 03020415.xhp
+#: 03120315.xhp
msgctxt ""
-"03020415.xhp\n"
+"03120315.xhp\n"
"tit\n"
"help.text"
-msgid "FileExists Function [Runtime]"
-msgstr "Faankishinii FileExists [Runtime]"
+msgid "Join Function [Runtime]"
+msgstr "Join Function [Runtime]"
-#: 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>Faankishinii FileExists</bookmark_value>"
+msgid "<bookmark_value>Join function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii walqabataa </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 Function [Runtime]\"> Faankishinii FileExists [Runtime]</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 Function [Runtime]\">Faankishinii Walqabataa [Runtime]</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 "Yoo faayilii ykn baafni maqaa gidduugaleessa agargoo irrati argame murteesi."
+msgid "Returns a string from a number of substrings in a string array."
+msgstr "Diraa qurxa diraawwanii baay'ee, tarree diraa keessa jiran deebisa."
-#: 03020415.xhp
+#: 03120315.xhp
msgctxt ""
-"03020415.xhp\n"
-"hd_id3150447\n"
+"03120315.xhp\n"
+"hd_id3159414\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasima:"
+msgstr "caasimaa:"
-#: 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 "Gatii deebiisi."
+msgstr "Gatii deebii:"
-#: 03020415.xhp
+#: 03120315.xhp
msgctxt ""
-"03020415.xhp\n"
-"par_id3150769\n"
+"03120315.xhp\n"
+"par_id3150359\n"
"6\n"
"help.text"
-msgid "Bool"
-msgstr "Dhugaa ykn soba kan ta'u"
+msgid "String"
+msgstr "Diraa"
-#: 03020415.xhp
+#: 03120315.xhp
msgctxt ""
-"03020415.xhp\n"
-"hd_id3153770\n"
+"03120315.xhp\n"
+"hd_id3148798\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Ulaagaalee:"
-#: 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 "FileName | DirectoryName: Himamsa diraa kammiiyyuu kan faayilii ifa hin taane of keessa qabu. <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">sirnasxaa URL </link> kanas fayyadamuu ni dandeessa."
-
-#: 03020415.xhp
-msgctxt ""
-"03020415.xhp\n"
-"hd_id3149664\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr "Fakkeenya:"
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"tit\n"
-"help.text"
-msgid "Organizing Libraries and Modules"
-msgstr "Qindeessuu Manbarroo fi Mojuulii"
-
-#: 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>manbarroo;qindeessuu</bookmark_value><bookmark_value>mojuulii;qindeessuu</bookmark_value><bookmark_value>garagalchu;mojuulii</bookmark_value><bookmark_value>dabaluu manbarroo</bookmark_value><bookmark_value>haquu;manbarroo/mojuulii/qaaqa</bookmark_value><bookmark_value>qaaqa;qindeessuu</bookmark_value><bookmark_value>siiqsi;mojuulii</bookmark_value><bookmark_value>qindeessuu;mojuulii/manbarroo/qaaqa</bookmark_value><bookmark_value>maqaa mojuulii fi qaaqa jijjiiruu</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\">Qindeessuu Manbarroo fi Mojuulii</link></variable>"
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"hd_id3150868\n"
-"4\n"
-"help.text"
-msgid "Organizing Libraries"
-msgstr "Manbarroo Qindeessuu"
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"hd_id3125864\n"
-"5\n"
-"help.text"
-msgid "Creating a New Library"
-msgstr "Manbarroo haraa uumuu"
-
-#: 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 "Qaaqa <emph>Qindeessaa Maacroo</emph> banuudhaaf <emph>Meeshaalee - Maakroota - Maakroota Qindeessi - Bu`uura %PRODUCTNAME</emph> fili itti aansuudhaan sajoo <emph>Qindeessaa</emph> yookiin <emph>Mojuulii Fili</emph> Bu`uura IDE keessaa cuuqaasi."
-
-#: 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 "Gabatee <emph>Manbarroo</emph> cuuqaasi."
+msgid "<emph>Text:</emph> A string array."
+msgstr "<emph>Barruu:</emph> Waraantoo diraa."
-#: 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 "Tarree <emph>Iddoo</emph> keessaatti manbarroo iddootti walqabsiisuu barbaadan fila. Maacroota %PRODUCTNAME fi gulaalee osoo filtan, manbarroon fayyadama $[officename] keessatti argamuu fi galmeewwan maraaf ni jireessa. Osoo galmee filttan manbarroon galmee kanatti miilta`a akasumas iddoo sanarraa qofa jireessa."
+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 (optional):</emph> Arfii diraa kan qurxa diraawwanii, diraa keessatti argaman addaan baasuuf fayyadu dha. Durtii daangessuun iddoo arfiiti. Yoo daangessaan diraa dheerinni isaa duwwaa \"\" ta'e, qurxaawwan diraa kan walqabatan fo'aa malee dha."
-#: 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 "Manbarroo Haaraa uumuuf <emph>Haaraa</emph> cuuqaasuudhan maqaa saagi."
-
-#: 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 "Qaaqa <emph>Qindeessaa Maacroo</emph> banuudhaaf <emph>Meeshaalee - Maakroota - Maakroota Qindeessi - Bu`uura %PRODUCTNAME</emph> fili itti aansuudhaan sajoo <emph>Qindeessaa</emph> yookiin <emph>Mojuulii Fili</emph> Bu`uura IDE keessaa cuuqaasi."
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"par_id3146972\n"
-"50\n"
-"help.text"
-msgid "Click the <emph>Libraries</emph> tab."
-msgstr "Gabatee <emph>Manbarroo</emph> cuuqaasi."
-
-#: 01030400.xhp
-#, fuzzy
-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 "Tarree <emph>Iddoo</emph> keessaatti manbarroo iddootti miiltessuu barbaadan fila. Maacroota %PRODUCTNAME fi gulaalee osoo filtan, manbarroon fayyadama $[officename] keessatti argamuu fi galmeewwan maraaf ni jireessa. Osoo galmee filttan manbarroon galmee kanatti miilta`a akasumas iddoo sanarraa qofa jireessa."
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 01030400.xhp
-#, fuzzy
+#: 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 "Manbarroo alaantoo miiltessuuf <emph>Miiltessi</emph> cuuqaasuudhan fili."
+msgid "Editing String Length"
+msgstr "Dheerina Diraa Gulaala"
-#: 01030400.xhp
-#, fuzzy
+#: 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 "Qaaqa <emph>Manbarroo miiltessii</emph> keessatti manbarroo miiltessaman mara fili. Qaaqan manbarroota faayilii filame keessatti qabaman maraa agarsiisa.."
+msgid "<link href=\"text/sbasic/shared/03120400.xhp\" name=\"Editing String Length\">Editing String Length</link>"
+msgstr "<link href=\"text/sbasic/shared/03120400.xhp\" name=\"Editing String Length\">Dheerina Diraa Gulaala</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 "Manbarroo akka ilaalchaati saaguu yoo barbaadan sanduuqa <emph>akka ilaalchaati Saagi (read-only)</emph> qofa mirkaneessi. Manbarroon dubbisuu-qofa fankishinii guutuu dha garuu Bu`uura IDE fooyyessuu hin danda`u."
+msgid "The following functions determine string lengths and compare strings."
+msgstr "Faankishinoonni armaan gadii dheerina diraawwanii fi walmadaallii diraawwanii murteessu."
-#: 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 "Sanduuqa <emph>manbarroo jiru bakka buusi</emph> mirkaneessi yoo manbarroon maqaatiin walfakaatu akka dabalamee barreefamu barbaade."
+msgid "InStr Function [Runtime]"
+msgstr "Faankishinii InStr [Runtime]"
-#: 01030400.xhp
-#, fuzzy
+#: 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 "Manbarroo miiltessuuf <emph>TOLE</emph> cuuqaasi."
+msgid "<bookmark_value>InStr function</bookmark_value>"
+msgstr "<bookmark_value>faankishinii 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 Function [Runtime]\">Faankishinii InStr [Runtime]</link>"
-#: 01030400.xhp
-#, fuzzy
+#: 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 "Qaaqa <emph>Qindeessaa Maacroo</emph> banuudhaaf <emph>Meeshaalee - Maakroota - Maakroota Qindeessi - Bu`uura %PRODUCTNAME</emph> fili itti aansuudhaan sajoo <emph>Qindeessaa</emph> yookiin <emph>Mojuulii Fili</emph> Bu`uura IDE keessaa cuuqaasi."
+msgid "Returns the position of a string within another string."
+msgstr "Bakka diraa, diraa biroo keessatti argamuu deebisa."
-#: 01030400.xhp
-#, fuzzy
+#: 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 "Gabatee <emph>Manbarroo</emph> cuuqaasi."
+msgid "The Instr function returns the position at which the match was found. If the string was not found, the function returns 0."
+msgstr "Faankishiniin Instr bakka walfakkiin itti argame deebisa. Yoo diraan hin argamne, faankishinichi 0 deebisa."
-#: 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 ""
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 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 ""
+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 "Gatii deebii:"
-#: 01030400.xhp
-#, fuzzy
+#: 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>Siiqsi</emph> cuuqaasi."
+msgid "Integer"
+msgstr "intergaa"
-#: 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 "Ulaagaalee:"
-#: 01030400.xhp
-#, fuzzy
+#: 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 "Manbarroo miiltessuuf <emph>TOLE</emph> cuuqaasi."
+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> Himata lakkoofsaa kan jalqaba barbaachuu qurxa diraa adda baafame, dira tokko keessaa agarsiisa. yoo ulaagaa kana dhiifte,barbaachi kan jalqabu arfii jalqabaa diraa irraati. 65535 gatii guddaa eeyyamamu dha."
-#: 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 "Manbarroo haquu"
+msgid "<emph>Text1:</emph> The string expression that you want to search."
+msgstr "<emph>Text1:</emph> Himata diraa kan ati barbaaduuf taatu dha."
-#: 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 "Qaaqa <emph>Qindeessaa Maacroo</emph> banuudhaaf <emph>Meeshaalee - Maakroota - Maakroota Qindeessi - Bu`uura %PRODUCTNAME</emph> fili itti aansuudhaan sajoo <emph>Qindeessaa</emph> yookiin <emph>Mojuulii Fili</emph> Bu`uura IDE keessaa cuuqaasi."
+msgid "<emph>Text2:</emph> The string expression that you want to search for."
+msgstr "<emph>Text2:</emph> Himata diraa kan ati barbaaduuf taatu dha."
-#: 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 "Gabatee <emph>Manbarroo</emph> cuuqaasi."
+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>Walmadaalli:</emph> Dirqaalee himata lakkoofsaa kanneen akaakuu wal madaallii ibsan walmadaalchisa. Gatiin ulaagaa kanaa 0 yookiin 1 ta'uu danda'a. Gatiin durtii 1 walmadaallii barruu kan gosa qubeerratti hin hundoofne ibsa. Gatiin 0'n walmadaallii lamee kan gosa qubeerratti hundaa'u ibsa."
-#: 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 "Tarree keessaa manbarroo haqamu fili."
+msgid "To avoid a run-time error, do not set the Compare parameter if the first return parameter is omitted."
+msgstr "Dogoggora sa'aa darbee dhabamsiisuuf; yoo ulaagaan deebii inni jalqabaa hin jiraanne, ulaagaa walmadaallii hin qindeessin."
-#: 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>Haqi</emph> cuuqaasi."
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 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 "Manbarroo akka jiruun haquun mojuulii jiranii fi adeemsa fi fankishinii walqixaa hunda haqa."
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"par_id3148868\n"
-"59\n"
-"help.text"
-msgid "You cannot delete the default library named \"Standard\"."
-msgstr "Manbarroo durtii \"Standard\" jedhamu haquun hin danda`amu."
-
-#: 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 "Manbarroo akka ilaalchaatti saagame osoo haqtan manbarroo mataa isaa osoo hin taane ilaalcha qofaatu haqama."
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"hd_id3147070\n"
-"21\n"
-"help.text"
-msgid "Organizing Modules and Dialogs"
-msgstr "Qindeessuu mojuulii fi qaaqalee"
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"hd_id3155265\n"
-"61\n"
-"help.text"
-msgid "Creating a New Module or Dialog"
-msgstr "Mojuulii haaraa yookiin Qaaqa uumuu"
-
-#: 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 "Qaaqa <emph>Qindeessaa Maacroo</emph> banuudhaaf <emph>Meeshaalee - Maakroota - Maakroota Qindeessi - Bu`uura %PRODUCTNAME</emph> fili itti aansuudhaan sajoo <emph>Qindeessaa</emph> yookiin <emph>Mojuulii Fili</emph> Bu`uura IDE keessaa cuuqaasi."
-
-#: 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 "Gabatee <emph>Mojuulii</emph> yokiin <emph>Qaaqa</emph> cuuqaasi."
-
-#: 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 "Manbarroo iddoo mojuuliin saagamee filuudhaan <emph>Haaraa</emph> cuuqaasi."
-
-#: 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 "Mojuuliif yookiin qaaqaf maqaa saaguudhaan <emph>TOLE</emph> cuuqaasi."
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"hd_id3152872\n"
-"25\n"
-"help.text"
-msgid "Renaming a Module or Dialog"
-msgstr "Maqaa Mojuulii yookiin Qaaqa jijjiiruu"
-
-#: 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 "Qaaqa <emph>Qindeessaa Maacroo</emph> banuudhaaf <emph>Meeshaalee - Maakroota - Maakroota Qindeessi - Bu`uura %PRODUCTNAME</emph> fili itti aansuudhaan sajoo <emph>Qindeessaa</emph> yookiin <emph>Mojuulii Fili</emph> Bu`uura IDE keessaa cuuqaasi."
-
-#: 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 "Maqaan akka si`a lama jijjiiramu,cuuqaasota gidduu afuurfannoo wajjin mojuuliin cuuqaasi. Maqaa haaraa saagi."
-
-#: 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 "Bu`uura IDE keessatti, maqaa mojuulii yookiin qaaqa jala gabatee argii irratti mirga cuuqaasi, <emph>Maqaa jijjiiri</emph> fila itti aansuudhaan maqaa haaraan barreessi."
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"par_id3155526\n"
-"28\n"
-"help.text"
-msgid "Press Enter to confirm your changes."
-msgstr "Jijjiirama keessan dhugoomsuuf Saagi dhiiba."
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"hd_id3146963\n"
-"29\n"
-"help.text"
-msgid "Deleting a Module or Dialog"
-msgstr "Mojuulii yookiin Qaaqa Haquu"
-
-#: 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 "Qaaqa <emph>Qindeessaa Maacroo</emph> banuudhaaf <emph>Meeshaalee - Maakroota - Maakroota Qindeessi - Bu`uura %PRODUCTNAME</emph> fili itti aansuudhaan sajoo <emph>Qindeessaa</emph> yookiin <emph>Mojuulii Fili</emph> Bu`uura IDE keessaa cuuqaasi."
-
-#: 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 "Gabatee <emph>Mojuulii</emph> yokiin <emph>Qaaqa</emph> cuuqaasi."
-
-#: 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 "Mojuulii yookiin qaaqa tarree keessaa haqamu fila. Cita galfata mullisuuf yoo barbaachise, galfata lama cuqaasi."
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"par_id3147248\n"
-"32\n"
-"help.text"
-msgid "Click <emph>Delete</emph>."
-msgstr "<emph>Haqi</emph> cuuqaasi."
-
-#: 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 "Mojuulii akka jiruun haquun adeemsa fi fankishinii jiran hunda mojuulii keessaa haqa."
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"hd_id3151392\n"
-"33\n"
-"help.text"
-msgid "Organizing Projects among Documents or Templates"
-msgstr "Projektii Galmee yookiin Qajoojii gidduutti qindeessuu"
-
-#: 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 "Mojuulii galmee, qajoojii fi fayyadama gidduu ssiiqsi yookiin galagalchu"
-
-#: 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 "Wanta barbadan gidduutti mojuulii yookiin qaaqa siiqsuuf yookiin galagalchuuf galmee yookiin qajoojii mara bani."
-
-#: 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 "Qaaqa <emph>Qindeessaa Maacroo</emph> banuudhaaf <emph>Meeshaalee - Maakroota - Maakroota Qindeessi - Bu`uura %PRODUCTNAME</emph> fili itti aansuudhaan sajoo <emph>Qindeessaa</emph> yookiin <emph>Mojuulii Fili</emph> Bu`uura IDE keessaa cuuqaasi."
+msgid "sInput = \"Office\""
+msgstr "sInput = \"Office\""
-#: 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 "Mojuulii yookiin qaaqa gara galmee biraatti siiqsuuf, tarree keessaa wanta walqixeee cuuqaasi itti aansuun gara iddoo barbaadametti harkisi. sarari dalgee iddoo galtee wantaa ammee garsiisa garuu ni harkisa. Furtuu <switchinline select=\"sys\"><caseinline select=\"MAC\">Ajaja</caseinline><defaultinline>Ctrl</defaultinline></switchinline> iddooquun garuu wantaa galagalchuuf siiqsuurrayyuu ni harkisa."
+msgid "iPos = Instr(sInput,\"c\")"
+msgstr "iPos = Instr(sInput,\"c\")"
-#: 03020403.xhp
+#: 03120402.xhp
msgctxt ""
-"03020403.xhp\n"
+"03120402.xhp\n"
"tit\n"
"help.text"
-msgid "CurDir Function [Runtime]"
-msgstr "Faankishinii CurDir [Runtime]"
+msgid "Len Function [Runtime]"
+msgstr "Faankishinii Len [Runtime]"
-#: 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>Faankishinii CurDir </bookmark_value>"
+msgid "<bookmark_value>Len function</bookmark_value>"
+msgstr "<bookmark_value>faankishinnii 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\"> Faankishinii CurDir [Runtime]</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 Function [Runtime]\">Faankishinii Len [Runtime]</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 "Bakkabu'oota diraa kan xurree ammee oofuu ibsame deebisi."
+msgid "Returns the number of characters in a string, or the number of bytes that are required to store a variable."
+msgstr "Lakkoofsa arfiiwwanii kanneen diraa tokko keessa jiranii , yookiin lakkoofsa baayitii kanneen jijjiiramaa kuusuuf barbaachisan deebisa."
-#: 03020403.xhp
+#: 03120402.xhp
msgctxt ""
-"03020403.xhp\n"
-"hd_id3149457\n"
+"03120402.xhp\n"
+"hd_id3159177\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasima:"
+msgstr "caasimaa:"
-#: 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 (Barruu akka diraatti)"
-#: 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 "Gatii deebisi:"
+msgstr "Gatii deebii:"
-#: 03020403.xhp
+#: 03120402.xhp
msgctxt ""
-"03020403.xhp\n"
-"par_id3156281\n"
+"03120402.xhp\n"
+"par_id3143270\n"
"6\n"
"help.text"
-msgid "String"
-msgstr "Diraaa"
+msgid "Long"
+msgstr "Dheeraa"
-#: 03020403.xhp
+#: 03120402.xhp
msgctxt ""
-"03020403.xhp\n"
-"hd_id3156423\n"
+"03120402.xhp\n"
+"hd_id3147531\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Ulaagaalee:"
-#: 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>Barruu:</emph> Himamsa kammiyyuu kan oofuu ibsu (Fakkeenyaaf, \"C\" hirama tokkoffaa kan oofuu jabaa duraatiif)."
+msgid "<emph>Text:</emph> Any string expression or a variable of another type."
+msgstr "<emph>Barruu:</emph>Himata diraa kamiyyuu yookiin akaakuu jijjiiramaa kan biraa ti."
-#: 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 "Yoo oofuun ibsamuu baatee ykn oofuun dheerina diraa duwwaa (\"\") ta'e, CurDir xurree oofaa ammaat deebisa. $[officename] Bu'uurrii dogogora gabaasa yoo caasimni ibsi oofuu sirrii ta'uu baatee, oofuun hin argamu ykn yoo oofuun qubootaa mul'ate erga qubeen mula'ate CONFIG keessatti hiikama. SYS oofuu dhumaa waliin ta'a."
-
-#: 03020403.xhp
-msgctxt ""
-"03020403.xhp\n"
-"par_id3150010\n"
-"10\n"
-"help.text"
-msgid "This function is not case-sensitive."
-msgstr "Faankishiniin kun qub-sukanaawaa miti."
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 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 "Fakkeenya:"
+msgid "MsgBox Len(sText) REM Returns 9"
+msgstr "MsgBox Len(sText) REM Returns 9"
-#: 03080202.xhp
+#: 03120403.xhp
msgctxt ""
-"03080202.xhp\n"
+"03120403.xhp\n"
"tit\n"
"help.text"
-msgid "Log Function [Runtime]"
-msgstr "Faankishinii Loogii[Runtime]"
+msgid "StrComp Function [Runtime]"
+msgstr "StrComp Faankishinii [Runtime]"
-#: 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>faankishinii Loogii</bookmark_value>"
+msgid "<bookmark_value>StrComp function</bookmark_value>"
+msgstr "<bookmark_value>StrComp faankishinii</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 Function [Runtime]\">Faankishinii Loogii [Runtime]</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 Function [Runtime]\">StrComp Faankishinii[Runtime]</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 "Logaarizimii uumamaa kan lakkoofsaa deebisaa."
+msgid "Compares two strings and returns an integer value that represents the result of the comparison."
+msgstr "Diraawwan lama waliin dorgomsiisuu fi gatii itergaa kan bu'aa wal dorgomsiisuu bakka bu'u deebisa."
-#: 03080202.xhp
+#: 03120403.xhp
msgctxt ""
-"03080202.xhp\n"
-"hd_id3159414\n"
+"03120403.xhp\n"
+"hd_id3153345\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasimaa:"
+msgstr "caasimaa:"
-#: 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 "Gatii deebii:"
-#: 03080202.xhp
+#: 03120403.xhp
msgctxt ""
-"03080202.xhp\n"
-"par_id3150791\n"
+"03120403.xhp\n"
+"par_id3156152\n"
"6\n"
"help.text"
-msgid "Double"
-msgstr "Dachaa"
+msgid "Integer"
+msgstr "intergaa"
-#: 03080202.xhp
+#: 03120403.xhp
msgctxt ""
-"03080202.xhp\n"
-"hd_id3151211\n"
+"03120403.xhp\n"
+"hd_id3150984\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Ulaagaalee:"
+msgid "Parameter:"
+msgstr "ulaagaa:"
-#: 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>Lakkofsa:</emph> Himannoon lakkoofsa kamuu logaarizimii uumamaa shallaguu barbaadde."
+msgid "<emph>Text1:</emph> Any string expression"
+msgstr "<emph>Text1:</emph> Himata Diraa kamiyyuu"
-#: 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 "Logaarizimiin uumamaa logaarizimii hundeen isaa e ta.e dha. Gatiin e dhaabbataadha tilmaaman 2.718282..."
+msgid "<emph>Text2:</emph> Any string expression"
+msgstr "<emph>Text2:</emph> Himata Diraa kamiyyuu"
-#: 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 "logaarizimii hundeen isaa kamuu kan (n)lakkoofsa kamuu kan (x) ta'eef shallaguuf logaarizimii uumamaa x logaarizimii umamaa n f akka armaan gadiitti hiruu dha:"
-
-#: 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 "Fakkeenya:"
-
-#: 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,\"Multiplication by logarithm function\""
-
-#: 03090103.xhp
-msgctxt ""
-"03090103.xhp\n"
-"tit\n"
-"help.text"
-msgid "IIf Statement [Runtime]"
-msgstr "Hima IIf [Runtime]"
+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> Ulaagaan dirqaalee kuni, tooftaa wal madaalli qindeessa. Yoo Compare = 1 ta'e, walmadaalliin diraa guddina qubeerratti hundaa'a. Yoo Compare = 0 ta'e, gargar baasuun qubeewwan gurguddaa fi xixiqqaa hin jiraatu."
-#: 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>Hima IIf </bookmark_value>"
+msgid "Return value"
+msgstr "Gatii deebii"
-#: 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 Statement [Runtime]\">Hima IIf [Runtime]</link>"
+msgid "If Text1 < Text2 the function returns -1"
+msgstr "Yoo Text1 < Text2 ta'e, faankishinichi -1 deebisa"
-#: 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 "Gatii Yaayaa himannoo madaalame irratti hundaa'itii, bu'aa faankishinii lamaan danda'amu keessa tokko deebisi."
+msgid "If Text1 = Text2 the function returns 0"
+msgstr "Yoo Text1 = Text2 ta'e, faankishinichi 0 deebisa"
-#: 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 "Caasimaa:"
+msgid "If Text1 > Text2 the function returns 1"
+msgstr "Yoo Text1 > Text2 ta'e, faankishinichi 1 deebisa."
-#: 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 "Fakkeenya:"
-#: 03090103.xhp
+#: 03130000.xhp
msgctxt ""
-"03090103.xhp\n"
-"hd_id3150541\n"
-"5\n"
+"03130000.xhp\n"
+"tit\n"
"help.text"
-msgid "Parameters:"
-msgstr "Ulaagaalee:"
+msgid "Other Commands"
+msgstr "Ajajawwan Biroo"
-#: 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>Himannoo:</emph> Himannoo kamuu kan madaaluu barbaadde.yoo himannoon <emph>Dhugaa</emph> madaalame ,faankishiniin bu'aa himannooDhugaa deebisa, yoo ta'u baate bu'aaa himannooSoba debisa."
+msgid "<link href=\"text/sbasic/shared/03130000.xhp\" name=\"Other Commands\">Other Commands</link>"
+msgstr "<link href=\"text/sbasic/shared/03130000.xhp\" name=\"Other Commands\">Ajajawwan Biroo</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>HimannooDhugaa, HimannooSoba:</emph> Himannoo kamuu,tokkoon isaa akka bu'aa faankishiniitti deebi'u, yaayaa madaalli irratti hundaa'a."
+msgid "This is a list of the functions and the statements that are not included in the other categories."
+msgstr "Kuni, tarreffama faankishinootaa fi himootaa kanneen akaakuu biraa keessatti hin hammatamnee ti."
-#: 03090410.xhp
+#: 03130100.xhp
msgctxt ""
-"03090410.xhp\n"
+"03130100.xhp\n"
"tit\n"
"help.text"
-msgid "Switch Function [Runtime]"
-msgstr "Faankishinii Jijjiirraa[Runtime]"
+msgid "Beep Statement [Runtime]"
+msgstr "Hima [Runtime] 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>Faankishinii Jijjiirraa</bookmark_value>"
+msgid "<bookmark_value>Beep statement</bookmark_value>"
+msgstr "<bookmark_value>Hima 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 Function [Runtime]\">Faankishinii Jijjiirraa[Runtime]</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 Statement [Runtime]\"> Hima [Runtime] 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 "Tarreeffama qajeelfamootaa ,himannoo gatiin duuka bu'ame of keessaa qabu madaali.Faankishiiniin jijjiirraa gatii himannoo faankishinii kanaan darbe waliin walitti dhufeenya qabu deebisa."
+msgid "Plays a tone through the computer's speaker. The tone is system-dependent and you cannot modify its volume or pitch."
+msgstr "Haasawaa kompiitaraatiin sagalee xaphachiisa. Sagaleen kunis sirna irratti kan hundaa'uu fi hamtaa sagalee kan siif jijjiiruu hin dandeenye dha."
-#: 03090410.xhp
+#: 03130100.xhp
msgctxt ""
-"03090410.xhp\n"
-"hd_id3154863\n"
+"03130100.xhp\n"
+"hd_id3153990\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasimaa:"
+msgstr "caasimaa:"
-#: 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 "Ulaagaalee:"
-
-#: 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 "Faankishiiniin <emph>Jijjiirraa</emph> himannoo bitaa gara mirgaa tti maddali, achiin gatii himannoo faankshiniif ramadame deebisa. Yoo himannoo fi gatiin akka cimdiitti kennamuu baate, dogongorri sa'aa darbee ni uumama."
-
-#: 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>Himannoo:</emph>Himannoo madaaluuf barbaadde."
-
-#: 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>Gatii:</emph> Yoo himannoon Dhugaa ta'e, gatii deebisuuf barbaadde."
-
-#: 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 "Fakkeenya armaan gadii keessatti faankshiniin <emph>Switch</emph> maqaa faankishiniitti darbeef korniyaa mijaa'aa ramada."
-
-#: 03090410.xhp
-msgctxt ""
-"03090410.xhp\n"
-"hd_id3159157\n"
-"10\n"
-"help.text"
msgid "Example:"
msgstr "Fakkeenya:"
-#: 03090410.xhp
-msgctxt ""
-"03090410.xhp\n"
-"par_id3149579\n"
-"13\n"
-"help.text"
-msgid "sGender = GetGenderIndex( \"John\" )"
-msgstr "sGender = GetGenderIndex( \"John\" )"
-
-#: 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 = \"Jane\", \"female\", sName = \"John\", \"male\")"
+msgid "Shell Function [Runtime]"
+msgstr "Faankishinii [Runtime] qolaa"
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"tit\n"
+"03130500.xhp\n"
+"bm_id3150040\n"
"help.text"
-msgid "QBColor Function [Runtime]"
-msgstr "Faankishinii [Runtime] QBColor"
+msgid "<bookmark_value>Shell function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii qolaa</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 Function [Runtime]\">Faankishinii [Runtime] 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 Function [Runtime]\">Faankishinii [Runtime] qolaa </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 "Lakkadda halluu <link href=\"text/sbasic/shared/03010305.xhp\" name=\"RGB\">RGB</link> kan akka gatii halluutti darbu tartiiba MS-DOS keessaa cirna saganteessuu irratti hundaa`uudhan deebisi."
+msgid "Starts another application and defines the respective window style, if necessary."
+msgstr "Yoo barbaachisaa ta'e, Raawwii biraa kaasuu fi haalata foddaa kanaan walqabatu ibsuu dha."
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"hd_id3154140\n"
-"3\n"
+"03130500.xhp\n"
+"hd_id3153345\n"
+"4\n"
"help.text"
-msgid "Syntax:"
+msgid "Syntax"
msgstr "Caasimaa:"
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"par_id3151042\n"
-"4\n"
+"03130500.xhp\n"
+"par_id3147576\n"
+"5\n"
"help.text"
-msgid "QBColor (ColorNumber As Integer)"
-msgstr "QBColor (ColorNumber As Integer)"
+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"
-"hd_id3145172\n"
-"5\n"
+"03130500.xhp\n"
+"hd_id3149235\n"
+"6\n"
"help.text"
-msgid "Return value:"
-msgstr "Gatii deebii:"
+msgid "Parameter"
+msgstr "Ulaagaalee:"
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"par_id3154685\n"
-"6\n"
+"03130500.xhp\n"
+"hd_id3154306\n"
+"23\n"
"help.text"
-msgid "Long"
-msgstr "Dheeraa"
+msgid "Pathname"
+msgstr "Maqaa xurree"
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"hd_id3156560\n"
+"03130500.xhp\n"
+"par_id3155419\n"
"7\n"
"help.text"
-msgid "Parameter:"
-msgstr "Ulaagaa:"
+msgid "Complete path and program name of the program that you want to start."
+msgstr "Xurree fi maqaa sagantaa, sagantaa ati kaasuu barbaadduu guuti."
-#: 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>Lakkoofsa Halluu</emph>: Himannoo intergaa kamiyyuu ta`ee gatii halluu tartiiba MS-DOS irraa cirna saganteessuu irratti hundaa`uudhaan akka halluutti darbe ifteessa dha."
+msgid "Windowstyle"
+msgstr "Haalata foddaa"
-#: 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>Lakkoofsi Halluu</emph> akka gatiiwwan armaan gadiitti ramadamu:"
+msgid "Optional integer expression that specifies the style of the window that the program is executed in. The following values are possible:"
+msgstr "Himata itergaa dirqaalee isa haalata foddaa kan sagantaan keessatti raawwatu ifteessu dha. Gatiiwwan armaan gadii ni danda'amu:"
-#: 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 : Gurracha"
+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 : cuquliisa"
+msgid "The focus is on the hidden program window."
+msgstr "Xiyyeeffannaan foddaa sagantaa dhokfame irra jira."
-#: 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 : Magariisa"
+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 : Hallataa"
+msgid "The focus is on the program window in standard size."
+msgstr "Xiyyeeffannaan foddaa sagantaa irra hammamtaa durtiitiin jira."
-#: 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 : Diimaa"
+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 : Maagneetaa"
+msgid "The focus is on the minimized program window."
+msgstr "Xiyyeeffannaan, foddaa sagantaa xinneeffame irra jira."
-#: 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 : Keelloo"
+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 : Adii"
+msgid "focus is on the maximized program window."
+msgstr "Xiyyeeffannaan foddaa sagantaa guddaterra."
-#: 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 : Fajajaa"
+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 : Cuquliisa Ibsi"
+msgid "Standard size program window, without focus."
+msgstr "Hammamtaa foddaa sagantaa durtii, xiyyeeffannoo malee."
-#: 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 : Magariisa Ibsi"
+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 : Hallataa Ibsi"
+msgid "Minimized program window, focus remains on the active window."
+msgstr "Foddaa sagantaa xinneeffame, xiyyeeffannaan foddaa ka'aarra tura."
-#: 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 : Diimaa Ibsi"
+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 : Maagneetaa Ibsi"
+msgid "Full-screen display."
+msgstr "Agarsiisa argii-guutuu."
-#: 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 : Keelloo Ibsi"
+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 : Adii Ifaa"
+msgid "Any string expression that specifies the command line that want to pass."
+msgstr "Himata diraa kamiyyuu kan sarara ajajaa isaa dabarsuu barbaaddu ifteessa."
-#: 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 "Faankishiniin kun fayyadamoota kan lakkaddoota halluu armaan olii gargaaraman MS-DOS kan BASIC irratti hundaa`e irra jijjiiruuf gargaara.Faankishiniin gatii intergaa dheeraa halluu IDE $[officename] keessatti fayyadan agarsiisan deebisa."
+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 "Fakkeenya:"
+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 "Yoo gatiin kun <emph>true</emph> qindeeffame, ajajni qolaa fi dalagaawwan $[officename] marti hanga hojiin <emph>qolaa</emph> xumuramutti ni eegu. Yoo gatiin isaa <emph>false</emph> qindeeffame, qolli kallattumaan deebi'a. Gatiin durtii isaa <emph>false</emph> dha."
-#: 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,\"Color \" & iColor"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 03030105.xhp
+#: 03130600.xhp
msgctxt ""
-"03030105.xhp\n"
+"03130600.xhp\n"
"tit\n"
"help.text"
-msgid "WeekDay Function [Runtime]"
-msgstr "Faankishinii WeekDay [Runtime]"
+msgid "Wait Statement [Runtime]"
+msgstr "Hima [Runtime] turii"
-#: 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>Faankishinii WeekDay</bookmark_value>"
+msgid "<bookmark_value>Wait statement</bookmark_value>"
+msgstr "<bookmark_value>Hima turii</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 Function [Runtime]\">Faankishinii WeekDay [Runtime]</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 Statement [Runtime]\">Hima [Runtime] turii</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 "Lakkoofsa guyyaa torbanii waliin wal gitu kan lakkoofsa guyyaa kamiitiin ibsamu deebisa innis dateSerial ykn DateValue faankishiniin ibsama."
+msgid "Interrupts the program execution for the amount of time that you specify in milliseconds."
+msgstr "Raawwii sagantaa kan ati dheerina yeroo miiliisekondiidhaan ifteessiteef gufachiisa."
-#: 03030105.xhp
+#: 03130600.xhp
msgctxt ""
-"03030105.xhp\n"
-"hd_id3145068\n"
+"03130600.xhp\n"
+"hd_id3143229\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasima:"
+msgstr "caasimaa:"
-#: 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 (Lakkoofsa)"
+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 "Gatii deebisi:"
+msgid "Parameters:"
+msgstr "Ulaagaalee:"
-#: 03030105.xhp
+#: 03130600.xhp
msgctxt ""
-"03030105.xhp\n"
-"par_id3154125\n"
+"03130600.xhp\n"
+"par_id3154924\n"
"6\n"
"help.text"
-msgid "Integer"
-msgstr "Itergaa"
+msgid "<emph>millisec:</emph> Numeric expression that contains the amount of time (in milliseconds) to wait before the program is executed."
+msgstr "<emph>miiliisekondii:</emph> Himannoo lakkoofsaa kan hammammii yeroo (miiliisekondiidhaan) osoo sagantaan kun hin raawwatin eegamu qabu hima."
-#: 03030105.xhp
+#: 03130600.xhp
msgctxt ""
-"03030105.xhp\n"
-"hd_id3150768\n"
+"03130600.xhp\n"
+"hd_id3150541\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Ulaagaalee:"
-
-#: 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>Lakkoofsa:</emph>Himamsa itergaa lakkofsa guyyaa kamii of keessaa qabu kan guyyaa torbanii (1-7) shallaguuf nu garagaarudha."
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 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 "Fakkeenyi armaan gadii faankishinii weekday jedhu fayyadamuun yommuu ati guyyaa galchitu guyyaa torbanii murteessa."
+msgid "MsgBox \"\" & lTick & \" Ticks\" ,0,\"The pause lasted\""
+msgstr "MsgBox \"\" & lTick & \" Ticks\" ,0,\"The pause lasted\""
-#: 03030105.xhp
+#: 03130700.xhp
msgctxt ""
-"03030105.xhp\n"
-"hd_id3148616\n"
-"10\n"
+"03130700.xhp\n"
+"tit\n"
"help.text"
-msgid "Example:"
-msgstr "Fakkeenya:"
+msgid "GetSystemTicks Function [Runtime]"
+msgstr "Faankishinii [Runtime] GetSystemTicks"
-#: 03030105.xhp
-#, fuzzy
+#: 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 "REM galiisa fi agarsiisa guyyaa torbee"
+msgid "<bookmark_value>GetSystemTicks function</bookmark_value>"
+msgstr "<bookmark_value>faankishinii 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=\"Sunday\""
+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 Function [Runtime]\"> Faankishinii [Runtime] 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=\"Monday\""
+msgid "Returns the number of system ticks provided by the operating system. You can use this function to optimize certain processes."
+msgstr "Lakkoofsa sirna dhikkisaa sirna dalagaatiin dhiyaatan deebisa. Hojiiwwan murtaa'oo guutoluuf faankishinii kanatti fayyadamuu ni dandeessa."
-#: 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=\"Tuesday\""
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 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=\"Wednesday\""
+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=\"Thursday\""
+msgid "Return value:"
+msgstr "Gatii deebii:"
-#: 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=\"Friday\""
+msgid "Long"
+msgstr "Dheeraa"
-#: 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=\"Saturday\""
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 03030105.xhp
-#, fuzzy
+#: 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,\"Har'a Guyyaan\""
+msgid "MsgBox \"\" & lTick & \" Ticks\" ,0,\"The pause lasted\""
+msgstr "MsgBox \"\" & lTick & \" Ticks\" ,0,\"The pause lasted\""
#: 03130800.xhp
msgctxt ""
@@ -33985,7 +34623,7 @@ msgctxt ""
"4\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasimaa:"
+msgstr "caasimaa:"
#: 03130800.xhp
msgctxt ""
@@ -34050,3525 +34688,2608 @@ msgctxt ""
msgid "MsgBox \"'\" & sTemp & \"'\" ,64,\"Directory of temporary files:\""
msgstr "MsgBox \"'\" & sTemp & \"'\" ,64,\"Directory of temporary files:\""
-#: 03020200.xhp
-msgctxt ""
-"03020200.xhp\n"
-"tit\n"
-"help.text"
-msgid "File Input/Output Functions"
-msgstr "Faankishinoota Faayilii naqa/Bahaa"
-
-#: 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=\"File Input/Output Functions\"> Faankishinoota Faayilii naqa/Bahaa</link>"
-
-#: 03050300.xhp
+#: 03131000.xhp
msgctxt ""
-"03050300.xhp\n"
+"03131000.xhp\n"
"tit\n"
"help.text"
-msgid "Error Function [Runtime]"
-msgstr "Faankishinii Dogongora"
+msgid "GetSolarVersion Function [Runtime]"
+msgstr "Faankishinii [Runtime] 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>funkishinii dogongora</bookmark_value>"
+msgid "<bookmark_value>GetSolarVersion function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii 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 Function [Runtime]\">Faankishinii dogongora[Runtime]</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 Function [Runtime]\">Faankishinii [Runtime] 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 "ergaa dogongora gara lakkadda dogongoraa kename isa gitutti debisi"
+msgid "Returns the internal number of the current $[officename] version."
+msgstr "Lakkoofsa keessaa kan fooyya'a ammaa $[officename] deebisa."
-#: 03050300.xhp
+#: 03131000.xhp
msgctxt ""
-"03050300.xhp\n"
-"hd_id3153379\n"
+"03131000.xhp\n"
+"hd_id3153311\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasimaa:"
+msgstr "caasimaa:"
-#: 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 "Dogongora (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 "Gatii deebii"
+msgstr "Gatii deebii:"
-#: 03050300.xhp
+#: 03131000.xhp
msgctxt ""
-"03050300.xhp\n"
-"par_id3154125\n"
+"03131000.xhp\n"
+"par_id3148685\n"
"6\n"
"help.text"
msgid "String"
msgstr "Diraa"
-#: 03050300.xhp
-msgctxt ""
-"03050300.xhp\n"
-"hd_id3150869\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Ulaagaalee"
-
-#: 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>Himanno:</emph> himannon lakkoofsa kamiyu kan lakkadda dogongoraa ofkeessaa qabu kan ergaa dogongoraa at deebisuu barbaadduti"
-
-#: 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 "yoo ulaagaaleen hin darbine, faankishiniinin dogongoraa ergaa dogongoraa dhihoo kan dogongora yeroo sagantaa raawwii uumame deebisa."
-
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"tit\n"
-"help.text"
-msgid "RmDir Statement [Runtime]"
-msgstr "Hima RmDir [Runtime]"
-
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"bm_id3148947\n"
-"help.text"
-msgid "<bookmark_value>RmDir statement</bookmark_value>"
-msgstr "<bookmark_value>Hima 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 Statement [Runtime]\"> Hima RmDir [Runtime]</link>"
-
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"par_id3149457\n"
-"2\n"
-"help.text"
-msgid "Deletes an existing directory from a data medium."
-msgstr "Gidduugaleessa daataa irraa galeeloo jiru balleessi."
-
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3153361\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Caasima:"
-
-#: 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 "Ulaagaalee:"
-
-#: 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>Barruu:</emph> Himamsa diraa kan maqaa ibsu fi xurree galeeloo kan balleessuu barbaadde. kanaas fayyadamuu dandeessa <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">sirnasxaa 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 "Yoo xurree murtaa'uu baate <emph> Hima SetAttr</emph> jedhamu irraa galeeloof barbaadii xurree ammaa haquu yoo barbaadde. Yoo achi jiraachuu baatee ergaan dogogoraa ni mul'ata."
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 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 "Fakkeenya:"
+msgid "MsgBox sSep,64,\"Version number of the solar technology\""
+msgstr "MsgBox sSep,64,\"Version number of the solar technology\""
-#: 03020302.xhp
+#: 03131300.xhp
msgctxt ""
-"03020302.xhp\n"
+"03131300.xhp\n"
"tit\n"
"help.text"
-msgid "Loc Function [Runtime]"
-msgstr "Faankishinii Loc [Runtime]"
+msgid "TwipsPerPixelX Function [Runtime]"
+msgstr "Faankishinii [Runtime] 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>Faankishinii Loc </bookmark_value>"
+msgid "<bookmark_value>TwipsPerPixelX function</bookmark_value>"
+msgstr "<bookmark_value>faankishinii 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 Function [Runtime]\">Faankishinii Loc [Runtime]</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 Function [Runtime]\"> Faankishinii [Runtime] 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 "Faayilii banaadhaaf qubannoo ammee deebisa."
+msgid "Returns the number of twips that represent the width of a pixel."
+msgstr "Lakkofsa tiwiipsii kan dheerina pikseelii bakka bu'an deebisa."
-#: 03020302.xhp
+#: 03131300.xhp
msgctxt ""
-"03020302.xhp\n"
-"hd_id3156422\n"
+"03131300.xhp\n"
+"hd_id3153527\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasima:"
+msgstr "caasimaa:"
-#: 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 "Gatii deebii:"
-#: 03020302.xhp
+#: 03131300.xhp
msgctxt ""
-"03020302.xhp\n"
-"par_id3152578\n"
+"03131300.xhp\n"
+"par_id3150503\n"
"6\n"
"help.text"
-msgid "Long"
-msgstr "Dheeraa"
+msgid "Integer"
+msgstr "intergaa"
-#: 03020302.xhp
+#: 03131300.xhp
msgctxt ""
-"03020302.xhp\n"
-"hd_id3152462\n"
+"03131300.xhp\n"
+"hd_id3159176\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Ulaagaalee:"
-
-#: 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> Himannoo numeerikaalaa baay'ina lakkofsaa of keessaa qabu kan hima banaadhaan qindeessu faayilii wal duraa duubatiif."
-
-#: 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 "Yoo Loc faankishiinin faayilii gahiinsa darbee darbeeti fayyadame, baay'ina kuusaa isa dhumaa kan dhumarratti dubbisu ykn barreessu deebisa."
-
-#: 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 "Faayilii tartiibatiif, faankishiniin Loc qubannoo faayilii 128 hiramuu deebisa. Faayilii lameef, baayitii qubannoo barreessuu ykn dubbisuu dhumaa deebisa."
-
-#: 03101120.xhp
-msgctxt ""
-"03101120.xhp\n"
-"tit\n"
-"help.text"
-msgid "DefErr Statement [Runtime]"
-msgstr "Hima DefErr [Runtime]"
-
-#: 03101120.xhp
-msgctxt ""
-"03101120.xhp\n"
-"bm_id8177739\n"
-"help.text"
-msgid "<bookmark_value>DefErr statement</bookmark_value>"
-msgstr "<bookmark_value>Hima 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\">Hima DefErr [Runtime]</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 "Yoo arfiin akaakuu labsii ykn jefuraa hin ifteeffamne,himni DefErr akaakuu jijjiiramaa durtii qindeessa,akkaataa hangii qubeen."
-
-#: 03101120.xhp
-msgctxt ""
-"03101120.xhp\n"
-"par_idN10590\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Caasimaa:"
-
-#: 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 "Ulaagaalee:"
-
-#: 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>Hangiiarfii:</emph> Qubeewwan kan hangii jijjiiramtootaa kan akaakuu deetaa durtii qindeessuu barbaaddu ifteessan."
-
-#: 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> Jefuraan kan akaakuu jijjiiramaa durtii qindeessu:"
-
-#: 03101120.xhp
-msgctxt ""
-"03101120.xhp\n"
-"par_idN105A9\n"
-"help.text"
-msgid "<emph>Keyword:</emph> Default variable type"
-msgstr "<emph>Jefuraa:</emph> Akaakuu jijjiiramaa durtii"
-
-#: 03101120.xhp
-msgctxt ""
-"03101120.xhp\n"
-"par_idN105B0\n"
-"help.text"
-msgid "<emph>DefErr:</emph> Error"
-msgstr "<emph>DefErr:</emph> Dogongora"
-
-#: 03101120.xhp
-msgctxt ""
-"03101120.xhp\n"
-"par_idN105B7\n"
-"help.text"
msgid "Example:"
msgstr "Fakkeenya:"
-#: 03101120.xhp
-#, fuzzy
-msgctxt ""
-"03101120.xhp\n"
-"par_idN105BB\n"
-"help.text"
-msgid "' Prefix definitions for variable types:"
-msgstr "REM hiika huddeelsoo akaakuu jijjiiramaaf:"
-
-#: 03101120.xhp
-#, fuzzy
-msgctxt ""
-"03101120.xhp\n"
-"par_idN105D9\n"
-"help.text"
-msgid "eErr=Error ' eErr is an implicit error variable"
-msgstr "eErr=Error REM eErr is an implicit error variable"
-
-#: 03060300.xhp
-msgctxt ""
-"03060300.xhp\n"
-"tit\n"
-"help.text"
-msgid "Imp-Operator [Runtime]"
-msgstr "Imp-Operator [Runtime]"
-
-#: 03060300.xhp
-msgctxt ""
-"03060300.xhp\n"
-"bm_id3156024\n"
-"help.text"
-msgid "<bookmark_value>Imp operator (logical)</bookmark_value>"
-msgstr "<bookmark_value>ogeejjii Imp (yaayaa)</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-Operator [Runtime]\">Ogeejjii Imp [Runtime]</link>"
-
-#: 03060300.xhp
-msgctxt ""
-"03060300.xhp\n"
-"par_id3148947\n"
-"2\n"
-"help.text"
-msgid "Performs a logical implication on two expressions."
-msgstr "hordoffii yaayaa himannoo lamaa hojjadhu"
-
-#: 03060300.xhp
-msgctxt ""
-"03060300.xhp\n"
-"hd_id3148664\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Caasimaa"
-
-#: 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 "Ulaagaalee"
-
-#: 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>Bu'aa:</emph> lakkoofsi jijjirama kamuu bu'aa hordoffii qaba."
-
-#: 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>Himannoo1, Himannoo2:</emph> himannoon kamu kan ogeejjii Imp waliin madaaluu barbaaddudha."
-
-#: 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 "Yoo ogeejjii Imp himannoo Buuliyaanii keessatti fayyadamte, yoo himannoon jalqabaa Dhugaa fi himannoon lammaffaa Soba tti madaalame Soba qofaatu deebi'a"
-
-#: 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 "Yoo ogeejjii Imp himannoo laklamee keessatti fayyadamte, laklameen bu'aarraa bada yoo laklammen himannoo jalqabaa kessatti qindaa'ee fi laklameen himannoo lmmaffaa keessaa bade"
-
-#: 03060300.xhp
-msgctxt ""
-"03060300.xhp\n"
-"hd_id3147318\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Fakkeenya:"
-
-#: 03060300.xhp
-#, fuzzy
-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 REM returns -1"
-
-#: 03060300.xhp
-#, fuzzy
-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 REM returns -1"
-
-#: 03060300.xhp
-#, fuzzy
-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 REM returns 0"
-
-#: 03060300.xhp
-#, fuzzy
-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) REM returns -1"
-
-#: 03060300.xhp
-#, fuzzy
-msgctxt ""
-"03060300.xhp\n"
-"par_id3154492\n"
-"19\n"
-"help.text"
-msgid "vOut = B Imp A ' returns -1"
-msgstr "vOut = B Imp A REM returns -1"
-
-#: 03100070.xhp
-msgctxt ""
-"03100070.xhp\n"
-"tit\n"
-"help.text"
-msgid "CVar Function [Runtime]"
-msgstr "Faankishinii CVar[Runtime]"
-
-#: 03100070.xhp
-msgctxt ""
-"03100070.xhp\n"
-"bm_id2338633\n"
-"help.text"
-msgid "<bookmark_value>CVar function</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii 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\">Faankishinii CVar [Runtime]</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 "Himannoo diraa ykn himannoo lakkoofsaa gara himannoo addaba'aatti geeddari."
-
-#: 03100070.xhp
-msgctxt ""
-"03100070.xhp\n"
-"par_idN1055E\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Caasimaa:"
-
-#: 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 "Gatii Debisi:"
-
-#: 03100070.xhp
-msgctxt ""
-"03100070.xhp\n"
-"par_idN10569\n"
-"help.text"
-msgid "Variant."
-msgstr "Addaba'aa."
-
-#: 03100070.xhp
-msgctxt ""
-"03100070.xhp\n"
-"par_idN1056C\n"
-"help.text"
-msgid "Parameter:"
-msgstr "Ulaagaalee:"
-
-#: 03100070.xhp
-msgctxt ""
-"03100070.xhp\n"
-"par_idN10570\n"
-"help.text"
-msgid "Expression: Any string or numeric expression that you want to convert."
-msgstr "Himannoo:Himannoo diraa ykn lakkoofsaa kamuu geeddaruu barbaadde."
+msgid "MsgBox \"\" & TwipsPerPixelX() & \" Twips * \" & TwipsPerPixelY() & \" Twips\",0,\"Pixel size\""
+msgstr "MsgBox \"\" & TwipsPerPixelX() & \" Twips * \" & TwipsPerPixelY() & \" Twips\",0,\"Pixel size\""
-#: 03070600.xhp
+#: 03131400.xhp
msgctxt ""
-"03070600.xhp\n"
+"03131400.xhp\n"
"tit\n"
"help.text"
-msgid "Mod-Operator [Runtime]"
-msgstr "Mod-Operator [Runtime]"
+msgid "TwipsPerPixelY Function [Runtime]"
+msgstr "Faankishinii [Runtime] 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>ogeejjii MOD (herreega)</bookmark_value>"
+msgid "<bookmark_value>TwipsPerPixelY function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii 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-Operator [Runtime]\">Ogeejjii Mod [Runtime]</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 Function [Runtime]\"> Faankishinii [Runtime] 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 "haftee hiruu intiijarii deebisu"
+msgid "Returns the number of twips that represent the height of a pixel."
+msgstr "Lakkofsa tiwiipsii kan dheerina pikseelii bakka bu'an deebisa."
-#: 03070600.xhp
+#: 03131400.xhp
msgctxt ""
-"03070600.xhp\n"
-"hd_id3146795\n"
+"03131400.xhp\n"
+"hd_id3145090\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasimaa:"
+msgstr "caasimaa:"
-#: 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 "Gatii Debisi:"
+msgstr "Gatii deebii:"
-#: 03070600.xhp
+#: 03131400.xhp
msgctxt ""
-"03070600.xhp\n"
-"par_id3153380\n"
+"03131400.xhp\n"
+"par_id3154306\n"
"6\n"
"help.text"
msgid "Integer"
-msgstr "Intijarii"
+msgstr "intergaa"
-#: 03070600.xhp
+#: 03131400.xhp
msgctxt ""
-"03070600.xhp\n"
-"hd_id3154365\n"
+"03131400.xhp\n"
+"hd_id3149235\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Ulaagaalee:"
-
-#: 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>Bu'aa:</emph> Lakkoofsi jijjiramaa kamuu bu'aa qoyyaba MOD qabu."
-
-#: 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>Himannoo1, Himannoo2:</emph> Himanno lakkofsa hiruu barbaadde."
-
-#: 03070600.xhp
-msgctxt ""
-"03070600.xhp\n"
-"hd_id3147287\n"
-"10\n"
-"help.text"
msgid "Example:"
msgstr "Fakkeenya:"
-#: 03070600.xhp
-#, fuzzy
-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 REM returns 0"
-
-#: 03070600.xhp
-#, fuzzy
-msgctxt ""
-"03070600.xhp\n"
-"par_id3146922\n"
-"13\n"
-"help.text"
-msgid "Print 10 / 2.5 ' returns 4"
-msgstr "print 10 / 2.5 REM returns 4"
-
-#: 03070600.xhp
-#, fuzzy
-msgctxt ""
-"03070600.xhp\n"
-"par_id3145273\n"
-"14\n"
-"help.text"
-msgid "Print 10 Mod 5 ' returns 0"
-msgstr "print 10 mod 5 REM returns 0"
-
-#: 03070600.xhp
-#, fuzzy
-msgctxt ""
-"03070600.xhp\n"
-"par_id3150011\n"
-"15\n"
-"help.text"
-msgid "Print 10 / 5 ' returns 2"
-msgstr "print 10 / 5 REM returns 2"
-
-#: 03070600.xhp
-#, fuzzy
-msgctxt ""
-"03070600.xhp\n"
-"par_id3149483\n"
-"16\n"
-"help.text"
-msgid "Print 5 Mod 10 ' returns 5"
-msgstr "print 5 mod 10 REM returns 5"
-
-#: 03070600.xhp
-#, fuzzy
+#: 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 REM returns 0.5"
+msgid "MsgBox \"\" & TwipsPerPixelX() & \" Twips * \" & TwipsPerPixelY() & \" Twips\",0,\"Pixel size\""
+msgstr "MsgBox \"\" & TwipsPerPixelX() & \" Twips * \" & TwipsPerPixelY() & \" Twips\",0,\"Pixel size\""
-#: 03020406.xhp
+#: 03131500.xhp
msgctxt ""
-"03020406.xhp\n"
+"03131500.xhp\n"
"tit\n"
"help.text"
-msgid "FileCopy Statement [Runtime]"
-msgstr "Hima faayilii garagalchuu [Runtime]"
+msgid "CreateUnoStruct Function [Runtime]"
+msgstr "Faankishinii [Runtime] 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>Hima faayilii garagalchuu</bookmark_value>"
+msgid "<bookmark_value>CreateUnoStruct function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii 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 Statement [Runtime]\">Hima Faayilii jaaltessa [Runtime]</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 Function [Runtime]\"> Faankishinii [Runtime] 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 "Faayilii jaaltessa."
+msgid "<ahelp hid=\".\">Creates an instance of a Uno structure type.</ahelp>"
+msgstr "<ahelp hid=\".\">Battalee akaakuu caasaa Uno tiif uuma.</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 "Caasima:"
+msgid "Use the following structure for your statement:"
+msgstr "Hima keetiif caasaa armaan gadiitti fayyadami:"
-#: 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 "Ulaagaalee:"
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 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>Barruu irraa:</emph> Himamsa diraanii kamiyyuu kan maqaa faayilii ibsu kan ati jaaltessuu barbaade.Himamsi xurree filannoo fi odeeffannoo oofamu of keessaa qaba. Yoo barbaade,xurree galchuu dandeessa <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\"> sirnasxa URL </link> kessatti."
+msgid "oStruct = CreateUnoStruct( Uno type name )"
+msgstr "oStruct = CreateUnoStruct( Uno type name )"
-#: 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>Barruu gara:</emph>Himamsa diraa eessatti faayilii madda irra garagalchuu akka barbaaddu.Himamsi oofuu gaa'uumsaa, xurree, fi maqaa fayilii, ykn xurree sirnasxa URL of keessaa qaba."
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 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 "Faayiloota garagalchuun hin danda'amne hima FileCopy jedhu qofa fayyadamuun ni dandeessa."
-
-#: 03020406.xhp
-msgctxt ""
-"03020406.xhp\n"
-"hd_id3125863\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr "Fakkeenya:"
+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 "Hima DefInt [Runtime]"
+msgid "CreateUnoService Function [Runtime]"
+msgstr "Faankishinii [Runtime] 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>Hima DefInt</bookmark_value>"
+msgid "<bookmark_value>CreateUnoService function</bookmark_value>"
+msgstr "<bookmark_value>faankishinii 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 Statement [Runtime]\">Hima DefInt[Runtime]</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 Function [Runtime]\"> Faankishinii [Runtime] 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 "yoo arfiin akaakuu labsii ykn jefuraa hin ifteeffamne,akkaataa hangii qubeetiin, akaakuu jijjiiramaa durtii qindeessi."
+msgid "Instantiates a Uno service with the ProcessServiceManager."
+msgstr "Tajaajila Uno, ProcessServiceManager wajjiniin kaasa."
-#: 03101500.xhp
+#: 03131600.xhp
msgctxt ""
-"03101500.xhp\n"
-"hd_id3148686\n"
+"03131600.xhp\n"
+"hd_id3152801\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasimaa:"
+msgstr "caasimaa:"
-#: 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 "Ulaagaalee:"
+msgid "oService = CreateUnoService( Uno service name )"
+msgstr "oService = CreateUnoService( Uno service name )"
-#: 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>Hangiiarfii:</emph> Qubeewwan kan hangii jijjiiramtootaa kan akaakuu deetaa durtii qindeessuu barbaaddu ifteessan."
+msgid "For a list of available services, go to: http://api.libreoffice.org/docs/common/ref/com/sun/star/module-ix.html"
+msgstr "Tarreeffama tajaajiloota jiraniitiif,gara: http://api.openoffice.org/docs/common/ref/com/sun/star/module-ix.html deemi"
-#: 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> Jefuraan kan akaakuu jijjiiramaa durtii qindeessu:"
+msgid "Examples:"
+msgstr "Fakkeenyawwan:"
-#: 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>Jefuraa: </emph>Akaakuu jijjiiramaa durtii"
+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>DefSng:</emph> Itergaa"
+msgid "<bookmark_value>filepicker;API service</bookmark_value>"
+msgstr "<bookmark_value>FuudhaaFaayilaa;Tajaajila API</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 "Fakkeenya:"
+msgid "The following code uses a service to open a file open dialog:"
+msgstr "Lakkaddaan armaan gadii tajaajila qaaqa faayila banu baniitti fayyadama:"
-#: 03101500.xhp
-#, fuzzy
+#: 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 "REM hiika huddeelsoo akaakuu jijjiiramaaf:"
+msgid "fName = FileOpenDialog (\"Please select a file\")"
+msgstr "fName = FileOpenDialog (\"Please select a file\")"
-#: 03101500.xhp
-#, fuzzy
+#: 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 REM iCount is an implicit integer variable"
+msgid "Print \"file chosen: \"+fName"
+msgstr "print \"file chosen: \"+fName"
-#: 03020304.xhp
+#: 03131700.xhp
msgctxt ""
-"03020304.xhp\n"
+"03131700.xhp\n"
"tit\n"
"help.text"
-msgid "Seek Function [Runtime]"
-msgstr "Faankishiniin barbaachaa [Runtime]"
+msgid "GetProcessServiceManager Function [Runtime]"
+msgstr "Faankishinii [Runtime] 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>Faankishiniin barbaachaa</bookmark_value>"
+msgid "<bookmark_value>GetProcessServiceManager function</bookmark_value><bookmark_value>ProcessServiceManager</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii GetProcessServiceManager</bookmark_value><bookmark_value>GeggeessaaAdeemsaTajaajilaa</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 Function [Runtime]\">Faankishiniin barbaachaa [Runtime]</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 Function [Runtime]\">Faankishinii [Runtime] 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 "Faayilii hima banaadhaan baname qubannoo itti aaneen barreefamu ykn dubbifamun qubannoo deebisa."
+msgid "Returns the ProcessServiceManager (central Uno ServiceManager)."
+msgstr "ProcessServiceManager (central Uno ServiceManager) deebisa."
-#: 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 "Gahiinsa faayilii darbee darbeetiif, faankishiniin barbaachaa baay'ina kuusaa itti aanee dubbifamu deebisa."
+msgid "This function is required when you want to instantiate a service using CreateInstanceWithArguments."
+msgstr "Faankishiniin kun yommuu ati tajaajila CreateInstanceWithArguments kaasuu barbaaddeef si fayyada."
-#: 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 "Faayiloota karaa biroof,faankishiniin qubannoo baayitii deebisa dalagaan itti aanuu mul'achuuf."
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 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 "Kanas ilaali: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Banaa</link>, <link href=\"text/sbasic/shared/03020305.xhp\" name=\"Seek\">Barbaacha</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 "Caasima:"
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 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 "Gatii deebii:"
+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 "Dheeraa"
+msgid "this is the same as the following statement:"
+msgstr "Kuni hima armaan gadiitiin tokkuma:"
-#: 03020304.xhp
+#: 03131700.xhp
msgctxt ""
-"03020304.xhp\n"
-"hd_id3149665\n"
+"03131700.xhp\n"
+"par_id3145609\n"
"10\n"
"help.text"
-msgid "Parameters:"
-msgstr "Ulaagaalee:"
-
-#: 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>Lakkofsi karaa deetaa hima banaa keessatti fayyada."
+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 "Faankishinii Daqiiqaa [Runtime]"
+msgid "CreateUnoDialog Function [Runtime]"
+msgstr "Faankishinii [Runtime] 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>Faankishinii Daqiiqaa</bookmark_value>"
+msgid "<bookmark_value>CreateUnoDialog function</bookmark_value>"
+msgstr "<bookmark_value>faankishinii 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 Function [Runtime]\">Faankishinii Daqiiqaa [Runtime]</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 Function [Runtime]\"> Faankishinii [Runtime] 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 "Gatii daqiiqaa sa'aa kan eenyummaa yeroo waliin wal gitu deebisi kan timeserial fi timeValue dhaan maddu."
+msgid "Creates a Basic Uno object that represents a Uno dialog control during Basic runtime."
+msgstr "Wanta bu'uraa Uno kan to'ataa qaaqa Uno yeroo sa'aa darbee isaa waamamu uuma."
-#: 03030202.xhp
+#: 03131800.xhp
msgctxt ""
-"03030202.xhp\n"
-"hd_id3154758\n"
+"03131800.xhp\n"
+"par_id3153750\n"
"3\n"
"help.text"
-msgid "Syntax:"
-msgstr "Caasima:"
+msgid "Dialogs are defined in the dialog libraries. To display a dialog, a \"live\" dialog must be created from the library."
+msgstr "Qaaqawwan mankitaabota qaaqaa keessatti ibsamu. qaaqa argisiisuuf, qaaqni \"live\" mankitaabaa irraa dirqama uumamuu qaba."
-#: 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 "Daqiiqaa(Lakkoofsa)"
+msgid "See <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Examples\">Examples</link>."
+msgstr "Fakkeenya<link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Examples\">ilaali</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 "Gatii deebisi."
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 03030202.xhp
+#: 03131800.xhp
msgctxt ""
-"03030202.xhp\n"
-"par_id3150449\n"
+"03131800.xhp\n"
+"par_id3159176\n"
"6\n"
"help.text"
-msgid "Integer"
-msgstr "Itergaa"
+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 "Ulaagaalee:"
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 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>Lakkoofsa:</emph> Himamsa numerikii kan gatii eenyumaa yeroo daqiiqaa deebisuuf nu garagaaru of keessaa qabu."
+msgid "' Get dialog description from the dialog library"
+msgstr "' Ibsa qaaqaa mankitaaba qaaqaa irraa fudhu"
-#: 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 "Fankishinin kun faallaa <emph>TimeSerial </emph> faankishiniiti .Kan inni deebisu sa'aatii meeqa akka ta'e kan <emph>TimeSerial</emph> ykn kan <emph>TimeValue </emph> ti. Fakkeenyaaf, himamsa:"
+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 "Maxxansa Daqiiqaaa(TimeSerial(12,30,41))"
+msgid "' generate \"live\" dialog"
+msgstr "' qaaqa \"live\" maddisiisa"
-#: 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 "gatii 30 deebisi."
+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 "fakkeenya:"
+msgid "' display \"live\" dialog"
+msgstr "' qaaqa \"live\" agarsiisa"
-#: 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 \"Daqiiqaan amma \"& Minute(Now)& \".\""
-
-#: 03030202.xhp
-#, fuzzy
-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 "Filannoo Hima Bu'uraa [Runtime]"
+msgid "GlobalScope [Runtime]"
+msgstr "Hundata [Runtime]"
-#: 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>Filannoo Hima Bu'uraa</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>Faankishinii hundataa</bookmark_value><bookmark_value>sirnoota mankitaabaa</bookmark_value><bookmark_value>QabiyyooMankitaabaa</bookmark_value><bookmark_value>Bu'uuraMankitaabaa (LibraryContainer)</bookmark_value><bookmark_value>MankitaabaQaaqaa (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 Statement [Runtime]\">Filannoo Hima Bu'uraa [Runtime]</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 [Runtime]\">Hundata [Runtime]</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 ykn 1 akka durtii daangaa waraantoo isa gad-aanaatti hiika."
+msgid "Basic source code and dialogs are organized in a library system."
+msgstr "Bu'urri lakkadda maddaa fi qaaqawwanii sirna mankitaabaa keessaatti qindeeffamu."
-#: 03103200.xhp
+#: 03131900.xhp
msgctxt ""
-"03103200.xhp\n"
-"hd_id3150771\n"
+"03131900.xhp\n"
+"par_id3145315\n"
"3\n"
"help.text"
-msgid "Syntax:"
-msgstr "Caasimaa:"
+msgid "The LibraryContainer contains libraries"
+msgstr "Qabiyyoon mankitaabaa mankitaabota of keessaa qaba"
-#: 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 "Mankitaabotni muraawwanii fi Qaaqawwan qabaachuu ni danda'u"
-#: 03103200.xhp
+#: 03131900.xhp
msgctxt ""
-"03103200.xhp\n"
-"hd_id3145315\n"
+"03131900.xhp\n"
+"hd_id3143271\n"
"5\n"
"help.text"
-msgid "Parameters:"
-msgstr "Ulaagaalee:"
+msgid "In Basic:"
+msgstr "Basic keessatti:"
-#: 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 "Himni kun, Moojulii keessaatti, lakkadda sagantaa raawwachuu danda'u dursee ida'amuu qaba."
+msgid "The LibraryContainer is called <emph>BasicLibraries</emph>."
+msgstr "Qabiyyoon mankitaabaa <emph>MankitaabaQaaqaa</emph> waama."
-#: 03103200.xhp
+#: 03131900.xhp
msgctxt ""
-"03103200.xhp\n"
-"hd_id3150870\n"
+"03131900.xhp\n"
+"hd_id3154346\n"
"7\n"
"help.text"
-msgid "Example:"
-msgstr "Fakkeenya:"
-
-#: 03080401.xhp
-msgctxt ""
-"03080401.xhp\n"
-"tit\n"
-"help.text"
-msgid "Sqr Function [Runtime]"
-msgstr "Faankishinii Sqr[Runtime]"
-
-#: 03080401.xhp
-msgctxt ""
-"03080401.xhp\n"
-"bm_id3156027\n"
-"help.text"
-msgid "<bookmark_value>Sqr function</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii Sqr</bookmark_value>"
+msgid "In dialogs:"
+msgstr "Qaaqa keessatti:"
-#: 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 Function [Runtime]\">Faankishinii Sqr [Runtime]</link>"
+msgid "The LibraryContainer is called <emph>DialogLibraries</emph>."
+msgstr "Qabiyyoon mankitaabaa <emph>MankitaabaQaaqaa</emph> waama."
-#: 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 "Iskuweer ruuttii himannoo lakkofsaa shallagi."
+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 "Qabiyyoon mankitaabaa lachuu sadarkaa raawwii fi galmee mara keessa jiru. Galmee Basic qabiyyoo mankitaabaa keessatti qabiyyoon galmee mankitaabaa ufmaan waamamu. Qabiyyoo mankitaabaa hundataa yoo galmee keessumatti waamuu barbaadde, Jefuraa <emph>Hundata</emph> tti fayyadamuu qabda."
-#: 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 "Caasimaa:"
+msgstr "caasimaa:"
-#: 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 "Gatii deebii:"
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 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 "Dachaa"
+msgid "Example in the document Basic"
+msgstr "Fakkeenya galmee Basic keessa"
-#: 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 "Ulaagaalee:"
+msgid "' calling Dialog1 in the document library Standard"
+msgstr "' calling Dialog1 in the document library 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>Lakkofsa:</emph> Himannoon lakkoofsa kamuu Iskuweer ruuttii shallaguu barbaadde."
+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 "Iskuweer ruutiin lakkoofsa ofiin of baay'isee lakkoofsa biroo kennuu dha. fakkeenyaf, iskuweer ruutiin 36, 6 dha."
+msgid "' calling Dialog2 in the application library Library1"
+msgstr "' calling Dialog2 in the application library 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 "Fakkeenya:"
+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 "Faankishinii [Runtime] GetSystemTicks"
-
-#: 03130700.xhp
-msgctxt ""
-"03130700.xhp\n"
-"bm_id3147143\n"
-"help.text"
-msgid "<bookmark_value>GetSystemTicks function</bookmark_value>"
-msgstr "<bookmark_value>faankishinii GetSystemTicks</bookmark_value>"
+msgid "CreateUnoListener Function [Runtime]"
+msgstr "Faankishinii [Runtime] 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 Function [Runtime]\"> Faankishinii [Runtime] GetSystemTicks</link>"
+msgid "<bookmark_value>CreateUnoListener function</bookmark_value>"
+msgstr "<bookmark_value>faankishinii 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 "Lakkoofsa sirna dhikkisaa sirna dalagaatiin dhiyaatan deebisa. Hojiiwwan murtaa'oo guutoluuf faankishinii kanatti fayyadamuu ni dandeessa."
+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 Function [Runtime]\"> Faankishinii [Runtime] 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 "Caasimaa:"
+msgid "Creates a Listener instance."
+msgstr "Gatii yeroo dhaggeeffataaf uuma."
-#: 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 "Walquunnamawwan Uno baay'een walquunnama dhaggeeffataa addaa irratti dhaggeeffataa akka galmeessituuf si fayyada. Kunimmoo akka ati mudata addaa dhaggeeffattuu fi tooftaa dhaggeeffataa sirrii akka waamtu siif eeyyama. Faankishiniin CreateUnoListener walquunnama dhaggeeffataa waamame eegeeti wanta walquunnamni kun deeggaru gara walquunnamaatti dabarsa. Wanti kun kana booda dhaggeeffataa galmeessuuf gara tooftaatti ni darba."
-#: 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 "Gatii deebii:"
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 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 "Dheeraa"
+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 "Fakkeenya:"
-#: 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 & \" Ticks\" ,0,\"The pause lasted\""
+msgid "The following example is based on a Basic library object."
+msgstr "Fakkeenyi armaan gadii mankitaaba wantaa isa bu'uraa irratti hundaa'a."
-#: 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 "Hima If...Then...Else [Runtime]"
+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 "Tooftaan CreateUnoListener ulaagaalee lama barbaada. Inni jalqabaa huddeelsoo dhaa fi kunis bal'inaan kan jalatti ibsame dha. ulaagaan inni lammaffaan maqaa gahaa walquunnama dhaggeeffataa kan itti fayyadamuu barbaaddu dha."
-#: 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>hima 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 "Dhaggeffataan gara tamsaasa wantaatti dirqama ida'amuu qaba.Kuni kan godhamu tooftaa sirrii kan dhaggeeffataa ida'u waamuudhaani. Tooftaan kun yeroo mara sirna \"addFooListener\" hordofa, \"Foo\" n akaakuu walquunnama dhaggeeffataa, 'X' malee dha. Fakkeenya kana keessatti, tooftaan addContainerListener 'iin XContainerListener galmeessuuf ni waamama:"
-#: 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 Statement [Runtime]\">Hima If...Then...Else [Runtime]</link>"
+msgid "oLib = BasicLibraries.Library1 ' Library1 must exist!"
+msgstr "oLib = BasicLibraries.Library1 ' Mankitaabaa jiraachuu qaba!"
-#: 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 "Haalli kenname Dhugaa yoo ta'e garee hima tokkoo ykn baay'ee raawwachuu barbaadde qofa ibsi."
+msgid "oLib.addContainerListener( oListener ) ' Register the listener"
+msgstr "oLib.addContainerListener( oListener ) ' Dhaggeeffataa galmeessi"
-#: 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 "Caasimaa:"
+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 "Dhaggeeffataan galmaa'eera. Yommuu mudatni dhalate, dhaggeeffataa walgitaan tooftaa sirrii walquunnama com.sun.star.container.XContainerListener irraa ni waama."
-#: 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 ""
+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 "Huddeelsoon Dhaggeeffattoota galmaa'an Basic-subroutines irraa waama. Sirni bu'uraa sa'aa-darbee Basic-subroutines yookiin faankishinoota maqaa \"PrefixListenerMethode\" qaban barbaaduu fi yommuu isaan argaman waamuu dha, gama biraatiin dogoggorri sa'aa-darbee ni dhalata."
-#: 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 ""
+msgid "In this example, the Listener-Interface uses the following methods:"
+msgstr "Fakkeenya kana keessatti, Walquunnama-Dhaggeeffataa tooftaalee armaan gadiitti fayyadama:"
-#: 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 "Ulaagaalee"
+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 "Himi <emph>If...Then</emph> garee sagantaa raawwatu haalota kennaman irratti hundaa'a. yeroo bu'uurri $[officename] hima<emph>If</emph> qunnamsiise, haallichi yaalame.Yoo haalli isaa Dhugaa ta'e,himoonni walfaanaa hunduu hanga hima <emph>Else</emph> ykn <emph>ElseIf</emph> itti aanutti raawwatu. yoo haalli isaa Soba ta'e, fi himni<emph>ElseIf</emph> duuka bu'e ,$[officename] Basic haala itti aanu yaalee himoota armaan gadii raawwata ,yoo haalli isaa Dhugaa ta'e. Yoo soba ta'e, sagantaan hima <emph>ElseIf</emph> ykn <emph>Else</emph> waliin itti fufa. himoonni <emph>Else</emph>duuka bu'an kan raawwatu yoo haalli duraan yaalame Dhugaa ta'e qofa. Haalli hunduu yoo madaalameen booda,fi himoonni walitti dhufoo raawwatan, sagantaan hima <emph>EndIf</emph>itti aanu waiin itti fufa."
+msgid "Listener base interface (com.sun.star.lang.XEventListener): base interface for all Listener Interfaces"
+msgstr "Listener base interface (com.sun.star.lang.XEventListener): hundee walquunnamaa walquunnamtiiwwan dhaggeeffataa maraaf"
-#: 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 "Himoota <emph>If...Then</emph> danee galchuu dandeessa."
+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 "Himoonni<emph>Else</emph> fi <emph>ElseIf</emph> dirqalee dha."
+msgid "Method of the com.sun.star.container.XContainerListener interface"
+msgstr "Tooftaa walquunama 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> fi <emph>GoSub</emph> fayyadamuu dandeessa,garee <emph>If...Then</emph> alatti utaaluuf, garuu caasaa <emph>If...Then</emph> tti hin utaalin."
+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 "Fakkeenyi armaan gadii guyyaa omishaa itti galchuuf ,fi yoo guuyyaan darbe murteessuuf si dandeessisa."
+msgid "Method of the com.sun.star.container.XContainerListener interface"
+msgstr "Tooftaa walquunama 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 "Fakkeenya:"
+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(\"Enter the expiration date (MM.DD.YYYY)\")"
+msgid "Method of the com.sun.star.container.XContainerListener interface"
+msgstr "Tooftaa walquunama 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 \"The expiration date has passed\""
+msgid "In this example, the prefix is ContListener_. The following subroutines must therefore be implemented in Basic:"
+msgstr "Fakkeenya kana keessatti, huddeelsoon ContListener_ dha. Kanaafuu, oliin adeemsaa dirqama Basic keessatti raawwatamuu qabu:"
-#: 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 \"The expiration date has not yet passed\""
+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 \"The expiration date is today\""
+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 "Faankishinii Iddoo [Runtime]"
+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>faankishinnii iddoo</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 Function [Runtime]\">Faankishinii Iddoo [Runtime]</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 "Akaakuun caasaa mudataa kan odeeffannoo waa'ee mudataa of keessaa qabu akaakuu dhaggeeffataa kamiifuu ni jiraata. yommuu tooftaa dhaggeeffataan yaamame, gatiin mudata kanaa gara tooftaatti akka ulaagaatti darba.Haga ulaagaa sirriin beeksisa Sub keessa darbetti, bu'urri tooftaa dhaggeeffataa mudata wantootaas waamuu ni danda'a. Fakkeenyaaf:"
-#: 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 "Diraa hamma iddoowwan ibsamanii qabu deebisa."
+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 "Caasimaa:"
+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 "Gatii Deebii:"
+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 "Diraa"
-
-#: 03120201.xhp
-msgctxt ""
-"03120201.xhp\n"
-"hd_id3156152\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Ulaagaalee:"
-
-#: 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> Himata lakkoofsaa kan baay'ina iddoowwan diraa keessa jiranii ibsa. Gatiin guddaan n, 65535 dha."
+msgid "You do not need to include the parameter of an event object if the object is not used:"
+msgstr "Wanta hin tajaajille yoo ta'e ulaagaa mudata wantaa itti dabaluun si hin barbaachisu:"
-#: 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 "Fakkeenya:"
+msgid "' Minimal implementation of Sub disposing"
+msgstr "' Raawwii yoo xiqqaate xinnoo gatu"
-#: 03120201.xhp
-#, fuzzy
+#: 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,\"Info:\""
+msgid "Listener methods must <emph>always</emph> be implemented to avoid Basic run-time errors."
+msgstr "Dogoggorawwan Bu'uuraa sa'aa-darbee dhabamsiisuuf tooftaan dhaggeeffataa <emph>yeroo mara</emph> dirqama raawwachuu qaba."
-#: 03030101.xhp
+#: 03132100.xhp
msgctxt ""
-"03030101.xhp\n"
+"03132100.xhp\n"
"tit\n"
"help.text"
-msgid "DateSerial Function [Runtime]"
-msgstr "Faankishinii DateSerial [Runtime]"
+msgid "GetGuiType Function [Runtime]"
+msgstr "Faankishinii [Runtime] 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>Faankishinii DateSerial </bookmark_value>"
+msgid "<bookmark_value>GetGuiType function</bookmark_value>"
+msgstr "<bookmark_value>faankishinii GetGuiType</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 Function [Runtime]\"> Faankishinii DateSerial [Runtime]</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 Function [Runtime]\"> Faankishinii [Runtime] 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>Guyyaa</emph> gatii waggaa, ji'aa ykn guyyaa ibsame deebisa."
+msgid "Returns a numerical value that specifies the graphical user interface."
+msgstr "Gatii lakkofsaa kan walquunnama itti fayyadamaa saxaatoo ifteessu deebisa."
-#: 03030101.xhp
+#: 03132100.xhp
msgctxt ""
-"03030101.xhp\n"
-"hd_id3147264\n"
+"03132100.xhp\n"
+"par_id3153323\n"
"3\n"
"help.text"
-msgid "Syntax:"
-msgstr "Caasima:"
+msgid "This runtime function is only provided for downward compatibility to previous versions. The return value is not defined in client-server environments."
+msgstr "Sa'aa darbeen faankishinii kanaa walitti ta'iinsa itti fufaa fooyya'a darbee qofaaf kan kennamani dha. Gatiin deebiis naannoolee maamila- kaadhimamaa keessatti hin ibsaman"
-#: 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 (Waggaa, ji'a, guyyaa)"
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 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 "Gatii deebii:"
+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 "Guyyaa"
+msgid "Return value:"
+msgstr "Gatii deebii:"
-#: 03030101.xhp
+#: 03132100.xhp
msgctxt ""
-"03030101.xhp\n"
-"hd_id3154141\n"
+"03132100.xhp\n"
+"par_id3153748\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Ulaagaalee:"
+msgid "Integer"
+msgstr "intergaa"
-#: 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>Waggaa:</emph> Himamsa itergaa kan waggaa agarsiisu.Gatii hundinuu gidduu 0 fi 99 akka waggoota 1900-1999 ti hiikamu waggaa hamma kennameen ala ta'e lakqurxa afur qofa galchuu qabda."
+msgid "Return values:"
+msgstr "Gatii deebii:"
-#: 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>Ji'a:</emph> Himamsa itergaa kan ji'a waggaa murtaa'ee agarsiisu.Kan fudhatama qabu 1-12 qofa."
-
-#: 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 ""
+msgid "1: Windows"
+msgstr "1: Foddaalee"
-#: 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>Faankishinii DateSerial </emph> jedhamu guyyaa muddee 30,1899 fi guyyaa kenname deebisa. Garaagarummaa guyyaa lama gudduu jiru baruuf faankishinii kana fayyyadamuu ni dandeessa."
+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>Faankishinii DateSerial </emph>jedhamu gosa agargoo bakkabu'aata VarType 7 (Date) walii deebisa. karaa keessaan, gatiin kun akka gatii mirreeti cimmifama.,kanaafuu guyyan kenname 1.1.1900 ta'a, gatiin deebi'aan 2 dha. Muddee 30, 1899 dura gatiin negatifaa gatii guyyaa waliin wal gita.(osoo hin dabalatin)"
-
-#: 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 "Yoo guyyaan hamma hiikame fudhatama argatee ala ta'ae $[officename] Bu'uurri ergaa dogogoraa deebisa."
-
-#: 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>Faankishinii DateValue </emph> jedhamu yoo akka diraatti hiiktu kan guyya of keessa qabu <emph>Faankishinii DateValue </emph> jedhamu tokkoon tokkoo ulaagaalee kannen akka(waggaa,ji'aa ,guyyaa)qorachuuf akka himamsa garagar bahaati."
-
-#: 03030101.xhp
-msgctxt ""
-"03030101.xhp\n"
-"hd_id3155411\n"
-"15\n"
-"help.text"
msgid "Example:"
msgstr "Fakkeenya:"
-#: 03030101.xhp
-#, fuzzy
-msgctxt ""
-"03030101.xhp\n"
-"par_id3154942\n"
-"help.text"
-msgid "MsgBox lDate ' returns 23476"
-msgstr "msgbox lDate REM returns 23476"
-
-#: 03030101.xhp
-#, fuzzy
-msgctxt ""
-"03030101.xhp\n"
-"par_id3151074\n"
-"help.text"
-msgid "MsgBox sDate ' returns 04/09/1964"
-msgstr "msgbox sDate REM returns 04/09/1964"
-
-#: 03020305.xhp
-msgctxt ""
-"03020305.xhp\n"
-"tit\n"
-"help.text"
-msgid "Seek Statement [Runtime]"
-msgstr "Hima Barbaachaa [Runtime]"
-
-#: 03020305.xhp
-msgctxt ""
-"03020305.xhp\n"
-"bm_id3159413\n"
-"help.text"
-msgid "<bookmark_value>Seek statement</bookmark_value>"
-msgstr "<bookmark_value>Hima Barbaachaa</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 Statement [Runtime]\">Hima Barbaachaa [Runtime]</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 "Faayilii hima banaadhaan baname qubannoo itti aanee barreefamu ykn dubbifamuf qubannoo qindeessi."
-
-#: 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 "Faayilii darbee darbee argachuuf, himni barbaachaa lakkoofsa gabaasa itti aanee dhufu qindeessa."
-
-#: 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 "Faayiloota biraatiif,himni barbaachaa qubannoo baayitii mogaasa kan dalagni itti aanu mula'atu."
-
-#: 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 "Kanas ilaali: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Bani</link>, <link href=\"text/sbasic/shared/03020304.xhp\" name=\"Seek\"> Baraadi</link>."
-
-#: 03020305.xhp
-msgctxt ""
-"03020305.xhp\n"
-"hd_id3145785\n"
-"6\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Caasima:"
-
-#: 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 "Ulaagaalee:"
-
-#: 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>Lakkofsi karaa agargaa hima banaa keessatti fayyada."
-
-#: 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>Qubannoo: </emph>Qubannoo itti aanuu barreessuuf ykn dubisuuf. Qubannoon lakkofsa gidduu 1 and 2,147,483,647 moggaafama.Akkataa gosa faayilii kanaatti,qabannoon hamma gabaasaa agarsiisa (faayiliin haalata darbee darbeen kessatti) ykn qabannoo baayitii(faayilii lamee, bahaa, miiltessi,naqa ykn haalata).Baayitiin dura faayilii keessatt 1, Baayitiin faayilii lammaffa keessatti 2, fi kanaaf kan kan fakkaatan."
-
-#: 03030206.xhp
+#: 03132200.xhp
msgctxt ""
-"03030206.xhp\n"
+"03132200.xhp\n"
"tit\n"
"help.text"
-msgid "TimeValue Function [Runtime]"
-msgstr "Faankishinii Gatii Yeroo[Sa'aa darbe]"
+msgid "ThisComponent Statement [Runtime]"
+msgstr "Hima [Runtime] 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>Faankishinii Gatii Yeroo</bookmark_value>"
+msgid "<bookmark_value>ThisComponent property</bookmark_value><bookmark_value>components;addressing</bookmark_value>"
+msgstr "<bookmark_value>Amala ThisComponent</bookmark_value><bookmark_value>qaamota;gaheenya</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 Function [Runtime]\">Faankishinii Gatii Yeroo[Runtime]</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 [Runtime]\">ThisComponent [Runtime]</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 "Eenyummaa gatii yeroo kannen kennaman irraa sa'aa, Daqiiqaa fi sekondii ulaagaleetti akka diraanitti darban kanneen yeroo gatii numeerikii qeenxee keessa jiru ibsan.Gatiin kun addadummaa yeroowwan giddu jiru ibsa."
+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 "Amalootni isaa akka dubbifamanii fi qindeeffamaniif qaama ka'aa to'ata. ThisComponent galmee Basic irraa fayyada,kan bakka bu'us galmee kan Basic ofkeessatti qabu dha. Akaakuun wanta ThisComponent dhaan gahamu akaakuu galmee irratti hundaa'a."
-#: 03030206.xhp
+#: 03132200.xhp
msgctxt ""
-"03030206.xhp\n"
-"hd_id3154138\n"
+"03132200.xhp\n"
+"hd_id3154346\n"
"3\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasima:"
+msgstr "caasimaa:"
-#: 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 "Gatii yeroo(Barruu akka diraaniitti)"
+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 "Gatii deebisi:"
-
-#: 03030206.xhp
-msgctxt ""
-"03030206.xhp\n"
-"par_id3156424\n"
-"6\n"
-"help.text"
-msgid "Date"
-msgstr "Guyyaa"
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 03030206.xhp
+#: 03132200.xhp
msgctxt ""
-"03030206.xhp\n"
-"hd_id3145172\n"
+"03132200.xhp\n"
+"par_id3154123\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Ulaagaalee:"
-
-#: 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> Himamsi diraanii kamiyyuu kan ati ittiin yeroo shallaguu barbaadde haala kanaan \"HH:MM:SS\" ta'a."
-
-#: 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 "Faankishinii gatii yeroo fayyadami gatii qeenxee kamiyyuu jijjiiruuf,kanaafuu addadummaa yeroo shallaguu dandeessa."
+msgid "' updates the \"Table of Contents\" in a text doc"
+msgstr "REMn \"Baafata\" galmee barruu tokko keessaa haaromsa"
-#: 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 "Faankishiniin gatii yeroo kun gosa gegeedaraa VarType 7 waliin(Guyyaa) fi gatii kana akka sireenya mirree keessaatti gidduu 0 fi 0.9999999999 cimmisi."
+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 "Akkuma fankishiniin guyyaa enyummaa fi gatii eenyumaatiin wal falleesse ,yommuu eenyumman gatii guyyaatti guyyaa murtaa'een walitti dhufu,gatii faankishinii gatii yeroo waliin shallaguu ni dandeessa garuu qorachuu hin dandeessu."
-
-#: 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 "Faankishinii yeroo eenyummaa keessatti,ulaagalee garaagaraa dabarsuu dandeessa (Sa'aa, Daqiiqaa, Sekoondii) akka himamsa numeerika garaagaraatti. Fankishinii gatii yerootiif,haata'u malee, diran ulaagalee yeroo of keessatti qabatan dabarsuu dandeessa."
-
-#: 03030206.xhp
-msgctxt ""
-"03030206.xhp\n"
-"hd_id3145271\n"
-"13\n"
-"help.text"
-msgid "Example:"
-msgstr "Fakkeenya:"
-
-#: 03030206.xhp
-msgctxt ""
-"03030206.xhp\n"
-"par_id3149378\n"
-"33\n"
-"help.text"
-msgid "a1 = \"start time\""
-msgstr "a1 = \"start time\""
-
-#: 03030206.xhp
-msgctxt ""
-"03030206.xhp\n"
-"par_id3145800\n"
-"34\n"
-"help.text"
-msgid "b1 = \"end time\""
-msgstr "b1 = \"end time\""
-
-#: 03030206.xhp
-msgctxt ""
-"03030206.xhp\n"
-"par_id3151074\n"
-"35\n"
-"help.text"
-msgid "c1 = \"total time\""
-msgstr "c1 = \"total time\""
+msgid "' use the default name for Table of Contents and a 1"
+msgstr "REM maqaa durtii gabatee baafataa fi 1 fayyadama"
-#: 03120403.xhp
+#: 03132300.xhp
msgctxt ""
-"03120403.xhp\n"
+"03132300.xhp\n"
"tit\n"
"help.text"
-msgid "StrComp Function [Runtime]"
-msgstr "StrComp Faankishinii [Runtime]"
+msgid "CreateUnoValue Function [Runtime]"
+msgstr "Faankishinii [Runtime] 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 faankishinii</bookmark_value>"
+msgid "<bookmark_value>CreateUnoValue function</bookmark_value>"
+msgstr "<bookmark_value>faankishinii 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 Function [Runtime]\">StrComp Faankishinii[Runtime]</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 Function [Runtime]\"> Faankishinii [Runtime] 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 "Diraawwan lama waliin dorgomsiisuu fi gatii itergaa kan bu'aa wal dorgomsiisuu bakka bu'u deebisa."
+msgid "Returns an object that represents a strictly typed value referring to the Uno type system."
+msgstr "Wanta gatiin isaa sirritti beekame kan sirna akaakuu Uno wabeeffatu bakka bu'u deebisa."
-#: 03120403.xhp
+#: 03132300.xhp
msgctxt ""
-"03120403.xhp\n"
-"hd_id3153345\n"
+"03132300.xhp\n"
+"par_id3143267\n"
"3\n"
"help.text"
-msgid "Syntax:"
-msgstr "Caasimaa:"
+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 "Yommuu wanti kun gara Uno darbe ufmaan gara akaakuu walgitaa kamittuu ni jijjiirama. Akaakuun kun maqaa akaakuu Uno gahaa dhaan dirqama adda baafamu qaba."
-#: 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 "$[officename] API deddeebiitiin akaakuu Any fayyadama. Inni kun akaakuu jijjiiramaa gama biraatiin naannoo biraarraa beekamu dha. Akaakuun kan of keessatti qabatu akaakuu dhalata Uno tokkoo fi walquunnama Uno keessatti fayyada."
-#: 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 "Gatii deebii:"
+msgid "Syntax:"
+msgstr "caasimaa:"
-#: 03120403.xhp
+#: 03132300.xhp
msgctxt ""
-"03120403.xhp\n"
-"par_id3156152\n"
+"03132300.xhp\n"
+"par_id3154760\n"
"6\n"
"help.text"
-msgid "Integer"
-msgstr "Itergaa"
+msgid "oUnoValue = CreateUnoValue( \"[]byte\", MyBasicValue ) to get a byte sequence."
+msgstr "oUnoValue = CreateUnoValue( \"[]byte\", MyBasicValue ) tartiiba baayitii argachuuf."
-#: 03120403.xhp
+#: 03132300.xhp
msgctxt ""
-"03120403.xhp\n"
-"hd_id3150984\n"
+"03132300.xhp\n"
+"par_id3150541\n"
"7\n"
"help.text"
-msgid "Parameter:"
-msgstr "Ulaagaa:"
+msgid "If CreateUnoValue cannot be converted to the specified Uno type, and error occurs. For the conversion, the TypeConverter service is used."
+msgstr "yoo jijjiiruun CreateUnoValue gara akaakuu Uno adda baafameetti hin danda'amne, dogoggorri ni dhalata. tajaajila jijjiirraf TypeConverter ni fayyada."
-#: 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> Himata Diraa kamiyyuu"
+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 "Faankishiniin kun ni fayyada jedhame kan yaadamee yoo haalli jijjiiruu durtii Basic gara akaakuu Uno ttii gahaa ta'uu baate dha. Haalli kun dhalachuu kan danda'u yeroo ati walquunnama generic any irratti hundaa'e kan akka XPropertySet::setPropertyValue( Name, Value ) or X???Container::insertBy???( ???, Value ), from $[officename] Basic dha. Sababa tajaajila walgitaa qofa keessatti ibsamaniif, Basic runtime akaaku akkanaa beekuu hin danda'u."
-#: 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> Himata Diraa kamiyyuu"
+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 "Haala akkanaa irratti , $[officename] Basic akaakuu walitti firoomsi gaarii kan Basic type ati jijjiruu barbaaddu filata. Haa ta'u malee, yoo akaakuun hin taane filatame,dogoggorri ni dhalata.Gatii akaakuu Uno hin beekamne uumuuf faankishinii CreateUnoValue() tti fayyadami."
-#: 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> Ulaagaan dirqaalee kuni, tooftaa wal madaalli qindeessa. Yoo Compare = 1 ta'e, walmadaalliin diraa guddina qubeerratti hundaa'a. Yoo Compare = 0 ta'e, gargar baasuun qubeewwan gurguddaa fi xixiqqaa hin jiraatu."
-
-#: 03120403.xhp
-msgctxt ""
-"03120403.xhp\n"
-"hd_id3154940\n"
-"13\n"
-"help.text"
-msgid "Return value"
-msgstr "Gatii deebii"
-
-#: 03120403.xhp
-msgctxt ""
-"03120403.xhp\n"
-"par_id3150358\n"
-"27\n"
-"help.text"
-msgid "If Text1 < Text2 the function returns -1"
-msgstr "Yoo Text1 < Text2 ta'e, faankishinichi -1 deebisa"
-
-#: 03120403.xhp
-msgctxt ""
-"03120403.xhp\n"
-"par_id3151043\n"
-"28\n"
-"help.text"
-msgid "If Text1 = Text2 the function returns 0"
-msgstr "Yoo Text1 = Text2 ta'e, faankishinichi 0 deebisa"
-
-#: 03120403.xhp
-msgctxt ""
-"03120403.xhp\n"
-"par_id3158410\n"
-"29\n"
-"help.text"
-msgid "If Text1 > Text2 the function returns 1"
-msgstr "Yoo Text1 > Text2 ta'e, faankishinichi 1 deebisa."
+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 "Gatiiwwan non-Any dabarsuufis itti fayyadamuu ni dandeessa, garuu hin gorfamu.yoo Basic durseetoo gosa galtee ni beeka ta'e, faankishinii CreateUnoValue() fayyadamuun dalagaalee jijjirraa dabalataa kan raawwii Basic suuta gochisiisu fida."
-#: 03120403.xhp
+#: 03132400.xhp
msgctxt ""
-"03120403.xhp\n"
-"hd_id3153968\n"
-"18\n"
+"03132400.xhp\n"
+"tit\n"
"help.text"
-msgid "Example:"
-msgstr "Fakkeenya:"
+msgid "CreateObject Function [Runtime]"
+msgstr "Faankishinii CreateObject [Runtime]"
-#: 03120402.xhp
+#: 03132400.xhp
msgctxt ""
-"03120402.xhp\n"
-"tit\n"
+"03132400.xhp\n"
+"bm_id659810\n"
"help.text"
-msgid "Len Function [Runtime]"
-msgstr "Faankishinii Len [Runtime]"
+msgid "<bookmark_value>CreateObject function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii 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>faankishinnii Len</bookmark_value>"
+msgid "<link href=\"text/sbasic/shared/03132400.xhp\">CreateObject Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03132400.xhp\">Faankishinii CreateObject [Runtime]</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 Function [Runtime]\">Faankishinii Len [Runtime]</link>"
+msgid "<ahelp hid=\".\">Creates a UNO object. On Windows, can also create OLE objects.</ahelp>"
+msgstr "<ahelp hid=\".\"> UNO object uuma. Foddaaleerrattis, OLE objects uumuu ni danda'a.</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 "Lakkoofsa arfiiwwanii kanneen diraa tokko keessa jiranii , yookiin lakkoofsa baayitii kanneen jijjiiramaa kuusuuf barbaachisan deebisa."
+msgid "This method creates instances of the type that is passed as parameter."
+msgstr "Tooftaan kun akaakuu miseensota akka ulaagaatti darban uuma."
-#: 03120402.xhp
+#: 03132400.xhp
msgctxt ""
-"03120402.xhp\n"
-"hd_id3159177\n"
-"3\n"
+"03132400.xhp\n"
+"par_idN105A2\n"
"help.text"
msgid "Syntax:"
-msgstr "Caasimaa:"
+msgstr "caasimaa:"
-#: 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 (Barruu akka diraatti)"
+msgid "oObj = CreateObject( type )"
+msgstr "oObj = CreateObject( type )"
-#: 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 "Gatii deebii"
+msgid "Example:"
+msgstr "Fakkeenya:"
-#: 03120402.xhp
+#: 03132500.xhp
msgctxt ""
-"03120402.xhp\n"
-"par_id3143270\n"
-"6\n"
+"03132500.xhp\n"
+"tit\n"
"help.text"
-msgid "Long"
-msgstr "Dheeraa"
+msgid "GetDefaultContext Function [Runtime]"
+msgstr "faankishinii GetDefaultContext [Runtime]"
-#: 03120402.xhp
+#: 03132500.xhp
msgctxt ""
-"03120402.xhp\n"
-"hd_id3147531\n"
-"7\n"
+"03132500.xhp\n"
+"bm_id4761192\n"
"help.text"
-msgid "Parameters:"
-msgstr "Ulaagaalee:"
+msgid "<bookmark_value>GetDefaultContext function</bookmark_value>"
+msgstr "<bookmark_value>faankishinii 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>Barruu:</emph>Himata diraa kamiyyuu yookiin akaakuu jijjiiramaa kan biraa ti."
+msgid "<link href=\"text/sbasic/shared/03132500.xhp\">GetDefaultContext Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03132500.xhp\">faankishinii GetDefaultContext [Runtime]</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 "Fakkeenya:"
+msgid "Returns the default context of the process service factory, if existent, else returns a null reference."
+msgstr "Kan inni deebisu tajaajila durtii warshaa yookiin wabii duwwaa ta'e dha."
-#: 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 Returns 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 "Faankishiniin sa'aa darbee kun kan deebisu qaama akka durtiitti fayyade dha, yoo tajaajilli battalee XmultiServiceFactory irraati. Odeeffannoo dabalataaf <item type=\"literal\">UNO profeeshinii </item> boqonnaa <item type=\"literal\">Qajeelfama Dagaagsitootaaf </item>fuula <link href=\"http://api.openoffice.org\">api.openoffice.org</link> irra jiru ilaali."
-#: 03130600.xhp
+#: 05060700.xhp
msgctxt ""
-"03130600.xhp\n"
+"05060700.xhp\n"
"tit\n"
"help.text"
-msgid "Wait Statement [Runtime]"
-msgstr "Hima [Runtime] turii"
+msgid "Macro"
+msgstr "Maakroo"
-#: 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>Hima turii</bookmark_value>"
+msgid "<bookmark_value>events;linked to objects</bookmark_value>"
+msgstr "<bookmark_value>mudatawwan;wantootaan wal qabatan</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 Statement [Runtime]\">Hima [Runtime] turii</link>"
+msgid "<link href=\"text/sbasic/shared/05060700.xhp\" name=\"Macro\">Macro</link>"
+msgstr "<link href=\"text/sbasic/shared/05060700.xhp\" name=\"Macro\">Maakroo</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 "Raawwii sagantaa kan ati dheerina yeroo miiliisekondiidhaan ifteessiteef gufachiisa."
+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=\".\">Maakroo yommuu godaayyaan, saxaatoon, yookiin wanti OLE object filataman akka raawwatamu barbaaddu filadhu.</ahelp> Wanta filatamerratti hundaa'uun,faankishinichi kan argamu <emph>Maakroo</emph> caancala <emph>Wanta</emph> qaaqu irratti, yookiin <emph>Maakroo Ramadi</emph> qaaqu keessatti dha."
-#: 03130600.xhp
+#: 05060700.xhp
msgctxt ""
-"03130600.xhp\n"
-"hd_id3143229\n"
+"05060700.xhp\n"
+"hd_id3150503\n"
"3\n"
"help.text"
-msgid "Syntax:"
-msgstr "Caasimaa:"
+msgid "Event"
+msgstr "Mudata"
-#: 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\">Mudatawwan maakroowwan wanta filamaniif ramadaman isaan barbaachisoo tarreessa.</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 "Ulaagaalee:"
+msgid "The following table describes the macros and the events that can by linked to objects in your document:"
+msgstr "Gabateen armaan gadii maakroowwanii fi mudata galmee keetiin walqabachuu danda'an ibsa."
-#: 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>miiliisekondii:</emph> Himannoo lakkoofsaa kan hammammii yeroo (miiliisekondiidhaan) osoo sagantaan kun hin raawwatin eegamu qabu hima."
+msgid "Event"
+msgstr "Mudata"
-#: 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 "Fakkeenya:"
+msgid "Event trigger"
+msgstr "Mudata ceesisuu"
-#: 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 & \" Ticks\" ,0,\"The pause lasted\""
+msgid "OLE object"
+msgstr "Wanta 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 "Halluu faankishinoota"
+msgid "Graphics"
+msgstr "Saxaatoo"
-#: 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=\"Color Functions\">Halluu faankishinoota</link>"
+msgid "Frame"
+msgstr "Goodayya"
-#: 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 "kutaan kun faankishinii sa`atii darbee halluuwwan ibsuuf gargaaran hiika."
+msgid "AutoText"
+msgstr "Barruu ufmaa"
-#: 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 "Faankishinii [Runtime] GetGuiType"
+msgid "ImageMap area"
+msgstr "Naannoo barruyyaa fakkaattii"
-#: 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>faankishinii GetGuiType</bookmark_value>"
+msgid "Hyperlink"
+msgstr "Geessituu"
-#: 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 Function [Runtime]\"> Faankishinii [Runtime] GetGuiType</link>"
+msgid "Click object"
+msgstr "Wanta cuqaasi"
-#: 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 "Gatii lakkofsaa kan walquunnama itti fayyadamaa saxaatoo ifteessu deebisa."
+msgid "Object is selected."
+msgstr "Wanti ni filatama."
-#: 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 "Sa'aa darbeen faankishinii kanaa walitti ta'iinsa itti fufaa fooyya'a darbee qofaaf kan kennamani dha. Gatiin deebiis naannoolee maamila- kaadhimamaa keessatti hin ibsaman"
+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 "Caasimaa:"
+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 "Gatii deebii:"
+msgid "Mouse over object"
+msgstr "Hantuutee wantarraa"
-#: 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 "Itergaa"
+msgid "Mouse moves over the object."
+msgstr "Hantuuteen wantarra sochooti."
-#: 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 "Gatii deebii:"
+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: Foddaalee"
+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 "Fakkeenya:"
+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 Function [Runtime]"
+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 Dalaga</bookmark_value>"
+msgid "Trigger Hyperlink"
+msgstr "Geessituu Ceesisi"
-#: 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 Function [Runtime]\">Err Dalaga[Runtime]</link>"
+msgid "Hyperlink assigned to the object is clicked."
+msgstr "Geessituun wantaaf ramadame ni cuqaasama."
-#: 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 "Lakkaddaa dogogoraa yommuu sagantichi hojjetuu addaan baasu deebisi."
+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 "Syntax:"
+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 "Return value:"
+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 "Hantuuteen wanta gaddhiisti"
-#: 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 "Parameters:"
+msgid "Mouse moves off of the object."
+msgstr "Hantuuteen wanta maqsiti."
-#: 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 "Dalagaan Err kan fayyadu dogogora addaan baafachuuf, dogogora murteessuu fi sirressuufi."
+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 "Fakkeeya:"
+msgid "x"
+msgstr ""
-#: 03050200.xhp
-#, fuzzy
+#: 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 REM Set up error handler"
+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 "Dogogorri REM kan uumamu dhabamuu faayiliitini."
+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 \"Dogogora\" & Err & \": \" & Error$ + chr(13) + \"Sarara : \" + Erl + chr(13) + Now , 16 ,\"Dogogorri uumame\""
+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 "Faankishinii FindObject [Runtime]"
+msgid "Graphics load successful"
+msgstr "Milkaa'ina fe'ama saxaatoo"
-#: 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>Faankishinii FindObject</bookmark_value>"
+msgid "Graphics are loaded successfully."
+msgstr "Saxaatoowwan guutummaatti fe'amaniiru."
-#: 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 Function [Runtime]\">Faankishinii FindObject [Runtime]</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 "Wanti yeroo sa'aa darbee maqaa wantaatiin akka ulaagaa diraatti akka raawwatamu dandeessisa."
+msgid "Graphics load terminated"
+msgstr "Fe'ii saxaatoo xumurame"
-#: 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 "Fakkeenyaaf, ajajni armaan gadii:"
+msgid "Loading of graphics is stopped by the user (for example, when downloading the page)."
+msgstr "Fe'iinsa saxaatoo fayyadamaadhaan dhaabbate (fakkeenyaaf, yeroo fuula naqachuu)."
-#: 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 "Garee ajajaa inni ittiin walqabatu:"
+msgid "Graphics load faulty"
+msgstr "Saxaatoo fe'uu dadhabuu"
-#: 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 "Saxaatoon guutumaan guututti hin fe'amne, fakkeenyaaf, yoo saxaatoon hin argamne."
-#: 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 "Naqa Arfiilee alpha."
-#: 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 "Barruuleen gabatee cuqoo irraati galfamu."
-#: 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 "Arfiilee alpha malee galchuu."
-#: 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 "Arfiileen maxxansalaa, fakkeenyaaf, caancaloota fi sarqurxawwan gabatee cuqoo irraati galfamu."
-#: 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 "Maqaawwan yeroo sa'aa darbee bifa kamaatiin akka uumaman eeyyama. Fakkeenyaaf:"
+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 "Maqaawwan to'annaa shan bifa marsaatiin \"TextEdit1\" haga \"TextEdit5\" uumuuf oola."
+msgid "Resize frame"
+msgstr "Godayya jijjiiri."
-#: 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 "Dabalataan: <link href=\"text/sbasic/shared/03103900.xhp\" name=\"FindPropertyObject\">FindPropertyObject</link> ilaali"
+msgid "Frame is resized with the mouse."
+msgstr "Godayyi hantuuteedhaan jijjirama."
-#: 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 "Caasimaa:"
+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 "Godayya sochoosi."
-#: 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 "Ulaagaalee:"
+msgid "Frame is moved with the mouse."
+msgstr "Godayyi hantuuteedhaan socho'a."
-#: 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> Diraa maqaa wantaa yeroo sa'aa darbee raawwachuu barbaadduu ibsa."
+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 "Faankishinii Lof [Runtime]"
+msgid "Before inserting AutoText"
+msgstr "Osoo barruun ufmaa hin sagamin."
-#: 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> Faankishinii Lof</bookmark_value>"
+msgid "Before a text block is inserted."
+msgstr "Saanduqni barruu osoo hin sagamin."
-#: 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 Function [Runtime]\"> Faankishinii Lof [Runtime]</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 "Hamamtaa faayilii banaa baayitiin deebisa."
+msgid "After inserting AutoText"
+msgstr "Erga barruun ufmaa sagamee booda."
-#: 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 "Caasima:"
+msgid "After a text block is inserted."
+msgstr "Erga saanduqni barruu sagamee booda."
-#: 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 "Gatii deebii:"
+msgid "Macros"
+msgstr "Maakroowwan"
-#: 03020303.xhp
+#: 05060700.xhp
msgctxt ""
-"03020303.xhp\n"
-"par_id3147230\n"
+"05060700.xhp\n"
+"par_id3150432\n"
"6\n"
"help.text"
-msgid "Long"
-msgstr "Dheeraa"
+msgid "Choose the macro that you want to execute when the selected event occurs."
+msgstr "Maakroo yommu mudatni filatame mudate akka raawwatamu barbaaddu fili."
-#: 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 "Godayyi mudata faankishinii faana walqabsiisuuf si fayyada,kanumaanis faankishinichi mudata geggeessu yookiin $[officename] Writer hubata."
+
+#: 05060700.xhp
+msgctxt ""
+"05060700.xhp\n"
+"hd_id3155587\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Ulaagaaalee:"
+msgid "Category"
+msgstr "Akaakuu"
-#: 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> Himannoo numeerikaalaa kan baay'ina faayilii of keessaa qabu innis hima banaadhaan ibsama."
+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\">Galmeewwanii fi fayyadama open $[officename] tarreessa.Maqaa bakka maakroowwan itti olkaawuu barbaadduu cuqaasi.</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 "Dheerina faayilii hin banamnee argachuuuf,faankishinii kana <emph>FileLen</emph> fayyadami."
+msgid "Macro name"
+msgstr "Maqaa maakroo"
-#: 03020303.xhp
+#: 05060700.xhp
msgctxt ""
-"03020303.xhp\n"
-"hd_id3155415\n"
+"05060700.xhp\n"
+"par_id3151391\n"
"10\n"
"help.text"
-msgid "Example:"
-msgstr "Fakkeenya:"
-
-#: 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 must be a 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\">Maakroowwan jiran tarreessa. Maakroo wanta filatameef ramaduu barbaaddu cuqaasi.</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 "Barbaachaa #iNumber,1 REM Qubannoo duraaratti"
+msgid "Assign"
+msgstr "Ramadi"
-#: 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,, \"Kun barruu sarara tokkoffaati\" REM Barruudhaan guuta"
+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\">Maakroo filatame mudata adda baafameef ramada.</ahelp> Galfatni maakroo mudata booda qindeeffamu."
-#: 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,, \"Kun barruu sarara lammaffaati\""
+msgid "Remove"
+msgstr "Haqi"
-#: 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,, \"Kun barruu sarara sadaffaati\""
+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\">Maakroo wantoota filatamaniif ramadame haqa.</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,,\"Kun barruu sarara haaraa ti\""
+msgid "Macro selection"
+msgstr "Filmata maakroo"
-#: 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,\"Kun barruu kuusaa 20 ti\""
+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\">Maakroo ramaduu barbaaddu filadhu.</ahelp>"
-#: 03090401.xhp
+#: keys.xhp
msgctxt ""
-"03090401.xhp\n"
+"keys.xhp\n"
"tit\n"
"help.text"
-msgid "Call Statement [Runtime]"
-msgstr "Hima Waamicha[Runtime]"
+msgid "Keyboard Shortcuts in the Basic IDE"
+msgstr "Qaxxaamurawwan Gabatee cuqoo Basic IDE keessaa"
-#: 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>Hima Waamicha</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>gabatee cuqoo;IDE keessaa</bookmark_value><bookmark_value>furtuulee qaxxaamuraa;Basic IDE</bookmark_value><bookmark_value>IDE;qaxxaamurawwan gabatee cuqoo</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 Statement [Runtime]\">Hima Waamicha [Runtime]</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=\"Keyboard Shortcuts in the Basic IDE\">Qaxxaamurawwan Gabatee cuqoo keessa Basic IDE</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 "Sagantaa too'annoo gara sagantaa xiqqoo,faankishinii ,ykn adeemsa DLL tti dabarsi."
+msgid "In the Basic IDE you can use the following keyboard shortcuts:"
+msgstr "Basic IDE keessatti qaxxaamurawwan gabatee cuqoo itti aananitti fayyadamuu ni dandeessa."
-#: 03090401.xhp
+#: keys.xhp
msgctxt ""
-"03090401.xhp\n"
-"hd_id3153345\n"
+"keys.xhp\n"
+"par_id3154908\n"
"3\n"
"help.text"
-msgid "Syntax:"
-msgstr "Caasimaa:"
+msgid "Action"
+msgstr "Gocha"
-#: 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 "Qaxxaamura gabatee cuqoo"
-#: 03090401.xhp
+#: keys.xhp
msgctxt ""
-"03090401.xhp\n"
-"hd_id3150771\n"
+"keys.xhp\n"
+"par_id3159254\n"
"5\n"
"help.text"
-msgid "Parameters:"
-msgstr "Ulaagaalee:"
+msgid "Run code starting from the first line, or from the current breakpoint, if the program stopped there before"
+msgstr "yoo sagantaan achiitti dursee dhaabbate, sarara jalqabaarraa yookiin sarqurxa kanarraa jalqabiitii lakkadda kaasi."
-#: 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>Maqaa:</emph> Maqaa sagantaa xiqqaa,faankishinii , ykn DLL waamuu barbaadde."
+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>Ulaagaa:</emph> Ulaagaalee adeemsatti dabarsuu. Gosti fi lakkoofsi ulaagaalee ruutinii raawwatamu irratti hundaa'a."
+msgid "Stop"
+msgstr "Dhaabi"
-#: 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 "Yoo adeemsa waamtu jeefuraan dirqalee dha. Yoo faankishiniini akka himannoo tti raawwate,ulaagaaleen sarara dallaan hima keessatti golgamu. Yoo DLL'n waamame, jalqaba <emph>Declare-Statement</emph> keessatti dirqama ibsama."
-
-#: 03090401.xhp
-msgctxt ""
-"03090401.xhp\n"
-"hd_id3125865\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr "Fakkeeny:"
+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 "Hima [Runtime] Beep"
+msgid "Add <link href=\"text/sbasic/shared/01050100.xhp\" name=\"watch\">watch</link> for the variable at the cursor"
+msgstr "Jijjiiramtoota bakka qareetii <link href=\"text/sbasic/shared/01050100.xhp\" name=\"watch\">ilaalii</link> ida'i."
-#: 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>Hima 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 Statement [Runtime]\"> Hima [Runtime] Beep</link>"
+msgid "Single step through each statement, starting at the first line or at that statement where the program execution stopped before."
+msgstr "Ejjennoo tokko hima keessa, sarara jalqabaarraa jalqabee yookiin hima sana bakka raawwiin sagantaa dura itti dhaabbate."
-#: 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 "Haasawaa kompiitaraatiin sagalee xaphachiisa. Sagaleen kunis sirna irratti kan hundaa'uu fi hamtaa sagalee kan siif jijjiiruu hin dandeenye dha."
+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 "Caasimaa:"
+msgid "Single step as with F8, but a function call is considered to be only <emph>one</emph> statement"
+msgstr "Akkuma ejjato tokko F8, faankishinii yaamuun garuu akka hima <emph>tokko</emph> qofaatti fudhatama."
-#: 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 "Fakkeenya:"
+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 "Sarqurxa<link href=\"text/sbasic/shared/01030300.xhp\" name=\"breakpoint\"></link> bakka amma jirtu yookiin sarqurxa hunda kan filataman dandeessisi/dhoowwi."
-#: 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 "Hima DefCur[Runtime]"
+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>Hima DefCur</bookmark_value>"
+msgid "Enable/disable the breakpoint at the current line or all breakpoints in the current selection"
+msgstr "Sarqurxa bakka amma jirtutti yookiin sarqurxa hunda kan filataman dandeessisi/dhoowwi."
-#: 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\">Hima DefCur [Runtime]</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 "Yoo arfiin akaakuu labsii ykn jefuraa hin ifteeffamne,himni DefCur akaakuu jijjiiramaa durtii qindeessa,akkaataa hangii qubeen."
+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 "Maakroo kaa'e Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Ajaja</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Q tiin addan kutuun ni danda'ama, akkasumas ala Basic IDE. Yoo keessa Basic IDE jiraattee fi maakroon iddoo sarqurxaatti dhaabe, Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Q 'n raawwii maakroo ni dhaaba, garuu ati kana kan hubattu F5, F8, or Shift+F8 booda dha."
-#: 03101110.xhp
+#: main0211.xhp
msgctxt ""
-"03101110.xhp\n"
-"par_idN10590\n"
+"main0211.xhp\n"
+"tit\n"
"help.text"
-msgid "Syntax:"
-msgstr "Caasimaa:"
+msgid "Macro Toolbar"
+msgstr "Kamshaalee Maakroo"
-#: 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 "Kamshaalee<bookmark_value>; Basic IDE</bookmark_value><bookmark_value>kamshaalee maakroo</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 "Ulaagaalee:"
+msgid "<link href=\"text/sbasic/shared/main0211.xhp\" name=\"Macro Toolbar\">Macro Toolbar</link>"
+msgstr "<link href=\"text/sbasic/shared/main0211.xhp\" name=\"Macro Toolbar\">Kamshaalee Maakroo</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>Hangiiarfii:</emph> Qubeewwan kan hangii jijjiiramtootaa kan akaakuu deetaa durtii qindeessuu barbaaddu ifteessan."
+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>Kamshaaleen maakroo </emph>ajajawwan maakroo uumuuf, gulaaluu fi kaasuuf fayyadan ofkeessatti qaba.</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> Jefuraan kan akaakuu jijjiiramaa durtii qindeessu:"
+msgid "$[officename] Basic Help"
+msgstr "Gargaarsa $[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>Jefuraa: </emph>Akaakuu jijjiiramaa durtii"
+msgid "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link>"
+msgstr "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">Gargaarsa %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> Mahaallaqa"
+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 "Fakkeenya:"
+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 ""
-#: 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 hiika huddeelsoo akaakuu jijjiiramaaf:"
+msgid "Working with %PRODUCTNAME Basic"
+msgstr "%PRODUCTNAME Basic wajjin hojjechuu"
-#: 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 is an implicit currency variable"
+msgid "Help about the Help"
+msgstr "Gargaarsa waa'ee Gargaarsaa"
diff --git a/source/om/helpcontent2/source/text/sbasic/shared/01.po b/source/om/helpcontent2/source/text/sbasic/shared/01.po
index d3241891494..6ce1578fe98 100644
--- a/source/om/helpcontent2/source/text/sbasic/shared/01.po
+++ b/source/om/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: 2011-04-06 09:25+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14,201 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#: 06130500.xhp
-msgctxt ""
-"06130500.xhp\n"
-"tit\n"
-"help.text"
-msgid "Append libraries"
-msgstr "Mana kitaabootaa miiltessi"
-
-#: 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>mana kitaabootaa; ida'uu</bookmark_value><bookmark_value>ida'uu;mana kitaabootaa Bu'uura</bookmark_value>"
-
-#: 06130500.xhp
-msgctxt ""
-"06130500.xhp\n"
-"hd_id3150502\n"
-"1\n"
-"help.text"
-msgid "Append libraries"
-msgstr "Mana kitaabootaa miiltessi"
-
-#: 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=\".\">Mana kitaabaa Bu'uura <item type=\"productname\">%PRODUCTNAME</item> isa tarree ammaatti ida'uu barbaaduu aggarsisi, kana booda Bani irra cuqaasi.</ahelp>"
-
-#: 06130500.xhp
-msgctxt ""
-"06130500.xhp\n"
-"hd_id3149119\n"
-"3\n"
-"help.text"
-msgid "File name:"
-msgstr "Maqaa faayilii:"
-
-#: 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\">Maqaa yk xurree mana kitaabaa isa miiltessuu barbaadu galchi.</ahelp> Tarree irraa mana kitaabaa filachu nidandeesa."
-
-#: 06130500.xhp
-msgctxt ""
-"06130500.xhp\n"
-"hd_id3147291\n"
-"5\n"
-"help.text"
-msgid "Options"
-msgstr "Filannoo"
-
-#: 06130500.xhp
-msgctxt ""
-"06130500.xhp\n"
-"hd_id3147226\n"
-"7\n"
-"help.text"
-msgid "Insert as reference (read-only)"
-msgstr "Akka wabiitti saagi (dubbisqofaa)"
-
-#: 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\">Mana kitaabaa filaatamee akka faayilii dubbisqofaatti ida'a.Mani kitaabaa yammuu kastu irra deebi'ee fe’ama.<item type=\"productname\">%PRODUCTNAME</item>.</ahelp>"
-
-#: 06130500.xhp
-msgctxt ""
-"06130500.xhp\n"
-"hd_id3145071\n"
-"9\n"
-"help.text"
-msgid "Replace existing libraries"
-msgstr "Mana kitaabaa jiraataa bakka buusi"
-
-#: 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\">Mana kitaabaa maqaa tokko ta'aan mana kitaabaa ammeettiin bakka buusa.</ahelp>"
-
-#: 06130100.xhp
-msgctxt ""
-"06130100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Change Password"
-msgstr "Iggitaa Jijjiiri"
-
-#: 06130100.xhp
-msgctxt ""
-"06130100.xhp\n"
-"hd_id3159399\n"
-"1\n"
-"help.text"
-msgid "Change Password"
-msgstr "Iggitaa Jijjiiri"
-
-#: 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\">Mana kitaabaa filaatame iggitaan eegi.</ahelp> iggitaa haaraa galchufii yk iggitaa ammaa jijjiiruufii nidandeesa."
-
-#: 06130100.xhp
-msgctxt ""
-"06130100.xhp\n"
-"hd_id3154285\n"
-"3\n"
-"help.text"
-msgid "Old password"
-msgstr "Iggitaa moofa"
-
-#: 06130100.xhp
-msgctxt ""
-"06130100.xhp\n"
-"hd_id3153665\n"
-"4\n"
-"help.text"
-msgid "Password"
-msgstr "Iggitaa"
-
-#: 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\">Mana kitaabaa filaatameef iggitaa ammee galchi.</ahelp>"
-
-#: 06130100.xhp
-msgctxt ""
-"06130100.xhp\n"
-"hd_id3153126\n"
-"6\n"
-"help.text"
-msgid "New password"
-msgstr "Iggitaa haaraa"
-
-#: 06130100.xhp
-msgctxt ""
-"06130100.xhp\n"
-"hd_id3153628\n"
-"7\n"
-"help.text"
-msgid "Password"
-msgstr "Iggitaa"
-
-#: 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\">Mana kitaabaa filaatameef iggitaa haaraa galchi.</ahelp>"
-
-#: 06130100.xhp
-msgctxt ""
-"06130100.xhp\n"
-"hd_id3148947\n"
-"9\n"
-"help.text"
-msgid "Confirm"
-msgstr "Dhugoomsi"
-
-#: 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\">Mana kitaabaa filaatameef iggitaa haaraa irra deebi'i.</ahelp>"
-
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -271,7 +76,6 @@ msgid "Macro from / Save macro in"
msgstr "Maakroo irraa / Maakroo...keessa olkaa'i"
#: 06130000.xhp
-#, fuzzy
msgctxt ""
"06130000.xhp\n"
"par_id3153190\n"
@@ -380,7 +184,6 @@ msgid "Organizer"
msgstr "Qideessaa"
#: 06130000.xhp
-#, fuzzy
msgctxt ""
"06130000.xhp\n"
"par_id3148405\n"
@@ -613,3 +416,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\">Mana kitaabaa Bu'uura $[officename] isa tarree ammaatti ida'uu barbaaduu aggarsisi, kana booda Bani irra cuqaasi.</ahelp>"
+
+#: 06130100.xhp
+msgctxt ""
+"06130100.xhp\n"
+"tit\n"
+"help.text"
+msgid "Change Password"
+msgstr "Iggitaa Jijjiiri"
+
+#: 06130100.xhp
+msgctxt ""
+"06130100.xhp\n"
+"hd_id3159399\n"
+"1\n"
+"help.text"
+msgid "Change Password"
+msgstr "Iggitaa Jijjiiri"
+
+#: 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\">Mana kitaabaa filaatame iggitaan eegi.</ahelp> iggitaa haaraa galchufii yk iggitaa ammaa jijjiiruufii nidandeesa."
+
+#: 06130100.xhp
+msgctxt ""
+"06130100.xhp\n"
+"hd_id3154285\n"
+"3\n"
+"help.text"
+msgid "Old password"
+msgstr "Iggitaa moofa"
+
+#: 06130100.xhp
+msgctxt ""
+"06130100.xhp\n"
+"hd_id3153665\n"
+"4\n"
+"help.text"
+msgid "Password"
+msgstr "Iggitaa"
+
+#: 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\">Mana kitaabaa filaatameef iggitaa ammee galchi.</ahelp>"
+
+#: 06130100.xhp
+msgctxt ""
+"06130100.xhp\n"
+"hd_id3153126\n"
+"6\n"
+"help.text"
+msgid "New password"
+msgstr "Iggitaa haaraa"
+
+#: 06130100.xhp
+msgctxt ""
+"06130100.xhp\n"
+"hd_id3153628\n"
+"7\n"
+"help.text"
+msgid "Password"
+msgstr "Iggitaa"
+
+#: 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\">Mana kitaabaa filaatameef iggitaa haaraa galchi.</ahelp>"
+
+#: 06130100.xhp
+msgctxt ""
+"06130100.xhp\n"
+"hd_id3148947\n"
+"9\n"
+"help.text"
+msgid "Confirm"
+msgstr "Dhugoomsi"
+
+#: 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\">Mana kitaabaa filaatameef iggitaa haaraa irra deebi'i.</ahelp>"
+
+#: 06130500.xhp
+msgctxt ""
+"06130500.xhp\n"
+"tit\n"
+"help.text"
+msgid "Append libraries"
+msgstr "Mana kitaabootaa miiltessi"
+
+#: 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>mana kitaabootaa; ida'uu</bookmark_value><bookmark_value>ida'uu;mana kitaabootaa Bu'uura</bookmark_value>"
+
+#: 06130500.xhp
+msgctxt ""
+"06130500.xhp\n"
+"hd_id3150502\n"
+"1\n"
+"help.text"
+msgid "Append libraries"
+msgstr "Mana kitaabootaa miiltessi"
+
+#: 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=\".\">Mana kitaabaa Bu'uura <item type=\"productname\">%PRODUCTNAME</item> isa tarree ammaatti ida'uu barbaaduu aggarsisi, kana booda Bani irra cuqaasi.</ahelp>"
+
+#: 06130500.xhp
+msgctxt ""
+"06130500.xhp\n"
+"hd_id3149119\n"
+"3\n"
+"help.text"
+msgid "File name:"
+msgstr "Maqaa faayilii:"
+
+#: 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\">Maqaa yk xurree mana kitaabaa isa miiltessuu barbaadu galchi.</ahelp> Tarree irraa mana kitaabaa filachu nidandeesa."
+
+#: 06130500.xhp
+msgctxt ""
+"06130500.xhp\n"
+"hd_id3147291\n"
+"5\n"
+"help.text"
+msgid "Options"
+msgstr "Filannoo"
+
+#: 06130500.xhp
+msgctxt ""
+"06130500.xhp\n"
+"hd_id3147226\n"
+"7\n"
+"help.text"
+msgid "Insert as reference (read-only)"
+msgstr "Akka wabiitti saagi (dubbisqofaa)"
+
+#: 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\">Mana kitaabaa filaatamee akka faayilii dubbisqofaatti ida'a.Mani kitaabaa yammuu kastu irra deebi'ee fe’ama.<item type=\"productname\">%PRODUCTNAME</item>.</ahelp>"
+
+#: 06130500.xhp
+msgctxt ""
+"06130500.xhp\n"
+"hd_id3145071\n"
+"9\n"
+"help.text"
+msgid "Replace existing libraries"
+msgstr "Mana kitaabaa jiraataa bakka buusi"
+
+#: 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\">Mana kitaabaa maqaa tokko ta'aan mana kitaabaa ammeettiin bakka buusa.</ahelp>"
diff --git a/source/om/helpcontent2/source/text/sbasic/shared/02.po b/source/om/helpcontent2/source/text/sbasic/shared/02.po
index 2b4e931fa16..1bff6007afc 100644
--- a/source/om/helpcontent2/source/text/sbasic/shared/02.po
+++ b/source/om/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: 2011-04-12 09:22+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14,145 +14,134 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#: 11150000.xhp
+#: 11010000.xhp
msgctxt ""
-"11150000.xhp\n"
+"11010000.xhp\n"
"tit\n"
"help.text"
-msgid "Save Source As"
-msgstr "Madda Akka...Olkaa'i"
+msgid "Library"
+msgstr "Mana kitaabaa"
-#: 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=\"Save Source As\">Madda Akka...Olkaa'i</link>"
+msgid "<link href=\"text/sbasic/shared/02/11010000.xhp\" name=\"Library\">Library</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11010000.xhp\" name=\"Library\">ManaKitaabaa</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\">Lakkadda maddaa kan maakroo Bu'uura filaatamee olkaa'a.</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\">ManaKitaabaa gulaaluu barbaaduu filadhu. </ahelp> Muraan mana kitaabaa atti filtee Bu'uura IDE keessaatti agarsiisaameera."
-#: 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\">Sajoo</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\">ManaKitaabaa tarree sanduuqa</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 "Madda Akka...Olkaa'i"
+msgid "Library List Box"
+msgstr "ManaKitaabaa Tarree Sanduuqa"
-#: 11140000.xhp
+#: 11020000.xhp
msgctxt ""
-"11140000.xhp\n"
+"11020000.xhp\n"
"tit\n"
"help.text"
-msgid "Insert Source Text"
-msgstr "Madda Barruu Saagi"
+msgid "Compile"
+msgstr "Rogeessa"
-#: 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=\"Insert Source Text\">Madda Barruu Saagi</link>"
+msgid "<link href=\"text/sbasic/shared/02/11020000.xhp\" name=\"Compile\">Compile</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11020000.xhp\" name=\"Compile\">Rogeessa</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\">Madda barruu Bu'uura foddaa IDE Bu'uura keessaa bana.</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 "Qaree lakkadda keessa iddoo barruu maddaa saaguu barbaadde olkaa'itii, sajoo <emph>Barruu maddaa saagi</emph> cuqaasi. Faayilii barruu maddaa Basic ati saaguu barbaadde ofkeessaa qabu akeekiitii ittaansii <emph>Bani</emph> cuqaasi."
+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\">Maakroo Bu'uuraa rogeessa.</ahelp>erga jijjiirama irratti fiddeen booda maakroo rogeessuu barbaadda, ykn yoo maakroon akkaataalee baaqqee ykn adeemsaa fayyadamee dha."
-#: 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\">Sajoo</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\">Sajoo</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 "Madda barruu saagi"
+msgid "Compile"
+msgstr "Rogeessa"
-#: 11190000.xhp
+#: 11030000.xhp
msgctxt ""
-"11190000.xhp\n"
+"11030000.xhp\n"
"tit\n"
"help.text"
-msgid "Export Dialog"
-msgstr ""
+msgid "Run"
+msgstr "Ka'insa"
-#: 11190000.xhp
-#, fuzzy
+#: 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>"
+msgid "<link href=\"text/sbasic/shared/02/11030000.xhp\" name=\"Run\">Run</link>"
msgstr "<link href=\"text/sbasic/shared/02/11030000.xhp\" name=\"Run\">Ka'insa</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 ""
+msgid "<ahelp hid=\".uno:RunBasic\">Runs the first macro of the current module.</ahelp>"
+msgstr "<ahelp hid=\".uno:RunBasic\">Maakroo isa jalqaaba kan muraa ammee kaasa.</ahelp>"
-#: 11190000.xhp
-#, fuzzy
+#: 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_managebreakpoints.png\" width=\"0.2228inch\" height=\"0.2228inch\"><alt id=\"alt_id3155339\">Sajoo</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\">Sajoo</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 "Ka'insa"
#: 11040000.xhp
msgctxt ""
@@ -189,7 +178,6 @@ msgid "<ahelp hid=\".uno:BasicStop\">Stops running the current macro.</ahelp><sw
msgstr "<ahelp hid=\".uno:BasicStop\">Maakroo ammee kaasuu dhaaba.</ahelp><switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline> Itti dabaltees Shift+Ctrl+Q dhiibuu dandeessa.</defaultinline></switchinline>"
#: 11040000.xhp
-#, fuzzy
msgctxt ""
"11040000.xhp\n"
"par_id3146797\n"
@@ -206,6 +194,311 @@ msgctxt ""
msgid "Stop"
msgstr "Dhaabi"
+#: 11050000.xhp
+msgctxt ""
+"11050000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Single Step"
+msgstr "Ejjatoo Altokkee"
+
+#: 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=\"Single Step\">Ejjatoo Altokkee</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\">Ajaja itti aanuu booda maakroo kaasa akkasumas dhaaba.</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 "Ajaja kana konjaakshinii keessatti ajaja <link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Watch\">Ilaali</link> wajjin dogongoroota yakkimuuf yayyadamuu dandeessa."
+
+#: 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\">Sajoo</alt></image>"
+
+#: 11050000.xhp
+msgctxt ""
+"11050000.xhp\n"
+"par_id3147573\n"
+"3\n"
+"help.text"
+msgid "Single Step"
+msgstr "Ejjatoo Altokkee"
+
+#: 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=\"Procedure Step function\">Dalagaa Ejjatoo Adeemsa</link>"
+
+#: 11060000.xhp
+msgctxt ""
+"11060000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Procedure Step"
+msgstr "Ejjatoo Adeemsa"
+
+#: 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=\"Procedure Step\">Ejjatoo Adeemsa</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\">Adeemsa itti aanuu booda maakroo kaasa akkasumas dhaaba.</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 "Ajaja kana konjaakshinii keessatti ajaja <link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Watch\">Ilaali</link> wajjin dogongoroota yakkimuuf yayyadamuu dandeessa."
+
+#: 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\">Sajoo</alt></image>"
+
+#: 11060000.xhp
+msgctxt ""
+"11060000.xhp\n"
+"par_id3154307\n"
+"3\n"
+"help.text"
+msgid "Procedure Step"
+msgstr "Ejjatoo Adeemsa"
+
+#: 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=\"Single Step function\">Dalagaa Ejjatoo Altokkee</link>"
+
+#: 11070000.xhp
+msgctxt ""
+"11070000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Breakpoint"
+msgstr "Sarqurxa"
+
+#: 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=\"Breakpoint\">Sarqurxa</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\">Sagantaa sararaa keessaatti sarquxii saaga.</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 "Sarqurxni qabdoo qaree irratti saagame. Sagantaa hiikuuf sarqurxa fayyadami osoo dogongorri hin uumamin dura. Achiin sagantaa halata <link href=\"text/sbasic/shared/02/11050000.xhp\" name=\"Single Step\">Ejjatoo Baaqqee</link> keessatti kaasuudhaan yakkimuu gochuu dandeessa hanga dogongorri uumamutti. Qabeentaa jijjiiramtoota barbaachisoo mirkaneeffachuuf sajoo <link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Watch\">Ilaali</link> fayyadamuu dandeessa."
+
+#: 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\">Sajoo</alt></image>"
+
+#: 11070000.xhp
+msgctxt ""
+"11070000.xhp\n"
+"par_id3149416\n"
+"3\n"
+"help.text"
+msgid "Breakpoint"
+msgstr "Sarqurxa"
+
+#: 11080000.xhp
+msgctxt ""
+"11080000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Enable Watch"
+msgstr "Sa'aatii Dandeessisi"
+
+#: 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=\"Enable Watch\">Sa'aatii Dandeessisi</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\">Jijjiiramoota maakroo keessaa mul'isuuf sajoo kana cuqaasi.qabeentootii jijjiiramaa foddaa addaa keessaatti agarsiisaamaniru.</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 "Maqaa jijjiiramaa isa filatu cuqaasi, achiin sajoo <emph>Ilaalli Dandeessisa</emph> cuqaasi. Gatiin jijjiiramaaf ramadame mqaa isaatti aanee agarsiifama. Gatiin kun seranaan haaromu."
+
+#: 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\">Sajoo</alt></image>"
+
+#: 11080000.xhp
+msgctxt ""
+"11080000.xhp\n"
+"par_id3150276\n"
+"3\n"
+"help.text"
+msgid "Enable Watch"
+msgstr "Sa'aatii Dandeessisi"
+
+#: 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 "Jijjiiramaa sa'aatii haquuf, jijjiiramaa foddaa Sa'aatii keessa fili, kana booda sajoo<emph> Sa'aatii Haqi</emph> cuqaasi."
+
+#: 11090000.xhp
+msgctxt ""
+"11090000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Object Catalog"
+msgstr "Galaalee Wantaa"
+
+#: 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=\"Object Catalog\">Galaalee Wantaa</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\">Sajoo</alt></image>"
+
+#: 11090000.xhp
+msgctxt ""
+"11090000.xhp\n"
+"par_id3154515\n"
+"3\n"
+"help.text"
+msgid "Object Catalog"
+msgstr "Galaalee Wantaa"
+
+#: 11090000.xhp
+msgctxt ""
+"11090000.xhp\n"
+"hd_id3146794\n"
+"13\n"
+"help.text"
+msgid "Window Area"
+msgstr "Bal'ina Foddaa"
+
+#: 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"
@@ -249,48 +542,48 @@ msgctxt ""
msgid "Macros"
msgstr "Maakroota"
-#: 11160000.xhp
+#: 11110000.xhp
msgctxt ""
-"11160000.xhp\n"
+"11110000.xhp\n"
"tit\n"
"help.text"
-msgid "Step Out"
-msgstr "Bahi"
+msgid "Modules"
+msgstr "Muroota"
-#: 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=\"Step Out\">Bahi</link>"
+msgid "<link href=\"text/sbasic/shared/02/11110000.xhp\" name=\"Modules\">Modules</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11110000.xhp\" name=\"Modules\">Muroota</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\">Maakroo ammee keessatti sagantaa duraatti deebi'i.</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\">Qaqaa <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Macro Organizer\"><emph>Qindeesaa Maakroo</emph></link> banuuf iddoo kana cuqaasi.</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\">Sajoo</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\">Sajoo</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 "Bahi"
+msgid "Modules"
+msgstr "Muroota"
#: 11120000.xhp
msgctxt ""
@@ -335,309 +628,329 @@ msgctxt ""
msgid "Find Parentheses"
msgstr "GolbeeLakkuu Barbaadi"
-#: 11110000.xhp
+#: 11140000.xhp
msgctxt ""
-"11110000.xhp\n"
+"11140000.xhp\n"
"tit\n"
"help.text"
-msgid "Modules"
-msgstr "Muroota"
+msgid "Insert Source Text"
+msgstr "Madda Barruu Saagi"
-#: 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=\"Modules\">Muroota</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=\"Insert Source Text\">Madda Barruu Saagi</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\">Qaqaa <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Macro Organizer\"><emph>Qindeesaa Maakroo</emph></link> banuuf iddoo kana cuqaasi.</ahelp>"
+msgid "<ahelp hid=\".uno:LoadBasic\">Opens the Basic source text in the Basic IDE window.</ahelp>"
+msgstr "<ahelp hid=\".uno:LoadBasic\">Madda barruu Bu'uura foddaa IDE Bu'uura keessaa bana.</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\">Sajoo</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 "Qaree lakkadda keessa iddoo barruu maddaa saaguu barbaadde olkaa'itii, sajoo <emph>Barruu maddaa saagi</emph> cuqaasi. Faayilii barruu maddaa Basic ati saaguu barbaadde ofkeessaa qabu akeekiitii ittaansii <emph>Bani</emph> cuqaasi."
-#: 11110000.xhp
+#: 11140000.xhp
msgctxt ""
-"11110000.xhp\n"
-"par_id3145383\n"
-"3\n"
+"11140000.xhp\n"
+"par_id3145136\n"
"help.text"
-msgid "Modules"
-msgstr "Muroota"
+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\">Sajoo</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 "Madda barruu saagi"
+
+#: 11150000.xhp
+msgctxt ""
+"11150000.xhp\n"
"tit\n"
"help.text"
-msgid "Procedure Step"
-msgstr "Ejjatoo Adeemsa"
+msgid "Save Source As"
+msgstr "Madda Akka...Olkaa'i"
-#: 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=\"Procedure Step\">Ejjatoo Adeemsa</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=\"Save Source As\">Madda Akka...Olkaa'i</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\">Lakkadda maddaa kan maakroo Bu'uura filaatamee olkaa'a.</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\">Sajoo</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\">Adeemsa itti aanuu booda maakroo kaasa akkasumas dhaaba.</ahelp>"
+msgid "Save Source As"
+msgstr "Madda Akka...Olkaa'i"
-#: 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 "Ajaja kana konjaakshinii keessatti ajaja <link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Watch\">Ilaali</link> wajjin dogongoroota yakkimuuf yayyadamuu dandeessa."
+msgid "Step Out"
+msgstr "Bahi"
-#: 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\">Sajoo</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=\"Step Out\">Bahi</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 "Ejjatoo Adeemsa"
+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\">Maakroo ammee keessatti sagantaa duraatti deebi'i.</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=\"Single Step function\">Dalagaa Ejjatoo Altokkee</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\">Sajoo</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 "Galaalee Wantaa"
+msgid "Step Out"
+msgstr "Bahi"
-#: 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=\"Object Catalog\">Galaalee Wantaa</link>"
+msgid "Manage Breakpoints"
+msgstr "Sarqurxoota Taliiga"
-#: 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\">Qaqaa <emph>wantaale</emph> iddoo atti wantaale Bu'uura itti mul'isu dandeesuu sibana.</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=\"Manage Breakpoints\">Sarqurxoota Taliiga</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 "Maqaa faankishinii ykn xiqqaa muraa kan faankishinii ykn xiqqaa qabu fe'uuf, fi qaree qabdoo lama cuqaasi. Maqaa maraa ykn qaaqaa cuqaasitii sajoo <emph>Agarsiisi</emph> cuqaasi maraa ykn qaaqa fe'uu fi agarsiisuuf."
+msgid "<ahelp hid=\".\">Calls a dialog to manage breakpoints.</ahelp>"
+msgstr "<ahelp hid=\".\">Sarqurxoota taliiguf qaqaa waama.</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\">Sajoo</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.2228inch\" height=\"0.2228inch\"><alt id=\"alt_id3155339\">Sajoo</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 "Galaalee Wantaa"
+msgid "Manage Breakpoints"
+msgstr "Sarqurxoota Taliiga"
-#: 11090000.xhp
+#: 11170000.xhp
msgctxt ""
-"11090000.xhp\n"
-"hd_id3155388\n"
+"11170000.xhp\n"
+"par_id3154897\n"
"4\n"
"help.text"
-msgid "Show"
-msgstr "Mul'si"
+msgid "<link href=\"text/sbasic/shared/01050300.xhp\" name=\"Manage Breakpoints dialog\"><emph>Manage Breakpoints</emph> dialog</link>"
+msgstr "<link href=\"text/sbasic/shared/01050300.xhp\" name=\"Manage Breakpoints dialog\"><emph>Sarqurxoota Taliiga</emph> dialog</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\">Madda barruu yk qaqaa kan wantaa filaatamee mul'isi.</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\">Sajoo</alt></image>"
+msgid "<link href=\"text/sbasic/shared/02/11180000.xhp\" name=\"Import Dialog\">Import Dialog</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11030000.xhp\" name=\"Run\">Ka'insa</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 "Mul'si"
+msgid "<ahelp hid=\".\">Calls an \"Open\" dialog to import a BASIC dialog file.</ahelp>"
+msgstr ""
-#: 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 "Bal'ina Foddaa"
+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\">Manbarroo maakroo, maroota, fi qaaqota $[officename] ammeef mul'ina sadarkaa agarsiisa. Qabeentoo maalimaa foddaa keessatti agarsiisuuf, maqaa isaa lama cuqaasi ykn maqaa filiitii sajoo <emph>agarsiisa</emph> cuqaasi.</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 "Sarqurxa"
+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=\"Breakpoint\">Sarqurxa</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\">Sagantaa sararaa keessaatti sarquxii saaga.</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 "Sarqurxni qabdoo qaree irratti saagame. Sagantaa hiikuuf sarqurxa fayyadami osoo dogongorri hin uumamin dura. Achiin sagantaa halata <link href=\"text/sbasic/shared/02/11050000.xhp\" name=\"Single Step\">Ejjatoo Baaqqee</link> keessatti kaasuudhaan yakkimuu gochuu dandeessa hanga dogongorri uumamutti. Qabeentaa jijjiiramtoota barbaachisoo mirkaneeffachuuf sajoo <link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Watch\">Ilaali</link> fayyadamuu dandeessa."
+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\">Sajoo</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_managebreakpoints.png\" width=\"0.2228inch\" height=\"0.2228inch\"><alt id=\"alt_id3155339\">Sajoo</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 "Sarqurxa"
+msgid "Import Dialog"
+msgstr ""
-#: 11020000.xhp
+#: 11190000.xhp
msgctxt ""
-"11020000.xhp\n"
+"11190000.xhp\n"
"tit\n"
"help.text"
-msgid "Compile"
-msgstr "Rogeessa"
+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=\"Compile\">Rogeessa</link>"
+msgid "<link href=\"text/sbasic/shared/02/11190000.xhp\" name=\"Export Dialog\">Export Dialog</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11030000.xhp\" name=\"Run\">Ka'insa</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\">Maakroo Bu'uuraa rogeessa.</ahelp>erga jijjiirama irratti fiddeen booda maakroo rogeessuu barbaadda, ykn yoo maakroon akkaataalee baaqqee ykn adeemsaa fayyadamee dha."
+msgid "<ahelp hid=\".\">In the dialog editor, this command calls a \"Save as\" dialog to export the current BASIC dialog.</ahelp>"
+msgstr ""
-#: 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\">Sajoo</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_managebreakpoints.png\" width=\"0.2228inch\" height=\"0.2228inch\"><alt id=\"alt_id3155339\">Sajoo</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 "Rogeessa"
+msgid "Export Dialog"
+msgstr ""
#: 20000000.xhp
msgctxt ""
@@ -1406,356 +1719,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=\".\">Too'annaa damee kan tarree sadarkaa agarsiisuu danda'u ida'a. Tarree sagantaa keetiin dilormessuu dandeessa, waamicha API fayyadamuun (Too'annaadameeX).</ahelp>"
-
-#: 11010000.xhp
-msgctxt ""
-"11010000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Library"
-msgstr "Mana kitaabaa"
-
-#: 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=\"Library\">ManaKitaabaa</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\">ManaKitaabaa gulaaluu barbaaduu filadhu. </ahelp> Muraan mana kitaabaa atti filtee Bu'uura IDE keessaatti agarsiisaameera."
-
-#: 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\">ManaKitaabaa tarree sanduuqa</alt></image>"
-
-#: 11010000.xhp
-msgctxt ""
-"11010000.xhp\n"
-"par_id3147654\n"
-"3\n"
-"help.text"
-msgid "Library List Box"
-msgstr "ManaKitaabaa Tarree Sanduuqa"
-
-#: 11180000.xhp
-msgctxt ""
-"11180000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Import Dialog"
-msgstr ""
-
-#: 11180000.xhp
-#, fuzzy
-msgctxt ""
-"11180000.xhp\n"
-"hd_id3156183\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/02/11180000.xhp\" name=\"Import Dialog\">Import Dialog</link>"
-msgstr "<link href=\"text/sbasic/shared/02/11030000.xhp\" name=\"Run\">Ka'insa</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 ""
-
-#: 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
-#, fuzzy
-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_managebreakpoints.png\" width=\"0.2228inch\" height=\"0.2228inch\"><alt id=\"alt_id3155339\">Sajoo</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 "Ejjatoo Altokkee"
-
-#: 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=\"Single Step\">Ejjatoo Altokkee</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\">Ajaja itti aanuu booda maakroo kaasa akkasumas dhaaba.</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 "Ajaja kana konjaakshinii keessatti ajaja <link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Watch\">Ilaali</link> wajjin dogongoroota yakkimuuf yayyadamuu dandeessa."
-
-#: 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\">Sajoo</alt></image>"
-
-#: 11050000.xhp
-msgctxt ""
-"11050000.xhp\n"
-"par_id3147573\n"
-"3\n"
-"help.text"
-msgid "Single Step"
-msgstr "Ejjatoo Altokkee"
-
-#: 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=\"Procedure Step function\">Dalagaa Ejjatoo Adeemsa</link>"
-
-#: 11030000.xhp
-msgctxt ""
-"11030000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Run"
-msgstr "Ka'insa"
-
-#: 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=\"Run\">Ka'insa</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\">Maakroo isa jalqaaba kan muraa ammee kaasa.</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\">Sajoo</alt></image>"
-
-#: 11030000.xhp
-msgctxt ""
-"11030000.xhp\n"
-"par_id3154750\n"
-"3\n"
-"help.text"
-msgid "Run"
-msgstr "Ka'insa"
-
-#: 11080000.xhp
-msgctxt ""
-"11080000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Enable Watch"
-msgstr "Sa'aatii Dandeessisi"
-
-#: 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=\"Enable Watch\">Sa'aatii Dandeessisi</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\">Jijjiiramoota maakroo keessaa mul'isuuf sajoo kana cuqaasi.qabeentootii jijjiiramaa foddaa addaa keessaatti agarsiisaamaniru.</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 "Maqaa jijjiiramaa isa filatu cuqaasi, achiin sajoo <emph>Ilaalli Dandeessisa</emph> cuqaasi. Gatiin jijjiiramaaf ramadame mqaa isaatti aanee agarsiifama. Gatiin kun seranaan haaromu."
-
-#: 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\">Sajoo</alt></image>"
-
-#: 11080000.xhp
-msgctxt ""
-"11080000.xhp\n"
-"par_id3150276\n"
-"3\n"
-"help.text"
-msgid "Enable Watch"
-msgstr "Sa'aatii Dandeessisi"
-
-#: 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 "Jijjiiramaa sa'aatii haquuf, jijjiiramaa foddaa Sa'aatii keessa fili, kana booda sajoo<emph> Sa'aatii Haqi</emph> cuqaasi."
-
-#: 11170000.xhp
-msgctxt ""
-"11170000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Manage Breakpoints"
-msgstr "Sarqurxoota Taliiga"
-
-#: 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=\"Manage Breakpoints\">Sarqurxoota Taliiga</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=\".\">Sarqurxoota taliiguf qaqaa waama.</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.2228inch\" height=\"0.2228inch\"><alt id=\"alt_id3155339\">Sajoo</alt></image>"
-
-#: 11170000.xhp
-msgctxt ""
-"11170000.xhp\n"
-"par_id3145383\n"
-"3\n"
-"help.text"
-msgid "Manage Breakpoints"
-msgstr "Sarqurxoota Taliiga"
-
-#: 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=\"Manage Breakpoints dialog\"><emph>Sarqurxoota Taliiga</emph> dialog</link>"
diff --git a/source/om/helpcontent2/source/text/scalc.po b/source/om/helpcontent2/source/text/scalc.po
index 7cbb8e4bf6d..9bb609724fd 100644
--- a/source/om/helpcontent2/source/text/scalc.po
+++ b/source/om/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: 2011-04-09 12:02+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14,573 +14,313 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#: main0208.xhp
-msgctxt ""
-"main0208.xhp\n"
-"tit\n"
-"help.text"
-msgid "Status Bar"
-msgstr "Kabala Haalojii"
-
-#: 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=\"Status Bar\">Kabala Haalojii</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>Kabalii Haalojii</emph> odeeffanno waa'ee wardii ammaa agarsiisa."
-
-#: main0208.xhp
-msgctxt ""
-"main0208.xhp\n"
-"hd_id0821200911024321\n"
-"help.text"
-msgid "Digital Signature"
-msgstr "Mallattoo Lakqurxaawaa"
-
-#: 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 "Dabalataanis <link href=\"text/shared/guide/digital_signatures.xhp\">Mallattoo Lakqurxaawaa</link> ilaali."
-
-#: main0112.xhp
+#: main0000.xhp
msgctxt ""
-"main0112.xhp\n"
+"main0000.xhp\n"
"tit\n"
"help.text"
-msgid "Data"
-msgstr "Deetaa"
+msgid "Welcome to the $[officename] Calc Help"
+msgstr "Baga Gargaarsa Calc $[officename]tti Nagaan Dhufte"
-#: 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=\"Data\">Deetaa</link>"
-
-#: main0112.xhp
-#, fuzzy
-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=\".\">Ajajawwan baafata <emph>Deetaa </emph>waardii ammaa keessaa deetaa gulaaluuf fayyadan fayyadami. Hangii deetichaa qindeessuu, fooyuu, fi gingilchuu, bu'aa herreeguu, deetaa toorii, kana booda DataPilot banuu nidandeessa.</ahelp>"
+msgid "Welcome to the $[officename] Calc Help"
+msgstr "Baga Gargaarsa Calc $[officename]tti Nagaan Dhufte"
-#: 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=\"Define Range\">Hangii Ibsi</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=\"Select Range\">Hangii Fili</link>"
+msgid "How to Work With $[officename] Calc"
+msgstr "Gargaarsa Calc $[officename] itti Akkaataa Ittiin Gargaaramtu"
-#: 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=\"Sort\">Fooyi</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=\"List of Functions by Category\">Tarree Dalagaawwanii Akaakuudhaan</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=\"Subtotals\">Hundumta Xiqqaa</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=\"Validity\">Gataa'insa</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=\"Multiple Operations\">Dalagaalee Hedduu</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\">Barruu gara tarjaatti</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=\"Consolidate\">Gurmeesi</link>"
+msgid "$[officename] Calc Menus, Toolbars, and Keys"
+msgstr "Baafatoota, Kamshaalee fi Qabduuwwan Herregaa $[officename]"
-#: 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=\"Refresh Range\">Hangii Haaromsi</link>"
+msgid "Help about the Help"
+msgstr "Gargaarsa waa'ee Gargaarsaa"
-#: main0106.xhp
+#: main0100.xhp
msgctxt ""
-"main0106.xhp\n"
+"main0100.xhp\n"
"tit\n"
"help.text"
-msgid "Tools"
-msgstr "Meeshaalee"
+msgid "Menus"
+msgstr "Baafatoota"
-#: 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=\"Tools\">Meeshaalee</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=\"Menus\">Baafatoota</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=\".\">Baafatni <emph>Meeshaalee </emph>ajajaawwan qubeeffaannoo mirkaneessuuf, wabii wardii barbaaduuf, dogoggora baasuufi mul'annoo ibsuudhaaf fayyadan of keessaa qaba.</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 "Akkasuumas, maakroowwan uumtee ramaduu, akkasuuma argii fi miira kamshaalee, bafatawwanii, gabatee cuqoo qindeessuu, akkasuumas fayyadamtoota $[officename] tiif dirqalawwan durtii qindeessuu nidandeessa."
-
-#: main0106.xhp
-msgctxt ""
-"main0106.xhp\n"
-"hd_id3149122\n"
-"12\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/06040000.xhp\" name=\"Goal Seek\">Goal Seek</link>"
-msgstr "<link href=\"text/scalc/01/06040000.xhp\" name=\"Goal Seek\">Barbaaddaa Galtee</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=\"Scenarios\">Mul'ina</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=\"AutoCorrect\">OfiinSirreessaa Dirqaleewwanii</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=\"Customize\">Maamileessi</link>"
+msgid "The following menu commands are available for spreadsheets."
+msgstr "Ajajaawwan baafataa armaan gadii wardiidhaaf jiraatu."
-#: main0503.xhp
+#: main0101.xhp
msgctxt ""
-"main0503.xhp\n"
+"main0101.xhp\n"
"tit\n"
"help.text"
-msgid "$[officename] Calc Features"
-msgstr "Amaloota Calcii $[officename]"
+msgid "File"
+msgstr "Faayilii"
-#: 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 Features\">Amaloota Calc $[officename]</link></variable>"
+msgid "<link href=\"text/scalc/main0101.xhp\" name=\"File\">File</link>"
+msgstr "<link href=\"text/scalc/main0101.xhp\" name=\"File\">Faayilii</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 "Calcii $[officename] fayyadamaan wardii isa deetaa kee herreguu, xiinxaluu, fi makuu isa fayyadamuu sidandeesiissuudha. Akkasuumas, wardiiwwan Ekseelii Maayikroosoftii alaaguufi fooyyeessuu nidandeessa."
+msgid "<ahelp hid=\".\">These commands apply to the current document, open a new document, or close the application.</ahelp>"
+msgstr "<ahelp hid=\".\">Ajajaawwan kun galmee ammaaf, galmee haaraa tokko banuuf, ykn cufuudhaaf fayyadu.</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 "Hediisawwan"
+msgid "<link href=\"text/shared/01/01020000.xhp\" name=\"Open\">Open</link>"
+msgstr "<link href=\"text/shared/01/01020000.xhp\" name=\"Open\">Bani</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 "Calciin $[officename] <link href=\"text/scalc/01/04060100.xhp\" name=\"functions\">dalagawwan</link> istaatistika fi kuusuu dabalatee, foormulaawwan isa ati ittiin herrega xaxaa deetaa kee irraa ittiin herregduu siif dhiheessa."
-
-#: 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 "Akkasuumas, akka foormulaawwan uumuu sigargaaruuf, <link href=\"text/scalc/01/04060000.xhp\" name=\"AutoPilots\">Gargaartuu Dalagaa</link> fayyadamuu nidandeessa."
-
-#: main0503.xhp
-msgctxt ""
-"main0503.xhp\n"
-"hd_id3152596\n"
-"13\n"
-"help.text"
-msgid "What-If Calculations"
-msgstr "Herregduuwwan Yoo-Tahe'oo"
+msgid "<link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">Save As</link>"
+msgstr "<link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">Akka Olkaa'i</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 "Amala nama ajaa'ebsiissuu keessaa akkaataa inni etiin bu'aa jijjiirama lakkoofsa kan herreegduu isa lakkoofsawwan hedduu keessaa irratti tahe atatamaan mul'issuu danda'uu isaati. Fakkeenyaaf, galteewwan herreega liqii keessatti akkaataa yeroon makkii dhalannaa fi hamma kafaltii lamattaa akkaataa ini itti jijjiiruu danada'uu ilaalluu nidandeessa. Itti dabalatees, gabateewwan guguddaa, mul'inawwan adda addaa durmurtaawoo fayyadamuun taliiguu nidandeessa."
+msgid "<link href=\"text/shared/01/01190000.xhp\" name=\"Versions\">Versions</link>"
+msgstr "<link href=\"text/shared/01/01190000.xhp\" name=\"Versions\">Fooyya'oota</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 "Dalagaawwan Kuusdeetaa"
-
-#: main0503.xhp
-msgctxt ""
-"main0503.xhp\n"
-"par_id3154011\n"
-"8\n"
-"help.text"
-msgid "Use spreadsheets to arrange, store, and filter your data."
-msgstr "Deetaa kee qindeessuuf, olkaa'uuf, gingilchuuf wardii fayyadami."
-
-#: 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 "Calciin $[officename] akka gabateewwan kuusdeetaa irraa harkistee kaa'uu, ykn wardii akka madda deetaatti Barreessaa $[officename] keessatti qubeewwan unkaa uumuuf sidandeesiissa."
+msgid "<link href=\"text/shared/01/01100000.xhp\" name=\"Properties\">Properties</link>"
+msgstr "<link href=\"text/shared/01/01100000.xhp\" name=\"Properties\">Amaloota</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 "Deetaa Qindeessuu"
+msgid "<link href=\"text/shared/01/01130000.xhp\" name=\"Print\">Print</link>"
+msgstr "<link href=\"text/shared/01/01130000.xhp\" name=\"Print\">Maxxansi</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 "Yeroo xiqaa hantuuttee-cuqaasuun, wardiin kee hangiiwwan deetaa tahanii akka mul'isu yk dhoksuu, ykn hangiiwwan akkaataa haala addaan akka dhangeefamu, ykn herreega hundumta xiqqaa fi ida'ama atattaamaan beekuu nidandeessa."
-
-#: main0503.xhp
-msgctxt ""
-"main0503.xhp\n"
-"hd_id3155601\n"
-"16\n"
-"help.text"
-msgid "Dynamic Charts"
-msgstr "Taattoowwan Kamaatii"
-
-#: 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 "Calciin $[officename], yammuu deetaan taattoowwan kamaatii keessatti jijjiiramuu isa ofumaan haaromsuu, deetaa wardii siif dhiihaatu godha."
-
-#: main0503.xhp
-msgctxt ""
-"main0503.xhp\n"
-"hd_id3153707\n"
-"18\n"
-"help.text"
-msgid "Opening and Saving Microsoft Files"
-msgstr "Faayiliiwwan Maaykrosooftii banuu fi olkaa'uu"
-
-#: 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 "Faayiliiwwan Ekseelii jijjiiruuf, gingilchaawwan $[officename] fayyadami, yk haalata <link href=\"text/shared/00/00000020.xhp\" name=\"formats\">dhangiiwwan</link> hedduu kabiroon banuu fi olkaa'uuf fayyadami."
+msgid "<link href=\"text/shared/01/01140000.xhp\" name=\"Printer Setup\">Printer Setup</link>"
+msgstr "<link href=\"text/shared/01/01140000.xhp\" name=\"Printer Setup\">Qindaa'ina Maxxansaa</link>"
-#: main0205.xhp
+#: main0102.xhp
msgctxt ""
-"main0205.xhp\n"
+"main0102.xhp\n"
"tit\n"
"help.text"
-msgid "Text Formatting Bar"
-msgstr "Kabala Barruu Dhangeessuu"
+msgid "Edit"
+msgstr "Gulaali"
-#: 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=\"Text Formatting Bar\">Kabala Barruu Dhangeessuu</link>"
+msgid "<link href=\"text/scalc/main0102.xhp\" name=\"Edit\">Edit</link>"
+msgstr "<link href=\"text/scalc/main0102.xhp\" name=\"Edit\">Gulaali</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\">Kabalii <emph>Dhangeessaa Barruu</emph> yammuu qareen wanta barruu tokko keessa oolu mul'atu, jechuun goodayyaa barruu tokko yk wanta fakkasaa tokkoo, ajajaawwan dhangeessuu fi hiriirsan of keessaa qaba.</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=\"Font Color\">Halluu Bocquu</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=\"Line Spacing: 1\">Iddina Sararaa: 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=\"Line Spacing: 1.5\">Iddina Sararaa: 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=\"Line Spacing: 2\">Iddina Sararaa: 2</link>"
+msgid "<ahelp hid=\".\">This menu contains commands for editing the contents of the current document.</ahelp>"
+msgstr "<ahelp hid=\".\">Baafatni kun ajajaawwan qabeentoota galmee ammaa keessa jiran gulaaluuf fayyadan qaba.</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=\"Align Left\">Bitaa Hiriirsi</link>"
+msgid "<link href=\"text/shared/01/02070000.xhp\" name=\"Paste Special\">Paste Special</link>"
+msgstr "<link href=\"text/shared/01/02070000.xhp\" name=\"Paste Special\">Addayaatti Maxxansi</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=\"Centered\">Kan Wiirtaa'e</link>"
+msgid "<link href=\"text/shared/01/02240000.xhp\" name=\"Compare Document\">Compare Document</link>"
+msgstr "<link href=\"text/shared/01/02240000.xhp\" name=\"Compare Document\">Galmee Waliin Madaali</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=\"Align Right\">Mirga Hiriirsi</link>"
+msgid "<link href=\"text/shared/01/02100000.xhp\" name=\"Find & Replace\">Find & Replace</link>"
+msgstr "<link href=\"text/shared/01/02100000.xhp\" name=\"Find & Replace\">Barbaadii Bakka Buusi</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=\"Justify\">Qixxeessi</link>"
+msgid "<link href=\"text/scalc/01/02120000.xhp\" name=\"Headers & Footers\">Headers & Footers</link>"
+msgstr "<link href=\"text/scalc/01/02120000.xhp\" name=\"Headers & Footers\">Irraantootaa fi Jalaantoota</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=\"Superscript\">Irrarfii</link>"
+msgid "<link href=\"text/scalc/01/02150000.xhp\" name=\"Delete Contents\">Delete Contents</link>"
+msgstr "<link href=\"text/scalc/01/02150000.xhp\" name=\"Delete Contents\">Qabeentoota Haqi</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=\"Subscript\">Jalarfii</link>"
+msgid "<link href=\"text/scalc/01/02160000.xhp\" name=\"Delete Cells\">Delete Cells</link>"
+msgstr "<link href=\"text/scalc/01/02160000.xhp\" name=\"Delete Cells\">Man'eewwan Haqi</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=\"Character\">Arfii</link>"
+msgid "<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">Links</link>"
+msgstr "<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">Geessitoota</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=\"Paragraph\">Keewwata</link>"
+msgid "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">ImageMap</link>"
+msgstr "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">BarruuyyaaFakkaattii</link>"
-#: main0203.xhp
+#: main0103.xhp
msgctxt ""
-"main0203.xhp\n"
+"main0103.xhp\n"
"tit\n"
"help.text"
-msgid "Drawing Object Properties Bar"
-msgstr "Kabala Amala Wantaa Fakkasaa"
+msgid "View"
+msgstr "Mul'isi"
-#: 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=\"Drawing Object Properties Bar\">Kabala Amala Wantaa Fakkasaa</link>"
+msgid "<link href=\"text/scalc/main0103.xhp\" name=\"View\">View</link>"
+msgstr "<link href=\"text/scalc/main0103.xhp\" name=\"View\">Mul'isi</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\">Kabalii <emph>Amaloota Wantaa Fakkasaa</emph> wantawwan warra ati wardi keessaa filateef, ajajawwan dhangeessanii fi hiriirsan of keessaa qabu.</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=\"Line Style\">Haalata Sararaa</link>"
+msgid "<ahelp hid=\".\">This menu contains commands for controlling the on-screen display of the document.</ahelp>"
+msgstr "<ahelp hid=\".\">Baafatni kun ajajaawwan to'annaa agarsiisa agartiirraa galmeedhaaf fayyadan qaba.</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=\"Line Width\">Yabbina Sararaa</link>"
+msgid "Normal"
+msgstr "Baratamoo"
-#: 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=\"Line Color\">Halluu Sararaa</link>"
+msgid "<ahelp hid=\".\">Displays the normal view of the sheet.</ahelp>"
+msgstr "<ahelp hid=\".\">Mul'annoo baratamoo wardii agarsiisa.</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=\"Background Color\">Halluu Duubee</link>"
+msgid "<link href=\"text/shared/01/03010000.xhp\" name=\"Zoom\">Zoom</link>"
+msgstr "<link href=\"text/shared/01/03010000.xhp\" name=\"Zoom\">Guddisi</link>"
#: main0104.xhp
msgctxt ""
@@ -697,89 +437,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=\"Floating Frame\">Goodayyaa Bololi'aa</link>"
-#: main0218.xhp
-msgctxt ""
-"main0218.xhp\n"
-"tit\n"
-"help.text"
-msgid "Tools Bar"
-msgstr "Kabala Meeshaalee"
-
-#: 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=\"Tools Bar\">Kabala Fakkaattii</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\">Ajajaawwan akka salphaatti fayyadamtu keessa seenuuf, kabala Meeshaalee fayyadami.</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=\"Controls\">Too'atamtoota</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=\"Choose Themes\">Dhamsaawwan Fili</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=\"Advanced Filter\">Gingilchaa Olaanaa</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\">Eegali</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=\"Euro Converter\">Jijjiiraa Yuuroo</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\">Ibsi</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=\"Goal Seek\">Barbaacha Ittigalaa</link>"
-
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
@@ -878,284 +535,234 @@ msgctxt ""
msgid "<link href=\"text/shared/02/01170200.xhp\" name=\"Form\">Form</link>"
msgstr "<link href=\"text/shared/02/01170200.xhp\" name=\"Form\">Unka</link>"
-#: main0107.xhp
-msgctxt ""
-"main0107.xhp\n"
-"tit\n"
-"help.text"
-msgid "Window"
-msgstr "Foddaa"
-
-#: 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=\"Window\">Foddaa</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\">Ajajaawwan foddaalee galmee too'achuu fi agarsiisuuf fayyadan of keessaa qaba.</ahelp>"
-
-#: main0210.xhp
+#: main0106.xhp
msgctxt ""
-"main0210.xhp\n"
+"main0106.xhp\n"
"tit\n"
"help.text"
-msgid "Page Preview Bar"
-msgstr "Kabala Durargii Fuulaa"
+msgid "Tools"
+msgstr "Meeshaalee"
-#: 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=\"Page Preview Bar\">Kabala Durargii Fuulaa</link>"
+msgid "<link href=\"text/scalc/main0106.xhp\" name=\"Tools\">Tools</link>"
+msgstr "<link href=\"text/scalc/main0106.xhp\" name=\"Tools\">Meeshaalee</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\">Kabalii <emph>Durargii Fuulaa</emph> <emph>Faayilii - Durargii Fuulaa</emph> yoo filte mul'ata.</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=\".\">Baafatni <emph>Meeshaalee </emph>ajajaawwan qubeeffaannoo mirkaneessuuf, wabii wardii barbaaduuf, dogoggora baasuufi mul'annoo ibsuudhaaf fayyadan of keessaa qaba.</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 ""
+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 "Akkasuumas, maakroowwan uumtee ramaduu, akkasuuma argii fi miira kamshaalee, bafatawwanii, gabatee cuqoo qindeessuu, akkasuumas fayyadamtoota $[officename] tiif dirqalawwan durtii qindeessuu nidandeessa."
-#: main0210.xhp
-#, fuzzy
+#: 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=\"Page\">Fuula</link>"
+msgid "<link href=\"text/scalc/01/06040000.xhp\" name=\"Goal Seek\">Goal Seek</link>"
+msgstr "<link href=\"text/scalc/01/06040000.xhp\" name=\"Goal Seek\">Barbaaddaa Galtee</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=\"Scenarios\">Mul'ina</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 ""
+msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect Options</link>"
+msgstr "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">OfiinSirreessaa Dirqaleewwanii</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=\"Customize\">Maamileessi</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 ""
+msgid "Window"
+msgstr "Foddaa"
-#: 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=\"Window\">Foddaa</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 ""
+msgid "<ahelp hid=\".uno:WindowList\">Contains commands for manipulating and displaying document windows.</ahelp>"
+msgstr "<ahelp hid=\".uno:WindowList\">Ajajaawwan foddaalee galmee too'achuu fi agarsiisuuf fayyadan of keessaa qaba.</ahelp>"
-#: main0103.xhp
+#: main0112.xhp
msgctxt ""
-"main0103.xhp\n"
+"main0112.xhp\n"
"tit\n"
"help.text"
-msgid "View"
-msgstr "Mul'isi"
+msgid "Data"
+msgstr "Deetaa"
-#: 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=\"View\">Mul'isi</link>"
+msgid "<link href=\"text/scalc/main0112.xhp\" name=\"Data\">Data</link>"
+msgstr "<link href=\"text/scalc/main0112.xhp\" name=\"Data\">Deetaa</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=\".\">Baafatni kun ajajaawwan to'annaa agarsiisa agartiirraa galmeedhaaf fayyadan qaba.</ahelp>"
-
-#: main0103.xhp
-msgctxt ""
-"main0103.xhp\n"
-"par_idN105AB\n"
-"help.text"
-msgid "Normal"
-msgstr "Baratamoo"
-
-#: 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=\".\">Mul'annoo baratamoo wardii agarsiisa.</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=\".\">Ajajawwan baafata <emph>Deetaa </emph>waardii ammaa keessaa deetaa gulaaluuf fayyadan fayyadami. Hangii deetichaa qindeessuu, fooyuu, fi gingilchuu, bu'aa herreeguu, deetaa toorii, kana booda DataPilot banuu nidandeessa.</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=\"Zoom\">Guddisi</link>"
+msgid "<link href=\"text/scalc/01/12010000.xhp\" name=\"Define Range\">Define Range</link>"
+msgstr "<link href=\"text/scalc/01/12010000.xhp\" name=\"Define Range\">Hangii Ibsi</link>"
-#: main0102.xhp
+#: main0112.xhp
msgctxt ""
-"main0102.xhp\n"
-"tit\n"
+"main0112.xhp\n"
+"hd_id3125863\n"
+"4\n"
"help.text"
-msgid "Edit"
-msgstr "Gulaali"
+msgid "<link href=\"text/scalc/01/12020000.xhp\" name=\"Select Range\">Select Range</link>"
+msgstr "<link href=\"text/scalc/01/12020000.xhp\" name=\"Select Range\">Hangii Fili</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=\"Edit\">Gulaali</link>"
+msgid "<link href=\"text/scalc/01/12030000.xhp\" name=\"Sort\">Sort</link>"
+msgstr "<link href=\"text/scalc/01/12030000.xhp\" name=\"Sort\">Fooyi</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=\".\">Baafatni kun ajajaawwan qabeentoota galmee ammaa keessa jiran gulaaluuf fayyadan qaba.</ahelp>"
+msgid "<link href=\"text/scalc/01/12050000.xhp\" name=\"Subtotals\">Subtotals</link>"
+msgstr "<link href=\"text/scalc/01/12050000.xhp\" name=\"Subtotals\">Hundumta Xiqqaa</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=\"Paste Special\">Addayaatti Maxxansi</link>"
+msgid "<link href=\"text/scalc/01/12120000.xhp\" name=\"Validity\">Validity</link>"
+msgstr "<link href=\"text/scalc/01/12120000.xhp\" name=\"Validity\">Gataa'insa</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=\"Compare Document\">Galmee Waliin Madaali</link>"
+msgid "<link href=\"text/scalc/01/12060000.xhp\" name=\"Multiple Operations\">Multiple Operations</link>"
+msgstr "<link href=\"text/scalc/01/12060000.xhp\" name=\"Multiple Operations\">Dalagaalee Hedduu</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=\"Find & Replace\">Barbaadii Bakka Buusi</link>"
+msgid "<link href=\"text/scalc/01/text2columns.xhp\">Text to Columns</link>"
+msgstr "<link href=\"text/scalc/01/text2columns.xhp\">Barruu gara tarjaatti</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=\"Headers & Footers\">Irraantootaa fi Jalaantoota</link>"
+msgid "<link href=\"text/scalc/01/12070000.xhp\" name=\"Consolidate\">Consolidate</link>"
+msgstr "<link href=\"text/scalc/01/12070000.xhp\" name=\"Consolidate\">Gurmeesi</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=\"Delete Contents\">Qabeentoota Haqi</link>"
+msgid "<link href=\"text/scalc/01/12100000.xhp\" name=\"Refresh Range\">Refresh Range</link>"
+msgstr "<link href=\"text/scalc/01/12100000.xhp\" name=\"Refresh Range\">Hangii Haaromsi</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=\"Delete Cells\">Man'eewwan Haqi</link>"
+msgid "Toolbars"
+msgstr "Kamshaalee"
-#: 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=\"Links\">Geessitoota</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=\"Toolbars\">Kamshaalee</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=\"ImageMap\">BarruuyyaaFakkaattii</link>"
+msgid "This submenu lists the toolbars that are available in spreadsheets.<embedvar href=\"text/shared/00/00000007.xhp#symbolleistenneu\"/>"
+msgstr "Baafatii xiqqaan kun, kamshaalee warra wardiiwwan keessa jiran tarreessu.<embedvar href=\"text/shared/00/00000007.xhp#symbolleistenneu\"/>"
#: main0202.xhp
msgctxt ""
@@ -1190,7 +797,7 @@ msgctxt ""
"8\n"
"help.text"
msgid "<link href=\"text/shared/01/05020200.xhp\" name=\"Font Color\">Font Color</link>"
-msgstr "<link href=\"text/shared/01/05020200.xhp\" name=\"Font Color\">Bocquu Halluu</link>"
+msgstr "<link href=\"text/shared/01/05020200.xhp\" name=\"Font Color\">Halluu Bocquu</link>"
#: main0202.xhp
msgctxt ""
@@ -1383,84 +990,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\">Qabeentoota man'ee gara daangaalee bitaa fi mirgaa man'eetti hiriirsa..</ahelp>"
-#: main0000.xhp
+#: main0203.xhp
msgctxt ""
-"main0000.xhp\n"
+"main0203.xhp\n"
"tit\n"
"help.text"
-msgid "Welcome to the $[officename] Calc Help"
-msgstr "Baga Gargaarsa Calc $[officename]tti Nagaan Dhufte"
+msgid "Drawing Object Properties Bar"
+msgstr "Kabala Amala Wantaa Fakkasaa"
-#: 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 "Gargaarsa Calc $[officename] itti Baga Nagaan Dhufte"
+msgid "<link href=\"text/scalc/main0203.xhp\" name=\"Drawing Object Properties Bar\">Drawing Object Properties Bar</link>"
+msgstr "<link href=\"text/scalc/main0203.xhp\" name=\"Drawing Object Properties Bar\">Kabala Amala Wantaa Fakkasaa</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\">Kabalii <emph>Amaloota Wantaa Fakkasaa</emph> wantawwan warra ati wardi keessaa filateef, ajajawwan dhangeessanii fi hiriirsan of keessaa qabu.</ahelp>"
+
+#: main0203.xhp
+msgctxt ""
+"main0203.xhp\n"
+"hd_id3145748\n"
"3\n"
"help.text"
-msgid "How to Work With $[officename] Calc"
-msgstr "Gargaarsa Calc $[officename] itti Akkaataa Ittiin Gargaaramtu"
+msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Style\">Line Style</link>"
+msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Style\">Haalata Sararaa</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=\"List of Functions by Category\">Tarree Dalagaawwanii Akaakuudhaan</link>"
+msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Width\">Line Width</link>"
+msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Width\">Yabbina Sararaa</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 "Baafatoota, Kamshaalee fi Qabduuwwan Herregaa $[officename]"
+msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Color\">Line Color</link>"
+msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Color\">Halluu Sararaa</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 "Gargaarsa waa'ee Gargaarsaa"
+msgid "<link href=\"text/shared/01/05210100.xhp\" name=\"Background Color\">Background Color</link>"
+msgstr "<link href=\"text/shared/01/05210100.xhp\" name=\"Background Color\">Halluu Duubee</link>"
-#: main0100.xhp
+#: main0205.xhp
msgctxt ""
-"main0100.xhp\n"
+"main0205.xhp\n"
"tit\n"
"help.text"
-msgid "Menus"
-msgstr "Baafatoota"
+msgid "Text Formatting Bar"
+msgstr "Kabala Barruu Dhangeessuu"
-#: 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=\"Menus\">Baafatoota</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=\"Text Formatting Bar\">Kabala Barruu Dhangeessuu</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 "Ajajaawwan baafataa armaan gadii wardiidhaaf jiraatu."
+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\">Kabalii <emph>Dhangeessaa Barruu</emph> yammuu qareen wanta barruu tokko keessa oolu mul'atu, jechuun goodayyaa barruu tokko yk wanta fakkasaa tokkoo, ajajaawwan dhangeessuu fi hiriirsan of keessaa qaba.</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=\"Font Color\">Halluu Bocquu</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=\"Line Spacing: 1\">Iddina Sararaa: 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=\"Line Spacing: 1.5\">Iddina Sararaa: 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=\"Line Spacing: 2\">Iddina Sararaa: 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=\"Align Left\">Bitaa Hiriirsi</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=\"Centered\">Kan Wiirtaa'e</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=\"Align Right\">Mirga Hiriirsi</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=\"Justify\">Qixxeessi</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=\"Superscript\">Irrarfii</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=\"Subscript\">Jalarfii</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=\"Character\">Arfii</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=\"Paragraph\">Keewwata</link>"
#: main0206.xhp
msgctxt ""
@@ -1488,111 +1212,150 @@ msgctxt ""
msgid "<ahelp hid=\"HID_SC_INPUTWIN\">Use this bar to enter formulas.</ahelp>"
msgstr "<ahelp hid=\"HID_SC_INPUTWIN\">Formulaawwan galchuuf kabala kana fayyadami.</ahelp>"
-#: main0200.xhp
+#: main0208.xhp
msgctxt ""
-"main0200.xhp\n"
+"main0208.xhp\n"
"tit\n"
"help.text"
-msgid "Toolbars"
-msgstr "Kamshaalee"
+msgid "Status Bar"
+msgstr "Kabala Haalojii"
-#: 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=\"Toolbars\">Kamshaalee</link></variable>"
+msgid "<link href=\"text/scalc/main0208.xhp\" name=\"Status Bar\">Status Bar</link>"
+msgstr "<link href=\"text/scalc/main0208.xhp\" name=\"Status Bar\">Kabala Haalojii</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 "Baafatii xiqqaan kun, kamshaalee warra wardiiwwan keessa jiran tarreessu.<embedvar href=\"text/shared/00/00000007.xhp#symbolleistenneu\"/>"
+msgid "The <emph>Status Bar</emph> displays information about the current sheet."
+msgstr "<emph>Kabalii Haalojii</emph> odeeffanno waa'ee wardii ammaa agarsiisa."
-#: main0101.xhp
+#: main0208.xhp
msgctxt ""
-"main0101.xhp\n"
+"main0208.xhp\n"
+"hd_id0821200911024321\n"
+"help.text"
+msgid "Digital Signature"
+msgstr "Mallattoo Lakqurxaawaa"
+
+#: 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 "Dabalataanis <link href=\"text/shared/guide/digital_signatures.xhp\">Mallattoo Lakqurxaawaa</link> ilaali."
+
+#: main0210.xhp
+msgctxt ""
+"main0210.xhp\n"
"tit\n"
"help.text"
-msgid "File"
-msgstr "Faayilii"
+msgid "Page Preview Bar"
+msgstr "Kabala Durargii Fuulaa"
-#: 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=\"File\">Faayilii</link>"
+msgid "<link href=\"text/scalc/main0210.xhp\" name=\"Page Preview Bar\">Page Preview Bar</link>"
+msgstr "<link href=\"text/scalc/main0210.xhp\" name=\"Page Preview Bar\">Kabala Durargii Fuulaa</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=\".\">Ajajaawwan kun galmee ammaaf, galmee haaraa tokko banuuf, ykn cufuudhaaf fayyadu.</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\">Kabalii <emph>Durargii Fuulaa</emph> <emph>Faayilii - Durargii Fuulaa</emph> yoo filte mul'ata.</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=\"Open\">Bani</link>"
+msgid "Full Screen"
+msgstr "Argii Guutuu"
-#: 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=\"Save As\">Akka Olkaa'i</link>"
+msgid "Hides the menus and toolbars. To exit the full screen mode, click the <emph>Full Screen On/Off</emph> button."
+msgstr ""
-#: 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=\"Versions\">Fooyya'oota</link>"
+msgid "<link href=\"text/scalc/01/05070000.xhp\" name=\"Format Page\">Format Page</link>"
+msgstr "<link href=\"text/scalc/01/05070000.xhp\" name=\"Page\">Fuula</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=\"Properties\">Amaloota</link>"
+msgid "Margins"
+msgstr "Mudanoota"
-#: 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=\"Print\">Maxxansi</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 ""
-#: 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=\"Printer Setup\">Qindaa'ina Maxxansaa</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 ""
+
+#: 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 ""
#: main0214.xhp
msgctxt ""
@@ -1619,3 +1382,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=\".\">Kabalii <emph>Fakkaattii</emph> kan mul'atu yoo fakkaattii wardii keessatti saagdu ykn filtu.</ahelp>"
+
+#: main0218.xhp
+msgctxt ""
+"main0218.xhp\n"
+"tit\n"
+"help.text"
+msgid "Tools Bar"
+msgstr "Kabala Meeshaalee"
+
+#: 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=\"Tools Bar\">Kabala Fakkaattii</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\">Ajajaawwan akka salphaatti fayyadamtu keessa seenuuf, kabala Meeshaalee fayyadami.</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=\"Controls\">Too'atamtoota</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=\"Choose Themes\">Dhamsaawwan Fili</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=\"Advanced Filter\">Gingilchaa Olaanaa</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\">Eegali</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=\"Euro Converter\">Jijjiiraa Yuuroo</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\">Ibsi</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=\"Goal Seek\">Barbaaddaa Galtee</link>"
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"tit\n"
+"help.text"
+msgid "$[officename] Calc Features"
+msgstr "Amaloota Calcii $[officename]"
+
+#: 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 Features\">Amaloota Calc $[officename]</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 "Calcii $[officename] fayyadamaan wardii isa deetaa kee herreguu, xiinxaluu, fi makuu isa fayyadamuu sidandeesiissuudha. Akkasuumas, wardiiwwan Ekseelii Maayikroosoftii alaaguufi fooyyeessuu nidandeessa."
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"hd_id3148797\n"
+"4\n"
+"help.text"
+msgid "Calculations"
+msgstr "Hediisawwan"
+
+#: 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 "Calciin $[officename] <link href=\"text/scalc/01/04060100.xhp\" name=\"functions\">dalagawwan</link> istaatistika fi kuusuu dabalatee, foormulaawwan isa ati ittiin herrega xaxaa deetaa kee irraa ittiin herregduu siif dhiheessa."
+
+#: 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 "Akkasuumas, akka foormulaawwan uumuu sigargaaruuf, <link href=\"text/scalc/01/04060000.xhp\" name=\"AutoPilots\">Gargaartuu Dalagaa</link> fayyadamuu nidandeessa."
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"hd_id3152596\n"
+"13\n"
+"help.text"
+msgid "What-If Calculations"
+msgstr "Herregduuwwan Yoo-Tahe'oo"
+
+#: 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 "Amala nama ajaa'ebsiissuu keessaa akkaataa inni etiin bu'aa jijjiirama lakkoofsa kan herreegduu isa lakkoofsawwan hedduu keessaa irratti tahe atatamaan mul'issuu danda'uu isaati. Fakkeenyaaf, galteewwan herreega liqii keessatti akkaataa yeroon makkii dhalannaa fi hamma kafaltii lamattaa akkaataa ini itti jijjiiruu danada'uu ilaalluu nidandeessa. Itti dabalatees, gabateewwan guguddaa, mul'inawwan adda addaa durmurtaawoo fayyadamuun taliiguu nidandeessa."
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"hd_id3148576\n"
+"7\n"
+"help.text"
+msgid "Database Functions"
+msgstr "Dalagaawwan Kuusdeetaa"
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"par_id3154011\n"
+"8\n"
+"help.text"
+msgid "Use spreadsheets to arrange, store, and filter your data."
+msgstr "Deetaa kee qindeessuuf, olkaa'uuf, gingilchuuf wardii fayyadami."
+
+#: 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 "Calciin $[officename] akka gabateewwan kuusdeetaa irraa harkistee kaa'uu, ykn wardii akka madda deetaatti Barreessaa $[officename] keessatti qubeewwan unkaa uumuuf sidandeesiissa."
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"hd_id3145800\n"
+"9\n"
+"help.text"
+msgid "Arranging Data"
+msgstr "Deetaa Qindeessuu"
+
+#: 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 "Yeroo xiqaa hantuuttee-cuqaasuun, wardiin kee hangiiwwan deetaa tahanii akka mul'isu yk dhoksuu, ykn hangiiwwan akkaataa haala addaan akka dhangeefamu, ykn herreega hundumta xiqqaa fi ida'ama atattaamaan beekuu nidandeessa."
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"hd_id3155601\n"
+"16\n"
+"help.text"
+msgid "Dynamic Charts"
+msgstr "Taattoowwan Kamaatii"
+
+#: 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 "Calciin $[officename], yammuu deetaan taattoowwan kamaatii keessatti jijjiiramuu isa ofumaan haaromsuu, deetaa wardii siif dhiihaatu godha."
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"hd_id3153707\n"
+"18\n"
+"help.text"
+msgid "Opening and Saving Microsoft Files"
+msgstr "Faayiliiwwan Maaykrosooftii banuu fi olkaa'uu"
+
+#: 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 "Faayiliiwwan Ekseelii jijjiiruuf, gingilchaawwan $[officename] fayyadami, yk haalata <link href=\"text/shared/00/00000020.xhp\" name=\"formats\">dhangiiwwan</link> hedduu kabiroon banuu fi olkaa'uuf fayyadami."
diff --git a/source/om/helpcontent2/source/text/scalc/00.po b/source/om/helpcontent2/source/text/scalc/00.po
index 672756badc4..0e593ff9f15 100644
--- a/source/om/helpcontent2/source/text/scalc/00.po
+++ b/source/om/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: 2011-04-09 12:02+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14,842 +14,287 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#: 00000407.xhp
+#: 00000004.xhp
msgctxt ""
-"00000407.xhp\n"
+"00000004.xhp\n"
"tit\n"
"help.text"
-msgid "Window Menu"
-msgstr "Baafata Foddaa"
+msgid "To access this function..."
+msgstr "Dalagaa kana gahuf..."
-#: 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 "Baafata Foddaa"
+msgid "<variable id=\"wie\">To access this function... </variable>"
+msgstr "<variable id=\"wie\">Dalagaa kana gahuf...</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>Foddaa - Addabaasi</emph> filadhu</variable>"
+msgid "<variable id=\"moreontop\">More explanations on top of this page. </variable>"
+msgstr "<variable id=\"moreontop\">Addeeffama dabalataa fuula kanarratti. </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>Foddaa - Dhaabi</emph> filadhu</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\">Fankishinoota %PRODUCTNAME Calc keessatti, ulaagaaleen akka \"dirqalee\"tti malkateessaman kan dhiifamuu danda'an yoo ulaagaan homtuu kan hin hordofneen tahe qofaadha. Fakkeenyaaf, fankishinii ulaagaalee afur qabu keessatti, iddoo ulaagaaleen lamaan dhumaa akka \"dirqalee\"tti itti malkateessamanitti, ulaagaa 4 ykn ulaagaalee 3 fi 4 dhiisuu ni dandeessa, garuu ulaagaa 3 qofa dhiisuu hin dandeessu. </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\">Lakkaddaawwan 127 caalan barruuyyeessa arfii sirna keetiirratti hundaa'uu danda'a(fakkeenyaaf iso-8859-1, iso-8859-2, Windows-1252, Windows-1250), kanaaf fiduun hin danda'amu.</variable>"
+
+#: 00000402.xhp
+msgctxt ""
+"00000402.xhp\n"
"tit\n"
"help.text"
-msgid "Data Menu"
-msgstr "Baafata Deetaa"
+msgid "Edit Menu"
+msgstr "Baafata Gulaali"
-#: 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 "Baafata Deetaa"
+msgid "Edit Menu"
+msgstr "Baafata Gulaali"
-#: 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>Deetaa - Barruu Tarjootatti</emph></variable>"
+msgid "<variable id=\"kopffuss\">Choose <emph>Edit - Headers & Footers</emph></variable>"
+msgstr "<variable id=\"kopffuss\"><emph>Gulaali - irraantootaaf Jalaantoot</emph>filadhu</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>Deetaa - Hangiilee Ibsi</emph> filadhu</variable>"
+msgid "<variable id=\"bkopfzeile\">Choose <emph>Edit - Headers & Footers - Header/Footer</emph> tabs</variable>"
+msgstr "<variable id=\"bkopfzeile\">Caancaloota <emph>Gulaali - Irraantootaa & Jalaantoota - Irraatoota/Jalaantoo</emph> jedhan filadhu</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>Deetaa - Hangii Filadhu</emph> filadhu</variable>"
+msgid "<variable id=\"bausfullen\">Choose <emph>Edit - Fill</emph></variable>"
+msgstr "<variable id=\"bausfullen\"><emph>Gulaali - Guuti</emph> filadhu</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>Deetaa - Fooyi</emph> filadhu</variable>"
+msgid "<variable id=\"bausunten\">Choose <emph>Edit - Fill - Down</emph></variable>"
+msgstr "<variable id=\"bausunten\"><emph>Gulaali - Guuti - Gad</emph> filadhu</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 "Caancala <emph>Deetaa - Fooyi - Ulaagaalee Fooyinsaa</emph> filadhu"
+msgid "<variable id=\"bausrechts\">Choose <emph>Edit - Fill - Right</emph></variable>"
+msgstr "<variable id=\"bausrechts\"><emph>Gulaali - Guuti - Mirga</emph> filadhu</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 "Kabala Durtii irra,"
-
-#: 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\">Sajoo</alt></image>cuqaasi"
+msgid "<variable id=\"bausoben\">Choose <emph>Edit - Fill - Up</emph></variable>"
+msgstr "<variable id=\"bausoben\"><emph>Gulaali - Guuti - Ol</emph> filadhu</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 "Olee Fooyi"
-
-#: 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\">Sajoo</alt></image>"
+msgid "<variable id=\"bauslinks\">Choose <emph>Edit - Fill - Left</emph></variable>"
+msgstr "<variable id=\"bauslinks\"><emph>Gulaali - Guuti - Bitaa</emph> filadhu</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 "Gadee Fooyi"
+msgid "<variable id=\"baustab\">Choose <emph>Edit - Fill - Sheet</emph></variable>"
+msgstr "<variable id=\"baustab\"><emph>Gulaali - Guuti - Wardi</emph> filadhu</variable>"
-#: 00000412.xhp
-#, fuzzy
+#: 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>Deetaa - Fooyi - Filmaata</emph> caancala jedhu filadhu </variable>"
+msgid "<variable id=\"bausreihe\">Choose <emph>Edit - Fill - Series</emph></variable>"
+msgstr "<variable id=\"bausreihe\"><emph>Gulaali - Guuti - Walfaannee</emph> filadhu</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>Deetaa - Gingilchaa</emph> filadhu</variable>"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3148646\n"
-"12\n"
-"help.text"
-msgid "Choose <emph>Data - Filter - AutoFilter</emph>"
-msgstr "<emph>Deetaa - Gingilchaa - OfGingilchaa</emph> filadhu"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3151113\n"
-"13\n"
-"help.text"
-msgid "On Tools bar or Table Data bar, click"
-msgstr "Kabala Meeshaalee ykn kabala Deetaa Gabatee irra,"
-
-#: 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\">Sajoo</alt></image>cuqaasi"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3149401\n"
-"14\n"
-"help.text"
-msgid "AutoFilter"
-msgstr "OfGingilchaa"
-
-#: 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>Deetaa - Gingilchaa - Gingilchaa Ol'aanaa</emph> filadhu</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 "Qabduu <emph>Deetaa - Gingilchaa - Gingilchaa Durtii - Dabalata>></emph> filadhu"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3155444\n"
-"19\n"
-"help.text"
-msgid "Choose <emph>Data - Filter - Advanced Filter - More>></emph> button"
-msgstr "Qabduu <emph>Deetaa - Gingilchaa - Gingilchaa Ol'aanaa - Dabala>></emph> filadhu"
+msgid "Choose <emph>Edit - Delete Contents</emph>"
+msgstr "<emph>Gulaali - Qabeentoota Haqi</emph> filadhu"
-#: 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>Deetaa - Gingilchaa - Gingilchaa Haqi</emph> filadhu"
-
-#: 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 "Kabalaa Meeshaalee irra, <emph>Gingilchaa/Fooyi Haqi</emph>cuqaasiitii"
-
-#: 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\">Sajoo</alt></image>"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3149207\n"
-"49\n"
-"help.text"
-msgid "Remove Filter/Sort"
-msgstr "Gingilchaa/Fooyi Haqi"
-
-#: 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>Deetaa - Gingilchaa - OfGingilchaa Dhoksi</emph> filadhu</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>Deetaa - Hundumta Xiqqaa</emph> filadhu</variable>"
-
-#: 00000412.xhp
-#, fuzzy
-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>Deetaa - Hundumta Xiqqaa - Garee 1ffaa, 2ffaa, 3ffaa</emph> caancala jedhu filadhu </variable>"
-
-#: 00000412.xhp
-#, fuzzy
-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>Deetaa - Hundumta Xiqqaa - Filmaata</emph> caancala jedhu filadhu </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>Deetaa - Gataa'insa</emph> filadhu</variable>"
-
-#: 00000412.xhp
-#, fuzzy
-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\">Baafata <emph>Deetaa - Ciimina - Ulaagaalee</emph> caancala jedhu filadhu </variable>"
-
-#: 00000412.xhp
-#, fuzzy
-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>Deetaa - Ciimina - Gargaaraa Naqa</emph> caancala jedhu filadhu </variable>"
-
-#: 00000412.xhp
-#, fuzzy
-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>Deetaa - Ciimina - Of Eeggannoo Dogongoraa</emph> caancala jedhu filadhu </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>Deetaa - Qooyyaboota Hedduu</emph> filadhu</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>Deetaa - Maki</emph> filadhu</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>Deetaa - Gurmuuf Toorii</emph> filadhu</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>Deetaa - Gurmuuf Toorii - Baldhintaa Dhoksi</emph> filadhu</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>Deetaa - Gurmuuf Toorii - Baldhintaa Mul'isi</emph> filadhu</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>Deetaa - Gurmuuf Toorii - Gurmuu</emph> filadhu"
-
-#: 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 "Kabalaa <emph>Meeshaalee</emph> irra"
-
-#: 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\">Icon</alt></image>cuqaasi"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3150214\n"
-"36\n"
-"help.text"
-msgid "Group"
-msgstr "Gurmuu"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3146781\n"
-"37\n"
-"help.text"
-msgid "Choose <emph>Data - Group and Outline - Ungroup</emph>"
-msgstr "<emph>Deetaa - Gurmuuf Toorii - Garbaasi</emph> filadhu"
-
-#: 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\">Ajaja </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 "Kabalaa <emph>Meeshaalee</emph> irra"
-
-#: 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\">Sajoo</alt></image>cuqaasi"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3153555\n"
-"39\n"
-"help.text"
-msgid "Ungroup"
-msgstr "Garbaasi"
-
-#: 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>Deetaa - Gurmuuf Toorii - TooriiOfmaa</emph> filadhu</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>Deetaa - Gurmuuf Toorii - Haqi</emph> filadhu</variable>"
-
-#: 00000412.xhp
-#, fuzzy
-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>Deetaa - Gurmuu fi Toorii - Baldhintaa Mul'si</emph> (gabatee Gabateewwan Qiinxaa tokko tokkoof) filadhu </variable>"
-
-#: 00000412.xhp
-#, fuzzy
-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>Deetaa - Qiinxaa</emph> filadhu</variable>"
+msgid "Backspace"
+msgstr ""
-#: 00000412.xhp
-#, fuzzy
+#: 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>Deetaa - Qiinxaa - Eegali</emph> filadhu</variable>"
+msgid "<variable id=\"bzelo\">Choose <emph>Edit - Delete Cells</emph></variable>"
+msgstr "<variable id=\"bzelo\"><emph>Gulaali - Man'oota Haqi</emph> filadhu</variable>"
-#: 00000412.xhp
-#, fuzzy
+#: 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>Deetaa - Qiinxaa - Eegali</emph> filadhu, qaaqa Madda Filadhuu keessatti dirqalee <emph>Madda Deetaa $[officename] keessatti galmaa'e</emph> filadhu. </variable>"
+msgid "Choose <emph>Edit – Sheet - Delete</emph>"
+msgstr "<emph>Gulaali - Wardi - Haqi</emph> filadhu"
-#: 00000412.xhp
-#, fuzzy
+#: 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>Deetaa - Qiinxaa - Eegali</emph> filadhu, qaaqa Madda Filadhuu keessatti dirqalee <emph>Filannoo ammaa</emph> filadhu."
+msgid "Open context menu for a sheet tab"
+msgstr "Baafata halqara caancala wardif bani"
-#: 00000412.xhp
-#, fuzzy
+#: 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>Deetaa - Qiinxaa - Eegali</emph> filadhu, qaaqa Madda Filadhuu keessatti dirqalee <emph>Madda Deetaa $[officename] keessatti galmaa'e</emph> filadhu, qaaqa <emph>Madda Deetaa Fili</emph> ilaaluuf <emph>Tole</emph> filadhu."
+msgid "Choose <emph>Edit – Sheets – Move/Copy</emph>"
+msgstr "<emph>Gulaali - Wardii - Siiqsi/Garagalchi</emph> filadhu"
-#: 00000412.xhp
-#, fuzzy
+#: 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>Deetaa - Qiinxaa - Haaromsi</emph> filadhu</variable>"
+msgid "Open context menu for a sheet tab"
+msgstr "Baafata halqara caancala wardif bani"
-#: 00000412.xhp
-#, fuzzy
+#: 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>Deetaa - Qiinxaa - Haqi</emph> filadhu</variable>"
+msgid "<variable id=\"bmaumloe\">Choose <emph>Edit - Delete Manual Break</emph></variable>"
+msgstr "<variable id=\"bmaumloe\"><emph>Gulaali - Kutaa Hujeekaa Haqi</emph> filadhu</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>Deetaa - Hangii Haaromsi</emph> filadhu</variable>"
+msgid "<variable id=\"bzeilum\">Choose <emph>Edit - Delete Manual Break - Row Break</emph></variable>"
+msgstr "<variable id=\"bzeilum\"><emph>Gulaali - Kutaa Hujeekaa Haqi - Kutaa Tarree</emph> filadhu</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>Deetaa - Gurmuuf Toorii - Gurmuu</emph> filadhu</variable>"
+msgid "<variable id=\"bspaum\">Choose <emph>Edit - Delete Manual Break - Column Break</emph></variable>"
+msgstr "<variable id=\"bspaum\"><emph>Gulaali - Kutaa Hujeekaa Haqi - Kutaa Tarjaa</emph> filadhu</variable>"
-#: 00000405.xhp
+#: 00000403.xhp
msgctxt ""
-"00000405.xhp\n"
+"00000403.xhp\n"
"tit\n"
"help.text"
-msgid "Format Menu"
-msgstr "Baafata Dhangii"
+msgid "View Menu"
+msgstr "Baafata Mul'isi"
-#: 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 "Baafata Dhangii"
+msgid "View Menu"
+msgstr "Baafata Mul'isi"
-#: 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>Dhangii - Man'oota</emph> filadhu</variable>"
+msgid "<variable id=\"aspze\">Choose <emph>View - Column & Row Headers</emph></variable>"
+msgstr "<variable id=\"aspze\"><emph>Mul'annoo - Tarjaa & Tarree Irraantoota</emph> filadhu</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>Dhangii - Man'oota - Hayyisa Man'ee</emph> caancala jedhu filadhu </variable>"
+msgid "<variable id=\"awehe\">Choose <emph>View - Value Highlighting</emph></variable>"
+msgstr "<variable id=\"awehe\"><emph>Mul'annoo - Gatii Shooluu</emph> filadhu</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>Dhangii - Tarree</emph> filadhu</variable>"
+msgid "<variable id=\"rechenleiste\">Choose <emph>View - Toolbars - Formula Bar</emph></variable>"
+msgstr "<variable id=\"rechenleiste\"><emph>Mul'annoo - Kamshoota - Kabala Foormulaa</emph> filadhu</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>Dhangii - Tarree - Hojjaa Gutoola</emph> filadhu</variable>"
-
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id3148645\n"
-"6\n"
-"help.text"
-msgid "Choose <emph>Format - Row - Hide</emph>"
-msgstr "<emph>Dhangii - Tarree - Dhoksi</emph> filadhu"
-
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id3153728\n"
-"7\n"
-"help.text"
-msgid "Choose <emph>Format - Column - Hide</emph>"
-msgstr "<emph>Dhangii - Tarjaa - Dhoksi</emph> filadhu"
-
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id3151114\n"
-"8\n"
-"help.text"
-msgid "Choose <emph>Format - Sheet - Hide</emph>"
-msgstr "<emph>Dhangii - Wardii - Dhoksi</emph> filadhu"
-
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id3148576\n"
-"9\n"
-"help.text"
-msgid "Choose <emph>Format - Row - Show</emph>"
-msgstr "<emph>Dhangii - Tarree - Mul'isi</emph> filadhu"
-
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id3156286\n"
-"10\n"
-"help.text"
-msgid "Choose <emph>Format - Column - Show</emph>"
-msgstr "<emph>Dhangii - Tarjaa - Mul'isi</emph> filadhu"
-
-#: 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>Dhangii - Tarjaa</emph> filadhu</variable>"
-
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id3145252\n"
-"12\n"
-"help.text"
-msgid "Choose <emph>Format - Column - Optimal Width</emph>"
-msgstr "<emph>Dhangii - Tarjaa - Dalgee Gutoola</emph> filadhu"
-
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id3146971\n"
-"36\n"
-"help.text"
-msgid "Double-click right column separator in column headers"
-msgstr "Matadureewwan tarjaa keessatti gargareessaa tarjaa mirgaa lam-cuqaasi"
-
-#: 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>Dhangii - Wardii</emph> filadhu</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>Dhangii - Wardii - Maqaa Jijjiiri</emph> filadhu</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>Dhangii - Wardii - Mul'isi</emph> filadhu</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>Dhangii - Fuula</emph> filadhu</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>Dhangii - Fuula - Wardi</emph> caancala jedhu filadhu</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>Dhangii - Hangiilee Maxxansaa</emph> filadhu</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>Dhangii - Wardii - Ibsi</emph> filadhu</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>Dhangii - Hangiilee Maxxansaa - Ida'i</emph> filadhu</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>Dhangii - Hangiilee Maxxansaa - Haqi</emph> filadhu</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>Dhangii - Hangiilee Maxxansaa - Gulaali</emph> filadhu</variable>"
-
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id3153916\n"
-"31\n"
-"help.text"
-msgid "Choose <emph>Format - AutoFormat</emph>"
-msgstr "<emph>Dhangeessi - OfiinDhangeessi</emph> filadhu"
-
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id3154532\n"
-"32\n"
-"help.text"
-msgid "On the Tools bar, click"
-msgstr "Kabala Meeshaale irra,"
-
-#: 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\">Sajoo</alt></image>cuqaasi"
-
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id3154060\n"
-"33\n"
-"help.text"
-msgid "AutoFormat"
-msgstr "OfDhangi'aa"
-
-#: 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>Dhangii - Dhangeessuu Otoola</emph> filadhu</variable>"
+msgid "<variable id=\"seumvo\">Choose <emph>View - Page Break Preview</emph></variable>"
+msgstr "<variable id=\"seumvo\"><emph>Mul'annoo - Durargii Muraa Fuulaa</emph> filadhu</variable>"
#: 00000404.xhp
msgctxt ""
@@ -1257,58 +702,263 @@ msgctxt ""
msgid "<variable id=\"einabesch\">Choose <emph>Insert - Names - Labels</emph></variable>"
msgstr "<variable id=\"einabesch\"><emph>Saagi - Maqoota - Asxoota</emph> filadhu</variable>"
-#: 00000403.xhp
+#: 00000405.xhp
msgctxt ""
-"00000403.xhp\n"
+"00000405.xhp\n"
"tit\n"
"help.text"
-msgid "View Menu"
-msgstr "Baafata Mul'isi"
+msgid "Format Menu"
+msgstr "Baafata Dhangii"
-#: 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 "Baafata Mul'isi"
+msgid "Format Menu"
+msgstr "Baafata Dhangii"
-#: 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>Mul'annoo - Tarjaa & Tarree Irraantoota</emph> filadhu</variable>"
+msgid "<variable id=\"fozelle\">Choose <emph>Format - Cells</emph></variable>"
+msgstr "<variable id=\"fozelle\"><emph>Dhangii - Man'oota</emph> filadhu</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>Mul'annoo - Gatii Shooluu</emph> filadhu</variable>"
+msgid "<variable id=\"fozelstz\">Choose <emph>Format - Cells - Cell Protection</emph> tab </variable>"
+msgstr "<variable id=\"fozelstz\"><emph>Dhangii - Man'oota - Hayyisa Man'ee</emph> caancala jedhu filadhu </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>Mul'annoo - Kamshoota - Kabala Foormulaa</emph> filadhu</variable>"
+msgid "<variable id=\"fozei\">Choose <emph>Format - Row</emph></variable>"
+msgstr "<variable id=\"fozei\"><emph>Dhangii - Tarree</emph> filadhu</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>Mul'annoo - Durargii Muraa Fuulaa</emph> filadhu</variable>"
+msgid "<variable id=\"fozeiophoe\">Choose <emph>Format - Row - Optimal Height</emph></variable>"
+msgstr "<variable id=\"fozeiophoe\"><emph>Dhangii - Tarree - Hojjaa Gutoola</emph> filadhu</variable>"
+
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3148645\n"
+"6\n"
+"help.text"
+msgid "Choose <emph>Format - Row - Hide</emph>"
+msgstr "<emph>Dhangii - Tarree - Dhoksi</emph> filadhu"
+
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3153728\n"
+"7\n"
+"help.text"
+msgid "Choose <emph>Format - Column - Hide</emph>"
+msgstr "<emph>Dhangii - Tarjaa - Dhoksi</emph> filadhu"
+
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3151114\n"
+"8\n"
+"help.text"
+msgid "Choose <emph>Format - Sheet - Hide</emph>"
+msgstr "<emph>Dhangii - Wardii - Dhoksi</emph> filadhu"
+
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3148576\n"
+"9\n"
+"help.text"
+msgid "Choose <emph>Format - Row - Show</emph>"
+msgstr "<emph>Dhangii - Tarree - Mul'isi</emph> filadhu"
+
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3156286\n"
+"10\n"
+"help.text"
+msgid "Choose <emph>Format - Column - Show</emph>"
+msgstr "<emph>Dhangii - Tarjaa - Mul'isi</emph> filadhu"
+
+#: 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>Dhangii - Tarjaa</emph> filadhu</variable>"
+
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3145252\n"
+"12\n"
+"help.text"
+msgid "Choose <emph>Format - Column - Optimal Width</emph>"
+msgstr "<emph>Dhangii - Tarjaa - Dalgee Gutoola</emph> filadhu"
+
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3146971\n"
+"36\n"
+"help.text"
+msgid "Double-click right column separator in column headers"
+msgstr "Matadureewwan tarjaa keessatti gargareessaa tarjaa mirgaa lam-cuqaasi"
+
+#: 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>Dhangii - Wardii</emph> filadhu</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>Dhangii - Wardii - Maqaa Jijjiiri</emph> filadhu</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>Dhangii - Wardii - Mul'isi</emph> filadhu</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>Dhangii - Fuula</emph> filadhu</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>Dhangii - Fuula - Wardi</emph> caancala jedhu filadhu</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>Dhangii - Hangiilee Maxxansaa</emph> filadhu</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>Dhangii - Wardii - Ibsi</emph> filadhu</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>Dhangii - Hangiilee Maxxansaa - Ida'i</emph> filadhu</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>Dhangii - Hangiilee Maxxansaa - Haqi</emph> filadhu</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>Dhangii - Hangiilee Maxxansaa - Gulaali</emph> filadhu</variable>"
+
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3153916\n"
+"31\n"
+"help.text"
+msgid "Choose <emph>Format - AutoFormat</emph>"
+msgstr "<emph>Dhangeessi - OfiinDhangeessi</emph> filadhu"
+
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3154532\n"
+"32\n"
+"help.text"
+msgid "On the Tools bar, click"
+msgstr "Kabala Meeshaale irra,"
+
+#: 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\">Sajoo</alt></image>cuqaasi"
+
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3154060\n"
+"33\n"
+"help.text"
+msgid "AutoFormat"
+msgstr "OfDhangi'aa"
+
+#: 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>Dhangii - Dhangeessuu Otoola</emph> filadhu</variable>"
#: 00000406.xhp
msgctxt ""
@@ -1559,231 +1209,567 @@ msgctxt ""
msgid "<variable id=\"autoeingabe\">Choose <emph>Tools - Cell Contents - AutoInput</emph></variable>"
msgstr "<variable id=\"autoeingabe\"><emph>Meeshaalee - Qabeentoota Man'ee - OfiinNaqi</emph> filadhu</variable>"
-#: 00000004.xhp
+#: 00000407.xhp
msgctxt ""
-"00000004.xhp\n"
+"00000407.xhp\n"
"tit\n"
"help.text"
-msgid "To access this function..."
-msgstr "Dalagaa kana gahuf..."
+msgid "Window Menu"
+msgstr "Baafata Foddaa"
-#: 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\">Dalagaa kana gahuf...</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\">Addeeffama dabalataa fuula kanarratti. </variable>"
+msgid "Window Menu"
+msgstr "Baafata Foddaa"
-#: 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\">Fankishinoota %PRODUCTNAME Calc keessatti, ulaagaaleen akka \"dirqalee\"tti malkateessaman kan dhiifamuu danda'an yoo ulaagaan homtuu kan hin hordofneen tahe qofaadha. Fakkeenyaaf, fankishinii ulaagaalee afur qabu keessatti, iddoo ulaagaaleen lamaan dhumaa akka \"dirqalee\"tti itti malkateessamanitti, ulaagaa 4 ykn ulaagaalee 3 fi 4 dhiisuu ni dandeessa, garuu ulaagaa 3 qofa dhiisuu hin dandeessu. </variable>"
+msgid "<variable id=\"fete\">Choose <emph>Window - Split</emph></variable>"
+msgstr "<variable id=\"fete\"><emph>Foddaa - Addabaasi</emph> filadhu</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\">Lakkaddaawwan 127 caalan barruuyyeessa arfii sirna keetiirratti hundaa'uu danda'a(fakkeenyaaf iso-8859-1, iso-8859-2, Windows-1252, Windows-1250), kanaaf fiduun hin danda'amu.</variable>"
+msgid "<variable id=\"fefix\">Choose <emph>Window - Freeze</emph></variable>"
+msgstr "<variable id=\"fefix\"><emph>Foddaa - Dhaabi</emph> filadhu</variable>"
-#: 00000402.xhp
+#: 00000412.xhp
msgctxt ""
-"00000402.xhp\n"
+"00000412.xhp\n"
"tit\n"
"help.text"
-msgid "Edit Menu"
-msgstr "Baafata Gulaali"
+msgid "Data Menu"
+msgstr "Baafata Deetaa"
-#: 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 "Baafata Gulaali"
+msgid "Data Menu"
+msgstr "Baafata Deetaa"
-#: 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>Gulaali - irraantootaaf Jalaantoot</emph>filadhu</variable>"
+msgid "<variable id=\"text2columns\">Choose <emph>Data - Text to Columns</emph></variable>"
+msgstr "<variable id=\"text2columns\"><emph>Deetaa - Barruu Tarjootatti</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\">Caancaloota <emph>Gulaali - Irraantootaa & Jalaantoota - Irraatoota/Jalaantoo</emph> jedhan filadhu</variable>"
+msgid "<variable id=\"dbrbf\">Choose <emph>Data - Define Range</emph></variable>"
+msgstr "<variable id=\"dbrbf\"><emph>Deetaa - Hangiilee Ibsi</emph> filadhu</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>Gulaali - Guuti</emph> filadhu</variable>"
+msgid "<variable id=\"dbrba\">Choose <emph>Data - Select Range</emph></variable>"
+msgstr "<variable id=\"dbrba\"><emph>Deetaa - Hangii Filadhu</emph> filadhu</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>Gulaali - Guuti - Gad</emph> filadhu</variable>"
+msgid "<variable id=\"dnsrt\">Choose <emph>Data - Sort</emph></variable>"
+msgstr "<variable id=\"dnsrt\"><emph>Deetaa - Fooyi</emph> filadhu</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>Gulaali - Guuti - Mirga</emph> filadhu</variable>"
+msgid "Choose <emph>Data - Sort - Sort Criteria</emph> tab"
+msgstr "Caancala <emph>Deetaa - Fooyi - Ulaagaalee Fooyinsaa</emph> filadhu"
-#: 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>Gulaali - Guuti - Ol</emph> filadhu</variable>"
+msgid "On Standard bar, click"
+msgstr "Kabala Durtii irra,"
-#: 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\">Sajoo</alt></image>cuqaasi"
+
+#: 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>Gulaali - Guuti - Bitaa</emph> filadhu</variable>"
+msgid "Sort Ascending"
+msgstr "Olee Fooyi"
-#: 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>Gulaali - Guuti - Wardi</emph> filadhu</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\">Sajoo</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>Gulaali - Guuti - Walfaannee</emph> filadhu</variable>"
+msgid "Sort Descending"
+msgstr "Gadee Fooyi"
-#: 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>Gulaali - Qabeentoota Haqi</emph> filadhu"
+msgid "<variable id=\"dnstot\">Choose <emph>Data - Sort - Options</emph> tab</variable>"
+msgstr "<variable id=\"dnstot\"><emph>Deetaa - Fooyi - Filmaata</emph> caancala jedhu filadhu </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 ""
+msgid "<variable id=\"dnftr\">Choose <emph>Data - Filter</emph></variable>"
+msgstr "<variable id=\"dnftr\"><emph>Deetaa - Gingilchaa</emph> filadhu</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>Gulaali - Man'oota Haqi</emph> filadhu</variable>"
+msgid "Choose <emph>Data - Filter - AutoFilter</emph>"
+msgstr "<emph>Deetaa - Gingilchaa - OfGingilchaa</emph> filadhu"
-#: 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>Gulaali - Wardi - Haqi</emph> filadhu"
+msgid "On Tools bar or Table Data bar, click"
+msgstr "Kabala Meeshaalee ykn kabala Deetaa Gabatee irra,"
-#: 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 "Baafata halqara caancala wardif bani"
+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\">Sajoo</alt></image>cuqaasi"
-#: 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>Gulaali - Wardii - Siiqsi/Garagalchi</emph> filadhu"
+msgid "AutoFilter"
+msgstr "OfGingilchaa"
-#: 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>Deetaa - Gingilchaa - Gingilchaa Ol'aanaa</emph> filadhu</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 "Qabduu <emph>Deetaa - Gingilchaa - Gingilchaa Durtii - Dabalata>></emph> filadhu"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3155444\n"
"19\n"
"help.text"
-msgid "Open context menu for a sheet tab"
-msgstr "Baafata halqara caancala wardif bani"
+msgid "Choose <emph>Data - Filter - Advanced Filter - More>></emph> button"
+msgstr "Qabduu <emph>Deetaa - Gingilchaa - Gingilchaa Ol'aanaa - Dabala>></emph> filadhu"
-#: 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>Gulaali - Kutaa Hujeekaa Haqi</emph> filadhu</variable>"
+msgid "Choose <emph>Data - Filter - Remove Filter</emph>"
+msgstr "<emph>Deetaa - Gingilchaa - Gingilchaa Haqi</emph> filadhu"
-#: 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>Gulaali - Kutaa Hujeekaa Haqi - Kutaa Tarree</emph> filadhu</variable>"
+msgid "On Table Data bar, click <emph>Remove Filter/Sort</emph>"
+msgstr "Kabalaa Meeshaalee irra, <emph>Gingilchaa/Fooyi Haqi</emph>cuqaasiitii"
-#: 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>Gulaali - Kutaa Hujeekaa Haqi - Kutaa Tarjaa</emph> filadhu</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\">Sajoo</alt></image>"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3149207\n"
+"49\n"
+"help.text"
+msgid "Remove Filter/Sort"
+msgstr "Gingilchaa/Fooyi Haqi"
+
+#: 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>Deetaa - Gingilchaa - OfGingilchaa Dhoksi</emph> filadhu</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>Deetaa - Hundumta Xiqqaa</emph> filadhu</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>Deetaa - Hundumta Xiqqaa - Garee 1ffaa, 2ffaa, 3ffaa</emph> caancala jedhu filadhu </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>Deetaa - Hundumta Xiqqaa - Filmaata</emph> caancala jedhu filadhu </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>Deetaa - Gataa'insa</emph> filadhu</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\">Baafata <emph>Deetaa - Ciimina - Ulaagaalee</emph> caancala jedhu filadhu </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>Deetaa - Ciimina - Gargaaraa Naqa</emph> caancala jedhu filadhu </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>Deetaa - Ciimina - Of Eeggannoo Dogongoraa</emph> caancala jedhu filadhu </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>Deetaa - Qooyyaboota Hedduu</emph> filadhu</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>Deetaa - Maki</emph> filadhu</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>Deetaa - Gurmuuf Toorii</emph> filadhu</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>Deetaa - Gurmuuf Toorii - Baldhintaa Dhoksi</emph> filadhu</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>Deetaa - Gurmuuf Toorii - Baldhintaa Mul'isi</emph> filadhu</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>Deetaa - Gurmuuf Toorii - Gurmuu</emph> filadhu"
+
+#: 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 "Kabalaa <emph>Meeshaalee</emph> irra"
+
+#: 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\">Icon</alt></image>cuqaasi"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3150214\n"
+"36\n"
+"help.text"
+msgid "Group"
+msgstr "Gurmuu"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3146781\n"
+"37\n"
+"help.text"
+msgid "Choose <emph>Data - Group and Outline - Ungroup</emph>"
+msgstr "<emph>Deetaa - Gurmuuf Toorii - Garbaasi</emph> filadhu"
+
+#: 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\">Ajaja </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 "Kabalaa <emph>Meeshaalee</emph> irra"
+
+#: 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\">Sajoo</alt></image>cuqaasi"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3153555\n"
+"39\n"
+"help.text"
+msgid "Ungroup"
+msgstr "Garbaasi"
+
+#: 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>Deetaa - Gurmuuf Toorii - TooriiOfmaa</emph> filadhu</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>Deetaa - Gurmuuf Toorii - Haqi</emph> filadhu</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>Deetaa - Gurmuu fi Toorii - Baldhintaa Mul'si</emph> (gabatee Gabateewwan Qiinxaa tokko tokkoof) filadhu </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>Deetaa - Qiinxaa</emph> filadhu</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>Deetaa - Qiinxaa - Eegali</emph> filadhu</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>Deetaa - Qiinxaa - Eegali</emph> filadhu, qaaqa Madda Filadhuu keessatti dirqalee <emph>Madda Deetaa $[officename] keessatti galmaa'e</emph> filadhu. </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>Deetaa - Qiinxaa - Eegali</emph> filadhu, qaaqa Madda Filadhuu keessatti dirqalee <emph>Filannoo ammaa</emph> filadhu."
+
+#: 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>Deetaa - Qiinxaa - Eegali</emph> filadhu, qaaqa Madda Filadhuu keessatti dirqalee <emph>Madda Deetaa $[officename] keessatti galmaa'e</emph> filadhu, qaaqa <emph>Madda Deetaa Fili</emph> ilaaluuf <emph>Tole</emph> filadhu."
+
+#: 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>Deetaa - Qiinxaa - Haaromsi</emph> filadhu</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>Deetaa - Qiinxaa - Haqi</emph> filadhu</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>Deetaa - Hangii Haaromsi</emph> filadhu</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>Deetaa - Gurmuuf Toorii - Gurmuu</emph> filadhu</variable>"
diff --git a/source/om/helpcontent2/source/text/scalc/01.po b/source/om/helpcontent2/source/text/scalc/01.po
index d6ddf73b9ca..5b6efb808f6 100644
--- a/source/om/helpcontent2/source/text/scalc/01.po
+++ b/source/om/helpcontent2/source/text/scalc/01.po